]> Git Repo - linux.git/blob - MAINTAINERS
Merge tag 'devicetree-for-6.4-1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[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/process/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 L:      [email protected]
175 L:      [email protected]
176 S:      Maintained
177 F:      Documentation/networking/6lowpan.rst
178 F:      include/net/6lowpan.h
179 F:      net/6lowpan/
180
181 6PACK NETWORK DRIVER FOR AX.25
182 M:      Andreas Koensgen <[email protected]>
183 L:      [email protected]
184 S:      Maintained
185 F:      drivers/net/hamradio/6pack.c
186
187 802.11 (including CFG80211/NL80211)
188 M:      Johannes Berg <[email protected]>
189 L:      [email protected]
190 S:      Maintained
191 W:      https://wireless.wiki.kernel.org/
192 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      include/uapi/linux/wireless.h
204 F:      net/wireless/
205
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M:      Heiner Kallweit <[email protected]>
208 M:      [email protected]
209 L:      [email protected]
210 S:      Maintained
211 F:      drivers/net/ethernet/realtek/r8169*
212
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M:      Greg Kroah-Hartman <[email protected]>
215 L:      [email protected]
216 S:      Maintained
217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F:      drivers/tty/serial/8250*
219 F:      include/linux/serial_8250.h
220
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L:      [email protected]
223 S:      Orphan / Obsolete
224 F:      drivers/net/ethernet/8390/
225
226 9P FILE SYSTEM
227 M:      Eric Van Hensbergen <[email protected]>
228 M:      Latchesar Ionkov <[email protected]>
229 M:      Dominique Martinet <[email protected]>
230 R:      Christian Schoenebeck <[email protected]>
231 L:      [email protected]
232 S:      Maintained
233 W:      http://github.com/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A64FX DIAG DRIVER
245 M:      Hitomi Hasegawa <[email protected]>
246 S:      Supported
247 F:      drivers/soc/fujitsu/a64fx-diag.c
248
249 A8293 MEDIA DRIVER
250 M:      Antti Palosaari <[email protected]>
251 L:      [email protected]
252 S:      Maintained
253 W:      https://linuxtv.org
254 W:      http://palosaari.fi/linux/
255 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
256 T:      git git://linuxtv.org/anttip/media_tree.git
257 F:      drivers/media/dvb-frontends/a8293*
258
259 AACRAID SCSI RAID DRIVER
260 M:      Adaptec OEM Raid Solutions <[email protected]>
261 L:      [email protected]
262 S:      Supported
263 W:      http://www.adaptec.com/
264 F:      Documentation/scsi/aacraid.rst
265 F:      drivers/scsi/aacraid/
266
267 AB8500 BATTERY AND CHARGER DRIVERS
268 M:      Linus Walleij <[email protected]>
269 F:      Documentation/devicetree/bindings/power/supply/*ab8500*
270 F:      drivers/power/supply/*ab8500*
271
272 ABI/API
273 L:      [email protected]
274 F:      include/linux/syscalls.h
275 F:      kernel/sys_ni.c
276 X:      include/uapi/
277 X:      arch/*/include/uapi/
278
279 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
280 M:      Hans de Goede <[email protected]>
281 L:      [email protected]
282 S:      Maintained
283 F:      drivers/hwmon/abituguru.c
284
285 ABIT UGURU 3 HARDWARE MONITOR DRIVER
286 M:      Alistair John Strachan <[email protected]>
287 L:      [email protected]
288 S:      Maintained
289 F:      drivers/hwmon/abituguru3.c
290
291 ACCES 104-DIO-48E GPIO DRIVER
292 M:      William Breathitt Gray <[email protected]>
293 L:      [email protected]
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-dio-48e.c
296
297 ACCES 104-IDI-48 GPIO DRIVER
298 M:      William Breathitt Gray <[email protected]>
299 L:      [email protected]
300 S:      Maintained
301 F:      drivers/gpio/gpio-104-idi-48.c
302
303 ACCES 104-IDIO-16 GPIO DRIVER
304 M:      William Breathitt Gray <[email protected]>
305 L:      [email protected]
306 S:      Maintained
307 F:      drivers/gpio/gpio-104-idio-16.c
308
309 ACCES 104-QUAD-8 DRIVER
310 M:      William Breathitt Gray <[email protected]>
311 L:      [email protected]
312 S:      Maintained
313 F:      drivers/counter/104-quad-8.c
314
315 ACCES IDIO-16 GPIO LIBRARY
316 M:      William Breathitt Gray <[email protected]>
317 L:      [email protected]
318 S:      Maintained
319 F:      drivers/gpio/gpio-idio-16.c
320 F:      drivers/gpio/gpio-idio-16.h
321
322 ACCES PCI-IDIO-16 GPIO DRIVER
323 M:      William Breathitt Gray <[email protected]>
324 L:      [email protected]
325 S:      Maintained
326 F:      drivers/gpio/gpio-pci-idio-16.c
327
328 ACCES PCIe-IDIO-24 GPIO DRIVER
329 M:      William Breathitt Gray <[email protected]>
330 L:      [email protected]
331 S:      Maintained
332 F:      drivers/gpio/gpio-pcie-idio-24.c
333
334 ACENIC DRIVER
335 M:      Jes Sorensen <[email protected]>
336 L:      [email protected]
337 S:      Maintained
338 F:      drivers/net/ethernet/alteon/acenic*
339
340 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
341 M:      Peter Kaestle <[email protected]>
342 L:      [email protected]
343 S:      Maintained
344 W:      http://piie.net/?section=acerhdf
345 F:      drivers/platform/x86/acerhdf.c
346
347 ACER WMI LAPTOP EXTRAS
348 M:      "Lee, Chun-Yi" <[email protected]>
349 L:      [email protected]
350 S:      Maintained
351 F:      drivers/platform/x86/acer-wmi.c
352
353 ACPI
354 M:      "Rafael J. Wysocki" <[email protected]>
355 R:      Len Brown <[email protected]>
356 L:      [email protected]
357 S:      Supported
358 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
359 B:      https://bugzilla.kernel.org
360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
361 F:      Documentation/ABI/testing/configfs-acpi
362 F:      Documentation/ABI/testing/sysfs-bus-acpi
363 F:      Documentation/firmware-guide/acpi/
364 F:      arch/x86/kernel/acpi/
365 F:      arch/x86/pci/acpi.c
366 F:      drivers/acpi/
367 F:      drivers/pci/*/*acpi*
368 F:      drivers/pci/*acpi*
369 F:      drivers/pnp/pnpacpi/
370 F:      include/acpi/
371 F:      include/linux/acpi.h
372 F:      include/linux/fwnode.h
373 F:      tools/power/acpi/
374
375 ACPI APEI
376 M:      "Rafael J. Wysocki" <[email protected]>
377 R:      Len Brown <[email protected]>
378 R:      James Morse <[email protected]>
379 R:      Tony Luck <[email protected]>
380 R:      Borislav Petkov <[email protected]>
381 L:      [email protected]
382 F:      drivers/acpi/apei/
383
384 ACPI COMPONENT ARCHITECTURE (ACPICA)
385 M:      Robert Moore <[email protected]>
386 M:      "Rafael J. Wysocki" <[email protected]>
387 L:      [email protected]
388 L:      [email protected]
389 S:      Supported
390 W:      https://acpica.org/
391 W:      https://github.com/acpica/acpica/
392 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
393 B:      https://bugzilla.kernel.org
394 B:      https://bugs.acpica.org
395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
396 F:      drivers/acpi/acpica/
397 F:      include/acpi/
398 F:      tools/power/acpi/
399
400 ACPI FOR ARM64 (ACPI/arm64)
401 M:      Lorenzo Pieralisi <[email protected]>
402 M:      Hanjun Guo <[email protected]>
403 M:      Sudeep Holla <[email protected]>
404 L:      [email protected]
405 L:      [email protected] (moderated for non-subscribers)
406 S:      Maintained
407 F:      drivers/acpi/arm64
408
409 ACPI SERIAL MULTI INSTANTIATE DRIVER
410 M:      Hans de Goede <[email protected]>
411 L:      [email protected]
412 S:      Maintained
413 F:      drivers/platform/x86/serial-multi-instantiate.c
414
415 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
416 M:      Sudeep Holla <[email protected]>
417 L:      [email protected]
418 S:      Supported
419 F:      drivers/mailbox/pcc.c
420
421 ACPI PMIC DRIVERS
422 M:      "Rafael J. Wysocki" <[email protected]>
423 M:      Len Brown <[email protected]>
424 R:      Andy Shevchenko <[email protected]>
425 R:      Mika Westerberg <[email protected]>
426 L:      [email protected]
427 S:      Supported
428 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
429 B:      https://bugzilla.kernel.org
430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
431 F:      drivers/acpi/pmic/
432
433 ACPI THERMAL DRIVER
434 M:      Rafael J. Wysocki <[email protected]>
435 R:      Zhang Rui <[email protected]>
436 L:      [email protected]
437 S:      Supported
438 B:      https://bugzilla.kernel.org
439 F:      drivers/acpi/*thermal*
440
441 ACPI VIOT DRIVER
442 M:      Jean-Philippe Brucker <[email protected]>
443 L:      [email protected]
444 L:      [email protected]
445 S:      Maintained
446 F:      drivers/acpi/viot.c
447 F:      include/linux/acpi_viot.h
448
449 ACPI WMI DRIVER
450 L:      [email protected]
451 S:      Orphan
452 F:      drivers/platform/x86/wmi.c
453 F:      include/uapi/linux/wmi.h
454
455 ACRN HYPERVISOR SERVICE MODULE
456 M:      Fei Li <[email protected]>
457 L:      [email protected] (subscribers-only)
458 S:      Supported
459 W:      https://projectacrn.org
460 F:      Documentation/virt/acrn/
461 F:      drivers/virt/acrn/
462 F:      include/uapi/linux/acrn.h
463
464 AD1889 ALSA SOUND DRIVER
465 L:      [email protected]
466 S:      Maintained
467 W:      https://parisc.wiki.kernel.org/index.php/AD1889
468 F:      sound/pci/ad1889.*
469
470 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
471 M:      Mugilraj Dhavachelvan <[email protected]>
472 L:      [email protected]
473 S:      Supported
474 F:      drivers/iio/potentiometer/ad5110.c
475
476 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
477 M:      Michael Hennerich <[email protected]>
478 S:      Supported
479 W:      http://wiki.analog.com/AD5254
480 W:      https://ez.analog.com/linux-software-drivers
481 F:      drivers/misc/ad525x_dpot.c
482
483 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
484 M:      Michael Hennerich <[email protected]>
485 S:      Supported
486 W:      http://wiki.analog.com/AD5398
487 W:      https://ez.analog.com/linux-software-drivers
488 F:      drivers/regulator/ad5398.c
489
490 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
491 M:      Michael Hennerich <[email protected]>
492 S:      Supported
493 W:      http://wiki.analog.com/AD7142
494 W:      https://ez.analog.com/linux-software-drivers
495 F:      drivers/input/misc/ad714x.c
496
497 AD7877 TOUCHSCREEN DRIVER
498 M:      Michael Hennerich <[email protected]>
499 S:      Supported
500 W:      http://wiki.analog.com/AD7877
501 W:      https://ez.analog.com/linux-software-drivers
502 F:      drivers/input/touchscreen/ad7877.c
503
504 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
505 M:      Michael Hennerich <[email protected]>
506 S:      Supported
507 W:      http://wiki.analog.com/AD7879
508 W:      https://ez.analog.com/linux-software-drivers
509 F:      drivers/input/touchscreen/ad7879.c
510
511 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
512 M:      Jiri Kosina <[email protected]>
513 S:      Maintained
514
515 ADF7242 IEEE 802.15.4 RADIO DRIVER
516 M:      Michael Hennerich <[email protected]>
517 L:      [email protected]
518 S:      Supported
519 W:      https://wiki.analog.com/ADF7242
520 W:      https://ez.analog.com/linux-software-drivers
521 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
522 F:      drivers/net/ieee802154/adf7242.c
523
524 ADM1025 HARDWARE MONITOR DRIVER
525 M:      Jean Delvare <[email protected]>
526 L:      [email protected]
527 S:      Maintained
528 F:      Documentation/hwmon/adm1025.rst
529 F:      drivers/hwmon/adm1025.c
530
531 ADM1029 HARDWARE MONITOR DRIVER
532 M:      Corentin Labbe <[email protected]>
533 L:      [email protected]
534 S:      Maintained
535 F:      drivers/hwmon/adm1029.c
536
537 ADM8211 WIRELESS DRIVER
538 L:      [email protected]
539 S:      Orphan
540 W:      https://wireless.wiki.kernel.org/
541 F:      drivers/net/wireless/admtek/adm8211.*
542
543 ADP1653 FLASH CONTROLLER DRIVER
544 M:      Sakari Ailus <[email protected]>
545 L:      [email protected]
546 S:      Maintained
547 F:      drivers/media/i2c/adp1653.c
548 F:      include/media/i2c/adp1653.h
549
550 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
551 M:      Michael Hennerich <[email protected]>
552 S:      Supported
553 W:      http://wiki.analog.com/ADP5520
554 W:      https://ez.analog.com/linux-software-drivers
555 F:      drivers/gpio/gpio-adp5520.c
556 F:      drivers/input/keyboard/adp5520-keys.c
557 F:      drivers/leds/leds-adp5520.c
558 F:      drivers/mfd/adp5520.c
559 F:      drivers/video/backlight/adp5520_bl.c
560
561 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
562 M:      Michael Hennerich <[email protected]>
563 S:      Supported
564 W:      http://wiki.analog.com/ADP5588
565 W:      https://ez.analog.com/linux-software-drivers
566 F:      Documentation/devicetree/bindings/input/adi,adp5588.yaml
567 F:      drivers/input/keyboard/adp5588-keys.c
568
569 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
570 M:      Michael Hennerich <[email protected]>
571 S:      Supported
572 W:      http://wiki.analog.com/ADP8860
573 W:      https://ez.analog.com/linux-software-drivers
574 F:      drivers/video/backlight/adp8860_bl.c
575
576 ADT746X FAN DRIVER
577 M:      Colin Leroy <[email protected]>
578 S:      Maintained
579 F:      drivers/macintosh/therm_adt746x.c
580
581 ADT7475 HARDWARE MONITOR DRIVER
582 M:      Jean Delvare <[email protected]>
583 L:      [email protected]
584 S:      Maintained
585 F:      Documentation/hwmon/adt7475.rst
586 F:      drivers/hwmon/adt7475.c
587
588 ADVANSYS SCSI DRIVER
589 M:      Matthew Wilcox <[email protected]>
590 M:      Hannes Reinecke <[email protected]>
591 L:      [email protected]
592 S:      Maintained
593 F:      Documentation/scsi/advansys.rst
594 F:      drivers/scsi/advansys.c
595
596 ADVANTECH SWBTN DRIVER
597 M:      Andrea Ho <[email protected]>
598 L:      [email protected]
599 S:      Maintained
600 F:      drivers/platform/x86/adv_swbutton.c
601
602 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
603 M:      Lucas Stankus <[email protected]>
604 S:      Supported
605 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
606 F:      drivers/iio/accel/adxl313*
607
608 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
609 M:      Michael Hennerich <[email protected]>
610 S:      Supported
611 W:      http://wiki.analog.com/ADXL345
612 W:      https://ez.analog.com/linux-software-drivers
613 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
614 F:      drivers/input/misc/adxl34x.c
615
616 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
617 M:      Puranjay Mohan <[email protected]>
618 L:      [email protected]
619 S:      Supported
620 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
621 F:      drivers/iio/accel/adxl355.h
622 F:      drivers/iio/accel/adxl355_core.c
623 F:      drivers/iio/accel/adxl355_i2c.c
624 F:      drivers/iio/accel/adxl355_spi.c
625
626 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
627 M:      Cosmin Tanislav <[email protected]>
628 L:      [email protected]
629 S:      Supported
630 W:      https://ez.analog.com/linux-software-drivers
631 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
632 F:      drivers/iio/accel/adxl367*
633
634 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
635 M:      Michael Hennerich <[email protected]>
636 S:      Supported
637 W:      https://ez.analog.com/linux-software-drivers
638 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
639 F:      drivers/iio/accel/adxl372.c
640 F:      drivers/iio/accel/adxl372_i2c.c
641 F:      drivers/iio/accel/adxl372_spi.c
642
643 AF9013 MEDIA DRIVER
644 M:      Antti Palosaari <[email protected]>
645 L:      [email protected]
646 S:      Maintained
647 W:      https://linuxtv.org
648 W:      http://palosaari.fi/linux/
649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
650 T:      git git://linuxtv.org/anttip/media_tree.git
651 F:      drivers/media/dvb-frontends/af9013*
652
653 AF9033 MEDIA DRIVER
654 M:      Antti Palosaari <[email protected]>
655 L:      [email protected]
656 S:      Maintained
657 W:      https://linuxtv.org
658 W:      http://palosaari.fi/linux/
659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
660 T:      git git://linuxtv.org/anttip/media_tree.git
661 F:      drivers/media/dvb-frontends/af9033*
662
663 AFFS FILE SYSTEM
664 M:      David Sterba <[email protected]>
665 L:      [email protected]
666 S:      Odd Fixes
667 F:      Documentation/filesystems/affs.rst
668 F:      fs/affs/
669
670 AFS FILESYSTEM
671 M:      David Howells <[email protected]>
672 M:      Marc Dionne <[email protected]>
673 L:      [email protected]
674 S:      Supported
675 W:      https://www.infradead.org/~dhowells/kafs/
676 F:      Documentation/filesystems/afs.rst
677 F:      fs/afs/
678 F:      include/trace/events/afs.h
679
680 AGPGART DRIVER
681 M:      David Airlie <[email protected]>
682 L:      [email protected]
683 S:      Maintained
684 T:      git git://anongit.freedesktop.org/drm/drm
685 F:      drivers/char/agp/
686 F:      include/linux/agp*
687 F:      include/uapi/linux/agp*
688
689 AHA152X SCSI DRIVER
690 M:      "Juergen E. Fischer" <[email protected]>
691 L:      [email protected]
692 S:      Maintained
693 F:      drivers/scsi/aha152x*
694 F:      drivers/scsi/pcmcia/aha152x*
695
696 AIC7XXX / AIC79XX SCSI DRIVER
697 M:      Hannes Reinecke <[email protected]>
698 L:      [email protected]
699 S:      Maintained
700 F:      drivers/scsi/aic7xxx/
701
702 AIMSLAB FM RADIO RECEIVER DRIVER
703 M:      Hans Verkuil <[email protected]>
704 L:      [email protected]
705 S:      Maintained
706 W:      https://linuxtv.org
707 T:      git git://linuxtv.org/media_tree.git
708 F:      drivers/media/radio/radio-aimslab*
709
710 AIO
711 M:      Benjamin LaHaise <[email protected]>
712 L:      [email protected]
713 S:      Supported
714 F:      fs/aio.c
715 F:      include/linux/*aio*.h
716
717 AIRSPY MEDIA DRIVER
718 M:      Antti Palosaari <[email protected]>
719 L:      [email protected]
720 S:      Maintained
721 W:      https://linuxtv.org
722 W:      http://palosaari.fi/linux/
723 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
724 T:      git git://linuxtv.org/anttip/media_tree.git
725 F:      drivers/media/usb/airspy/
726
727 ALACRITECH GIGABIT ETHERNET DRIVER
728 M:      Lino Sanfilippo <[email protected]>
729 S:      Maintained
730 F:      drivers/net/ethernet/alacritech/*
731
732 ALCATEL SPEEDTOUCH USB DRIVER
733 M:      Duncan Sands <[email protected]>
734 L:      [email protected]
735 S:      Maintained
736 W:      http://www.linux-usb.org/SpeedTouch/
737 F:      drivers/usb/atm/speedtch.c
738 F:      drivers/usb/atm/usbatm.c
739
740 ALCHEMY AU1XX0 MMC DRIVER
741 M:      Manuel Lauss <[email protected]>
742 S:      Maintained
743 F:      drivers/mmc/host/au1xmmc.c
744
745 ALI1563 I2C DRIVER
746 M:      Rudolf Marek <[email protected]>
747 L:      [email protected]
748 S:      Maintained
749 F:      Documentation/i2c/busses/i2c-ali1563.rst
750 F:      drivers/i2c/busses/i2c-ali1563.c
751
752 ALIBABA ELASTIC RDMA DRIVER
753 M:      Cheng Xu <[email protected]>
754 M:      Kai Shen <[email protected]>
755 L:      [email protected]
756 S:      Supported
757 F:      drivers/infiniband/hw/erdma
758 F:      include/uapi/rdma/erdma-abi.h
759
760 ALIBABA PMU DRIVER
761 M:      Shuai Xue <[email protected]>
762 S:      Supported
763 F:      Documentation/admin-guide/perf/alibaba_pmu.rst
764 F:      drivers/perf/alibaba_uncore_drw_pmu.c
765
766 ALIENWARE WMI DRIVER
767 L:      [email protected]
768 S:      Maintained
769 F:      drivers/platform/x86/dell/alienware-wmi.c
770
771 ALLEGRO DVT VIDEO IP CORE DRIVER
772 M:      Michael Tretter <[email protected]>
773 R:      Pengutronix Kernel Team <[email protected]>
774 L:      [email protected]
775 S:      Maintained
776 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
777 F:      drivers/media/platform/allegro-dvt/
778
779 ALLWINNER A10 CSI DRIVER
780 M:      Maxime Ripard <[email protected]>
781 L:      [email protected]
782 S:      Maintained
783 T:      git git://linuxtv.org/media_tree.git
784 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
785 F:      drivers/media/platform/sunxi/sun4i-csi/
786
787 ALLWINNER A31 CSI DRIVER
788 M:      Yong Deng <[email protected]>
789 M:      Paul Kocialkowski <[email protected]>
790 L:      [email protected]
791 S:      Maintained
792 T:      git git://linuxtv.org/media_tree.git
793 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
794 F:      drivers/media/platform/sunxi/sun6i-csi/
795
796 ALLWINNER A31 ISP DRIVER
797 M:      Paul Kocialkowski <[email protected]>
798 L:      [email protected]
799 S:      Maintained
800 T:      git git://linuxtv.org/media_tree.git
801 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-isp.yaml
802 F:      drivers/staging/media/sunxi/sun6i-isp/
803 F:      drivers/staging/media/sunxi/sun6i-isp/uapi/sun6i-isp-config.h
804
805 ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
806 M:      Paul Kocialkowski <[email protected]>
807 L:      [email protected]
808 S:      Maintained
809 T:      git git://linuxtv.org/media_tree.git
810 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
811 F:      drivers/media/platform/sunxi/sun6i-mipi-csi2/
812
813 ALLWINNER CPUFREQ DRIVER
814 M:      Yangtao Li <[email protected]>
815 L:      [email protected]
816 S:      Maintained
817 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
818 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
819
820 ALLWINNER CRYPTO DRIVERS
821 M:      Corentin Labbe <[email protected]>
822 L:      [email protected]
823 S:      Maintained
824 F:      drivers/crypto/allwinner/
825
826 ALLWINNER HARDWARE SPINLOCK SUPPORT
827 M:      Wilken Gottwalt <[email protected]>
828 S:      Maintained
829 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
830 F:      drivers/hwspinlock/sun6i_hwspinlock.c
831
832 ALLWINNER THERMAL DRIVER
833 M:      Vasily Khoruzhick <[email protected]>
834 M:      Yangtao Li <[email protected]>
835 L:      [email protected]
836 S:      Maintained
837 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
838 F:      drivers/thermal/sun8i_thermal.c
839
840 ALLWINNER VPU DRIVER
841 M:      Maxime Ripard <[email protected]>
842 M:      Paul Kocialkowski <[email protected]>
843 L:      [email protected]
844 S:      Maintained
845 F:      drivers/staging/media/sunxi/cedrus/
846
847 ALLWINNER DMIC DRIVERS
848 M:      Ban Tao <[email protected]>
849 L:      [email protected] (moderated for non-subscribers)
850 S:      Maintained
851 F:      Documentation/devicetree/bindings/sound/allwinner,sun50i-h6-dmic.yaml
852 F:      sound/soc/sunxi/sun50i-dmic.c
853
854 ALPHA PORT
855 M:      Richard Henderson <[email protected]>
856 M:      Ivan Kokshaysky <[email protected]>
857 M:      Matt Turner <[email protected]>
858 L:      [email protected]
859 S:      Odd Fixes
860 F:      arch/alpha/
861
862 ALPS PS/2 TOUCHPAD DRIVER
863 R:      Pali Rohár <[email protected]>
864 F:      drivers/input/mouse/alps.*
865
866 ALTERA I2C CONTROLLER DRIVER
867 M:      Thor Thayer <[email protected]>
868 S:      Maintained
869 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
870 F:      drivers/i2c/busses/i2c-altera.c
871
872 ALTERA MAILBOX DRIVER
873 M:      Mun Yew Tham <[email protected]>
874 S:      Maintained
875 F:      drivers/mailbox/mailbox-altera.c
876
877 ALTERA MSGDMA IP CORE DRIVER
878 M:      Olivier Dautricourt <[email protected]>
879 R:      Stefan Roese <[email protected]>
880 L:      [email protected]
881 S:      Odd Fixes
882 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
883 F:      drivers/dma/altera-msgdma.c
884
885 ALTERA PIO DRIVER
886 M:      Mun Yew Tham <[email protected]>
887 L:      [email protected]
888 S:      Maintained
889 F:      drivers/gpio/gpio-altera.c
890
891 ALTERA SYSTEM MANAGER DRIVER
892 M:      Thor Thayer <[email protected]>
893 S:      Maintained
894 F:      drivers/mfd/altera-sysmgr.c
895 F:      include/linux/mfd/altera-sysmgr.h
896
897 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
898 M:      Thor Thayer <[email protected]>
899 S:      Maintained
900 F:      drivers/gpio/gpio-altera-a10sr.c
901 F:      drivers/mfd/altera-a10sr.c
902 F:      drivers/reset/reset-a10sr.c
903 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
904 F:      include/linux/mfd/altera-a10sr.h
905
906 ALTERA TRIPLE SPEED ETHERNET DRIVER
907 M:      Joyce Ooi <[email protected]>
908 L:      [email protected]
909 S:      Maintained
910 F:      drivers/net/ethernet/altera/
911
912 ALTERA TSE PCS
913 M:      Maxime Chevallier <[email protected]>
914 L:      [email protected]
915 S:      Supported
916 F:      drivers/net/pcs/pcs-altera-tse.c
917 F:      include/linux/pcs-altera-tse.h
918
919 ALTERA UART/JTAG UART SERIAL DRIVERS
920 M:      Tobias Klauser <[email protected]>
921 L:      [email protected]
922 S:      Maintained
923 F:      drivers/tty/serial/altera_jtaguart.c
924 F:      drivers/tty/serial/altera_uart.c
925 F:      include/linux/altera_jtaguart.h
926 F:      include/linux/altera_uart.h
927
928 AMAZON ANNAPURNA LABS FIC DRIVER
929 M:      Talel Shenhar <[email protected]>
930 S:      Maintained
931 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
932 F:      drivers/irqchip/irq-al-fic.c
933
934 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
935 M:      Talel Shenhar <[email protected]>
936 M:      Talel Shenhar <[email protected]>
937 S:      Maintained
938 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
939 F:      drivers/edac/al_mc_edac.c
940
941 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
942 M:      Talel Shenhar <[email protected]>
943 S:      Maintained
944 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
945 F:      drivers/thermal/thermal_mmio.c
946
947 AMAZON ETHERNET DRIVERS
948 M:      Shay Agroskin <[email protected]>
949 M:      Arthur Kiyanovski <[email protected]>
950 R:      David Arinzon <[email protected]>
951 R:      Noam Dagan <[email protected]>
952 R:      Saeed Bishara <[email protected]>
953 L:      [email protected]
954 S:      Supported
955 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
956 F:      drivers/net/ethernet/amazon/
957
958 AMAZON RDMA EFA DRIVER
959 M:      Gal Pressman <[email protected]>
960 R:      Yossi Leybovich <[email protected]>
961 L:      [email protected]
962 S:      Supported
963 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
964 F:      drivers/infiniband/hw/efa/
965 F:      include/uapi/rdma/efa-abi.h
966
967 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
968 M:      Tom Lendacky <[email protected]>
969 M:      John Allen <[email protected]>
970 L:      [email protected]
971 S:      Supported
972 F:      drivers/crypto/ccp/
973 F:      include/linux/ccp.h
974
975 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
976 M:      Brijesh Singh <[email protected]>
977 M:      Tom Lendacky <[email protected]>
978 L:      [email protected]
979 S:      Supported
980 F:      drivers/crypto/ccp/sev*
981 F:      include/uapi/linux/psp-sev.h
982
983 AMD DISPLAY CORE
984 M:      Harry Wentland <[email protected]>
985 M:      Leo Li <[email protected]>
986 M:      Rodrigo Siqueira <[email protected]>
987 L:      [email protected]
988 S:      Supported
989 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
990 F:      drivers/gpu/drm/amd/display/
991
992 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
993 M:      Huang Rui <[email protected]>
994 L:      [email protected]
995 S:      Supported
996 F:      Documentation/hwmon/fam15h_power.rst
997 F:      drivers/hwmon/fam15h_power.c
998
999 AMD FCH GPIO DRIVER
1000 M:      Enrico Weigelt, metux IT consult <[email protected]>
1001 L:      [email protected]
1002 S:      Maintained
1003 F:      drivers/gpio/gpio-amd-fch.c
1004 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
1005
1006 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
1007 L:      [email protected] (moderated for non-subscribers)
1008 S:      Orphan
1009 F:      drivers/usb/gadget/udc/amd5536udc.*
1010
1011 AMD GEODE PROCESSOR/CHIPSET SUPPORT
1012 M:      Andres Salomon <[email protected]>
1013 L:      [email protected] (moderated for non-subscribers)
1014 S:      Supported
1015 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
1016 F:      arch/x86/include/asm/geode.h
1017 F:      drivers/char/hw_random/geode-rng.c
1018 F:      drivers/crypto/geode*
1019 F:      drivers/video/fbdev/geode/
1020
1021 AMD IOMMU (AMD-VI)
1022 M:      Joerg Roedel <[email protected]>
1023 R:      Suravee Suthikulpanit <[email protected]>
1024 L:      [email protected]
1025 S:      Maintained
1026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
1027 F:      drivers/iommu/amd/
1028 F:      include/linux/amd-iommu.h
1029
1030 AMD KFD
1031 M:      Felix Kuehling <[email protected]>
1032 L:      [email protected]
1033 S:      Supported
1034 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1035 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
1036 F:      drivers/gpu/drm/amd/amdkfd/
1037 F:      drivers/gpu/drm/amd/include/cik_structs.h
1038 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
1039 F:      drivers/gpu/drm/amd/include/v9_structs.h
1040 F:      drivers/gpu/drm/amd/include/vi_structs.h
1041 F:      include/uapi/linux/kfd_ioctl.h
1042 F:      include/uapi/linux/kfd_sysfs.h
1043
1044 AMD PDS CORE DRIVER
1045 M:      Shannon Nelson <[email protected]>
1046 M:      Brett Creeley <[email protected]>
1047 L:      [email protected]
1048 S:      Supported
1049 F:      Documentation/networking/device_drivers/ethernet/amd/pds_core.rst
1050 F:      drivers/net/ethernet/amd/pds_core/
1051 F:      include/linux/pds/
1052
1053 AMD SPI DRIVER
1054 M:      Sanjay R Mehta <[email protected]>
1055 S:      Maintained
1056 F:      drivers/spi/spi-amd.c
1057
1058 AMD MP2 I2C DRIVER
1059 M:      Elie Morisse <[email protected]>
1060 M:      Shyam Sundar S K <[email protected]>
1061 L:      [email protected]
1062 S:      Maintained
1063 F:      drivers/i2c/busses/i2c-amd-mp2*
1064
1065 AMD PMC DRIVER
1066 M:      Shyam Sundar S K <[email protected]>
1067 L:      [email protected]
1068 S:      Maintained
1069 F:      drivers/platform/x86/amd/pmc.c
1070
1071 AMD PMF DRIVER
1072 M:      Shyam Sundar S K <[email protected]>
1073 L:      [email protected]
1074 S:      Maintained
1075 F:      Documentation/ABI/testing/sysfs-amd-pmf
1076 F:      drivers/platform/x86/amd/pmf/
1077
1078 AMD HSMP DRIVER
1079 M:      Naveen Krishna Chatradhi <[email protected]>
1080 R:      Carlos Bilbao <[email protected]>
1081 L:      [email protected]
1082 S:      Maintained
1083 F:      Documentation/arch/x86/amd_hsmp.rst
1084 F:      arch/x86/include/asm/amd_hsmp.h
1085 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1086 F:      drivers/platform/x86/amd/hsmp.c
1087
1088 AMD POWERPLAY AND SWSMU
1089 M:      Evan Quan <[email protected]>
1090 L:      [email protected]
1091 S:      Supported
1092 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1093 F:      drivers/gpu/drm/amd/pm/
1094
1095 AMD PSTATE DRIVER
1096 M:      Huang Rui <[email protected]>
1097 L:      [email protected]
1098 S:      Supported
1099 F:      Documentation/admin-guide/pm/amd-pstate.rst
1100 F:      drivers/cpufreq/amd-pstate*
1101 F:      include/linux/amd-pstate.h
1102 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1103
1104 AMD PTDMA DRIVER
1105 M:      Sanjay R Mehta <[email protected]>
1106 L:      [email protected]
1107 S:      Maintained
1108 F:      drivers/dma/ptdma/
1109
1110 AMD SEATTLE DEVICE TREE SUPPORT
1111 M:      Suravee Suthikulpanit <[email protected]>
1112 M:      Tom Lendacky <[email protected]>
1113 S:      Supported
1114 F:      arch/arm64/boot/dts/amd/
1115
1116 AMD XGBE DRIVER
1117 M:      "Shyam Sundar S K" <[email protected]>
1118 L:      [email protected]
1119 S:      Supported
1120 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1121 F:      drivers/net/ethernet/amd/xgbe/
1122
1123 AMD SENSOR FUSION HUB DRIVER
1124 M:      Basavaraj Natikar <[email protected]>
1125 L:      [email protected]
1126 S:      Maintained
1127 F:      Documentation/hid/amd-sfh*
1128 F:      drivers/hid/amd-sfh-hid/
1129
1130 AMLOGIC DDR PMU DRIVER
1131 M:      Jiucheng Xu <[email protected]>
1132 L:      [email protected]
1133 S:      Supported
1134 W:      http://www.amlogic.com
1135 F:      Documentation/admin-guide/perf/meson-ddr-pmu.rst
1136 F:      Documentation/devicetree/bindings/perf/amlogic,g12-ddr-pmu.yaml
1137 F:      drivers/perf/amlogic/
1138 F:      include/soc/amlogic/
1139
1140 AMPHION VPU CODEC V4L2 DRIVER
1141 M:      Ming Qian <[email protected]>
1142 M:      Shijie Qin <[email protected]>
1143 M:      Zhou Peng <[email protected]>
1144 L:      [email protected]
1145 S:      Maintained
1146 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1147 F:      drivers/media/platform/amphion/
1148
1149 AMS AS73211 DRIVER
1150 M:      Christian Eggers <[email protected]>
1151 L:      [email protected]
1152 S:      Maintained
1153 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1154 F:      drivers/iio/light/as73211.c
1155
1156 AMT (Automatic Multicast Tunneling)
1157 M:      Taehee Yoo <[email protected]>
1158 L:      [email protected]
1159 S:      Maintained
1160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1162 F:      drivers/net/amt.c
1163
1164 ANALOG DEVICES INC AD4130 DRIVER
1165 M:      Cosmin Tanislav <[email protected]>
1166 L:      [email protected]
1167 S:      Supported
1168 W:      http://ez.analog.com/community/linux-device-drivers
1169 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-ad4130
1170 F:      Documentation/devicetree/bindings/iio/adc/adi,ad4130.yaml
1171 F:      drivers/iio/adc/ad4130.c
1172
1173 ANALOG DEVICES INC AD7192 DRIVER
1174 M:      Alexandru Tachici <[email protected]>
1175 L:      [email protected]
1176 S:      Supported
1177 W:      https://ez.analog.com/linux-software-drivers
1178 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1179 F:      drivers/iio/adc/ad7192.c
1180
1181 ANALOG DEVICES INC AD7292 DRIVER
1182 M:      Marcelo Schmitt <[email protected]>
1183 L:      [email protected]
1184 S:      Supported
1185 W:      https://ez.analog.com/linux-software-drivers
1186 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1187 F:      drivers/iio/adc/ad7292.c
1188
1189 ANALOG DEVICES INC AD3552R DRIVER
1190 M:      Nuno Sá <[email protected]>
1191 L:      [email protected]
1192 S:      Supported
1193 W:      https://ez.analog.com/linux-software-drivers
1194 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1195 F:      drivers/iio/dac/ad3552r.c
1196
1197 ANALOG DEVICES INC AD7293 DRIVER
1198 M:      Antoniu Miclaus <[email protected]>
1199 L:      [email protected]
1200 S:      Supported
1201 W:      https://ez.analog.com/linux-software-drivers
1202 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1203 F:      drivers/iio/dac/ad7293.c
1204
1205 ANALOG DEVICES INC AD7768-1 DRIVER
1206 M:      Michael Hennerich <[email protected]>
1207 L:      [email protected]
1208 S:      Supported
1209 W:      https://ez.analog.com/linux-software-drivers
1210 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1211 F:      drivers/iio/adc/ad7768-1.c
1212
1213 ANALOG DEVICES INC AD7780 DRIVER
1214 M:      Michael Hennerich <[email protected]>
1215 M:      Renato Lui Geh <[email protected]>
1216 L:      [email protected]
1217 S:      Supported
1218 W:      https://ez.analog.com/linux-software-drivers
1219 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1220 F:      drivers/iio/adc/ad7780.c
1221
1222 ANALOG DEVICES INC AD74115 DRIVER
1223 M:      Cosmin Tanislav <[email protected]>
1224 L:      [email protected]
1225 S:      Supported
1226 W:      http://ez.analog.com/community/linux-device-drivers
1227 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74115.yaml
1228 F:      drivers/iio/addac/ad74115.c
1229
1230 ANALOG DEVICES INC AD74413R DRIVER
1231 M:      Cosmin Tanislav <[email protected]>
1232 L:      [email protected]
1233 S:      Supported
1234 W:      https://ez.analog.com/linux-software-drivers
1235 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1236 F:      drivers/iio/addac/ad74413r.c
1237 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1238
1239 ANALOG DEVICES INC ADA4250 DRIVER
1240 M:      Antoniu Miclaus <[email protected]>
1241 L:      [email protected]
1242 S:      Supported
1243 W:      https://ez.analog.com/linux-software-drivers
1244 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1245 F:      drivers/iio/amplifiers/ada4250.c
1246
1247 ANALOG DEVICES INC ADF4377 DRIVER
1248 M:      Antoniu Miclaus <[email protected]>
1249 L:      [email protected]
1250 S:      Supported
1251 W:      https://ez.analog.com/linux-software-drivers
1252 F:      Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml
1253 F:      drivers/iio/frequency/adf4377.c
1254
1255 ANALOG DEVICES INC ADGS1408 DRIVER
1256 M:      Mircea Caprioru <[email protected]>
1257 S:      Supported
1258 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1259 F:      drivers/mux/adgs1408.c
1260
1261 ANALOG DEVICES INC ADIN DRIVER
1262 M:      Michael Hennerich <[email protected]>
1263 L:      [email protected]
1264 S:      Supported
1265 W:      https://ez.analog.com/linux-software-drivers
1266 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1267 F:      drivers/net/phy/adin.c
1268
1269 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1270 M:      Nuno Sa <[email protected]>
1271 L:      [email protected]
1272 S:      Supported
1273 F:      drivers/iio/imu/adis.c
1274 F:      drivers/iio/imu/adis_buffer.c
1275 F:      drivers/iio/imu/adis_trigger.c
1276 F:      include/linux/iio/imu/adis.h
1277
1278 ANALOG DEVICES INC ADIS16460 DRIVER
1279 M:      Dragos Bogdan <[email protected]>
1280 L:      [email protected]
1281 S:      Supported
1282 W:      https://ez.analog.com/linux-software-drivers
1283 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1284 F:      drivers/iio/imu/adis16460.c
1285
1286 ANALOG DEVICES INC ADIS16475 DRIVER
1287 M:      Nuno Sa <[email protected]>
1288 L:      [email protected]
1289 W:      https://ez.analog.com/linux-software-drivers
1290 S:      Supported
1291 F:      drivers/iio/imu/adis16475.c
1292 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1293
1294 ANALOG DEVICES INC ADM1177 DRIVER
1295 M:      Michael Hennerich <[email protected]>
1296 L:      [email protected]
1297 S:      Supported
1298 W:      https://ez.analog.com/linux-software-drivers
1299 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1300 F:      drivers/hwmon/adm1177.c
1301
1302 ANALOG DEVICES INC ADMV1013 DRIVER
1303 M:      Antoniu Miclaus <[email protected]>
1304 L:      [email protected]
1305 S:      Supported
1306 W:      https://ez.analog.com/linux-software-drivers
1307 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1308 F:      drivers/iio/frequency/admv1013.c
1309
1310 ANALOG DEVICES INC ADMV8818 DRIVER
1311 M:      Antoniu Miclaus <[email protected]>
1312 L:      [email protected]
1313 S:      Supported
1314 W:      https://ez.analog.com/linux-software-drivers
1315 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1316 F:      drivers/iio/filter/admv8818.c
1317
1318 ANALOG DEVICES INC ADMV1014 DRIVER
1319 M:      Antoniu Miclaus <[email protected]>
1320 L:      [email protected]
1321 S:      Supported
1322 W:      https://ez.analog.com/linux-software-drivers
1323 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1324 F:      drivers/iio/frequency/admv1014.c
1325
1326 ANALOG DEVICES INC ADP5061 DRIVER
1327 M:      Michael Hennerich <[email protected]>
1328 L:      [email protected]
1329 S:      Supported
1330 W:      https://ez.analog.com/linux-software-drivers
1331 F:      drivers/power/supply/adp5061.c
1332
1333 ANALOG DEVICES INC ADRF6780 DRIVER
1334 M:      Antoniu Miclaus <[email protected]>
1335 L:      [email protected]
1336 S:      Supported
1337 W:      https://ez.analog.com/linux-software-drivers
1338 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1339 F:      drivers/iio/frequency/adrf6780.c
1340
1341 ANALOG DEVICES INC ADV7180 DRIVER
1342 M:      Lars-Peter Clausen <[email protected]>
1343 L:      [email protected]
1344 S:      Supported
1345 W:      https://ez.analog.com/linux-software-drivers
1346 F:      drivers/media/i2c/adv7180.c
1347 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1348
1349 ANALOG DEVICES INC ADV748X DRIVER
1350 M:      Kieran Bingham <[email protected]>
1351 L:      [email protected]
1352 S:      Maintained
1353 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1354 F:      drivers/media/i2c/adv748x/*
1355
1356 ANALOG DEVICES INC ADV7511 DRIVER
1357 M:      Hans Verkuil <[email protected]>
1358 L:      [email protected]
1359 S:      Maintained
1360 F:      drivers/media/i2c/adv7511*
1361
1362 ANALOG DEVICES INC ADV7604 DRIVER
1363 M:      Hans Verkuil <[email protected]>
1364 L:      [email protected]
1365 S:      Maintained
1366 F:      drivers/media/i2c/adv7604*
1367 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1368
1369 ANALOG DEVICES INC ADV7842 DRIVER
1370 M:      Hans Verkuil <[email protected]>
1371 L:      [email protected]
1372 S:      Maintained
1373 F:      drivers/media/i2c/adv7842*
1374
1375 ANALOG DEVICES INC ADXRS290 DRIVER
1376 M:      Nishant Malpani <[email protected]>
1377 L:      [email protected]
1378 S:      Supported
1379 F:      drivers/iio/gyro/adxrs290.c
1380 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1381
1382 ANALOG DEVICES INC ASOC CODEC DRIVERS
1383 M:      Lars-Peter Clausen <[email protected]>
1384 M:      Nuno Sá <[email protected]>
1385 L:      [email protected] (moderated for non-subscribers)
1386 S:      Supported
1387 W:      http://wiki.analog.com/
1388 W:      https://ez.analog.com/linux-software-drivers
1389 F:      sound/soc/codecs/ad1*
1390 F:      sound/soc/codecs/ad7*
1391 F:      sound/soc/codecs/adau*
1392 F:      sound/soc/codecs/adav*
1393 F:      sound/soc/codecs/sigmadsp.*
1394 F:      sound/soc/codecs/ssm*
1395
1396 ANALOG DEVICES INC DMA DRIVERS
1397 M:      Lars-Peter Clausen <[email protected]>
1398 S:      Supported
1399 W:      https://ez.analog.com/linux-software-drivers
1400 F:      drivers/dma/dma-axi-dmac.c
1401
1402 ANALOG DEVICES INC IIO DRIVERS
1403 M:      Lars-Peter Clausen <[email protected]>
1404 M:      Michael Hennerich <[email protected]>
1405 S:      Supported
1406 W:      http://wiki.analog.com/
1407 W:      https://ez.analog.com/linux-software-drivers
1408 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1409 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1410 F:      Documentation/devicetree/bindings/iio/*/adi,*
1411 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2496.yaml
1412 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2497.yaml
1413 F:      drivers/iio/*/ad*
1414 F:      drivers/iio/adc/ltc249*
1415 F:      drivers/iio/amplifiers/hmc425a.c
1416 F:      drivers/staging/iio/*/ad*
1417 X:      drivers/iio/*/adjd*
1418
1419 ANALOG DEVICES INC MAX31760 DRIVER
1420 M:      Ibrahim Tilki <[email protected]>
1421 S:      Maintained
1422 W:      http://wiki.analog.com/
1423 W:      https://ez.analog.com/linux-software-drivers
1424 F:      Documentation/devicetree/bindings/hwmon/adi,max31760.yaml
1425 F:      Documentation/hwmon/max31760.rst
1426 F:      drivers/hwmon/max31760.c
1427
1428 ANALOGBITS PLL LIBRARIES
1429 M:      Paul Walmsley <[email protected]>
1430 S:      Supported
1431 F:      drivers/clk/analogbits/*
1432 F:      include/linux/clk/analogbits*
1433
1434 ANDROID CONFIG FRAGMENTS
1435 M:      Rob Herring <[email protected]>
1436 S:      Supported
1437 F:      kernel/configs/android*
1438
1439 ANDROID DRIVERS
1440 M:      Greg Kroah-Hartman <[email protected]>
1441 M:      Arve Hjønnevåg <[email protected]>
1442 M:      Todd Kjos <[email protected]>
1443 M:      Martijn Coenen <[email protected]>
1444 M:      Joel Fernandes <[email protected]>
1445 M:      Christian Brauner <[email protected]>
1446 M:      Carlos Llamas <[email protected]>
1447 M:      Suren Baghdasaryan <[email protected]>
1448 L:      [email protected]
1449 S:      Supported
1450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1451 F:      drivers/android/
1452
1453 ANDROID GOLDFISH PIC DRIVER
1454 M:      Miodrag Dinic <[email protected]>
1455 S:      Supported
1456 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1457 F:      drivers/irqchip/irq-goldfish-pic.c
1458
1459 ANDROID GOLDFISH RTC DRIVER
1460 M:      Jiaxun Yang <[email protected]>
1461 S:      Supported
1462 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1463 F:      drivers/rtc/rtc-goldfish.c
1464
1465 AOA (Apple Onboard Audio) ALSA DRIVER
1466 M:      Johannes Berg <[email protected]>
1467 L:      [email protected]
1468 L:      [email protected] (moderated for non-subscribers)
1469 S:      Maintained
1470 F:      sound/aoa/
1471
1472 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1473 M:      William Breathitt Gray <[email protected]>
1474 L:      [email protected]
1475 S:      Maintained
1476 F:      drivers/iio/addac/stx104.c
1477
1478 APM DRIVER
1479 M:      Jiri Kosina <[email protected]>
1480 S:      Odd fixes
1481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1482 F:      arch/x86/kernel/apm_32.c
1483 F:      drivers/char/apm-emulation.c
1484 F:      include/linux/apm_bios.h
1485 F:      include/uapi/linux/apm_bios.h
1486
1487 APPARMOR SECURITY MODULE
1488 M:      John Johansen <[email protected]>
1489 M:      John Johansen <[email protected]>
1490 L:      [email protected] (moderated for non-subscribers)
1491 S:      Supported
1492 W:      apparmor.net
1493 B:      https://gitlab.com/apparmor/apparmor-kernel
1494 C:      irc://irc.oftc.net/apparmor
1495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1496 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1497 F:      Documentation/admin-guide/LSM/apparmor.rst
1498 F:      security/apparmor/
1499
1500 APPLE BCM5974 MULTITOUCH DRIVER
1501 M:      Henrik Rydberg <[email protected]>
1502 L:      [email protected]
1503 S:      Odd fixes
1504 F:      drivers/input/mouse/bcm5974.c
1505
1506 APPLE PCIE CONTROLLER DRIVER
1507 M:      Alyssa Rosenzweig <[email protected]>
1508 M:      Marc Zyngier <[email protected]>
1509 L:      [email protected]
1510 S:      Maintained
1511 F:      drivers/pci/controller/pcie-apple.c
1512
1513 APPLE SMC DRIVER
1514 M:      Henrik Rydberg <[email protected]>
1515 L:      [email protected]
1516 S:      Odd fixes
1517 F:      drivers/hwmon/applesmc.c
1518
1519 APPLETALK NETWORK LAYER
1520 L:      [email protected]
1521 S:      Odd fixes
1522 F:      drivers/net/appletalk/
1523 F:      include/linux/atalk.h
1524 F:      include/uapi/linux/atalk.h
1525 F:      net/appletalk/
1526
1527 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1528 M:      Khuong Dinh <[email protected]>
1529 S:      Supported
1530 F:      arch/arm64/boot/dts/apm/
1531
1532 APPLIED MICRO (APM) X-GENE SOC EDAC
1533 M:      Khuong Dinh <[email protected]>
1534 S:      Supported
1535 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1536 F:      drivers/edac/xgene_edac.c
1537
1538 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1539 M:      Iyappan Subramanian <[email protected]>
1540 M:      Keyur Chudgar <[email protected]>
1541 S:      Supported
1542 F:      drivers/net/ethernet/apm/xgene-v2/
1543
1544 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1545 M:      Iyappan Subramanian <[email protected]>
1546 M:      Keyur Chudgar <[email protected]>
1547 M:      Quan Nguyen <[email protected]>
1548 S:      Supported
1549 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1550 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1551 F:      drivers/net/ethernet/apm/xgene/
1552 F:      drivers/net/mdio/mdio-xgene.c
1553
1554 APPLIED MICRO (APM) X-GENE SOC PMU
1555 M:      Khuong Dinh <[email protected]>
1556 S:      Supported
1557 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1558 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1559 F:      drivers/perf/xgene_pmu.c
1560
1561 APTINA CAMERA SENSOR PLL
1562 M:      Laurent Pinchart <[email protected]>
1563 L:      [email protected]
1564 S:      Maintained
1565 F:      drivers/media/i2c/aptina-pll.*
1566
1567 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1568 M:      Aleksa Savic <[email protected]>
1569 M:      Jack Doan <[email protected]>
1570 L:      [email protected]
1571 S:      Maintained
1572 F:      Documentation/hwmon/aquacomputer_d5next.rst
1573 F:      drivers/hwmon/aquacomputer_d5next.c
1574
1575 AQUANTIA ETHERNET DRIVER (atlantic)
1576 M:      Igor Russkikh <[email protected]>
1577 L:      [email protected]
1578 S:      Supported
1579 W:      https://www.marvell.com/
1580 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1581 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1582 F:      drivers/net/ethernet/aquantia/atlantic/
1583
1584 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1585 M:      Egor Pomozov <[email protected]>
1586 L:      [email protected]
1587 S:      Supported
1588 W:      http://www.aquantia.com
1589 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1590
1591 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1592 M:      Krzysztof Hałasa <[email protected]>
1593 L:      [email protected]
1594 S:      Maintained
1595 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1596 F:      drivers/media/i2c/ar0521.c
1597
1598 ARASAN NAND CONTROLLER DRIVER
1599 M:      Miquel Raynal <[email protected]>
1600 M:      Naga Sureshkumar Relli <[email protected]>
1601 L:      [email protected]
1602 S:      Maintained
1603 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1604 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1605
1606 ARC FRAMEBUFFER DRIVER
1607 M:      Jaya Kumar <[email protected]>
1608 S:      Maintained
1609 F:      drivers/video/fbdev/arcfb.c
1610 F:      drivers/video/fbdev/core/fb_defio.c
1611
1612 ARC PGU DRM DRIVER
1613 M:      Alexey Brodkin <[email protected]>
1614 S:      Supported
1615 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1616 F:      drivers/gpu/drm/tiny/arcpgu.c
1617
1618 ARCNET NETWORK LAYER
1619 M:      Michael Grzeschik <[email protected]>
1620 L:      [email protected]
1621 S:      Maintained
1622 F:      drivers/net/arcnet/
1623 F:      include/uapi/linux/if_arcnet.h
1624
1625 ARM ARCHITECTED TIMER DRIVER
1626 M:      Mark Rutland <[email protected]>
1627 M:      Marc Zyngier <[email protected]>
1628 L:      [email protected] (moderated for non-subscribers)
1629 S:      Maintained
1630 F:      arch/arm/include/asm/arch_timer.h
1631 F:      arch/arm64/include/asm/arch_timer.h
1632 F:      drivers/clocksource/arm_arch_timer.c
1633
1634 ARM HDLCD DRM DRIVER
1635 M:      Liviu Dudau <[email protected]>
1636 S:      Supported
1637 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1638 F:      drivers/gpu/drm/arm/hdlcd_*
1639
1640 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1641 M:      Linus Walleij <[email protected]>
1642 L:      [email protected] (moderated for non-subscribers)
1643 S:      Maintained
1644 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1645 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1646 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1647 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1648 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1649 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1650 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1651 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1652 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1653 F:      arch/arm/boot/dts/arm-realview-*
1654 F:      arch/arm/boot/dts/integrator*
1655 F:      arch/arm/boot/dts/versatile*
1656 F:      arch/arm/mach-versatile/
1657 F:      drivers/bus/arm-integrator-lm.c
1658 F:      drivers/clk/versatile/
1659 F:      drivers/i2c/busses/i2c-versatile.c
1660 F:      drivers/irqchip/irq-versatile-fpga.c
1661 F:      drivers/mtd/maps/physmap-versatile.*
1662 F:      drivers/power/reset/arm-versatile-reboot.c
1663 F:      drivers/soc/versatile/
1664
1665 ARM KOMEDA DRM-KMS DRIVER
1666 M:      James (Qian) Wang <[email protected]>
1667 M:      Liviu Dudau <[email protected]>
1668 M:      Mihail Atanassov <[email protected]>
1669 L:      Mali DP Maintainers <[email protected]>
1670 S:      Supported
1671 T:      git git://anongit.freedesktop.org/drm/drm-misc
1672 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1673 F:      Documentation/gpu/komeda-kms.rst
1674 F:      drivers/gpu/drm/arm/display/include/
1675 F:      drivers/gpu/drm/arm/display/komeda/
1676
1677 ARM MALI PANFROST DRM DRIVER
1678 M:      Rob Herring <[email protected]>
1679 M:      Tomeu Vizoso <[email protected]>
1680 R:      Steven Price <[email protected]>
1681 R:      Alyssa Rosenzweig <[email protected]>
1682 L:      [email protected]
1683 S:      Supported
1684 T:      git git://anongit.freedesktop.org/drm/drm-misc
1685 F:      drivers/gpu/drm/panfrost/
1686 F:      include/uapi/drm/panfrost_drm.h
1687
1688 ARM MALI-DP DRM DRIVER
1689 M:      Liviu Dudau <[email protected]>
1690 M:      Brian Starkey <[email protected]>
1691 L:      Mali DP Maintainers <[email protected]>
1692 S:      Supported
1693 T:      git git://anongit.freedesktop.org/drm/drm-misc
1694 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1695 F:      Documentation/gpu/afbc.rst
1696 F:      drivers/gpu/drm/arm/
1697
1698 ARM MFM AND FLOPPY DRIVERS
1699 M:      Ian Molton <[email protected]>
1700 S:      Maintained
1701 F:      arch/arm/include/asm/floppy.h
1702 F:      arch/arm/mach-rpc/floppydma.S
1703
1704 ARM PMU PROFILING AND DEBUGGING
1705 M:      Will Deacon <[email protected]>
1706 M:      Mark Rutland <[email protected]>
1707 L:      [email protected] (moderated for non-subscribers)
1708 S:      Maintained
1709 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1710 F:      Documentation/devicetree/bindings/perf/
1711 F:      arch/arm*/include/asm/hw_breakpoint.h
1712 F:      arch/arm*/include/asm/perf_event.h
1713 F:      arch/arm*/kernel/hw_breakpoint.c
1714 F:      arch/arm*/kernel/perf_*
1715 F:      drivers/perf/
1716 F:      include/linux/perf/arm_pmu.h
1717
1718 ARM PORT
1719 M:      Russell King <[email protected]>
1720 L:      [email protected] (moderated for non-subscribers)
1721 S:      Odd Fixes
1722 W:      http://www.armlinux.org.uk/
1723 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1724 F:      arch/arm/
1725 X:      arch/arm/boot/dts/
1726
1727 ARM PRIMECELL AACI PL041 DRIVER
1728 M:      Russell King <[email protected]>
1729 S:      Odd Fixes
1730 F:      sound/arm/aaci.*
1731
1732 ARM PRIMECELL BUS SUPPORT
1733 M:      Russell King <[email protected]>
1734 S:      Odd Fixes
1735 F:      drivers/amba/
1736 F:      include/linux/amba/bus.h
1737
1738 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1739 M:      Miquel Raynal <[email protected]>
1740 M:      Naga Sureshkumar Relli <[email protected]>
1741 L:      [email protected]
1742 S:      Maintained
1743 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1744 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1745
1746 ARM PRIMECELL PL35X SMC DRIVER
1747 M:      Miquel Raynal <[email protected]>
1748 M:      Naga Sureshkumar Relli <[email protected]>
1749 L:      [email protected] (moderated for non-subscribers)
1750 S:      Maintained
1751 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
1752 F:      drivers/memory/pl353-smc.c
1753
1754 ARM PRIMECELL CLCD PL110 DRIVER
1755 M:      Russell King <[email protected]>
1756 S:      Odd Fixes
1757 F:      drivers/video/fbdev/amba-clcd.*
1758
1759 ARM PRIMECELL KMI PL050 DRIVER
1760 M:      Russell King <[email protected]>
1761 S:      Odd Fixes
1762 F:      drivers/input/serio/ambakmi.*
1763 F:      include/linux/amba/kmi.h
1764
1765 ARM PRIMECELL MMCI PL180/1 DRIVER
1766 M:      Russell King <[email protected]>
1767 S:      Odd Fixes
1768 F:      drivers/mmc/host/mmci.*
1769 F:      include/linux/amba/mmci.h
1770
1771 ARM PRIMECELL SSP PL022 SPI DRIVER
1772 M:      Linus Walleij <[email protected]>
1773 L:      [email protected] (moderated for non-subscribers)
1774 S:      Maintained
1775 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1776 F:      drivers/spi/spi-pl022.c
1777
1778 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1779 M:      Russell King <[email protected]>
1780 S:      Odd Fixes
1781 F:      drivers/tty/serial/amba-pl01*.c
1782 F:      include/linux/amba/serial.h
1783
1784 ARM PRIMECELL VIC PL190/PL192 DRIVER
1785 M:      Linus Walleij <[email protected]>
1786 L:      [email protected] (moderated for non-subscribers)
1787 S:      Maintained
1788 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1789 F:      drivers/irqchip/irq-vic.c
1790
1791 ARM SMC WATCHDOG DRIVER
1792 M:      Julius Werner <[email protected]>
1793 R:      Evan Benn <[email protected]>
1794 S:      Maintained
1795 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1796 F:      drivers/watchdog/arm_smc_wdt.c
1797
1798 ARM SMMU DRIVERS
1799 M:      Will Deacon <[email protected]>
1800 R:      Robin Murphy <[email protected]>
1801 L:      [email protected] (moderated for non-subscribers)
1802 S:      Maintained
1803 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1804 F:      drivers/iommu/arm/
1805 F:      drivers/iommu/io-pgtable-arm*
1806
1807 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1808 M:      Arnd Bergmann <[email protected]>
1809 M:      Olof Johansson <[email protected]>
1810 M:      [email protected]
1811 L:      [email protected] (moderated for non-subscribers)
1812 S:      Maintained
1813 C:      irc://irc.libera.chat/armlinux
1814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1815 F:      arch/arm/boot/dts/Makefile
1816 F:      arch/arm64/boot/dts/Makefile
1817
1818 ARM SUB-ARCHITECTURES
1819 L:      [email protected] (moderated for non-subscribers)
1820 S:      Maintained
1821 C:      irc://irc.libera.chat/armlinux
1822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1823 F:      arch/arm/mach-*/
1824 F:      arch/arm/plat-*/
1825
1826 ARM/ACTIONS SEMI ARCHITECTURE
1827 M:      Andreas Färber <[email protected]>
1828 M:      Manivannan Sadhasivam <[email protected]>
1829 L:      [email protected] (moderated for non-subscribers)
1830 L:      [email protected] (moderated for non-subscribers)
1831 S:      Maintained
1832 F:      Documentation/devicetree/bindings/arm/actions.yaml
1833 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1834 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1835 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1836 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1837 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1838 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1839 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1840 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1841 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1842 F:      arch/arm/boot/dts/owl-*
1843 F:      arch/arm/mach-actions/
1844 F:      arch/arm64/boot/dts/actions/
1845 F:      drivers/clk/actions/
1846 F:      drivers/clocksource/timer-owl*
1847 F:      drivers/dma/owl-dma.c
1848 F:      drivers/i2c/busses/i2c-owl.c
1849 F:      drivers/irqchip/irq-owl-sirq.c
1850 F:      drivers/mmc/host/owl-mmc.c
1851 F:      drivers/net/ethernet/actions/
1852 F:      drivers/pinctrl/actions/*
1853 F:      drivers/soc/actions/
1854 F:      include/dt-bindings/power/owl-*
1855 F:      include/dt-bindings/reset/actions,*
1856 F:      include/linux/soc/actions/
1857 N:      owl
1858
1859 ARM/Allwinner SoC Clock Support
1860 M:      Emilio López <[email protected]>
1861 S:      Maintained
1862 F:      drivers/clk/sunxi/
1863
1864 ARM/Allwinner sunXi SoC support
1865 M:      Chen-Yu Tsai <[email protected]>
1866 M:      Jernej Skrabec <[email protected]>
1867 M:      Samuel Holland <[email protected]>
1868 L:      [email protected] (moderated for non-subscribers)
1869 S:      Maintained
1870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1871 L:      [email protected]
1872 F:      arch/arm/mach-sunxi/
1873 F:      arch/arm64/boot/dts/allwinner/
1874 F:      drivers/clk/sunxi-ng/
1875 F:      drivers/pinctrl/sunxi/
1876 F:      drivers/soc/sunxi/
1877 N:      allwinner
1878 N:      sun[x456789]i
1879 N:      sun[25]0i
1880
1881 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1882 M:      Neil Armstrong <[email protected]>
1883 M:      Jerome Brunet <[email protected]>
1884 L:      [email protected]
1885 S:      Maintained
1886 F:      Documentation/devicetree/bindings/clock/amlogic*
1887 F:      drivers/clk/meson/
1888 F:      include/dt-bindings/clock/gxbb*
1889 F:      include/dt-bindings/clock/meson*
1890
1891 ARM/Amlogic Meson SoC Crypto Drivers
1892 M:      Corentin Labbe <[email protected]>
1893 L:      [email protected]
1894 L:      [email protected]
1895 S:      Maintained
1896 F:      Documentation/devicetree/bindings/crypto/amlogic*
1897 F:      drivers/crypto/amlogic/
1898
1899 ARM/Amlogic Meson SoC Sound Drivers
1900 M:      Jerome Brunet <[email protected]>
1901 L:      [email protected] (moderated for non-subscribers)
1902 S:      Maintained
1903 F:      Documentation/devicetree/bindings/sound/amlogic*
1904 F:      sound/soc/meson/
1905
1906 ARM/Amlogic Meson SoC support
1907 M:      Neil Armstrong <[email protected]>
1908 M:      Kevin Hilman <[email protected]>
1909 R:      Jerome Brunet <[email protected]>
1910 R:      Martin Blumenstingl <[email protected]>
1911 L:      [email protected] (moderated for non-subscribers)
1912 L:      [email protected]
1913 S:      Maintained
1914 W:      http://linux-meson.com/
1915 F:      arch/arm/boot/dts/meson*
1916 F:      arch/arm/mach-meson/
1917 F:      arch/arm64/boot/dts/amlogic/
1918 F:      drivers/mmc/host/meson*
1919 F:      drivers/pinctrl/meson/
1920 F:      drivers/rtc/rtc-meson*
1921 F:      drivers/soc/amlogic/
1922 N:      meson
1923
1924 ARM/Annapurna Labs ALPINE ARCHITECTURE
1925 M:      Tsahee Zidenberg <[email protected]>
1926 M:      Antoine Tenart <[email protected]>
1927 L:      [email protected] (moderated for non-subscribers)
1928 S:      Maintained
1929 F:      arch/arm/boot/dts/alpine*
1930 F:      arch/arm/mach-alpine/
1931 F:      arch/arm64/boot/dts/amazon/
1932 F:      drivers/*/*alpine*
1933
1934 ARM/APPLE MACHINE SUPPORT
1935 M:      Hector Martin <[email protected]>
1936 M:      Sven Peter <[email protected]>
1937 R:      Alyssa Rosenzweig <[email protected]>
1938 L:      [email protected]
1939 L:      [email protected] (moderated for non-subscribers)
1940 S:      Maintained
1941 W:      https://asahilinux.org
1942 B:      https://github.com/AsahiLinux/linux/issues
1943 C:      irc://irc.oftc.net/asahi-dev
1944 T:      git https://github.com/AsahiLinux/linux.git
1945 F:      Documentation/devicetree/bindings/arm/apple.yaml
1946 F:      Documentation/devicetree/bindings/arm/apple/*
1947 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1948 F:      Documentation/devicetree/bindings/cpufreq/apple,cluster-cpufreq.yaml
1949 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
1950 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1951 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1952 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1953 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1954 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1955 F:      Documentation/devicetree/bindings/net/bluetooth/brcm,bcm4377-bluetooth.yaml
1956 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1957 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1958 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1959 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1960 F:      Documentation/devicetree/bindings/power/apple*
1961 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1962 F:      arch/arm64/boot/dts/apple/
1963 F:      drivers/bluetooth/hci_bcm4377.c
1964 F:      drivers/clk/clk-apple-nco.c
1965 F:      drivers/cpufreq/apple-soc-cpufreq.c
1966 F:      drivers/dma/apple-admac.c
1967 F:      drivers/i2c/busses/i2c-pasemi-core.c
1968 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1969 F:      drivers/iommu/apple-dart.c
1970 F:      drivers/iommu/io-pgtable-dart.c
1971 F:      drivers/irqchip/irq-apple-aic.c
1972 F:      drivers/mailbox/apple-mailbox.c
1973 F:      drivers/nvme/host/apple.c
1974 F:      drivers/nvmem/apple-efuses.c
1975 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1976 F:      drivers/soc/apple/*
1977 F:      drivers/watchdog/apple_wdt.c
1978 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1979 F:      include/dt-bindings/pinctrl/apple.h
1980 F:      include/linux/apple-mailbox.h
1981 F:      include/linux/soc/apple/*
1982
1983 ARM/APPLE MACHINE SOUND DRIVERS
1984 M:      Martin Povišer <[email protected]>
1985 L:      [email protected]
1986 L:      [email protected] (moderated for non-subscribers)
1987 S:      Maintained
1988 F:      Documentation/devicetree/bindings/sound/apple,*
1989 F:      sound/soc/apple/*
1990 F:      sound/soc/codecs/cs42l83-i2c.c
1991
1992 ARM/ARTPEC MACHINE SUPPORT
1993 M:      Jesper Nilsson <[email protected]>
1994 M:      Lars Persson <[email protected]>
1995 L:      [email protected]
1996 S:      Maintained
1997 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1998 F:      arch/arm/boot/dts/artpec6*
1999 F:      arch/arm/mach-artpec
2000 F:      drivers/clk/axis
2001 F:      drivers/crypto/axis
2002 F:      drivers/mmc/host/usdhi6rol0.c
2003 F:      drivers/pinctrl/pinctrl-artpec*
2004
2005 ARM/ASPEED I2C DRIVER
2006 M:      Brendan Higgins <[email protected]>
2007 R:      Benjamin Herrenschmidt <[email protected]>
2008 R:      Joel Stanley <[email protected]>
2009 L:      [email protected]
2010 L:      [email protected] (moderated for non-subscribers)
2011 S:      Maintained
2012 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
2013 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
2014 F:      drivers/i2c/busses/i2c-aspeed.c
2015 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
2016
2017 ARM/ASPEED MACHINE SUPPORT
2018 M:      Joel Stanley <[email protected]>
2019 R:      Andrew Jeffery <[email protected]>
2020 L:      [email protected] (moderated for non-subscribers)
2021 L:      [email protected] (moderated for non-subscribers)
2022 S:      Supported
2023 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
2024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
2025 F:      Documentation/devicetree/bindings/arm/aspeed/
2026 F:      arch/arm/boot/dts/aspeed-*
2027 F:      arch/arm/mach-aspeed/
2028 N:      aspeed
2029
2030 ARM/BITMAIN ARCHITECTURE
2031 M:      Manivannan Sadhasivam <[email protected]>
2032 L:      [email protected] (moderated for non-subscribers)
2033 S:      Maintained
2034 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
2035 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
2036 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
2037 F:      arch/arm64/boot/dts/bitmain/
2038 F:      drivers/clk/clk-bm1880.c
2039 F:      drivers/pinctrl/pinctrl-bm1880.c
2040
2041 ARM/CALXEDA HIGHBANK ARCHITECTURE
2042 M:      Andre Przywara <[email protected]>
2043 L:      [email protected] (moderated for non-subscribers)
2044 S:      Maintained
2045 F:      arch/arm/boot/dts/ecx-*.dts*
2046 F:      arch/arm/boot/dts/highbank.dts
2047 F:      arch/arm/mach-highbank/
2048
2049 ARM/CAVIUM THUNDER NETWORK DRIVER
2050 M:      Sunil Goutham <[email protected]>
2051 L:      [email protected] (moderated for non-subscribers)
2052 S:      Supported
2053 F:      drivers/net/ethernet/cavium/thunder/
2054
2055 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
2056 M:      Lukasz Majewski <[email protected]>
2057 L:      [email protected] (moderated for non-subscribers)
2058 S:      Maintained
2059 F:      arch/arm/mach-ep93xx/ts72xx.c
2060
2061 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
2062 M:      Alexander Shiyan <[email protected]>
2063 L:      [email protected] (moderated for non-subscribers)
2064 S:      Odd Fixes
2065 N:      clps711x
2066
2067 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
2068 M:      Lennert Buytenhek <[email protected]>
2069 L:      [email protected] (moderated for non-subscribers)
2070 S:      Maintained
2071
2072 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
2073 M:      Hartley Sweeten <[email protected]>
2074 M:      Alexander Sverdlin <[email protected]>
2075 L:      [email protected] (moderated for non-subscribers)
2076 S:      Maintained
2077 F:      Documentation/devicetree/bindings/iio/adc/cirrus,ep9301-adc.yaml
2078 F:      arch/arm/boot/compressed/misc-ep93xx.h
2079 F:      arch/arm/mach-ep93xx/
2080 F:      drivers/iio/adc/ep93xx_adc.c
2081
2082 ARM/CLKDEV SUPPORT
2083 M:      Russell King <[email protected]>
2084 L:      [email protected] (moderated for non-subscribers)
2085 S:      Maintained
2086 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
2087 F:      drivers/clk/clkdev.c
2088
2089 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
2090 M:      Baruch Siach <[email protected]>
2091 L:      [email protected] (moderated for non-subscribers)
2092 S:      Maintained
2093 F:      arch/arm/boot/dts/cx92755*
2094 N:      digicolor
2095
2096 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2097 M:      Mathieu Poirier <[email protected]>
2098 M:      Suzuki K Poulose <[email protected]>
2099 R:      Mike Leach <[email protected]>
2100 R:      Leo Yan <[email protected]>
2101 L:      [email protected] (moderated for non-subscribers)
2102 L:      [email protected] (moderated for non-subscribers)
2103 S:      Maintained
2104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2105 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2106 F:      Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2107 F:      Documentation/devicetree/bindings/arm/qcom,coresight-*.yaml
2108 F:      Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2109 F:      Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2110 F:      Documentation/trace/coresight/*
2111 F:      drivers/hwtracing/coresight/*
2112 F:      include/dt-bindings/arm/coresight-cti-dt.h
2113 F:      include/linux/coresight*
2114 F:      samples/coresight/*
2115 F:      tools/perf/tests/shell/coresight/*
2116 F:      tools/perf/arch/arm/util/auxtrace.c
2117 F:      tools/perf/arch/arm/util/cs-etm.c
2118 F:      tools/perf/arch/arm/util/cs-etm.h
2119 F:      tools/perf/arch/arm/util/pmu.c
2120 F:      tools/perf/util/cs-etm-decoder/*
2121 F:      tools/perf/util/cs-etm.*
2122
2123 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2124 M:      Hans Ulli Kroll <[email protected]>
2125 M:      Linus Walleij <[email protected]>
2126 L:      [email protected] (moderated for non-subscribers)
2127 S:      Maintained
2128 T:      git git://github.com/ulli-kroll/linux.git
2129 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2130 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2131 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2132 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2133 F:      arch/arm/boot/dts/gemini*
2134 F:      arch/arm/mach-gemini/
2135 F:      drivers/crypto/gemini/
2136 F:      drivers/net/ethernet/cortina/
2137 F:      drivers/pinctrl/pinctrl-gemini.c
2138 F:      drivers/rtc/rtc-ftrtc010.c
2139
2140 ARM/CZ.NIC TURRIS SUPPORT
2141 M:      Marek Behún <[email protected]>
2142 S:      Maintained
2143 W:      https://www.turris.cz/
2144 F:      Documentation/ABI/testing/debugfs-moxtet
2145 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2146 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2147 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2148 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2149 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2150 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2151 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2152 F:      drivers/bus/moxtet.c
2153 F:      drivers/firmware/turris-mox-rwtm.c
2154 F:      drivers/leds/leds-turris-omnia.c
2155 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2156 F:      drivers/gpio/gpio-moxtet.c
2157 F:      drivers/watchdog/armada_37xx_wdt.c
2158 F:      include/dt-bindings/bus/moxtet.h
2159 F:      include/linux/armada-37xx-rwtm-mailbox.h
2160 F:      include/linux/moxtet.h
2161
2162 ARM/FARADAY FA526 PORT
2163 M:      Hans Ulli Kroll <[email protected]>
2164 L:      [email protected] (moderated for non-subscribers)
2165 S:      Maintained
2166 T:      git git://git.berlios.de/gemini-board
2167 F:      arch/arm/mm/*-fa*
2168
2169 ARM/FOOTBRIDGE ARCHITECTURE
2170 M:      Russell King <[email protected]>
2171 L:      [email protected] (moderated for non-subscribers)
2172 S:      Maintained
2173 W:      http://www.armlinux.org.uk/
2174 F:      arch/arm/include/asm/hardware/dec21285.h
2175 F:      arch/arm/mach-footbridge/
2176
2177 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2178 M:      Shawn Guo <[email protected]>
2179 M:      Sascha Hauer <[email protected]>
2180 R:      Pengutronix Kernel Team <[email protected]>
2181 R:      Fabio Estevam <[email protected]>
2182 R:      NXP Linux Team <[email protected]>
2183 L:      [email protected] (moderated for non-subscribers)
2184 S:      Maintained
2185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2186 X:      drivers/media/i2c/
2187 F:      arch/arm64/boot/dts/freescale/
2188 X:      arch/arm64/boot/dts/freescale/fsl-*
2189 X:      arch/arm64/boot/dts/freescale/qoriq-*
2190 N:      imx
2191 N:      mxs
2192
2193 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2194 M:      Shawn Guo <[email protected]>
2195 M:      Li Yang <[email protected]>
2196 L:      [email protected] (moderated for non-subscribers)
2197 S:      Maintained
2198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2199 F:      arch/arm/boot/dts/ls1021a*
2200 F:      arch/arm64/boot/dts/freescale/fsl-*
2201 F:      arch/arm64/boot/dts/freescale/qoriq-*
2202
2203 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2204 M:      Shawn Guo <[email protected]>
2205 M:      Sascha Hauer <[email protected]>
2206 R:      Pengutronix Kernel Team <[email protected]>
2207 R:      Stefan Agner <[email protected]>
2208 L:      [email protected] (moderated for non-subscribers)
2209 S:      Maintained
2210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2211 F:      arch/arm/boot/dts/vf*
2212 F:      arch/arm/mach-imx/*vf610*
2213
2214 ARM/GUMSTIX MACHINE SUPPORT
2215 M:      Steve Sakoman <[email protected]>
2216 L:      [email protected] (moderated for non-subscribers)
2217 S:      Maintained
2218
2219 ARM/HISILICON SOC SUPPORT
2220 M:      Wei Xu <[email protected]>
2221 L:      [email protected] (moderated for non-subscribers)
2222 S:      Supported
2223 W:      http://www.hisilicon.com
2224 T:      git https://github.com/hisilicon/linux-hisi.git
2225 F:      arch/arm/boot/dts/hi3*
2226 F:      arch/arm/boot/dts/hip*
2227 F:      arch/arm/boot/dts/hisi*
2228 F:      arch/arm/mach-hisi/
2229 F:      arch/arm64/boot/dts/hisilicon/
2230
2231 ARM/HP JORNADA 7XX MACHINE SUPPORT
2232 M:      Kristoffer Ericson <[email protected]>
2233 S:      Maintained
2234 W:      www.jlime.com
2235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2236 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2237 F:      arch/arm/mach-sa1100/jornada720.c
2238
2239 ARM/HPE GXP ARCHITECTURE
2240 M:      Jean-Marie Verdun <[email protected]>
2241 M:      Nick Hawkins <[email protected]>
2242 S:      Maintained
2243 F:      Documentation/hwmon/gxp-fan-ctrl.rst
2244 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2245 F:      Documentation/devicetree/bindings/hwmon/hpe,gxp-fan-ctrl.yaml
2246 F:      Documentation/devicetree/bindings/i2c/hpe,gxp-i2c.yaml
2247 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2248 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2249 F:      arch/arm/boot/dts/hpe-bmc*
2250 F:      arch/arm/boot/dts/hpe-gxp*
2251 F:      arch/arm/mach-hpe/
2252 F:      drivers/clocksource/timer-gxp.c
2253 F:      drivers/hwmon/gxp-fan-ctrl.c
2254 F:      drivers/i2c/busses/i2c-gxp.c
2255 F:      drivers/spi/spi-gxp.c
2256 F:      drivers/watchdog/gxp-wdt.c
2257
2258 ARM/IGEP MACHINE SUPPORT
2259 M:      Enric Balletbo i Serra <[email protected]>
2260 M:      Javier Martinez Canillas <[email protected]>
2261 L:      [email protected]
2262 L:      [email protected] (moderated for non-subscribers)
2263 S:      Maintained
2264 F:      arch/arm/boot/dts/omap3-igep*
2265
2266 ARM/INTEL IXP4XX ARM ARCHITECTURE
2267 M:      Linus Walleij <[email protected]>
2268 M:      Imre Kaloz <[email protected]>
2269 M:      Krzysztof Halasa <[email protected]>
2270 L:      [email protected] (moderated for non-subscribers)
2271 S:      Maintained
2272 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2273 F:      Documentation/devicetree/bindings/memory-controllers/intel,ixp4xx-expansion*
2274 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2275 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2276 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2277 F:      arch/arm/boot/dts/intel-ixp*
2278 F:      arch/arm/mach-ixp4xx/
2279 F:      drivers/bus/intel-ixp4xx-eb.c
2280 F:      drivers/clocksource/timer-ixp4xx.c
2281 F:      drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c
2282 F:      drivers/gpio/gpio-ixp4xx.c
2283 F:      drivers/irqchip/irq-ixp4xx.c
2284
2285 ARM/INTEL KEEMBAY ARCHITECTURE
2286 M:      Paul J. Murphy <[email protected]>
2287 M:      Daniele Alessandrelli <[email protected]>
2288 S:      Maintained
2289 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2290 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2291 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2292
2293 ARM/INTEL XSC3 (MANZANO) ARM CORE
2294 M:      Lennert Buytenhek <[email protected]>
2295 L:      [email protected] (moderated for non-subscribers)
2296 S:      Maintained
2297
2298 ARM/LG1K ARCHITECTURE
2299 M:      Chanho Min <[email protected]>
2300 L:      [email protected] (moderated for non-subscribers)
2301 S:      Maintained
2302 F:      arch/arm64/boot/dts/lg/
2303
2304 ARM/LPC18XX ARCHITECTURE
2305 M:      Vladimir Zapolskiy <[email protected]>
2306 L:      [email protected] (moderated for non-subscribers)
2307 S:      Maintained
2308 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2309 F:      arch/arm/boot/dts/lpc43*
2310 F:      drivers/i2c/busses/i2c-lpc2k.c
2311 F:      drivers/memory/pl172.c
2312 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2313 F:      drivers/rtc/rtc-lpc24xx.c
2314 N:      lpc18xx
2315
2316 ARM/LPC32XX SOC SUPPORT
2317 M:      Vladimir Zapolskiy <[email protected]>
2318 L:      [email protected] (moderated for non-subscribers)
2319 S:      Maintained
2320 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2321 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2322 F:      arch/arm/boot/dts/lpc32*
2323 F:      arch/arm/mach-lpc32xx/
2324 F:      drivers/i2c/busses/i2c-pnx.c
2325 F:      drivers/net/ethernet/nxp/lpc_eth.c
2326 F:      drivers/usb/host/ohci-nxp.c
2327 F:      drivers/watchdog/pnx4008_wdt.c
2328 N:      lpc32xx
2329
2330 ARM/Marvell Dove/MV78xx0/Orion SOC support
2331 M:      Andrew Lunn <[email protected]>
2332 M:      Sebastian Hesselbarth <[email protected]>
2333 M:      Gregory Clement <[email protected]>
2334 L:      [email protected] (moderated for non-subscribers)
2335 S:      Maintained
2336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2337 F:      Documentation/devicetree/bindings/arm/marvell/marvell,dove.txt
2338 F:      Documentation/devicetree/bindings/arm/marvell/marvell,orion5x.txt
2339 F:      Documentation/devicetree/bindings/soc/dove/
2340 F:      arch/arm/boot/dts/dove*
2341 F:      arch/arm/boot/dts/orion5x*
2342 F:      arch/arm/mach-dove/
2343 F:      arch/arm/mach-mv78xx0/
2344 F:      arch/arm/mach-orion5x/
2345 F:      arch/arm/plat-orion/
2346 F:      drivers/soc/dove/
2347
2348 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2349 M:      Andrew Lunn <[email protected]>
2350 M:      Gregory Clement <[email protected]>
2351 M:      Sebastian Hesselbarth <[email protected]>
2352 L:      [email protected] (moderated for non-subscribers)
2353 S:      Maintained
2354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2355 F:      Documentation/devicetree/bindings/arm/marvell/
2356 F:      arch/arm/boot/dts/armada*
2357 F:      arch/arm/boot/dts/kirkwood*
2358 F:      arch/arm/configs/mvebu_*_defconfig
2359 F:      arch/arm/mach-mvebu/
2360 F:      arch/arm64/boot/dts/marvell/armada*
2361 F:      arch/arm64/boot/dts/marvell/cn913*
2362 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2363 F:      drivers/cpufreq/armada-8k-cpufreq.c
2364 F:      drivers/cpufreq/mvebu-cpufreq.c
2365 F:      drivers/irqchip/irq-armada-370-xp.c
2366 F:      drivers/irqchip/irq-mvebu-*
2367 F:      drivers/pinctrl/mvebu/
2368 F:      drivers/rtc/rtc-armada38x.c
2369
2370 ARM/Mediatek RTC DRIVER
2371 M:      Eddie Huang <[email protected]>
2372 M:      Sean Wang <[email protected]>
2373 L:      [email protected] (moderated for non-subscribers)
2374 L:      [email protected] (moderated for non-subscribers)
2375 S:      Maintained
2376 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2377 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2378 F:      drivers/rtc/rtc-mt2712.c
2379 F:      drivers/rtc/rtc-mt6397.c
2380 F:      drivers/rtc/rtc-mt7622.c
2381
2382 ARM/Mediatek SoC support
2383 M:      Matthias Brugger <[email protected]>
2384 R:      AngeloGioacchino Del Regno <[email protected]>
2385 L:      [email protected]
2386 L:      [email protected] (moderated for non-subscribers)
2387 L:      [email protected] (moderated for non-subscribers)
2388 S:      Maintained
2389 W:      https://mtk.wiki.kernel.org/
2390 C:      irc://irc.libera.chat/linux-mediatek
2391 F:      arch/arm/boot/dts/mt2*
2392 F:      arch/arm/boot/dts/mt6*
2393 F:      arch/arm/boot/dts/mt7*
2394 F:      arch/arm/boot/dts/mt8*
2395 F:      arch/arm/mach-mediatek/
2396 F:      arch/arm64/boot/dts/mediatek/
2397 F:      drivers/soc/mediatek/
2398 N:      mtk
2399 N:      mt[2678]
2400 K:      mediatek
2401
2402 ARM/Mediatek USB3 PHY DRIVER
2403 M:      Chunfeng Yun <[email protected]>
2404 L:      [email protected] (moderated for non-subscribers)
2405 L:      [email protected] (moderated for non-subscribers)
2406 S:      Maintained
2407 F:      Documentation/devicetree/bindings/phy/mediatek,*
2408 F:      drivers/phy/mediatek/
2409
2410 ARM/Microchip (AT91) SoC support
2411 M:      Nicolas Ferre <[email protected]>
2412 M:      Alexandre Belloni <[email protected]>
2413 M:      Claudiu Beznea <[email protected]>
2414 L:      [email protected] (moderated for non-subscribers)
2415 S:      Supported
2416 W:      http://www.linux4sam.org
2417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2418 F:      arch/arm/boot/dts/at91*.dts
2419 F:      arch/arm/boot/dts/at91*.dtsi
2420 F:      arch/arm/boot/dts/sama*.dts
2421 F:      arch/arm/boot/dts/sama*.dtsi
2422 F:      arch/arm/include/debug/at91.S
2423 F:      arch/arm/mach-at91/
2424 F:      drivers/memory/atmel*
2425 F:      drivers/watchdog/sama5d4_wdt.c
2426 F:      include/soc/at91/
2427 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2428 X:      drivers/net/wireless/atmel/
2429 N:      at91
2430 N:      atmel
2431
2432 ARM/Microchip Sparx5 SoC support
2433 M:      Lars Povlsen <[email protected]>
2434 M:      Steen Hegelund <[email protected]>
2435 M:      Daniel Machon <[email protected]>
2436 M:      [email protected]
2437 L:      [email protected] (moderated for non-subscribers)
2438 S:      Supported
2439 T:      git git://github.com/microchip-ung/linux-upstream.git
2440 F:      arch/arm64/boot/dts/microchip/
2441 F:      drivers/net/ethernet/microchip/vcap/
2442 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2443 N:      sparx5
2444
2445 Microchip Timer Counter Block (TCB) Capture Driver
2446 M:      Kamel Bouhara <[email protected]>
2447 L:      [email protected] (moderated for non-subscribers)
2448 L:      [email protected]
2449 S:      Maintained
2450 F:      drivers/counter/microchip-tcb-capture.c
2451
2452 ARM/MILBEAUT ARCHITECTURE
2453 M:      Taichi Sugaya <[email protected]>
2454 M:      Takao Orito <[email protected]>
2455 L:      [email protected] (moderated for non-subscribers)
2456 S:      Maintained
2457 F:      arch/arm/boot/dts/milbeaut*
2458 F:      arch/arm/mach-milbeaut/
2459 N:      milbeaut
2460
2461 ARM/MStar/Sigmastar Armv7 SoC support
2462 M:      Daniel Palmer <[email protected]>
2463 M:      Romain Perier <[email protected]>
2464 L:      [email protected] (moderated for non-subscribers)
2465 S:      Maintained
2466 W:      http://linux-chenxing.org/
2467 T:      git git://github.com/linux-chenxing/linux.git
2468 F:      Documentation/devicetree/bindings/arm/mstar/*
2469 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2470 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2471 F:      arch/arm/boot/dts/mstar-*
2472 F:      arch/arm/mach-mstar/
2473 F:      drivers/clk/mstar/
2474 F:      drivers/clocksource/timer-msc313e.c
2475 F:      drivers/gpio/gpio-msc313.c
2476 F:      drivers/rtc/rtc-msc313.c
2477 F:      drivers/watchdog/msc313e_wdt.c
2478 F:      include/dt-bindings/clock/mstar-*
2479 F:      include/dt-bindings/gpio/msc313-gpio.h
2480
2481 ARM/NOMADIK/Ux500 ARCHITECTURES
2482 M:      Linus Walleij <[email protected]>
2483 L:      [email protected] (moderated for non-subscribers)
2484 S:      Maintained
2485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2486 F:      Documentation/devicetree/bindings/arm/ste-*
2487 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2488 F:      Documentation/devicetree/bindings/arm/ux500/
2489 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2490 F:      arch/arm/boot/dts/ste-*
2491 F:      arch/arm/mach-nomadik/
2492 F:      arch/arm/mach-ux500/
2493 F:      drivers/clk/clk-nomadik.c
2494 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2495 F:      drivers/dma/ste_dma40*
2496 F:      drivers/hwspinlock/u8500_hsem.c
2497 F:      drivers/i2c/busses/i2c-nomadik.c
2498 F:      drivers/iio/adc/ab8500-gpadc.c
2499 F:      drivers/mfd/ab8500*
2500 F:      drivers/mfd/abx500*
2501 F:      drivers/mfd/db8500*
2502 F:      drivers/pinctrl/nomadik/
2503 F:      drivers/rtc/rtc-ab8500.c
2504 F:      drivers/rtc/rtc-pl031.c
2505 F:      drivers/soc/ux500/
2506
2507 ARM/NUVOTON NPCM ARCHITECTURE
2508 M:      Avi Fishman <[email protected]>
2509 M:      Tomer Maimon <[email protected]>
2510 M:      Tali Perry <[email protected]>
2511 R:      Patrick Venture <[email protected]>
2512 R:      Nancy Yuen <[email protected]>
2513 R:      Benjamin Fair <[email protected]>
2514 L:      [email protected] (moderated for non-subscribers)
2515 S:      Supported
2516 F:      Documentation/devicetree/bindings/*/*/*npcm*
2517 F:      Documentation/devicetree/bindings/*/*npcm*
2518 F:      Documentation/devicetree/bindings/arm/npcm/*
2519 F:      Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2520 F:      arch/arm/boot/dts/nuvoton-npcm*
2521 F:      arch/arm/mach-npcm/
2522 F:      arch/arm64/boot/dts/nuvoton/
2523 F:      drivers/*/*npcm*
2524 F:      drivers/*/*/*npcm*
2525 F:      drivers/rtc/rtc-nct3018y.c
2526 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2527 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2528
2529 ARM/NUVOTON WPCM450 ARCHITECTURE
2530 M:      Jonathan Neuschäfer <[email protected]>
2531 L:      [email protected] (moderated for non-subscribers)
2532 S:      Maintained
2533 W:      https://github.com/neuschaefer/wpcm450/wiki
2534 F:      Documentation/devicetree/bindings/*/*wpcm*
2535 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2536 F:      arch/arm/configs/wpcm450_defconfig
2537 F:      arch/arm/mach-npcm/wpcm450.c
2538 F:      drivers/*/*/*wpcm*
2539 F:      drivers/*/*wpcm*
2540
2541 ARM/NXP S32G ARCHITECTURE
2542 M:      Chester Lin <[email protected]>
2543 R:      Andreas Färber <[email protected]>
2544 R:      Matthias Brugger <[email protected]>
2545 R:      NXP S32 Linux Team <[email protected]>
2546 L:      [email protected] (moderated for non-subscribers)
2547 S:      Maintained
2548 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2549
2550 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2551 M:      Alexander Clouter <[email protected]>
2552 L:      [email protected] (moderated for non-subscribers)
2553 S:      Maintained
2554 W:      http://www.digriz.org.uk/ts78xx/kernel
2555 F:      arch/arm/mach-orion5x/ts78xx-*
2556
2557 ARM/OXNAS platform support
2558 M:      Neil Armstrong <[email protected]>
2559 L:      [email protected] (moderated for non-subscribers)
2560 L:      [email protected] (moderated for non-subscribers)
2561 S:      Maintained
2562 F:      arch/arm/boot/dts/ox8*.dts*
2563 F:      arch/arm/mach-oxnas/
2564 F:      drivers/power/reset/oxnas-restart.c
2565 N:      oxnas
2566
2567 ARM/QUALCOMM SUPPORT
2568 M:      Andy Gross <[email protected]>
2569 M:      Bjorn Andersson <[email protected]>
2570 R:      Konrad Dybcio <[email protected]>
2571 L:      [email protected]
2572 S:      Maintained
2573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2574 F:      Documentation/devicetree/bindings/*/qcom*
2575 F:      Documentation/devicetree/bindings/soc/qcom/
2576 F:      arch/arm/boot/dts/qcom-*.dts
2577 F:      arch/arm/boot/dts/qcom-*.dtsi
2578 F:      arch/arm/configs/qcom_defconfig
2579 F:      arch/arm/mach-qcom/
2580 F:      arch/arm64/boot/dts/qcom/
2581 F:      drivers/*/*/qcom*
2582 F:      drivers/*/*/qcom/
2583 F:      drivers/*/pm8???-*
2584 F:      drivers/*/qcom*
2585 F:      drivers/*/qcom/
2586 F:      drivers/bluetooth/btqcomsmd.c
2587 F:      drivers/clocksource/timer-qcom.c
2588 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2589 F:      drivers/extcon/extcon-qcom*
2590 F:      drivers/i2c/busses/i2c-qcom-geni.c
2591 F:      drivers/i2c/busses/i2c-qup.c
2592 F:      drivers/iommu/msm*
2593 F:      drivers/mfd/ssbi.c
2594 F:      drivers/mmc/host/mmci_qcom*
2595 F:      drivers/mmc/host/sdhci-msm.c
2596 F:      drivers/pci/controller/dwc/pcie-qcom.c
2597 F:      drivers/phy/qualcomm/
2598 F:      drivers/power/*/msm*
2599 F:      drivers/reset/reset-qcom-*
2600 F:      drivers/ufs/host/ufs-qcom*
2601 F:      drivers/spi/spi-geni-qcom.c
2602 F:      drivers/spi/spi-qcom-qspi.c
2603 F:      drivers/spi/spi-qup.c
2604 F:      drivers/tty/serial/msm_serial.c
2605 F:      drivers/usb/dwc3/dwc3-qcom.c
2606 F:      include/dt-bindings/*/qcom*
2607 F:      include/linux/*/qcom*
2608 F:      include/linux/soc/qcom/
2609
2610 ARM/QUALCOMM CHROMEBOOK SUPPORT
2611 R:      [email protected]
2612 F:      arch/arm64/boot/dts/qcom/sc7180*
2613 F:      arch/arm64/boot/dts/qcom/sc7280*
2614 F:      arch/arm64/boot/dts/qcom/sdm845-cheza*
2615
2616 ARM/RDA MICRO ARCHITECTURE
2617 M:      Manivannan Sadhasivam <[email protected]>
2618 L:      [email protected] (moderated for non-subscribers)
2619 L:      [email protected] (moderated for non-subscribers)
2620 S:      Maintained
2621 F:      Documentation/devicetree/bindings/arm/rda.yaml
2622 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2623 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2624 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2625 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2626 F:      arch/arm/boot/dts/rda8810pl-*
2627 F:      drivers/clocksource/timer-rda.c
2628 F:      drivers/gpio/gpio-rda.c
2629 F:      drivers/irqchip/irq-rda-intc.c
2630 F:      drivers/tty/serial/rda-uart.c
2631
2632 ARM/REALTEK ARCHITECTURE
2633 M:      Andreas Färber <[email protected]>
2634 L:      [email protected] (moderated for non-subscribers)
2635 L:      [email protected] (moderated for non-subscribers)
2636 S:      Maintained
2637 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2638 F:      arch/arm/boot/dts/rtd*
2639 F:      arch/arm/mach-realtek/
2640 F:      arch/arm64/boot/dts/realtek/
2641
2642 ARM/RISC-V/RENESAS ARCHITECTURE
2643 M:      Geert Uytterhoeven <[email protected]>
2644 M:      Magnus Damm <[email protected]>
2645 L:      [email protected]
2646 S:      Supported
2647 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2648 C:      irc://irc.libera.chat/renesas-soc
2649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2650 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2651 F:      Documentation/devicetree/bindings/soc/renesas/
2652 F:      arch/arm/boot/dts/emev2*
2653 F:      arch/arm/boot/dts/gr-peach*
2654 F:      arch/arm/boot/dts/iwg20d-q7*
2655 F:      arch/arm/boot/dts/r7s*
2656 F:      arch/arm/boot/dts/r8a*
2657 F:      arch/arm/boot/dts/r9a*
2658 F:      arch/arm/boot/dts/sh*
2659 F:      arch/arm/configs/shmobile_defconfig
2660 F:      arch/arm/include/debug/renesas-scif.S
2661 F:      arch/arm/mach-shmobile/
2662 F:      arch/arm64/boot/dts/renesas/
2663 F:      arch/riscv/boot/dts/renesas/
2664 F:      drivers/soc/renesas/
2665 F:      include/linux/soc/renesas/
2666 K:      \brenesas,
2667
2668 ARM/RISCPC ARCHITECTURE
2669 M:      Russell King <[email protected]>
2670 L:      [email protected] (moderated for non-subscribers)
2671 S:      Maintained
2672 W:      http://www.armlinux.org.uk/
2673 F:      arch/arm/include/asm/hardware/ioc.h
2674 F:      arch/arm/include/asm/hardware/iomd.h
2675 F:      arch/arm/include/asm/hardware/memc.h
2676 F:      arch/arm/mach-rpc/
2677 F:      drivers/net/ethernet/8390/etherh.c
2678 F:      drivers/net/ethernet/i825xx/ether1*
2679 F:      drivers/net/ethernet/seeq/ether3*
2680 F:      drivers/scsi/arm/
2681
2682 ARM/Rockchip SoC support
2683 M:      Heiko Stuebner <[email protected]>
2684 L:      [email protected] (moderated for non-subscribers)
2685 L:      [email protected]
2686 S:      Maintained
2687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2688 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2689 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2690 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2691 F:      arch/arm/boot/dts/rk3*
2692 F:      arch/arm/boot/dts/rv11*
2693 F:      arch/arm/mach-rockchip/
2694 F:      drivers/*/*/*rockchip*
2695 F:      drivers/*/*rockchip*
2696 F:      drivers/clk/rockchip/
2697 F:      drivers/i2c/busses/i2c-rk3x.c
2698 F:      sound/soc/rockchip/
2699 N:      rockchip
2700
2701 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2702 M:      Krzysztof Kozlowski <[email protected]>
2703 R:      Alim Akhtar <[email protected]>
2704 L:      [email protected] (moderated for non-subscribers)
2705 L:      [email protected]
2706 S:      Maintained
2707 C:      irc://irc.libera.chat/linux-exynos
2708 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2709 B:      mailto:[email protected]
2710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2711 F:      Documentation/arm/samsung/
2712 F:      Documentation/devicetree/bindings/arm/samsung/
2713 F:      Documentation/devicetree/bindings/hwinfo/samsung,*
2714 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2715 F:      Documentation/devicetree/bindings/soc/samsung/
2716 F:      arch/arm/boot/dts/exynos*
2717 F:      arch/arm/boot/dts/s3c*
2718 F:      arch/arm/boot/dts/s5p*
2719 F:      arch/arm/mach-exynos*/
2720 F:      arch/arm/mach-s3c/
2721 F:      arch/arm/mach-s5p*/
2722 F:      arch/arm64/boot/dts/exynos/
2723 F:      drivers/*/*/*s3c24*
2724 F:      drivers/*/*s3c24*
2725 F:      drivers/*/*s3c64xx*
2726 F:      drivers/*/*s5pv210*
2727 F:      drivers/clocksource/samsung_pwm_timer.c
2728 F:      drivers/memory/samsung/
2729 F:      drivers/pwm/pwm-samsung.c
2730 F:      drivers/soc/samsung/
2731 F:      drivers/tty/serial/samsung*
2732 F:      include/clocksource/samsung_pwm.h
2733 F:      include/linux/platform_data/*s3c*
2734 F:      include/linux/serial_s3c.h
2735 F:      include/linux/soc/samsung/
2736 N:      exynos
2737 N:      s3c64xx
2738 N:      s5pv210
2739
2740 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2741 M:      Łukasz Stelmach <[email protected]>
2742 L:      [email protected] (moderated for non-subscribers)
2743 L:      [email protected]
2744 S:      Maintained
2745 F:      drivers/media/platform/samsung/s5p-g2d/
2746
2747 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2748 M:      Marek Szyprowski <[email protected]>
2749 L:      [email protected]
2750 L:      [email protected]
2751 S:      Maintained
2752 F:      Documentation/devicetree/bindings/media/cec/samsung,s5p-cec.yaml
2753 F:      drivers/media/cec/platform/s5p/
2754
2755 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2756 M:      Andrzej Pietrasiewicz <[email protected]>
2757 M:      Jacek Anaszewski <[email protected]>
2758 M:      Sylwester Nawrocki <[email protected]>
2759 L:      [email protected] (moderated for non-subscribers)
2760 L:      [email protected]
2761 S:      Maintained
2762 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2763 F:      drivers/media/platform/samsung/s5p-jpeg/
2764
2765 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2766 M:      Marek Szyprowski <[email protected]>
2767 M:      Andrzej Hajda <[email protected]>
2768 L:      [email protected] (moderated for non-subscribers)
2769 L:      [email protected]
2770 S:      Maintained
2771 F:      drivers/media/platform/samsung/s5p-mfc/
2772
2773 ARM/SOCFPGA ARCHITECTURE
2774 M:      Dinh Nguyen <[email protected]>
2775 S:      Maintained
2776 W:      http://www.rocketboards.org
2777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2778 F:      arch/arm/boot/dts/socfpga*
2779 F:      arch/arm/configs/socfpga_defconfig
2780 F:      arch/arm/mach-socfpga/
2781 F:      arch/arm64/boot/dts/altera/
2782 F:      arch/arm64/boot/dts/intel/
2783
2784 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2785 M:      Dinh Nguyen <[email protected]>
2786 S:      Maintained
2787 F:      drivers/clk/socfpga/
2788
2789 ARM/SOCFPGA EDAC SUPPORT
2790 M:      Dinh Nguyen <[email protected]>
2791 S:      Maintained
2792 F:      drivers/edac/altera_edac.[ch]
2793
2794 ARM/SPREADTRUM SoC SUPPORT
2795 M:      Orson Zhai <[email protected]>
2796 M:      Baolin Wang <[email protected]>
2797 M:      Chunyan Zhang <[email protected]>
2798 S:      Maintained
2799 F:      arch/arm64/boot/dts/sprd
2800 N:      sprd
2801 N:      sc27xx
2802 N:      sc2731
2803
2804 ARM/STI ARCHITECTURE
2805 M:      Patrice Chotard <[email protected]>
2806 L:      [email protected] (moderated for non-subscribers)
2807 S:      Maintained
2808 W:      http://www.stlinux.com
2809 F:      Documentation/devicetree/bindings/spi/st,ssc-spi.yaml
2810 F:      Documentation/devicetree/bindings/i2c/st,sti-i2c.yaml
2811 F:      arch/arm/boot/dts/sti*
2812 F:      arch/arm/mach-sti/
2813 F:      drivers/ata/ahci_st.c
2814 F:      drivers/char/hw_random/st-rng.c
2815 F:      drivers/clocksource/arm_global_timer.c
2816 F:      drivers/clocksource/clksrc_st_lpc.c
2817 F:      drivers/cpufreq/sti-cpufreq.c
2818 F:      drivers/dma/st_fdma*
2819 F:      drivers/i2c/busses/i2c-st.c
2820 F:      drivers/media/platform/st/sti/c8sectpfe/
2821 F:      drivers/media/rc/st_rc.c
2822 F:      drivers/mmc/host/sdhci-st.c
2823 F:      drivers/phy/st/phy-miphy28lp.c
2824 F:      drivers/phy/st/phy-stih407-usb.c
2825 F:      drivers/pinctrl/pinctrl-st.c
2826 F:      drivers/remoteproc/st_remoteproc.c
2827 F:      drivers/remoteproc/st_slim_rproc.c
2828 F:      drivers/reset/sti/
2829 F:      drivers/rtc/rtc-st-lpc.c
2830 F:      drivers/tty/serial/st-asc.c
2831 F:      drivers/usb/dwc3/dwc3-st.c
2832 F:      drivers/usb/host/ehci-st.c
2833 F:      drivers/usb/host/ohci-st.c
2834 F:      drivers/watchdog/st_lpc_wdt.c
2835 F:      include/linux/remoteproc/st_slim_rproc.h
2836
2837 ARM/STM32 ARCHITECTURE
2838 M:      Maxime Coquelin <[email protected]>
2839 M:      Alexandre Torgue <[email protected]>
2840 L:      [email protected] (moderated for non-subscribers)
2841 L:      [email protected] (moderated for non-subscribers)
2842 S:      Maintained
2843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2844 F:      arch/arm/boot/dts/stm32*
2845 F:      arch/arm/mach-stm32/
2846 F:      drivers/clocksource/armv7m_systick.c
2847 N:      stm32
2848 N:      stm
2849
2850 ARM/SUNPLUS SP7021 SOC SUPPORT
2851 M:      Qin Jian <[email protected]>
2852 L:      [email protected] (moderated for mon-subscribers)
2853 S:      Maintained
2854 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2855 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2856 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2857 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2858 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2859 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2860 F:      arch/arm/configs/sp7021_*defconfig
2861 F:      arch/arm/mach-sunplus/
2862 F:      drivers/irqchip/irq-sp7021-intc.c
2863 F:      drivers/reset/reset-sunplus.c
2864 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2865 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2866
2867 ARM/Synaptics SoC support
2868 M:      Jisheng Zhang <[email protected]>
2869 M:      Sebastian Hesselbarth <[email protected]>
2870 L:      [email protected] (moderated for non-subscribers)
2871 S:      Maintained
2872 F:      arch/arm/boot/dts/berlin*
2873 F:      arch/arm/mach-berlin/
2874 F:      arch/arm64/boot/dts/synaptics/
2875
2876 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2877 M:      Lennert Buytenhek <[email protected]>
2878 L:      [email protected] (moderated for non-subscribers)
2879 S:      Maintained
2880
2881 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2882 M:      Hans Verkuil <[email protected]>
2883 L:      [email protected]
2884 L:      [email protected]
2885 S:      Maintained
2886 F:      Documentation/devicetree/bindings/media/cec/nvidia,tegra114-cec.yaml
2887 F:      drivers/media/cec/platform/tegra/
2888
2889 ARM/TESLA FSD SoC SUPPORT
2890 M:      Alim Akhtar <[email protected]>
2891 M:      [email protected]
2892 L:      [email protected] (moderated for non-subscribers)
2893 L:      [email protected]
2894 S:      Maintained
2895 F:      arch/arm64/boot/dts/tesla/
2896
2897 ARM/TETON BGA MACHINE SUPPORT
2898 M:      "Mark F. Brown" <[email protected]>
2899 L:      [email protected] (moderated for non-subscribers)
2900 S:      Maintained
2901
2902 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2903 M:      Santosh Shilimkar <[email protected]>
2904 L:      [email protected]
2905 S:      Maintained
2906 F:      drivers/memory/*emif*
2907
2908 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2909 M:      Nishanth Menon <[email protected]>
2910 M:      Santosh Shilimkar <[email protected]>
2911 L:      [email protected] (moderated for non-subscribers)
2912 S:      Maintained
2913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2914 F:      arch/arm/boot/dts/keystone-*
2915 F:      arch/arm/mach-keystone/
2916
2917 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2918 M:      Santosh Shilimkar <[email protected]>
2919 L:      [email protected]
2920 S:      Maintained
2921 F:      drivers/clk/keystone/
2922
2923 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2924 M:      Santosh Shilimkar <[email protected]>
2925 L:      [email protected] (moderated for non-subscribers)
2926 L:      [email protected]
2927 S:      Maintained
2928 F:      drivers/clocksource/timer-keystone.c
2929
2930 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2931 M:      Santosh Shilimkar <[email protected]>
2932 L:      [email protected]
2933 S:      Maintained
2934 F:      drivers/power/reset/keystone-reset.c
2935
2936 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2937 M:      Nishanth Menon <[email protected]>
2938 M:      Vignesh Raghavendra <[email protected]>
2939 M:      Tero Kristo <[email protected]>
2940 L:      [email protected] (moderated for non-subscribers)
2941 S:      Supported
2942 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2943 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2944 F:      arch/arm64/boot/dts/ti/Makefile
2945 F:      arch/arm64/boot/dts/ti/k3-*
2946 F:      include/dt-bindings/pinctrl/k3.h
2947
2948 ARM/TOSHIBA VISCONTI ARCHITECTURE
2949 M:      Nobuhiro Iwamatsu <[email protected]>
2950 L:      [email protected] (moderated for non-subscribers)
2951 S:      Supported
2952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2953 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2954 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2955 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2956 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2957 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2958 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2959 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2960 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2961 F:      arch/arm64/boot/dts/toshiba/
2962 F:      drivers/clk/visconti/
2963 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2964 F:      drivers/gpio/gpio-visconti.c
2965 F:      drivers/pci/controller/dwc/pcie-visconti.c
2966 F:      drivers/pinctrl/visconti/
2967 F:      drivers/watchdog/visconti_wdt.c
2968 N:      visconti
2969
2970 ARM/UNIPHIER ARCHITECTURE
2971 M:      Kunihiko Hayashi <[email protected]>
2972 M:      Masami Hiramatsu <[email protected]>
2973 L:      [email protected] (moderated for non-subscribers)
2974 S:      Maintained
2975 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2976 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2977 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2978 F:      Documentation/devicetree/bindings/soc/socionext/socionext,uniphier*.yaml
2979 F:      arch/arm/boot/dts/uniphier*
2980 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2981 F:      arch/arm/mach-uniphier/
2982 F:      arch/arm/mm/cache-uniphier.c
2983 F:      arch/arm64/boot/dts/socionext/uniphier*
2984 F:      drivers/bus/uniphier-system-bus.c
2985 F:      drivers/clk/uniphier/
2986 F:      drivers/dma/uniphier-mdmac.c
2987 F:      drivers/gpio/gpio-uniphier.c
2988 F:      drivers/i2c/busses/i2c-uniphier*
2989 F:      drivers/irqchip/irq-uniphier-aidet.c
2990 F:      drivers/mmc/host/uniphier-sd.c
2991 F:      drivers/pinctrl/uniphier/
2992 F:      drivers/reset/reset-uniphier.c
2993 F:      drivers/tty/serial/8250/8250_uniphier.c
2994 N:      uniphier
2995
2996 ARM/VERSATILE EXPRESS PLATFORM
2997 M:      Liviu Dudau <[email protected]>
2998 M:      Sudeep Holla <[email protected]>
2999 M:      Lorenzo Pieralisi <[email protected]>
3000 L:      [email protected] (moderated for non-subscribers)
3001 S:      Maintained
3002 F:      */*/*/vexpress*
3003 F:      */*/vexpress*
3004 F:      arch/arm/boot/dts/vexpress*
3005 F:      arch/arm/mach-versatile/
3006 F:      arch/arm64/boot/dts/arm/
3007 F:      drivers/clk/versatile/clk-vexpress-osc.c
3008 F:      drivers/clocksource/timer-versatile.c
3009 N:      mps2
3010
3011 ARM/VFP SUPPORT
3012 M:      Russell King <[email protected]>
3013 L:      [email protected] (moderated for non-subscribers)
3014 S:      Maintained
3015 W:      http://www.armlinux.org.uk/
3016 F:      arch/arm/vfp/
3017
3018 ARM/VT8500 ARM ARCHITECTURE
3019 L:      [email protected] (moderated for non-subscribers)
3020 S:      Orphan
3021 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3022 F:      arch/arm/mach-vt8500/
3023 F:      drivers/clocksource/timer-vt8500.c
3024 F:      drivers/i2c/busses/i2c-wmt.c
3025 F:      drivers/mmc/host/wmt-sdmmc.c
3026 F:      drivers/pwm/pwm-vt8500.c
3027 F:      drivers/rtc/rtc-vt8500.c
3028 F:      drivers/tty/serial/vt8500_serial.c
3029 F:      drivers/usb/host/ehci-platform.c
3030 F:      drivers/usb/host/uhci-platform.c
3031 F:      drivers/video/fbdev/vt8500lcdfb.*
3032 F:      drivers/video/fbdev/wm8505fb*
3033 F:      drivers/video/fbdev/wmt_ge_rops.*
3034
3035 ARM/ZYNQ ARCHITECTURE
3036 M:      Michal Simek <[email protected]>
3037 L:      [email protected] (moderated for non-subscribers)
3038 S:      Supported
3039 W:      http://wiki.xilinx.com
3040 T:      git https://github.com/Xilinx/linux-xlnx.git
3041 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3042 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3043 F:      Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3044 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3045 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3046 F:      arch/arm/mach-zynq/
3047 F:      drivers/clocksource/timer-cadence-ttc.c
3048 F:      drivers/cpuidle/cpuidle-zynq.c
3049 F:      drivers/edac/synopsys_edac.c
3050 F:      drivers/i2c/busses/i2c-cadence.c
3051 F:      drivers/i2c/busses/i2c-xiic.c
3052 F:      drivers/mmc/host/sdhci-of-arasan.c
3053 N:      zynq
3054 N:      xilinx
3055
3056 ARM64 PORT (AARCH64 ARCHITECTURE)
3057 M:      Catalin Marinas <[email protected]>
3058 M:      Will Deacon <[email protected]>
3059 L:      [email protected] (moderated for non-subscribers)
3060 S:      Maintained
3061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3062 F:      Documentation/arm64/
3063 F:      arch/arm64/
3064 F:      tools/testing/selftests/arm64/
3065 X:      arch/arm64/boot/dts/
3066
3067 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3068 M:      George McCollister <[email protected]>
3069 L:      [email protected]
3070 S:      Maintained
3071 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3072 F:      drivers/net/dsa/xrs700x/*
3073 F:      net/dsa/tag_xrs700x.c
3074
3075 AS3645A LED FLASH CONTROLLER DRIVER
3076 M:      Sakari Ailus <[email protected]>
3077 L:      [email protected]
3078 S:      Maintained
3079 F:      drivers/leds/flash/leds-as3645a.c
3080
3081 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3082 M:      Tianshu Qiu <[email protected]>
3083 L:      [email protected]
3084 S:      Maintained
3085 T:      git git://linuxtv.org/media_tree.git
3086 F:      Documentation/devicetree/bindings/media/i2c/asahi-kasei,ak7375.yaml
3087 F:      drivers/media/i2c/ak7375.c
3088
3089 ASAHI KASEI AK8974 DRIVER
3090 M:      Linus Walleij <[email protected]>
3091 L:      [email protected]
3092 S:      Supported
3093 W:      http://www.akm.com/
3094 F:      drivers/iio/magnetometer/ak8974.c
3095
3096 ASC7621 HARDWARE MONITOR DRIVER
3097 M:      George Joseph <[email protected]>
3098 L:      [email protected]
3099 S:      Maintained
3100 F:      Documentation/hwmon/asc7621.rst
3101 F:      drivers/hwmon/asc7621.c
3102
3103 ASIX AX88796C SPI ETHERNET ADAPTER
3104 M:      Łukasz Stelmach <[email protected]>
3105 S:      Maintained
3106 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3107 F:      drivers/net/ethernet/asix/ax88796c_*
3108
3109 ASPEED PECI CONTROLLER
3110 M:      Iwona Winiarska <[email protected]>
3111 L:      [email protected] (moderated for non-subscribers)
3112 L:      [email protected] (moderated for non-subscribers)
3113 S:      Supported
3114 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3115 F:      drivers/peci/controller/peci-aspeed.c
3116
3117 ASPEED PINCTRL DRIVERS
3118 M:      Andrew Jeffery <[email protected]>
3119 L:      [email protected] (moderated for non-subscribers)
3120 L:      [email protected] (moderated for non-subscribers)
3121 L:      [email protected]
3122 S:      Maintained
3123 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3124 F:      drivers/pinctrl/aspeed/
3125
3126 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3127 M:      Eddie James <[email protected]>
3128 L:      [email protected] (moderated for non-subscribers)
3129 S:      Maintained
3130 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3131 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3132 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3133
3134 ASPEED SD/MMC DRIVER
3135 M:      Andrew Jeffery <[email protected]>
3136 L:      [email protected] (moderated for non-subscribers)
3137 L:      [email protected] (moderated for non-subscribers)
3138 L:      [email protected]
3139 S:      Maintained
3140 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3141 F:      drivers/mmc/host/sdhci-of-aspeed*
3142
3143 ASPEED SMC SPI DRIVER
3144 M:      Chin-Ting Kuo <[email protected]>
3145 M:      Cédric Le Goater <[email protected]>
3146 L:      [email protected] (moderated for non-subscribers)
3147 L:      [email protected] (moderated for non-subscribers)
3148 L:      [email protected]
3149 S:      Maintained
3150 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3151 F:      drivers/spi/spi-aspeed-smc.c
3152
3153 ASPEED VIDEO ENGINE DRIVER
3154 M:      Eddie James <[email protected]>
3155 L:      [email protected]
3156 L:      [email protected] (moderated for non-subscribers)
3157 S:      Maintained
3158 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3159 F:      drivers/media/platform/aspeed/
3160
3161 ASPEED USB UDC DRIVER
3162 M:      Neal Liu <[email protected]>
3163 L:      [email protected] (moderated for non-subscribers)
3164 S:      Maintained
3165 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3166 F:      drivers/usb/gadget/udc/aspeed_udc.c
3167
3168 ASPEED CRYPTO DRIVER
3169 M:      Neal Liu <[email protected]>
3170 L:      [email protected] (moderated for non-subscribers)
3171 S:      Maintained
3172 F:      Documentation/devicetree/bindings/crypto/aspeed,*
3173 F:      drivers/crypto/aspeed/
3174
3175 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3176 M:      Corentin Chary <[email protected]>
3177 L:      [email protected]
3178 L:      [email protected]
3179 S:      Maintained
3180 W:      http://acpi4asus.sf.net
3181 F:      drivers/platform/x86/asus*.c
3182 F:      drivers/platform/x86/eeepc*.c
3183
3184 ASUS TF103C DOCK DRIVER
3185 M:      Hans de Goede <[email protected]>
3186 L:      [email protected]
3187 S:      Maintained
3188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3189 F:      drivers/platform/x86/asus-tf103c-dock.c
3190
3191 ASUS WMI HARDWARE MONITOR DRIVER
3192 M:      Ed Brindley <[email protected]>
3193 M:      Denis Pauk <[email protected]>
3194 L:      [email protected]
3195 S:      Maintained
3196 F:      drivers/hwmon/asus_wmi_sensors.c
3197
3198 ASUS EC HARDWARE MONITOR DRIVER
3199 M:      Eugene Shalygin <[email protected]>
3200 L:      [email protected]
3201 S:      Maintained
3202 F:      drivers/hwmon/asus-ec-sensors.c
3203
3204 ASUS WIRELESS RADIO CONTROL DRIVER
3205 M:      João Paulo Rechi Vita <[email protected]>
3206 L:      [email protected]
3207 S:      Maintained
3208 F:      drivers/platform/x86/asus-wireless.c
3209
3210 ASYMMETRIC KEYS
3211 M:      David Howells <[email protected]>
3212 L:      [email protected]
3213 S:      Maintained
3214 F:      Documentation/crypto/asymmetric-keys.rst
3215 F:      crypto/asymmetric_keys/
3216 F:      include/crypto/pkcs7.h
3217 F:      include/crypto/public_key.h
3218 F:      include/linux/verification.h
3219
3220 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3221 R:      Dan Williams <[email protected]>
3222 S:      Odd fixes
3223 W:      http://sourceforge.net/projects/xscaleiop
3224 F:      Documentation/crypto/async-tx-api.rst
3225 F:      crypto/async_tx/
3226 F:      include/linux/async_tx.h
3227
3228 AT24 EEPROM DRIVER
3229 M:      Bartosz Golaszewski <[email protected]>
3230 L:      [email protected]
3231 S:      Maintained
3232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3233 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3234 F:      drivers/misc/eeprom/at24.c
3235
3236 ATA OVER ETHERNET (AOE) DRIVER
3237 M:      "Justin Sanders" <[email protected]>
3238 S:      Supported
3239 W:      http://www.openaoe.org/
3240 F:      Documentation/admin-guide/aoe/
3241 F:      drivers/block/aoe/
3242
3243 ATC260X PMIC MFD DRIVER
3244 M:      Manivannan Sadhasivam <[email protected]>
3245 M:      Cristian Ciocaltea <[email protected]>
3246 L:      [email protected]
3247 S:      Maintained
3248 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3249 F:      drivers/input/misc/atc260x-onkey.c
3250 F:      drivers/mfd/atc260*
3251 F:      drivers/power/reset/atc260x-poweroff.c
3252 F:      drivers/regulator/atc260x-regulator.c
3253 F:      include/linux/mfd/atc260x/*
3254
3255 ATHEROS 71XX/9XXX GPIO DRIVER
3256 M:      Alban Bedel <[email protected]>
3257 S:      Maintained
3258 W:      https://github.com/AlbanBedel/linux
3259 T:      git git://github.com/AlbanBedel/linux
3260 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3261 F:      drivers/gpio/gpio-ath79.c
3262
3263 ATHEROS 71XX/9XXX USB PHY DRIVER
3264 M:      Alban Bedel <[email protected]>
3265 S:      Maintained
3266 W:      https://github.com/AlbanBedel/linux
3267 T:      git git://github.com/AlbanBedel/linux
3268 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3269 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3270
3271 ATHEROS ATH GENERIC UTILITIES
3272 M:      Kalle Valo <[email protected]>
3273 L:      [email protected]
3274 S:      Supported
3275 F:      drivers/net/wireless/ath/*
3276
3277 ATHEROS ATH5K WIRELESS DRIVER
3278 M:      Jiri Slaby <[email protected]>
3279 M:      Nick Kossifidis <[email protected]>
3280 M:      Luis Chamberlain <[email protected]>
3281 L:      [email protected]
3282 S:      Maintained
3283 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3284 F:      drivers/net/wireless/ath/ath5k/
3285
3286 ATHEROS ATH6KL WIRELESS DRIVER
3287 L:      [email protected]
3288 S:      Orphan
3289 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3290 F:      drivers/net/wireless/ath/ath6kl/
3291
3292 ATI_REMOTE2 DRIVER
3293 M:      Ville Syrjala <[email protected]>
3294 S:      Maintained
3295 F:      drivers/input/misc/ati_remote2.c
3296
3297 ATK0110 HWMON DRIVER
3298 M:      Luca Tettamanti <[email protected]>
3299 L:      [email protected]
3300 S:      Maintained
3301 F:      drivers/hwmon/asus_atk0110.c
3302
3303 ATLX ETHERNET DRIVERS
3304 M:      Chris Snook <[email protected]>
3305 L:      [email protected]
3306 S:      Maintained
3307 W:      http://sourceforge.net/projects/atl1
3308 W:      http://atl1.sourceforge.net
3309 F:      drivers/net/ethernet/atheros/
3310
3311 ATM
3312 M:      Chas Williams <[email protected]>
3313 L:      [email protected] (moderated for non-subscribers)
3314 L:      [email protected]
3315 S:      Maintained
3316 W:      http://linux-atm.sourceforge.net
3317 F:      drivers/atm/
3318 F:      include/linux/atm*
3319 F:      include/uapi/linux/atm*
3320
3321 ATMEL MACB ETHERNET DRIVER
3322 M:      Nicolas Ferre <[email protected]>
3323 M:      Claudiu Beznea <[email protected]>
3324 S:      Supported
3325 F:      drivers/net/ethernet/cadence/
3326
3327 ATMEL MAXTOUCH DRIVER
3328 M:      Nick Dyer <[email protected]>
3329 S:      Maintained
3330 T:      git git://github.com/ndyer/linux.git
3331 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3332 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3333
3334 ATMEL WIRELESS DRIVER
3335 M:      Simon Kelley <[email protected]>
3336 L:      [email protected]
3337 S:      Maintained
3338 W:      http://www.thekelleys.org.uk/atmel
3339 W:      http://atmelwlandriver.sourceforge.net/
3340 F:      drivers/net/wireless/atmel/atmel*
3341
3342 ATOMIC INFRASTRUCTURE
3343 M:      Will Deacon <[email protected]>
3344 M:      Peter Zijlstra <[email protected]>
3345 R:      Boqun Feng <[email protected]>
3346 R:      Mark Rutland <[email protected]>
3347 L:      [email protected]
3348 S:      Maintained
3349 F:      arch/*/include/asm/atomic*.h
3350 F:      include/*/atomic*.h
3351 F:      include/linux/refcount.h
3352 F:      Documentation/atomic_*.txt
3353 F:      scripts/atomic/
3354
3355 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3356 M:      Bradley Grove <[email protected]>
3357 L:      [email protected]
3358 S:      Supported
3359 W:      http://www.attotech.com
3360 F:      drivers/scsi/esas2r
3361
3362 ATUSB IEEE 802.15.4 RADIO DRIVER
3363 M:      Stefan Schmidt <[email protected]>
3364 L:      [email protected]
3365 S:      Maintained
3366 F:      drivers/net/ieee802154/at86rf230.h
3367 F:      drivers/net/ieee802154/atusb.c
3368 F:      drivers/net/ieee802154/atusb.h
3369
3370 AUDIT SUBSYSTEM
3371 M:      Paul Moore <[email protected]>
3372 M:      Eric Paris <[email protected]>
3373 L:      [email protected]
3374 S:      Supported
3375 W:      https://github.com/linux-audit
3376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3377 F:      include/asm-generic/audit_*.h
3378 F:      include/linux/audit.h
3379 F:      include/linux/audit_arch.h
3380 F:      include/uapi/linux/audit.h
3381 F:      kernel/audit*
3382 F:      lib/*audit.c
3383
3384 AUXILIARY DISPLAY DRIVERS
3385 M:      Miguel Ojeda <[email protected]>
3386 S:      Maintained
3387 F:      Documentation/devicetree/bindings/auxdisplay/
3388 F:      drivers/auxdisplay/
3389 F:      include/linux/cfag12864b.h
3390
3391 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3392 M:      Andreas Klinger <[email protected]>
3393 L:      [email protected]
3394 S:      Maintained
3395 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3396 F:      drivers/iio/adc/hx711.c
3397
3398 AX.25 NETWORK LAYER
3399 M:      Ralf Baechle <[email protected]>
3400 L:      [email protected]
3401 S:      Maintained
3402 W:      http://www.linux-ax25.org/
3403 F:      include/net/ax25.h
3404 F:      include/uapi/linux/ax25.h
3405 F:      net/ax25/
3406
3407 AXENTIA ARM DEVICES
3408 M:      Peter Rosin <[email protected]>
3409 L:      [email protected] (moderated for non-subscribers)
3410 S:      Maintained
3411 F:      arch/arm/boot/dts/at91-linea.dtsi
3412 F:      arch/arm/boot/dts/at91-natte.dtsi
3413 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3414 F:      arch/arm/boot/dts/at91-tse850-3.dts
3415
3416 AXENTIA ASOC DRIVERS
3417 M:      Peter Rosin <[email protected]>
3418 L:      [email protected] (moderated for non-subscribers)
3419 S:      Maintained
3420 F:      Documentation/devicetree/bindings/sound/axentia,*
3421 F:      sound/soc/atmel/tse850-pcm5142.c
3422
3423 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3424 M:      Nuno Sá <[email protected]>
3425 L:      [email protected]
3426 S:      Supported
3427 W:      https://ez.analog.com/linux-software-drivers
3428 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3429 F:      drivers/hwmon/axi-fan-control.c
3430
3431 AXXIA I2C CONTROLLER
3432 M:      Krzysztof Adamski <[email protected]>
3433 L:      [email protected]
3434 S:      Maintained
3435 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3436 F:      drivers/i2c/busses/i2c-axxia.c
3437
3438 AZ6007 DVB DRIVER
3439 M:      Mauro Carvalho Chehab <[email protected]>
3440 L:      [email protected]
3441 S:      Maintained
3442 W:      https://linuxtv.org
3443 T:      git git://linuxtv.org/media_tree.git
3444 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3445
3446 AZTECH FM RADIO RECEIVER DRIVER
3447 M:      Hans Verkuil <[email protected]>
3448 L:      [email protected]
3449 S:      Maintained
3450 W:      https://linuxtv.org
3451 T:      git git://linuxtv.org/media_tree.git
3452 F:      drivers/media/radio/radio-aztech*
3453
3454 B43 WIRELESS DRIVER
3455 L:      [email protected]
3456 L:      [email protected]
3457 S:      Odd Fixes
3458 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3459 F:      drivers/net/wireless/broadcom/b43/
3460
3461 B43LEGACY WIRELESS DRIVER
3462 M:      Larry Finger <[email protected]>
3463 L:      [email protected]
3464 L:      [email protected]
3465 S:      Maintained
3466 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3467 F:      drivers/net/wireless/broadcom/b43legacy/
3468
3469 BACKLIGHT CLASS/SUBSYSTEM
3470 M:      Lee Jones <[email protected]>
3471 M:      Daniel Thompson <[email protected]>
3472 M:      Jingoo Han <[email protected]>
3473 L:      [email protected]
3474 S:      Maintained
3475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3476 F:      Documentation/ABI/stable/sysfs-class-backlight
3477 F:      Documentation/ABI/testing/sysfs-class-backlight
3478 F:      Documentation/devicetree/bindings/leds/backlight
3479 F:      drivers/video/backlight/
3480 F:      include/linux/backlight.h
3481 F:      include/linux/pwm_backlight.h
3482
3483 BARCO P50 GPIO DRIVER
3484 M:      Santosh Kumar Yadav <[email protected]>
3485 M:      Peter Korsgaard <[email protected]>
3486 S:      Maintained
3487 F:      drivers/platform/x86/barco-p50-gpio.c
3488
3489 BATMAN ADVANCED
3490 M:      Marek Lindner <[email protected]>
3491 M:      Simon Wunderlich <[email protected]>
3492 M:      Antonio Quartulli <[email protected]>
3493 M:      Sven Eckelmann <[email protected]>
3494 L:      [email protected] (moderated for non-subscribers)
3495 S:      Maintained
3496 W:      https://www.open-mesh.org/
3497 Q:      https://patchwork.open-mesh.org/project/batman/list/
3498 B:      https://www.open-mesh.org/projects/batman-adv/issues
3499 C:      ircs://irc.hackint.org/batadv
3500 T:      git https://git.open-mesh.org/linux-merge.git
3501 F:      Documentation/networking/batman-adv.rst
3502 F:      include/uapi/linux/batadv_packet.h
3503 F:      include/uapi/linux/batman_adv.h
3504 F:      net/batman-adv/
3505
3506 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3507 M:      Thomas Sailer <[email protected]>
3508 L:      [email protected]
3509 S:      Maintained
3510 W:      http://www.baycom.org/~tom/ham/ham.html
3511 F:      drivers/net/hamradio/baycom*
3512
3513 BCACHE (BLOCK LAYER CACHE)
3514 M:      Coly Li <[email protected]>
3515 M:      Kent Overstreet <[email protected]>
3516 L:      [email protected]
3517 S:      Maintained
3518 W:      http://bcache.evilpiepirate.org
3519 C:      irc://irc.oftc.net/bcache
3520 F:      drivers/md/bcache/
3521
3522 BDISP ST MEDIA DRIVER
3523 M:      Fabien Dessenne <[email protected]>
3524 L:      [email protected]
3525 S:      Supported
3526 W:      https://linuxtv.org
3527 T:      git git://linuxtv.org/media_tree.git
3528 F:      drivers/media/platform/st/sti/bdisp
3529
3530 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3531 M:      Dariusz Marcinkiewicz <[email protected]>
3532 L:      [email protected]
3533 S:      Maintained
3534 F:      drivers/net/ethernet/ec_bhf.c
3535
3536 BEFS FILE SYSTEM
3537 M:      Luis de Bethencourt <[email protected]>
3538 M:      Salah Triki <[email protected]>
3539 S:      Maintained
3540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3541 F:      Documentation/filesystems/befs.rst
3542 F:      fs/befs/
3543
3544 BFQ I/O SCHEDULER
3545 M:      Paolo Valente <[email protected]>
3546 M:      Jens Axboe <[email protected]>
3547 L:      [email protected]
3548 S:      Maintained
3549 F:      Documentation/block/bfq-iosched.rst
3550 F:      block/bfq-*
3551
3552 BFS FILE SYSTEM
3553 M:      "Tigran A. Aivazian" <[email protected]>
3554 S:      Maintained
3555 F:      Documentation/filesystems/bfs.rst
3556 F:      fs/bfs/
3557 F:      include/uapi/linux/bfs_fs.h
3558
3559 BITMAP API
3560 M:      Yury Norov <[email protected]>
3561 R:      Andy Shevchenko <[email protected]>
3562 R:      Rasmus Villemoes <[email protected]>
3563 S:      Maintained
3564 F:      include/linux/bitmap.h
3565 F:      include/linux/cpumask.h
3566 F:      include/linux/find.h
3567 F:      include/linux/nodemask.h
3568 F:      lib/bitmap.c
3569 F:      lib/cpumask.c
3570 F:      lib/cpumask_kunit.c
3571 F:      lib/find_bit.c
3572 F:      lib/find_bit_benchmark.c
3573 F:      lib/test_bitmap.c
3574 F:      tools/include/linux/bitmap.h
3575 F:      tools/include/linux/find.h
3576 F:      tools/lib/bitmap.c
3577 F:      tools/lib/find_bit.c
3578
3579 BLINKM RGB LED DRIVER
3580 M:      Jan-Simon Moeller <[email protected]>
3581 S:      Maintained
3582 F:      drivers/leds/leds-blinkm.c
3583
3584 BLOCK LAYER
3585 M:      Jens Axboe <[email protected]>
3586 L:      [email protected]
3587 S:      Maintained
3588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3589 F:      Documentation/ABI/stable/sysfs-block
3590 F:      Documentation/block/
3591 F:      block/
3592 F:      drivers/block/
3593 F:      include/linux/bio.h
3594 F:      include/linux/blk*
3595 F:      kernel/trace/blktrace.c
3596 F:      lib/sbitmap.c
3597
3598 BLOCK2MTD DRIVER
3599 M:      Joern Engel <[email protected]>
3600 L:      [email protected]
3601 S:      Maintained
3602 F:      drivers/mtd/devices/block2mtd.c
3603
3604 BLUETOOTH DRIVERS
3605 M:      Marcel Holtmann <[email protected]>
3606 M:      Johan Hedberg <[email protected]>
3607 M:      Luiz Augusto von Dentz <[email protected]>
3608 L:      [email protected]
3609 S:      Supported
3610 W:      http://www.bluez.org/
3611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3613 F:      drivers/bluetooth/
3614
3615 BLUETOOTH SUBSYSTEM
3616 M:      Marcel Holtmann <[email protected]>
3617 M:      Johan Hedberg <[email protected]>
3618 M:      Luiz Augusto von Dentz <[email protected]>
3619 L:      [email protected]
3620 S:      Supported
3621 W:      http://www.bluez.org/
3622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3624 F:      include/net/bluetooth/
3625 F:      net/bluetooth/
3626
3627 BONDING DRIVER
3628 M:      Jay Vosburgh <[email protected]>
3629 M:      Andy Gospodarek <[email protected]>
3630 L:      [email protected]
3631 S:      Supported
3632 W:      http://sourceforge.net/projects/bonding/
3633 F:      Documentation/networking/bonding.rst
3634 F:      drivers/net/bonding/
3635 F:      include/net/bond*
3636 F:      include/uapi/linux/if_bonding.h
3637 F:      tools/testing/selftests/drivers/net/bonding/
3638
3639 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3640 M:      Dan Robertson <[email protected]>
3641 L:      [email protected]
3642 S:      Maintained
3643 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3644 F:      drivers/iio/accel/bma400*
3645
3646 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3647 M:      Alexei Starovoitov <[email protected]>
3648 M:      Daniel Borkmann <[email protected]>
3649 M:      Andrii Nakryiko <[email protected]>
3650 R:      Martin KaFai Lau <[email protected]>
3651 R:      Song Liu <[email protected]>
3652 R:      Yonghong Song <[email protected]>
3653 R:      John Fastabend <[email protected]>
3654 R:      KP Singh <[email protected]>
3655 R:      Stanislav Fomichev <[email protected]>
3656 R:      Hao Luo <[email protected]>
3657 R:      Jiri Olsa <[email protected]>
3658 L:      [email protected]
3659 S:      Supported
3660 W:      https://bpf.io/
3661 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3664 F:      Documentation/bpf/
3665 F:      Documentation/networking/filter.rst
3666 F:      Documentation/userspace-api/ebpf/
3667 F:      arch/*/net/*
3668 F:      include/linux/bpf*
3669 F:      include/linux/btf*
3670 F:      include/linux/filter.h
3671 F:      include/trace/events/xdp.h
3672 F:      include/uapi/linux/bpf*
3673 F:      include/uapi/linux/btf*
3674 F:      include/uapi/linux/filter.h
3675 F:      kernel/bpf/
3676 F:      kernel/trace/bpf_trace.c
3677 F:      lib/test_bpf.c
3678 F:      net/bpf/
3679 F:      net/core/filter.c
3680 F:      net/sched/act_bpf.c
3681 F:      net/sched/cls_bpf.c
3682 F:      samples/bpf/
3683 F:      scripts/bpf_doc.py
3684 F:      scripts/pahole-flags.sh
3685 F:      scripts/pahole-version.sh
3686 F:      tools/bpf/
3687 F:      tools/lib/bpf/
3688 F:      tools/testing/selftests/bpf/
3689
3690 BPF JIT for ARM
3691 M:      Shubham Bansal <[email protected]>
3692 L:      [email protected]
3693 S:      Odd Fixes
3694 F:      arch/arm/net/
3695
3696 BPF JIT for ARM64
3697 M:      Daniel Borkmann <[email protected]>
3698 M:      Alexei Starovoitov <[email protected]>
3699 M:      Zi Shen Lim <[email protected]>
3700 L:      [email protected]
3701 S:      Supported
3702 F:      arch/arm64/net/
3703
3704 BPF JIT for MIPS (32-BIT AND 64-BIT)
3705 M:      Johan Almbladh <[email protected]>
3706 M:      Paul Burton <[email protected]>
3707 L:      [email protected]
3708 S:      Maintained
3709 F:      arch/mips/net/
3710
3711 BPF JIT for NFP NICs
3712 M:      Jakub Kicinski <[email protected]>
3713 L:      [email protected]
3714 S:      Odd Fixes
3715 F:      drivers/net/ethernet/netronome/nfp/bpf/
3716
3717 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3718 M:      Naveen N. Rao <[email protected]>
3719 M:      Michael Ellerman <[email protected]>
3720 L:      [email protected]
3721 S:      Supported
3722 F:      arch/powerpc/net/
3723
3724 BPF JIT for RISC-V (32-bit)
3725 M:      Luke Nelson <[email protected]>
3726 M:      Xi Wang <[email protected]>
3727 L:      [email protected]
3728 S:      Maintained
3729 F:      arch/riscv/net/
3730 X:      arch/riscv/net/bpf_jit_comp64.c
3731
3732 BPF JIT for RISC-V (64-bit)
3733 M:      Björn Töpel <[email protected]>
3734 L:      [email protected]
3735 S:      Maintained
3736 F:      arch/riscv/net/
3737 X:      arch/riscv/net/bpf_jit_comp32.c
3738
3739 BPF JIT for S390
3740 M:      Ilya Leoshkevich <[email protected]>
3741 M:      Heiko Carstens <[email protected]>
3742 M:      Vasily Gorbik <[email protected]>
3743 L:      [email protected]
3744 S:      Supported
3745 F:      arch/s390/net/
3746 X:      arch/s390/net/pnet.c
3747
3748 BPF JIT for SPARC (32-BIT AND 64-BIT)
3749 M:      David S. Miller <[email protected]>
3750 L:      [email protected]
3751 S:      Odd Fixes
3752 F:      arch/sparc/net/
3753
3754 BPF JIT for X86 32-BIT
3755 M:      Wang YanQing <[email protected]>
3756 L:      [email protected]
3757 S:      Odd Fixes
3758 F:      arch/x86/net/bpf_jit_comp32.c
3759
3760 BPF JIT for X86 64-BIT
3761 M:      Alexei Starovoitov <[email protected]>
3762 M:      Daniel Borkmann <[email protected]>
3763 L:      [email protected]
3764 S:      Supported
3765 F:      arch/x86/net/
3766 X:      arch/x86/net/bpf_jit_comp32.c
3767
3768 BPF [CORE]
3769 M:      Alexei Starovoitov <[email protected]>
3770 M:      Daniel Borkmann <[email protected]>
3771 R:      John Fastabend <[email protected]>
3772 L:      [email protected]
3773 S:      Maintained
3774 F:      kernel/bpf/verifier.c
3775 F:      kernel/bpf/tnum.c
3776 F:      kernel/bpf/core.c
3777 F:      kernel/bpf/syscall.c
3778 F:      kernel/bpf/dispatcher.c
3779 F:      kernel/bpf/trampoline.c
3780 F:      include/linux/bpf*
3781 F:      include/linux/filter.h
3782 F:      include/linux/tnum.h
3783
3784 BPF [BTF]
3785 M:      Martin KaFai Lau <[email protected]>
3786 L:      [email protected]
3787 S:      Maintained
3788 F:      kernel/bpf/btf.c
3789 F:      include/linux/btf*
3790
3791 BPF [TRACING]
3792 M:      Song Liu <[email protected]>
3793 R:      Jiri Olsa <[email protected]>
3794 L:      [email protected]
3795 S:      Maintained
3796 F:      kernel/trace/bpf_trace.c
3797 F:      kernel/bpf/stackmap.c
3798
3799 BPF [NETWORKING] (tc BPF, sock_addr)
3800 M:      Martin KaFai Lau <[email protected]>
3801 M:      Daniel Borkmann <[email protected]>
3802 R:      John Fastabend <[email protected]>
3803 L:      [email protected]
3804 L:      [email protected]
3805 S:      Maintained
3806 F:      net/core/filter.c
3807 F:      net/sched/act_bpf.c
3808 F:      net/sched/cls_bpf.c
3809
3810 BPF [NETWORKING] (struct_ops, reuseport)
3811 M:      Martin KaFai Lau <[email protected]>
3812 L:      [email protected]
3813 L:      [email protected]
3814 S:      Maintained
3815 F:      kernel/bpf/bpf_struct*
3816
3817 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3818 M:      KP Singh <[email protected]>
3819 R:      Florent Revest <[email protected]>
3820 R:      Brendan Jackman <[email protected]>
3821 L:      [email protected]
3822 S:      Maintained
3823 F:      Documentation/bpf/prog_lsm.rst
3824 F:      include/linux/bpf_lsm.h
3825 F:      kernel/bpf/bpf_lsm.c
3826 F:      security/bpf/
3827
3828 BPF [STORAGE & CGROUPS]
3829 M:      Martin KaFai Lau <[email protected]>
3830 L:      [email protected]
3831 S:      Maintained
3832 F:      kernel/bpf/cgroup.c
3833 F:      kernel/bpf/*storage.c
3834 F:      kernel/bpf/bpf_lru*
3835
3836 BPF [RINGBUF]
3837 M:      Andrii Nakryiko <[email protected]>
3838 L:      [email protected]
3839 S:      Maintained
3840 F:      kernel/bpf/ringbuf.c
3841
3842 BPF [ITERATOR]
3843 M:      Yonghong Song <[email protected]>
3844 L:      [email protected]
3845 S:      Maintained
3846 F:      kernel/bpf/*iter.c
3847
3848 BPF [L7 FRAMEWORK] (sockmap)
3849 M:      John Fastabend <[email protected]>
3850 M:      Jakub Sitnicki <[email protected]>
3851 L:      [email protected]
3852 L:      [email protected]
3853 S:      Maintained
3854 F:      include/linux/skmsg.h
3855 F:      net/core/skmsg.c
3856 F:      net/core/sock_map.c
3857 F:      net/ipv4/tcp_bpf.c
3858 F:      net/ipv4/udp_bpf.c
3859 F:      net/unix/unix_bpf.c
3860
3861 BPF [LIBRARY] (libbpf)
3862 M:      Andrii Nakryiko <[email protected]>
3863 L:      [email protected]
3864 S:      Maintained
3865 F:      tools/lib/bpf/
3866
3867 BPF [TOOLING] (bpftool)
3868 M:      Quentin Monnet <[email protected]>
3869 L:      [email protected]
3870 S:      Maintained
3871 F:      kernel/bpf/disasm.*
3872 F:      tools/bpf/bpftool/
3873
3874 BPF [SELFTESTS] (Test Runners & Infrastructure)
3875 M:      Andrii Nakryiko <[email protected]>
3876 R:      Mykola Lysenko <[email protected]>
3877 L:      [email protected]
3878 S:      Maintained
3879 F:      tools/testing/selftests/bpf/
3880
3881 BPF [DOCUMENTATION] (Related to Standardization)
3882 R:      David Vernet <[email protected]>
3883 L:      [email protected]
3884 L:      [email protected]
3885 S:      Maintained
3886 F:      Documentation/bpf/instruction-set.rst
3887
3888 BPF [MISC]
3889 L:      [email protected]
3890 S:      Odd Fixes
3891 K:      (?:\b|_)bpf(?:\b|_)
3892
3893 BROADCOM B44 10/100 ETHERNET DRIVER
3894 M:      Michael Chan <[email protected]>
3895 L:      [email protected]
3896 S:      Supported
3897 F:      drivers/net/ethernet/broadcom/b44.*
3898
3899 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3900 M:      Florian Fainelli <[email protected]>
3901 L:      [email protected]
3902 L:      [email protected] (subscribers-only)
3903 S:      Supported
3904 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3905 F:      drivers/net/dsa/b53/*
3906 F:      drivers/net/dsa/bcm_sf2*
3907 F:      include/linux/dsa/brcm.h
3908 F:      include/linux/platform_data/b53.h
3909
3910 BROADCOM BCMBCA ARM ARCHITECTURE
3911 M:      William Zhang <[email protected]>
3912 M:      Anand Gore <[email protected]>
3913 M:      Kursad Oney <[email protected]>
3914 M:      Florian Fainelli <[email protected]>
3915 M:      Rafał Miłecki <[email protected]>
3916 R:      Broadcom internal kernel review list <[email protected]>
3917 L:      [email protected] (moderated for non-subscribers)
3918 S:      Maintained
3919 T:      git https://github.com/broadcom/stblinux.git
3920 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3921 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3922 N:      bcmbca
3923 N:      bcm[9]?47622
3924 N:      bcm[9]?4912
3925 N:      bcm[9]?63138
3926 N:      bcm[9]?63146
3927 N:      bcm[9]?63148
3928 N:      bcm[9]?63158
3929 N:      bcm[9]?63178
3930 N:      bcm[9]?6756
3931 N:      bcm[9]?6813
3932 N:      bcm[9]?6846
3933 N:      bcm[9]?6855
3934 N:      bcm[9]?6856
3935 N:      bcm[9]?6858
3936 N:      bcm[9]?6878
3937
3938 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3939 M:      Florian Fainelli <[email protected]>
3940 R:      Broadcom internal kernel review list <[email protected]>
3941 L:      [email protected] (moderated for non-subscribers)
3942 L:      [email protected] (moderated for non-subscribers)
3943 S:      Maintained
3944 T:      git https://github.com/broadcom/stblinux.git
3945 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3946 F:      drivers/pci/controller/pcie-brcmstb.c
3947 F:      drivers/staging/vc04_services
3948 N:      bcm2711
3949 N:      bcm283*
3950 N:      raspberrypi
3951
3952 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3953 M:      Florian Fainelli <[email protected]>
3954 M:      Ray Jui <[email protected]>
3955 M:      Scott Branden <[email protected]>
3956 R:      Broadcom internal kernel review list <[email protected]>
3957 S:      Maintained
3958 T:      git https://github.com/broadcom/mach-bcm
3959 F:      arch/arm/mach-bcm/
3960 N:      bcm281*
3961 N:      bcm113*
3962 N:      bcm216*
3963 N:      kona
3964
3965 BROADCOM BCM47XX MIPS ARCHITECTURE
3966 M:      Hauke Mehrtens <[email protected]>
3967 M:      Rafał Miłecki <[email protected]>
3968 L:      [email protected]
3969 S:      Maintained
3970 F:      Documentation/devicetree/bindings/mips/brcm/
3971 F:      arch/mips/bcm47xx/*
3972 F:      arch/mips/include/asm/mach-bcm47xx/*
3973
3974 BROADCOM BCM4908 ETHERNET DRIVER
3975 M:      Rafał Miłecki <[email protected]>
3976 R:      Broadcom internal kernel review list <[email protected]>
3977 L:      [email protected]
3978 S:      Maintained
3979 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3980 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3981 F:      drivers/net/ethernet/broadcom/unimac.h
3982
3983 BROADCOM BCM4908 PINMUX DRIVER
3984 M:      Rafał Miłecki <[email protected]>
3985 R:      Broadcom internal kernel review list <[email protected]>
3986 L:      [email protected]
3987 S:      Maintained
3988 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3989 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3990
3991 BROADCOM BCM5301X ARM ARCHITECTURE
3992 M:      Florian Fainelli <[email protected]>
3993 M:      Hauke Mehrtens <[email protected]>
3994 M:      Rafał Miłecki <[email protected]>
3995 R:      Broadcom internal kernel review list <[email protected]>
3996 L:      [email protected] (moderated for non-subscribers)
3997 S:      Maintained
3998 F:      arch/arm/boot/dts/bcm470*
3999 F:      arch/arm/boot/dts/bcm5301*
4000 F:      arch/arm/boot/dts/bcm953012*
4001 F:      arch/arm/mach-bcm/bcm_5301x.c
4002
4003 BROADCOM BCM53573 ARM ARCHITECTURE
4004 M:      Florian Fainelli <[email protected]>
4005 M:      Rafał Miłecki <[email protected]>
4006 R:      Broadcom internal kernel review list <[email protected]>
4007 L:      [email protected] (moderated for non-subscribers)
4008 S:      Maintained
4009 F:      arch/arm/boot/dts/bcm47189*
4010 F:      arch/arm/boot/dts/bcm53573*
4011
4012 BROADCOM BCM63XX/BCM33XX UDC DRIVER
4013 M:      Kevin Cernekee <[email protected]>
4014 L:      [email protected]
4015 S:      Maintained
4016 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
4017
4018 BROADCOM BCM7XXX ARM ARCHITECTURE
4019 M:      Florian Fainelli <[email protected]>
4020 R:      Broadcom internal kernel review list <[email protected]>
4021 L:      [email protected] (moderated for non-subscribers)
4022 S:      Maintained
4023 T:      git https://github.com/broadcom/stblinux.git
4024 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4025 F:      arch/arm/boot/dts/bcm7*.dts*
4026 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4027 F:      arch/arm/mach-bcm/*brcmstb*
4028 F:      arch/arm/mm/cache-b15-rac.c
4029 F:      drivers/bus/brcmstb_gisb.c
4030 F:      drivers/pci/controller/pcie-brcmstb.c
4031 N:      brcmstb
4032 N:      bcm7038
4033 N:      bcm7120
4034
4035 BROADCOM BDC DRIVER
4036 M:      Justin Chen <[email protected]>
4037 M:      Al Cooper <[email protected]>
4038 L:      [email protected]
4039 R:      Broadcom internal kernel review list <[email protected]>
4040 S:      Maintained
4041 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4042 F:      drivers/usb/gadget/udc/bdc/
4043
4044 BROADCOM BMIPS CPUFREQ DRIVER
4045 M:      Markus Mayer <[email protected]>
4046 R:      Broadcom internal kernel review list <[email protected]>
4047 L:      [email protected]
4048 S:      Maintained
4049 F:      drivers/cpufreq/bmips-cpufreq.c
4050
4051 BROADCOM BMIPS MIPS ARCHITECTURE
4052 M:      Florian Fainelli <[email protected]>
4053 R:      Broadcom internal kernel review list <[email protected]>
4054 L:      [email protected]
4055 S:      Maintained
4056 T:      git https://github.com/broadcom/stblinux.git
4057 F:      arch/mips/bmips/*
4058 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4059 F:      arch/mips/include/asm/mach-bmips/*
4060 F:      arch/mips/kernel/*bmips*
4061 F:      drivers/soc/bcm/bcm63xx
4062 F:      drivers/irqchip/irq-bcm63*
4063 F:      drivers/irqchip/irq-bcm7*
4064 F:      drivers/irqchip/irq-brcmstb*
4065 F:      include/linux/bcm963xx_nvram.h
4066 F:      include/linux/bcm963xx_tag.h
4067
4068 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4069 M:      Rasesh Mody <[email protected]>
4070 M:      [email protected]
4071 L:      [email protected]
4072 S:      Supported
4073 F:      drivers/net/ethernet/broadcom/bnx2.*
4074 F:      drivers/net/ethernet/broadcom/bnx2_*
4075
4076 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4077 M:      Saurav Kashyap <[email protected]>
4078 M:      Javed Hasan <[email protected]>
4079 M:      [email protected]
4080 L:      [email protected]
4081 S:      Supported
4082 F:      drivers/scsi/bnx2fc/
4083
4084 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4085 M:      Nilesh Javali <[email protected]>
4086 M:      Manish Rangankar <[email protected]>
4087 M:      [email protected]
4088 L:      [email protected]
4089 S:      Supported
4090 F:      drivers/scsi/bnx2i/
4091
4092 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4093 M:      Ariel Elior <[email protected]>
4094 M:      Sudarsana Kalluru <[email protected]>
4095 M:      Manish Chopra <[email protected]>
4096 L:      [email protected]
4097 S:      Supported
4098 F:      drivers/net/ethernet/broadcom/bnx2x/
4099
4100 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4101 M:      Michael Chan <[email protected]>
4102 L:      [email protected]
4103 S:      Supported
4104 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4105 F:      drivers/net/ethernet/broadcom/bnxt/
4106 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4107
4108 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4109 M:      Arend van Spriel <[email protected]>
4110 M:      Franky Lin <[email protected]>
4111 M:      Hante Meuleman <[email protected]>
4112 L:      [email protected]
4113 L:      [email protected]
4114 L:      [email protected]
4115 S:      Supported
4116 F:      drivers/net/wireless/broadcom/brcm80211/
4117
4118 BROADCOM BRCMSTB GPIO DRIVER
4119 M:      Doug Berger <[email protected]>
4120 M:      Florian Fainelli <[email protected]>
4121 R:      Broadcom internal kernel review list <[email protected]>
4122 S:      Supported
4123 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4124 F:      drivers/gpio/gpio-brcmstb.c
4125
4126 BROADCOM BRCMSTB I2C DRIVER
4127 M:      Kamal Dasu <[email protected]>
4128 R:      Broadcom internal kernel review list <[email protected]>
4129 L:      [email protected]
4130 S:      Supported
4131 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4132 F:      drivers/i2c/busses/i2c-brcmstb.c
4133
4134 BROADCOM BRCMSTB UART DRIVER
4135 M:      Al Cooper <[email protected]>
4136 R:      Broadcom internal kernel review list <[email protected]>
4137 L:      [email protected]
4138 S:      Maintained
4139 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4140 F:      drivers/tty/serial/8250/8250_bcm7271.c
4141
4142 BROADCOM BRCMSTB USB EHCI DRIVER
4143 M:      Justin Chen <[email protected]>
4144 M:      Al Cooper <[email protected]>
4145 R:      Broadcom internal kernel review list <[email protected]>
4146 L:      [email protected]
4147 S:      Maintained
4148 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4149 F:      drivers/usb/host/ehci-brcm.*
4150
4151 BROADCOM BRCMSTB USB PIN MAP DRIVER
4152 M:      Al Cooper <[email protected]>
4153 R:      Broadcom internal kernel review list <[email protected]>
4154 L:      [email protected]
4155 S:      Maintained
4156 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4157 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4158
4159 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4160 M:      Justin Chen <[email protected]>
4161 M:      Al Cooper <[email protected]>
4162 R:      Broadcom internal kernel review list <[email protected]>
4163 L:      [email protected]
4164 S:      Maintained
4165 F:      drivers/phy/broadcom/phy-brcm-usb*
4166
4167 BROADCOM Broadband SoC High Speed SPI Controller DRIVER
4168 M:      William Zhang <[email protected]>
4169 M:      Kursad Oney <[email protected]>
4170 M:      Jonas Gorski <[email protected]>
4171 R:      Broadcom internal kernel review list <[email protected]>
4172 L:      [email protected]
4173 S:      Maintained
4174 F:      Documentation/devicetree/bindings/spi/brcm,bcm63xx-hsspi.yaml
4175 F:      drivers/spi/spi-bcm63xx-hsspi.c
4176 F:      drivers/spi/spi-bcmbca-hsspi.c
4177
4178 BROADCOM ETHERNET PHY DRIVERS
4179 M:      Florian Fainelli <[email protected]>
4180 R:      Broadcom internal kernel review list <[email protected]>
4181 L:      [email protected]
4182 S:      Supported
4183 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4184 F:      drivers/net/phy/bcm*.[ch]
4185 F:      drivers/net/phy/broadcom.c
4186 F:      include/linux/brcmphy.h
4187
4188 BROADCOM GENET ETHERNET DRIVER
4189 M:      Doug Berger <[email protected]>
4190 M:      Florian Fainelli <[email protected]>
4191 R:      Broadcom internal kernel review list <[email protected]>
4192 L:      [email protected]
4193 S:      Supported
4194 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4195 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4196 F:      drivers/net/ethernet/broadcom/genet/
4197 F:      drivers/net/ethernet/broadcom/unimac.h
4198 F:      drivers/net/mdio/mdio-bcm-unimac.c
4199 F:      include/linux/platform_data/bcmgenet.h
4200 F:      include/linux/platform_data/mdio-bcm-unimac.h
4201
4202 BROADCOM IPROC ARM ARCHITECTURE
4203 M:      Ray Jui <[email protected]>
4204 M:      Scott Branden <[email protected]>
4205 R:      Broadcom internal kernel review list <[email protected]>
4206 L:      [email protected] (moderated for non-subscribers)
4207 S:      Maintained
4208 T:      git https://github.com/broadcom/stblinux.git
4209 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4210 F:      arch/arm64/boot/dts/broadcom/stingray/*
4211 F:      drivers/clk/bcm/clk-ns*
4212 F:      drivers/clk/bcm/clk-sr*
4213 F:      drivers/pinctrl/bcm/pinctrl-ns*
4214 F:      include/dt-bindings/clock/bcm-sr*
4215 N:      iproc
4216 N:      cygnus
4217 N:      bcm[-_]nsp
4218 N:      bcm9113*
4219 N:      bcm9583*
4220 N:      bcm9585*
4221 N:      bcm9586*
4222 N:      bcm988312
4223 N:      bcm113*
4224 N:      bcm583*
4225 N:      bcm585*
4226 N:      bcm586*
4227 N:      bcm88312
4228 N:      hr2
4229 N:      stingray
4230
4231 BROADCOM IPROC GBIT ETHERNET DRIVER
4232 M:      Rafał Miłecki <[email protected]>
4233 R:      Broadcom internal kernel review list <[email protected]>
4234 L:      [email protected]
4235 S:      Maintained
4236 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4237 F:      drivers/net/ethernet/broadcom/bgmac*
4238 F:      drivers/net/ethernet/broadcom/unimac.h
4239
4240 BROADCOM KONA GPIO DRIVER
4241 M:      Ray Jui <[email protected]>
4242 R:      Broadcom internal kernel review list <[email protected]>
4243 S:      Supported
4244 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4245 F:      drivers/gpio/gpio-bcm-kona.c
4246
4247 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4248 M:      Sathya Prakash Veerichetty <[email protected]>
4249 M:      Kashyap Desai <[email protected]>
4250 M:      Sumit Saxena <[email protected]>
4251 M:      Sreekanth Reddy <[email protected]>
4252 L:      [email protected]
4253 L:      [email protected]
4254 S:      Supported
4255 W:      https://www.broadcom.com/support/storage
4256 F:      drivers/scsi/mpi3mr/
4257
4258 BROADCOM NETXTREME-E ROCE DRIVER
4259 M:      Selvin Xavier <[email protected]>
4260 L:      [email protected]
4261 S:      Supported
4262 W:      http://www.broadcom.com
4263 F:      drivers/infiniband/hw/bnxt_re/
4264 F:      include/uapi/rdma/bnxt_re-abi.h
4265
4266 BROADCOM NVRAM DRIVER
4267 M:      Rafał Miłecki <[email protected]>
4268 L:      [email protected]
4269 S:      Maintained
4270 F:      drivers/firmware/broadcom/*
4271
4272 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4273 M:      Rafał Miłecki <[email protected]>
4274 M:      Florian Fainelli <[email protected]>
4275 R:      Broadcom internal kernel review list <[email protected]>
4276 L:      [email protected]
4277 S:      Maintained
4278 T:      git https://github.com/broadcom/stblinux.git
4279 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4280 F:      include/dt-bindings/soc/bcm-pmb.h
4281
4282 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4283 M:      Rafał Miłecki <[email protected]>
4284 L:      [email protected]
4285 S:      Maintained
4286 F:      drivers/bcma/
4287 F:      include/linux/bcma/
4288
4289 BROADCOM SPI DRIVER
4290 M:      Kamal Dasu <[email protected]>
4291 R:      Broadcom internal kernel review list <[email protected]>
4292 S:      Maintained
4293 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4294 F:      drivers/spi/spi-bcm-qspi.*
4295 F:      drivers/spi/spi-brcmstb-qspi.c
4296 F:      drivers/spi/spi-iproc-qspi.c
4297
4298 BROADCOM STB AVS CPUFREQ DRIVER
4299 M:      Markus Mayer <[email protected]>
4300 R:      Broadcom internal kernel review list <[email protected]>
4301 L:      [email protected]
4302 S:      Maintained
4303 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4304 F:      drivers/cpufreq/brcmstb*
4305
4306 BROADCOM STB AVS TMON DRIVER
4307 M:      Markus Mayer <[email protected]>
4308 R:      Broadcom internal kernel review list <[email protected]>
4309 L:      [email protected]
4310 S:      Maintained
4311 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4312 F:      drivers/thermal/broadcom/brcmstb*
4313
4314 BROADCOM STB DPFE DRIVER
4315 M:      Markus Mayer <[email protected]>
4316 R:      Broadcom internal kernel review list <[email protected]>
4317 L:      [email protected] (moderated for non-subscribers)
4318 S:      Maintained
4319 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4320 F:      drivers/memory/brcmstb_dpfe.c
4321
4322 BROADCOM STB NAND FLASH DRIVER
4323 M:      Brian Norris <[email protected]>
4324 M:      Kamal Dasu <[email protected]>
4325 R:      Broadcom internal kernel review list <[email protected]>
4326 L:      [email protected]
4327 S:      Maintained
4328 F:      drivers/mtd/nand/raw/brcmnand/
4329 F:      include/linux/platform_data/brcmnand.h
4330
4331 BROADCOM STB PCIE DRIVER
4332 M:      Jim Quinlan <[email protected]>
4333 M:      Nicolas Saenz Julienne <[email protected]>
4334 M:      Florian Fainelli <[email protected]>
4335 R:      Broadcom internal kernel review list <[email protected]>
4336 L:      [email protected]
4337 S:      Maintained
4338 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4339 F:      drivers/pci/controller/pcie-brcmstb.c
4340
4341 BROADCOM SYSTEMPORT ETHERNET DRIVER
4342 M:      Florian Fainelli <[email protected]>
4343 R:      Broadcom internal kernel review list <[email protected]>
4344 L:      [email protected]
4345 S:      Supported
4346 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4347 F:      drivers/net/ethernet/broadcom/unimac.h
4348 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4349
4350 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4351 M:      Siva Reddy Kallam <[email protected]>
4352 M:      Prashant Sreedharan <[email protected]>
4353 M:      Michael Chan <[email protected]>
4354 L:      [email protected]
4355 S:      Supported
4356 F:      drivers/net/ethernet/broadcom/tg3.*
4357
4358 BROADCOM VK DRIVER
4359 M:      Scott Branden <[email protected]>
4360 R:      Broadcom internal kernel review list <[email protected]>
4361 S:      Supported
4362 F:      drivers/misc/bcm-vk/
4363 F:      include/uapi/linux/misc/bcm_vk.h
4364
4365 BROCADE BFA FC SCSI DRIVER
4366 M:      Anil Gurumurthy <[email protected]>
4367 M:      Sudarsana Kalluru <[email protected]>
4368 L:      [email protected]
4369 S:      Supported
4370 F:      drivers/scsi/bfa/
4371
4372 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4373 M:      Rasesh Mody <[email protected]>
4374 M:      Sudarsana Kalluru <[email protected]>
4375 M:      [email protected]
4376 L:      [email protected]
4377 S:      Supported
4378 F:      drivers/net/ethernet/brocade/bna/
4379
4380 BSG (block layer generic sg v4 driver)
4381 M:      FUJITA Tomonori <[email protected]>
4382 L:      [email protected]
4383 S:      Supported
4384 F:      block/bsg.c
4385 F:      include/linux/bsg.h
4386 F:      include/uapi/linux/bsg.h
4387
4388 BT87X AUDIO DRIVER
4389 M:      Clemens Ladisch <[email protected]>
4390 L:      [email protected] (moderated for non-subscribers)
4391 S:      Maintained
4392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4393 F:      Documentation/sound/cards/bt87x.rst
4394 F:      sound/pci/bt87x.c
4395
4396 BT8XXGPIO DRIVER
4397 M:      Michael Buesch <[email protected]>
4398 S:      Maintained
4399 W:      http://bu3sch.de/btgpio.php
4400 F:      drivers/gpio/gpio-bt8xx.c
4401
4402 BTRFS FILE SYSTEM
4403 M:      Chris Mason <[email protected]>
4404 M:      Josef Bacik <[email protected]>
4405 M:      David Sterba <[email protected]>
4406 L:      [email protected]
4407 S:      Maintained
4408 W:      https://btrfs.readthedocs.io
4409 W:      https://btrfs.wiki.kernel.org/
4410 Q:      https://patchwork.kernel.org/project/linux-btrfs/list/
4411 C:      irc://irc.libera.chat/btrfs
4412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4413 F:      Documentation/filesystems/btrfs.rst
4414 F:      fs/btrfs/
4415 F:      include/linux/btrfs*
4416 F:      include/trace/events/btrfs.h
4417 F:      include/uapi/linux/btrfs*
4418
4419 BTTV VIDEO4LINUX DRIVER
4420 M:      Mauro Carvalho Chehab <[email protected]>
4421 L:      [email protected]
4422 S:      Odd fixes
4423 W:      https://linuxtv.org
4424 T:      git git://linuxtv.org/media_tree.git
4425 F:      Documentation/driver-api/media/drivers/bttv*
4426 F:      drivers/media/pci/bt8xx/bttv*
4427
4428 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4429 M:      Chanwoo Choi <[email protected]>
4430 L:      [email protected]
4431 L:      [email protected]
4432 S:      Maintained
4433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4434 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4435 F:      drivers/devfreq/exynos-bus.c
4436
4437 BUSLOGIC SCSI DRIVER
4438 M:      Khalid Aziz <[email protected]>
4439 L:      [email protected]
4440 S:      Maintained
4441 F:      drivers/scsi/BusLogic.*
4442 F:      drivers/scsi/FlashPoint.*
4443
4444 BXCAN CAN NETWORK DRIVER
4445 M:      Dario Binacchi <[email protected]>
4446 L:      [email protected]
4447 S:      Maintained
4448 F:      Documentation/devicetree/bindings/net/can/st,stm32-bxcan.yaml
4449 F:      drivers/net/can/bxcan.c
4450
4451 C-MEDIA CMI8788 DRIVER
4452 M:      Clemens Ladisch <[email protected]>
4453 L:      [email protected] (moderated for non-subscribers)
4454 S:      Maintained
4455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4456 F:      sound/pci/oxygen/
4457
4458 C-SKY ARCHITECTURE
4459 M:      Guo Ren <[email protected]>
4460 L:      [email protected]
4461 S:      Supported
4462 T:      git https://github.com/c-sky/csky-linux.git
4463 F:      Documentation/devicetree/bindings/csky/
4464 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4465 F:      Documentation/devicetree/bindings/timer/csky,*
4466 F:      arch/csky/
4467 F:      drivers/clocksource/timer-gx6605s.c
4468 F:      drivers/clocksource/timer-mp-csky.c
4469 F:      drivers/irqchip/irq-csky-*
4470 N:      csky
4471 K:      csky
4472
4473 CA8210 IEEE-802.15.4 RADIO DRIVER
4474 L:      [email protected]
4475 S:      Orphan
4476 W:      https://github.com/Cascoda/ca8210-linux.git
4477 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4478 F:      drivers/net/ieee802154/ca8210.c
4479
4480 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4481 M:      Damien Le Moal <[email protected]>
4482 L:      [email protected]
4483 L:      [email protected] (pinctrl driver)
4484 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4485 F:      drivers/pinctrl/pinctrl-k210.c
4486
4487 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4488 M:      Damien Le Moal <[email protected]>
4489 L:      [email protected]
4490 L:      [email protected]
4491 S:      Maintained
4492 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4493 F:      drivers/reset/reset-k210.c
4494
4495 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4496 M:      Damien Le Moal <[email protected]>
4497 L:      [email protected]
4498 S:      Maintained
4499 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4500 F:      drivers/soc/canaan/
4501 F:      include/soc/canaan/
4502
4503 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4504 M:      David Howells <[email protected]>
4505 L:      [email protected] (moderated for non-subscribers)
4506 S:      Supported
4507 F:      Documentation/filesystems/caching/cachefiles.rst
4508 F:      fs/cachefiles/
4509
4510 CADENCE MIPI-CSI2 BRIDGES
4511 M:      Maxime Ripard <[email protected]>
4512 L:      [email protected]
4513 S:      Maintained
4514 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4515 F:      drivers/media/platform/cadence/cdns-csi2*
4516
4517 CADENCE NAND DRIVER
4518 L:      [email protected]
4519 S:      Orphan
4520 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4521 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4522
4523 CADENCE USB3 DRD IP DRIVER
4524 M:      Peter Chen <[email protected]>
4525 M:      Pawel Laszczak <[email protected]>
4526 R:      Roger Quadros <[email protected]>
4527 R:      Aswath Govindraju <[email protected]>
4528 L:      [email protected]
4529 S:      Maintained
4530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4531 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4532 F:      drivers/usb/cdns3/
4533 X:      drivers/usb/cdns3/cdnsp*
4534
4535 CADENCE USBSSP DRD IP DRIVER
4536 M:      Pawel Laszczak <[email protected]>
4537 L:      [email protected]
4538 S:      Maintained
4539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4540 F:      drivers/usb/cdns3/
4541 X:      drivers/usb/cdns3/cdns3*
4542
4543 CADET FM/AM RADIO RECEIVER DRIVER
4544 M:      Hans Verkuil <[email protected]>
4545 L:      [email protected]
4546 S:      Maintained
4547 W:      https://linuxtv.org
4548 T:      git git://linuxtv.org/media_tree.git
4549 F:      drivers/media/radio/radio-cadet*
4550
4551 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4552 L:      [email protected]
4553 S:      Orphan
4554 T:      git git://linuxtv.org/media_tree.git
4555 F:      Documentation/admin-guide/media/cafe_ccic*
4556 F:      drivers/media/platform/marvell/
4557
4558 CAIF NETWORK LAYER
4559 L:      [email protected]
4560 S:      Orphan
4561 F:      Documentation/networking/caif/
4562 F:      drivers/net/caif/
4563 F:      include/net/caif/
4564 F:      include/uapi/linux/caif/
4565 F:      net/caif/
4566
4567 CAKE QDISC
4568 M:      Toke Høiland-Jørgensen <[email protected]>
4569 L:      [email protected] (moderated for non-subscribers)
4570 S:      Maintained
4571 F:      net/sched/sch_cake.c
4572
4573 CAN NETWORK DRIVERS
4574 M:      Wolfgang Grandegger <[email protected]>
4575 M:      Marc Kleine-Budde <[email protected]>
4576 L:      [email protected]
4577 S:      Maintained
4578 W:      https://github.com/linux-can
4579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4581 F:      Documentation/devicetree/bindings/net/can/
4582 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4583 F:      drivers/net/can/
4584 F:      drivers/phy/phy-can-transceiver.c
4585 F:      include/linux/can/bittiming.h
4586 F:      include/linux/can/dev.h
4587 F:      include/linux/can/length.h
4588 F:      include/linux/can/platform/
4589 F:      include/linux/can/rx-offload.h
4590 F:      include/uapi/linux/can/error.h
4591 F:      include/uapi/linux/can/netlink.h
4592 F:      include/uapi/linux/can/vxcan.h
4593
4594 CAN NETWORK LAYER
4595 M:      Oliver Hartkopp <[email protected]>
4596 M:      Marc Kleine-Budde <[email protected]>
4597 L:      [email protected]
4598 S:      Maintained
4599 W:      https://github.com/linux-can
4600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4602 F:      Documentation/networking/can.rst
4603 F:      include/linux/can/can-ml.h
4604 F:      include/linux/can/core.h
4605 F:      include/linux/can/skb.h
4606 F:      include/net/netns/can.h
4607 F:      include/uapi/linux/can.h
4608 F:      include/uapi/linux/can/bcm.h
4609 F:      include/uapi/linux/can/gw.h
4610 F:      include/uapi/linux/can/isotp.h
4611 F:      include/uapi/linux/can/raw.h
4612 F:      net/can/
4613
4614 CAN-J1939 NETWORK LAYER
4615 M:      Robin van der Gracht <[email protected]>
4616 M:      Oleksij Rempel <[email protected]>
4617 R:      [email protected]
4618 L:      [email protected]
4619 S:      Maintained
4620 F:      Documentation/networking/j1939.rst
4621 F:      include/uapi/linux/can/j1939.h
4622 F:      net/can/j1939/
4623
4624 CAPABILITIES
4625 M:      Serge Hallyn <[email protected]>
4626 L:      [email protected]
4627 S:      Supported
4628 F:      include/linux/capability.h
4629 F:      include/uapi/linux/capability.h
4630 F:      kernel/capability.c
4631 F:      security/commoncap.c
4632
4633 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4634 M:      Kevin Tsai <[email protected]>
4635 S:      Maintained
4636 F:      drivers/iio/light/cm*
4637
4638 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4639 M:      Christian Lamparter <[email protected]>
4640 L:      [email protected]
4641 S:      Maintained
4642 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4643 F:      drivers/net/wireless/ath/carl9170/
4644
4645 CAVIUM I2C DRIVER
4646 M:      Robert Richter <[email protected]>
4647 S:      Odd Fixes
4648 W:      http://www.marvell.com
4649 F:      drivers/i2c/busses/i2c-octeon*
4650 F:      drivers/i2c/busses/i2c-thunderx*
4651
4652 CAVIUM LIQUIDIO NETWORK DRIVER
4653 M:      Derek Chickles <[email protected]>
4654 M:      Satanand Burla <[email protected]>
4655 M:      Felix Manlunas <[email protected]>
4656 L:      [email protected]
4657 S:      Supported
4658 W:      http://www.marvell.com
4659 F:      drivers/net/ethernet/cavium/liquidio/
4660
4661 CAVIUM MMC DRIVER
4662 M:      Robert Richter <[email protected]>
4663 S:      Odd Fixes
4664 W:      http://www.marvell.com
4665 F:      drivers/mmc/host/cavium*
4666
4667 CAVIUM OCTEON-TX CRYPTO DRIVER
4668 M:      George Cherian <[email protected]>
4669 L:      [email protected]
4670 S:      Supported
4671 W:      http://www.marvell.com
4672 F:      drivers/crypto/cavium/cpt/
4673
4674 CAVIUM THUNDERX2 ARM64 SOC
4675 M:      Robert Richter <[email protected]>
4676 L:      [email protected] (moderated for non-subscribers)
4677 S:      Odd Fixes
4678 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4679 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4680
4681 CBS/ETF/TAPRIO QDISCS
4682 M:      Vinicius Costa Gomes <[email protected]>
4683 S:      Maintained
4684 L:      [email protected]
4685 F:      net/sched/sch_cbs.c
4686 F:      net/sched/sch_etf.c
4687 F:      net/sched/sch_taprio.c
4688
4689 CC2520 IEEE-802.15.4 RADIO DRIVER
4690 M:      Stefan Schmidt <[email protected]>
4691 L:      [email protected]
4692 S:      Odd Fixes
4693 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4694 F:      drivers/net/ieee802154/cc2520.c
4695
4696 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4697 M:      Gilad Ben-Yossef <[email protected]>
4698 L:      [email protected]
4699 S:      Supported
4700 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4701 F:      drivers/crypto/ccree/
4702
4703 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4704 M:      Hadar Gat <[email protected]>
4705 L:      [email protected]
4706 S:      Supported
4707 F:      drivers/char/hw_random/cctrng.c
4708 F:      drivers/char/hw_random/cctrng.h
4709 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4710 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4711
4712 CEC FRAMEWORK
4713 M:      Hans Verkuil <[email protected]>
4714 L:      [email protected]
4715 S:      Supported
4716 W:      http://linuxtv.org
4717 T:      git git://linuxtv.org/media_tree.git
4718 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4719 F:      Documentation/devicetree/bindings/media/cec/cec-common.yaml
4720 F:      Documentation/driver-api/media/cec-core.rst
4721 F:      Documentation/userspace-api/media/cec
4722 F:      drivers/media/cec/
4723 F:      drivers/media/rc/keymaps/rc-cec.c
4724 F:      include/media/cec-notifier.h
4725 F:      include/media/cec.h
4726 F:      include/uapi/linux/cec-funcs.h
4727 F:      include/uapi/linux/cec.h
4728
4729 CEC GPIO DRIVER
4730 M:      Hans Verkuil <[email protected]>
4731 L:      [email protected]
4732 S:      Supported
4733 W:      http://linuxtv.org
4734 T:      git git://linuxtv.org/media_tree.git
4735 F:      Documentation/devicetree/bindings/media/cec/cec-gpio.yaml
4736 F:      drivers/media/cec/platform/cec-gpio/
4737
4738 CELL BROADBAND ENGINE ARCHITECTURE
4739 M:      Arnd Bergmann <[email protected]>
4740 L:      [email protected]
4741 S:      Supported
4742 W:      http://www.ibm.com/developerworks/power/cell/
4743 F:      arch/powerpc/include/asm/cell*.h
4744 F:      arch/powerpc/include/asm/spu*.h
4745 F:      arch/powerpc/include/uapi/asm/spu*.h
4746 F:      arch/powerpc/platforms/cell/
4747
4748 CELLWISE CW2015 BATTERY DRIVER
4749 M:      Tobias Schrammm <[email protected]>
4750 S:      Maintained
4751 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4752 F:      drivers/power/supply/cw2015_battery.c
4753
4754 CEPH COMMON CODE (LIBCEPH)
4755 M:      Ilya Dryomov <[email protected]>
4756 M:      Xiubo Li <[email protected]>
4757 R:      Jeff Layton <[email protected]>
4758 L:      [email protected]
4759 S:      Supported
4760 W:      http://ceph.com/
4761 T:      git https://github.com/ceph/ceph-client.git
4762 F:      include/linux/ceph/
4763 F:      include/linux/crush/
4764 F:      net/ceph/
4765
4766 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4767 M:      Xiubo Li <[email protected]>
4768 M:      Ilya Dryomov <[email protected]>
4769 R:      Jeff Layton <[email protected]>
4770 L:      [email protected]
4771 S:      Supported
4772 W:      http://ceph.com/
4773 T:      git https://github.com/ceph/ceph-client.git
4774 F:      Documentation/filesystems/ceph.rst
4775 F:      fs/ceph/
4776
4777 CERTIFICATE HANDLING
4778 M:      David Howells <[email protected]>
4779 M:      David Woodhouse <[email protected]>
4780 L:      [email protected]
4781 S:      Maintained
4782 F:      Documentation/admin-guide/module-signing.rst
4783 F:      certs/
4784 F:      scripts/sign-file.c
4785 F:      tools/certs/
4786
4787 CFAG12864B LCD DRIVER
4788 M:      Miguel Ojeda <[email protected]>
4789 S:      Maintained
4790 F:      drivers/auxdisplay/cfag12864b.c
4791 F:      include/linux/cfag12864b.h
4792
4793 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4794 M:      Miguel Ojeda <[email protected]>
4795 S:      Maintained
4796 F:      drivers/auxdisplay/cfag12864bfb.c
4797 F:      include/linux/cfag12864b.h
4798
4799 CHAR and MISC DRIVERS
4800 M:      Arnd Bergmann <[email protected]>
4801 M:      Greg Kroah-Hartman <[email protected]>
4802 S:      Supported
4803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4804 F:      drivers/char/
4805 F:      drivers/misc/
4806 F:      include/linux/miscdevice.h
4807 X:      drivers/char/agp/
4808 X:      drivers/char/hw_random/
4809 X:      drivers/char/ipmi/
4810 X:      drivers/char/random.c
4811 X:      drivers/char/tpm/
4812
4813 CHECKPATCH
4814 M:      Andy Whitcroft <[email protected]>
4815 M:      Joe Perches <[email protected]>
4816 R:      Dwaipayan Ray <[email protected]>
4817 R:      Lukas Bulwahn <[email protected]>
4818 S:      Maintained
4819 F:      scripts/checkpatch.pl
4820
4821 CHECKPATCH DOCUMENTATION
4822 M:      Dwaipayan Ray <[email protected]>
4823 M:      Lukas Bulwahn <[email protected]>
4824 R:      Joe Perches <[email protected]>
4825 S:      Maintained
4826 F:      Documentation/dev-tools/checkpatch.rst
4827
4828 CHINESE DOCUMENTATION
4829 M:      Alex Shi <[email protected]>
4830 M:      Yanteng Si <[email protected]>
4831 S:      Maintained
4832 F:      Documentation/translations/zh_CN/
4833
4834 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4835 M:      Peter Chen <[email protected]>
4836 L:      [email protected]
4837 S:      Maintained
4838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4839 F:      drivers/usb/chipidea/
4840
4841 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4842 M:      Hans de Goede <[email protected]>
4843 L:      [email protected]
4844 S:      Maintained
4845 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4846 F:      drivers/input/touchscreen/chipone_icn8318.c
4847
4848 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4849 M:      Hans de Goede <[email protected]>
4850 L:      [email protected]
4851 S:      Maintained
4852 F:      drivers/input/touchscreen/chipone_icn8505.c
4853
4854 CHROME HARDWARE PLATFORM SUPPORT
4855 M:      Benson Leung <[email protected]>
4856 L:      [email protected]
4857 S:      Maintained
4858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4859 F:      drivers/platform/chrome/
4860
4861 CHROMEOS EC CODEC DRIVER
4862 M:      Cheng-Yi Chiang <[email protected]>
4863 M:      Tzung-Bi Shih <[email protected]>
4864 R:      Guenter Roeck <[email protected]>
4865 L:      [email protected]
4866 S:      Maintained
4867 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4868 F:      sound/soc/codecs/cros_ec_codec.*
4869
4870 CHROMEOS EC UART DRIVER
4871 M:      Bhanu Prakash Maiya <[email protected]>
4872 R:      Benson Leung <[email protected]>
4873 R:      Tzung-Bi Shih <[email protected]>
4874 S:      Maintained
4875 F:      drivers/platform/chrome/cros_ec_uart.c
4876
4877 CHROMEOS EC SUBDRIVERS
4878 M:      Benson Leung <[email protected]>
4879 R:      Guenter Roeck <[email protected]>
4880 L:      [email protected]
4881 S:      Maintained
4882 F:      drivers/power/supply/cros_usbpd-charger.c
4883 N:      cros_ec
4884 N:      cros-ec
4885
4886 CHROMEOS EC USB TYPE-C DRIVER
4887 M:      Prashant Malani <[email protected]>
4888 L:      [email protected]
4889 S:      Maintained
4890 F:      drivers/platform/chrome/cros_ec_typec.*
4891 F:      drivers/platform/chrome/cros_typec_switch.c
4892 F:      drivers/platform/chrome/cros_typec_vdm.*
4893
4894 CHROMEOS EC USB PD NOTIFY DRIVER
4895 M:      Prashant Malani <[email protected]>
4896 L:      [email protected]
4897 S:      Maintained
4898 F:      drivers/platform/chrome/cros_usbpd_notify.c
4899 F:      include/linux/platform_data/cros_usbpd_notify.h
4900
4901 CHROMEOS HPS DRIVER
4902 M:      Dan Callaghan <[email protected]>
4903 R:      Sami Kyöstilä <[email protected]>
4904 S:      Maintained
4905 F:      drivers/platform/chrome/cros_hps_i2c.c
4906
4907 CHRONTEL CH7322 CEC DRIVER
4908 M:      Joe Tessler <[email protected]>
4909 L:      [email protected]
4910 S:      Maintained
4911 T:      git git://linuxtv.org/media_tree.git
4912 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4913 F:      drivers/media/cec/i2c/ch7322.c
4914
4915 CIRRUS LOGIC AUDIO CODEC DRIVERS
4916 M:      James Schulman <[email protected]>
4917 M:      David Rhodes <[email protected]>
4918 M:      Lucas Tanure <[email protected]>
4919 M:      Richard Fitzgerald <[email protected]>
4920 L:      [email protected] (moderated for non-subscribers)
4921 L:      [email protected]
4922 S:      Maintained
4923 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4924 F:      include/dt-bindings/sound/cs*
4925 F:      sound/pci/hda/cs*
4926 F:      sound/pci/hda/hda_cs_dsp_ctl.*
4927 F:      sound/soc/codecs/cs*
4928
4929 CIRRUS LOGIC DSP FIRMWARE DRIVER
4930 M:      Simon Trimmer <[email protected]>
4931 M:      Charles Keepax <[email protected]>
4932 M:      Richard Fitzgerald <[email protected]>
4933 L:      [email protected]
4934 S:      Supported
4935 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4936 T:      git https://github.com/CirrusLogic/linux-drivers.git
4937 F:      drivers/firmware/cirrus/*
4938 F:      include/linux/firmware/cirrus/*
4939
4940 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4941 M:      Hartley Sweeten <[email protected]>
4942 L:      [email protected]
4943 S:      Maintained
4944 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4945
4946 CIRRUS LOGIC LOCHNAGAR DRIVER
4947 M:      Charles Keepax <[email protected]>
4948 M:      Richard Fitzgerald <[email protected]>
4949 L:      [email protected]
4950 S:      Supported
4951 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4952 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4953 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4954 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4955 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4956 F:      Documentation/hwmon/lochnagar.rst
4957 F:      drivers/clk/clk-lochnagar.c
4958 F:      drivers/hwmon/lochnagar-hwmon.c
4959 F:      drivers/mfd/lochnagar-i2c.c
4960 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4961 F:      drivers/regulator/lochnagar-regulator.c
4962 F:      include/dt-bindings/clock/lochnagar.h
4963 F:      include/dt-bindings/pinctrl/lochnagar.h
4964 F:      include/linux/mfd/lochnagar*
4965 F:      sound/soc/codecs/lochnagar-sc.c
4966
4967 CIRRUS LOGIC MADERA CODEC DRIVERS
4968 M:      Charles Keepax <[email protected]>
4969 M:      Richard Fitzgerald <[email protected]>
4970 L:      [email protected] (moderated for non-subscribers)
4971 L:      [email protected]
4972 S:      Supported
4973 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4974 T:      git https://github.com/CirrusLogic/linux-drivers.git
4975 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4976 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4977 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4978 F:      drivers/gpio/gpio-madera*
4979 F:      drivers/irqchip/irq-madera*
4980 F:      drivers/mfd/cs47l*
4981 F:      drivers/mfd/madera*
4982 F:      drivers/pinctrl/cirrus/*
4983 F:      include/dt-bindings/sound/madera*
4984 F:      include/linux/irqchip/irq-madera*
4985 F:      include/linux/mfd/madera/*
4986 F:      include/sound/madera*
4987 F:      sound/soc/codecs/cs47l*
4988 F:      sound/soc/codecs/madera*
4989
4990 CISCO FCOE HBA DRIVER
4991 M:      Satish Kharat <[email protected]>
4992 M:      Sesidhar Baddela <[email protected]>
4993 M:      Karan Tilak Kumar <[email protected]>
4994 L:      [email protected]
4995 S:      Supported
4996 F:      drivers/scsi/fnic/
4997
4998 CISCO SCSI HBA DRIVER
4999 M:      Karan Tilak Kumar <[email protected]>
5000 M:      Sesidhar Baddela <[email protected]>
5001 L:      [email protected]
5002 S:      Supported
5003 F:      drivers/scsi/snic/
5004
5005 CISCO VIC ETHERNET NIC DRIVER
5006 M:      Christian Benvenuti <[email protected]>
5007 M:      Satish Kharat <[email protected]>
5008 S:      Supported
5009 F:      drivers/net/ethernet/cisco/enic/
5010
5011 CISCO VIC LOW LATENCY NIC DRIVER
5012 M:      Christian Benvenuti <[email protected]>
5013 M:      Nelson Escobar <[email protected]>
5014 S:      Supported
5015 F:      drivers/infiniband/hw/usnic/
5016
5017 CLANG-FORMAT FILE
5018 M:      Miguel Ojeda <[email protected]>
5019 S:      Maintained
5020 F:      .clang-format
5021
5022 CLANG/LLVM BUILD SUPPORT
5023 M:      Nathan Chancellor <[email protected]>
5024 M:      Nick Desaulniers <[email protected]>
5025 R:      Tom Rix <[email protected]>
5026 L:      [email protected]
5027 S:      Supported
5028 W:      https://clangbuiltlinux.github.io/
5029 B:      https://github.com/ClangBuiltLinux/linux/issues
5030 C:      irc://irc.libera.chat/clangbuiltlinux
5031 F:      Documentation/kbuild/llvm.rst
5032 F:      include/linux/compiler-clang.h
5033 F:      scripts/Makefile.clang
5034 F:      scripts/clang-tools/
5035 K:      \b(?i:clang|llvm)\b
5036
5037 CLANG CONTROL FLOW INTEGRITY SUPPORT
5038 M:      Sami Tolvanen <[email protected]>
5039 M:      Kees Cook <[email protected]>
5040 R:      Nathan Chancellor <[email protected]>
5041 R:      Nick Desaulniers <[email protected]>
5042 L:      [email protected]
5043 S:      Supported
5044 B:      https://github.com/ClangBuiltLinux/linux/issues
5045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5046 F:      include/linux/cfi.h
5047 F:      kernel/cfi.c
5048
5049 CLK API
5050 M:      Russell King <[email protected]>
5051 L:      [email protected]
5052 S:      Maintained
5053 F:      include/linux/clk.h
5054
5055 CLOCKSOURCE, CLOCKEVENT DRIVERS
5056 M:      Daniel Lezcano <[email protected]>
5057 M:      Thomas Gleixner <[email protected]>
5058 L:      [email protected]
5059 S:      Supported
5060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5061 F:      Documentation/devicetree/bindings/timer/
5062 F:      drivers/clocksource/
5063
5064 CMPC ACPI DRIVER
5065 M:      Thadeu Lima de Souza Cascardo <[email protected]>
5066 M:      Daniel Oliveira Nascimento <[email protected]>
5067 L:      [email protected]
5068 S:      Supported
5069 F:      drivers/platform/x86/classmate-laptop.c
5070
5071 COBALT MEDIA DRIVER
5072 M:      Hans Verkuil <[email protected]>
5073 L:      [email protected]
5074 S:      Supported
5075 W:      https://linuxtv.org
5076 T:      git git://linuxtv.org/media_tree.git
5077 F:      drivers/media/pci/cobalt/
5078
5079 COCCINELLE/Semantic Patches (SmPL)
5080 M:      Julia Lawall <[email protected]>
5081 M:      Nicolas Palix <[email protected]>
5082 L:      [email protected] (moderated for non-subscribers)
5083 S:      Supported
5084 W:      https://coccinelle.gitlabpages.inria.fr/website/
5085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5086 F:      Documentation/dev-tools/coccinelle.rst
5087 F:      scripts/coccicheck
5088 F:      scripts/coccinelle/
5089
5090 CODA FILE SYSTEM
5091 M:      Jan Harkes <[email protected]>
5092 M:      [email protected]
5093 L:      [email protected]
5094 S:      Maintained
5095 W:      http://www.coda.cs.cmu.edu/
5096 F:      Documentation/filesystems/coda.rst
5097 F:      fs/coda/
5098 F:      include/linux/coda*.h
5099 F:      include/uapi/linux/coda*.h
5100
5101 CODA V4L2 MEM2MEM DRIVER
5102 M:      Philipp Zabel <[email protected]>
5103 L:      [email protected]
5104 S:      Maintained
5105 F:      Documentation/devicetree/bindings/media/coda.yaml
5106 F:      drivers/media/platform/chips-media/
5107
5108 CODE OF CONDUCT
5109 M:      Greg Kroah-Hartman <[email protected]>
5110 S:      Supported
5111 F:      Documentation/process/code-of-conduct-interpretation.rst
5112 F:      Documentation/process/code-of-conduct.rst
5113
5114 COMEDI DRIVERS
5115 M:      Ian Abbott <[email protected]>
5116 M:      H Hartley Sweeten <[email protected]>
5117 S:      Odd Fixes
5118 F:      drivers/comedi/
5119 F:      include/linux/comedi/
5120 F:      include/uapi/linux/comedi.h
5121
5122 COMMON CLK FRAMEWORK
5123 M:      Michael Turquette <[email protected]>
5124 M:      Stephen Boyd <[email protected]>
5125 L:      [email protected]
5126 S:      Maintained
5127 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5129 F:      Documentation/devicetree/bindings/clock/
5130 F:      drivers/clk/
5131 F:      include/dt-bindings/clock/
5132 F:      include/linux/clk-pr*
5133 F:      include/linux/clk/
5134 F:      include/linux/of_clk.h
5135 X:      drivers/clk/clkdev.c
5136
5137 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5138 M:      Steve French <[email protected]>
5139 R:      Paulo Alcantara <[email protected]> (DFS, global name space)
5140 R:      Ronnie Sahlberg <[email protected]> (directory leases, sparse files)
5141 R:      Shyam Prasad N <[email protected]> (multichannel)
5142 R:      Tom Talpey <[email protected]> (RDMA, smbdirect)
5143 L:      [email protected]
5144 L:      [email protected] (moderated for non-subscribers)
5145 S:      Supported
5146 W:      https://wiki.samba.org/index.php/LinuxCIFS
5147 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5148 F:      Documentation/admin-guide/cifs/
5149 F:      fs/cifs/
5150 F:      fs/smbfs_common/
5151 F:      include/uapi/linux/cifs
5152
5153 COMPACTPCI HOTPLUG CORE
5154 M:      Scott Murray <[email protected]>
5155 L:      [email protected]
5156 S:      Maintained
5157 F:      drivers/pci/hotplug/cpci_hotplug*
5158
5159 COMPACTPCI HOTPLUG GENERIC DRIVER
5160 M:      Scott Murray <[email protected]>
5161 L:      [email protected]
5162 S:      Maintained
5163 F:      drivers/pci/hotplug/cpcihp_generic.c
5164
5165 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5166 M:      Scott Murray <[email protected]>
5167 L:      [email protected]
5168 S:      Maintained
5169 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5170
5171 COMPAL LAPTOP SUPPORT
5172 M:      Cezary Jackiewicz <[email protected]>
5173 L:      [email protected]
5174 S:      Maintained
5175 F:      drivers/platform/x86/compal-laptop.c
5176
5177 COMPILER ATTRIBUTES
5178 M:      Miguel Ojeda <[email protected]>
5179 R:      Nick Desaulniers <[email protected]>
5180 S:      Maintained
5181 F:      include/linux/compiler_attributes.h
5182
5183 COMPUTE EXPRESS LINK (CXL)
5184 M:      Alison Schofield <[email protected]>
5185 M:      Vishal Verma <[email protected]>
5186 M:      Ira Weiny <[email protected]>
5187 M:      Ben Widawsky <[email protected]>
5188 M:      Dan Williams <[email protected]>
5189 L:      [email protected]
5190 S:      Maintained
5191 F:      drivers/cxl/
5192 F:      include/uapi/linux/cxl_mem.h
5193
5194 CONEXANT ACCESSRUNNER USB DRIVER
5195 L:      [email protected]
5196 S:      Orphan
5197 W:      http://accessrunner.sourceforge.net/
5198 F:      drivers/usb/atm/cxacru.c
5199
5200 CONFIGFS
5201 M:      Joel Becker <[email protected]>
5202 M:      Christoph Hellwig <[email protected]>
5203 S:      Supported
5204 T:      git git://git.infradead.org/users/hch/configfs.git
5205 F:      fs/configfs/
5206 F:      include/linux/configfs.h
5207 F:      samples/configfs/
5208
5209 CONSOLE SUBSYSTEM
5210 M:      Greg Kroah-Hartman <[email protected]>
5211 S:      Supported
5212 F:      drivers/video/console/
5213 F:      include/linux/console*
5214
5215 CONTEXT TRACKING
5216 M:      Frederic Weisbecker <[email protected]>
5217 M:      "Paul E. McKenney" <[email protected]>
5218 S:      Maintained
5219 F:      kernel/context_tracking.c
5220 F:      include/linux/context_tracking*
5221
5222 CONTROL GROUP (CGROUP)
5223 M:      Tejun Heo <[email protected]>
5224 M:      Zefan Li <[email protected]>
5225 M:      Johannes Weiner <[email protected]>
5226 L:      [email protected]
5227 S:      Maintained
5228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5229 F:      Documentation/admin-guide/cgroup-v1/
5230 F:      Documentation/admin-guide/cgroup-v2.rst
5231 F:      include/linux/cgroup*
5232 F:      kernel/cgroup/
5233 F:      tools/testing/selftests/cgroup/
5234
5235 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5236 M:      Tejun Heo <[email protected]>
5237 M:      Josef Bacik <[email protected]>
5238 M:      Jens Axboe <[email protected]>
5239 L:      [email protected]
5240 L:      [email protected]
5241 T:      git git://git.kernel.dk/linux-block
5242 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5243 F:      block/bfq-cgroup.c
5244 F:      block/blk-cgroup.c
5245 F:      block/blk-iocost.c
5246 F:      block/blk-iolatency.c
5247 F:      block/blk-throttle.c
5248 F:      include/linux/blk-cgroup.h
5249
5250 CONTROL GROUP - CPUSET
5251 M:      Waiman Long <[email protected]>
5252 M:      Zefan Li <[email protected]>
5253 L:      [email protected]
5254 S:      Maintained
5255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5256 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5257 F:      include/linux/cpuset.h
5258 F:      kernel/cgroup/cpuset.c
5259
5260 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5261 M:      Johannes Weiner <[email protected]>
5262 M:      Michal Hocko <[email protected]>
5263 M:      Roman Gushchin <[email protected]>
5264 M:      Shakeel Butt <[email protected]>
5265 R:      Muchun Song <[email protected]>
5266 L:      [email protected]
5267 L:      [email protected]
5268 S:      Maintained
5269 F:      mm/memcontrol.c
5270 F:      mm/swap_cgroup.c
5271 F:      tools/testing/selftests/cgroup/memcg_protection.m
5272 F:      tools/testing/selftests/cgroup/test_kmem.c
5273 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5274
5275 CORETEMP HARDWARE MONITORING DRIVER
5276 M:      Fenghua Yu <[email protected]>
5277 L:      [email protected]
5278 S:      Maintained
5279 F:      Documentation/hwmon/coretemp.rst
5280 F:      drivers/hwmon/coretemp.c
5281
5282 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5283 M:      Marius Zachmann <[email protected]>
5284 L:      [email protected]
5285 S:      Maintained
5286 F:      drivers/hwmon/corsair-cpro.c
5287
5288 CORSAIR-PSU HARDWARE MONITOR DRIVER
5289 M:      Wilken Gottwalt <[email protected]>
5290 L:      [email protected]
5291 S:      Maintained
5292 F:      Documentation/hwmon/corsair-psu.rst
5293 F:      drivers/hwmon/corsair-psu.c
5294
5295 COUNTER SUBSYSTEM
5296 M:      William Breathitt Gray <[email protected]>
5297 L:      [email protected]
5298 S:      Maintained
5299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git
5300 F:      Documentation/ABI/testing/sysfs-bus-counter
5301 F:      Documentation/driver-api/generic-counter.rst
5302 F:      drivers/counter/
5303 F:      include/linux/counter.h
5304 F:      include/uapi/linux/counter.h
5305 F:      tools/counter/
5306
5307 CP2615 I2C DRIVER
5308 M:      Bence Csókás <[email protected]>
5309 S:      Maintained
5310 F:      drivers/i2c/busses/i2c-cp2615.c
5311
5312 CPMAC ETHERNET DRIVER
5313 M:      Florian Fainelli <[email protected]>
5314 L:      [email protected]
5315 S:      Maintained
5316 F:      drivers/net/ethernet/ti/cpmac.c
5317
5318 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5319 M:      Viresh Kumar <[email protected]>
5320 M:      Sudeep Holla <[email protected]>
5321 L:      [email protected]
5322 S:      Maintained
5323 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5324 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5325
5326 CPU FREQUENCY SCALING FRAMEWORK
5327 M:      "Rafael J. Wysocki" <[email protected]>
5328 M:      Viresh Kumar <[email protected]>
5329 L:      [email protected]
5330 S:      Maintained
5331 B:      https://bugzilla.kernel.org
5332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5334 F:      Documentation/admin-guide/pm/cpufreq.rst
5335 F:      Documentation/admin-guide/pm/intel_pstate.rst
5336 F:      Documentation/cpu-freq/
5337 F:      Documentation/devicetree/bindings/cpufreq/
5338 F:      drivers/cpufreq/
5339 F:      include/linux/cpufreq.h
5340 F:      include/linux/sched/cpufreq.h
5341 F:      kernel/sched/cpufreq*.c
5342 F:      tools/testing/selftests/cpufreq/
5343
5344 CPU IDLE TIME MANAGEMENT FRAMEWORK
5345 M:      "Rafael J. Wysocki" <[email protected]>
5346 M:      Daniel Lezcano <[email protected]>
5347 L:      [email protected]
5348 S:      Maintained
5349 B:      https://bugzilla.kernel.org
5350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5351 F:      Documentation/admin-guide/pm/cpuidle.rst
5352 F:      Documentation/driver-api/pm/cpuidle.rst
5353 F:      drivers/cpuidle/
5354 F:      include/linux/cpuidle.h
5355
5356 CPU POWER MONITORING SUBSYSTEM
5357 M:      Thomas Renninger <[email protected]>
5358 M:      Shuah Khan <[email protected]>
5359 M:      Shuah Khan <[email protected]>
5360 L:      [email protected]
5361 S:      Maintained
5362 F:      tools/power/cpupower/
5363
5364 CPUID/MSR DRIVER
5365 M:      "H. Peter Anvin" <[email protected]>
5366 S:      Maintained
5367 F:      arch/x86/kernel/cpuid.c
5368 F:      arch/x86/kernel/msr.c
5369
5370 CPUIDLE DRIVER - ARM BIG LITTLE
5371 M:      Lorenzo Pieralisi <[email protected]>
5372 M:      Daniel Lezcano <[email protected]>
5373 L:      [email protected]
5374 L:      [email protected] (moderated for non-subscribers)
5375 S:      Maintained
5376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5377 F:      drivers/cpuidle/cpuidle-big_little.c
5378
5379 CPUIDLE DRIVER - ARM EXYNOS
5380 M:      Daniel Lezcano <[email protected]>
5381 R:      Krzysztof Kozlowski <[email protected]>
5382 M:      Kukjin Kim <[email protected]>
5383 L:      [email protected]
5384 L:      [email protected]
5385 S:      Supported
5386 F:      arch/arm/mach-exynos/pm.c
5387 F:      drivers/cpuidle/cpuidle-exynos.c
5388 F:      include/linux/platform_data/cpuidle-exynos.h
5389
5390 CPUIDLE DRIVER - ARM PSCI
5391 M:      Lorenzo Pieralisi <[email protected]>
5392 M:      Sudeep Holla <[email protected]>
5393 L:      [email protected]
5394 L:      [email protected] (moderated for non-subscribers)
5395 S:      Supported
5396 F:      drivers/cpuidle/cpuidle-psci.c
5397
5398 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5399 M:      Ulf Hansson <[email protected]>
5400 L:      [email protected]
5401 L:      [email protected] (moderated for non-subscribers)
5402 S:      Supported
5403 F:      drivers/cpuidle/cpuidle-psci.h
5404 F:      drivers/cpuidle/cpuidle-psci-domain.c
5405
5406 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5407 M:      Ulf Hansson <[email protected]>
5408 L:      [email protected]
5409 S:      Supported
5410 F:      drivers/cpuidle/dt_idle_genpd.c
5411 F:      drivers/cpuidle/dt_idle_genpd.h
5412
5413 CPUIDLE DRIVER - RISC-V SBI
5414 M:      Anup Patel <[email protected]>
5415 L:      [email protected]
5416 L:      [email protected]
5417 S:      Maintained
5418 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5419
5420 CRAMFS FILESYSTEM
5421 M:      Nicolas Pitre <[email protected]>
5422 S:      Maintained
5423 F:      Documentation/filesystems/cramfs.rst
5424 F:      fs/cramfs/
5425
5426 CREATIVE SB0540
5427 M:      Bastien Nocera <[email protected]>
5428 L:      [email protected]
5429 S:      Maintained
5430 F:      drivers/hid/hid-creative-sb0540.c
5431
5432 CRYPTO API
5433 M:      Herbert Xu <[email protected]>
5434 M:      "David S. Miller" <[email protected]>
5435 L:      [email protected]
5436 S:      Maintained
5437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5439 F:      Documentation/crypto/
5440 F:      Documentation/devicetree/bindings/crypto/
5441 F:      arch/*/crypto/
5442 F:      crypto/
5443 F:      drivers/crypto/
5444 F:      include/crypto/
5445 F:      include/linux/crypto*
5446 F:      lib/crypto/
5447
5448 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5449 M:      Neil Horman <[email protected]>
5450 L:      [email protected]
5451 S:      Maintained
5452 F:      crypto/ansi_cprng.c
5453 F:      crypto/rng.c
5454
5455 CS3308 MEDIA DRIVER
5456 M:      Hans Verkuil <[email protected]>
5457 L:      [email protected]
5458 S:      Odd Fixes
5459 W:      http://linuxtv.org
5460 T:      git git://linuxtv.org/media_tree.git
5461 F:      drivers/media/i2c/cs3308.c
5462
5463 CS5535 Audio ALSA driver
5464 M:      Jaya Kumar <[email protected]>
5465 S:      Maintained
5466 F:      sound/pci/cs5535audio/
5467
5468 CTU CAN FD DRIVER
5469 M:      Pavel Pisa <[email protected]>
5470 M:      Ondrej Ille <[email protected]>
5471 L:      [email protected]
5472 S:      Maintained
5473 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5474 F:      drivers/net/can/ctucanfd/
5475
5476 CW1200 WLAN driver
5477 M:      Solomon Peachy <[email protected]>
5478 S:      Maintained
5479 F:      drivers/net/wireless/st/cw1200/
5480
5481 CX18 VIDEO4LINUX DRIVER
5482 M:      Andy Walls <[email protected]>
5483 L:      [email protected]
5484 S:      Maintained
5485 W:      https://linuxtv.org
5486 T:      git git://linuxtv.org/media_tree.git
5487 F:      drivers/media/pci/cx18/
5488 F:      include/uapi/linux/ivtv*
5489
5490 CX2341X MPEG ENCODER HELPER MODULE
5491 M:      Hans Verkuil <[email protected]>
5492 L:      [email protected]
5493 S:      Maintained
5494 W:      https://linuxtv.org
5495 T:      git git://linuxtv.org/media_tree.git
5496 F:      drivers/media/common/cx2341x*
5497 F:      include/media/drv-intf/cx2341x.h
5498
5499 CX24120 MEDIA DRIVER
5500 M:      Jemma Denson <[email protected]>
5501 M:      Patrick Boettcher <[email protected]>
5502 L:      [email protected]
5503 S:      Maintained
5504 W:      https://linuxtv.org
5505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5506 F:      drivers/media/dvb-frontends/cx24120*
5507
5508 CX88 VIDEO4LINUX DRIVER
5509 M:      Mauro Carvalho Chehab <[email protected]>
5510 L:      [email protected]
5511 S:      Odd fixes
5512 W:      https://linuxtv.org
5513 T:      git git://linuxtv.org/media_tree.git
5514 F:      Documentation/driver-api/media/drivers/cx88*
5515 F:      drivers/media/pci/cx88/
5516
5517 CXD2820R MEDIA DRIVER
5518 M:      Antti Palosaari <[email protected]>
5519 L:      [email protected]
5520 S:      Maintained
5521 W:      https://linuxtv.org
5522 W:      http://palosaari.fi/linux/
5523 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5524 T:      git git://linuxtv.org/anttip/media_tree.git
5525 F:      drivers/media/dvb-frontends/cxd2820r*
5526
5527 CXGB3 ETHERNET DRIVER (CXGB3)
5528 M:      Raju Rangoju <[email protected]>
5529 L:      [email protected]
5530 S:      Supported
5531 W:      http://www.chelsio.com
5532 F:      drivers/net/ethernet/chelsio/cxgb3/
5533
5534 CXGB3 ISCSI DRIVER (CXGB3I)
5535 M:      Varun Prakash <[email protected]>
5536 L:      [email protected]
5537 S:      Supported
5538 W:      http://www.chelsio.com
5539 F:      drivers/scsi/cxgbi/cxgb3i
5540
5541 CXGB4 CRYPTO DRIVER (chcr)
5542 M:      Ayush Sawal <[email protected]>
5543 L:      [email protected]
5544 S:      Supported
5545 W:      http://www.chelsio.com
5546 F:      drivers/crypto/chelsio
5547
5548 CXGB4 INLINE CRYPTO DRIVER
5549 M:      Ayush Sawal <[email protected]>
5550 L:      [email protected]
5551 S:      Supported
5552 W:      http://www.chelsio.com
5553 F:      drivers/net/ethernet/chelsio/inline_crypto/
5554
5555 CXGB4 ETHERNET DRIVER (CXGB4)
5556 M:      Raju Rangoju <[email protected]>
5557 L:      [email protected]
5558 S:      Supported
5559 W:      http://www.chelsio.com
5560 F:      drivers/net/ethernet/chelsio/cxgb4/
5561
5562 CXGB4 ISCSI DRIVER (CXGB4I)
5563 M:      Varun Prakash <[email protected]>
5564 L:      [email protected]
5565 S:      Supported
5566 W:      http://www.chelsio.com
5567 F:      drivers/scsi/cxgbi/cxgb4i
5568
5569 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5570 M:      Potnuri Bharat Teja <[email protected]>
5571 L:      [email protected]
5572 S:      Supported
5573 W:      http://www.openfabrics.org
5574 F:      drivers/infiniband/hw/cxgb4/
5575 F:      include/uapi/rdma/cxgb4-abi.h
5576
5577 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5578 M:      Raju Rangoju <[email protected]>
5579 L:      [email protected]
5580 S:      Supported
5581 W:      http://www.chelsio.com
5582 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5583
5584 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5585 M:      Frederic Barrat <[email protected]>
5586 M:      Andrew Donnellan <[email protected]>
5587 L:      [email protected]
5588 S:      Supported
5589 F:      Documentation/ABI/testing/sysfs-class-cxl
5590 F:      Documentation/powerpc/cxl.rst
5591 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5592 F:      drivers/misc/cxl/
5593 F:      include/misc/cxl*
5594 F:      include/uapi/misc/cxl.h
5595
5596 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5597 M:      Manoj N. Kumar <[email protected]>
5598 M:      Matthew R. Ochs <[email protected]>
5599 M:      Uma Krishnan <[email protected]>
5600 L:      [email protected]
5601 S:      Supported
5602 F:      Documentation/powerpc/cxlflash.rst
5603 F:      drivers/scsi/cxlflash/
5604 F:      include/uapi/scsi/cxlflash_ioctl.h
5605
5606 CYBERPRO FB DRIVER
5607 M:      Russell King <[email protected]>
5608 L:      [email protected] (moderated for non-subscribers)
5609 S:      Maintained
5610 W:      http://www.armlinux.org.uk/
5611 F:      drivers/video/fbdev/cyber2000fb.*
5612
5613 CYCLADES PC300 DRIVER
5614 S:      Orphan
5615 F:      drivers/net/wan/pc300*
5616
5617 CYPRESS_FIRMWARE MEDIA DRIVER
5618 M:      Antti Palosaari <[email protected]>
5619 L:      [email protected]
5620 S:      Maintained
5621 W:      https://linuxtv.org
5622 W:      http://palosaari.fi/linux/
5623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5624 T:      git git://linuxtv.org/anttip/media_tree.git
5625 F:      drivers/media/common/cypress_firmware*
5626
5627 CYPRESS CY8C95X0 PINCTRL DRIVER
5628 M:      Patrick Rudolph <[email protected]>
5629 L:      [email protected]
5630 S:      Maintained
5631 F:      drivers/pinctrl/pinctrl-cy8c95x0.c
5632
5633 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5634 M:      Linus Walleij <[email protected]>
5635 L:      [email protected]
5636 S:      Maintained
5637 F:      drivers/input/touchscreen/cy8ctma140.c
5638
5639 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5640 M:      Yassine Oudjana <[email protected]>
5641 L:      [email protected]
5642 S:      Maintained
5643 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5644 F:      drivers/input/keyboard/cypress-sf.c
5645
5646 CYTTSP TOUCHSCREEN DRIVER
5647 M:      Linus Walleij <[email protected]>
5648 L:      [email protected]
5649 S:      Maintained
5650 F:      drivers/input/touchscreen/cyttsp*
5651
5652 D-LINK DIR-685 TOUCHKEYS DRIVER
5653 M:      Linus Walleij <[email protected]>
5654 L:      [email protected]
5655 S:      Supported
5656 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5657
5658 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5659 M:      Joshua Kinard <[email protected]>
5660 S:      Maintained
5661 F:      drivers/rtc/rtc-ds1685.c
5662 F:      include/linux/rtc/ds1685.h
5663
5664 DAMA SLAVE for AX.25
5665 M:      Joerg Reuter <[email protected]>
5666 L:      [email protected]
5667 S:      Maintained
5668 W:      http://yaina.de/jreuter/
5669 W:      http://www.qsl.net/dl1bke/
5670 F:      net/ax25/af_ax25.c
5671 F:      net/ax25/ax25_dev.c
5672 F:      net/ax25/ax25_ds_*
5673 F:      net/ax25/ax25_in.c
5674 F:      net/ax25/ax25_out.c
5675 F:      net/ax25/ax25_timer.c
5676 F:      net/ax25/sysctl_net_ax25.c
5677
5678 DATA ACCESS MONITOR
5679 M:      SeongJae Park <[email protected]>
5680 L:      [email protected]
5681 L:      [email protected]
5682 S:      Maintained
5683 W:      https://damonitor.github.io
5684 P:      Documentation/mm/damon/maintainer-profile.rst
5685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
5686 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
5687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sj/linux.git damon/next
5688 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5689 F:      Documentation/admin-guide/mm/damon/
5690 F:      Documentation/mm/damon/
5691 F:      include/linux/damon.h
5692 F:      include/trace/events/damon.h
5693 F:      mm/damon/
5694 F:      tools/testing/selftests/damon/
5695
5696 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5697 L:      [email protected]
5698 S:      Orphan
5699 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5700 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5701
5702 DC390/AM53C974 SCSI driver
5703 M:      Hannes Reinecke <[email protected]>
5704 L:      [email protected]
5705 S:      Maintained
5706 F:      drivers/scsi/am53c974.c
5707
5708 DC395x SCSI driver
5709 M:      Oliver Neukum <[email protected]>
5710 M:      Ali Akcaagac <[email protected]>
5711 M:      Jamie Lenehan <[email protected]>
5712 L:      [email protected]
5713 S:      Maintained
5714 W:      http://twibble.org/dist/dc395x/
5715 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5716 F:      Documentation/scsi/dc395x.rst
5717 F:      drivers/scsi/dc395x.*
5718
5719 DCCP PROTOCOL
5720 L:      [email protected]
5721 S:      Orphan
5722 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5723 F:      include/linux/dccp.h
5724 F:      include/linux/tfrc.h
5725 F:      include/uapi/linux/dccp.h
5726 F:      net/dccp/
5727
5728 DECSTATION PLATFORM SUPPORT
5729 M:      "Maciej W. Rozycki" <[email protected]>
5730 L:      [email protected]
5731 S:      Maintained
5732 W:      http://www.linux-mips.org/wiki/DECstation
5733 F:      arch/mips/dec/
5734 F:      arch/mips/include/asm/dec/
5735 F:      arch/mips/include/asm/mach-dec/
5736
5737 DEFXX FDDI NETWORK DRIVER
5738 M:      "Maciej W. Rozycki" <[email protected]>
5739 S:      Maintained
5740 F:      drivers/net/fddi/defxx.*
5741
5742 DEFZA FDDI NETWORK DRIVER
5743 M:      "Maciej W. Rozycki" <[email protected]>
5744 S:      Maintained
5745 F:      drivers/net/fddi/defza.*
5746
5747 DEINTERLACE DRIVERS FOR ALLWINNER H3
5748 M:      Jernej Skrabec <[email protected]>
5749 L:      [email protected]
5750 S:      Maintained
5751 T:      git git://linuxtv.org/media_tree.git
5752 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5753 F:      drivers/media/platform/sunxi/sun8i-di/
5754
5755 DELL LAPTOP DRIVER
5756 M:      Matthew Garrett <[email protected]>
5757 M:      Pali Rohár <[email protected]>
5758 L:      [email protected]
5759 S:      Maintained
5760 F:      drivers/platform/x86/dell/dell-laptop.c
5761
5762 DELL LAPTOP FREEFALL DRIVER
5763 M:      Pali Rohár <[email protected]>
5764 S:      Maintained
5765 F:      drivers/platform/x86/dell/dell-smo8800.c
5766
5767 DELL LAPTOP RBTN DRIVER
5768 M:      Pali Rohár <[email protected]>
5769 S:      Maintained
5770 F:      drivers/platform/x86/dell/dell-rbtn.*
5771
5772 DELL LAPTOP SMM DRIVER
5773 M:      Pali Rohár <[email protected]>
5774 S:      Maintained
5775 F:      Documentation/ABI/obsolete/procfs-i8k
5776 F:      drivers/hwmon/dell-smm-hwmon.c
5777 F:      include/uapi/linux/i8k.h
5778
5779 DELL REMOTE BIOS UPDATE DRIVER
5780 M:      Stuart Hayes <[email protected]>
5781 L:      [email protected]
5782 S:      Maintained
5783 F:      drivers/platform/x86/dell/dell_rbu.c
5784
5785 DELL SMBIOS DRIVER
5786 M:      Pali Rohár <[email protected]>
5787 L:      [email protected]
5788 L:      [email protected]
5789 S:      Maintained
5790 F:      drivers/platform/x86/dell/dell-smbios.*
5791
5792 DELL SMBIOS SMM DRIVER
5793 L:      [email protected]
5794 L:      [email protected]
5795 S:      Maintained
5796 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5797
5798 DELL SMBIOS WMI DRIVER
5799 L:      [email protected]
5800 L:      [email protected]
5801 S:      Maintained
5802 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5803 F:      tools/wmi/dell-smbios-example.c
5804
5805 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5806 M:      Stuart Hayes <[email protected]>
5807 L:      [email protected]
5808 S:      Maintained
5809 F:      Documentation/driver-api/dcdbas.rst
5810 F:      drivers/platform/x86/dell/dcdbas.*
5811
5812 DELL WMI DESCRIPTOR DRIVER
5813 L:      [email protected]
5814 S:      Maintained
5815 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5816
5817 DELL WMI DDV DRIVER
5818 M:      Armin Wolf <[email protected]>
5819 S:      Maintained
5820 F:      Documentation/ABI/testing/debugfs-dell-wmi-ddv
5821 F:      Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
5822 F:      drivers/platform/x86/dell/dell-wmi-ddv.c
5823
5824 DELL WMI SYSMAN DRIVER
5825 M:      Prasanth Ksr <[email protected]>
5826 L:      [email protected]
5827 L:      [email protected]
5828 S:      Maintained
5829 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5830 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5831
5832 DELL WMI NOTIFICATIONS DRIVER
5833 M:      Matthew Garrett <[email protected]>
5834 M:      Pali Rohár <[email protected]>
5835 S:      Maintained
5836 F:      drivers/platform/x86/dell/dell-wmi-base.c
5837
5838 DELL WMI HARDWARE PRIVACY SUPPORT
5839 M:      Perry Yuan <[email protected]>
5840 L:      [email protected]
5841 L:      [email protected]
5842 S:      Maintained
5843 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5844
5845 DELTA ST MEDIA DRIVER
5846 M:      Hugues Fruchet <[email protected]>
5847 L:      [email protected]
5848 S:      Supported
5849 W:      https://linuxtv.org
5850 T:      git git://linuxtv.org/media_tree.git
5851 F:      drivers/media/platform/st/sti/delta
5852
5853 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5854 M:      Zev Weiss <[email protected]>
5855 L:      [email protected]
5856 S:      Maintained
5857 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5858
5859 DELTA DPS920AB PSU DRIVER
5860 M:      Robert Marko <[email protected]>
5861 L:      [email protected]
5862 S:      Maintained
5863 F:      Documentation/hwmon/dps920ab.rst
5864 F:      drivers/hwmon/pmbus/dps920ab.c
5865
5866 DELTA NETWORKS TN48M CPLD DRIVERS
5867 M:      Robert Marko <[email protected]>
5868 S:      Maintained
5869 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5870 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5871 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5872 F:      drivers/gpio/gpio-tn48m.c
5873 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5874
5875 DENALI NAND DRIVER
5876 L:      [email protected]
5877 S:      Orphan
5878 F:      drivers/mtd/nand/raw/denali*
5879
5880 DESIGNWARE EDMA CORE IP DRIVER
5881 M:      Gustavo Pimentel <[email protected]>
5882 L:      [email protected]
5883 S:      Maintained
5884 F:      drivers/dma/dw-edma/
5885 F:      include/linux/dma/edma.h
5886
5887 DESIGNWARE XDATA IP DRIVER
5888 M:      Gustavo Pimentel <[email protected]>
5889 L:      [email protected]
5890 S:      Maintained
5891 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5892 F:      drivers/misc/dw-xdata-pcie.c
5893
5894 DESIGNWARE USB2 DRD IP DRIVER
5895 M:      Minas Harutyunyan <[email protected]>
5896 L:      [email protected]
5897 S:      Maintained
5898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5899 F:      drivers/usb/dwc2/
5900
5901 DESIGNWARE USB3 DRD IP DRIVER
5902 M:      Thinh Nguyen <[email protected]>
5903 L:      [email protected]
5904 S:      Maintained
5905 F:      drivers/usb/dwc3/
5906
5907 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5908 M:      Andreas Klinger <[email protected]>
5909 L:      [email protected]
5910 S:      Maintained
5911 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5912 F:      drivers/iio/proximity/srf*.c
5913
5914 DEVICE COREDUMP (DEV_COREDUMP)
5915 M:      Johannes Berg <[email protected]>
5916 L:      [email protected]
5917 S:      Maintained
5918 F:      drivers/base/devcoredump.c
5919 F:      include/linux/devcoredump.h
5920
5921 DEVICE DEPENDENCY HELPER SCRIPT
5922 M:      Saravana Kannan <[email protected]>
5923 L:      [email protected]
5924 S:      Maintained
5925 F:      scripts/dev-needs.sh
5926
5927 DEVICE DIRECT ACCESS (DAX)
5928 M:      Dan Williams <[email protected]>
5929 M:      Vishal Verma <[email protected]>
5930 M:      Dave Jiang <[email protected]>
5931 L:      [email protected]
5932 L:      [email protected]
5933 S:      Supported
5934 F:      drivers/dax/
5935
5936 DEVICE FREQUENCY (DEVFREQ)
5937 M:      MyungJoo Ham <[email protected]>
5938 M:      Kyungmin Park <[email protected]>
5939 M:      Chanwoo Choi <[email protected]>
5940 L:      [email protected]
5941 S:      Maintained
5942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5943 F:      Documentation/devicetree/bindings/devfreq/
5944 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5945 F:      drivers/devfreq/
5946 F:      include/linux/devfreq.h
5947 F:      include/trace/events/devfreq.h
5948
5949 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5950 M:      Chanwoo Choi <[email protected]>
5951 L:      [email protected]
5952 S:      Supported
5953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5954 F:      Documentation/devicetree/bindings/devfreq/event/
5955 F:      drivers/devfreq/devfreq-event.c
5956 F:      drivers/devfreq/event/
5957 F:      include/dt-bindings/pmu/exynos_ppmu.h
5958 F:      include/linux/devfreq-event.h
5959
5960 DEVICE RESOURCE MANAGEMENT HELPERS
5961 M:      Hans de Goede <[email protected]>
5962 R:      Matti Vaittinen <[email protected]>
5963 S:      Maintained
5964 F:      include/linux/devm-helpers.h
5965
5966 DEVICE-MAPPER  (LVM)
5967 M:      Alasdair Kergon <[email protected]>
5968 M:      Mike Snitzer <[email protected]>
5969 M:      [email protected]
5970 L:      [email protected]
5971 S:      Maintained
5972 W:      http://sources.redhat.com/dm
5973 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5975 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5976 F:      Documentation/admin-guide/device-mapper/
5977 F:      drivers/md/Kconfig
5978 F:      drivers/md/Makefile
5979 F:      drivers/md/dm*
5980 F:      drivers/md/persistent-data/
5981 F:      include/linux/device-mapper.h
5982 F:      include/linux/dm-*.h
5983 F:      include/uapi/linux/dm-*.h
5984
5985 DEVLINK
5986 M:      Jiri Pirko <[email protected]>
5987 L:      [email protected]
5988 S:      Supported
5989 F:      Documentation/networking/devlink
5990 F:      include/net/devlink.h
5991 F:      include/uapi/linux/devlink.h
5992 F:      net/devlink/
5993
5994 DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD SUPPORT
5995 M:      Christoph Niedermaier <[email protected]>
5996 L:      [email protected]
5997 S:      Maintained
5998 F:      arch/arm/boot/dts/imx6*-dhcom-*
5999 F:      arch/arm/boot/dts/imx6*-dhcor-*
6000
6001 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
6002 M:      Marek Vasut <[email protected]>
6003 L:      [email protected]
6004 S:      Maintained
6005 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
6006 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
6007
6008 DIALOG SEMICONDUCTOR DRIVERS
6009 M:      Support Opensource <[email protected]>
6010 S:      Supported
6011 W:      http://www.dialog-semiconductor.com/products
6012 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
6013 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
6014 F:      Documentation/devicetree/bindings/mfd/da90*.txt
6015 F:      Documentation/devicetree/bindings/mfd/da90*.yaml
6016 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
6017 F:      Documentation/devicetree/bindings/regulator/da92*.txt
6018 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
6019 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
6020 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
6021 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
6022 F:      Documentation/hwmon/da90??.rst
6023 F:      drivers/gpio/gpio-da90??.c
6024 F:      drivers/hwmon/da90??-hwmon.c
6025 F:      drivers/iio/adc/da91??-*.c
6026 F:      drivers/input/misc/da72??.[ch]
6027 F:      drivers/input/misc/da90??_onkey.c
6028 F:      drivers/input/touchscreen/da9052_tsi.c
6029 F:      drivers/leds/leds-da90??.c
6030 F:      drivers/mfd/da903x.c
6031 F:      drivers/mfd/da90??-*.c
6032 F:      drivers/mfd/da91??-*.c
6033 F:      drivers/pinctrl/pinctrl-da90??.c
6034 F:      drivers/power/supply/da9052-battery.c
6035 F:      drivers/power/supply/da91??-*.c
6036 F:      drivers/regulator/da9???-regulator.[ch]
6037 F:      drivers/regulator/slg51000-regulator.[ch]
6038 F:      drivers/rtc/rtc-da90??.c
6039 F:      drivers/thermal/da90??-thermal.c
6040 F:      drivers/video/backlight/da90??_bl.c
6041 F:      drivers/watchdog/da90??_wdt.c
6042 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6043 F:      include/linux/mfd/da903x.h
6044 F:      include/linux/mfd/da9052/
6045 F:      include/linux/mfd/da9055/
6046 F:      include/linux/mfd/da9062/
6047 F:      include/linux/mfd/da9063/
6048 F:      include/linux/mfd/da9150/
6049 F:      include/linux/regulator/da9211.h
6050 F:      include/sound/da[79]*.h
6051 F:      sound/soc/codecs/da[79]*.[ch]
6052
6053 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6054 M:      William Breathitt Gray <[email protected]>
6055 L:      [email protected]
6056 S:      Maintained
6057 F:      drivers/gpio/gpio-gpio-mm.c
6058
6059 DIOLAN U2C-12 I2C DRIVER
6060 M:      Guenter Roeck <[email protected]>
6061 L:      [email protected]
6062 S:      Maintained
6063 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6064
6065 DIRECTORY NOTIFICATION (DNOTIFY)
6066 M:      Jan Kara <[email protected]>
6067 R:      Amir Goldstein <[email protected]>
6068 L:      [email protected]
6069 S:      Maintained
6070 F:      Documentation/filesystems/dnotify.rst
6071 F:      fs/notify/dnotify/
6072 F:      include/linux/dnotify.h
6073
6074 DISK GEOMETRY AND PARTITION HANDLING
6075 M:      Andries Brouwer <[email protected]>
6076 S:      Maintained
6077 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6078 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6079 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6080
6081 DISKQUOTA
6082 M:      Jan Kara <[email protected]>
6083 S:      Maintained
6084 F:      Documentation/filesystems/quota.rst
6085 F:      fs/quota/
6086 F:      include/linux/quota*.h
6087 F:      include/uapi/linux/quota*.h
6088
6089 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6090 M:      Bernie Thompson <[email protected]>
6091 L:      [email protected]
6092 S:      Maintained
6093 W:      http://plugable.com/category/projects/udlfb/
6094 F:      Documentation/fb/udlfb.rst
6095 F:      drivers/video/fbdev/udlfb.c
6096 F:      include/video/udlfb.h
6097
6098 DISTRIBUTED LOCK MANAGER (DLM)
6099 M:      Christine Caulfield <[email protected]>
6100 M:      David Teigland <[email protected]>
6101 L:      [email protected]
6102 S:      Supported
6103 W:      http://sources.redhat.com/cluster/
6104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6105 F:      fs/dlm/
6106
6107 DMA BUFFER SHARING FRAMEWORK
6108 M:      Sumit Semwal <[email protected]>
6109 M:      Christian König <[email protected]>
6110 L:      [email protected]
6111 L:      [email protected]
6112 L:      [email protected] (moderated for non-subscribers)
6113 S:      Maintained
6114 T:      git git://anongit.freedesktop.org/drm/drm-misc
6115 F:      Documentation/driver-api/dma-buf.rst
6116 F:      drivers/dma-buf/
6117 F:      include/linux/*fence.h
6118 F:      include/linux/dma-buf.h
6119 F:      include/linux/dma-resv.h
6120 K:      \bdma_(?:buf|fence|resv)\b
6121
6122 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6123 M:      Vinod Koul <[email protected]>
6124 L:      [email protected]
6125 S:      Maintained
6126 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6128 F:      Documentation/devicetree/bindings/dma/
6129 F:      Documentation/driver-api/dmaengine/
6130 F:      drivers/dma/
6131 F:      include/dt-bindings/dma/
6132 F:      include/linux/dma/
6133 F:      include/linux/dmaengine.h
6134 F:      include/linux/of_dma.h
6135
6136 DMA MAPPING HELPERS
6137 M:      Christoph Hellwig <[email protected]>
6138 M:      Marek Szyprowski <[email protected]>
6139 R:      Robin Murphy <[email protected]>
6140 L:      [email protected]
6141 S:      Supported
6142 W:      http://git.infradead.org/users/hch/dma-mapping.git
6143 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6144 F:      include/asm-generic/dma-mapping.h
6145 F:      include/linux/dma-direct.h
6146 F:      include/linux/dma-mapping.h
6147 F:      include/linux/dma-map-ops.h
6148 F:      include/linux/swiotlb.h
6149 F:      kernel/dma/
6150
6151 DMA MAPPING BENCHMARK
6152 M:      Xiang Chen <[email protected]>
6153 L:      [email protected]
6154 F:      kernel/dma/map_benchmark.c
6155 F:      tools/testing/selftests/dma/
6156
6157 DMA-BUF HEAPS FRAMEWORK
6158 M:      Sumit Semwal <[email protected]>
6159 R:      Benjamin Gaignard <[email protected]>
6160 R:      Liam Mark <[email protected]>
6161 R:      Laura Abbott <[email protected]>
6162 R:      Brian Starkey <[email protected]>
6163 R:      John Stultz <[email protected]>
6164 L:      [email protected]
6165 L:      [email protected]
6166 L:      [email protected] (moderated for non-subscribers)
6167 S:      Maintained
6168 T:      git git://anongit.freedesktop.org/drm/drm-misc
6169 F:      drivers/dma-buf/dma-heap.c
6170 F:      drivers/dma-buf/heaps/*
6171 F:      include/linux/dma-heap.h
6172 F:      include/uapi/linux/dma-heap.h
6173
6174 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6175 M:      Lukasz Luba <[email protected]>
6176 L:      [email protected]
6177 L:      [email protected]
6178 S:      Maintained
6179 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6180 F:      drivers/memory/samsung/exynos5422-dmc.c
6181
6182 DME1737 HARDWARE MONITOR DRIVER
6183 M:      Juerg Haefliger <[email protected]>
6184 L:      [email protected]
6185 S:      Maintained
6186 F:      Documentation/hwmon/dme1737.rst
6187 F:      drivers/hwmon/dme1737.c
6188
6189 DMI/SMBIOS SUPPORT
6190 M:      Jean Delvare <[email protected]>
6191 S:      Maintained
6192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6193 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6194 F:      drivers/firmware/dmi-id.c
6195 F:      drivers/firmware/dmi_scan.c
6196 F:      include/linux/dmi.h
6197
6198 DOCUMENTATION
6199 M:      Jonathan Corbet <[email protected]>
6200 L:      [email protected]
6201 S:      Maintained
6202 P:      Documentation/doc-guide/maintainer-profile.rst
6203 T:      git git://git.lwn.net/linux.git docs-next
6204 F:      Documentation/
6205 F:      scripts/documentation-file-ref-check
6206 F:      scripts/kernel-doc
6207 F:      scripts/sphinx-pre-install
6208 X:      Documentation/ABI/
6209 X:      Documentation/admin-guide/media/
6210 X:      Documentation/devicetree/
6211 X:      Documentation/driver-api/media/
6212 X:      Documentation/firmware-guide/acpi/
6213 X:      Documentation/i2c/
6214 X:      Documentation/power/
6215 X:      Documentation/spi/
6216 X:      Documentation/userspace-api/media/
6217
6218 DOCUMENTATION REPORTING ISSUES
6219 M:      Thorsten Leemhuis <[email protected]>
6220 L:      [email protected]
6221 S:      Maintained
6222 F:      Documentation/admin-guide/quickly-build-trimmed-linux.rst
6223 F:      Documentation/admin-guide/reporting-issues.rst
6224
6225 DOCUMENTATION SCRIPTS
6226 M:      Mauro Carvalho Chehab <[email protected]>
6227 L:      [email protected]
6228 S:      Maintained
6229 F:      Documentation/sphinx/parse-headers.pl
6230 F:      scripts/documentation-file-ref-check
6231 F:      scripts/sphinx-pre-install
6232
6233 DOCUMENTATION/ITALIAN
6234 M:      Federico Vaga <[email protected]>
6235 L:      [email protected]
6236 S:      Maintained
6237 F:      Documentation/translations/it_IT
6238
6239 DOCUMENTATION/JAPANESE
6240 R:      Akira Yokosawa <[email protected]>
6241 L:      [email protected]
6242 S:      Maintained
6243 F:      Documentation/translations/ja_JP
6244
6245 DONGWOON DW9714 LENS VOICE COIL DRIVER
6246 M:      Sakari Ailus <[email protected]>
6247 L:      [email protected]
6248 S:      Maintained
6249 T:      git git://linuxtv.org/media_tree.git
6250 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
6251 F:      drivers/media/i2c/dw9714.c
6252
6253 DONGWOON DW9768 LENS VOICE COIL DRIVER
6254 M:      Dongchun Zhu <[email protected]>
6255 L:      [email protected]
6256 S:      Maintained
6257 T:      git git://linuxtv.org/media_tree.git
6258 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6259 F:      drivers/media/i2c/dw9768.c
6260
6261 DONGWOON DW9807 LENS VOICE COIL DRIVER
6262 M:      Sakari Ailus <[email protected]>
6263 L:      [email protected]
6264 S:      Maintained
6265 T:      git git://linuxtv.org/media_tree.git
6266 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6267 F:      drivers/media/i2c/dw9807-vcm.c
6268
6269 DOUBLETALK DRIVER
6270 M:      "James R. Van Zandt" <[email protected]>
6271 L:      [email protected]
6272 S:      Maintained
6273 F:      drivers/char/dtlk.c
6274 F:      include/linux/dtlk.h
6275
6276 DPAA2 DATAPATH I/O (DPIO) DRIVER
6277 M:      Roy Pledge <[email protected]>
6278 L:      [email protected]
6279 S:      Maintained
6280 F:      drivers/soc/fsl/dpio
6281
6282 DPAA2 ETHERNET DRIVER
6283 M:      Ioana Ciornei <[email protected]>
6284 L:      [email protected]
6285 S:      Maintained
6286 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6287 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6288 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6289 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6290 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6291 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6292 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-xsk*
6293 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6294 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6295 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6296
6297 DPAA2 ETHERNET SWITCH DRIVER
6298 M:      Ioana Ciornei <[email protected]>
6299 L:      [email protected]
6300 S:      Maintained
6301 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6302 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6303 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6304
6305 DRBD DRIVER
6306 M:      Philipp Reisner <[email protected]>
6307 M:      Lars Ellenberg <[email protected]>
6308 M:      Christoph Böhmwalder <[email protected]>
6309 L:      [email protected]
6310 S:      Supported
6311 W:      http://www.drbd.org
6312 T:      git git://git.linbit.com/linux-drbd.git
6313 T:      git git://git.linbit.com/drbd-8.4.git
6314 F:      Documentation/admin-guide/blockdev/
6315 F:      drivers/block/drbd/
6316 F:      include/linux/drbd*
6317 F:      lib/lru_cache.c
6318
6319 DRIVER COMPONENT FRAMEWORK
6320 L:      [email protected]
6321 F:      drivers/base/component.c
6322 F:      include/linux/component.h
6323
6324 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6325 M:      Greg Kroah-Hartman <[email protected]>
6326 R:      "Rafael J. Wysocki" <[email protected]>
6327 S:      Supported
6328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6329 F:      Documentation/core-api/kobject.rst
6330 F:      drivers/base/
6331 F:      fs/debugfs/
6332 F:      fs/sysfs/
6333 F:      include/linux/debugfs.h
6334 F:      include/linux/kobj*
6335 F:      lib/kobj*
6336
6337 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6338 M:      Nishanth Menon <[email protected]>
6339 L:      [email protected]
6340 S:      Maintained
6341 F:      drivers/soc/ti/smartreflex.c
6342 F:      include/linux/power/smartreflex.h
6343
6344 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6345 M:      Maxime Ripard <[email protected]>
6346 M:      Chen-Yu Tsai <[email protected]>
6347 R:      Jernej Skrabec <[email protected]>
6348 L:      [email protected]
6349 S:      Supported
6350 T:      git git://anongit.freedesktop.org/drm/drm-misc
6351 F:      drivers/gpu/drm/sun4i/sun8i*
6352
6353 DRM DRIVER FOR ARM PL111 CLCD
6354 M:      Emma Anholt <[email protected]>
6355 S:      Supported
6356 T:      git git://anongit.freedesktop.org/drm/drm-misc
6357 F:      drivers/gpu/drm/pl111/
6358
6359 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6360 M:      Linus Walleij <[email protected]>
6361 S:      Maintained
6362 T:      git git://anongit.freedesktop.org/drm/drm-misc
6363 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6364 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6365
6366 DRM DRIVER FOR ASPEED BMC GFX
6367 M:      Joel Stanley <[email protected]>
6368 L:      [email protected] (moderated for non-subscribers)
6369 S:      Supported
6370 T:      git git://anongit.freedesktop.org/drm/drm-misc
6371 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6372 F:      drivers/gpu/drm/aspeed/
6373
6374 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6375 M:      Dave Airlie <[email protected]>
6376 R:      Thomas Zimmermann <[email protected]>
6377 L:      [email protected]
6378 S:      Supported
6379 T:      git git://anongit.freedesktop.org/drm/drm-misc
6380 F:      drivers/gpu/drm/ast/
6381
6382 DRM DRIVER FOR BOCHS VIRTUAL GPU
6383 M:      Gerd Hoffmann <[email protected]>
6384 L:      [email protected]
6385 S:      Maintained
6386 T:      git git://anongit.freedesktop.org/drm/drm-misc
6387 F:      drivers/gpu/drm/tiny/bochs.c
6388
6389 DRM DRIVER FOR BOE HIMAX8279D PANELS
6390 M:      Jerry Han <[email protected]>
6391 S:      Maintained
6392 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6393 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6394
6395 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6396 M:      Jagan Teki <[email protected]>
6397 S:      Maintained
6398 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6399 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6400
6401 DRM DRIVER FOR EBBG FT8719 PANEL
6402 M:      Joel Selvaraj <[email protected]>
6403 S:      Maintained
6404 T:      git git://anongit.freedesktop.org/drm/drm-misc
6405 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6406 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6407
6408 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6409 M:      Linus Walleij <[email protected]>
6410 S:      Maintained
6411 T:      git git://anongit.freedesktop.org/drm/drm-misc
6412 F:      drivers/gpu/drm/tve200/
6413
6414 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6415 M:      Icenowy Zheng <[email protected]>
6416 S:      Maintained
6417 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6418 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6419
6420 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6421 M:      Jagan Teki <[email protected]>
6422 S:      Maintained
6423 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6424 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6425
6426 DRM DRIVER FOR GENERIC EDP PANELS
6427 R:      Douglas Anderson <[email protected]>
6428 F:      Documentation/devicetree/bindings/display/panel/panel-edp.yaml
6429 F:      drivers/gpu/drm/panel/panel-edp.c
6430
6431 DRM DRIVER FOR GENERIC USB DISPLAY
6432 M:      Noralf Trønnes <[email protected]>
6433 S:      Maintained
6434 W:      https://github.com/notro/gud/wiki
6435 T:      git git://anongit.freedesktop.org/drm/drm-misc
6436 F:      drivers/gpu/drm/gud/
6437 F:      include/drm/gud.h
6438
6439 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6440 M:      Hans de Goede <[email protected]>
6441 S:      Maintained
6442 T:      git git://anongit.freedesktop.org/drm/drm-misc
6443 F:      drivers/gpu/drm/tiny/gm12u320.c
6444
6445 DRM DRIVER FOR HIMAX HX8394 MIPI-DSI LCD panels
6446 M:      Ondrej Jirman <[email protected]>
6447 M:      Javier Martinez Canillas <[email protected]>
6448 S:      Maintained
6449 T:      git git://anongit.freedesktop.org/drm/drm-misc
6450 F:      Documentation/devicetree/bindings/display/panel/himax,hx8394.yaml
6451 F:      drivers/gpu/drm/panel/panel-himax-hx8394.c
6452
6453 DRM DRIVER FOR HX8357D PANELS
6454 M:      Emma Anholt <[email protected]>
6455 S:      Maintained
6456 T:      git git://anongit.freedesktop.org/drm/drm-misc
6457 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6458 F:      drivers/gpu/drm/tiny/hx8357d.c
6459
6460 DRM DRIVER FOR ILITEK ILI9225 PANELS
6461 M:      David Lechner <[email protected]>
6462 S:      Maintained
6463 T:      git git://anongit.freedesktop.org/drm/drm-misc
6464 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6465 F:      drivers/gpu/drm/tiny/ili9225.c
6466
6467 DRM DRIVER FOR ILITEK ILI9486 PANELS
6468 M:      Kamlesh Gurudasani <[email protected]>
6469 S:      Maintained
6470 T:      git git://anongit.freedesktop.org/drm/drm-misc
6471 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6472 F:      drivers/gpu/drm/tiny/ili9486.c
6473
6474 DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
6475 M:      Jagan Teki <[email protected]>
6476 S:      Maintained
6477 F:      Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
6478 F:      drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
6479
6480 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6481 M:      Paul Kocialkowski <[email protected]>
6482 S:      Supported
6483 T:      git git://anongit.freedesktop.org/drm/drm-misc
6484 F:      drivers/gpu/drm/logicvc/
6485
6486 DRM DRIVER FOR LVDS PANELS
6487 M:      Laurent Pinchart <[email protected]>
6488 L:      [email protected]
6489 T:      git git://anongit.freedesktop.org/drm/drm-misc
6490 S:      Maintained
6491 F:      drivers/gpu/drm/panel/panel-lvds.c
6492 F:      Documentation/devicetree/bindings/display/lvds.yaml
6493 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6494
6495 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6496 M:      Guido Günther <[email protected]>
6497 R:      Purism Kernel Team <[email protected]>
6498 S:      Maintained
6499 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6500 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6501
6502 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6503 M:      Dave Airlie <[email protected]>
6504 R:      Thomas Zimmermann <[email protected]>
6505 L:      [email protected]
6506 S:      Supported
6507 T:      git git://anongit.freedesktop.org/drm/drm-misc
6508 F:      drivers/gpu/drm/mgag200/
6509
6510 DRM DRIVER FOR MI0283QT
6511 M:      Noralf Trønnes <[email protected]>
6512 S:      Maintained
6513 T:      git git://anongit.freedesktop.org/drm/drm-misc
6514 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6515 F:      drivers/gpu/drm/tiny/mi0283qt.c
6516
6517 DRM DRIVER FOR MIPI DBI compatible panels
6518 M:      Noralf Trønnes <[email protected]>
6519 S:      Maintained
6520 W:      https://github.com/notro/panel-mipi-dbi/wiki
6521 T:      git git://anongit.freedesktop.org/drm/drm-misc
6522 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6523 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6524
6525 DRM DRIVER FOR MSM ADRENO GPU
6526 M:      Rob Clark <[email protected]>
6527 M:      Abhinav Kumar <[email protected]>
6528 M:      Dmitry Baryshkov <[email protected]>
6529 R:      Sean Paul <[email protected]>
6530 L:      [email protected]
6531 L:      [email protected]
6532 L:      [email protected]
6533 S:      Maintained
6534 B:      https://gitlab.freedesktop.org/drm/msm/-/issues
6535 T:      git https://gitlab.freedesktop.org/drm/msm.git
6536 F:      Documentation/devicetree/bindings/display/msm/
6537 F:      drivers/gpu/drm/msm/
6538 F:      include/uapi/drm/msm_drm.h
6539
6540 DRM DRIVER FOR NOVATEK NT35510 PANELS
6541 M:      Linus Walleij <[email protected]>
6542 S:      Maintained
6543 T:      git git://anongit.freedesktop.org/drm/drm-misc
6544 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6545 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6546
6547 DRM DRIVER FOR NOVATEK NT35560 PANELS
6548 M:      Linus Walleij <[email protected]>
6549 S:      Maintained
6550 T:      git git://anongit.freedesktop.org/drm/drm-misc
6551 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6552 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6553
6554 DRM DRIVER FOR NOVATEK NT36523 PANELS
6555 M:      Jianhua Lu <[email protected]>
6556 S:      Maintained
6557 T:      git git://anongit.freedesktop.org/drm/drm-misc
6558 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36523.yaml
6559 F:      drivers/gpu/drm/panel/panel-novatek-nt36523.c
6560
6561 DRM DRIVER FOR NOVATEK NT36672A PANELS
6562 M:      Sumit Semwal <[email protected]>
6563 S:      Maintained
6564 T:      git git://anongit.freedesktop.org/drm/drm-misc
6565 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6566 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6567
6568 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6569 M:      Ben Skeggs <[email protected]>
6570 M:      Karol Herbst <[email protected]>
6571 M:      Lyude Paul <[email protected]>
6572 L:      [email protected]
6573 L:      [email protected]
6574 S:      Supported
6575 W:      https://nouveau.freedesktop.org/
6576 Q:      https://patchwork.freedesktop.org/project/nouveau/
6577 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6578 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6579 C:      irc://irc.oftc.net/nouveau
6580 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6581 F:      drivers/gpu/drm/nouveau/
6582 F:      include/uapi/drm/nouveau_drm.h
6583
6584 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6585 M:      Stefan Mavrodiev <[email protected]>
6586 S:      Maintained
6587 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6588 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6589
6590 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6591 R:      Douglas Anderson <[email protected]>
6592 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6593 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6594
6595 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6596 M:      Noralf Trønnes <[email protected]>
6597 S:      Maintained
6598 T:      git git://anongit.freedesktop.org/drm/drm-misc
6599 F:      Documentation/devicetree/bindings/display/repaper.txt
6600 F:      drivers/gpu/drm/tiny/repaper.c
6601
6602 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6603 M:      Javier Martinez Canillas <[email protected]>
6604 S:      Maintained
6605 T:      git git://anongit.freedesktop.org/drm/drm-misc
6606 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6607 F:      drivers/gpu/drm/solomon/ssd130x*
6608
6609 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6610 M:      Dave Airlie <[email protected]>
6611 M:      Gerd Hoffmann <[email protected]>
6612 L:      [email protected]
6613 S:      Obsolete
6614 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6615 T:      git git://anongit.freedesktop.org/drm/drm-misc
6616 F:      drivers/gpu/drm/tiny/cirrus.c
6617
6618 DRM DRIVER FOR QXL VIRTUAL GPU
6619 M:      Dave Airlie <[email protected]>
6620 M:      Gerd Hoffmann <[email protected]>
6621 L:      [email protected]
6622 L:      [email protected]
6623 S:      Maintained
6624 T:      git git://anongit.freedesktop.org/drm/drm-misc
6625 F:      drivers/gpu/drm/qxl/
6626 F:      include/uapi/drm/qxl_drm.h
6627
6628 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6629 M:      Robert Chiras <[email protected]>
6630 S:      Maintained
6631 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6632 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6633
6634 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6635 M:      Linus Walleij <[email protected]>
6636 S:      Maintained
6637 T:      git git://anongit.freedesktop.org/drm/drm-misc
6638 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6639 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6640
6641 DRM DRIVER FOR SAMSUNG MIPI DSIM BRIDGE
6642 M:      Inki Dae <[email protected]>
6643 M:      Jagan Teki <[email protected]>
6644 M:      Marek Szyprowski <[email protected]>
6645 S:      Maintained
6646 T:      git git://anongit.freedesktop.org/drm/drm-misc
6647 F:      Documentation/devicetree/bindings/display/bridge/samsung,mipi-dsim.yaml
6648 F:      drivers/gpu/drm/bridge/samsung-dsim.c
6649 F:      include/drm/bridge/samsung-dsim.h
6650
6651 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6652 M:      Markuss Broks <[email protected]>
6653 S:      Maintained
6654 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6655 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6656
6657 DRM DRIVER FOR SITRONIX ST7703 PANELS
6658 M:      Guido Günther <[email protected]>
6659 R:      Purism Kernel Team <[email protected]>
6660 R:      Ondrej Jirman <[email protected]>
6661 S:      Maintained
6662 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6663 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6664
6665 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6666 M:      Thomas Zimmermann <[email protected]>
6667 M:      Javier Martinez Canillas <[email protected]>
6668 L:      [email protected]
6669 S:      Maintained
6670 T:      git git://anongit.freedesktop.org/drm/drm-misc
6671 F:      drivers/gpu/drm/drm_aperture.c
6672 F:      drivers/gpu/drm/tiny/ofdrm.c
6673 F:      drivers/gpu/drm/tiny/simpledrm.c
6674 F:      drivers/video/aperture.c
6675 F:      drivers/video/nomodeset.c
6676 F:      include/drm/drm_aperture.h
6677 F:      include/linux/aperture.h
6678 F:      include/video/nomodeset.h
6679
6680 DRM DRIVER FOR SITRONIX ST7586 PANELS
6681 M:      David Lechner <[email protected]>
6682 S:      Maintained
6683 T:      git git://anongit.freedesktop.org/drm/drm-misc
6684 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6685 F:      drivers/gpu/drm/tiny/st7586.c
6686
6687 DRM DRIVER FOR SITRONIX ST7701 PANELS
6688 M:      Jagan Teki <[email protected]>
6689 S:      Maintained
6690 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6691 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6692
6693 DRM DRIVER FOR SITRONIX ST7735R PANELS
6694 M:      David Lechner <[email protected]>
6695 S:      Maintained
6696 T:      git git://anongit.freedesktop.org/drm/drm-misc
6697 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6698 F:      drivers/gpu/drm/tiny/st7735r.c
6699
6700 DRM DRIVER FOR ST-ERICSSON MCDE
6701 M:      Linus Walleij <[email protected]>
6702 S:      Maintained
6703 T:      git git://anongit.freedesktop.org/drm/drm-misc
6704 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6705 F:      drivers/gpu/drm/mcde/
6706
6707 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6708 M:      Jagan Teki <[email protected]>
6709 S:      Maintained
6710 F:      Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6711 F:      drivers/gpu/drm/bridge/ti-dlpc3433.c
6712
6713 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6714 R:      Douglas Anderson <[email protected]>
6715 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6716 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6717
6718 DRM DRIVER FOR TPO TPG110 PANELS
6719 M:      Linus Walleij <[email protected]>
6720 S:      Maintained
6721 T:      git git://anongit.freedesktop.org/drm/drm-misc
6722 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6723 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6724
6725 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6726 M:      Dave Airlie <[email protected]>
6727 R:      Sean Paul <[email protected]>
6728 R:      Thomas Zimmermann <[email protected]>
6729 L:      [email protected]
6730 S:      Supported
6731 T:      git git://anongit.freedesktop.org/drm/drm-misc
6732 F:      drivers/gpu/drm/udl/
6733
6734 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6735 M:      Rodrigo Siqueira <[email protected]>
6736 M:      Melissa Wen <[email protected]>
6737 R:      Haneen Mohammed <[email protected]>
6738 R:      Daniel Vetter <[email protected]>
6739 L:      [email protected]
6740 S:      Maintained
6741 T:      git git://anongit.freedesktop.org/drm/drm-misc
6742 F:      Documentation/gpu/vkms.rst
6743 F:      drivers/gpu/drm/vkms/
6744
6745 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6746 M:      Hans de Goede <[email protected]>
6747 L:      [email protected]
6748 S:      Maintained
6749 T:      git git://anongit.freedesktop.org/drm/drm-misc
6750 F:      drivers/gpu/drm/vboxvideo/
6751
6752 DRM DRIVER FOR VMWARE VIRTUAL GPU
6753 M:      Zack Rusin <[email protected]>
6754 R:      VMware Graphics Reviewers <[email protected]>
6755 L:      [email protected]
6756 S:      Supported
6757 T:      git git://anongit.freedesktop.org/drm/drm-misc
6758 F:      drivers/gpu/drm/vmwgfx/
6759 F:      include/uapi/drm/vmwgfx_drm.h
6760
6761 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6762 M:      Linus Walleij <[email protected]>
6763 S:      Maintained
6764 T:      git git://anongit.freedesktop.org/drm/drm-misc
6765 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6766 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6767
6768 DRM DRIVERS
6769 M:      David Airlie <[email protected]>
6770 M:      Daniel Vetter <[email protected]>
6771 L:      [email protected]
6772 S:      Maintained
6773 B:      https://gitlab.freedesktop.org/drm
6774 C:      irc://irc.oftc.net/dri-devel
6775 T:      git git://anongit.freedesktop.org/drm/drm
6776 F:      Documentation/devicetree/bindings/display/
6777 F:      Documentation/devicetree/bindings/gpu/
6778 F:      Documentation/gpu/
6779 F:      drivers/gpu/
6780 F:      include/drm/
6781 F:      include/linux/vga*
6782 F:      include/uapi/drm/
6783
6784 DRM DRIVERS AND MISC GPU PATCHES
6785 M:      Maarten Lankhorst <[email protected]>
6786 M:      Maxime Ripard <[email protected]>
6787 M:      Thomas Zimmermann <[email protected]>
6788 S:      Maintained
6789 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6790 T:      git git://anongit.freedesktop.org/drm/drm-misc
6791 F:      Documentation/gpu/
6792 F:      drivers/gpu/drm/*
6793 F:      drivers/gpu/vga/
6794 F:      include/drm/drm*
6795 F:      include/linux/vga*
6796 F:      include/uapi/drm/drm*
6797
6798 DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
6799 M:      Oded Gabbay <[email protected]>
6800 L:      [email protected]
6801 S:      Maintained
6802 C:      irc://irc.oftc.net/dri-devel
6803 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
6804 F:      Documentation/accel/
6805 F:      drivers/accel/
6806 F:      include/drm/drm_accel.h
6807
6808 DRM ACCEL DRIVERS FOR INTEL VPU
6809 M:      Jacek Lawrynowicz <[email protected]>
6810 M:      Stanislaw Gruszka <[email protected]>
6811 L:      [email protected]
6812 S:      Supported
6813 T:      git git://anongit.freedesktop.org/drm/drm-misc
6814 F:      drivers/accel/ivpu/
6815 F:      include/uapi/drm/ivpu_accel.h
6816
6817 DRM DRIVERS FOR ALLWINNER A10
6818 M:      Maxime Ripard <[email protected]>
6819 M:      Chen-Yu Tsai <[email protected]>
6820 L:      [email protected]
6821 S:      Supported
6822 T:      git git://anongit.freedesktop.org/drm/drm-misc
6823 F:      Documentation/devicetree/bindings/display/allwinner*
6824 F:      drivers/gpu/drm/sun4i/
6825
6826 DRM DRIVERS FOR AMLOGIC SOCS
6827 M:      Neil Armstrong <[email protected]>
6828 L:      [email protected]
6829 L:      [email protected]
6830 S:      Supported
6831 W:      http://linux-meson.com/
6832 T:      git git://anongit.freedesktop.org/drm/drm-misc
6833 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6834 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6835 F:      Documentation/gpu/meson.rst
6836 F:      drivers/gpu/drm/meson/
6837
6838 DRM DRIVERS FOR ATMEL HLCDC
6839 M:      Sam Ravnborg <[email protected]>
6840 M:      Boris Brezillon <[email protected]>
6841 L:      [email protected]
6842 S:      Supported
6843 T:      git git://anongit.freedesktop.org/drm/drm-misc
6844 F:      Documentation/devicetree/bindings/display/atmel/
6845 F:      drivers/gpu/drm/atmel-hlcdc/
6846
6847 DRM DRIVERS FOR BRIDGE CHIPS
6848 M:      Andrzej Hajda <[email protected]>
6849 M:      Neil Armstrong <[email protected]>
6850 M:      Robert Foss <[email protected]>
6851 R:      Laurent Pinchart <[email protected]>
6852 R:      Jonas Karlman <[email protected]>
6853 R:      Jernej Skrabec <[email protected]>
6854 S:      Maintained
6855 T:      git git://anongit.freedesktop.org/drm/drm-misc
6856 F:      Documentation/devicetree/bindings/display/bridge/
6857 F:      drivers/gpu/drm/bridge/
6858 F:      include/drm/drm_bridge.h
6859
6860 DRM DRIVERS FOR EXYNOS
6861 M:      Inki Dae <[email protected]>
6862 M:      Seung-Woo Kim <[email protected]>
6863 M:      Kyungmin Park <[email protected]>
6864 L:      [email protected]
6865 S:      Supported
6866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6867 F:      Documentation/devicetree/bindings/display/exynos/
6868 F:      Documentation/devicetree/bindings/display/samsung/
6869 F:      drivers/gpu/drm/exynos/
6870 F:      include/uapi/drm/exynos_drm.h
6871
6872 DRM DRIVERS FOR FREESCALE DCU
6873 M:      Stefan Agner <[email protected]>
6874 M:      Alison Wang <[email protected]>
6875 L:      [email protected]
6876 S:      Supported
6877 T:      git git://anongit.freedesktop.org/drm/drm-misc
6878 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6879 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6880 F:      drivers/gpu/drm/fsl-dcu/
6881
6882 DRM DRIVERS FOR FREESCALE IMX
6883 M:      Philipp Zabel <[email protected]>
6884 L:      [email protected]
6885 S:      Maintained
6886 F:      Documentation/devicetree/bindings/display/imx/
6887 F:      drivers/gpu/drm/imx/ipuv3/
6888 F:      drivers/gpu/ipu-v3/
6889
6890 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6891 M:      Liu Ying <[email protected]>
6892 L:      [email protected]
6893 S:      Maintained
6894 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6895 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6896 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6897 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6898 F:      drivers/gpu/drm/bridge/imx/
6899
6900 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6901 M:      Patrik Jakobsson <[email protected]>
6902 L:      [email protected]
6903 S:      Maintained
6904 T:      git git://github.com/patjak/drm-gma500
6905 F:      drivers/gpu/drm/gma500/
6906
6907 DRM DRIVERS FOR HISILICON
6908 M:      Xinliang Liu <[email protected]>
6909 M:      Tian Tao  <[email protected]>
6910 R:      Xinwei Kong <[email protected]>
6911 R:      Sumit Semwal <[email protected]>
6912 R:      Yongqin Liu <[email protected]>
6913 R:      John Stultz <[email protected]>
6914 L:      [email protected]
6915 S:      Maintained
6916 T:      git git://anongit.freedesktop.org/drm/drm-misc
6917 F:      Documentation/devicetree/bindings/display/hisilicon/
6918 F:      drivers/gpu/drm/hisilicon/
6919
6920 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6921 M:      Deepak Rawat <[email protected]>
6922 L:      [email protected]
6923 L:      [email protected]
6924 S:      Maintained
6925 T:      git git://anongit.freedesktop.org/drm/drm-misc
6926 F:      drivers/gpu/drm/hyperv
6927
6928 DRM DRIVERS FOR LIMA
6929 M:      Qiang Yu <[email protected]>
6930 L:      [email protected]
6931 L:      [email protected] (moderated for non-subscribers)
6932 S:      Maintained
6933 T:      git git://anongit.freedesktop.org/drm/drm-misc
6934 F:      drivers/gpu/drm/lima/
6935 F:      include/uapi/drm/lima_drm.h
6936
6937 DRM DRIVERS FOR MEDIATEK
6938 M:      Chun-Kuang Hu <[email protected]>
6939 M:      Philipp Zabel <[email protected]>
6940 L:      [email protected]
6941 L:      [email protected] (moderated for non-subscribers)
6942 S:      Supported
6943 F:      Documentation/devicetree/bindings/display/mediatek/
6944 F:      drivers/gpu/drm/mediatek/
6945 F:      drivers/phy/mediatek/phy-mtk-dp.c
6946 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6947 F:      drivers/phy/mediatek/phy-mtk-mipi*
6948
6949 DRM DRIVERS FOR NVIDIA TEGRA
6950 M:      Thierry Reding <[email protected]>
6951 M:      Mikko Perttunen <[email protected]>
6952 L:      [email protected]
6953 L:      [email protected]
6954 S:      Supported
6955 T:      git https://gitlab.freedesktop.org/drm/tegra.git
6956 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6957 F:      Documentation/devicetree/bindings/gpu/host1x/
6958 F:      drivers/gpu/drm/tegra/
6959 F:      drivers/gpu/host1x/
6960 F:      include/linux/host1x.h
6961 F:      include/uapi/drm/tegra_drm.h
6962
6963 DRM DRIVERS FOR RENESAS
6964 M:      Laurent Pinchart <[email protected]>
6965 M:      Kieran Bingham <[email protected]>
6966 L:      [email protected]
6967 L:      [email protected]
6968 S:      Supported
6969 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6970 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6971 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6972 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6973 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6974 F:      drivers/gpu/drm/rcar-du/
6975 F:      drivers/gpu/drm/shmobile/
6976 F:      include/linux/platform_data/shmob_drm.h
6977
6978 DRM DRIVERS FOR ROCKCHIP
6979 M:      Sandy Huang <[email protected]>
6980 M:      Heiko Stübner <[email protected]>
6981 L:      [email protected]
6982 S:      Maintained
6983 T:      git git://anongit.freedesktop.org/drm/drm-misc
6984 F:      Documentation/devicetree/bindings/display/rockchip/
6985 F:      drivers/gpu/drm/rockchip/
6986
6987 DRM DRIVERS FOR STI
6988 M:      Alain Volmat <[email protected]>
6989 L:      [email protected]
6990 S:      Maintained
6991 T:      git git://anongit.freedesktop.org/drm/drm-misc
6992 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6993 F:      drivers/gpu/drm/sti
6994
6995 DRM DRIVERS FOR STM
6996 M:      Yannick Fertre <[email protected]>
6997 M:      Raphael Gallais-Pou <[email protected]>
6998 M:      Philippe Cornu <[email protected]>
6999 L:      [email protected]
7000 S:      Maintained
7001 T:      git git://anongit.freedesktop.org/drm/drm-misc
7002 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
7003 F:      drivers/gpu/drm/stm
7004
7005 DRM DRIVERS FOR TI KEYSTONE
7006 M:      Jyri Sarha <[email protected]>
7007 M:      Tomi Valkeinen <[email protected]>
7008 L:      [email protected]
7009 S:      Maintained
7010 T:      git git://anongit.freedesktop.org/drm/drm-misc
7011 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
7012 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
7013 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
7014 F:      drivers/gpu/drm/tidss/
7015
7016 DRM DRIVERS FOR TI LCDC
7017 M:      Jyri Sarha <[email protected]>
7018 R:      Tomi Valkeinen <[email protected]>
7019 L:      [email protected]
7020 S:      Maintained
7021 F:      Documentation/devicetree/bindings/display/tilcdc/
7022 F:      drivers/gpu/drm/tilcdc/
7023
7024 DRM DRIVERS FOR TI OMAP
7025 M:      Tomi Valkeinen <[email protected]>
7026 L:      [email protected]
7027 S:      Maintained
7028 F:      Documentation/devicetree/bindings/display/ti/
7029 F:      drivers/gpu/drm/omapdrm/
7030
7031 DRM DRIVERS FOR V3D
7032 M:      Emma Anholt <[email protected]>
7033 M:      Melissa Wen <[email protected]>
7034 S:      Supported
7035 T:      git git://anongit.freedesktop.org/drm/drm-misc
7036 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
7037 F:      drivers/gpu/drm/v3d/
7038 F:      include/uapi/drm/v3d_drm.h
7039
7040 DRM DRIVERS FOR VC4
7041 M:      Emma Anholt <[email protected]>
7042 M:      Maxime Ripard <[email protected]>
7043 S:      Supported
7044 T:      git git://github.com/anholt/linux
7045 T:      git git://anongit.freedesktop.org/drm/drm-misc
7046 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
7047 F:      drivers/gpu/drm/vc4/
7048 F:      include/uapi/drm/vc4_drm.h
7049
7050 DRM DRIVERS FOR VIVANTE GPU IP
7051 M:      Lucas Stach <[email protected]>
7052 R:      Russell King <[email protected]>
7053 R:      Christian Gmeiner <[email protected]>
7054 L:      [email protected] (moderated for non-subscribers)
7055 L:      [email protected]
7056 S:      Maintained
7057 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7058 F:      drivers/gpu/drm/etnaviv/
7059 F:      include/uapi/drm/etnaviv_drm.h
7060
7061 DRM DRIVERS FOR XEN
7062 M:      Oleksandr Andrushchenko <[email protected]>
7063 L:      [email protected]
7064 L:      [email protected] (moderated for non-subscribers)
7065 S:      Supported
7066 T:      git git://anongit.freedesktop.org/drm/drm-misc
7067 F:      Documentation/gpu/xen-front.rst
7068 F:      drivers/gpu/drm/xen/
7069
7070 DRM DRIVERS FOR XILINX
7071 M:      Hyun Kwon <[email protected]>
7072 M:      Laurent Pinchart <[email protected]>
7073 L:      [email protected]
7074 S:      Maintained
7075 T:      git git://anongit.freedesktop.org/drm/drm-misc
7076 F:      Documentation/devicetree/bindings/display/xlnx/
7077 F:      drivers/gpu/drm/xlnx/
7078
7079 DRM PANEL DRIVERS
7080 M:      Neil Armstrong <[email protected]>
7081 R:      Sam Ravnborg <[email protected]>
7082 L:      [email protected]
7083 S:      Maintained
7084 T:      git git://anongit.freedesktop.org/drm/drm-misc
7085 F:      Documentation/devicetree/bindings/display/panel/
7086 F:      drivers/gpu/drm/drm_panel.c
7087 F:      drivers/gpu/drm/panel/
7088 F:      include/drm/drm_panel.h
7089
7090 DRM PRIVACY-SCREEN CLASS
7091 M:      Hans de Goede <[email protected]>
7092 L:      [email protected]
7093 S:      Maintained
7094 T:      git git://anongit.freedesktop.org/drm/drm-misc
7095 F:      drivers/gpu/drm/drm_privacy_screen*
7096 F:      include/drm/drm_privacy_screen*
7097
7098 DRM TTM SUBSYSTEM
7099 M:      Christian Koenig <[email protected]>
7100 M:      Huang Rui <[email protected]>
7101 L:      [email protected]
7102 S:      Maintained
7103 T:      git git://anongit.freedesktop.org/drm/drm-misc
7104 F:      drivers/gpu/drm/ttm/
7105 F:      include/drm/ttm/
7106
7107 DRM GPU SCHEDULER
7108 M:      Luben Tuikov <[email protected]>
7109 L:      [email protected]
7110 S:      Maintained
7111 T:      git git://anongit.freedesktop.org/drm/drm-misc
7112 F:      drivers/gpu/drm/scheduler/
7113 F:      include/drm/gpu_scheduler.h
7114
7115 DSBR100 USB FM RADIO DRIVER
7116 M:      Alexey Klimov <[email protected]>
7117 L:      [email protected]
7118 S:      Maintained
7119 T:      git git://linuxtv.org/media_tree.git
7120 F:      drivers/media/radio/dsbr100.c
7121
7122 DT3155 MEDIA DRIVER
7123 M:      Hans Verkuil <[email protected]>
7124 L:      [email protected]
7125 S:      Odd Fixes
7126 W:      https://linuxtv.org
7127 T:      git git://linuxtv.org/media_tree.git
7128 F:      drivers/media/pci/dt3155/
7129
7130 DVB_USB_AF9015 MEDIA DRIVER
7131 M:      Antti Palosaari <[email protected]>
7132 L:      [email protected]
7133 S:      Maintained
7134 W:      https://linuxtv.org
7135 W:      http://palosaari.fi/linux/
7136 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7137 T:      git git://linuxtv.org/anttip/media_tree.git
7138 F:      drivers/media/usb/dvb-usb-v2/af9015*
7139
7140 DVB_USB_AF9035 MEDIA DRIVER
7141 M:      Antti Palosaari <[email protected]>
7142 L:      [email protected]
7143 S:      Maintained
7144 W:      https://linuxtv.org
7145 W:      http://palosaari.fi/linux/
7146 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7147 T:      git git://linuxtv.org/anttip/media_tree.git
7148 F:      drivers/media/usb/dvb-usb-v2/af9035*
7149
7150 DVB_USB_ANYSEE MEDIA DRIVER
7151 M:      Antti Palosaari <[email protected]>
7152 L:      [email protected]
7153 S:      Maintained
7154 W:      https://linuxtv.org
7155 W:      http://palosaari.fi/linux/
7156 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7157 T:      git git://linuxtv.org/anttip/media_tree.git
7158 F:      drivers/media/usb/dvb-usb-v2/anysee*
7159
7160 DVB_USB_AU6610 MEDIA DRIVER
7161 M:      Antti Palosaari <[email protected]>
7162 L:      [email protected]
7163 S:      Maintained
7164 W:      https://linuxtv.org
7165 W:      http://palosaari.fi/linux/
7166 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7167 T:      git git://linuxtv.org/anttip/media_tree.git
7168 F:      drivers/media/usb/dvb-usb-v2/au6610*
7169
7170 DVB_USB_CE6230 MEDIA DRIVER
7171 M:      Antti Palosaari <[email protected]>
7172 L:      [email protected]
7173 S:      Maintained
7174 W:      https://linuxtv.org
7175 W:      http://palosaari.fi/linux/
7176 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7177 T:      git git://linuxtv.org/anttip/media_tree.git
7178 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7179
7180 DVB_USB_CXUSB MEDIA DRIVER
7181 M:      Michael Krufky <[email protected]>
7182 L:      [email protected]
7183 S:      Maintained
7184 W:      https://linuxtv.org
7185 W:      http://github.com/mkrufky
7186 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7187 T:      git git://linuxtv.org/media_tree.git
7188 F:      drivers/media/usb/dvb-usb/cxusb*
7189
7190 DVB_USB_EC168 MEDIA DRIVER
7191 M:      Antti Palosaari <[email protected]>
7192 L:      [email protected]
7193 S:      Maintained
7194 W:      https://linuxtv.org
7195 W:      http://palosaari.fi/linux/
7196 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7197 T:      git git://linuxtv.org/anttip/media_tree.git
7198 F:      drivers/media/usb/dvb-usb-v2/ec168*
7199
7200 DVB_USB_GL861 MEDIA DRIVER
7201 M:      Antti Palosaari <[email protected]>
7202 L:      [email protected]
7203 S:      Maintained
7204 W:      https://linuxtv.org
7205 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7206 T:      git git://linuxtv.org/anttip/media_tree.git
7207 F:      drivers/media/usb/dvb-usb-v2/gl861*
7208
7209 DVB_USB_MXL111SF MEDIA DRIVER
7210 M:      Michael Krufky <[email protected]>
7211 L:      [email protected]
7212 S:      Maintained
7213 W:      https://linuxtv.org
7214 W:      http://github.com/mkrufky
7215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7216 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7217 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7218
7219 DVB_USB_RTL28XXU MEDIA DRIVER
7220 M:      Antti Palosaari <[email protected]>
7221 L:      [email protected]
7222 S:      Maintained
7223 W:      https://linuxtv.org
7224 W:      http://palosaari.fi/linux/
7225 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7226 T:      git git://linuxtv.org/anttip/media_tree.git
7227 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7228
7229 DVB_USB_V2 MEDIA DRIVER
7230 M:      Antti Palosaari <[email protected]>
7231 L:      [email protected]
7232 S:      Maintained
7233 W:      https://linuxtv.org
7234 W:      http://palosaari.fi/linux/
7235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7236 T:      git git://linuxtv.org/anttip/media_tree.git
7237 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7238 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7239
7240 DYNAMIC DEBUG
7241 M:      Jason Baron <[email protected]>
7242 S:      Maintained
7243 F:      include/linux/dynamic_debug.h
7244 F:      lib/dynamic_debug.c
7245 M:      Jim Cromie <[email protected]>
7246 F:      lib/test_dynamic_debug.c
7247
7248 DYNAMIC INTERRUPT MODERATION
7249 M:      Tal Gilboa <[email protected]>
7250 S:      Maintained
7251 F:      Documentation/networking/net_dim.rst
7252 F:      include/linux/dim.h
7253 F:      lib/dim/
7254
7255 DZ DECSTATION DZ11 SERIAL DRIVER
7256 M:      "Maciej W. Rozycki" <[email protected]>
7257 S:      Maintained
7258 F:      drivers/tty/serial/dz.*
7259
7260 E3X0 POWER BUTTON DRIVER
7261 M:      Moritz Fischer <[email protected]>
7262 L:      [email protected]
7263 S:      Supported
7264 W:      http://www.ettus.com
7265 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7266 F:      drivers/input/misc/e3x0-button.c
7267
7268 E4000 MEDIA DRIVER
7269 M:      Antti Palosaari <[email protected]>
7270 L:      [email protected]
7271 S:      Maintained
7272 W:      https://linuxtv.org
7273 W:      http://palosaari.fi/linux/
7274 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7275 T:      git git://linuxtv.org/anttip/media_tree.git
7276 F:      drivers/media/tuners/e4000*
7277
7278 EARTH_PT1 MEDIA DRIVER
7279 M:      Akihiro Tsukada <[email protected]>
7280 L:      [email protected]
7281 S:      Odd Fixes
7282 F:      drivers/media/pci/pt1/
7283
7284 EARTH_PT3 MEDIA DRIVER
7285 M:      Akihiro Tsukada <[email protected]>
7286 L:      [email protected]
7287 S:      Odd Fixes
7288 F:      drivers/media/pci/pt3/
7289
7290 EC100 MEDIA DRIVER
7291 M:      Antti Palosaari <[email protected]>
7292 L:      [email protected]
7293 S:      Maintained
7294 W:      https://linuxtv.org
7295 W:      http://palosaari.fi/linux/
7296 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7297 T:      git git://linuxtv.org/anttip/media_tree.git
7298 F:      drivers/media/dvb-frontends/ec100*
7299
7300 ECRYPT FILE SYSTEM
7301 M:      Tyler Hicks <[email protected]>
7302 L:      [email protected]
7303 S:      Odd Fixes
7304 W:      http://ecryptfs.org
7305 W:      https://launchpad.net/ecryptfs
7306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7307 F:      Documentation/filesystems/ecryptfs.rst
7308 F:      fs/ecryptfs/
7309
7310 EDAC-AMD64
7311 M:      Yazen Ghannam <[email protected]>
7312 L:      [email protected]
7313 S:      Supported
7314 F:      drivers/edac/amd64_edac*
7315 F:      drivers/edac/mce_amd*
7316
7317 EDAC-ARMADA
7318 M:      Jan Luebbe <[email protected]>
7319 L:      [email protected]
7320 S:      Maintained
7321 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7322 F:      drivers/edac/armada_xp_*
7323
7324 EDAC-AST2500
7325 M:      Stefan Schaeckeler <[email protected]>
7326 S:      Supported
7327 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7328 F:      drivers/edac/aspeed_edac.c
7329
7330 EDAC-BLUEFIELD
7331 M:      Shravan Kumar Ramani <[email protected]>
7332 S:      Supported
7333 F:      drivers/edac/bluefield_edac.c
7334
7335 EDAC-CALXEDA
7336 M:      Andre Przywara <[email protected]>
7337 L:      [email protected]
7338 S:      Maintained
7339 F:      drivers/edac/highbank*
7340
7341 EDAC-CAVIUM OCTEON
7342 M:      Ralf Baechle <[email protected]>
7343 L:      [email protected]
7344 L:      [email protected]
7345 S:      Supported
7346 F:      drivers/edac/octeon_edac*
7347
7348 EDAC-CAVIUM THUNDERX
7349 M:      Robert Richter <[email protected]>
7350 L:      [email protected]
7351 S:      Odd Fixes
7352 F:      drivers/edac/thunderx_edac*
7353
7354 EDAC-CORE
7355 M:      Borislav Petkov <[email protected]>
7356 M:      Tony Luck <[email protected]>
7357 R:      James Morse <[email protected]>
7358 R:      Mauro Carvalho Chehab <[email protected]>
7359 R:      Robert Richter <[email protected]>
7360 L:      [email protected]
7361 S:      Supported
7362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7363 F:      Documentation/admin-guide/ras.rst
7364 F:      Documentation/driver-api/edac.rst
7365 F:      drivers/edac/
7366 F:      include/linux/edac.h
7367
7368 EDAC-DMC520
7369 M:      Lei Wang <[email protected]>
7370 L:      [email protected]
7371 S:      Supported
7372 F:      drivers/edac/dmc520_edac.c
7373
7374 EDAC-E752X
7375 M:      Mark Gross <[email protected]>
7376 L:      [email protected]
7377 S:      Maintained
7378 F:      drivers/edac/e752x_edac.c
7379
7380 EDAC-E7XXX
7381 L:      [email protected]
7382 S:      Maintained
7383 F:      drivers/edac/e7xxx_edac.c
7384
7385 EDAC-FSL_DDR
7386 M:      York Sun <[email protected]>
7387 L:      [email protected]
7388 S:      Maintained
7389 F:      drivers/edac/fsl_ddr_edac.*
7390
7391 EDAC-GHES
7392 M:      Mauro Carvalho Chehab <[email protected]>
7393 L:      [email protected]
7394 S:      Maintained
7395 F:      drivers/edac/ghes_edac.c
7396
7397 EDAC-I10NM
7398 M:      Tony Luck <[email protected]>
7399 L:      [email protected]
7400 S:      Maintained
7401 F:      drivers/edac/i10nm_base.c
7402
7403 EDAC-I3000
7404 L:      [email protected]
7405 S:      Orphan
7406 F:      drivers/edac/i3000_edac.c
7407
7408 EDAC-I5000
7409 L:      [email protected]
7410 S:      Maintained
7411 F:      drivers/edac/i5000_edac.c
7412
7413 EDAC-I5400
7414 M:      Mauro Carvalho Chehab <[email protected]>
7415 L:      [email protected]
7416 S:      Maintained
7417 F:      drivers/edac/i5400_edac.c
7418
7419 EDAC-I7300
7420 M:      Mauro Carvalho Chehab <[email protected]>
7421 L:      [email protected]
7422 S:      Maintained
7423 F:      drivers/edac/i7300_edac.c
7424
7425 EDAC-I7CORE
7426 M:      Mauro Carvalho Chehab <[email protected]>
7427 L:      [email protected]
7428 S:      Maintained
7429 F:      drivers/edac/i7core_edac.c
7430
7431 EDAC-I82443BXGX
7432 M:      Tim Small <[email protected]>
7433 L:      [email protected]
7434 S:      Maintained
7435 F:      drivers/edac/i82443bxgx_edac.c
7436
7437 EDAC-I82975X
7438 M:      "Arvind R." <[email protected]>
7439 L:      [email protected]
7440 S:      Maintained
7441 F:      drivers/edac/i82975x_edac.c
7442
7443 EDAC-IE31200
7444 M:      Jason Baron <[email protected]>
7445 L:      [email protected]
7446 S:      Maintained
7447 F:      drivers/edac/ie31200_edac.c
7448
7449 EDAC-IGEN6
7450 M:      Tony Luck <[email protected]>
7451 R:      Qiuxu Zhuo <[email protected]>
7452 L:      [email protected]
7453 S:      Maintained
7454 F:      drivers/edac/igen6_edac.c
7455
7456 EDAC-MPC85XX
7457 M:      Johannes Thumshirn <[email protected]>
7458 L:      [email protected]
7459 S:      Maintained
7460 F:      drivers/edac/mpc85xx_edac.[ch]
7461
7462 EDAC-PASEMI
7463 M:      Egor Martovetsky <[email protected]>
7464 L:      [email protected]
7465 S:      Maintained
7466 F:      drivers/edac/pasemi_edac.c
7467
7468 EDAC-PND2
7469 M:      Tony Luck <[email protected]>
7470 L:      [email protected]
7471 S:      Maintained
7472 F:      drivers/edac/pnd2_edac.[ch]
7473
7474 EDAC-QCOM
7475 M:      Manivannan Sadhasivam <[email protected]>
7476 L:      [email protected]
7477 L:      [email protected]
7478 S:      Maintained
7479 F:      drivers/edac/qcom_edac.c
7480
7481 EDAC-R82600
7482 M:      Tim Small <[email protected]>
7483 L:      [email protected]
7484 S:      Maintained
7485 F:      drivers/edac/r82600_edac.c
7486
7487 EDAC-SBRIDGE
7488 M:      Tony Luck <[email protected]>
7489 R:      Qiuxu Zhuo <[email protected]>
7490 L:      [email protected]
7491 S:      Maintained
7492 F:      drivers/edac/sb_edac.c
7493
7494 EDAC-SKYLAKE
7495 M:      Tony Luck <[email protected]>
7496 L:      [email protected]
7497 S:      Maintained
7498 F:      drivers/edac/skx_*.[ch]
7499
7500 EDAC-TI
7501 M:      Tero Kristo <[email protected]>
7502 L:      [email protected]
7503 S:      Odd Fixes
7504 F:      drivers/edac/ti_edac.c
7505
7506 EDIROL UA-101/UA-1000 DRIVER
7507 M:      Clemens Ladisch <[email protected]>
7508 L:      [email protected] (moderated for non-subscribers)
7509 S:      Maintained
7510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7511 F:      sound/usb/misc/ua101.c
7512
7513 EFI TEST DRIVER
7514 M:      Ivan Hu <[email protected]>
7515 M:      Ard Biesheuvel <[email protected]>
7516 L:      [email protected]
7517 S:      Maintained
7518 F:      drivers/firmware/efi/test/
7519
7520 EFI VARIABLE FILESYSTEM
7521 M:      Jeremy Kerr <[email protected]>
7522 M:      Ard Biesheuvel <[email protected]>
7523 L:      [email protected]
7524 S:      Maintained
7525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7526 F:      fs/efivarfs/
7527
7528 EFIFB FRAMEBUFFER DRIVER
7529 M:      Peter Jones <[email protected]>
7530 L:      [email protected]
7531 S:      Maintained
7532 F:      drivers/video/fbdev/efifb.c
7533
7534 EFS FILESYSTEM
7535 S:      Orphan
7536 W:      http://aeschi.ch.eu.org/efs/
7537 F:      fs/efs/
7538
7539 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7540 M:      Douglas Miller <[email protected]>
7541 L:      [email protected]
7542 S:      Maintained
7543 F:      drivers/net/ethernet/ibm/ehea/
7544
7545 ELM327 CAN NETWORK DRIVER
7546 M:      Max Staudt <[email protected]>
7547 L:      [email protected]
7548 S:      Maintained
7549 F:      Documentation/networking/device_drivers/can/can327.rst
7550 F:      drivers/net/can/can327.c
7551
7552 EM28XX VIDEO4LINUX DRIVER
7553 M:      Mauro Carvalho Chehab <[email protected]>
7554 L:      [email protected]
7555 S:      Maintained
7556 W:      https://linuxtv.org
7557 T:      git git://linuxtv.org/media_tree.git
7558 F:      Documentation/admin-guide/media/em28xx*
7559 F:      drivers/media/usb/em28xx/
7560
7561 EMBEDDED LINUX
7562 M:      Olivia Mackall <[email protected]>
7563 M:      David Woodhouse <[email protected]>
7564 L:      [email protected]
7565 S:      Maintained
7566
7567 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7568 M:      Adrian Hunter <[email protected]>
7569 M:      Ritesh Harjani <[email protected]>
7570 M:      Asutosh Das <[email protected]>
7571 L:      [email protected]
7572 S:      Supported
7573 F:      drivers/mmc/host/cqhci*
7574
7575 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7576 M:      Ketan Mukadam <[email protected]>
7577 L:      [email protected]
7578 S:      Supported
7579 W:      http://www.broadcom.com
7580 F:      drivers/scsi/be2iscsi/
7581
7582 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7583 M:      Ajit Khaparde <[email protected]>
7584 M:      Sriharsha Basavapatna <[email protected]>
7585 M:      Somnath Kotur <[email protected]>
7586 L:      [email protected]
7587 S:      Supported
7588 W:      http://www.emulex.com
7589 F:      drivers/net/ethernet/emulex/benet/
7590
7591 EMULEX ONECONNECT ROCE DRIVER
7592 M:      Selvin Xavier <[email protected]>
7593 L:      [email protected]
7594 S:      Odd Fixes
7595 W:      http://www.broadcom.com
7596 F:      drivers/infiniband/hw/ocrdma/
7597 F:      include/uapi/rdma/ocrdma-abi.h
7598
7599 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7600 M:      James Smart <[email protected]>
7601 M:      Dick Kennedy <[email protected]>
7602 L:      [email protected]
7603 S:      Supported
7604 W:      http://www.broadcom.com
7605 F:      drivers/scsi/lpfc/
7606
7607 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7608 M:      James Smart <[email protected]>
7609 M:      Ram Vegesna <[email protected]>
7610 L:      [email protected]
7611 L:      [email protected]
7612 S:      Supported
7613 W:      http://www.broadcom.com
7614 F:      drivers/scsi/elx/
7615
7616 ENE CB710 FLASH CARD READER DRIVER
7617 M:      Michał Mirosław <[email protected]>
7618 S:      Maintained
7619 F:      drivers/misc/cb710/
7620 F:      drivers/mmc/host/cb710-mmc.*
7621 F:      include/linux/cb710.h
7622
7623 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7624 M:      Maxim Levitsky <[email protected]>
7625 S:      Maintained
7626 F:      drivers/media/rc/ene_ir.*
7627
7628 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7629 M:      Laurentiu Tudor <[email protected]>
7630 L:      [email protected]
7631 S:      Maintained
7632 F:      drivers/tty/ehv_bytechan.c
7633
7634 EPSON S1D13XXX FRAMEBUFFER DRIVER
7635 M:      Kristoffer Ericson <[email protected]>
7636 S:      Maintained
7637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7638 F:      drivers/video/fbdev/s1d13xxxfb.c
7639 F:      include/video/s1d13xxxfb.h
7640
7641 EROFS FILE SYSTEM
7642 M:      Gao Xiang <[email protected]>
7643 M:      Chao Yu <[email protected]>
7644 R:      Yue Hu <[email protected]>
7645 R:      Jeffle Xu <[email protected]>
7646 L:      [email protected]
7647 S:      Maintained
7648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7649 F:      Documentation/ABI/testing/sysfs-fs-erofs
7650 F:      Documentation/filesystems/erofs.rst
7651 F:      fs/erofs/
7652 F:      include/trace/events/erofs.h
7653
7654 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7655 M:      Jeff Layton <[email protected]>
7656 S:      Maintained
7657 F:      include/linux/errseq.h
7658 F:      lib/errseq.c
7659
7660 ESD CAN/USB DRIVERS
7661 M:      Frank Jungclaus <[email protected]>
7662 R:      [email protected]
7663 L:      [email protected]
7664 S:      Maintained
7665 F:      drivers/net/can/usb/esd_usb.c
7666
7667 ET131X NETWORK DRIVER
7668 M:      Mark Einon <[email protected]>
7669 S:      Odd Fixes
7670 F:      drivers/net/ethernet/agere/
7671
7672 ETAS ES58X CAN/USB DRIVER
7673 M:      Vincent Mailhol <[email protected]>
7674 L:      [email protected]
7675 S:      Maintained
7676 F:      Documentation/networking/devlink/etas_es58x.rst
7677 F:      drivers/net/can/usb/etas_es58x/
7678
7679 ETHERNET BRIDGE
7680 M:      Roopa Prabhu <[email protected]>
7681 M:      Nikolay Aleksandrov <[email protected]>
7682 L:      [email protected] (moderated for non-subscribers)
7683 L:      [email protected]
7684 S:      Maintained
7685 W:      http://www.linuxfoundation.org/en/Net:Bridge
7686 F:      include/linux/netfilter_bridge/
7687 F:      net/bridge/
7688
7689 ETHERNET PHY LIBRARY
7690 M:      Andrew Lunn <[email protected]>
7691 M:      Heiner Kallweit <[email protected]>
7692 R:      Russell King <[email protected]>
7693 L:      [email protected]
7694 S:      Maintained
7695 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7696 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7697 F:      Documentation/devicetree/bindings/net/mdio*
7698 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7699 F:      Documentation/networking/phy.rst
7700 F:      drivers/net/mdio/
7701 F:      drivers/net/mdio/acpi_mdio.c
7702 F:      drivers/net/mdio/fwnode_mdio.c
7703 F:      drivers/net/mdio/of_mdio.c
7704 F:      drivers/net/pcs/
7705 F:      drivers/net/phy/
7706 F:      include/dt-bindings/net/qca-ar803x.h
7707 F:      include/linux/linkmode.h
7708 F:      include/linux/*mdio*.h
7709 F:      include/linux/mdio/*.h
7710 F:      include/linux/mii.h
7711 F:      include/linux/of_net.h
7712 F:      include/linux/phy.h
7713 F:      include/linux/phy_fixed.h
7714 F:      include/linux/platform_data/mdio-bcm-unimac.h
7715 F:      include/linux/platform_data/mdio-gpio.h
7716 F:      include/trace/events/mdio.h
7717 F:      include/uapi/linux/mdio.h
7718 F:      include/uapi/linux/mii.h
7719 F:      net/core/of_net.c
7720
7721 EXEC & BINFMT API
7722 R:      Eric Biederman <[email protected]>
7723 R:      Kees Cook <[email protected]>
7724 L:      [email protected]
7725 S:      Supported
7726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7727 F:      fs/*binfmt_*.c
7728 F:      fs/exec.c
7729 F:      include/linux/binfmts.h
7730 F:      include/linux/elf.h
7731 F:      include/uapi/linux/binfmts.h
7732 F:      include/uapi/linux/elf.h
7733 F:      tools/testing/selftests/exec/
7734 N:      asm/elf.h
7735 N:      binfmt
7736
7737 EXFAT FILE SYSTEM
7738 M:      Namjae Jeon <[email protected]>
7739 M:      Sungjong Seo <[email protected]>
7740 L:      [email protected]
7741 S:      Maintained
7742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7743 F:      fs/exfat/
7744
7745 EXT2 FILE SYSTEM
7746 M:      Jan Kara <[email protected]>
7747 L:      [email protected]
7748 S:      Maintained
7749 F:      Documentation/filesystems/ext2.rst
7750 F:      fs/ext2/
7751 F:      include/linux/ext2*
7752
7753 EXT4 FILE SYSTEM
7754 M:      "Theodore Ts'o" <[email protected]>
7755 M:      Andreas Dilger <[email protected]>
7756 L:      [email protected]
7757 S:      Maintained
7758 W:      http://ext4.wiki.kernel.org
7759 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7761 F:      Documentation/filesystems/ext4/
7762 F:      fs/ext4/
7763 F:      include/trace/events/ext4.h
7764 F:      include/uapi/linux/ext4.h
7765
7766 Extended Verification Module (EVM)
7767 M:      Mimi Zohar <[email protected]>
7768 L:      [email protected]
7769 S:      Supported
7770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7771 F:      security/integrity/evm/
7772 F:      security/integrity/
7773
7774 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7775 M:      Ard Biesheuvel <[email protected]>
7776 L:      [email protected]
7777 S:      Maintained
7778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7779 F:      Documentation/admin-guide/efi-stub.rst
7780 F:      arch/*/include/asm/efi.h
7781 F:      arch/*/kernel/efi.c
7782 F:      arch/arm/boot/compressed/efi-header.S
7783 F:      arch/x86/platform/efi/
7784 F:      drivers/firmware/efi/
7785 F:      include/linux/efi*.h
7786
7787 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7788 M:      MyungJoo Ham <[email protected]>
7789 M:      Chanwoo Choi <[email protected]>
7790 L:      [email protected]
7791 S:      Maintained
7792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7793 F:      Documentation/devicetree/bindings/extcon/
7794 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7795 F:      drivers/extcon/
7796 F:      include/linux/extcon.h
7797 F:      include/linux/extcon/
7798
7799 EXTRA BOOT CONFIG
7800 M:      Masami Hiramatsu <[email protected]>
7801 L:      [email protected]
7802 L:      [email protected]
7803 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
7804 S:      Maintained
7805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
7806 F:      Documentation/admin-guide/bootconfig.rst
7807 F:      fs/proc/bootconfig.c
7808 F:      include/linux/bootconfig.h
7809 F:      lib/bootconfig-data.S
7810 F:      lib/bootconfig.c
7811 F:      tools/bootconfig/*
7812 F:      tools/bootconfig/scripts/*
7813
7814 EXYNOS DP DRIVER
7815 M:      Jingoo Han <[email protected]>
7816 L:      [email protected]
7817 S:      Maintained
7818 F:      drivers/gpu/drm/exynos/exynos_dp*
7819
7820 EXYNOS SYSMMU (IOMMU) driver
7821 M:      Marek Szyprowski <[email protected]>
7822 L:      [email protected]
7823 S:      Maintained
7824 F:      drivers/iommu/exynos-iommu.c
7825
7826 F2FS FILE SYSTEM
7827 M:      Jaegeuk Kim <[email protected]>
7828 M:      Chao Yu <[email protected]>
7829 L:      [email protected]
7830 S:      Maintained
7831 W:      https://f2fs.wiki.kernel.org/
7832 Q:      https://patchwork.kernel.org/project/f2fs/list/
7833 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=f2fs
7834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7835 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7836 F:      Documentation/filesystems/f2fs.rst
7837 F:      fs/f2fs/
7838 F:      include/linux/f2fs_fs.h
7839 F:      include/trace/events/f2fs.h
7840 F:      include/uapi/linux/f2fs.h
7841
7842 F71805F HARDWARE MONITORING DRIVER
7843 M:      Jean Delvare <[email protected]>
7844 L:      [email protected]
7845 S:      Maintained
7846 F:      Documentation/hwmon/f71805f.rst
7847 F:      drivers/hwmon/f71805f.c
7848
7849 FADDR2LINE
7850 M:      Josh Poimboeuf <[email protected]>
7851 S:      Maintained
7852 F:      scripts/faddr2line
7853
7854 FAILOVER MODULE
7855 M:      Sridhar Samudrala <[email protected]>
7856 L:      [email protected]
7857 S:      Supported
7858 F:      Documentation/networking/failover.rst
7859 F:      include/net/failover.h
7860 F:      net/core/failover.c
7861
7862 FANOTIFY
7863 M:      Jan Kara <[email protected]>
7864 R:      Amir Goldstein <[email protected]>
7865 R:      Matthew Bobrowski <[email protected]>
7866 L:      [email protected]
7867 S:      Maintained
7868 F:      fs/notify/fanotify/
7869 F:      include/linux/fanotify.h
7870 F:      include/uapi/linux/fanotify.h
7871
7872 FARADAY FOTG210 USB2 DUAL-ROLE CONTROLLER
7873 M:      Linus Walleij <[email protected]>
7874 L:      [email protected]
7875 S:      Maintained
7876 F:      drivers/usb/fotg210/
7877
7878 FARSYNC SYNCHRONOUS DRIVER
7879 M:      Kevin Curtis <[email protected]>
7880 S:      Supported
7881 W:      http://www.farsite.co.uk/
7882 F:      drivers/net/wan/farsync.*
7883
7884 FAULT INJECTION SUPPORT
7885 M:      Akinobu Mita <[email protected]>
7886 S:      Supported
7887 F:      Documentation/fault-injection/
7888 F:      lib/fault-inject.c
7889
7890 FBTFT Framebuffer drivers
7891 L:      [email protected]
7892 L:      [email protected]
7893 S:      Orphan
7894 F:      drivers/staging/fbtft/
7895
7896 FC0011 TUNER DRIVER
7897 M:      Michael Buesch <[email protected]>
7898 L:      [email protected]
7899 S:      Maintained
7900 F:      drivers/media/tuners/fc0011.c
7901 F:      drivers/media/tuners/fc0011.h
7902
7903 FC2580 MEDIA DRIVER
7904 M:      Antti Palosaari <[email protected]>
7905 L:      [email protected]
7906 S:      Maintained
7907 W:      https://linuxtv.org
7908 W:      http://palosaari.fi/linux/
7909 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7910 T:      git git://linuxtv.org/anttip/media_tree.git
7911 F:      drivers/media/tuners/fc2580*
7912
7913 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7914 M:      Hannes Reinecke <[email protected]>
7915 L:      [email protected]
7916 S:      Supported
7917 W:      www.Open-FCoE.org
7918 F:      drivers/scsi/fcoe/
7919 F:      drivers/scsi/libfc/
7920 F:      include/scsi/fc/
7921 F:      include/scsi/libfc.h
7922 F:      include/scsi/libfcoe.h
7923 F:      include/uapi/scsi/fc/
7924
7925 FILE LOCKING (flock() and fcntl()/lockf())
7926 M:      Jeff Layton <[email protected]>
7927 M:      Chuck Lever <[email protected]>
7928 L:      [email protected]
7929 S:      Maintained
7930 F:      fs/fcntl.c
7931 F:      fs/locks.c
7932 F:      include/linux/fcntl.h
7933 F:      include/uapi/linux/fcntl.h
7934
7935 FILESYSTEM DIRECT ACCESS (DAX)
7936 M:      Dan Williams <[email protected]>
7937 R:      Matthew Wilcox <[email protected]>
7938 R:      Jan Kara <[email protected]>
7939 L:      [email protected]
7940 L:      [email protected]
7941 S:      Supported
7942 F:      fs/dax.c
7943 F:      include/linux/dax.h
7944 F:      include/trace/events/fs_dax.h
7945
7946 FILESYSTEMS (VFS and infrastructure)
7947 M:      Alexander Viro <[email protected]>
7948 M:      Christian Brauner <[email protected]>
7949 L:      [email protected]
7950 S:      Maintained
7951 F:      fs/*
7952 F:      include/linux/fs.h
7953 F:      include/linux/fs_types.h
7954 F:      include/uapi/linux/fs.h
7955 F:      include/uapi/linux/openat2.h
7956
7957 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7958 M:      Riku Voipio <[email protected]>
7959 L:      [email protected]
7960 S:      Maintained
7961 F:      drivers/hwmon/f75375s.c
7962 F:      include/linux/f75375s.h
7963
7964 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7965 M:      Clemens Ladisch <[email protected]>
7966 M:      Takashi Sakamoto <[email protected]>
7967 L:      [email protected] (moderated for non-subscribers)
7968 S:      Maintained
7969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7970 F:      include/uapi/sound/firewire.h
7971 F:      sound/firewire/
7972
7973 FIREWIRE MEDIA DRIVERS (firedtv)
7974 M:      Stefan Richter <[email protected]>
7975 L:      [email protected]
7976 L:      [email protected]
7977 S:      Maintained
7978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7979 F:      drivers/media/firewire/
7980
7981 FIREWIRE SBP-2 TARGET
7982 M:      Chris Boot <[email protected]>
7983 L:      [email protected]
7984 L:      [email protected]
7985 L:      [email protected]
7986 S:      Maintained
7987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7988 F:      drivers/target/sbp/
7989
7990 FIREWIRE SUBSYSTEM
7991 M:      Stefan Richter <[email protected]>
7992 L:      [email protected]
7993 S:      Maintained
7994 W:      http://ieee1394.wiki.kernel.org/
7995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7996 F:      drivers/firewire/
7997 F:      include/linux/firewire.h
7998 F:      include/uapi/linux/firewire*.h
7999 F:      tools/firewire/
8000
8001 FIRMWARE FRAMEWORK FOR ARMV8-A
8002 M:      Sudeep Holla <[email protected]>
8003 L:      [email protected] (moderated for non-subscribers)
8004 S:      Maintained
8005 F:      drivers/firmware/arm_ffa/
8006 F:      include/linux/arm_ffa.h
8007
8008 FIRMWARE LOADER (request_firmware)
8009 M:      Luis Chamberlain <[email protected]>
8010 M:      Russ Weight <[email protected]>
8011 L:      [email protected]
8012 S:      Maintained
8013 F:      Documentation/firmware_class/
8014 F:      drivers/base/firmware_loader/
8015 F:      include/linux/firmware.h
8016
8017 FLEXTIMER FTM-QUADDEC DRIVER
8018 M:      Patrick Havelange <[email protected]>
8019 L:      [email protected]
8020 S:      Maintained
8021 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
8022 F:      drivers/counter/ftm-quaddec.c
8023
8024 FLOPPY DRIVER
8025 M:      Denis Efremov <[email protected]>
8026 L:      [email protected]
8027 S:      Odd Fixes
8028 F:      drivers/block/floppy.c
8029
8030 FLYSKY FSIA6B RC RECEIVER
8031 M:      Markus Koch <[email protected]>
8032 L:      [email protected]
8033 S:      Maintained
8034 F:      drivers/input/joystick/fsia6b.c
8035
8036 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
8037 M:      Geoffrey D. Bennett <[email protected]>
8038 L:      [email protected] (moderated for non-subscribers)
8039 S:      Maintained
8040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8041 F:      sound/usb/mixer_scarlett_gen2.c
8042
8043 FORCEDETH GIGABIT ETHERNET DRIVER
8044 M:      Rain River <[email protected]>
8045 M:      Zhu Yanjun <[email protected]>
8046 L:      [email protected]
8047 S:      Maintained
8048 F:      drivers/net/ethernet/nvidia/*
8049
8050 FORTIFY_SOURCE
8051 M:      Kees Cook <[email protected]>
8052 L:      [email protected]
8053 S:      Supported
8054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8055 F:      include/linux/fortify-string.h
8056 F:      lib/fortify_kunit.c
8057 F:      lib/memcpy_kunit.c
8058 F:      lib/strscpy_kunit.c
8059 F:      lib/test_fortify/*
8060 F:      scripts/test_fortify.sh
8061 K:      \b__NO_FORTIFY\b
8062
8063 FPGA DFL DRIVERS
8064 M:      Wu Hao <[email protected]>
8065 R:      Tom Rix <[email protected]>
8066 L:      [email protected]
8067 S:      Maintained
8068 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8069 F:      Documentation/fpga/dfl.rst
8070 F:      drivers/fpga/dfl*
8071 F:      drivers/uio/uio_dfl.c
8072 F:      include/linux/dfl.h
8073 F:      include/uapi/linux/fpga-dfl.h
8074
8075 FPGA MANAGER FRAMEWORK
8076 M:      Moritz Fischer <[email protected]>
8077 M:      Wu Hao <[email protected]>
8078 M:      Xu Yilun <[email protected]>
8079 R:      Tom Rix <[email protected]>
8080 L:      [email protected]
8081 S:      Maintained
8082 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8084 F:      Documentation/devicetree/bindings/fpga/
8085 F:      Documentation/driver-api/fpga/
8086 F:      Documentation/fpga/
8087 F:      drivers/fpga/
8088 F:      include/linux/fpga/
8089
8090 INTEL MAX10 BMC SECURE UPDATES
8091 M:      Russ Weight <[email protected]>
8092 L:      [email protected]
8093 S:      Maintained
8094 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8095 F:      drivers/fpga/intel-m10-bmc-sec-update.c
8096
8097 MICROCHIP POLARFIRE FPGA DRIVERS
8098 M:      Conor Dooley <[email protected]>
8099 R:      Ivan Bornyakov <[email protected]>
8100 L:      [email protected]
8101 S:      Supported
8102 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8103 F:      drivers/fpga/microchip-spi.c
8104
8105 FPU EMULATOR
8106 M:      Bill Metzenthen <[email protected]>
8107 S:      Maintained
8108 W:      https://floatingpoint.billm.au/
8109 F:      arch/x86/math-emu/
8110
8111 FRAMEBUFFER CORE
8112 M:      Daniel Vetter <[email protected]>
8113 F:      drivers/video/fbdev/core/
8114 S:      Odd Fixes
8115 T:      git git://anongit.freedesktop.org/drm/drm-misc
8116
8117 FRAMEBUFFER LAYER
8118 M:      Helge Deller <[email protected]>
8119 L:      [email protected]
8120 L:      [email protected]
8121 S:      Maintained
8122 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8124 F:      Documentation/fb/
8125 F:      drivers/video/
8126 F:      include/linux/fb.h
8127 F:      include/uapi/linux/fb.h
8128 F:      include/uapi/video/
8129 F:      include/video/
8130
8131 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8132 M:      Horia Geantă <[email protected]>
8133 M:      Pankaj Gupta <[email protected]>
8134 M:      Gaurav Jain <[email protected]>
8135 L:      [email protected]
8136 S:      Maintained
8137 F:      Documentation/devicetree/bindings/crypto/fsl,sec-v4.0*
8138 F:      drivers/crypto/caam/
8139
8140 FREESCALE COLDFIRE M5441X MMC DRIVER
8141 M:      Angelo Dureghello <[email protected]>
8142 L:      [email protected]
8143 S:      Maintained
8144 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8145 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8146
8147 FREESCALE DIU FRAMEBUFFER DRIVER
8148 M:      Timur Tabi <[email protected]>
8149 L:      [email protected]
8150 S:      Maintained
8151 F:      drivers/video/fbdev/fsl-diu-fb.*
8152
8153 FREESCALE DMA DRIVER
8154 M:      Li Yang <[email protected]>
8155 M:      Zhang Wei <[email protected]>
8156 L:      [email protected]
8157 S:      Maintained
8158 F:      drivers/dma/fsldma.*
8159
8160 FREESCALE DSPI DRIVER
8161 M:      Vladimir Oltean <[email protected]>
8162 L:      [email protected]
8163 S:      Maintained
8164 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8165 F:      drivers/spi/spi-fsl-dspi.c
8166 F:      include/linux/spi/spi-fsl-dspi.h
8167
8168 FREESCALE ENETC ETHERNET DRIVERS
8169 M:      Claudiu Manoil <[email protected]>
8170 L:      [email protected]
8171 S:      Maintained
8172 F:      drivers/net/ethernet/freescale/enetc/
8173
8174 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8175 M:      Claudiu Manoil <[email protected]>
8176 L:      [email protected]
8177 S:      Maintained
8178 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8179 F:      drivers/net/ethernet/freescale/gianfar*
8180
8181 FREESCALE GPMI NAND DRIVER
8182 M:      Han Xu <[email protected]>
8183 L:      [email protected]
8184 S:      Maintained
8185 F:      drivers/mtd/nand/raw/gpmi-nand/*
8186
8187 FREESCALE I2C CPM DRIVER
8188 M:      Jochen Friedrich <[email protected]>
8189 L:      [email protected]
8190 L:      [email protected]
8191 S:      Maintained
8192 F:      drivers/i2c/busses/i2c-cpm.c
8193
8194 FREESCALE IMX / MXC FEC DRIVER
8195 M:      Wei Fang <[email protected]>
8196 R:      Shenwei Wang <[email protected]>
8197 R:      Clark Wang <[email protected]>
8198 R:      NXP Linux Team <[email protected]>
8199 L:      [email protected]
8200 S:      Maintained
8201 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8202 F:      drivers/net/ethernet/freescale/fec.h
8203 F:      drivers/net/ethernet/freescale/fec_main.c
8204 F:      drivers/net/ethernet/freescale/fec_ptp.c
8205
8206 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8207 M:      Sascha Hauer <[email protected]>
8208 R:      Pengutronix Kernel Team <[email protected]>
8209 L:      [email protected]
8210 L:      [email protected] (moderated for non-subscribers)
8211 S:      Maintained
8212 F:      drivers/video/fbdev/imxfb.c
8213
8214 FREESCALE IMX DDR PMU DRIVER
8215 M:      Frank Li <[email protected]>
8216 L:      [email protected] (moderated for non-subscribers)
8217 S:      Maintained
8218 F:      Documentation/admin-guide/perf/imx-ddr.rst
8219 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8220 F:      drivers/perf/fsl_imx8_ddr_perf.c
8221
8222 FREESCALE IMX I2C DRIVER
8223 M:      Oleksij Rempel <[email protected]>
8224 R:      Pengutronix Kernel Team <[email protected]>
8225 L:      [email protected]
8226 S:      Maintained
8227 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8228 F:      drivers/i2c/busses/i2c-imx.c
8229
8230 FREESCALE IMX LPI2C DRIVER
8231 M:      Dong Aisheng <[email protected]>
8232 L:      [email protected]
8233 L:      [email protected]
8234 S:      Maintained
8235 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8236 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8237
8238 FREESCALE MPC I2C DRIVER
8239 M:      Chris Packham <[email protected]>
8240 L:      [email protected]
8241 S:      Maintained
8242 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8243 F:      drivers/i2c/busses/i2c-mpc.c
8244
8245 FREESCALE QORIQ DPAA ETHERNET DRIVER
8246 M:      Madalin Bucur <[email protected]>
8247 L:      [email protected]
8248 S:      Maintained
8249 F:      drivers/net/ethernet/freescale/dpaa
8250
8251 FREESCALE QORIQ DPAA FMAN DRIVER
8252 M:      Madalin Bucur <[email protected]>
8253 R:      Sean Anderson <[email protected]>
8254 L:      [email protected]
8255 S:      Maintained
8256 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8257 F:      drivers/net/ethernet/freescale/fman
8258
8259 FREESCALE QORIQ PTP CLOCK DRIVER
8260 M:      Yangbo Lu <[email protected]>
8261 L:      [email protected]
8262 S:      Maintained
8263 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8264 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8265 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8266 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8267 F:      drivers/ptp/ptp_qoriq.c
8268 F:      drivers/ptp/ptp_qoriq_debugfs.c
8269 F:      include/linux/fsl/ptp_qoriq.h
8270
8271 FREESCALE QUAD SPI DRIVER
8272 M:      Han Xu <[email protected]>
8273 L:      [email protected]
8274 S:      Maintained
8275 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8276 F:      drivers/spi/spi-fsl-qspi.c
8277
8278 FREESCALE QUICC ENGINE LIBRARY
8279 M:      Qiang Zhao <[email protected]>
8280 L:      [email protected]
8281 S:      Maintained
8282 F:      drivers/soc/fsl/qe/
8283 F:      include/soc/fsl/qe/
8284
8285 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8286 M:      Li Yang <[email protected]>
8287 L:      [email protected]
8288 L:      [email protected]
8289 S:      Maintained
8290 F:      drivers/net/ethernet/freescale/ucc_geth*
8291
8292 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8293 M:      Zhao Qiang <[email protected]>
8294 L:      [email protected]
8295 L:      [email protected]
8296 S:      Maintained
8297 F:      drivers/net/wan/fsl_ucc_hdlc*
8298
8299 FREESCALE QUICC ENGINE UCC UART DRIVER
8300 M:      Timur Tabi <[email protected]>
8301 L:      [email protected]
8302 S:      Maintained
8303 F:      drivers/tty/serial/ucc_uart.c
8304
8305 FREESCALE SOC DRIVERS
8306 M:      Li Yang <[email protected]>
8307 L:      [email protected]
8308 L:      [email protected] (moderated for non-subscribers)
8309 S:      Maintained
8310 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8311 F:      Documentation/devicetree/bindings/soc/fsl/
8312 F:      drivers/soc/fsl/
8313 F:      include/linux/fsl/
8314 F:      include/soc/fsl/
8315
8316 FREESCALE SOC FS_ENET DRIVER
8317 M:      Pantelis Antoniou <[email protected]>
8318 L:      [email protected]
8319 L:      [email protected]
8320 S:      Maintained
8321 F:      drivers/net/ethernet/freescale/fs_enet/
8322 F:      include/linux/fs_enet_pd.h
8323
8324 FREESCALE SOC SOUND DRIVERS
8325 M:      Shengjiu Wang <[email protected]>
8326 M:      Xiubo Li <[email protected]>
8327 R:      Fabio Estevam <[email protected]>
8328 R:      Nicolin Chen <[email protected]>
8329 L:      [email protected] (moderated for non-subscribers)
8330 L:      [email protected]
8331 S:      Maintained
8332 F:      sound/soc/fsl/fsl*
8333 F:      sound/soc/fsl/imx*
8334 F:      sound/soc/fsl/mpc8610_hpcd.c
8335
8336 FREESCALE USB PERIPHERAL DRIVERS
8337 M:      Li Yang <[email protected]>
8338 L:      [email protected]
8339 L:      [email protected]
8340 S:      Maintained
8341 F:      drivers/usb/gadget/udc/fsl*
8342
8343 FREESCALE USB PHY DRIVER
8344 M:      Ran Wang <[email protected]>
8345 L:      [email protected]
8346 L:      [email protected]
8347 S:      Maintained
8348 F:      drivers/usb/phy/phy-fsl-usb*
8349
8350 FREEVXFS FILESYSTEM
8351 M:      Christoph Hellwig <[email protected]>
8352 S:      Maintained
8353 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8354 F:      fs/freevxfs/
8355
8356 FREEZER
8357 M:      "Rafael J. Wysocki" <[email protected]>
8358 M:      Pavel Machek <[email protected]>
8359 L:      [email protected]
8360 S:      Supported
8361 F:      Documentation/power/freezing-of-tasks.rst
8362 F:      include/linux/freezer.h
8363 F:      kernel/freezer.c
8364
8365 FRONTSWAP API
8366 M:      Konrad Rzeszutek Wilk <[email protected]>
8367 L:      [email protected]
8368 S:      Maintained
8369 F:      include/linux/frontswap.h
8370 F:      mm/frontswap.c
8371
8372 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8373 M:      David Howells <[email protected]>
8374 L:      [email protected] (moderated for non-subscribers)
8375 S:      Supported
8376 F:      Documentation/filesystems/caching/
8377 F:      fs/fscache/
8378 F:      include/linux/fscache*.h
8379
8380 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8381 M:      Eric Biggers <[email protected]>
8382 M:      Theodore Y. Ts'o <[email protected]>
8383 M:      Jaegeuk Kim <[email protected]>
8384 L:      [email protected]
8385 S:      Supported
8386 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8387 T:      git https://git.kernel.org/pub/scm/fs/fscrypt/linux.git
8388 F:      Documentation/filesystems/fscrypt.rst
8389 F:      fs/crypto/
8390 F:      include/linux/fscrypt.h
8391 F:      include/uapi/linux/fscrypt.h
8392
8393 FSI SUBSYSTEM
8394 M:      Jeremy Kerr <[email protected]>
8395 M:      Joel Stanley <[email protected]>
8396 R:      Alistar Popple <[email protected]>
8397 R:      Eddie James <[email protected]>
8398 L:      [email protected]
8399 S:      Supported
8400 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8402 F:      drivers/fsi/
8403 F:      include/linux/fsi*.h
8404 F:      include/trace/events/fsi*.h
8405
8406 FSI-ATTACHED I2C DRIVER
8407 M:      Eddie James <[email protected]>
8408 L:      [email protected]
8409 L:      [email protected] (moderated for non-subscribers)
8410 S:      Maintained
8411 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8412 F:      drivers/i2c/busses/i2c-fsi.c
8413
8414 FSI-ATTACHED SPI DRIVER
8415 M:      Eddie James <[email protected]>
8416 L:      [email protected]
8417 S:      Maintained
8418 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8419 F:      drivers/spi/spi-fsi.c
8420
8421 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8422 M:      Jan Kara <[email protected]>
8423 R:      Amir Goldstein <[email protected]>
8424 L:      [email protected]
8425 S:      Maintained
8426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8427 F:      fs/notify/
8428 F:      include/linux/fsnotify*.h
8429
8430 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8431 M:      Eric Biggers <[email protected]>
8432 M:      Theodore Y. Ts'o <[email protected]>
8433 L:      [email protected]
8434 S:      Supported
8435 Q:      https://patchwork.kernel.org/project/fsverity/list/
8436 T:      git https://git.kernel.org/pub/scm/fs/fsverity/linux.git
8437 F:      Documentation/filesystems/fsverity.rst
8438 F:      fs/verity/
8439 F:      include/linux/fsverity.h
8440 F:      include/uapi/linux/fsverity.h
8441
8442 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8443 M:      Michael Zaidman <[email protected]>
8444 L:      [email protected]
8445 L:      [email protected]
8446 S:      Maintained
8447 F:      drivers/hid/hid-ft260.c
8448
8449 FUJITSU LAPTOP EXTRAS
8450 M:      Jonathan Woithe <[email protected]>
8451 L:      [email protected]
8452 S:      Maintained
8453 F:      drivers/platform/x86/fujitsu-laptop.c
8454
8455 FUJITSU TABLET EXTRAS
8456 M:      Robert Gerlach <[email protected]>
8457 L:      [email protected]
8458 S:      Maintained
8459 F:      drivers/platform/x86/fujitsu-tablet.c
8460
8461 FUNCTION HOOKS (FTRACE)
8462 M:      Steven Rostedt <[email protected]>
8463 M:      Masami Hiramatsu <[email protected]>
8464 R:      Mark Rutland <[email protected]>
8465 L:      [email protected]
8466 L:      [email protected]
8467 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
8468 S:      Maintained
8469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
8470 F:      Documentation/trace/ftrace*
8471 F:      kernel/trace/ftrace*
8472 F:      kernel/trace/fgraph.c
8473 F:      arch/*/*/*/*ftrace*
8474 F:      arch/*/*/*ftrace*
8475 F:      include/*/ftrace.h
8476 F:      samples/ftrace
8477
8478 FUNGIBLE ETHERNET DRIVERS
8479 M:      Dimitris Michailidis <[email protected]>
8480 L:      [email protected]
8481 S:      Supported
8482 F:      drivers/net/ethernet/fungible/
8483
8484 FUSE: FILESYSTEM IN USERSPACE
8485 M:      Miklos Szeredi <[email protected]>
8486 L:      [email protected]
8487 S:      Maintained
8488 W:      https://github.com/libfuse/
8489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8490 F:      Documentation/filesystems/fuse.rst
8491 F:      fs/fuse/
8492 F:      include/uapi/linux/fuse.h
8493
8494 FUTEX SUBSYSTEM
8495 M:      Thomas Gleixner <[email protected]>
8496 M:      Ingo Molnar <[email protected]>
8497 R:      Peter Zijlstra <[email protected]>
8498 R:      Darren Hart <[email protected]>
8499 R:      Davidlohr Bueso <[email protected]>
8500 R:      André Almeida <[email protected]>
8501 L:      [email protected]
8502 S:      Maintained
8503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8504 F:      Documentation/locking/*futex*
8505 F:      include/asm-generic/futex.h
8506 F:      include/linux/futex.h
8507 F:      include/uapi/linux/futex.h
8508 F:      kernel/futex/*
8509 F:      tools/perf/bench/futex*
8510 F:      tools/testing/selftests/futex/
8511
8512 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8513 M:      Tim Harvey <[email protected]>
8514 S:      Maintained
8515 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8516 F:      drivers/mfd/gateworks-gsc.c
8517 F:      include/linux/mfd/gsc.h
8518 F:      Documentation/hwmon/gsc-hwmon.rst
8519 F:      drivers/hwmon/gsc-hwmon.c
8520 F:      include/linux/platform_data/gsc_hwmon.h
8521
8522 GCC PLUGINS
8523 M:      Kees Cook <[email protected]>
8524 L:      [email protected]
8525 S:      Maintained
8526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8527 F:      Documentation/kbuild/gcc-plugins.rst
8528 F:      scripts/Makefile.gcc-plugins
8529 F:      scripts/gcc-plugins/
8530
8531 GCOV BASED KERNEL PROFILING
8532 M:      Peter Oberparleiter <[email protected]>
8533 S:      Maintained
8534 F:      Documentation/dev-tools/gcov.rst
8535 F:      kernel/gcov/
8536
8537 GDB KERNEL DEBUGGING HELPER SCRIPTS
8538 M:      Jan Kiszka <[email protected]>
8539 M:      Kieran Bingham <[email protected]>
8540 S:      Supported
8541 F:      scripts/gdb/
8542
8543 GEMINI CRYPTO DRIVER
8544 M:      Corentin Labbe <[email protected]>
8545 L:      [email protected]
8546 S:      Maintained
8547 F:      drivers/crypto/gemini/
8548
8549 GEMTEK FM RADIO RECEIVER DRIVER
8550 M:      Hans Verkuil <[email protected]>
8551 L:      [email protected]
8552 S:      Maintained
8553 W:      https://linuxtv.org
8554 T:      git git://linuxtv.org/media_tree.git
8555 F:      drivers/media/radio/radio-gemtek*
8556
8557 GENERIC ARCHITECTURE TOPOLOGY
8558 M:      Sudeep Holla <[email protected]>
8559 L:      [email protected]
8560 S:      Maintained
8561 F:      drivers/base/arch_topology.c
8562 F:      include/linux/arch_topology.h
8563
8564 GENERIC ENTRY CODE
8565 M:      Thomas Gleixner <[email protected]>
8566 M:      Peter Zijlstra <[email protected]>
8567 M:      Andy Lutomirski <[email protected]>
8568 L:      [email protected]
8569 S:      Maintained
8570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8571 F:      include/linux/entry-common.h
8572 F:      include/linux/entry-kvm.h
8573 F:      kernel/entry/
8574
8575 GENERIC GPIO I2C DRIVER
8576 M:      Wolfram Sang <[email protected]>
8577 S:      Supported
8578 F:      drivers/i2c/busses/i2c-gpio.c
8579 F:      include/linux/platform_data/i2c-gpio.h
8580
8581 GENERIC GPIO I2C MULTIPLEXER DRIVER
8582 M:      Peter Korsgaard <[email protected]>
8583 L:      [email protected]
8584 S:      Supported
8585 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8586 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8587 F:      include/linux/platform_data/i2c-mux-gpio.h
8588
8589 GENERIC HDLC (WAN) DRIVERS
8590 M:      Krzysztof Halasa <[email protected]>
8591 S:      Maintained
8592 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8593 F:      drivers/net/wan/c101.c
8594 F:      drivers/net/wan/hd6457*
8595 F:      drivers/net/wan/hdlc*
8596 F:      drivers/net/wan/n2.c
8597 F:      drivers/net/wan/pc300too.c
8598 F:      drivers/net/wan/pci200syn.c
8599 F:      drivers/net/wan/wanxl*
8600
8601 GENERIC INCLUDE/ASM HEADER FILES
8602 M:      Arnd Bergmann <[email protected]>
8603 L:      [email protected]
8604 S:      Maintained
8605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8606 F:      include/asm-generic/
8607 F:      include/uapi/asm-generic/
8608
8609 GENERIC PHY FRAMEWORK
8610 M:      Vinod Koul <[email protected]>
8611 M:      Kishon Vijay Abraham I <[email protected]>
8612 L:      [email protected]
8613 S:      Supported
8614 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8616 F:      Documentation/devicetree/bindings/phy/
8617 F:      drivers/phy/
8618 F:      include/dt-bindings/phy/
8619 F:      include/linux/phy/
8620
8621 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8622 M:      Wolfram Sang <[email protected]>
8623 S:      Supported
8624 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8625
8626 GENERIC PM DOMAINS
8627 M:      "Rafael J. Wysocki" <[email protected]>
8628 M:      Kevin Hilman <[email protected]>
8629 M:      Ulf Hansson <[email protected]>
8630 L:      [email protected]
8631 S:      Supported
8632 F:      Documentation/devicetree/bindings/power/power?domain*
8633 F:      drivers/base/power/domain*.c
8634 F:      include/linux/pm_domain.h
8635
8636 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8637 M:      Eugen Hristev <[email protected]>
8638 L:      [email protected]
8639 S:      Maintained
8640 F:      drivers/input/touchscreen/resistive-adc-touch.c
8641
8642 GENERIC STRING LIBRARY
8643 R:      Andy Shevchenko <[email protected]>
8644 S:      Maintained
8645 F:      lib/string.c
8646 F:      lib/string_helpers.c
8647 F:      lib/test_string.c
8648 F:      lib/test-string_helpers.c
8649
8650 GENERIC UIO DRIVER FOR PCI DEVICES
8651 M:      "Michael S. Tsirkin" <[email protected]>
8652 L:      [email protected]
8653 S:      Supported
8654 F:      drivers/uio/uio_pci_generic.c
8655
8656 GENERIC VDSO LIBRARY
8657 M:      Andy Lutomirski <[email protected]>
8658 M:      Thomas Gleixner <[email protected]>
8659 M:      Vincenzo Frascino <[email protected]>
8660 L:      [email protected]
8661 S:      Maintained
8662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8663 F:      include/asm-generic/vdso/vsyscall.h
8664 F:      include/vdso/
8665 F:      kernel/time/vsyscall.c
8666 F:      lib/vdso/
8667
8668 GENWQE (IBM Generic Workqueue Card)
8669 M:      Frank Haverkamp <[email protected]>
8670 S:      Supported
8671 F:      drivers/misc/genwqe/
8672
8673 GET_MAINTAINER SCRIPT
8674 M:      Joe Perches <[email protected]>
8675 S:      Maintained
8676 F:      scripts/get_maintainer.pl
8677
8678 GFS2 FILE SYSTEM
8679 M:      Bob Peterson <[email protected]>
8680 M:      Andreas Gruenbacher <[email protected]>
8681 L:      [email protected]
8682 S:      Supported
8683 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8685 F:      Documentation/filesystems/gfs2*
8686 F:      fs/gfs2/
8687 F:      include/uapi/linux/gfs2_ondisk.h
8688
8689 GIGABYTE WMI DRIVER
8690 M:      Thomas Weißschuh <[email protected]>
8691 L:      [email protected]
8692 S:      Maintained
8693 F:      drivers/platform/x86/gigabyte-wmi.c
8694
8695 GNSS SUBSYSTEM
8696 M:      Johan Hovold <[email protected]>
8697 S:      Maintained
8698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8699 F:      Documentation/ABI/testing/sysfs-class-gnss
8700 F:      Documentation/devicetree/bindings/gnss/
8701 F:      drivers/gnss/
8702 F:      include/linux/gnss.h
8703
8704 GO7007 MPEG CODEC
8705 M:      Hans Verkuil <[email protected]>
8706 L:      [email protected]
8707 S:      Maintained
8708 F:      drivers/media/usb/go7007/
8709
8710 GOODIX TOUCHSCREEN
8711 M:      Bastien Nocera <[email protected]>
8712 M:      Hans de Goede <[email protected]>
8713 L:      [email protected]
8714 S:      Maintained
8715 F:      drivers/input/touchscreen/goodix*
8716
8717 GOOGLE ETHERNET DRIVERS
8718 M:      Jeroen de Borst <[email protected]>
8719 M:      Praveen Kaligineedi <[email protected]>
8720 R:      Shailend Chand <[email protected]>
8721 L:      [email protected]
8722 S:      Supported
8723 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8724 F:      drivers/net/ethernet/google
8725
8726 GPD POCKET FAN DRIVER
8727 M:      Hans de Goede <[email protected]>
8728 L:      [email protected]
8729 S:      Maintained
8730 F:      drivers/platform/x86/gpd-pocket-fan.c
8731
8732 GPIO ACPI SUPPORT
8733 M:      Mika Westerberg <[email protected]>
8734 M:      Andy Shevchenko <[email protected]>
8735 L:      [email protected]
8736 L:      [email protected]
8737 S:      Supported
8738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8739 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8740 F:      drivers/gpio/gpiolib-acpi.c
8741 F:      drivers/gpio/gpiolib-acpi.h
8742
8743 GPIO AGGREGATOR
8744 M:      Geert Uytterhoeven <[email protected]>
8745 L:      [email protected]
8746 S:      Supported
8747 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8748 F:      drivers/gpio/gpio-aggregator.c
8749
8750 GPIO IR Transmitter
8751 M:      Sean Young <[email protected]>
8752 L:      [email protected]
8753 S:      Maintained
8754 F:      Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.yaml
8755 F:      drivers/media/rc/gpio-ir-tx.c
8756
8757 GPIO MOCKUP DRIVER
8758 M:      Bamvor Jian Zhang <[email protected]>
8759 L:      [email protected]
8760 S:      Maintained
8761 F:      drivers/gpio/gpio-mockup.c
8762 F:      tools/testing/selftests/gpio/
8763
8764 GPIO REGMAP
8765 R:      Michael Walle <[email protected]>
8766 S:      Maintained
8767 F:      drivers/gpio/gpio-regmap.c
8768 F:      include/linux/gpio/regmap.h
8769
8770 GPIO SUBSYSTEM
8771 M:      Linus Walleij <[email protected]>
8772 M:      Bartosz Golaszewski <[email protected]>
8773 L:      [email protected]
8774 S:      Maintained
8775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8776 F:      Documentation/ABI/obsolete/sysfs-gpio
8777 F:      Documentation/ABI/testing/gpio-cdev
8778 F:      Documentation/admin-guide/gpio/
8779 F:      Documentation/devicetree/bindings/gpio/
8780 F:      Documentation/driver-api/gpio/
8781 F:      drivers/gpio/
8782 F:      include/dt-bindings/gpio/
8783 F:      include/linux/gpio.h
8784 F:      include/linux/gpio/
8785 F:      include/linux/of_gpio.h
8786 F:      include/uapi/linux/gpio.h
8787 F:      tools/gpio/
8788
8789 GRE DEMULTIPLEXER DRIVER
8790 M:      Dmitry Kozlov <[email protected]>
8791 L:      [email protected]
8792 S:      Maintained
8793 F:      include/net/gre.h
8794 F:      net/ipv4/gre_demux.c
8795 F:      net/ipv4/gre_offload.c
8796
8797 GRETH 10/100/1G Ethernet MAC device driver
8798 M:      Andreas Larsson <[email protected]>
8799 L:      [email protected]
8800 S:      Maintained
8801 F:      drivers/net/ethernet/aeroflex/
8802
8803 GREYBUS AUDIO PROTOCOLS DRIVERS
8804 M:      Vaibhav Agarwal <[email protected]>
8805 M:      Mark Greer <[email protected]>
8806 S:      Maintained
8807 F:      drivers/staging/greybus/audio_apbridgea.c
8808 F:      drivers/staging/greybus/audio_apbridgea.h
8809 F:      drivers/staging/greybus/audio_codec.c
8810 F:      drivers/staging/greybus/audio_codec.h
8811 F:      drivers/staging/greybus/audio_gb.c
8812 F:      drivers/staging/greybus/audio_manager.c
8813 F:      drivers/staging/greybus/audio_manager.h
8814 F:      drivers/staging/greybus/audio_manager_module.c
8815 F:      drivers/staging/greybus/audio_manager_private.h
8816 F:      drivers/staging/greybus/audio_manager_sysfs.c
8817 F:      drivers/staging/greybus/audio_module.c
8818 F:      drivers/staging/greybus/audio_topology.c
8819
8820 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8821 M:      Viresh Kumar <[email protected]>
8822 S:      Maintained
8823 F:      drivers/staging/greybus/authentication.c
8824 F:      drivers/staging/greybus/bootrom.c
8825 F:      drivers/staging/greybus/firmware.h
8826 F:      drivers/staging/greybus/fw-core.c
8827 F:      drivers/staging/greybus/fw-download.c
8828 F:      drivers/staging/greybus/fw-management.c
8829 F:      drivers/staging/greybus/greybus_authentication.h
8830 F:      drivers/staging/greybus/greybus_firmware.h
8831 F:      drivers/staging/greybus/hid.c
8832 F:      drivers/staging/greybus/i2c.c
8833 F:      drivers/staging/greybus/spi.c
8834 F:      drivers/staging/greybus/spilib.c
8835 F:      drivers/staging/greybus/spilib.h
8836
8837 GREYBUS LOOPBACK DRIVER
8838 M:      Bryan O'Donoghue <[email protected]>
8839 S:      Maintained
8840 F:      drivers/staging/greybus/loopback.c
8841
8842 GREYBUS PLATFORM DRIVERS
8843 M:      Vaibhav Hiremath <[email protected]>
8844 S:      Maintained
8845 F:      drivers/staging/greybus/arche-apb-ctrl.c
8846 F:      drivers/staging/greybus/arche-platform.c
8847 F:      drivers/staging/greybus/arche_platform.h
8848
8849 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8850 M:      Rui Miguel Silva <[email protected]>
8851 S:      Maintained
8852 F:      drivers/staging/greybus/gpio.c
8853 F:      drivers/staging/greybus/light.c
8854 F:      drivers/staging/greybus/power_supply.c
8855 F:      drivers/staging/greybus/sdio.c
8856 F:      drivers/staging/greybus/spi.c
8857 F:      drivers/staging/greybus/spilib.c
8858
8859 GREYBUS SUBSYSTEM
8860 M:      Johan Hovold <[email protected]>
8861 M:      Alex Elder <[email protected]>
8862 M:      Greg Kroah-Hartman <[email protected]>
8863 L:      [email protected] (moderated for non-subscribers)
8864 S:      Maintained
8865 F:      drivers/greybus/
8866 F:      drivers/staging/greybus/
8867 F:      include/linux/greybus.h
8868 F:      include/linux/greybus/
8869
8870 GREYBUS UART PROTOCOLS DRIVERS
8871 M:      David Lin <[email protected]>
8872 S:      Maintained
8873 F:      drivers/staging/greybus/log.c
8874 F:      drivers/staging/greybus/uart.c
8875
8876 GS1662 VIDEO SERIALIZER
8877 M:      Charles-Antoine Couret <[email protected]>
8878 L:      [email protected]
8879 S:      Maintained
8880 T:      git git://linuxtv.org/media_tree.git
8881 F:      drivers/media/spi/gs1662.c
8882
8883 GSPCA FINEPIX SUBDRIVER
8884 M:      Frank Zago <[email protected]>
8885 L:      [email protected]
8886 S:      Maintained
8887 T:      git git://linuxtv.org/media_tree.git
8888 F:      drivers/media/usb/gspca/finepix.c
8889
8890 GSPCA GL860 SUBDRIVER
8891 M:      Olivier Lorin <[email protected]>
8892 L:      [email protected]
8893 S:      Maintained
8894 T:      git git://linuxtv.org/media_tree.git
8895 F:      drivers/media/usb/gspca/gl860/
8896
8897 GSPCA M5602 SUBDRIVER
8898 M:      Erik Andren <[email protected]>
8899 L:      [email protected]
8900 S:      Maintained
8901 T:      git git://linuxtv.org/media_tree.git
8902 F:      drivers/media/usb/gspca/m5602/
8903
8904 GSPCA PAC207 SONIXB SUBDRIVER
8905 M:      Hans Verkuil <[email protected]>
8906 L:      [email protected]
8907 S:      Odd Fixes
8908 T:      git git://linuxtv.org/media_tree.git
8909 F:      drivers/media/usb/gspca/pac207.c
8910
8911 GSPCA SN9C20X SUBDRIVER
8912 M:      Brian Johnson <[email protected]>
8913 L:      [email protected]
8914 S:      Maintained
8915 T:      git git://linuxtv.org/media_tree.git
8916 F:      drivers/media/usb/gspca/sn9c20x.c
8917
8918 GSPCA T613 SUBDRIVER
8919 M:      Leandro Costantino <[email protected]>
8920 L:      [email protected]
8921 S:      Maintained
8922 T:      git git://linuxtv.org/media_tree.git
8923 F:      drivers/media/usb/gspca/t613.c
8924
8925 GSPCA USB WEBCAM DRIVER
8926 M:      Hans Verkuil <[email protected]>
8927 L:      [email protected]
8928 S:      Odd Fixes
8929 T:      git git://linuxtv.org/media_tree.git
8930 F:      drivers/media/usb/gspca/
8931
8932 GTP (GPRS Tunneling Protocol)
8933 M:      Pablo Neira Ayuso <[email protected]>
8934 M:      Harald Welte <[email protected]>
8935 L:      [email protected]
8936 S:      Maintained
8937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8938 F:      drivers/net/gtp.c
8939
8940 GUID PARTITION TABLE (GPT)
8941 M:      Davidlohr Bueso <[email protected]>
8942 L:      [email protected]
8943 S:      Maintained
8944 F:      block/partitions/efi.*
8945
8946 HABANALABS PCI DRIVER
8947 M:      Oded Gabbay <[email protected]>
8948 L:      [email protected]
8949 S:      Supported
8950 C:      irc://irc.oftc.net/dri-devel
8951 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8952 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8953 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8954 F:      drivers/accel/habanalabs/
8955 F:      include/trace/events/habanalabs.h
8956 F:      include/uapi/drm/habanalabs_accel.h
8957
8958 HACKRF MEDIA DRIVER
8959 M:      Antti Palosaari <[email protected]>
8960 L:      [email protected]
8961 S:      Maintained
8962 W:      https://linuxtv.org
8963 W:      http://palosaari.fi/linux/
8964 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8965 T:      git git://linuxtv.org/anttip/media_tree.git
8966 F:      drivers/media/usb/hackrf/
8967
8968 HANDSHAKE UPCALL FOR TRANSPORT LAYER SECURITY
8969 M:      Chuck Lever <[email protected]>
8970 L:      [email protected]
8971 L:      [email protected]
8972 S:      Maintained
8973 F:      Documentation/netlink/specs/handshake.yaml
8974 F:      Documentation/networking/tls-handshake.rst
8975 F:      include/net/handshake.h
8976 F:      include/trace/events/handshake.h
8977 F:      net/handshake/
8978
8979 HANTRO VPU CODEC DRIVER
8980 M:      Ezequiel Garcia <[email protected]>
8981 M:      Philipp Zabel <[email protected]>
8982 L:      [email protected]
8983 L:      [email protected]
8984 S:      Maintained
8985 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8986 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8987 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8988 F:      drivers/media/platform/verisilicon/
8989
8990 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8991 M:      Frank Seidel <[email protected]>
8992 L:      [email protected]
8993 S:      Maintained
8994 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8995 F:      drivers/platform/x86/hdaps.c
8996
8997 HARDWARE MONITORING
8998 M:      Jean Delvare <[email protected]>
8999 M:      Guenter Roeck <[email protected]>
9000 L:      [email protected]
9001 S:      Maintained
9002 W:      http://hwmon.wiki.kernel.org/
9003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
9004 F:      Documentation/ABI/testing/sysfs-class-hwmon
9005 F:      Documentation/devicetree/bindings/hwmon/
9006 F:      Documentation/hwmon/
9007 F:      drivers/hwmon/
9008 F:      include/linux/hwmon*.h
9009 F:      include/trace/events/hwmon*.h
9010 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
9011
9012 HARDWARE RANDOM NUMBER GENERATOR CORE
9013 M:      Olivia Mackall <[email protected]>
9014 M:      Herbert Xu <[email protected]>
9015 L:      [email protected]
9016 S:      Odd fixes
9017 F:      Documentation/admin-guide/hw_random.rst
9018 F:      Documentation/devicetree/bindings/rng/
9019 F:      drivers/char/hw_random/
9020 F:      include/linux/hw_random.h
9021
9022 HARDWARE SPINLOCK CORE
9023 M:      Ohad Ben-Cohen <[email protected]>
9024 M:      Bjorn Andersson <[email protected]>
9025 R:      Baolin Wang <[email protected]>
9026 L:      [email protected]
9027 S:      Maintained
9028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
9029 F:      Documentation/devicetree/bindings/hwlock/
9030 F:      Documentation/locking/hwspinlock.rst
9031 F:      drivers/hwspinlock/
9032 F:      include/linux/hwspinlock.h
9033
9034 HARDWARE TRACING FACILITIES
9035 M:      Alexander Shishkin <[email protected]>
9036 S:      Maintained
9037 F:      drivers/hwtracing/
9038
9039 HARMONY SOUND DRIVER
9040 L:      [email protected]
9041 S:      Maintained
9042 F:      sound/parisc/harmony.*
9043
9044 HDPVR USB VIDEO ENCODER DRIVER
9045 M:      Hans Verkuil <[email protected]>
9046 L:      [email protected]
9047 S:      Odd Fixes
9048 W:      https://linuxtv.org
9049 T:      git git://linuxtv.org/media_tree.git
9050 F:      drivers/media/usb/hdpvr/
9051
9052 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
9053 M:      Matt Hsiao <[email protected]>
9054 S:      Supported
9055 F:      drivers/misc/hpilo.[ch]
9056
9057 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
9058 M:      Jerry Hoemann <[email protected]>
9059 S:      Supported
9060 F:      Documentation/watchdog/hpwdt.rst
9061 F:      drivers/watchdog/hpwdt.c
9062
9063 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
9064 M:      Don Brace <[email protected]>
9065 L:      [email protected]
9066 L:      [email protected]
9067 S:      Supported
9068 F:      Documentation/scsi/hpsa.rst
9069 F:      drivers/scsi/hpsa*.[ch]
9070 F:      include/linux/cciss*.h
9071 F:      include/uapi/linux/cciss*.h
9072
9073 HFI1 DRIVER
9074 M:      Dennis Dalessandro <[email protected]>
9075 L:      [email protected]
9076 S:      Supported
9077 F:      drivers/infiniband/hw/hfi1
9078
9079 HFS FILESYSTEM
9080 L:      [email protected]
9081 S:      Orphan
9082 F:      Documentation/filesystems/hfs.rst
9083 F:      fs/hfs/
9084
9085 HFSPLUS FILESYSTEM
9086 L:      [email protected]
9087 S:      Orphan
9088 F:      Documentation/filesystems/hfsplus.rst
9089 F:      fs/hfsplus/
9090
9091 HGA FRAMEBUFFER DRIVER
9092 M:      Ferenc Bakonyi <[email protected]>
9093 L:      [email protected]
9094 S:      Maintained
9095 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9096 F:      drivers/video/fbdev/hgafb.c
9097
9098 HIBERNATION (aka Software Suspend, aka swsusp)
9099 M:      "Rafael J. Wysocki" <[email protected]>
9100 M:      Pavel Machek <[email protected]>
9101 L:      [email protected]
9102 S:      Supported
9103 B:      https://bugzilla.kernel.org
9104 F:      arch/*/include/asm/suspend*.h
9105 F:      arch/x86/power/
9106 F:      drivers/base/power/
9107 F:      include/linux/freezer.h
9108 F:      include/linux/pm.h
9109 F:      include/linux/suspend.h
9110 F:      kernel/power/
9111
9112 HID CORE LAYER
9113 M:      Jiri Kosina <[email protected]>
9114 M:      Benjamin Tissoires <[email protected]>
9115 L:      [email protected]
9116 S:      Maintained
9117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9118 F:      Documentation/hid/
9119 F:      drivers/hid/
9120 F:      include/linux/hid*
9121 F:      include/uapi/linux/hid*
9122 F:      samples/hid/
9123 F:      tools/testing/selftests/hid/
9124
9125 HID LOGITECH DRIVERS
9126 R:      Filipe Laíns <[email protected]>
9127 L:      [email protected]
9128 S:      Maintained
9129 F:      drivers/hid/hid-logitech-*
9130
9131 HID++ LOGITECH DRIVERS
9132 R:      Filipe Laíns <[email protected]>
9133 R:      Bastien Nocera <[email protected]>
9134 L:      [email protected]
9135 S:      Maintained
9136 F:      drivers/hid/hid-logitech-hidpp.c
9137
9138 HID PLAYSTATION DRIVER
9139 M:      Roderick Colenbrander <[email protected]>
9140 L:      [email protected]
9141 S:      Supported
9142 F:      drivers/hid/hid-playstation.c
9143
9144 HID PHOENIX RC FLIGHT CONTROLLER
9145 M:      Marcus Folkesson <[email protected]>
9146 L:      [email protected]
9147 S:      Maintained
9148 F:      drivers/hid/hid-pxrc.c
9149
9150 HID SENSOR HUB DRIVERS
9151 M:      Jiri Kosina <[email protected]>
9152 M:      Jonathan Cameron <[email protected]>
9153 M:      Srinivas Pandruvada <[email protected]>
9154 L:      [email protected]
9155 L:      [email protected]
9156 S:      Maintained
9157 F:      Documentation/hid/hid-sensor*
9158 F:      drivers/hid/hid-sensor-*
9159 F:      drivers/iio/*/hid-*
9160 F:      include/linux/hid-sensor-*
9161
9162 HID VRC-2 CAR CONTROLLER DRIVER
9163 M:      Marcus Folkesson <[email protected]>
9164 L:      [email protected]
9165 S:      Maintained
9166 F:      drivers/hid/hid-vrc2.c
9167
9168 HID WACOM DRIVER
9169 M:      Ping Cheng <[email protected]>
9170 M:      Jason Gerecke  <[email protected]>
9171 L:      [email protected]
9172 S:      Maintained
9173 F:      drivers/hid/wacom.h
9174 F:      drivers/hid/wacom_*
9175
9176 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9177 M:      Thomas Gleixner <[email protected]>
9178 L:      [email protected]
9179 S:      Maintained
9180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9181 F:      Documentation/timers/
9182 F:      include/linux/clockchips.h
9183 F:      include/linux/hrtimer.h
9184 F:      kernel/time/clockevents.c
9185 F:      kernel/time/hrtimer.c
9186 F:      kernel/time/timer_*.c
9187
9188 HIGH-SPEED SCC DRIVER FOR AX.25
9189 L:      [email protected]
9190 S:      Orphan
9191 F:      drivers/net/hamradio/scc.c
9192
9193 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9194 M:      HighPoint Linux Team <[email protected]>
9195 S:      Supported
9196 W:      http://www.highpoint-tech.com
9197 F:      Documentation/scsi/hptiop.rst
9198 F:      drivers/scsi/hptiop.c
9199
9200 HIMAX HX83112B TOUCHSCREEN SUPPORT
9201 M:      Job Noorman <[email protected]>
9202 L:      [email protected]
9203 S:      Maintained
9204 F:      Documentation/devicetree/bindings/input/touchscreen/himax,hx83112b.yaml
9205 F:      drivers/input/touchscreen/himax_hx83112b.c
9206
9207 HIPPI
9208 M:      Jes Sorensen <[email protected]>
9209 L:      [email protected]
9210 S:      Maintained
9211 F:      drivers/net/hippi/
9212 F:      include/linux/hippidevice.h
9213 F:      include/uapi/linux/if_hippi.h
9214 F:      net/802/hippi.c
9215
9216 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9217 M:      Kurt Kanzenbach <[email protected]>
9218 L:      [email protected]
9219 S:      Maintained
9220 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9221 F:      drivers/net/dsa/hirschmann/*
9222 F:      include/linux/platform_data/hirschmann-hellcreek.h
9223 F:      net/dsa/tag_hellcreek.c
9224
9225 HISILICON DMA DRIVER
9226 M:      Zhou Wang <[email protected]>
9227 M:      Jie Hai <[email protected]>
9228 L:      [email protected]
9229 S:      Maintained
9230 F:      drivers/dma/hisi_dma.c
9231
9232 HISILICON GPIO DRIVER
9233 M:      Jay Fang <[email protected]>
9234 L:      [email protected]
9235 S:      Maintained
9236 F:      Documentation/devicetree/bindings/gpio/hisilicon,ascend910-gpio.yaml
9237 F:      drivers/gpio/gpio-hisi.c
9238
9239 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9240 M:      Longfang Liu <[email protected]>
9241 L:      [email protected]
9242 S:      Maintained
9243 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9244 F:      drivers/crypto/hisilicon/hpre/hpre.h
9245 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9246 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9247
9248 HISILICON I2C CONTROLLER DRIVER
9249 M:      Yicong Yang <[email protected]>
9250 L:      [email protected]
9251 S:      Maintained
9252 W:      https://www.hisilicon.com
9253 F:      Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
9254 F:      drivers/i2c/busses/i2c-hisi.c
9255
9256 HISILICON LPC BUS DRIVER
9257 M:      Jay Fang <[email protected]>
9258 S:      Maintained
9259 W:      http://www.hisilicon.com
9260 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9261 F:      drivers/bus/hisi_lpc.c
9262
9263 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9264 M:      Yisen Zhuang <[email protected]>
9265 M:      Salil Mehta <[email protected]>
9266 L:      [email protected]
9267 S:      Maintained
9268 W:      http://www.hisilicon.com
9269 F:      drivers/net/ethernet/hisilicon/hns3/
9270
9271 HISILICON NETWORK SUBSYSTEM DRIVER
9272 M:      Yisen Zhuang <[email protected]>
9273 M:      Salil Mehta <[email protected]>
9274 L:      [email protected]
9275 S:      Maintained
9276 W:      http://www.hisilicon.com
9277 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9278 F:      drivers/net/ethernet/hisilicon/
9279
9280 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9281 M:      John Stultz <[email protected]>
9282 L:      [email protected]
9283 S:      Maintained
9284 F:      drivers/misc/hisi_hikey_usb.c
9285
9286 HISILICON PMU DRIVER
9287 M:      Shaokun Zhang <[email protected]>
9288 M:      Jonathan Cameron <[email protected]>
9289 S:      Supported
9290 W:      http://www.hisilicon.com
9291 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9292 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9293 F:      drivers/perf/hisilicon
9294
9295 HISILICON HNS3 PMU DRIVER
9296 M:      Guangbin Huang <[email protected]>
9297 S:      Supported
9298 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9299 F:      drivers/perf/hisilicon/hns3_pmu.c
9300
9301 HISILICON PTT DRIVER
9302 M:      Yicong Yang <[email protected]>
9303 M:      Jonathan Cameron <[email protected]>
9304 L:      [email protected]
9305 S:      Maintained
9306 F:      Documentation/ABI/testing/sysfs-devices-hisi_ptt
9307 F:      Documentation/trace/hisi-ptt.rst
9308 F:      drivers/hwtracing/ptt/
9309 F:      tools/perf/arch/arm64/util/hisi-ptt.c
9310 F:      tools/perf/util/hisi-ptt*
9311 F:      tools/perf/util/hisi-ptt-decoder/*
9312
9313 HISILICON QM DRIVER
9314 M:      Weili Qian <[email protected]>
9315 M:      Zhou Wang <[email protected]>
9316 L:      [email protected]
9317 S:      Maintained
9318 F:      drivers/crypto/hisilicon/Kconfig
9319 F:      drivers/crypto/hisilicon/Makefile
9320 F:      drivers/crypto/hisilicon/qm.c
9321 F:      drivers/crypto/hisilicon/sgl.c
9322 F:      include/linux/hisi_acc_qm.h
9323
9324 HISILICON ZIP Controller DRIVER
9325 M:      Yang Shen <[email protected]>
9326 M:      Zhou Wang <[email protected]>
9327 L:      [email protected]
9328 S:      Maintained
9329 F:      Documentation/ABI/testing/debugfs-hisi-zip
9330 F:      drivers/crypto/hisilicon/zip/
9331
9332 HISILICON ROCE DRIVER
9333 M:      Haoyue Xu <[email protected]>
9334 M:      Wenpeng Liang <[email protected]>
9335 L:      [email protected]
9336 S:      Maintained
9337 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9338 F:      drivers/infiniband/hw/hns/
9339
9340 HISILICON SAS Controller
9341 M:      Xiang Chen <[email protected]>
9342 S:      Supported
9343 W:      http://www.hisilicon.com
9344 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9345 F:      drivers/scsi/hisi_sas/
9346
9347 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9348 M:      Kai Ye <[email protected]>
9349 M:      Longfang Liu <[email protected]>
9350 L:      [email protected]
9351 S:      Maintained
9352 F:      Documentation/ABI/testing/debugfs-hisi-sec
9353 F:      drivers/crypto/hisilicon/sec2/sec.h
9354 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9355 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9356 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9357
9358 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9359 M:      Jay Fang <[email protected]>
9360 L:      [email protected]
9361 S:      Maintained
9362 W:      http://www.hisilicon.com
9363 F:      drivers/spi/spi-hisi-kunpeng.c
9364
9365 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9366 M:      Mauro Carvalho Chehab <[email protected]>
9367 L:      [email protected]
9368 S:      Maintained
9369 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9370 F:      drivers/spmi/hisi-spmi-controller.c
9371
9372 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9373 M:      Mauro Carvalho Chehab <[email protected]>
9374 L:      [email protected]
9375 S:      Maintained
9376 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9377 F:      drivers/mfd/hi6421-spmi-pmic.c
9378
9379 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9380 M:      Weili Qian <[email protected]>
9381 S:      Maintained
9382 F:      drivers/crypto/hisilicon/trng/trng.c
9383
9384 HISILICON V3XX SPI NOR FLASH Controller Driver
9385 M:      Jay Fang <[email protected]>
9386 S:      Maintained
9387 W:      http://www.hisilicon.com
9388 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9389
9390 HMM - Heterogeneous Memory Management
9391 M:      Jérôme Glisse <[email protected]>
9392 L:      [email protected]
9393 S:      Maintained
9394 F:      Documentation/mm/hmm.rst
9395 F:      include/linux/hmm*
9396 F:      lib/test_hmm*
9397 F:      mm/hmm*
9398 F:      tools/testing/selftests/mm/*hmm*
9399
9400 HOST AP DRIVER
9401 M:      Jouni Malinen <[email protected]>
9402 L:      [email protected]
9403 S:      Obsolete
9404 W:      http://w1.fi/hostap-driver.html
9405 F:      drivers/net/wireless/intersil/hostap/
9406
9407 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9408 L:      [email protected]
9409 S:      Orphan
9410 F:      drivers/platform/x86/hp/tc1100-wmi.c
9411
9412 HPET:   High Precision Event Timers driver
9413 M:      Clemens Ladisch <[email protected]>
9414 S:      Maintained
9415 F:      Documentation/timers/hpet.rst
9416 F:      drivers/char/hpet.c
9417 F:      include/linux/hpet.h
9418 F:      include/uapi/linux/hpet.h
9419
9420 HPET:   x86
9421 S:      Orphan
9422 F:      arch/x86/include/asm/hpet.h
9423 F:      arch/x86/kernel/hpet.c
9424
9425 HPFS FILESYSTEM
9426 M:      Mikulas Patocka <[email protected]>
9427 S:      Maintained
9428 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9429 F:      fs/hpfs/
9430
9431 HSI SUBSYSTEM
9432 M:      Sebastian Reichel <[email protected]>
9433 S:      Maintained
9434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9435 F:      Documentation/ABI/testing/sysfs-bus-hsi
9436 F:      Documentation/driver-api/hsi.rst
9437 F:      drivers/hsi/
9438 F:      include/linux/hsi/
9439 F:      include/uapi/linux/hsi/
9440
9441 HSO 3G MODEM DRIVER
9442 L:      [email protected]
9443 S:      Orphan
9444 F:      drivers/net/usb/hso.c
9445
9446 HSR NETWORK PROTOCOL
9447 L:      [email protected]
9448 S:      Orphan
9449 F:      net/hsr/
9450
9451 HT16K33 LED CONTROLLER DRIVER
9452 M:      Robin van der Gracht <[email protected]>
9453 S:      Maintained
9454 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9455 F:      drivers/auxdisplay/ht16k33.c
9456
9457 HTCPEN TOUCHSCREEN DRIVER
9458 M:      Pau Oliva Fora <[email protected]>
9459 L:      [email protected]
9460 S:      Maintained
9461 F:      drivers/input/touchscreen/htcpen.c
9462
9463 HTE SUBSYSTEM
9464 M:      Dipen Patel <[email protected]>
9465 S:      Maintained
9466 F:      Documentation/devicetree/bindings/timestamp/
9467 F:      Documentation/driver-api/hte/
9468 F:      drivers/hte/
9469 F:      include/linux/hte.h
9470
9471 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9472 M:      Lorenzo Bianconi <[email protected]>
9473 L:      [email protected]
9474 S:      Maintained
9475 W:      http://www.st.com/
9476 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9477 F:      drivers/iio/humidity/hts221*
9478
9479 HUAWEI ETHERNET DRIVER
9480 M:      Cai Huoqing <[email protected]>
9481 L:      [email protected]
9482 S:      Maintained
9483 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9484 F:      drivers/net/ethernet/huawei/hinic/
9485
9486 HUGETLB SUBSYSTEM
9487 M:      Mike Kravetz <[email protected]>
9488 M:      Muchun Song <[email protected]>
9489 L:      [email protected]
9490 S:      Maintained
9491 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9492 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9493 F:      Documentation/mm/hugetlbfs_reserv.rst
9494 F:      Documentation/mm/vmemmap_dedup.rst
9495 F:      fs/hugetlbfs/
9496 F:      include/linux/hugetlb.h
9497 F:      mm/hugetlb.c
9498 F:      mm/hugetlb_vmemmap.c
9499 F:      mm/hugetlb_vmemmap.h
9500
9501 HVA ST MEDIA DRIVER
9502 M:      Jean-Christophe Trotin <[email protected]>
9503 L:      [email protected]
9504 S:      Supported
9505 W:      https://linuxtv.org
9506 T:      git git://linuxtv.org/media_tree.git
9507 F:      drivers/media/platform/st/sti/hva
9508
9509 HWPOISON MEMORY FAILURE HANDLING
9510 M:      Naoya Horiguchi <[email protected]>
9511 R:      Miaohe Lin <[email protected]>
9512 L:      [email protected]
9513 S:      Maintained
9514 F:      mm/hwpoison-inject.c
9515 F:      mm/memory-failure.c
9516
9517 HYCON HY46XX TOUCHSCREEN SUPPORT
9518 M:      Giulio Benetti <[email protected]>
9519 L:      [email protected]
9520 S:      Maintained
9521 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9522 F:      drivers/input/touchscreen/hycon-hy46xx.c
9523
9524 HYGON PROCESSOR SUPPORT
9525 M:      Pu Wen <[email protected]>
9526 L:      [email protected]
9527 S:      Maintained
9528 F:      arch/x86/kernel/cpu/hygon.c
9529
9530 HYNIX HI556 SENSOR DRIVER
9531 M:      Shawn Tu <[email protected]>
9532 L:      [email protected]
9533 S:      Maintained
9534 T:      git git://linuxtv.org/media_tree.git
9535 F:      drivers/media/i2c/hi556.c
9536
9537 HYNIX HI846 SENSOR DRIVER
9538 M:      Martin Kepplinger <[email protected]>
9539 L:      [email protected]
9540 S:      Maintained
9541 F:      drivers/media/i2c/hi846.c
9542
9543 HYNIX HI847 SENSOR DRIVER
9544 M:      Shawn Tu <[email protected]>
9545 L:      [email protected]
9546 S:      Maintained
9547 F:      drivers/media/i2c/hi847.c
9548
9549 Hyper-V/Azure CORE AND DRIVERS
9550 M:      "K. Y. Srinivasan" <[email protected]>
9551 M:      Haiyang Zhang <[email protected]>
9552 M:      Wei Liu <[email protected]>
9553 M:      Dexuan Cui <[email protected]>
9554 L:      [email protected]
9555 S:      Supported
9556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9557 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9558 F:      Documentation/ABI/testing/debugfs-hyperv
9559 F:      Documentation/virt/hyperv
9560 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9561 F:      arch/arm64/hyperv
9562 F:      arch/arm64/include/asm/hyperv-tlfs.h
9563 F:      arch/arm64/include/asm/mshyperv.h
9564 F:      arch/x86/hyperv
9565 F:      arch/x86/include/asm/hyperv-tlfs.h
9566 F:      arch/x86/include/asm/mshyperv.h
9567 F:      arch/x86/include/asm/trace/hyperv.h
9568 F:      arch/x86/kernel/cpu/mshyperv.c
9569 F:      drivers/clocksource/hyperv_timer.c
9570 F:      drivers/hid/hid-hyperv.c
9571 F:      drivers/hv/
9572 F:      drivers/input/serio/hyperv-keyboard.c
9573 F:      drivers/iommu/hyperv-iommu.c
9574 F:      drivers/net/ethernet/microsoft/
9575 F:      drivers/net/hyperv/
9576 F:      drivers/pci/controller/pci-hyperv-intf.c
9577 F:      drivers/pci/controller/pci-hyperv.c
9578 F:      drivers/scsi/storvsc_drv.c
9579 F:      drivers/uio/uio_hv_generic.c
9580 F:      drivers/video/fbdev/hyperv_fb.c
9581 F:      include/asm-generic/hyperv-tlfs.h
9582 F:      include/asm-generic/mshyperv.h
9583 F:      include/clocksource/hyperv_timer.h
9584 F:      include/linux/hyperv.h
9585 F:      include/net/mana
9586 F:      include/uapi/linux/hyperv.h
9587 F:      net/vmw_vsock/hyperv_transport.c
9588 F:      tools/hv/
9589
9590 HYPERBUS SUPPORT
9591 M:      Vignesh Raghavendra <[email protected]>
9592 L:      [email protected]
9593 S:      Supported
9594 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9595 C:      irc://irc.oftc.net/mtd
9596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9597 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9598 F:      drivers/mtd/hyperbus/
9599 F:      include/linux/mtd/hyperbus.h
9600
9601 HYPERVISOR VIRTUAL CONSOLE DRIVER
9602 L:      [email protected]
9603 S:      Odd Fixes
9604 F:      drivers/tty/hvc/
9605
9606 I2C ACPI SUPPORT
9607 M:      Mika Westerberg <[email protected]>
9608 L:      [email protected]
9609 L:      [email protected]
9610 S:      Maintained
9611 F:      drivers/i2c/i2c-core-acpi.c
9612
9613 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9614 M:      Ajay Gupta <[email protected]>
9615 L:      [email protected]
9616 S:      Maintained
9617 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9618 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9619
9620 I2C MUXES
9621 M:      Peter Rosin <[email protected]>
9622 L:      [email protected]
9623 S:      Maintained
9624 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9625 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9626 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9627 F:      Documentation/i2c/i2c-topology.rst
9628 F:      Documentation/i2c/muxes/
9629 F:      drivers/i2c/i2c-mux.c
9630 F:      drivers/i2c/muxes/
9631 F:      include/linux/i2c-mux.h
9632
9633 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9634 M:      Gregory CLEMENT <[email protected]>
9635 L:      [email protected]
9636 S:      Maintained
9637 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9638 F:      drivers/i2c/busses/i2c-mv64xxx.c
9639
9640 I2C OVER PARALLEL PORT
9641 M:      Jean Delvare <[email protected]>
9642 L:      [email protected]
9643 S:      Maintained
9644 F:      Documentation/i2c/busses/i2c-parport.rst
9645 F:      drivers/i2c/busses/i2c-parport.c
9646
9647 I2C SUBSYSTEM
9648 M:      Wolfram Sang <[email protected]>
9649 L:      [email protected]
9650 S:      Maintained
9651 W:      https://i2c.wiki.kernel.org/
9652 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9654 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9655 F:      Documentation/i2c/
9656 F:      drivers/i2c/*
9657 F:      include/dt-bindings/i2c/i2c.h
9658 F:      include/linux/i2c-dev.h
9659 F:      include/linux/i2c-smbus.h
9660 F:      include/linux/i2c.h
9661 F:      include/uapi/linux/i2c-*.h
9662 F:      include/uapi/linux/i2c.h
9663
9664 I2C SUBSYSTEM HOST DRIVERS
9665 L:      [email protected]
9666 S:      Odd Fixes
9667 W:      https://i2c.wiki.kernel.org/
9668 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9670 F:      Documentation/devicetree/bindings/i2c/
9671 F:      drivers/i2c/algos/
9672 F:      drivers/i2c/busses/
9673 F:      include/dt-bindings/i2c/
9674
9675 I2C-TAOS-EVM DRIVER
9676 M:      Jean Delvare <[email protected]>
9677 L:      [email protected]
9678 S:      Maintained
9679 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9680 F:      drivers/i2c/busses/i2c-taos-evm.c
9681
9682 I2C-TINY-USB DRIVER
9683 M:      Till Harbaum <[email protected]>
9684 L:      [email protected]
9685 S:      Maintained
9686 W:      http://www.harbaum.org/till/i2c_tiny_usb
9687 F:      drivers/i2c/busses/i2c-tiny-usb.c
9688
9689 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9690 M:      Jean Delvare <[email protected]>
9691 L:      [email protected]
9692 S:      Maintained
9693 F:      Documentation/i2c/busses/i2c-ali1535.rst
9694 F:      Documentation/i2c/busses/i2c-ali1563.rst
9695 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9696 F:      Documentation/i2c/busses/i2c-amd756.rst
9697 F:      Documentation/i2c/busses/i2c-amd8111.rst
9698 F:      Documentation/i2c/busses/i2c-i801.rst
9699 F:      Documentation/i2c/busses/i2c-nforce2.rst
9700 F:      Documentation/i2c/busses/i2c-piix4.rst
9701 F:      Documentation/i2c/busses/i2c-sis5595.rst
9702 F:      Documentation/i2c/busses/i2c-sis630.rst
9703 F:      Documentation/i2c/busses/i2c-sis96x.rst
9704 F:      Documentation/i2c/busses/i2c-via.rst
9705 F:      Documentation/i2c/busses/i2c-viapro.rst
9706 F:      drivers/i2c/busses/i2c-ali1535.c
9707 F:      drivers/i2c/busses/i2c-ali1563.c
9708 F:      drivers/i2c/busses/i2c-ali15x3.c
9709 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9710 F:      drivers/i2c/busses/i2c-amd756.c
9711 F:      drivers/i2c/busses/i2c-amd8111.c
9712 F:      drivers/i2c/busses/i2c-i801.c
9713 F:      drivers/i2c/busses/i2c-isch.c
9714 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9715 F:      drivers/i2c/busses/i2c-nforce2.c
9716 F:      drivers/i2c/busses/i2c-piix4.c
9717 F:      drivers/i2c/busses/i2c-sis5595.c
9718 F:      drivers/i2c/busses/i2c-sis630.c
9719 F:      drivers/i2c/busses/i2c-sis96x.c
9720 F:      drivers/i2c/busses/i2c-via.c
9721 F:      drivers/i2c/busses/i2c-viapro.c
9722
9723 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9724 M:      Hans de Goede <[email protected]>
9725 L:      [email protected]
9726 S:      Maintained
9727 F:      drivers/i2c/busses/i2c-cht-wc.c
9728
9729 I2C/SMBUS ISMT DRIVER
9730 M:      Seth Heasley <[email protected]>
9731 M:      Neil Horman <[email protected]>
9732 L:      [email protected]
9733 F:      Documentation/i2c/busses/i2c-ismt.rst
9734 F:      drivers/i2c/busses/i2c-ismt.c
9735
9736 I2C/SMBUS STUB DRIVER
9737 M:      Jean Delvare <[email protected]>
9738 L:      [email protected]
9739 S:      Maintained
9740 F:      drivers/i2c/i2c-stub.c
9741
9742 I3C DRIVER FOR CADENCE I3C MASTER IP
9743 M:      Przemysław Gaj <[email protected]>
9744 S:      Maintained
9745 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9746 F:      drivers/i3c/master/i3c-master-cdns.c
9747
9748 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9749 S:      Orphan
9750 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9751 F:      drivers/i3c/master/dw*
9752
9753 I3C SUBSYSTEM
9754 M:      Alexandre Belloni <[email protected]>
9755 L:      [email protected] (moderated for non-subscribers)
9756 S:      Maintained
9757 C:      irc://chat.freenode.net/linux-i3c
9758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9759 F:      Documentation/ABI/testing/sysfs-bus-i3c
9760 F:      Documentation/devicetree/bindings/i3c/
9761 F:      Documentation/driver-api/i3c
9762 F:      drivers/i3c/
9763 F:      include/linux/i3c/
9764
9765 IA64 (Itanium) PLATFORM
9766 L:      [email protected]
9767 S:      Orphan
9768 F:      Documentation/arch/ia64/
9769 F:      arch/ia64/
9770
9771 IBM Operation Panel Input Driver
9772 M:      Eddie James <[email protected]>
9773 L:      [email protected]
9774 S:      Maintained
9775 F:      Documentation/devicetree/bindings/input/ibm,op-panel.yaml
9776 F:      drivers/input/misc/ibm-panel.c
9777
9778 IBM Power 842 compression accelerator
9779 M:      Haren Myneni <[email protected]>
9780 S:      Supported
9781 F:      crypto/842.c
9782 F:      drivers/crypto/nx/Kconfig
9783 F:      drivers/crypto/nx/Makefile
9784 F:      drivers/crypto/nx/nx-842*
9785 F:      include/linux/sw842.h
9786 F:      lib/842/
9787
9788 IBM Power in-Nest Crypto Acceleration
9789 M:      Breno Leitão <[email protected]>
9790 M:      Nayna Jain <[email protected]>
9791 M:      Paulo Flabiano Smorigo <[email protected]>
9792 L:      [email protected]
9793 S:      Supported
9794 F:      drivers/crypto/nx/Kconfig
9795 F:      drivers/crypto/nx/Makefile
9796 F:      drivers/crypto/nx/nx-aes*
9797 F:      drivers/crypto/nx/nx-sha*
9798 F:      drivers/crypto/nx/nx.*
9799 F:      drivers/crypto/nx/nx_csbcpb.h
9800 F:      drivers/crypto/nx/nx_debugfs.c
9801
9802 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9803 M:      Tyrel Datwyler <[email protected]>
9804 L:      [email protected]
9805 L:      [email protected]
9806 S:      Supported
9807 F:      drivers/pci/hotplug/rpadlpar*
9808
9809 IBM Power Linux RAID adapter
9810 M:      Brian King <[email protected]>
9811 S:      Supported
9812 F:      drivers/scsi/ipr.*
9813
9814 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9815 M:      Tyrel Datwyler <[email protected]>
9816 L:      [email protected]
9817 L:      [email protected]
9818 S:      Supported
9819 F:      drivers/pci/hotplug/rpaphp*
9820
9821 IBM Power SRIOV Virtual NIC Device Driver
9822 M:      Haren Myneni <[email protected]>
9823 M:      Rick Lindsley <[email protected]>
9824 R:      Nick Child <[email protected]>
9825 R:      Dany Madden <[email protected]>
9826 R:      Thomas Falcon <[email protected]>
9827 L:      [email protected]
9828 S:      Supported
9829 F:      drivers/net/ethernet/ibm/ibmvnic.*
9830
9831 IBM Power Virtual Ethernet Device Driver
9832 M:      Nick Child <[email protected]>
9833 L:      [email protected]
9834 S:      Supported
9835 F:      drivers/net/ethernet/ibm/ibmveth.*
9836
9837 IBM Power Virtual FC Device Drivers
9838 M:      Tyrel Datwyler <[email protected]>
9839 L:      [email protected]
9840 S:      Supported
9841 F:      drivers/scsi/ibmvscsi/ibmvfc*
9842
9843 IBM Power Virtual Management Channel Driver
9844 M:      Brad Warrum <[email protected]>
9845 M:      Ritu Agarwal <[email protected]>
9846 S:      Supported
9847 F:      drivers/misc/ibmvmc.*
9848
9849 IBM Power Virtual SCSI Device Drivers
9850 M:      Tyrel Datwyler <[email protected]>
9851 L:      [email protected]
9852 S:      Supported
9853 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9854 F:      include/scsi/viosrp.h
9855
9856 IBM Power Virtual SCSI Device Target Driver
9857 M:      Michael Cyr <[email protected]>
9858 L:      [email protected]
9859 L:      [email protected]
9860 S:      Supported
9861 F:      drivers/scsi/ibmvscsi_tgt/
9862
9863 IBM Power VMX Cryptographic instructions
9864 M:      Breno Leitão <[email protected]>
9865 M:      Nayna Jain <[email protected]>
9866 M:      Paulo Flabiano Smorigo <[email protected]>
9867 L:      [email protected]
9868 S:      Supported
9869 F:      drivers/crypto/vmx/Kconfig
9870 F:      drivers/crypto/vmx/Makefile
9871 F:      drivers/crypto/vmx/aes*
9872 F:      drivers/crypto/vmx/ghash*
9873 F:      drivers/crypto/vmx/ppc-xlate.pl
9874 F:      drivers/crypto/vmx/vmx.c
9875
9876 IBM ServeRAID RAID DRIVER
9877 S:      Orphan
9878 F:      drivers/scsi/ips.*
9879
9880 ICH LPC AND GPIO DRIVER
9881 M:      Peter Tyser <[email protected]>
9882 S:      Maintained
9883 F:      drivers/gpio/gpio-ich.c
9884 F:      drivers/mfd/lpc_ich.c
9885
9886 ICY I2C DRIVER
9887 M:      Max Staudt <[email protected]>
9888 L:      [email protected]
9889 S:      Maintained
9890 F:      drivers/i2c/busses/i2c-icy.c
9891
9892 IDEAPAD LAPTOP EXTRAS DRIVER
9893 M:      Ike Panhc <[email protected]>
9894 L:      [email protected]
9895 S:      Maintained
9896 W:      http://launchpad.net/ideapad-laptop
9897 F:      drivers/platform/x86/ideapad-laptop.c
9898
9899 IDEAPAD LAPTOP SLIDEBAR DRIVER
9900 M:      Andrey Moiseev <[email protected]>
9901 L:      [email protected]
9902 S:      Maintained
9903 W:      https://github.com/o2genum/ideapad-slidebar
9904 F:      drivers/input/misc/ideapad_slidebar.c
9905
9906 IDMAPPED MOUNTS
9907 M:      Christian Brauner <[email protected]>
9908 M:      Seth Forshee <[email protected]>
9909 L:      [email protected]
9910 S:      Maintained
9911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9912 F:      Documentation/filesystems/idmappings.rst
9913 F:      include/linux/mnt_idmapping.*
9914 F:      tools/testing/selftests/mount_setattr/
9915
9916 IDT VersaClock 5 CLOCK DRIVER
9917 M:      Luca Ceresoli <[email protected]>
9918 S:      Maintained
9919 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9920 F:      drivers/clk/clk-versaclock5.c
9921
9922 IEEE 802.15.4 SUBSYSTEM
9923 M:      Alexander Aring <[email protected]>
9924 M:      Stefan Schmidt <[email protected]>
9925 M:      Miquel Raynal <[email protected]>
9926 L:      [email protected]
9927 S:      Maintained
9928 W:      https://linux-wpan.org/
9929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9931 F:      Documentation/networking/ieee802154.rst
9932 F:      drivers/net/ieee802154/
9933 F:      include/linux/ieee802154.h
9934 F:      include/linux/nl802154.h
9935 F:      include/net/af_ieee802154.h
9936 F:      include/net/cfg802154.h
9937 F:      include/net/ieee802154_netdev.h
9938 F:      include/net/mac802154.h
9939 F:      include/net/nl802154.h
9940 F:      net/ieee802154/
9941 F:      net/mac802154/
9942
9943 IFE PROTOCOL
9944 M:      Yotam Gigi <[email protected]>
9945 M:      Jamal Hadi Salim <[email protected]>
9946 F:      include/net/ife.h
9947 F:      include/uapi/linux/ife.h
9948 F:      net/ife
9949
9950 IGORPLUG-USB IR RECEIVER
9951 M:      Sean Young <[email protected]>
9952 L:      [email protected]
9953 S:      Maintained
9954 F:      drivers/media/rc/igorplugusb.c
9955
9956 IGUANAWORKS USB IR TRANSCEIVER
9957 M:      Sean Young <[email protected]>
9958 L:      [email protected]
9959 S:      Maintained
9960 F:      drivers/media/rc/iguanair.c
9961
9962 IIO DIGITAL POTENTIOMETER DAC
9963 M:      Peter Rosin <[email protected]>
9964 L:      [email protected]
9965 S:      Maintained
9966 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9967 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9968 F:      drivers/iio/dac/dpot-dac.c
9969
9970 IIO ENVELOPE DETECTOR
9971 M:      Peter Rosin <[email protected]>
9972 L:      [email protected]
9973 S:      Maintained
9974 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9975 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9976 F:      drivers/iio/adc/envelope-detector.c
9977
9978 IIO MULTIPLEXER
9979 M:      Peter Rosin <[email protected]>
9980 L:      [email protected]
9981 S:      Maintained
9982 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9983 F:      drivers/iio/multiplexer/iio-mux.c
9984
9985 IIO SCMI BASED DRIVER
9986 M:      Jyoti Bhayana <[email protected]>
9987 L:      [email protected]
9988 S:      Maintained
9989 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9990
9991 IIO SUBSYSTEM AND DRIVERS
9992 M:      Jonathan Cameron <[email protected]>
9993 R:      Lars-Peter Clausen <[email protected]>
9994 L:      [email protected]
9995 S:      Maintained
9996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9997 F:      Documentation/ABI/testing/configfs-iio*
9998 F:      Documentation/ABI/testing/sysfs-bus-iio*
9999 F:      Documentation/devicetree/bindings/iio/
10000 F:      drivers/iio/
10001 F:      drivers/staging/iio/
10002 F:      include/dt-bindings/iio/
10003 F:      include/linux/iio/
10004 F:      tools/iio/
10005
10006 IIO UNIT CONVERTER
10007 M:      Peter Rosin <[email protected]>
10008 L:      [email protected]
10009 S:      Maintained
10010 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
10011 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
10012 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
10013 F:      drivers/iio/afe/iio-rescale.c
10014
10015 IKANOS/ADI EAGLE ADSL USB DRIVER
10016 M:      Matthieu Castet <[email protected]>
10017 M:      Stanislaw Gruszka <[email protected]>
10018 S:      Maintained
10019 F:      drivers/usb/atm/ueagle-atm.c
10020
10021 IMAGIS TOUCHSCREEN DRIVER
10022 M:      Markuss Broks <[email protected]>
10023 S:      Maintained
10024 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
10025 F:      drivers/input/touchscreen/imagis.c
10026
10027 IMGTEC ASCII LCD DRIVER
10028 M:      Paul Burton <[email protected]>
10029 S:      Maintained
10030 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
10031 F:      drivers/auxdisplay/img-ascii-lcd.c
10032
10033 IMGTEC IR DECODER DRIVER
10034 S:      Orphan
10035 F:      drivers/media/rc/img-ir/
10036
10037 IMON SOUNDGRAPH USB IR RECEIVER
10038 M:      Sean Young <[email protected]>
10039 L:      [email protected]
10040 S:      Maintained
10041 F:      drivers/media/rc/imon.c
10042 F:      drivers/media/rc/imon_raw.c
10043
10044 IMS TWINTURBO FRAMEBUFFER DRIVER
10045 L:      [email protected]
10046 S:      Orphan
10047 F:      drivers/video/fbdev/imsttfb.c
10048
10049 INA209 HARDWARE MONITOR DRIVER
10050 M:      Guenter Roeck <[email protected]>
10051 L:      [email protected]
10052 S:      Maintained
10053 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
10054 F:      Documentation/hwmon/ina209.rst
10055 F:      drivers/hwmon/ina209.c
10056
10057 INA2XX HARDWARE MONITOR DRIVER
10058 M:      Guenter Roeck <[email protected]>
10059 L:      [email protected]
10060 S:      Maintained
10061 F:      Documentation/hwmon/ina2xx.rst
10062 F:      drivers/hwmon/ina2xx.c
10063 F:      include/linux/platform_data/ina2xx.h
10064
10065 INDEX OF FURTHER KERNEL DOCUMENTATION
10066 M:      Carlos Bilbao <[email protected]>
10067 S:      Maintained
10068 F:      Documentation/process/kernel-docs.rst
10069
10070 INDUSTRY PACK SUBSYSTEM (IPACK)
10071 M:      Samuel Iglesias Gonsalvez <[email protected]>
10072 M:      Jens Taprogge <[email protected]>
10073 M:      Greg Kroah-Hartman <[email protected]>
10074 L:      [email protected]
10075 S:      Maintained
10076 W:      http://industrypack.sourceforge.net
10077 F:      drivers/ipack/
10078
10079 INFINEON DPS310 Driver
10080 M:      Eddie James <[email protected]>
10081 L:      [email protected]
10082 S:      Maintained
10083 F:      drivers/iio/pressure/dps310.c
10084
10085 INFINEON PEB2466 ASoC CODEC
10086 M:      Herve Codina <[email protected]>
10087 L:      [email protected] (moderated for non-subscribers)
10088 S:      Maintained
10089 F:      Documentation/devicetree/bindings/sound/infineon,peb2466.yaml
10090 F:      sound/soc/codecs/peb2466.c
10091
10092 INFINIBAND SUBSYSTEM
10093 M:      Jason Gunthorpe <[email protected]>
10094 M:      Leon Romanovsky <[email protected]>
10095 L:      [email protected]
10096 S:      Supported
10097 W:      https://github.com/linux-rdma/rdma-core
10098 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
10100 F:      Documentation/devicetree/bindings/infiniband/
10101 F:      Documentation/infiniband/
10102 F:      drivers/infiniband/
10103 F:      include/rdma/
10104 F:      include/trace/events/ib_mad.h
10105 F:      include/trace/events/ib_umad.h
10106 F:      include/trace/misc/rdma.h
10107 F:      include/uapi/linux/if_infiniband.h
10108 F:      include/uapi/rdma/
10109 F:      samples/bpf/ibumad_kern.c
10110 F:      samples/bpf/ibumad_user.c
10111
10112 INGENIC JZ4780 NAND DRIVER
10113 M:      Harvey Hunt <[email protected]>
10114 L:      [email protected]
10115 L:      [email protected]
10116 S:      Maintained
10117 F:      drivers/mtd/nand/raw/ingenic/
10118
10119 INGENIC JZ47xx SoCs
10120 M:      Paul Cercueil <[email protected]>
10121 L:      [email protected]
10122 S:      Maintained
10123 F:      arch/mips/boot/dts/ingenic/
10124 F:      arch/mips/generic/board-ingenic.c
10125 F:      arch/mips/include/asm/mach-ingenic/
10126 F:      arch/mips/ingenic/Kconfig
10127 F:      drivers/clk/ingenic/
10128 F:      drivers/dma/dma-jz4780.c
10129 F:      drivers/gpu/drm/ingenic/
10130 F:      drivers/i2c/busses/i2c-jz4780.c
10131 F:      drivers/iio/adc/ingenic-adc.c
10132 F:      drivers/irqchip/irq-ingenic.c
10133 F:      drivers/memory/jz4780-nemc.c
10134 F:      drivers/mmc/host/jz4740_mmc.c
10135 F:      drivers/mtd/nand/raw/ingenic/
10136 F:      drivers/pinctrl/pinctrl-ingenic.c
10137 F:      drivers/power/supply/ingenic-battery.c
10138 F:      drivers/pwm/pwm-jz4740.c
10139 F:      drivers/remoteproc/ingenic_rproc.c
10140 F:      drivers/rtc/rtc-jz4740.c
10141 F:      drivers/tty/serial/8250/8250_ingenic.c
10142 F:      drivers/usb/musb/jz4740.c
10143 F:      drivers/watchdog/jz4740_wdt.c
10144 F:      include/dt-bindings/iio/adc/ingenic,adc.h
10145 F:      include/linux/mfd/ingenic-tcu.h
10146 F:      sound/soc/codecs/jz47*
10147 F:      sound/soc/jz4740/
10148
10149 INJOINIC IP5xxx POWER BANK IC DRIVER
10150 M:      Samuel Holland <[email protected]>
10151 S:      Maintained
10152 F:      drivers/power/supply/ip5xxx_power.c
10153
10154 INOTIFY
10155 M:      Jan Kara <[email protected]>
10156 R:      Amir Goldstein <[email protected]>
10157 L:      [email protected]
10158 S:      Maintained
10159 F:      Documentation/filesystems/inotify.rst
10160 F:      fs/notify/inotify/
10161 F:      include/linux/inotify.h
10162 F:      include/uapi/linux/inotify.h
10163
10164 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10165 M:      Dmitry Torokhov <[email protected]>
10166 L:      [email protected]
10167 S:      Maintained
10168 Q:      http://patchwork.kernel.org/project/linux-input/list/
10169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10170 F:      Documentation/devicetree/bindings/input/
10171 F:      Documentation/devicetree/bindings/serio/
10172 F:      Documentation/input/
10173 F:      drivers/input/
10174 F:      include/dt-bindings/input/
10175 F:      include/linux/input.h
10176 F:      include/linux/input/
10177 F:      include/uapi/linux/input-event-codes.h
10178 F:      include/uapi/linux/input.h
10179
10180 INPUT MULTITOUCH (MT) PROTOCOL
10181 M:      Henrik Rydberg <[email protected]>
10182 L:      [email protected]
10183 S:      Odd fixes
10184 F:      Documentation/input/multi-touch-protocol.rst
10185 F:      drivers/input/input-mt.c
10186 K:      \b(ABS|SYN)_MT_
10187
10188 INSIDE SECURE CRYPTO DRIVER
10189 M:      Antoine Tenart <[email protected]>
10190 L:      [email protected]
10191 S:      Maintained
10192 F:      drivers/crypto/inside-secure/
10193
10194 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10195 M:      Mimi Zohar <[email protected]>
10196 M:      Dmitry Kasatkin <[email protected]>
10197 L:      [email protected]
10198 S:      Supported
10199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10200 F:      security/integrity/ima/
10201 F:      security/integrity/
10202
10203 INTEL 810/815 FRAMEBUFFER DRIVER
10204 M:      Antonino Daplas <[email protected]>
10205 L:      [email protected]
10206 S:      Maintained
10207 F:      drivers/video/fbdev/i810/
10208
10209 INTEL 8255 GPIO DRIVER
10210 M:      William Breathitt Gray <[email protected]>
10211 L:      [email protected]
10212 S:      Maintained
10213 F:      drivers/gpio/gpio-i8255.c
10214 F:      drivers/gpio/gpio-i8255.h
10215
10216 INTEL ASoC DRIVERS
10217 M:      Cezary Rojewski <[email protected]>
10218 M:      Pierre-Louis Bossart <[email protected]>
10219 M:      Liam Girdwood <[email protected]>
10220 M:      Peter Ujfalusi <[email protected]>
10221 M:      Bard Liao <[email protected]>
10222 M:      Ranjani Sridharan <[email protected]>
10223 M:      Kai Vehmanen <[email protected]>
10224 L:      [email protected] (moderated for non-subscribers)
10225 S:      Supported
10226 F:      sound/soc/intel/
10227
10228 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10229 M:      Hans de Goede <[email protected]>
10230 L:      [email protected]
10231 S:      Maintained
10232 F:      drivers/platform/x86/intel/atomisp2/pm.c
10233
10234 INTEL ATOMISP2 LED DRIVER
10235 M:      Hans de Goede <[email protected]>
10236 L:      [email protected]
10237 S:      Maintained
10238 F:      drivers/platform/x86/intel/atomisp2/led.c
10239
10240 INTEL BIOS SAR INT1092 DRIVER
10241 M:      Shravan Sudhakar <[email protected]>
10242 M:      Intel Corporation <[email protected]>
10243 L:      [email protected]
10244 S:      Maintained
10245 F:      drivers/platform/x86/intel/int1092/
10246
10247 INTEL BROXTON PMC DRIVER
10248 M:      Mika Westerberg <[email protected]>
10249 M:      Zha Qipeng <[email protected]>
10250 S:      Maintained
10251 F:      drivers/mfd/intel_pmc_bxt.c
10252 F:      include/linux/mfd/intel_pmc_bxt.h
10253
10254 INTEL C600 SERIES SAS CONTROLLER DRIVER
10255 M:      Artur Paszkiewicz <[email protected]>
10256 L:      [email protected]
10257 S:      Supported
10258 T:      git git://git.code.sf.net/p/intel-sas/isci
10259 F:      drivers/scsi/isci/
10260
10261 INTEL CPU family model numbers
10262 M:      Tony Luck <[email protected]>
10263 M:      [email protected]
10264 L:      [email protected]
10265 S:      Supported
10266 F:      arch/x86/include/asm/intel-family.h
10267
10268 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10269 M:      Jani Nikula <[email protected]>
10270 M:      Joonas Lahtinen <[email protected]>
10271 M:      Rodrigo Vivi <[email protected]>
10272 M:      Tvrtko Ursulin <[email protected]>
10273 L:      [email protected]
10274 S:      Supported
10275 W:      https://01.org/linuxgraphics/
10276 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10277 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10278 C:      irc://irc.oftc.net/intel-gfx
10279 T:      git git://anongit.freedesktop.org/drm-intel
10280 F:      Documentation/ABI/testing/sysfs-driver-intel-i915-hwmon
10281 F:      Documentation/gpu/i915.rst
10282 F:      drivers/gpu/drm/i915/
10283 F:      include/drm/i915*
10284 F:      include/uapi/drm/i915_drm.h
10285
10286 INTEL ETHERNET DRIVERS
10287 M:      Jesse Brandeburg <[email protected]>
10288 M:      Tony Nguyen <[email protected]>
10289 L:      [email protected] (moderated for non-subscribers)
10290 S:      Supported
10291 W:      http://www.intel.com/support/feedback.htm
10292 W:      http://e1000.sourceforge.net/
10293 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10296 F:      Documentation/networking/device_drivers/ethernet/intel/
10297 F:      drivers/net/ethernet/intel/
10298 F:      drivers/net/ethernet/intel/*/
10299 F:      include/linux/avf/virtchnl.h
10300 F:      include/linux/net/intel/iidc.h
10301
10302 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10303 M:      Mustafa Ismail <[email protected]>
10304 M:      Shiraz Saleem <[email protected]>
10305 L:      [email protected]
10306 S:      Supported
10307 F:      drivers/infiniband/hw/irdma/
10308 F:      include/uapi/rdma/irdma-abi.h
10309
10310 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10311 M:      Maik Broemme <[email protected]>
10312 L:      [email protected]
10313 S:      Maintained
10314 F:      Documentation/fb/intelfb.rst
10315 F:      drivers/video/fbdev/intelfb/
10316
10317 INTEL GPIO DRIVERS
10318 M:      Andy Shevchenko <[email protected]>
10319 L:      [email protected]
10320 S:      Supported
10321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10322 F:      drivers/gpio/gpio-elkhartlake.c
10323 F:      drivers/gpio/gpio-ich.c
10324 F:      drivers/gpio/gpio-merrifield.c
10325 F:      drivers/gpio/gpio-ml-ioh.c
10326 F:      drivers/gpio/gpio-pch.c
10327 F:      drivers/gpio/gpio-sch.c
10328 F:      drivers/gpio/gpio-sodaville.c
10329 F:      drivers/gpio/gpio-tangier.c
10330
10331 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10332 M:      Zhenyu Wang <[email protected]>
10333 M:      Zhi Wang <[email protected]>
10334 L:      [email protected]
10335 L:      [email protected]
10336 S:      Supported
10337 W:      https://01.org/igvt-g
10338 T:      git https://github.com/intel/gvt-linux.git
10339 F:      drivers/gpu/drm/i915/gvt/
10340
10341 INTEL HID EVENT DRIVER
10342 M:      Alex Hung <[email protected]>
10343 L:      [email protected]
10344 S:      Maintained
10345 F:      drivers/platform/x86/intel/hid.c
10346
10347 INTEL I/OAT DMA DRIVER
10348 M:      Dave Jiang <[email protected]>
10349 R:      Dan Williams <[email protected]>
10350 L:      [email protected]
10351 S:      Supported
10352 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10353 F:      drivers/dma/ioat*
10354
10355 INTEL IDXD DRIVER
10356 M:      Fenghua Yu <[email protected]>
10357 M:      Dave Jiang <[email protected]>
10358 L:      [email protected]
10359 S:      Supported
10360 F:      drivers/dma/idxd/*
10361 F:      include/uapi/linux/idxd.h
10362
10363 INTEL IDLE DRIVER
10364 M:      Jacob Pan <[email protected]>
10365 M:      Len Brown <[email protected]>
10366 L:      [email protected]
10367 S:      Supported
10368 B:      https://bugzilla.kernel.org
10369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10370 F:      drivers/idle/intel_idle.c
10371
10372 INTEL IN FIELD SCAN (IFS) DEVICE
10373 M:      Jithu Joseph <[email protected]>
10374 R:      Ashok Raj <[email protected]>
10375 R:      Tony Luck <[email protected]>
10376 S:      Maintained
10377 F:      drivers/platform/x86/intel/ifs
10378 F:      include/trace/events/intel_ifs.h
10379
10380 INTEL INTEGRATED SENSOR HUB DRIVER
10381 M:      Srinivas Pandruvada <[email protected]>
10382 M:      Jiri Kosina <[email protected]>
10383 L:      [email protected]
10384 S:      Maintained
10385 F:      drivers/hid/intel-ish-hid/
10386
10387 INTEL IOMMU (VT-d)
10388 M:      David Woodhouse <[email protected]>
10389 M:      Lu Baolu <[email protected]>
10390 L:      [email protected]
10391 S:      Supported
10392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10393 F:      drivers/iommu/intel/
10394
10395 INTEL IPU3 CSI-2 CIO2 DRIVER
10396 M:      Yong Zhi <[email protected]>
10397 M:      Sakari Ailus <[email protected]>
10398 M:      Bingbu Cao <[email protected]>
10399 M:      Dan Scally <[email protected]>
10400 R:      Tianshu Qiu <[email protected]>
10401 L:      [email protected]
10402 S:      Maintained
10403 T:      git git://linuxtv.org/media_tree.git
10404 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10405 F:      drivers/media/pci/intel/ipu3/
10406
10407 INTEL IPU3 CSI-2 IMGU DRIVER
10408 M:      Sakari Ailus <[email protected]>
10409 R:      Bingbu Cao <[email protected]>
10410 R:      Tianshu Qiu <[email protected]>
10411 L:      [email protected]
10412 S:      Maintained
10413 F:      Documentation/admin-guide/media/ipu3.rst
10414 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10415 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10416 F:      drivers/staging/media/ipu3/
10417
10418 INTEL IXP4XX CRYPTO SUPPORT
10419 M:      Corentin Labbe <[email protected]>
10420 L:      [email protected]
10421 S:      Maintained
10422 F:      drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c
10423
10424 INTEL ISHTP ECLITE DRIVER
10425 M:      Sumesh K Naduvalath <[email protected]>
10426 L:      [email protected]
10427 S:      Supported
10428 F:      drivers/platform/x86/intel/ishtp_eclite.c
10429
10430 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10431 M:      Krzysztof Halasa <[email protected]>
10432 S:      Maintained
10433 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10434 F:      drivers/net/wan/ixp4xx_hss.c
10435 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10436 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10437 F:      include/linux/soc/ixp4xx/npe.h
10438 F:      include/linux/soc/ixp4xx/qmgr.h
10439
10440 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10441 M:      Deepak Saxena <[email protected]>
10442 S:      Maintained
10443 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10444 F:      drivers/char/hw_random/ixp4xx-rng.c
10445
10446 INTEL KEEM BAY DRM DRIVER
10447 M:      Anitha Chrisanthus <[email protected]>
10448 M:      Edmund Dea <[email protected]>
10449 S:      Maintained
10450 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10451 F:      drivers/gpu/drm/kmb/
10452
10453 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10454 M:      Daniele Alessandrelli <[email protected]>
10455 S:      Maintained
10456 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10457 F:      drivers/crypto/intel/keembay/Kconfig
10458 F:      drivers/crypto/intel/keembay/Makefile
10459 F:      drivers/crypto/intel/keembay/keembay-ocs-aes-core.c
10460 F:      drivers/crypto/intel/keembay/ocs-aes.c
10461 F:      drivers/crypto/intel/keembay/ocs-aes.h
10462
10463 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10464 M:      Daniele Alessandrelli <[email protected]>
10465 M:      Prabhjot Khurana <[email protected]>
10466 M:      Mark Gross <[email protected]>
10467 S:      Maintained
10468 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10469 F:      drivers/crypto/intel/keembay/Kconfig
10470 F:      drivers/crypto/intel/keembay/Makefile
10471 F:      drivers/crypto/intel/keembay/keembay-ocs-ecc.c
10472
10473 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10474 M:      Daniele Alessandrelli <[email protected]>
10475 M:      Declan Murphy <[email protected]>
10476 S:      Maintained
10477 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10478 F:      drivers/crypto/intel/keembay/Kconfig
10479 F:      drivers/crypto/intel/keembay/Makefile
10480 F:      drivers/crypto/intel/keembay/keembay-ocs-hcu-core.c
10481 F:      drivers/crypto/intel/keembay/ocs-hcu.c
10482 F:      drivers/crypto/intel/keembay/ocs-hcu.h
10483
10484 INTEL THUNDER BAY EMMC PHY DRIVER
10485 M:      Nandhini Srikandan <[email protected]>
10486 M:      Rashmi A <[email protected]>
10487 S:      Maintained
10488 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10489 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10490
10491 INTEL MANAGEMENT ENGINE (mei)
10492 M:      Tomas Winkler <[email protected]>
10493 L:      [email protected]
10494 S:      Supported
10495 F:      Documentation/driver-api/mei/*
10496 F:      drivers/misc/mei/
10497 F:      drivers/watchdog/mei_wdt.c
10498 F:      include/linux/mei_aux.h
10499 F:      include/linux/mei_cl_bus.h
10500 F:      include/uapi/linux/mei.h
10501 F:      include/uapi/linux/uuid.h
10502 F:      samples/mei/*
10503
10504 INTEL MAX 10 BMC MFD DRIVER
10505 M:      Xu Yilun <[email protected]>
10506 R:      Tom Rix <[email protected]>
10507 S:      Maintained
10508 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10509 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10510 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10511 F:      drivers/mfd/intel-m10-bmc*
10512 F:      include/linux/mfd/intel-m10-bmc.h
10513
10514 INTEL MENLOW THERMAL DRIVER
10515 M:      Sujith Thomas <[email protected]>
10516 L:      [email protected]
10517 S:      Supported
10518 F:      drivers/thermal/intel/intel_menlow.c
10519
10520 INTEL P-Unit IPC DRIVER
10521 M:      Zha Qipeng <[email protected]>
10522 L:      [email protected]
10523 S:      Maintained
10524 F:      arch/x86/include/asm/intel_punit_ipc.h
10525 F:      drivers/platform/x86/intel/punit_ipc.c
10526
10527 INTEL PMC CORE DRIVER
10528 M:      Rajneesh Bhardwaj <[email protected]>
10529 M:      David E Box <[email protected]>
10530 L:      [email protected]
10531 S:      Maintained
10532 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10533 F:      drivers/platform/x86/intel/pmc/
10534
10535 INTEL PMIC GPIO DRIVERS
10536 M:      Andy Shevchenko <[email protected]>
10537 S:      Supported
10538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10539 F:      drivers/gpio/gpio-*cove.c
10540
10541 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10542 M:      Andy Shevchenko <[email protected]>
10543 S:      Supported
10544 F:      drivers/mfd/intel_soc_pmic*
10545 F:      include/linux/mfd/intel_soc_pmic*
10546
10547 INTEL PMT DRIVERS
10548 M:      David E. Box <[email protected]>
10549 S:      Supported
10550 F:      drivers/platform/x86/intel/pmt/
10551
10552 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10553 M:      Stanislav Yakovlev <[email protected]>
10554 L:      [email protected]
10555 S:      Maintained
10556 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10557 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10558 F:      drivers/net/wireless/intel/ipw2x00/
10559
10560 INTEL PSTATE DRIVER
10561 M:      Srinivas Pandruvada <[email protected]>
10562 M:      Len Brown <[email protected]>
10563 L:      [email protected]
10564 S:      Supported
10565 F:      drivers/cpufreq/intel_pstate.c
10566
10567 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10568 M:      Jarkko Nikula <[email protected]>
10569 L:      [email protected]
10570 F:      drivers/counter/intel-qep.c
10571
10572 INTEL SCU DRIVERS
10573 M:      Mika Westerberg <[email protected]>
10574 S:      Maintained
10575 F:      arch/x86/include/asm/intel_scu_ipc.h
10576 F:      drivers/platform/x86/intel_scu_*
10577
10578 INTEL SDSI DRIVER
10579 M:      David E. Box <[email protected]>
10580 S:      Supported
10581 F:      drivers/platform/x86/intel/sdsi.c
10582 F:      tools/arch/x86/intel_sdsi/
10583 F:      tools/testing/selftests/drivers/sdsi/
10584
10585 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10586 M:      Daniel Scally <[email protected]>
10587 S:      Maintained
10588 F:      drivers/platform/x86/intel/int3472/
10589
10590 INTEL SPEED SELECT TECHNOLOGY
10591 M:      Srinivas Pandruvada <[email protected]>
10592 L:      [email protected]
10593 S:      Maintained
10594 F:      drivers/platform/x86/intel/speed_select_if/
10595 F:      include/uapi/linux/isst_if.h
10596 F:      tools/power/x86/intel-speed-select/
10597
10598 INTEL STRATIX10 FIRMWARE DRIVERS
10599 M:      Dinh Nguyen <[email protected]>
10600 L:      [email protected]
10601 S:      Maintained
10602 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10603 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10604 F:      drivers/firmware/stratix10-rsu.c
10605 F:      drivers/firmware/stratix10-svc.c
10606 F:      include/linux/firmware/intel/stratix10-smc.h
10607 F:      include/linux/firmware/intel/stratix10-svc-client.h
10608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10609
10610 INTEL TELEMETRY DRIVER
10611 M:      Rajneesh Bhardwaj <[email protected]>
10612 M:      "David E. Box" <[email protected]>
10613 L:      [email protected]
10614 S:      Maintained
10615 F:      arch/x86/include/asm/intel_telemetry.h
10616 F:      drivers/platform/x86/intel/telemetry/
10617
10618 INTEL TPMI DRIVER
10619 M:      Srinivas Pandruvada <[email protected]>
10620 L:      [email protected]
10621 S:      Maintained
10622 F:      drivers/platform/x86/intel/tpmi.c
10623 F:      include/linux/intel_tpmi.h
10624
10625 INTEL UNCORE FREQUENCY CONTROL
10626 M:      Srinivas Pandruvada <[email protected]>
10627 L:      [email protected]
10628 S:      Maintained
10629 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10630 F:      drivers/platform/x86/intel/uncore-frequency/
10631
10632 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10633 M:      David E. Box <[email protected]>
10634 S:      Supported
10635 F:      drivers/platform/x86/intel/vsec.*
10636
10637 INTEL VIRTUAL BUTTON DRIVER
10638 M:      AceLan Kao <[email protected]>
10639 L:      [email protected]
10640 S:      Maintained
10641 F:      drivers/platform/x86/intel/vbtn.c
10642
10643 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10644 M:      Stanislaw Gruszka <[email protected]>
10645 L:      [email protected]
10646 S:      Supported
10647 F:      drivers/net/wireless/intel/iwlegacy/
10648
10649 INTEL WIRELESS WIFI LINK (iwlwifi)
10650 M:      Gregory Greenman <[email protected]>
10651 L:      [email protected]
10652 S:      Supported
10653 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10655 F:      drivers/net/wireless/intel/iwlwifi/
10656
10657 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10658 M:      Jithu Joseph <[email protected]>
10659 R:      Maurice Ma <[email protected]>
10660 S:      Maintained
10661 W:      https://slimbootloader.github.io/security/firmware-update.html
10662 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10663
10664 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10665 L:      [email protected]
10666 S:      Maintained
10667 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10668
10669 INTEL WWAN IOSM DRIVER
10670 M:      M Chetan Kumar <[email protected]>
10671 M:      Intel Corporation <[email protected]>
10672 L:      [email protected]
10673 S:      Maintained
10674 F:      drivers/net/wwan/iosm/
10675
10676 INTEL(R) TRACE HUB
10677 M:      Alexander Shishkin <[email protected]>
10678 S:      Supported
10679 F:      Documentation/trace/intel_th.rst
10680 F:      drivers/hwtracing/intel_th/
10681 F:      include/linux/intel_th.h
10682
10683 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10684 M:      Ning Sun <[email protected]>
10685 L:      [email protected]
10686 S:      Supported
10687 W:      http://tboot.sourceforge.net
10688 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10689 F:      Documentation/arch/x86/intel_txt.rst
10690 F:      arch/x86/kernel/tboot.c
10691 F:      include/linux/tboot.h
10692
10693 INTEL SGX
10694 M:      Jarkko Sakkinen <[email protected]>
10695 R:      Dave Hansen <[email protected]>
10696 L:      [email protected]
10697 S:      Supported
10698 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10700 F:      Documentation/arch/x86/sgx.rst
10701 F:      arch/x86/entry/vdso/vsgx.S
10702 F:      arch/x86/include/asm/sgx.h
10703 F:      arch/x86/include/uapi/asm/sgx.h
10704 F:      arch/x86/kernel/cpu/sgx/*
10705 F:      tools/testing/selftests/sgx/*
10706 K:      \bSGX_
10707
10708 INTERCONNECT API
10709 M:      Georgi Djakov <[email protected]>
10710 L:      [email protected]
10711 S:      Maintained
10712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10713 F:      Documentation/devicetree/bindings/interconnect/
10714 F:      Documentation/driver-api/interconnect.rst
10715 F:      drivers/interconnect/
10716 F:      include/dt-bindings/interconnect/
10717 F:      include/linux/interconnect-provider.h
10718 F:      include/linux/interconnect.h
10719
10720 INTERRUPT COUNTER DRIVER
10721 M:      Oleksij Rempel <[email protected]>
10722 R:      Pengutronix Kernel Team <[email protected]>
10723 L:      [email protected]
10724 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10725 F:      drivers/counter/interrupt-cnt.c
10726
10727 INTERSIL ISL7998X VIDEO DECODER DRIVER
10728 M:      Michael Tretter <[email protected]>
10729 R:      Pengutronix Kernel Team <[email protected]>
10730 L:      [email protected]
10731 S:      Maintained
10732 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10733 F:      drivers/media/i2c/isl7998x.c
10734
10735 INVENSENSE ICM-426xx IMU DRIVER
10736 M:      Jean-Baptiste Maneyrol <[email protected]>
10737 L:      [email protected]
10738 S:      Maintained
10739 W:      https://invensense.tdk.com/
10740 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10741 F:      drivers/iio/imu/inv_icm42600/
10742
10743 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10744 M:      Linus Walleij <[email protected]>
10745 L:      [email protected]
10746 S:      Maintained
10747 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10748 F:      drivers/iio/gyro/mpu3050*
10749
10750 IOC3 ETHERNET DRIVER
10751 M:      Ralf Baechle <[email protected]>
10752 L:      [email protected]
10753 S:      Maintained
10754 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10755
10756 IOMAP FILESYSTEM LIBRARY
10757 M:      Christoph Hellwig <[email protected]>
10758 M:      Darrick J. Wong <[email protected]>
10759 L:      [email protected]
10760 L:      [email protected]
10761 S:      Supported
10762 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10763 F:      fs/iomap/
10764 F:      include/linux/iomap.h
10765
10766 IOMMU DMA-API LAYER
10767 M:      Robin Murphy <[email protected]>
10768 L:      [email protected]
10769 S:      Maintained
10770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10771 F:      drivers/iommu/dma-iommu.c
10772 F:      drivers/iommu/dma-iommu.h
10773 F:      drivers/iommu/iova.c
10774 F:      include/linux/iova.h
10775
10776 IOMMUFD
10777 M:      Jason Gunthorpe <[email protected]>
10778 M:      Kevin Tian <[email protected]>
10779 L:      [email protected]
10780 S:      Maintained
10781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
10782 F:      Documentation/userspace-api/iommufd.rst
10783 F:      drivers/iommu/iommufd/
10784 F:      include/linux/iommufd.h
10785 F:      include/uapi/linux/iommufd.h
10786 F:      tools/testing/selftests/iommu/
10787
10788 IOMMU SUBSYSTEM
10789 M:      Joerg Roedel <[email protected]>
10790 M:      Will Deacon <[email protected]>
10791 R:      Robin Murphy <[email protected]>
10792 L:      [email protected]
10793 S:      Maintained
10794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10795 F:      Documentation/devicetree/bindings/iommu/
10796 F:      Documentation/userspace-api/iommu.rst
10797 F:      drivers/iommu/
10798 F:      include/linux/iommu.h
10799 F:      include/linux/iova.h
10800 F:      include/linux/of_iommu.h
10801 F:      include/uapi/linux/iommu.h
10802
10803 IOSYS-MAP HELPERS
10804 M:      Thomas Zimmermann <[email protected]>
10805 L:      [email protected]
10806 S:      Maintained
10807 T:      git git://anongit.freedesktop.org/drm/drm-misc
10808 F:      include/linux/iosys-map.h
10809
10810 IO_URING
10811 M:      Jens Axboe <[email protected]>
10812 R:      Pavel Begunkov <[email protected]>
10813 L:      [email protected]
10814 S:      Maintained
10815 T:      git git://git.kernel.dk/linux-block
10816 T:      git git://git.kernel.dk/liburing
10817 F:      io_uring/
10818 F:      include/linux/io_uring.h
10819 F:      include/linux/io_uring_types.h
10820 F:      include/trace/events/io_uring.h
10821 F:      include/uapi/linux/io_uring.h
10822 F:      tools/io_uring/
10823
10824 IPMI SUBSYSTEM
10825 M:      Corey Minyard <[email protected]>
10826 L:      [email protected] (moderated for non-subscribers)
10827 S:      Supported
10828 W:      http://openipmi.sourceforge.net/
10829 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10830 F:      Documentation/driver-api/ipmi.rst
10831 F:      Documentation/devicetree/bindings/ipmi/
10832 F:      drivers/char/ipmi/
10833 F:      include/linux/ipmi*
10834 F:      include/uapi/linux/ipmi*
10835
10836 IPS SCSI RAID DRIVER
10837 M:      Adaptec OEM Raid Solutions <[email protected]>
10838 L:      [email protected]
10839 S:      Maintained
10840 W:      http://www.adaptec.com/
10841 F:      drivers/scsi/ips*
10842
10843 IPVS
10844 M:      Simon Horman <[email protected]>
10845 M:      Julian Anastasov <[email protected]>
10846 L:      [email protected]
10847 L:      [email protected]
10848 S:      Maintained
10849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10851 F:      Documentation/networking/ipvs-sysctl.rst
10852 F:      include/net/ip_vs.h
10853 F:      include/uapi/linux/ip_vs.h
10854 F:      net/netfilter/ipvs/
10855
10856 IPWIRELESS DRIVER
10857 M:      Jiri Kosina <[email protected]>
10858 M:      David Sterba <[email protected]>
10859 S:      Odd Fixes
10860 F:      drivers/tty/ipwireless/
10861
10862 IRON DEVICE AUDIO CODEC DRIVERS
10863 M:      Kiseok Jo <[email protected]>
10864 L:      [email protected] (moderated for non-subscribers)
10865 S:      Maintained
10866 F:      Documentation/devicetree/bindings/sound/irondevice,*
10867 F:      sound/soc/codecs/sma*
10868
10869 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10870 M:      Marc Zyngier <[email protected]>
10871 S:      Maintained
10872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10873 F:      Documentation/core-api/irq/irq-domain.rst
10874 F:      include/linux/irqdomain.h
10875 F:      kernel/irq/irqdomain.c
10876 F:      kernel/irq/msi.c
10877
10878 IRQ SUBSYSTEM
10879 M:      Thomas Gleixner <[email protected]>
10880 L:      [email protected]
10881 S:      Maintained
10882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10883 F:      kernel/irq/
10884 F:      include/linux/group_cpus.h
10885 F:      lib/group_cpus.c
10886
10887 IRQCHIP DRIVERS
10888 M:      Thomas Gleixner <[email protected]>
10889 M:      Marc Zyngier <[email protected]>
10890 L:      [email protected]
10891 S:      Maintained
10892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10893 F:      Documentation/devicetree/bindings/interrupt-controller/
10894 F:      drivers/irqchip/
10895
10896 ISA
10897 M:      William Breathitt Gray <[email protected]>
10898 S:      Maintained
10899 F:      Documentation/driver-api/isa.rst
10900 F:      drivers/base/isa.c
10901 F:      include/linux/isa.h
10902
10903 ISA RADIO MODULE
10904 M:      Hans Verkuil <[email protected]>
10905 L:      [email protected]
10906 S:      Maintained
10907 W:      https://linuxtv.org
10908 T:      git git://linuxtv.org/media_tree.git
10909 F:      drivers/media/radio/radio-isa*
10910
10911 ISAPNP
10912 M:      Jaroslav Kysela <[email protected]>
10913 S:      Maintained
10914 F:      Documentation/driver-api/isapnp.rst
10915 F:      drivers/pnp/isapnp/
10916 F:      include/linux/isapnp.h
10917
10918 ISCSI
10919 M:      Lee Duncan <[email protected]>
10920 M:      Chris Leech <[email protected]>
10921 M:      Mike Christie <[email protected]>
10922 L:      [email protected]
10923 L:      [email protected]
10924 S:      Maintained
10925 W:      www.open-iscsi.com
10926 F:      drivers/scsi/*iscsi*
10927 F:      include/scsi/*iscsi*
10928
10929 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10930 M:      Peter Jones <[email protected]>
10931 M:      Konrad Rzeszutek Wilk <[email protected]>
10932 S:      Maintained
10933 F:      drivers/firmware/iscsi_ibft*
10934
10935 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10936 M:      Sagi Grimberg <[email protected]>
10937 M:      Max Gurtovoy <[email protected]>
10938 L:      [email protected]
10939 S:      Supported
10940 W:      http://www.openfabrics.org
10941 W:      www.open-iscsi.org
10942 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10943 F:      drivers/infiniband/ulp/iser/
10944
10945 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10946 M:      Sagi Grimberg <[email protected]>
10947 L:      [email protected]
10948 L:      [email protected]
10949 S:      Supported
10950 W:      http://www.linux-iscsi.org
10951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10952 F:      drivers/infiniband/ulp/isert
10953
10954 ISDN/CMTP OVER BLUETOOTH
10955 M:      Karsten Keil <[email protected]>
10956 L:      [email protected] (subscribers-only)
10957 L:      [email protected]
10958 S:      Odd Fixes
10959 W:      http://www.isdn4linux.de
10960 F:      Documentation/isdn/
10961 F:      drivers/isdn/capi/
10962 F:      include/linux/isdn/
10963 F:      include/uapi/linux/isdn/
10964 F:      net/bluetooth/cmtp/
10965
10966 ISDN/mISDN SUBSYSTEM
10967 M:      Karsten Keil <[email protected]>
10968 L:      [email protected] (subscribers-only)
10969 L:      [email protected]
10970 S:      Maintained
10971 W:      http://www.isdn4linux.de
10972 F:      drivers/isdn/Kconfig
10973 F:      drivers/isdn/Makefile
10974 F:      drivers/isdn/hardware/
10975 F:      drivers/isdn/mISDN/
10976
10977 ISOFS FILESYSTEM
10978 M:      Jan Kara <[email protected]>
10979 L:      [email protected]
10980 S:      Maintained
10981 F:      Documentation/filesystems/isofs.rst
10982 F:      fs/isofs/
10983
10984 IT87 HARDWARE MONITORING DRIVER
10985 M:      Jean Delvare <[email protected]>
10986 L:      [email protected]
10987 S:      Maintained
10988 F:      Documentation/hwmon/it87.rst
10989 F:      drivers/hwmon/it87.c
10990
10991 IT913X MEDIA DRIVER
10992 M:      Antti Palosaari <[email protected]>
10993 L:      [email protected]
10994 S:      Maintained
10995 W:      https://linuxtv.org
10996 W:      http://palosaari.fi/linux/
10997 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10998 T:      git git://linuxtv.org/anttip/media_tree.git
10999 F:      drivers/media/tuners/it913x*
11000
11001 ITE IT66121 HDMI BRIDGE DRIVER
11002 M:      Phong LE <[email protected]>
11003 M:      Neil Armstrong <[email protected]>
11004 S:      Maintained
11005 T:      git git://anongit.freedesktop.org/drm/drm-misc
11006 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
11007 F:      drivers/gpu/drm/bridge/ite-it66121.c
11008
11009 IVTV VIDEO4LINUX DRIVER
11010 M:      Andy Walls <[email protected]>
11011 L:      [email protected]
11012 S:      Maintained
11013 W:      https://linuxtv.org
11014 T:      git git://linuxtv.org/media_tree.git
11015 F:      Documentation/admin-guide/media/ivtv*
11016 F:      drivers/media/pci/ivtv/
11017 F:      include/uapi/linux/ivtv*
11018
11019 IX2505V MEDIA DRIVER
11020 M:      Malcolm Priestley <[email protected]>
11021 L:      [email protected]
11022 S:      Maintained
11023 W:      https://linuxtv.org
11024 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11025 F:      drivers/media/dvb-frontends/ix2505v*
11026
11027 JAILHOUSE HYPERVISOR INTERFACE
11028 M:      Jan Kiszka <[email protected]>
11029 L:      [email protected]
11030 S:      Maintained
11031 F:      arch/x86/include/asm/jailhouse_para.h
11032 F:      arch/x86/kernel/jailhouse.c
11033
11034 JC42.4 TEMPERATURE SENSOR DRIVER
11035 M:      Guenter Roeck <[email protected]>
11036 L:      [email protected]
11037 S:      Maintained
11038 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
11039 F:      Documentation/hwmon/jc42.rst
11040 F:      drivers/hwmon/jc42.c
11041
11042 JFS FILESYSTEM
11043 M:      Dave Kleikamp <[email protected]>
11044 L:      [email protected]
11045 S:      Odd Fixes
11046 W:      http://jfs.sourceforge.net/
11047 T:      git https://github.com/kleikamp/linux-shaggy.git
11048 F:      Documentation/admin-guide/jfs.rst
11049 F:      fs/jfs/
11050
11051 JME NETWORK DRIVER
11052 M:      Guo-Fu Tseng <[email protected]>
11053 L:      [email protected]
11054 S:      Maintained
11055 F:      drivers/net/ethernet/jme.*
11056
11057 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
11058 M:      David Woodhouse <[email protected]>
11059 M:      Richard Weinberger <[email protected]>
11060 L:      [email protected]
11061 S:      Odd Fixes
11062 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
11063 T:      git git://git.infradead.org/ubifs-2.6.git
11064 F:      fs/jffs2/
11065 F:      include/uapi/linux/jffs2.h
11066
11067 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
11068 M:      "Theodore Ts'o" <[email protected]>
11069 M:      Jan Kara <[email protected]>
11070 L:      [email protected]
11071 S:      Maintained
11072 F:      fs/jbd2/
11073 F:      include/linux/jbd2.h
11074
11075 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
11076 M:      Mikhail Ulyanov <[email protected]>
11077 L:      [email protected]
11078 L:      [email protected]
11079 S:      Maintained
11080 F:      drivers/media/platform/renesas/rcar_jpu.c
11081
11082 JSM Neo PCI based serial card
11083 L:      [email protected]
11084 S:      Orphan
11085 F:      drivers/tty/serial/jsm/
11086
11087 K10TEMP HARDWARE MONITORING DRIVER
11088 M:      Clemens Ladisch <[email protected]>
11089 L:      [email protected]
11090 S:      Maintained
11091 F:      Documentation/hwmon/k10temp.rst
11092 F:      drivers/hwmon/k10temp.c
11093
11094 K8TEMP HARDWARE MONITORING DRIVER
11095 M:      Rudolf Marek <[email protected]>
11096 L:      [email protected]
11097 S:      Maintained
11098 F:      Documentation/hwmon/k8temp.rst
11099 F:      drivers/hwmon/k8temp.c
11100
11101 KASAN
11102 M:      Andrey Ryabinin <[email protected]>
11103 R:      Alexander Potapenko <[email protected]>
11104 R:      Andrey Konovalov <[email protected]>
11105 R:      Dmitry Vyukov <[email protected]>
11106 R:      Vincenzo Frascino <[email protected]>
11107 L:      [email protected]
11108 S:      Maintained
11109 F:      Documentation/dev-tools/kasan.rst
11110 F:      arch/*/include/asm/*kasan.h
11111 F:      arch/*/mm/kasan_init*
11112 F:      include/linux/kasan*.h
11113 F:      lib/Kconfig.kasan
11114 F:      mm/kasan/
11115 F:      scripts/Makefile.kasan
11116
11117 KCONFIG
11118 M:      Masahiro Yamada <[email protected]>
11119 L:      [email protected]
11120 S:      Maintained
11121 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kbuild
11123 F:      Documentation/kbuild/kconfig*
11124 F:      scripts/Kconfig.include
11125 F:      scripts/kconfig/
11126
11127 KCOV
11128 R:      Dmitry Vyukov <[email protected]>
11129 R:      Andrey Konovalov <[email protected]>
11130 L:      [email protected]
11131 S:      Maintained
11132 F:      Documentation/dev-tools/kcov.rst
11133 F:      include/linux/kcov.h
11134 F:      include/uapi/linux/kcov.h
11135 F:      kernel/kcov.c
11136 F:      scripts/Makefile.kcov
11137
11138 KCSAN
11139 M:      Marco Elver <[email protected]>
11140 R:      Dmitry Vyukov <[email protected]>
11141 L:      [email protected]
11142 S:      Maintained
11143 F:      Documentation/dev-tools/kcsan.rst
11144 F:      include/linux/kcsan*.h
11145 F:      kernel/kcsan/
11146 F:      lib/Kconfig.kcsan
11147 F:      scripts/Makefile.kcsan
11148
11149 KDUMP
11150 M:      Baoquan He <[email protected]>
11151 R:      Vivek Goyal <[email protected]>
11152 R:      Dave Young <[email protected]>
11153 L:      [email protected]
11154 S:      Maintained
11155 W:      http://lse.sourceforge.net/kdump/
11156 F:      Documentation/admin-guide/kdump/
11157 F:      fs/proc/vmcore.c
11158 F:      include/linux/crash_core.h
11159 F:      include/linux/crash_dump.h
11160 F:      include/uapi/linux/vmcore.h
11161 F:      kernel/crash_*.c
11162
11163 KEENE FM RADIO TRANSMITTER DRIVER
11164 M:      Hans Verkuil <[email protected]>
11165 L:      [email protected]
11166 S:      Maintained
11167 W:      https://linuxtv.org
11168 T:      git git://linuxtv.org/media_tree.git
11169 F:      drivers/media/radio/radio-keene*
11170
11171 KERNEL AUTOMOUNTER
11172 M:      Ian Kent <[email protected]>
11173 L:      [email protected]
11174 S:      Maintained
11175 F:      fs/autofs/
11176
11177 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11178 M:      Masahiro Yamada <[email protected]>
11179 R:      Nathan Chancellor <[email protected]>
11180 R:      Nick Desaulniers <[email protected]>
11181 R:      Nicolas Schier <[email protected]>
11182 L:      [email protected]
11183 S:      Maintained
11184 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11186 F:      Documentation/kbuild/
11187 F:      Makefile
11188 F:      scripts/*vmlinux*
11189 F:      scripts/Kbuild*
11190 F:      scripts/Makefile*
11191 F:      scripts/basic/
11192 F:      scripts/dummy-tools/
11193 F:      scripts/mk*
11194 F:      scripts/mod/
11195 F:      scripts/package/
11196
11197 KERNEL HARDENING (not covered by other areas)
11198 M:      Kees Cook <[email protected]>
11199 L:      [email protected]
11200 S:      Supported
11201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11202 F:      Documentation/ABI/testing/sysfs-kernel-oops_count
11203 F:      Documentation/ABI/testing/sysfs-kernel-warn_count
11204 F:      include/linux/overflow.h
11205 F:      include/linux/randomize_kstack.h
11206 F:      mm/usercopy.c
11207 K:      \b(add|choose)_random_kstack_offset\b
11208 K:      \b__check_(object_size|heap_object)\b
11209
11210 KERNEL JANITORS
11211 L:      [email protected]
11212 S:      Odd Fixes
11213 W:      http://kernelnewbies.org/KernelJanitors
11214
11215 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11216 M:      Chuck Lever <[email protected]>
11217 M:      Jeff Layton <[email protected]>
11218 L:      [email protected]
11219 S:      Supported
11220 W:      http://nfs.sourceforge.net/
11221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11222 F:      fs/exportfs/
11223 F:      fs/lockd/
11224 F:      fs/nfs_common/
11225 F:      fs/nfsd/
11226 F:      include/linux/lockd/
11227 F:      include/linux/sunrpc/
11228 F:      include/trace/events/rpcgss.h
11229 F:      include/trace/events/rpcrdma.h
11230 F:      include/trace/events/sunrpc.h
11231 F:      include/trace/misc/fs.h
11232 F:      include/trace/misc/nfs.h
11233 F:      include/trace/misc/sunrpc.h
11234 F:      include/uapi/linux/nfsd/
11235 F:      include/uapi/linux/sunrpc/
11236 F:      net/sunrpc/
11237 F:      Documentation/filesystems/nfs/
11238
11239 KERNEL REGRESSIONS
11240 M:      Thorsten Leemhuis <[email protected]>
11241 L:      [email protected]
11242 S:      Supported
11243 F:      Documentation/admin-guide/reporting-regressions.rst
11244 F:      Documentation/process/handling-regressions.rst
11245
11246 KERNEL SELFTEST FRAMEWORK
11247 M:      Shuah Khan <[email protected]>
11248 M:      Shuah Khan <[email protected]>
11249 L:      [email protected]
11250 S:      Maintained
11251 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11253 F:      Documentation/dev-tools/kselftest*
11254 F:      tools/testing/selftests/
11255
11256 KERNEL SMB3 SERVER (KSMBD)
11257 M:      Namjae Jeon <[email protected]>
11258 M:      Steve French <[email protected]>
11259 R:      Sergey Senozhatsky <[email protected]>
11260 R:      Tom Talpey <[email protected]>
11261 L:      [email protected]
11262 S:      Maintained
11263 T:      git git://git.samba.org/ksmbd.git
11264 F:      Documentation/filesystems/cifs/ksmbd.rst
11265 F:      fs/ksmbd/
11266 F:      fs/smbfs_common/
11267
11268 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11269 M:      Brendan Higgins <[email protected]>
11270 M:      David Gow <[email protected]>
11271 L:      [email protected]
11272 L:      [email protected]
11273 S:      Maintained
11274 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11275 F:      Documentation/dev-tools/kunit/
11276 F:      include/kunit/
11277 F:      lib/kunit/
11278 F:      tools/testing/kunit/
11279
11280 KERNEL USERMODE HELPER
11281 M:      Luis Chamberlain <[email protected]>
11282 L:      [email protected]
11283 S:      Maintained
11284 F:      include/linux/umh.h
11285 F:      kernel/umh.c
11286
11287 KERNEL VIRTUAL MACHINE (KVM)
11288 M:      Paolo Bonzini <[email protected]>
11289 L:      [email protected]
11290 S:      Supported
11291 W:      http://www.linux-kvm.org
11292 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11293 F:      Documentation/virt/kvm/
11294 F:      include/asm-generic/kvm*
11295 F:      include/kvm/iodev.h
11296 F:      include/linux/kvm*
11297 F:      include/trace/events/kvm.h
11298 F:      include/uapi/asm-generic/kvm*
11299 F:      include/uapi/linux/kvm*
11300 F:      tools/kvm/
11301 F:      tools/testing/selftests/kvm/
11302 F:      virt/kvm/*
11303
11304 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11305 M:      Marc Zyngier <[email protected]>
11306 M:      Oliver Upton <[email protected]>
11307 R:      James Morse <[email protected]>
11308 R:      Suzuki K Poulose <[email protected]>
11309 R:      Zenghui Yu <[email protected]>
11310 L:      [email protected] (moderated for non-subscribers)
11311 L:      [email protected]
11312 S:      Maintained
11313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11314 F:      arch/arm64/include/asm/kvm*
11315 F:      arch/arm64/include/uapi/asm/kvm*
11316 F:      arch/arm64/kvm/
11317 F:      include/kvm/arm_*
11318 F:      tools/testing/selftests/kvm/*/aarch64/
11319 F:      tools/testing/selftests/kvm/aarch64/
11320
11321 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11322 M:      Huacai Chen <[email protected]>
11323 M:      Aleksandar Markovic <[email protected]>
11324 L:      [email protected]
11325 L:      [email protected]
11326 S:      Maintained
11327 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11328 F:      arch/mips/include/asm/kvm*
11329 F:      arch/mips/include/uapi/asm/kvm*
11330 F:      arch/mips/kvm/
11331
11332 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11333 L:      [email protected]
11334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11335 F:      arch/powerpc/include/asm/kvm*
11336 F:      arch/powerpc/include/uapi/asm/kvm*
11337 F:      arch/powerpc/kernel/kvm*
11338 F:      arch/powerpc/kvm/
11339
11340 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11341 M:      Anup Patel <[email protected]>
11342 R:      Atish Patra <[email protected]>
11343 L:      [email protected]
11344 L:      [email protected]
11345 L:      [email protected]
11346 S:      Maintained
11347 T:      git https://github.com/kvm-riscv/linux.git
11348 F:      arch/riscv/include/asm/kvm*
11349 F:      arch/riscv/include/uapi/asm/kvm*
11350 F:      arch/riscv/kvm/
11351 F:      tools/testing/selftests/kvm/*/riscv/
11352
11353 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11354 M:      Christian Borntraeger <[email protected]>
11355 M:      Janosch Frank <[email protected]>
11356 M:      Claudio Imbrenda <[email protected]>
11357 R:      David Hildenbrand <[email protected]>
11358 L:      [email protected]
11359 S:      Supported
11360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11361 F:      Documentation/virt/kvm/s390*
11362 F:      arch/s390/include/asm/gmap.h
11363 F:      arch/s390/include/asm/kvm*
11364 F:      arch/s390/include/uapi/asm/kvm*
11365 F:      arch/s390/include/uapi/asm/uvdevice.h
11366 F:      arch/s390/kernel/uv.c
11367 F:      arch/s390/kvm/
11368 F:      arch/s390/mm/gmap.c
11369 F:      drivers/s390/char/uvdevice.c
11370 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11371 F:      tools/testing/selftests/kvm/*/s390x/
11372 F:      tools/testing/selftests/kvm/s390x/
11373
11374 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11375 M:      Sean Christopherson <[email protected]>
11376 M:      Paolo Bonzini <[email protected]>
11377 L:      [email protected]
11378 S:      Supported
11379 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11380 F:      arch/x86/include/asm/kvm*
11381 F:      arch/x86/include/asm/svm.h
11382 F:      arch/x86/include/asm/vmx*.h
11383 F:      arch/x86/include/uapi/asm/kvm*
11384 F:      arch/x86/include/uapi/asm/svm.h
11385 F:      arch/x86/include/uapi/asm/vmx.h
11386 F:      arch/x86/kvm/
11387 F:      arch/x86/kvm/*/
11388
11389 KVM PARAVIRT (KVM/paravirt)
11390 M:      Paolo Bonzini <[email protected]>
11391 R:      Wanpeng Li <[email protected]>
11392 R:      Vitaly Kuznetsov <[email protected]>
11393 L:      [email protected]
11394 S:      Supported
11395 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11396 F:      arch/x86/kernel/kvm.c
11397 F:      arch/x86/kernel/kvmclock.c
11398 F:      arch/x86/include/asm/pvclock-abi.h
11399 F:      include/linux/kvm_para.h
11400 F:      include/uapi/linux/kvm_para.h
11401 F:      include/uapi/asm-generic/kvm_para.h
11402 F:      include/asm-generic/kvm_para.h
11403 F:      arch/um/include/asm/kvm_para.h
11404 F:      arch/x86/include/asm/kvm_para.h
11405 F:      arch/x86/include/uapi/asm/kvm_para.h
11406
11407 KVM X86 HYPER-V (KVM/hyper-v)
11408 M:      Vitaly Kuznetsov <[email protected]>
11409 M:      Sean Christopherson <[email protected]>
11410 M:      Paolo Bonzini <[email protected]>
11411 L:      [email protected]
11412 S:      Supported
11413 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11414 F:      arch/x86/kvm/hyperv.*
11415 F:      arch/x86/kvm/kvm_onhyperv.*
11416 F:      arch/x86/kvm/svm/hyperv.*
11417 F:      arch/x86/kvm/svm/svm_onhyperv.*
11418 F:      arch/x86/kvm/vmx/hyperv.*
11419
11420 KVM X86 Xen (KVM/Xen)
11421 M:      David Woodhouse <[email protected]>
11422 M:      Paul Durrant <[email protected]>
11423 M:      Sean Christopherson <[email protected]>
11424 M:      Paolo Bonzini <[email protected]>
11425 L:      [email protected]
11426 S:      Supported
11427 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11428 F:      arch/x86/kvm/xen.*
11429
11430 KERNFS
11431 M:      Greg Kroah-Hartman <[email protected]>
11432 M:      Tejun Heo <[email protected]>
11433 S:      Supported
11434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11435 F:      fs/kernfs/
11436 F:      include/linux/kernfs.h
11437
11438 KEXEC
11439 M:      Eric Biederman <[email protected]>
11440 L:      [email protected]
11441 S:      Maintained
11442 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11443 F:      include/linux/kexec.h
11444 F:      include/uapi/linux/kexec.h
11445 F:      kernel/kexec*
11446
11447 KEYS-ENCRYPTED
11448 M:      Mimi Zohar <[email protected]>
11449 L:      [email protected]
11450 L:      [email protected]
11451 S:      Supported
11452 F:      Documentation/security/keys/trusted-encrypted.rst
11453 F:      include/keys/encrypted-type.h
11454 F:      security/keys/encrypted-keys/
11455
11456 KEYS-TRUSTED
11457 M:      James Bottomley <[email protected]>
11458 M:      Jarkko Sakkinen <[email protected]>
11459 M:      Mimi Zohar <[email protected]>
11460 L:      [email protected]
11461 L:      [email protected]
11462 S:      Supported
11463 F:      Documentation/security/keys/trusted-encrypted.rst
11464 F:      include/keys/trusted-type.h
11465 F:      include/keys/trusted_tpm.h
11466 F:      security/keys/trusted-keys/
11467
11468 KEYS-TRUSTED-TEE
11469 M:      Sumit Garg <[email protected]>
11470 L:      [email protected]
11471 L:      [email protected]
11472 S:      Supported
11473 F:      include/keys/trusted_tee.h
11474 F:      security/keys/trusted-keys/trusted_tee.c
11475
11476 KEYS-TRUSTED-CAAM
11477 M:      Ahmad Fatoum <[email protected]>
11478 R:      Pengutronix Kernel Team <[email protected]>
11479 L:      [email protected]
11480 L:      [email protected]
11481 S:      Maintained
11482 F:      include/keys/trusted_caam.h
11483 F:      security/keys/trusted-keys/trusted_caam.c
11484
11485 KEYS/KEYRINGS
11486 M:      David Howells <[email protected]>
11487 M:      Jarkko Sakkinen <[email protected]>
11488 L:      [email protected]
11489 S:      Maintained
11490 F:      Documentation/security/keys/core.rst
11491 F:      include/keys/
11492 F:      include/linux/key-type.h
11493 F:      include/linux/key.h
11494 F:      include/linux/keyctl.h
11495 F:      include/uapi/linux/keyctl.h
11496 F:      security/keys/
11497
11498 KEYS/KEYRINGS_INTEGRITY
11499 M:      Jarkko Sakkinen <[email protected]>
11500 M:      Mimi Zohar <[email protected]>
11501 L:      [email protected]
11502 L:      [email protected]
11503 S:      Supported
11504 F:      security/integrity/platform_certs
11505
11506 KFENCE
11507 M:      Alexander Potapenko <[email protected]>
11508 M:      Marco Elver <[email protected]>
11509 R:      Dmitry Vyukov <[email protected]>
11510 L:      [email protected]
11511 S:      Maintained
11512 F:      Documentation/dev-tools/kfence.rst
11513 F:      arch/*/include/asm/kfence.h
11514 F:      include/linux/kfence.h
11515 F:      lib/Kconfig.kfence
11516 F:      mm/kfence/
11517
11518 KFIFO
11519 M:      Stefani Seibold <[email protected]>
11520 S:      Maintained
11521 F:      include/linux/kfifo.h
11522 F:      lib/kfifo.c
11523 F:      samples/kfifo/
11524
11525 KGDB / KDB /debug_core
11526 M:      Jason Wessel <[email protected]>
11527 M:      Daniel Thompson <[email protected]>
11528 R:      Douglas Anderson <[email protected]>
11529 L:      [email protected]
11530 S:      Maintained
11531 W:      http://kgdb.wiki.kernel.org/
11532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11533 F:      Documentation/dev-tools/kgdb.rst
11534 F:      drivers/misc/kgdbts.c
11535 F:      drivers/tty/serial/kgdboc.c
11536 F:      include/linux/kdb.h
11537 F:      include/linux/kgdb.h
11538 F:      kernel/debug/
11539 F:      kernel/module/kdb.c
11540
11541 KHADAS MCU MFD DRIVER
11542 M:      Neil Armstrong <[email protected]>
11543 L:      [email protected]
11544 S:      Maintained
11545 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11546 F:      drivers/mfd/khadas-mcu.c
11547 F:      include/linux/mfd/khadas-mcu.h
11548 F:      drivers/thermal/khadas_mcu_fan.c
11549
11550 KIONIX/ROHM KX022A ACCELEROMETER
11551 M:      Matti Vaittinen <[email protected]>
11552 L:      [email protected]
11553 S:      Supported
11554 F:      drivers/iio/accel/kionix-kx022a*
11555
11556 KMEMLEAK
11557 M:      Catalin Marinas <[email protected]>
11558 S:      Maintained
11559 F:      Documentation/dev-tools/kmemleak.rst
11560 F:      include/linux/kmemleak.h
11561 F:      mm/kmemleak.c
11562 F:      samples/kmemleak/kmemleak-test.c
11563
11564 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11565 M:      Luis Chamberlain <[email protected]>
11566 L:      [email protected]
11567 L:      [email protected]
11568 S:      Maintained
11569 F:      include/linux/kmod.h
11570 F:      kernel/kmod.c
11571 F:      lib/test_kmod.c
11572 F:      tools/testing/selftests/kmod/
11573
11574 KMSAN
11575 M:      Alexander Potapenko <[email protected]>
11576 R:      Marco Elver <[email protected]>
11577 R:      Dmitry Vyukov <[email protected]>
11578 L:      [email protected]
11579 S:      Maintained
11580 F:      Documentation/dev-tools/kmsan.rst
11581 F:      arch/*/include/asm/kmsan.h
11582 F:      arch/*/mm/kmsan_*
11583 F:      include/linux/kmsan*.h
11584 F:      lib/Kconfig.kmsan
11585 F:      mm/kmsan/
11586 F:      scripts/Makefile.kmsan
11587
11588 KPROBES
11589 M:      Naveen N. Rao <[email protected]>
11590 M:      Anil S Keshavamurthy <[email protected]>
11591 M:      "David S. Miller" <[email protected]>
11592 M:      Masami Hiramatsu <[email protected]>
11593 L:      [email protected]
11594 L:      [email protected]
11595 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
11596 S:      Maintained
11597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
11598 F:      Documentation/trace/kprobes.rst
11599 F:      include/asm-generic/kprobes.h
11600 F:      include/linux/kprobes.h
11601 F:      kernel/kprobes.c
11602 F:      lib/test_kprobes.c
11603 F:      samples/kprobes
11604
11605 KS0108 LCD CONTROLLER DRIVER
11606 M:      Miguel Ojeda <[email protected]>
11607 S:      Maintained
11608 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11609 F:      drivers/auxdisplay/ks0108.c
11610 F:      include/linux/ks0108.h
11611
11612 KTD253 BACKLIGHT DRIVER
11613 M:      Linus Walleij <[email protected]>
11614 S:      Maintained
11615 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11616 F:      drivers/video/backlight/ktd253-backlight.c
11617
11618 KTEST
11619 M:      Steven Rostedt <[email protected]>
11620 M:      John Hawley <[email protected]>
11621 S:      Maintained
11622 F:      tools/testing/ktest
11623
11624 KTZ8866 BACKLIGHT DRIVER
11625 M:      Jianhua Lu <[email protected]>
11626 S:      Maintained
11627 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktz8866.yaml
11628 F:      drivers/video/backlight/ktz8866.c
11629
11630 L3MDEV
11631 M:      David Ahern <[email protected]>
11632 L:      [email protected]
11633 S:      Maintained
11634 F:      include/net/l3mdev.h
11635 F:      net/l3mdev
11636
11637 LANDLOCK SECURITY MODULE
11638 M:      Mickaël Salaün <[email protected]>
11639 L:      [email protected]
11640 S:      Supported
11641 W:      https://landlock.io
11642 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/mic/linux.git
11643 F:      Documentation/security/landlock.rst
11644 F:      Documentation/userspace-api/landlock.rst
11645 F:      include/uapi/linux/landlock.h
11646 F:      samples/landlock/
11647 F:      security/landlock/
11648 F:      tools/testing/selftests/landlock/
11649 K:      landlock
11650 K:      LANDLOCK
11651
11652 LANTIQ / INTEL Ethernet drivers
11653 M:      Hauke Mehrtens <[email protected]>
11654 L:      [email protected]
11655 S:      Maintained
11656 F:      drivers/net/dsa/lantiq_gswip.c
11657 F:      drivers/net/dsa/lantiq_pce.h
11658 F:      drivers/net/ethernet/lantiq_xrx200.c
11659 F:      net/dsa/tag_gswip.c
11660
11661 LANTIQ MIPS ARCHITECTURE
11662 M:      John Crispin <[email protected]>
11663 L:      [email protected]
11664 S:      Maintained
11665 F:      arch/mips/lantiq
11666 F:      drivers/soc/lantiq
11667
11668 LASI 53c700 driver for PARISC
11669 M:      "James E.J. Bottomley" <[email protected]>
11670 L:      [email protected]
11671 S:      Maintained
11672 F:      Documentation/scsi/53c700.rst
11673 F:      drivers/scsi/53c700*
11674
11675 LEAKING_ADDRESSES
11676 M:      Tobin C. Harding <[email protected]>
11677 M:      Tycho Andersen <[email protected]>
11678 L:      [email protected]
11679 S:      Maintained
11680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11681 F:      scripts/leaking_addresses.pl
11682
11683 LED SUBSYSTEM
11684 M:      Pavel Machek <[email protected]>
11685 M:      Lee Jones <[email protected]>
11686 L:      [email protected]
11687 S:      Maintained
11688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11689 F:      Documentation/devicetree/bindings/leds/
11690 F:      drivers/leds/
11691 F:      include/dt-bindings/leds/
11692 F:      include/linux/leds.h
11693
11694 LEGACY EEPROM DRIVER
11695 M:      Jean Delvare <[email protected]>
11696 S:      Maintained
11697 F:      Documentation/misc-devices/eeprom.rst
11698 F:      drivers/misc/eeprom/eeprom.c
11699
11700 LEGO MINDSTORMS EV3
11701 R:      David Lechner <[email protected]>
11702 S:      Maintained
11703 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11704 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11705 F:      drivers/power/supply/lego_ev3_battery.c
11706
11707 LEGO USB Tower driver
11708 M:      Juergen Stuber <[email protected]>
11709 L:      [email protected]
11710 S:      Maintained
11711 W:      http://legousb.sourceforge.net/
11712 F:      drivers/usb/misc/legousbtower.c
11713
11714 LETSKETCH HID TABLET DRIVER
11715 M:      Hans de Goede <[email protected]>
11716 L:      [email protected]
11717 S:      Maintained
11718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11719 F:      drivers/hid/hid-letsketch.c
11720
11721 LG LAPTOP EXTRAS
11722 M:      Matan Ziv-Av <[email protected]>
11723 L:      [email protected]
11724 S:      Maintained
11725 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11726 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11727 F:      drivers/platform/x86/lg-laptop.c
11728
11729 LG2160 MEDIA DRIVER
11730 M:      Michael Krufky <[email protected]>
11731 L:      [email protected]
11732 S:      Maintained
11733 W:      https://linuxtv.org
11734 W:      http://github.com/mkrufky
11735 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11736 T:      git git://linuxtv.org/mkrufky/tuners.git
11737 F:      drivers/media/dvb-frontends/lg2160.*
11738
11739 LGDT3305 MEDIA DRIVER
11740 M:      Michael Krufky <[email protected]>
11741 L:      [email protected]
11742 S:      Maintained
11743 W:      https://linuxtv.org
11744 W:      http://github.com/mkrufky
11745 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11746 T:      git git://linuxtv.org/mkrufky/tuners.git
11747 F:      drivers/media/dvb-frontends/lgdt3305.*
11748
11749 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11750 M:      Viresh Kumar <[email protected]>
11751 L:      [email protected]
11752 S:      Maintained
11753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11754 F:      drivers/ata/pata_arasan_cf.c
11755 F:      include/linux/pata_arasan_cf_data.h
11756
11757 LIBATA PATA DRIVERS
11758 R:      Sergey Shtylyov <[email protected]>
11759 L:      [email protected]
11760 F:      drivers/ata/ata_*.c
11761 F:      drivers/ata/pata_*.c
11762
11763 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11764 M:      Linus Walleij <[email protected]>
11765 L:      [email protected]
11766 S:      Maintained
11767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11768 F:      drivers/ata/pata_ftide010.c
11769 F:      drivers/ata/sata_gemini.c
11770 F:      drivers/ata/sata_gemini.h
11771
11772 LIBATA SATA AHCI PLATFORM devices support
11773 M:      Hans de Goede <[email protected]>
11774 M:      Jens Axboe <[email protected]>
11775 L:      [email protected]
11776 S:      Maintained
11777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11778 F:      drivers/ata/ahci_platform.c
11779 F:      drivers/ata/libahci_platform.c
11780 F:      include/linux/ahci_platform.h
11781
11782 LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
11783 M:      Serge Semin <[email protected]>
11784 L:      [email protected]
11785 S:      Maintained
11786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11787 F:      Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
11788 F:      Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
11789 F:      drivers/ata/ahci_dwc.c
11790
11791 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11792 M:      Mikael Pettersson <[email protected]>
11793 L:      [email protected]
11794 S:      Maintained
11795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11796 F:      drivers/ata/sata_promise.*
11797
11798 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11799 M:      Damien Le Moal <[email protected]>
11800 L:      [email protected]
11801 S:      Maintained
11802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11803 F:      Documentation/ABI/testing/sysfs-ata
11804 F:      Documentation/devicetree/bindings/ata/
11805 F:      drivers/ata/
11806 F:      include/linux/ata.h
11807 F:      include/linux/libata.h
11808
11809 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11810 M:      Vishal Verma <[email protected]>
11811 M:      Dan Williams <[email protected]>
11812 M:      Dave Jiang <[email protected]>
11813 L:      [email protected]
11814 S:      Supported
11815 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11816 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11817 F:      drivers/nvdimm/btt*
11818
11819 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11820 M:      Dan Williams <[email protected]>
11821 M:      Vishal Verma <[email protected]>
11822 M:      Dave Jiang <[email protected]>
11823 L:      [email protected]
11824 S:      Supported
11825 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11826 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11827 F:      drivers/nvdimm/pmem*
11828
11829 LIBNVDIMM: DEVICETREE BINDINGS
11830 M:      Oliver O'Halloran <[email protected]>
11831 L:      [email protected]
11832 S:      Supported
11833 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11834 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11835 F:      drivers/nvdimm/of_pmem.c
11836
11837 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11838 M:      Dan Williams <[email protected]>
11839 M:      Vishal Verma <[email protected]>
11840 M:      Dave Jiang <[email protected]>
11841 M:      Ira Weiny <[email protected]>
11842 L:      [email protected]
11843 S:      Supported
11844 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11845 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11847 F:      drivers/acpi/nfit/*
11848 F:      drivers/nvdimm/*
11849 F:      include/linux/libnvdimm.h
11850 F:      include/linux/nd.h
11851 F:      include/uapi/linux/ndctl.h
11852 F:      tools/testing/nvdimm/
11853
11854 LICENSES and SPDX stuff
11855 M:      Thomas Gleixner <[email protected]>
11856 M:      Greg Kroah-Hartman <[email protected]>
11857 L:      [email protected]
11858 S:      Maintained
11859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11860 F:      COPYING
11861 F:      Documentation/process/license-rules.rst
11862 F:      LICENSES/
11863 F:      scripts/spdxcheck-test.sh
11864 F:      scripts/spdxcheck.py
11865 F:      scripts/spdxexclude
11866
11867 LINEAR RANGES HELPERS
11868 M:      Mark Brown <[email protected]>
11869 R:      Matti Vaittinen <[email protected]>
11870 F:      lib/linear_ranges.c
11871 F:      lib/test_linear_ranges.c
11872 F:      include/linux/linear_range.h
11873
11874 LINUX FOR POWER MACINTOSH
11875 M:      Benjamin Herrenschmidt <[email protected]>
11876 L:      [email protected]
11877 S:      Odd Fixes
11878 F:      arch/powerpc/platforms/powermac/
11879 F:      drivers/macintosh/
11880
11881 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11882 M:      Michael Ellerman <[email protected]>
11883 R:      Nicholas Piggin <[email protected]>
11884 R:      Christophe Leroy <[email protected]>
11885 L:      [email protected]
11886 S:      Supported
11887 W:      https://github.com/linuxppc/wiki/wiki
11888 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11890 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11891 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11892 F:      Documentation/devicetree/bindings/powerpc/
11893 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11894 F:      Documentation/powerpc/
11895 F:      arch/powerpc/
11896 F:      drivers/*/*/*pasemi*
11897 F:      drivers/*/*pasemi*
11898 F:      drivers/char/tpm/tpm_ibmvtpm*
11899 F:      drivers/crypto/nx/
11900 F:      drivers/crypto/vmx/
11901 F:      drivers/i2c/busses/i2c-opal.c
11902 F:      drivers/net/ethernet/ibm/ibmveth.*
11903 F:      drivers/net/ethernet/ibm/ibmvnic.*
11904 F:      drivers/pci/hotplug/pnv_php.c
11905 F:      drivers/pci/hotplug/rpa*
11906 F:      drivers/rtc/rtc-opal.c
11907 F:      drivers/scsi/ibmvscsi/
11908 F:      drivers/tty/hvc/hvc_opal.c
11909 F:      drivers/watchdog/wdrtas.c
11910 F:      tools/testing/selftests/powerpc
11911 N:      /pmac
11912 N:      powermac
11913 N:      powernv
11914 N:      [^a-z0-9]ps3
11915 N:      pseries
11916
11917 LINUX FOR POWERPC EMBEDDED MPC5XXX
11918 M:      Anatolij Gustschin <[email protected]>
11919 L:      [email protected]
11920 S:      Odd Fixes
11921 F:      arch/powerpc/platforms/512x/
11922 F:      arch/powerpc/platforms/52xx/
11923
11924 LINUX FOR POWERPC EMBEDDED PPC4XX
11925 L:      [email protected]
11926 S:      Orphan
11927 F:      arch/powerpc/platforms/40x/
11928 F:      arch/powerpc/platforms/44x/
11929
11930 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11931 M:      Scott Wood <[email protected]>
11932 L:      [email protected]
11933 S:      Odd fixes
11934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11935 F:      Documentation/devicetree/bindings/cache/freescale-l2cache.txt
11936 F:      Documentation/devicetree/bindings/powerpc/fsl/
11937 F:      arch/powerpc/platforms/83xx/
11938 F:      arch/powerpc/platforms/85xx/
11939
11940 LINUX FOR POWERPC EMBEDDED PPC8XX
11941 M:      Christophe Leroy <[email protected]>
11942 L:      [email protected]
11943 S:      Maintained
11944 F:      arch/powerpc/platforms/8xx/
11945
11946 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11947 M:      Kees Cook <[email protected]>
11948 S:      Maintained
11949 F:      drivers/misc/lkdtm/*
11950 F:      tools/testing/selftests/lkdtm/*
11951
11952 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11953 M:      Alan Stern <[email protected]>
11954 M:      Andrea Parri <[email protected]>
11955 M:      Will Deacon <[email protected]>
11956 M:      Peter Zijlstra <[email protected]>
11957 M:      Boqun Feng <[email protected]>
11958 M:      Nicholas Piggin <[email protected]>
11959 M:      David Howells <[email protected]>
11960 M:      Jade Alglave <[email protected]>
11961 M:      Luc Maranget <[email protected]>
11962 M:      "Paul E. McKenney" <[email protected]>
11963 R:      Akira Yokosawa <[email protected]>
11964 R:      Daniel Lustig <[email protected]>
11965 R:      Joel Fernandes <[email protected]>
11966 L:      [email protected]
11967 L:      [email protected]
11968 S:      Supported
11969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11970 F:      Documentation/atomic_bitops.txt
11971 F:      Documentation/atomic_t.txt
11972 F:      Documentation/core-api/refcount-vs-atomic.rst
11973 F:      Documentation/litmus-tests/
11974 F:      Documentation/memory-barriers.txt
11975 F:      tools/memory-model/
11976
11977 LIS3LV02D ACCELEROMETER DRIVER
11978 M:      Eric Piel <[email protected]>
11979 S:      Maintained
11980 F:      Documentation/misc-devices/lis3lv02d.rst
11981 F:      drivers/misc/lis3lv02d/
11982 F:      drivers/platform/x86/hp/hp_accel.c
11983
11984 LIST KUNIT TEST
11985 M:      David Gow <[email protected]>
11986 L:      [email protected]
11987 L:      [email protected]
11988 S:      Maintained
11989 F:      lib/list-test.c
11990
11991 LITEX PLATFORM
11992 M:      Karol Gugala <[email protected]>
11993 M:      Mateusz Holenko <[email protected]>
11994 M:      Gabriel Somlo <[email protected]>
11995 M:      Joel Stanley <[email protected]>
11996 S:      Maintained
11997 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11998 F:      arch/openrisc/boot/dts/or1klitex.dts
11999 F:      include/linux/litex.h
12000 F:      drivers/tty/serial/liteuart.c
12001 F:      drivers/soc/litex/*
12002 F:      drivers/net/ethernet/litex/*
12003 F:      drivers/mmc/host/litex_mmc.c
12004 N:      litex
12005
12006 LIVE PATCHING
12007 M:      Josh Poimboeuf <[email protected]>
12008 M:      Jiri Kosina <[email protected]>
12009 M:      Miroslav Benes <[email protected]>
12010 M:      Petr Mladek <[email protected]>
12011 R:      Joe Lawrence <[email protected]>
12012 L:      [email protected]
12013 S:      Maintained
12014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
12015 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
12016 F:      Documentation/livepatch/
12017 F:      arch/powerpc/include/asm/livepatch.h
12018 F:      include/linux/livepatch.h
12019 F:      kernel/livepatch/
12020 F:      kernel/module/livepatch.c
12021 F:      lib/livepatch/
12022 F:      samples/livepatch/
12023 F:      tools/testing/selftests/livepatch/
12024
12025 LLC (802.2)
12026 L:      [email protected]
12027 S:      Odd fixes
12028 F:      include/linux/llc.h
12029 F:      include/net/llc*
12030 F:      include/uapi/linux/llc.h
12031 F:      net/llc/
12032
12033 LM73 HARDWARE MONITOR DRIVER
12034 M:      Guillaume Ligneul <[email protected]>
12035 L:      [email protected]
12036 S:      Maintained
12037 F:      drivers/hwmon/lm73.c
12038
12039 LM78 HARDWARE MONITOR DRIVER
12040 M:      Jean Delvare <[email protected]>
12041 L:      [email protected]
12042 S:      Maintained
12043 F:      Documentation/hwmon/lm78.rst
12044 F:      drivers/hwmon/lm78.c
12045
12046 LM83 HARDWARE MONITOR DRIVER
12047 M:      Jean Delvare <[email protected]>
12048 L:      [email protected]
12049 S:      Maintained
12050 F:      Documentation/hwmon/lm83.rst
12051 F:      drivers/hwmon/lm83.c
12052
12053 LM90 HARDWARE MONITOR DRIVER
12054 M:      Jean Delvare <[email protected]>
12055 L:      [email protected]
12056 S:      Maintained
12057 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
12058 F:      Documentation/hwmon/lm90.rst
12059 F:      drivers/hwmon/lm90.c
12060 F:      include/dt-bindings/thermal/lm90.h
12061
12062 LM95234 HARDWARE MONITOR DRIVER
12063 M:      Guenter Roeck <[email protected]>
12064 L:      [email protected]
12065 S:      Maintained
12066 F:      Documentation/hwmon/lm95234.rst
12067 F:      drivers/hwmon/lm95234.c
12068
12069 LME2510 MEDIA DRIVER
12070 M:      Malcolm Priestley <[email protected]>
12071 L:      [email protected]
12072 S:      Maintained
12073 W:      https://linuxtv.org
12074 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12075 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
12076
12077 LOADPIN SECURITY MODULE
12078 M:      Kees Cook <[email protected]>
12079 S:      Supported
12080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
12081 F:      Documentation/admin-guide/LSM/LoadPin.rst
12082 F:      security/loadpin/
12083
12084 LOCKING PRIMITIVES
12085 M:      Peter Zijlstra <[email protected]>
12086 M:      Ingo Molnar <[email protected]>
12087 M:      Will Deacon <[email protected]>
12088 R:      Waiman Long <[email protected]>
12089 R:      Boqun Feng <[email protected]> (LOCKDEP)
12090 L:      [email protected]
12091 S:      Maintained
12092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
12093 F:      Documentation/locking/
12094 F:      arch/*/include/asm/spinlock*.h
12095 F:      include/linux/lockdep.h
12096 F:      include/linux/mutex*.h
12097 F:      include/linux/rwlock*.h
12098 F:      include/linux/rwsem*.h
12099 F:      include/linux/seqlock.h
12100 F:      include/linux/spinlock*.h
12101 F:      kernel/locking/
12102 F:      lib/locking*.[ch]
12103 X:      kernel/locking/locktorture.c
12104
12105 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
12106 M:      "Richard Russon (FlatCap)" <[email protected]>
12107 L:      [email protected]
12108 S:      Maintained
12109 W:      http://www.linux-ntfs.org/content/view/19/37/
12110 F:      Documentation/admin-guide/ldm.rst
12111 F:      block/partitions/ldm.*
12112
12113 LOGITECH HID GAMING KEYBOARDS
12114 M:      Hans de Goede <[email protected]>
12115 L:      [email protected]
12116 S:      Maintained
12117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12118 F:      drivers/hid/hid-lg-g15.c
12119
12120 LONTIUM LT8912B MIPI TO HDMI BRIDGE
12121 M:      Adrien Grassein <[email protected]>
12122 S:      Maintained
12123 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
12124 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
12125
12126 LOONGARCH
12127 M:      Huacai Chen <[email protected]>
12128 R:      WANG Xuerui <[email protected]>
12129 L:      [email protected]
12130 S:      Maintained
12131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
12132 F:      arch/loongarch/
12133 F:      drivers/*/*loongarch*
12134 F:      Documentation/loongarch/
12135 F:      Documentation/translations/zh_CN/loongarch/
12136
12137 LOONGSON LS2X I2C DRIVER
12138 M:      Binbin Zhou <[email protected]>
12139 L:      [email protected]
12140 S:      Maintained
12141 F:      Documentation/devicetree/bindings/i2c/loongson,ls2x-i2c.yaml
12142 F:      drivers/i2c/busses/i2c-ls2x.c
12143
12144 LOONGSON-2 SOC SERIES GUTS DRIVER
12145 M:      Yinbo Zhu <[email protected]>
12146 L:      [email protected]
12147 S:      Maintained
12148 F:      Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
12149 F:      drivers/soc/loongson/loongson2_guts.c
12150
12151 LOONGSON-2 SOC SERIES PINCTRL DRIVER
12152 M:      zhanghongchen <[email protected]>
12153 M:      Yinbo Zhu <[email protected]>
12154 L:      [email protected]
12155 S:      Maintained
12156 F:      Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
12157 F:      drivers/pinctrl/pinctrl-loongson2.c
12158
12159 LOONGSON GPIO DRIVER
12160 M:      Yinbo Zhu <[email protected]>
12161 L:      [email protected]
12162 S:      Maintained
12163 F:      Documentation/devicetree/bindings/gpio/loongson,ls-gpio.yaml
12164 F:      drivers/gpio/gpio-loongson-64bit.c
12165
12166 LOONGSON-2 SOC SERIES CLOCK DRIVER
12167 M:      Yinbo Zhu <[email protected]>
12168 L:      [email protected]
12169 S:      Maintained
12170 F:      Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml
12171 F:      include/dt-bindings/clock/loongson,ls2k-clk.h
12172
12173 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
12174 M:      Sathya Prakash <[email protected]>
12175 M:      Sreekanth Reddy <[email protected]>
12176 M:      Suganath Prabu Subramani <[email protected]>
12177 L:      [email protected]
12178 L:      [email protected]
12179 S:      Supported
12180 W:      http://www.avagotech.com/support/
12181 F:      drivers/message/fusion/
12182 F:      drivers/scsi/mpt3sas/
12183
12184 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
12185 M:      Matthew Wilcox <[email protected]>
12186 L:      [email protected]
12187 S:      Maintained
12188 F:      drivers/scsi/sym53c8xx_2/
12189
12190 LTC1660 DAC DRIVER
12191 M:      Marcus Folkesson <[email protected]>
12192 L:      [email protected]
12193 S:      Maintained
12194 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
12195 F:      drivers/iio/dac/ltc1660.c
12196
12197 LTC2688 IIO DAC DRIVER
12198 M:      Nuno Sá <[email protected]>
12199 L:      [email protected]
12200 S:      Supported
12201 W:      https://ez.analog.com/linux-software-drivers
12202 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
12203 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
12204 F:      drivers/iio/dac/ltc2688.c
12205
12206 LTC2947 HARDWARE MONITOR DRIVER
12207 M:      Nuno Sá <[email protected]>
12208 L:      [email protected]
12209 S:      Supported
12210 W:      https://ez.analog.com/linux-software-drivers
12211 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
12212 F:      drivers/hwmon/ltc2947-core.c
12213 F:      drivers/hwmon/ltc2947-i2c.c
12214 F:      drivers/hwmon/ltc2947-spi.c
12215 F:      drivers/hwmon/ltc2947.h
12216
12217 LTC2983 IIO TEMPERATURE DRIVER
12218 M:      Nuno Sá <[email protected]>
12219 L:      [email protected]
12220 S:      Supported
12221 W:      https://ez.analog.com/linux-software-drivers
12222 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
12223 F:      drivers/iio/temperature/ltc2983.c
12224
12225 LTC4261 HARDWARE MONITOR DRIVER
12226 M:      Guenter Roeck <[email protected]>
12227 L:      [email protected]
12228 S:      Maintained
12229 F:      Documentation/hwmon/ltc4261.rst
12230 F:      drivers/hwmon/ltc4261.c
12231
12232 LTC4306 I2C MULTIPLEXER DRIVER
12233 M:      Michael Hennerich <[email protected]>
12234 L:      [email protected]
12235 S:      Supported
12236 W:      https://ez.analog.com/linux-software-drivers
12237 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
12238 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
12239
12240 LTP (Linux Test Project)
12241 M:      Mike Frysinger <[email protected]>
12242 M:      Cyril Hrubis <[email protected]>
12243 M:      Wanlong Gao <[email protected]>
12244 M:      Jan Stancek <[email protected]>
12245 M:      Stanislav Kholmanskikh <[email protected]>
12246 M:      Alexey Kodanev <[email protected]>
12247 L:      [email protected] (subscribers-only)
12248 S:      Maintained
12249 W:      http://linux-test-project.github.io/
12250 T:      git https://github.com/linux-test-project/ltp.git
12251
12252 LYNX 28G SERDES PHY DRIVER
12253 M:      Ioana Ciornei <[email protected]>
12254 L:      [email protected]
12255 S:      Supported
12256 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12257 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
12258
12259 LYNX PCS MODULE
12260 M:      Ioana Ciornei <[email protected]>
12261 L:      [email protected]
12262 S:      Supported
12263 F:      drivers/net/pcs/pcs-lynx.c
12264 F:      include/linux/pcs-lynx.h
12265
12266 M68K ARCHITECTURE
12267 M:      Geert Uytterhoeven <[email protected]>
12268 L:      [email protected]
12269 S:      Maintained
12270 W:      http://www.linux-m68k.org/
12271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12272 F:      arch/m68k/
12273 F:      drivers/zorro/
12274
12275 M68K ON APPLE MACINTOSH
12276 M:      Joshua Thompson <[email protected]>
12277 L:      [email protected]
12278 S:      Maintained
12279 W:      http://www.mac.linux-m68k.org/
12280 F:      arch/m68k/mac/
12281 F:      drivers/macintosh/adb-iop.c
12282 F:      drivers/macintosh/via-macii.c
12283
12284 M68K ON HP9000/300
12285 M:      Philip Blundell <[email protected]>
12286 S:      Maintained
12287 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12288 F:      arch/m68k/hp300/
12289
12290 M88DS3103 MEDIA DRIVER
12291 M:      Antti Palosaari <[email protected]>
12292 L:      [email protected]
12293 S:      Maintained
12294 W:      https://linuxtv.org
12295 W:      http://palosaari.fi/linux/
12296 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12297 T:      git git://linuxtv.org/anttip/media_tree.git
12298 F:      drivers/media/dvb-frontends/m88ds3103*
12299
12300 M88RS2000 MEDIA DRIVER
12301 M:      Malcolm Priestley <[email protected]>
12302 L:      [email protected]
12303 S:      Maintained
12304 W:      https://linuxtv.org
12305 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12306 F:      drivers/media/dvb-frontends/m88rs2000*
12307
12308 MA901 MASTERKIT USB FM RADIO DRIVER
12309 M:      Alexey Klimov <[email protected]>
12310 L:      [email protected]
12311 S:      Maintained
12312 T:      git git://linuxtv.org/media_tree.git
12313 F:      drivers/media/radio/radio-ma901.c
12314
12315 MAC80211
12316 M:      Johannes Berg <[email protected]>
12317 L:      [email protected]
12318 S:      Maintained
12319 W:      https://wireless.wiki.kernel.org/
12320 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12323 F:      Documentation/networking/mac80211-injection.rst
12324 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12325 F:      drivers/net/wireless/virtual/mac80211_hwsim.[ch]
12326 F:      include/net/mac80211.h
12327 F:      net/mac80211/
12328
12329 MAILBOX API
12330 M:      Jassi Brar <[email protected]>
12331 L:      [email protected]
12332 S:      Maintained
12333 F:      drivers/mailbox/
12334 F:      include/linux/mailbox_client.h
12335 F:      include/linux/mailbox_controller.h
12336 F:      include/dt-bindings/mailbox/
12337 F:      Documentation/devicetree/bindings/mailbox/
12338
12339 MAILBOX ARM MHUv2
12340 M:      Viresh Kumar <[email protected]>
12341 M:      Tushar Khandelwal <[email protected]>
12342 L:      [email protected]
12343 S:      Maintained
12344 F:      drivers/mailbox/arm_mhuv2.c
12345 F:      include/linux/mailbox/arm_mhuv2_message.h
12346 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12347
12348 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12349 M:      Jeremy Kerr <[email protected]>
12350 M:      Matt Johnston <[email protected]>
12351 L:      [email protected]
12352 S:      Maintained
12353 F:      Documentation/networking/mctp.rst
12354 F:      drivers/net/mctp/
12355 F:      include/net/mctp.h
12356 F:      include/net/mctpdevice.h
12357 F:      include/net/netns/mctp.h
12358 F:      net/mctp/
12359
12360 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12361 M:      Michael Kerrisk <[email protected]>
12362 L:      [email protected]
12363 S:      Maintained
12364 W:      http://www.kernel.org/doc/man-pages
12365
12366 MAPLE TREE
12367 M:      Liam R. Howlett <[email protected]>
12368 L:      [email protected]
12369 S:      Supported
12370 F:      Documentation/core-api/maple_tree.rst
12371 F:      include/linux/maple_tree.h
12372 F:      include/trace/events/maple_tree.h
12373 F:      lib/maple_tree.c
12374 F:      lib/test_maple_tree.c
12375 F:      tools/testing/radix-tree/linux/maple_tree.h
12376 F:      tools/testing/radix-tree/maple.c
12377
12378 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12379 M:      Rahul Bedarkar <[email protected]>
12380 L:      [email protected]
12381 S:      Maintained
12382 F:      arch/mips/boot/dts/img/pistachio*
12383
12384 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12385 M:      Andrew Lunn <[email protected]>
12386 L:      [email protected]
12387 S:      Maintained
12388 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12389 F:      Documentation/networking/devlink/mv88e6xxx.rst
12390 F:      drivers/net/dsa/mv88e6xxx/
12391 F:      include/linux/dsa/mv88e6xxx.h
12392 F:      include/linux/platform_data/mv88e6xxx.h
12393
12394 MARVELL ARMADA 3700 PHY DRIVERS
12395 M:      Miquel Raynal <[email protected]>
12396 S:      Maintained
12397 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12398 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12399 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12400 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12401
12402 MARVELL ARMADA 3700 SERIAL DRIVER
12403 M:      Pali Rohár <[email protected]>
12404 S:      Maintained
12405 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12406 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12407 F:      drivers/tty/serial/mvebu-uart.c
12408
12409 MARVELL ARMADA DRM SUPPORT
12410 M:      Russell King <[email protected]>
12411 S:      Maintained
12412 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12413 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12414 F:      Documentation/devicetree/bindings/display/armada/
12415 F:      drivers/gpu/drm/armada/
12416 F:      include/uapi/drm/armada_drm.h
12417
12418 MARVELL CRYPTO DRIVER
12419 M:      Boris Brezillon <[email protected]>
12420 M:      Arnaud Ebalard <[email protected]>
12421 M:      Srujana Challa <[email protected]>
12422 L:      [email protected]
12423 S:      Maintained
12424 F:      drivers/crypto/marvell/
12425 F:      include/linux/soc/marvell/octeontx2/
12426
12427 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12428 M:      Mirko Lindner <[email protected]>
12429 M:      Stephen Hemminger <[email protected]>
12430 L:      [email protected]
12431 S:      Maintained
12432 F:      drivers/net/ethernet/marvell/sk*
12433
12434 MARVELL LIBERTAS WIRELESS DRIVER
12435 L:      [email protected]
12436 S:      Orphan
12437 F:      drivers/net/wireless/marvell/libertas/
12438
12439 MARVELL MACCHIATOBIN SUPPORT
12440 M:      Russell King <[email protected]>
12441 L:      [email protected] (moderated for non-subscribers)
12442 S:      Maintained
12443 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12444
12445 MARVELL MV643XX ETHERNET DRIVER
12446 M:      Sebastian Hesselbarth <[email protected]>
12447 L:      [email protected]
12448 S:      Maintained
12449 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12450 F:      include/linux/mv643xx.h
12451
12452 MARVELL MV88X3310 PHY DRIVER
12453 M:      Russell King <[email protected]>
12454 M:      Marek Behún <[email protected]>
12455 L:      [email protected]
12456 S:      Maintained
12457 F:      drivers/net/phy/marvell10g.c
12458
12459 MARVELL MVEBU THERMAL DRIVER
12460 M:      Miquel Raynal <[email protected]>
12461 S:      Maintained
12462 F:      drivers/thermal/armada_thermal.c
12463
12464 MARVELL MVNETA ETHERNET DRIVER
12465 M:      Thomas Petazzoni <[email protected]>
12466 L:      [email protected]
12467 S:      Maintained
12468 F:      drivers/net/ethernet/marvell/mvneta.*
12469
12470 MARVELL MVPP2 ETHERNET DRIVER
12471 M:      Marcin Wojtas <[email protected]>
12472 M:      Russell King <[email protected]>
12473 L:      [email protected]
12474 S:      Maintained
12475 F:      Documentation/devicetree/bindings/net/marvell,pp2.yaml
12476 F:      drivers/net/ethernet/marvell/mvpp2/
12477
12478 MARVELL MWIFIEX WIRELESS DRIVER
12479 M:      Amitkumar Karwar <[email protected]>
12480 M:      Ganapathi Bhat <[email protected]>
12481 M:      Sharvari Harisangam <[email protected]>
12482 M:      Xinming Hu <[email protected]>
12483 L:      [email protected]
12484 S:      Maintained
12485 F:      drivers/net/wireless/marvell/mwifiex/
12486
12487 MARVELL MWL8K WIRELESS DRIVER
12488 M:      Lennert Buytenhek <[email protected]>
12489 L:      [email protected]
12490 S:      Odd Fixes
12491 F:      drivers/net/wireless/marvell/mwl8k.c
12492
12493 MARVELL NAND CONTROLLER DRIVER
12494 M:      Miquel Raynal <[email protected]>
12495 L:      [email protected]
12496 S:      Maintained
12497 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12498 F:      drivers/mtd/nand/raw/marvell_nand.c
12499
12500 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12501 M:      Sunil Goutham <[email protected]>
12502 M:      Geetha sowjanya <[email protected]>
12503 M:      Subbaraya Sundeep <[email protected]>
12504 M:      hariprasad <[email protected]>
12505 L:      [email protected]
12506 S:      Supported
12507 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12508 F:      include/linux/soc/marvell/octeontx2/
12509
12510 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12511 M:      Sunil Goutham <[email protected]>
12512 M:      Linu Cherian <[email protected]>
12513 M:      Geetha sowjanya <[email protected]>
12514 M:      Jerin Jacob <[email protected]>
12515 M:      hariprasad <[email protected]>
12516 M:      Subbaraya Sundeep <[email protected]>
12517 L:      [email protected]
12518 S:      Supported
12519 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12520 F:      drivers/net/ethernet/marvell/octeontx2/af/
12521
12522 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12523 M:      Taras Chornyi <[email protected]>
12524 S:      Supported
12525 W:      https://github.com/Marvell-switching/switchdev-prestera
12526 F:      drivers/net/ethernet/marvell/prestera/
12527
12528 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12529 M:      Nicolas Pitre <[email protected]>
12530 S:      Odd Fixes
12531 F:      drivers/mmc/host/mvsdio.*
12532
12533 MARVELL USB MDIO CONTROLLER DRIVER
12534 M:      Tobias Waldekranz <[email protected]>
12535 L:      [email protected]
12536 S:      Maintained
12537 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12538 F:      drivers/net/mdio/mdio-mvusb.c
12539
12540 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12541 M:      Hu Ziji <[email protected]>
12542 L:      [email protected]
12543 S:      Supported
12544 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12545 F:      drivers/mmc/host/sdhci-xenon*
12546
12547 MARVELL OCTEON ENDPOINT DRIVER
12548 M:      Veerasenareddy Burru <[email protected]>
12549 M:      Abhijit Ayarekar <[email protected]>
12550 L:      [email protected]
12551 S:      Supported
12552 F:      drivers/net/ethernet/marvell/octeon_ep
12553
12554 MATROX FRAMEBUFFER DRIVER
12555 L:      [email protected]
12556 S:      Orphan
12557 F:      drivers/video/fbdev/matrox/matroxfb_*
12558 F:      include/uapi/linux/matroxfb.h
12559
12560 MAX15301 DRIVER
12561 M:      Daniel Nilsson <[email protected]>
12562 L:      [email protected]
12563 S:      Maintained
12564 F:      Documentation/hwmon/max15301.rst
12565 F:      drivers/hwmon/pmbus/max15301.c
12566
12567 MAX16065 HARDWARE MONITOR DRIVER
12568 M:      Guenter Roeck <[email protected]>
12569 L:      [email protected]
12570 S:      Maintained
12571 F:      Documentation/hwmon/max16065.rst
12572 F:      drivers/hwmon/max16065.c
12573
12574 MAX2175 SDR TUNER DRIVER
12575 M:      Ramesh Shanmugasundaram <[email protected]>
12576 L:      [email protected]
12577 S:      Maintained
12578 T:      git git://linuxtv.org/media_tree.git
12579 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12580 F:      Documentation/userspace-api/media/drivers/max2175.rst
12581 F:      drivers/media/i2c/max2175*
12582 F:      include/uapi/linux/max2175.h
12583
12584 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12585 L:      [email protected]
12586 S:      Orphan
12587 F:      Documentation/hwmon/max6650.rst
12588 F:      drivers/hwmon/max6650.c
12589
12590 MAX6697 HARDWARE MONITOR DRIVER
12591 M:      Guenter Roeck <[email protected]>
12592 L:      [email protected]
12593 S:      Maintained
12594 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12595 F:      Documentation/hwmon/max6697.rst
12596 F:      drivers/hwmon/max6697.c
12597 F:      include/linux/platform_data/max6697.h
12598
12599 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12600 M:      Jacopo Mondi <[email protected]>
12601 M:      Kieran Bingham <[email protected]>
12602 M:      Laurent Pinchart <[email protected]>
12603 M:      Niklas Söderlund <[email protected]>
12604 L:      [email protected]
12605 S:      Maintained
12606 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12607 F:      drivers/media/i2c/max9286.c
12608
12609 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12610 M:      Niklas Söderlund <[email protected]>
12611 L:      [email protected]
12612 S:      Maintained
12613 F:      drivers/staging/media/max96712/max96712.c
12614
12615 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12616 M:      Peter Rosin <[email protected]>
12617 L:      [email protected] (moderated for non-subscribers)
12618 S:      Maintained
12619 F:      Documentation/devicetree/bindings/sound/max9860.txt
12620 F:      sound/soc/codecs/max9860.*
12621
12622 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12623 M:      Andreas Klinger <[email protected]>
12624 L:      [email protected]
12625 S:      Maintained
12626 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12627 F:      drivers/iio/proximity/mb1232.c
12628
12629 MAXIM MAX11205 DRIVER
12630 M:      Ramona Bolboaca <[email protected]>
12631 L:      [email protected]
12632 S:      Supported
12633 W:      https://ez.analog.com/linux-software-drivers
12634 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12635 F:      drivers/iio/adc/max11205.c
12636
12637 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12638 R:      Iskren Chernev <[email protected]>
12639 R:      Krzysztof Kozlowski <[email protected]>
12640 R:      Marek Szyprowski <[email protected]>
12641 R:      Matheus Castello <[email protected]>
12642 L:      [email protected]
12643 S:      Maintained
12644 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12645 F:      drivers/power/supply/max17040_battery.c
12646
12647 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12648 R:      Hans de Goede <[email protected]>
12649 R:      Krzysztof Kozlowski <[email protected]>
12650 R:      Marek Szyprowski <[email protected]>
12651 R:      Sebastian Krzyszkowiak <[email protected]>
12652 R:      Purism Kernel Team <[email protected]>
12653 L:      [email protected]
12654 S:      Maintained
12655 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12656 F:      drivers/power/supply/max17042_battery.c
12657
12658 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12659 M:      Laurent Pinchart <[email protected]>
12660 L:      [email protected]
12661 S:      Maintained
12662 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12663 F:      drivers/regulator/max20086-regulator.c
12664
12665 MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
12666 M:      Rajat Khandelwal <[email protected]>
12667 L:      [email protected]
12668 S:      Maintained
12669 F:      drivers/iio/temperature/max30208.c
12670
12671 MAXIM MAX77650 PMIC MFD DRIVER
12672 M:      Bartosz Golaszewski <[email protected]>
12673 L:      [email protected]
12674 S:      Maintained
12675 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12676 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12677 F:      drivers/gpio/gpio-max77650.c
12678 F:      drivers/input/misc/max77650-onkey.c
12679 F:      drivers/leds/leds-max77650.c
12680 F:      drivers/mfd/max77650.c
12681 F:      drivers/power/supply/max77650-charger.c
12682 F:      drivers/regulator/max77650-regulator.c
12683 F:      include/linux/mfd/max77650.h
12684
12685 MAXIM MAX77714 PMIC MFD DRIVER
12686 M:      Luca Ceresoli <[email protected]>
12687 S:      Maintained
12688 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12689 F:      drivers/mfd/max77714.c
12690 F:      include/linux/mfd/max77714.h
12691
12692 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12693 M:      Javier Martinez Canillas <[email protected]>
12694 L:      [email protected]
12695 S:      Supported
12696 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12697 F:      drivers/regulator/max77802-regulator.c
12698 F:      include/dt-bindings/*/*max77802.h
12699
12700 MAXIM MAX77976 BATTERY CHARGER
12701 M:      Luca Ceresoli <[email protected]>
12702 S:      Supported
12703 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12704 F:      drivers/power/supply/max77976_charger.c
12705
12706 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12707 M:      Krzysztof Kozlowski <[email protected]>
12708 L:      [email protected]
12709 S:      Supported
12710 B:      mailto:[email protected]
12711 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12712 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12713 F:      drivers/power/supply/max14577_charger.c
12714 F:      drivers/power/supply/max77693_charger.c
12715
12716 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12717 M:      Chanwoo Choi <[email protected]>
12718 M:      Krzysztof Kozlowski <[email protected]>
12719 L:      [email protected]
12720 S:      Supported
12721 B:      mailto:[email protected]
12722 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12723 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12724 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12725 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12726 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12727 F:      drivers/*/*max77843.c
12728 F:      drivers/*/max14577*.c
12729 F:      drivers/*/max77686*.c
12730 F:      drivers/*/max77693*.c
12731 F:      drivers/clk/clk-max77686.c
12732 F:      drivers/extcon/extcon-max14577.c
12733 F:      drivers/extcon/extcon-max77693.c
12734 F:      drivers/rtc/rtc-max77686.c
12735 F:      include/linux/mfd/max14577*.h
12736 F:      include/linux/mfd/max77686*.h
12737 F:      include/linux/mfd/max77693*.h
12738
12739 MAXIRADIO FM RADIO RECEIVER DRIVER
12740 M:      Hans Verkuil <[email protected]>
12741 L:      [email protected]
12742 S:      Maintained
12743 W:      https://linuxtv.org
12744 T:      git git://linuxtv.org/media_tree.git
12745 F:      drivers/media/radio/radio-maxiradio*
12746
12747 MAXLINEAR ETHERNET PHY DRIVER
12748 M:      Xu Liang <[email protected]>
12749 L:      [email protected]
12750 S:      Supported
12751 F:      drivers/net/phy/mxl-gpy.c
12752
12753 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12754 R:      Yasushi SHOJI <[email protected]>
12755 L:      [email protected]
12756 S:      Maintained
12757 F:      drivers/net/can/usb/mcba_usb.c
12758
12759 MCAN MMIO DEVICE DRIVER
12760 M:      Chandrasekar Ramakrishnan <[email protected]>
12761 L:      [email protected]
12762 S:      Maintained
12763 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12764 F:      drivers/net/can/m_can/m_can.c
12765 F:      drivers/net/can/m_can/m_can.h
12766 F:      drivers/net/can/m_can/m_can_platform.c
12767
12768 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12769 M:      Rishi Gupta <[email protected]>
12770 L:      [email protected]
12771 L:      [email protected]
12772 S:      Maintained
12773 F:      drivers/hid/hid-mcp2221.c
12774
12775 MCP251XFD SPI-CAN NETWORK DRIVER
12776 M:      Marc Kleine-Budde <[email protected]>
12777 M:      Manivannan Sadhasivam <[email protected]>
12778 R:      Thomas Kopp <[email protected]>
12779 L:      [email protected]
12780 S:      Maintained
12781 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12782 F:      drivers/net/can/spi/mcp251xfd/
12783
12784 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12785 M:      Peter Rosin <[email protected]>
12786 L:      [email protected]
12787 S:      Maintained
12788 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12789 F:      drivers/iio/potentiometer/mcp4018.c
12790 F:      drivers/iio/potentiometer/mcp4531.c
12791
12792 MCR20A IEEE-802.15.4 RADIO DRIVER
12793 M:      Stefan Schmidt <[email protected]>
12794 L:      [email protected]
12795 S:      Odd Fixes
12796 W:      https://github.com/xueliu/mcr20a-linux
12797 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12798 F:      drivers/net/ieee802154/mcr20a.c
12799 F:      drivers/net/ieee802154/mcr20a.h
12800
12801 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12802 M:      William Breathitt Gray <[email protected]>
12803 L:      [email protected]
12804 S:      Maintained
12805 F:      drivers/iio/dac/cio-dac.c
12806
12807 MEDIA CONTROLLER FRAMEWORK
12808 M:      Sakari Ailus <[email protected]>
12809 M:      Laurent Pinchart <[email protected]>
12810 L:      [email protected]
12811 S:      Supported
12812 W:      https://www.linuxtv.org
12813 T:      git git://linuxtv.org/media_tree.git
12814 F:      drivers/media/mc/
12815 F:      include/media/media-*.h
12816 F:      include/uapi/linux/media.h
12817
12818 MEDIA DRIVER FOR FREESCALE IMX PXP
12819 M:      Philipp Zabel <[email protected]>
12820 L:      [email protected]
12821 S:      Maintained
12822 T:      git git://linuxtv.org/media_tree.git
12823 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12824
12825 MEDIA DRIVERS FOR ASCOT2E
12826 M:      Sergey Kozlov <[email protected]>
12827 M:      Abylay Ospan <[email protected]>
12828 L:      [email protected]
12829 S:      Supported
12830 W:      https://linuxtv.org
12831 W:      http://netup.tv/
12832 T:      git git://linuxtv.org/media_tree.git
12833 F:      drivers/media/dvb-frontends/ascot2e*
12834
12835 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12836 M:      Jasmin Jessich <[email protected]>
12837 L:      [email protected]
12838 S:      Maintained
12839 W:      https://linuxtv.org
12840 T:      git git://linuxtv.org/media_tree.git
12841 F:      drivers/media/dvb-frontends/cxd2099*
12842
12843 MEDIA DRIVERS FOR CXD2841ER
12844 M:      Sergey Kozlov <[email protected]>
12845 M:      Abylay Ospan <[email protected]>
12846 L:      [email protected]
12847 S:      Supported
12848 W:      https://linuxtv.org
12849 W:      http://netup.tv/
12850 T:      git git://linuxtv.org/media_tree.git
12851 F:      drivers/media/dvb-frontends/cxd2841er*
12852
12853 MEDIA DRIVERS FOR CXD2880
12854 M:      Yasunari Takiguchi <[email protected]>
12855 L:      [email protected]
12856 S:      Supported
12857 W:      http://linuxtv.org/
12858 T:      git git://linuxtv.org/media_tree.git
12859 F:      drivers/media/dvb-frontends/cxd2880/*
12860 F:      drivers/media/spi/cxd2880*
12861
12862 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12863 L:      [email protected]
12864 S:      Orphan
12865 W:      https://linuxtv.org
12866 T:      git git://linuxtv.org/media_tree.git
12867 F:      drivers/media/pci/ddbridge/*
12868
12869 MEDIA DRIVERS FOR FREESCALE IMX
12870 M:      Steve Longerbeam <[email protected]>
12871 M:      Philipp Zabel <[email protected]>
12872 L:      [email protected]
12873 S:      Maintained
12874 T:      git git://linuxtv.org/media_tree.git
12875 F:      Documentation/admin-guide/media/imx.rst
12876 F:      Documentation/devicetree/bindings/media/imx.txt
12877 F:      drivers/staging/media/imx/
12878 F:      include/linux/imx-media.h
12879 F:      include/media/imx.h
12880
12881 MEDIA DRIVERS FOR FREESCALE IMX7
12882 M:      Rui Miguel Silva <[email protected]>
12883 M:      Laurent Pinchart <[email protected]>
12884 L:      [email protected]
12885 S:      Maintained
12886 T:      git git://linuxtv.org/media_tree.git
12887 F:      Documentation/admin-guide/media/imx7.rst
12888 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12889 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12890 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12891 F:      drivers/media/platform/nxp/imx7-media-csi.c
12892
12893 MEDIA DRIVERS FOR HELENE
12894 M:      Abylay Ospan <[email protected]>
12895 L:      [email protected]
12896 S:      Supported
12897 W:      https://linuxtv.org
12898 W:      http://netup.tv/
12899 T:      git git://linuxtv.org/media_tree.git
12900 F:      drivers/media/dvb-frontends/helene*
12901
12902 MEDIA DRIVERS FOR HORUS3A
12903 M:      Sergey Kozlov <[email protected]>
12904 M:      Abylay Ospan <[email protected]>
12905 L:      [email protected]
12906 S:      Supported
12907 W:      https://linuxtv.org
12908 W:      http://netup.tv/
12909 T:      git git://linuxtv.org/media_tree.git
12910 F:      drivers/media/dvb-frontends/horus3a*
12911
12912 MEDIA DRIVERS FOR LNBH25
12913 M:      Sergey Kozlov <[email protected]>
12914 M:      Abylay Ospan <[email protected]>
12915 L:      [email protected]
12916 S:      Supported
12917 W:      https://linuxtv.org
12918 W:      http://netup.tv/
12919 T:      git git://linuxtv.org/media_tree.git
12920 F:      drivers/media/dvb-frontends/lnbh25*
12921
12922 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12923 L:      [email protected]
12924 S:      Orphan
12925 W:      https://linuxtv.org
12926 T:      git git://linuxtv.org/media_tree.git
12927 F:      drivers/media/dvb-frontends/mxl5xx*
12928
12929 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12930 M:      Sergey Kozlov <[email protected]>
12931 M:      Abylay Ospan <[email protected]>
12932 L:      [email protected]
12933 S:      Supported
12934 W:      https://linuxtv.org
12935 W:      http://netup.tv/
12936 T:      git git://linuxtv.org/media_tree.git
12937 F:      drivers/media/pci/netup_unidvb/*
12938
12939 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12940 M:      Dmitry Osipenko <[email protected]>
12941 L:      [email protected]
12942 L:      [email protected]
12943 S:      Maintained
12944 T:      git git://linuxtv.org/media_tree.git
12945 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12946 F:      drivers/media/platform/nvidia/tegra-vde/
12947
12948 MEDIA DRIVERS FOR RENESAS - CEU
12949 M:      Jacopo Mondi <[email protected]>
12950 L:      [email protected]
12951 L:      [email protected]
12952 S:      Supported
12953 T:      git git://linuxtv.org/media_tree.git
12954 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12955 F:      drivers/media/platform/renesas/renesas-ceu.c
12956 F:      include/media/drv-intf/renesas-ceu.h
12957
12958 MEDIA DRIVERS FOR RENESAS - DRIF
12959 M:      Fabrizio Castro <[email protected]>
12960 L:      [email protected]
12961 L:      [email protected]
12962 S:      Supported
12963 T:      git git://linuxtv.org/media_tree.git
12964 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12965 F:      drivers/media/platform/renesas/rcar_drif.c
12966
12967 MEDIA DRIVERS FOR RENESAS - FCP
12968 M:      Laurent Pinchart <[email protected]>
12969 L:      [email protected]
12970 L:      [email protected]
12971 S:      Supported
12972 T:      git git://linuxtv.org/media_tree.git
12973 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12974 F:      drivers/media/platform/renesas/rcar-fcp.c
12975 F:      include/media/rcar-fcp.h
12976
12977 MEDIA DRIVERS FOR RENESAS - FDP1
12978 M:      Kieran Bingham <[email protected]>
12979 L:      [email protected]
12980 L:      [email protected]
12981 S:      Supported
12982 T:      git git://linuxtv.org/media_tree.git
12983 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12984 F:      drivers/media/platform/renesas/rcar_fdp1.c
12985
12986 MEDIA DRIVERS FOR RENESAS - VIN
12987 M:      Niklas Söderlund <[email protected]>
12988 L:      [email protected]
12989 L:      [email protected]
12990 S:      Supported
12991 T:      git git://linuxtv.org/media_tree.git
12992 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12993 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12994 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12995 F:      drivers/media/platform/renesas/rcar-isp.c
12996 F:      drivers/media/platform/renesas/rcar-vin/
12997
12998 MEDIA DRIVERS FOR RENESAS - VSP1
12999 M:      Laurent Pinchart <[email protected]>
13000 M:      Kieran Bingham <[email protected]>
13001 L:      [email protected]
13002 L:      [email protected]
13003 S:      Supported
13004 T:      git git://linuxtv.org/media_tree.git
13005 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
13006 F:      drivers/media/platform/renesas/vsp1/
13007
13008 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
13009 L:      [email protected]
13010 S:      Orphan
13011 W:      https://linuxtv.org
13012 T:      git git://linuxtv.org/media_tree.git
13013 F:      drivers/media/dvb-frontends/stv0910*
13014
13015 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
13016 L:      [email protected]
13017 S:      Orphan
13018 W:      https://linuxtv.org
13019 T:      git git://linuxtv.org/media_tree.git
13020 F:      drivers/media/dvb-frontends/stv6111*
13021
13022 MEDIA DRIVERS FOR STM32 - DCMI
13023 M:      Hugues Fruchet <[email protected]>
13024 L:      [email protected]
13025 S:      Supported
13026 T:      git git://linuxtv.org/media_tree.git
13027 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
13028 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
13029
13030 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
13031 M:      Mauro Carvalho Chehab <[email protected]>
13032 L:      [email protected]
13033 S:      Maintained
13034 W:      https://linuxtv.org
13035 Q:      http://patchwork.kernel.org/project/linux-media/list/
13036 T:      git git://linuxtv.org/media_tree.git
13037 F:      Documentation/admin-guide/media/
13038 F:      Documentation/devicetree/bindings/media/
13039 F:      Documentation/driver-api/media/
13040 F:      Documentation/userspace-api/media/
13041 F:      drivers/media/
13042 F:      drivers/staging/media/
13043 F:      include/dt-bindings/media/
13044 F:      include/linux/platform_data/media/
13045 F:      include/media/
13046 F:      include/uapi/linux/dvb/
13047 F:      include/uapi/linux/ivtv*
13048 F:      include/uapi/linux/media.h
13049 F:      include/uapi/linux/uvcvideo.h
13050 F:      include/uapi/linux/v4l2-*
13051 F:      include/uapi/linux/videodev2.h
13052
13053 MEDIATEK BLUETOOTH DRIVER
13054 M:      Sean Wang <[email protected]>
13055 L:      [email protected]
13056 L:      [email protected] (moderated for non-subscribers)
13057 S:      Maintained
13058 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
13059 F:      drivers/bluetooth/btmtkuart.c
13060
13061 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
13062 M:      Sean Wang <[email protected]>
13063 L:      [email protected]
13064 S:      Maintained
13065 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
13066 F:      drivers/power/reset/mt6323-poweroff.c
13067
13068 MEDIATEK CIR DRIVER
13069 M:      Sean Wang <[email protected]>
13070 S:      Maintained
13071 F:      drivers/media/rc/mtk-cir.c
13072
13073 MEDIATEK DMA DRIVER
13074 M:      Sean Wang <[email protected]>
13075 L:      [email protected]
13076 L:      [email protected] (moderated for non-subscribers)
13077 L:      [email protected] (moderated for non-subscribers)
13078 S:      Maintained
13079 F:      Documentation/devicetree/bindings/dma/mtk-*
13080 F:      drivers/dma/mediatek/
13081
13082 MEDIATEK ETHERNET DRIVER
13083 M:      Felix Fietkau <[email protected]>
13084 M:      John Crispin <[email protected]>
13085 M:      Sean Wang <[email protected]>
13086 M:      Mark Lee <[email protected]>
13087 M:      Lorenzo Bianconi <[email protected]>
13088 L:      [email protected]
13089 S:      Maintained
13090 F:      drivers/net/ethernet/mediatek/
13091
13092 MEDIATEK ETHERNET PCS DRIVER
13093 M:      Alexander Couzens <[email protected]>
13094 M:      Daniel Golle <[email protected]>
13095 L:      [email protected]
13096 S:      Maintained
13097 F:      drivers/net/pcs/pcs-mtk-lynxi.c
13098 F:      include/linux/pcs/pcs-mtk-lynxi.h
13099
13100 MEDIATEK I2C CONTROLLER DRIVER
13101 M:      Qii Wang <[email protected]>
13102 L:      [email protected]
13103 S:      Maintained
13104 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
13105 F:      drivers/i2c/busses/i2c-mt65xx.c
13106
13107 MEDIATEK IOMMU DRIVER
13108 M:      Yong Wu <[email protected]>
13109 L:      [email protected]
13110 L:      [email protected] (moderated for non-subscribers)
13111 S:      Supported
13112 F:      Documentation/devicetree/bindings/iommu/mediatek*
13113 F:      drivers/iommu/mtk_iommu*
13114 F:      include/dt-bindings/memory/mt*-port.h
13115
13116 MEDIATEK JPEG DRIVER
13117 M:      Bin Liu <[email protected]>
13118 S:      Supported
13119 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
13120 F:      drivers/media/platform/mediatek/jpeg/
13121
13122 MEDIATEK KEYPAD DRIVER
13123 M:      Mattijs Korpershoek <[email protected]>
13124 S:      Supported
13125 F:      Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
13126 F:      drivers/input/keyboard/mt6779-keypad.c
13127
13128 MEDIATEK MDP DRIVER
13129 M:      Minghsiu Tsai <[email protected]>
13130 M:      Houlong Wei <[email protected]>
13131 M:      Andrew-CT Chen <[email protected]>
13132 S:      Supported
13133 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
13134 F:      drivers/media/platform/mediatek/mdp/
13135 F:      drivers/media/platform/mediatek/vpu/
13136
13137 MEDIATEK MEDIA DRIVER
13138 M:      Tiffany Lin <[email protected]>
13139 M:      Andrew-CT Chen <[email protected]>
13140 M:      Yunfei Dong <[email protected]>
13141 S:      Supported
13142 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
13143 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
13144 F:      drivers/media/platform/mediatek/vcodec/
13145 F:      drivers/media/platform/mediatek/vpu/
13146
13147 MEDIATEK MMC/SD/SDIO DRIVER
13148 M:      Chaotian Jing <[email protected]>
13149 S:      Maintained
13150 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
13151 F:      drivers/mmc/host/mtk-sd.c
13152
13153 MEDIATEK MT76 WIRELESS LAN DRIVER
13154 M:      Felix Fietkau <[email protected]>
13155 M:      Lorenzo Bianconi <[email protected]>
13156 M:      Ryder Lee <[email protected]>
13157 R:      Shayne Chen <[email protected]>
13158 R:      Sean Wang <[email protected]>
13159 L:      [email protected]
13160 S:      Maintained
13161 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
13162 F:      drivers/net/wireless/mediatek/mt76/
13163
13164 MEDIATEK MT7601U WIRELESS LAN DRIVER
13165 M:      Jakub Kicinski <[email protected]>
13166 L:      [email protected]
13167 S:      Maintained
13168 F:      drivers/net/wireless/mediatek/mt7601u/
13169
13170 MEDIATEK MT7621 CLOCK DRIVER
13171 M:      Sergio Paracuellos <[email protected]>
13172 S:      Maintained
13173 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
13174 F:      drivers/clk/ralink/clk-mt7621.c
13175
13176 MEDIATEK MT7621/28/88 I2C DRIVER
13177 M:      Stefan Roese <[email protected]>
13178 L:      [email protected]
13179 S:      Maintained
13180 F:      Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
13181 F:      drivers/i2c/busses/i2c-mt7621.c
13182
13183 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
13184 M:      Sergio Paracuellos <[email protected]>
13185 S:      Maintained
13186 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
13187 F:      drivers/pci/controller/pcie-mt7621.c
13188
13189 MEDIATEK MT7621 PHY PCI DRIVER
13190 M:      Sergio Paracuellos <[email protected]>
13191 S:      Maintained
13192 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
13193 F:      drivers/phy/ralink/phy-mt7621-pci.c
13194
13195 MEDIATEK NAND CONTROLLER DRIVER
13196 L:      [email protected]
13197 S:      Orphan
13198 F:      Documentation/devicetree/bindings/mtd/mediatek,mtk-nfc.yaml
13199 F:      drivers/mtd/nand/raw/mtk_*
13200
13201 MEDIATEK PMIC LED DRIVER
13202 M:      Sean Wang <[email protected]>
13203 S:      Maintained
13204 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
13205 F:      drivers/leds/leds-mt6323.c
13206
13207 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
13208 M:      Sean Wang <[email protected]>
13209 S:      Maintained
13210 F:      drivers/char/hw_random/mtk-rng.c
13211
13212 MEDIATEK SMI DRIVER
13213 M:      Yong Wu <[email protected]>
13214 L:      [email protected] (moderated for non-subscribers)
13215 S:      Supported
13216 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
13217 F:      drivers/memory/mtk-smi.c
13218 F:      include/soc/mediatek/smi.h
13219
13220 MEDIATEK SWITCH DRIVER
13221 M:      Sean Wang <[email protected]>
13222 M:      Landen Chao <[email protected]>
13223 M:      DENG Qingfang <[email protected]>
13224 M:      Daniel Golle <[email protected]>
13225 L:      [email protected]
13226 S:      Maintained
13227 F:      drivers/net/dsa/mt7530-mdio.c
13228 F:      drivers/net/dsa/mt7530-mmio.c
13229 F:      drivers/net/dsa/mt7530.*
13230 F:      net/dsa/tag_mtk.c
13231
13232 MEDIATEK T7XX 5G WWAN MODEM DRIVER
13233 M:      Chandrashekar Devegowda <[email protected]>
13234 M:      Intel Corporation <[email protected]>
13235 R:      Chiranjeevi Rapolu <[email protected]>
13236 R:      Liu Haijun <[email protected]>
13237 R:      M Chetan Kumar <[email protected]>
13238 R:      Ricardo Martinez <[email protected]>
13239 L:      [email protected]
13240 S:      Supported
13241 F:      drivers/net/wwan/t7xx/
13242
13243 MEDIATEK USB3 DRD IP DRIVER
13244 M:      Chunfeng Yun <[email protected]>
13245 L:      [email protected]
13246 L:      [email protected] (moderated for non-subscribers)
13247 L:      [email protected] (moderated for non-subscribers)
13248 S:      Maintained
13249 F:      Documentation/devicetree/bindings/usb/mediatek,*
13250 F:      drivers/usb/host/xhci-mtk*
13251 F:      drivers/usb/mtu3/
13252
13253 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
13254 M:      Peter Senna Tschudin <[email protected]>
13255 M:      Martin Donnelly <[email protected]>
13256 M:      Martyn Welch <[email protected]>
13257 S:      Maintained
13258 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
13259 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
13260
13261 MEGARAID SCSI/SAS DRIVERS
13262 M:      Kashyap Desai <[email protected]>
13263 M:      Sumit Saxena <[email protected]>
13264 M:      Shivasharan S <[email protected]>
13265 L:      [email protected]
13266 L:      [email protected]
13267 S:      Maintained
13268 W:      http://www.avagotech.com/support/
13269 F:      Documentation/scsi/megaraid.rst
13270 F:      drivers/scsi/megaraid.*
13271 F:      drivers/scsi/megaraid/
13272
13273 MELEXIS MLX90614 DRIVER
13274 M:      Crt Mori <[email protected]>
13275 L:      [email protected]
13276 S:      Supported
13277 W:      http://www.melexis.com
13278 F:      drivers/iio/temperature/mlx90614.c
13279
13280 MELEXIS MLX90632 DRIVER
13281 M:      Crt Mori <[email protected]>
13282 L:      [email protected]
13283 S:      Supported
13284 W:      http://www.melexis.com
13285 F:      drivers/iio/temperature/mlx90632.c
13286
13287 MELFAS MIP4 TOUCHSCREEN DRIVER
13288 M:      Sangwon Jee <[email protected]>
13289 S:      Supported
13290 W:      http://www.melfas.com
13291 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13292 F:      drivers/input/touchscreen/melfas_mip4.c
13293
13294 MELLANOX BLUEFIELD I2C DRIVER
13295 M:      Khalil Blaiech <[email protected]>
13296 M:      Asmaa Mnebhi <[email protected]>
13297 L:      [email protected]
13298 S:      Supported
13299 F:      drivers/i2c/busses/i2c-mlxbf.c
13300
13301 MELLANOX ETHERNET DRIVER (mlx4_en)
13302 M:      Tariq Toukan <[email protected]>
13303 L:      [email protected]
13304 S:      Supported
13305 W:      http://www.mellanox.com
13306 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13307 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13308
13309 MELLANOX ETHERNET DRIVER (mlx5e)
13310 M:      Saeed Mahameed <[email protected]>
13311 L:      [email protected]
13312 S:      Supported
13313 W:      http://www.mellanox.com
13314 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13315 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13316
13317 MELLANOX ETHERNET INNOVA DRIVERS
13318 R:      Boris Pismenny <[email protected]>
13319 L:      [email protected]
13320 S:      Supported
13321 W:      http://www.mellanox.com
13322 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13323 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13324 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13325 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13326
13327 MELLANOX ETHERNET SWITCH DRIVERS
13328 M:      Ido Schimmel <[email protected]>
13329 M:      Petr Machata <[email protected]>
13330 L:      [email protected]
13331 S:      Supported
13332 W:      http://www.mellanox.com
13333 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13334 F:      drivers/net/ethernet/mellanox/mlxsw/
13335 F:      tools/testing/selftests/drivers/net/mlxsw/
13336
13337 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13338 M:      [email protected]
13339 L:      [email protected]
13340 S:      Supported
13341 W:      http://www.mellanox.com
13342 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13343 F:      drivers/net/ethernet/mellanox/mlxfw/
13344
13345 MELLANOX HARDWARE PLATFORM SUPPORT
13346 M:      Hans de Goede <[email protected]>
13347 M:      Mark Gross <[email protected]>
13348 M:      Vadim Pasternak <[email protected]>
13349 L:      [email protected]
13350 S:      Supported
13351 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13352 F:      drivers/platform/mellanox/
13353 F:      include/linux/platform_data/mlxreg.h
13354
13355 MELLANOX MLX4 core VPI driver
13356 M:      Tariq Toukan <[email protected]>
13357 L:      [email protected]
13358 L:      [email protected]
13359 S:      Supported
13360 W:      http://www.mellanox.com
13361 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13362 F:      drivers/net/ethernet/mellanox/mlx4/
13363 F:      include/linux/mlx4/
13364
13365 MELLANOX MLX4 IB driver
13366 M:      Yishai Hadas <[email protected]>
13367 L:      [email protected]
13368 S:      Supported
13369 W:      http://www.mellanox.com
13370 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13371 F:      drivers/infiniband/hw/mlx4/
13372 F:      include/linux/mlx4/
13373 F:      include/uapi/rdma/mlx4-abi.h
13374
13375 MELLANOX MLX5 core VPI driver
13376 M:      Saeed Mahameed <[email protected]>
13377 M:      Leon Romanovsky <[email protected]>
13378 L:      [email protected]
13379 L:      [email protected]
13380 S:      Supported
13381 W:      http://www.mellanox.com
13382 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13383 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13384 F:      drivers/net/ethernet/mellanox/mlx5/core/
13385 F:      include/linux/mlx5/
13386
13387 MELLANOX MLX5 IB driver
13388 M:      Leon Romanovsky <[email protected]>
13389 L:      [email protected]
13390 S:      Supported
13391 W:      http://www.mellanox.com
13392 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13393 F:      drivers/infiniband/hw/mlx5/
13394 F:      include/linux/mlx5/
13395 F:      include/uapi/rdma/mlx5-abi.h
13396
13397 MELLANOX MLXCPLD I2C AND MUX DRIVER
13398 M:      Vadim Pasternak <[email protected]>
13399 M:      Michael Shych <[email protected]>
13400 L:      [email protected]
13401 S:      Supported
13402 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13403 F:      drivers/i2c/busses/i2c-mlxcpld.c
13404 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13405
13406 MELLANOX MLXCPLD LED DRIVER
13407 M:      Vadim Pasternak <[email protected]>
13408 L:      [email protected]
13409 S:      Supported
13410 F:      Documentation/leds/leds-mlxcpld.rst
13411 F:      drivers/leds/leds-mlxcpld.c
13412 F:      drivers/leds/leds-mlxreg.c
13413
13414 MELLANOX PLATFORM DRIVER
13415 M:      Vadim Pasternak <[email protected]>
13416 L:      [email protected]
13417 S:      Supported
13418 F:      drivers/platform/x86/mlx-platform.c
13419
13420 MEMBARRIER SUPPORT
13421 M:      Mathieu Desnoyers <[email protected]>
13422 M:      "Paul E. McKenney" <[email protected]>
13423 L:      [email protected]
13424 S:      Supported
13425 F:      arch/powerpc/include/asm/membarrier.h
13426 F:      include/uapi/linux/membarrier.h
13427 F:      kernel/sched/membarrier.c
13428
13429 MEMBLOCK
13430 M:      Mike Rapoport <[email protected]>
13431 L:      [email protected]
13432 S:      Maintained
13433 F:      Documentation/core-api/boot-time-mm.rst
13434 F:      include/linux/memblock.h
13435 F:      mm/memblock.c
13436 F:      tools/testing/memblock/
13437
13438 MEMORY CONTROLLER DRIVERS
13439 M:      Krzysztof Kozlowski <[email protected]>
13440 L:      [email protected]
13441 S:      Maintained
13442 B:      mailto:[email protected]
13443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13444 F:      Documentation/devicetree/bindings/memory-controllers/
13445 F:      drivers/memory/
13446 F:      include/dt-bindings/memory/
13447 F:      include/memory/
13448
13449 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13450 M:      Dmitry Osipenko <[email protected]>
13451 L:      [email protected]
13452 L:      [email protected]
13453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13454 S:      Maintained
13455 F:      drivers/devfreq/tegra30-devfreq.c
13456
13457 MEMORY MANAGEMENT
13458 M:      Andrew Morton <[email protected]>
13459 L:      [email protected]
13460 S:      Maintained
13461 W:      http://www.linux-mm.org
13462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13463 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13464 F:      include/linux/gfp.h
13465 F:      include/linux/gfp_types.h
13466 F:      include/linux/memory_hotplug.h
13467 F:      include/linux/mm.h
13468 F:      include/linux/mmzone.h
13469 F:      include/linux/pagewalk.h
13470 F:      mm/
13471 F:      tools/mm/
13472 F:      tools/testing/selftests/mm/
13473
13474 VMALLOC
13475 M:      Andrew Morton <[email protected]>
13476 R:      Uladzislau Rezki <[email protected]>
13477 R:      Christoph Hellwig <[email protected]>
13478 L:      [email protected]
13479 S:      Maintained
13480 W:      http://www.linux-mm.org
13481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13482 F:      include/linux/vmalloc.h
13483 F:      mm/vmalloc.c
13484
13485 MEMORY HOT(UN)PLUG
13486 M:      David Hildenbrand <[email protected]>
13487 M:      Oscar Salvador <[email protected]>
13488 L:      [email protected]
13489 S:      Maintained
13490 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13491 F:      Documentation/core-api/memory-hotplug.rst
13492 F:      drivers/base/memory.c
13493 F:      include/linux/memory_hotplug.h
13494 F:      mm/memory_hotplug.c
13495 F:      tools/testing/selftests/memory-hotplug/
13496
13497 MEMORY TECHNOLOGY DEVICES (MTD)
13498 M:      Miquel Raynal <[email protected]>
13499 M:      Richard Weinberger <[email protected]>
13500 M:      Vignesh Raghavendra <[email protected]>
13501 L:      [email protected]
13502 S:      Maintained
13503 W:      http://www.linux-mtd.infradead.org/
13504 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13505 C:      irc://irc.oftc.net/mtd
13506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13508 F:      Documentation/devicetree/bindings/mtd/
13509 F:      drivers/mtd/
13510 F:      include/linux/mtd/
13511 F:      include/uapi/mtd/
13512
13513 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13514 M:      Dmitry Rokosov <[email protected]>
13515 L:      [email protected]
13516 S:      Maintained
13517 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13518 F:      drivers/iio/accel/msa311.c
13519
13520 MEN A21 WATCHDOG DRIVER
13521 M:      Johannes Thumshirn <[email protected]>
13522 L:      [email protected]
13523 S:      Maintained
13524 F:      drivers/watchdog/mena21_wdt.c
13525
13526 MEN CHAMELEON BUS (mcb)
13527 M:      Johannes Thumshirn <[email protected]>
13528 S:      Maintained
13529 F:      Documentation/driver-api/men-chameleon-bus.rst
13530 F:      drivers/mcb/
13531 F:      include/linux/mcb.h
13532
13533 MEN F21BMC (Board Management Controller)
13534 M:      Andreas Werner <[email protected]>
13535 S:      Supported
13536 F:      Documentation/hwmon/menf21bmc.rst
13537 F:      drivers/hwmon/menf21bmc_hwmon.c
13538 F:      drivers/leds/leds-menf21bmc.c
13539 F:      drivers/mfd/menf21bmc.c
13540 F:      drivers/watchdog/menf21bmc_wdt.c
13541
13542 MEN Z069 WATCHDOG DRIVER
13543 M:      Johannes Thumshirn <[email protected]>
13544 L:      [email protected]
13545 S:      Maintained
13546 F:      drivers/watchdog/menz69_wdt.c
13547
13548 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13549 M:      Neil Armstrong <[email protected]>
13550 L:      [email protected]
13551 L:      [email protected]
13552 S:      Supported
13553 W:      http://linux-meson.com/
13554 T:      git git://linuxtv.org/media_tree.git
13555 F:      Documentation/devicetree/bindings/media/cec/amlogic,meson-gx-ao-cec.yaml
13556 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13557 F:      drivers/media/cec/platform/meson/ao-cec.c
13558
13559 MESON GE2D DRIVER FOR AMLOGIC SOCS
13560 M:      Neil Armstrong <[email protected]>
13561 L:      [email protected]
13562 L:      [email protected]
13563 S:      Supported
13564 T:      git git://linuxtv.org/media_tree.git
13565 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13566 F:      drivers/media/platform/amlogic/meson-ge2d/
13567
13568 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13569 M:      Liang Yang <[email protected]>
13570 L:      [email protected]
13571 S:      Maintained
13572 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
13573 F:      drivers/mtd/nand/raw/meson_*
13574
13575 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13576 M:      Neil Armstrong <[email protected]>
13577 L:      [email protected]
13578 L:      [email protected]
13579 S:      Supported
13580 T:      git git://linuxtv.org/media_tree.git
13581 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13582 F:      drivers/staging/media/meson/vdec/
13583
13584 METHODE UDPU SUPPORT
13585 M:      Vladimir Vid <[email protected]>
13586 S:      Maintained
13587 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13588
13589 MHI BUS
13590 M:      Manivannan Sadhasivam <[email protected]>
13591 L:      [email protected]
13592 L:      [email protected]
13593 S:      Maintained
13594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13595 F:      Documentation/ABI/stable/sysfs-bus-mhi
13596 F:      Documentation/mhi/
13597 F:      drivers/bus/mhi/
13598 F:      include/linux/mhi.h
13599
13600 MICROBLAZE ARCHITECTURE
13601 M:      Michal Simek <[email protected]>
13602 S:      Supported
13603 W:      http://www.monstr.eu/fdt/
13604 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13605 F:      arch/microblaze/
13606
13607 MICROBLAZE TMR MANAGER
13608 M:      Appana Durga Kedareswara rao <[email protected]>
13609 S:      Supported
13610 F:      Documentation/ABI/testing/sysfs-driver-xilinx-tmr-manager
13611 F:      Documentation/devicetree/bindings/misc/xlnx,tmr-manager.yaml
13612 F:      drivers/misc/xilinx_tmr_manager.c
13613
13614 MICROBLAZE TMR INJECT
13615 M:      Appana Durga Kedareswara rao <[email protected]>
13616 S:      Supported
13617 F:      Documentation/devicetree/bindings/misc/xlnx,tmr-inject.yaml
13618 F:      drivers/misc/xilinx_tmr_inject.c
13619
13620 MICROCHIP AT91 DMA DRIVERS
13621 M:      Ludovic Desroches <[email protected]>
13622 M:      Tudor Ambarus <[email protected]>
13623 L:      [email protected] (moderated for non-subscribers)
13624 L:      [email protected]
13625 S:      Supported
13626 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13627 F:      drivers/dma/at_hdmac.c
13628 F:      drivers/dma/at_xdmac.c
13629 F:      include/dt-bindings/dma/at91.h
13630
13631 MICROCHIP AT91 SERIAL DRIVER
13632 M:      Richard Genoud <[email protected]>
13633 S:      Maintained
13634 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13635 F:      drivers/tty/serial/atmel_serial.c
13636 F:      drivers/tty/serial/atmel_serial.h
13637
13638 MICROCHIP AT91 USART MFD DRIVER
13639 M:      Radu Pirea <[email protected]>
13640 L:      [email protected]
13641 S:      Supported
13642 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13643 F:      drivers/mfd/at91-usart.c
13644 F:      include/dt-bindings/mfd/at91-usart.h
13645
13646 MICROCHIP AT91 USART SPI DRIVER
13647 M:      Radu Pirea <[email protected]>
13648 L:      [email protected]
13649 S:      Supported
13650 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13651 F:      drivers/spi/spi-at91-usart.c
13652
13653 MICROCHIP AUDIO ASOC DRIVERS
13654 M:      Codrin Ciubotariu <[email protected]>
13655 L:      [email protected] (moderated for non-subscribers)
13656 S:      Supported
13657 F:      sound/soc/atmel
13658
13659 MICROCHIP CSI2DC DRIVER
13660 M:      Eugen Hristev <[email protected]>
13661 L:      [email protected]
13662 S:      Supported
13663 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13664 F:      drivers/media/platform/microchip/microchip-csi2dc.c
13665
13666 MICROCHIP ECC DRIVER
13667 M:      Tudor Ambarus <[email protected]>
13668 L:      [email protected]
13669 S:      Maintained
13670 F:      drivers/crypto/atmel-ecc.*
13671
13672 MICROCHIP EIC DRIVER
13673 M:      Claudiu Beznea <[email protected]>
13674 L:      [email protected] (moderated for non-subscribers)
13675 S:      Supported
13676 F:      drivers/irqchip/irq-mchp-eic.c
13677
13678 MICROCHIP I2C DRIVER
13679 M:      Codrin Ciubotariu <[email protected]>
13680 L:      [email protected]
13681 S:      Supported
13682 F:      drivers/i2c/busses/i2c-at91-*.c
13683 F:      drivers/i2c/busses/i2c-at91.h
13684
13685 MICROCHIP ISC DRIVER
13686 M:      Eugen Hristev <[email protected]>
13687 L:      [email protected]
13688 S:      Supported
13689 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13690 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13691 F:      drivers/staging/media/deprecated/atmel/atmel-isc*
13692 F:      drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
13693 F:      drivers/media/platform/microchip/microchip-isc*
13694 F:      drivers/media/platform/microchip/microchip-sama*-isc*
13695 F:      include/linux/atmel-isc-media.h
13696
13697 MICROCHIP ISI DRIVER
13698 M:      Eugen Hristev <[email protected]>
13699 L:      [email protected]
13700 S:      Supported
13701 F:      drivers/media/platform/atmel/atmel-isi.c
13702 F:      drivers/media/platform/atmel/atmel-isi.h
13703
13704 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13705 M:      Woojung Huh <[email protected]>
13706 M:      [email protected]
13707 L:      [email protected]
13708 S:      Maintained
13709 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13710 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13711 F:      drivers/net/dsa/microchip/*
13712 F:      include/linux/dsa/ksz_common.h
13713 F:      include/linux/platform_data/microchip-ksz.h
13714 F:      net/dsa/tag_ksz.c
13715
13716 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13717 M:      Arun Ramadoss <[email protected]>
13718 R:      [email protected]
13719 L:      [email protected]
13720 S:      Maintained
13721 F:      drivers/net/phy/microchip_t1.c
13722
13723 MICROCHIP LAN743X ETHERNET DRIVER
13724 M:      Bryan Whitehead <[email protected]>
13725 M:      [email protected]
13726 L:      [email protected]
13727 S:      Maintained
13728 F:      drivers/net/ethernet/microchip/lan743x_*
13729
13730 MICROCHIP LAN966X ETHERNET DRIVER
13731 M:      Horatiu Vultur <[email protected]>
13732 M:      [email protected]
13733 L:      [email protected]
13734 S:      Maintained
13735 F:      drivers/net/ethernet/microchip/lan966x/*
13736
13737 MICROCHIP LCDFB DRIVER
13738 M:      Nicolas Ferre <[email protected]>
13739 L:      [email protected]
13740 S:      Maintained
13741 F:      drivers/video/fbdev/atmel_lcdfb.c
13742 F:      include/video/atmel_lcdc.h
13743
13744 MICROCHIP MCP16502 PMIC DRIVER
13745 M:      Claudiu Beznea <[email protected]>
13746 L:      [email protected] (moderated for non-subscribers)
13747 S:      Supported
13748 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13749 F:      drivers/regulator/mcp16502.c
13750
13751 MICROCHIP MCP3911 ADC DRIVER
13752 M:      Marcus Folkesson <[email protected]>
13753 M:      Kent Gustavsson <[email protected]>
13754 L:      [email protected]
13755 S:      Maintained
13756 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13757 F:      drivers/iio/adc/mcp3911.c
13758
13759 MICROCHIP MMC/SD/SDIO MCI DRIVER
13760 M:      Ludovic Desroches <[email protected]>
13761 S:      Maintained
13762 F:      drivers/mmc/host/atmel-mci.c
13763
13764 MICROCHIP NAND DRIVER
13765 M:      Tudor Ambarus <[email protected]>
13766 L:      [email protected]
13767 S:      Supported
13768 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13769 F:      drivers/mtd/nand/raw/atmel/*
13770
13771 MICROCHIP PCI1XXXX GP DRIVER
13772 M:      Kumaravel Thiagarajan <[email protected]>
13773 L:      [email protected]
13774 S:      Supported
13775 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13776 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13777 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13778
13779 MICROCHIP OTPC DRIVER
13780 M:      Claudiu Beznea <[email protected]>
13781 L:      [email protected] (moderated for non-subscribers)
13782 S:      Supported
13783 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13784 F:      drivers/nvmem/microchip-otpc.c
13785 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13786
13787 MICROCHIP PCI1XXXX I2C DRIVER
13788 M:      Tharun Kumar P <[email protected]>
13789 M:      Kumaravel Thiagarajan <[email protected]>
13790 M:      Microchip Linux Driver Support <[email protected]>
13791 L:      [email protected]
13792 S:      Maintained
13793 F:      drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13794
13795 MICROCHIP PCIe UART DRIVER
13796 M:      Kumaravel Thiagarajan <[email protected]>
13797 M:      Tharun Kumar P <[email protected]>
13798 L:      [email protected]
13799 S:      Maintained
13800 F:      drivers/tty/serial/8250/8250_pci1xxxx.c
13801
13802 MICROCHIP PWM DRIVER
13803 M:      Claudiu Beznea <[email protected]>
13804 L:      [email protected] (moderated for non-subscribers)
13805 L:      [email protected]
13806 S:      Supported
13807 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13808 F:      drivers/pwm/pwm-atmel.c
13809
13810 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13811 M:      Eugen Hristev <[email protected]>
13812 L:      [email protected]
13813 S:      Supported
13814 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13815 F:      drivers/iio/adc/at91-sama5d2_adc.c
13816 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13817
13818 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13819 M:      Claudiu Beznea <[email protected]>
13820 S:      Supported
13821 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13822
13823 MICROCHIP SPI DRIVER
13824 M:      Tudor Ambarus <[email protected]>
13825 S:      Supported
13826 F:      drivers/spi/spi-atmel.*
13827
13828 MICROCHIP SSC DRIVER
13829 M:      Codrin Ciubotariu <[email protected]>
13830 L:      [email protected] (moderated for non-subscribers)
13831 S:      Supported
13832 F:      drivers/misc/atmel-ssc.c
13833 F:      include/linux/atmel-ssc.h
13834
13835 MICROCHIP SOC DRIVERS
13836 M:      Conor Dooley <[email protected]>
13837 S:      Supported
13838 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
13839 F:      drivers/soc/microchip/
13840
13841 MICROCHIP USB251XB DRIVER
13842 M:      Richard Leitner <[email protected]>
13843 L:      [email protected]
13844 S:      Maintained
13845 F:      Documentation/devicetree/bindings/usb/usb251xb.yaml
13846 F:      drivers/usb/misc/usb251xb.c
13847
13848 MICROCHIP USBA UDC DRIVER
13849 M:      Cristian Birsan <[email protected]>
13850 L:      [email protected] (moderated for non-subscribers)
13851 S:      Supported
13852 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13853
13854 MICROCHIP WILC1000 WIFI DRIVER
13855 M:      Ajay Singh <[email protected]>
13856 M:      Claudiu Beznea <[email protected]>
13857 L:      [email protected]
13858 S:      Supported
13859 F:      drivers/net/wireless/microchip/wilc1000/
13860
13861 MICROSEMI MIPS SOCS
13862 M:      Alexandre Belloni <[email protected]>
13863 M:      [email protected]
13864 L:      [email protected]
13865 S:      Supported
13866 F:      Documentation/devicetree/bindings/mips/mscc.txt
13867 F:      Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
13868 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13869 F:      arch/mips/boot/dts/mscc/
13870 F:      arch/mips/configs/generic/board-ocelot.config
13871 F:      arch/mips/generic/board-ocelot.c
13872
13873 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13874 M:      Don Brace <[email protected]>
13875 L:      [email protected]
13876 L:      [email protected]
13877 S:      Supported
13878 F:      Documentation/scsi/smartpqi.rst
13879 F:      drivers/scsi/smartpqi/Kconfig
13880 F:      drivers/scsi/smartpqi/Makefile
13881 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13882 F:      include/linux/cciss*.h
13883 F:      include/uapi/linux/cciss*.h
13884
13885 MICROSOFT MANA RDMA DRIVER
13886 M:      Long Li <[email protected]>
13887 M:      Ajay Sharma <[email protected]>
13888 L:      [email protected]
13889 S:      Supported
13890 F:      drivers/infiniband/hw/mana/
13891 F:      include/net/mana
13892 F:      include/uapi/rdma/mana-abi.h
13893
13894 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13895 M:      Maximilian Luz <[email protected]>
13896 L:      [email protected]
13897 S:      Maintained
13898 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13899
13900 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13901 M:      Maximilian Luz <[email protected]>
13902 L:      [email protected]
13903 L:      [email protected]
13904 S:      Maintained
13905 F:      drivers/power/supply/surface_battery.c
13906 F:      drivers/power/supply/surface_charger.c
13907
13908 MICROSOFT SURFACE DTX DRIVER
13909 M:      Maximilian Luz <[email protected]>
13910 L:      [email protected]
13911 S:      Maintained
13912 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13913 F:      drivers/platform/surface/surface_dtx.c
13914 F:      include/uapi/linux/surface_aggregator/dtx.h
13915
13916 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13917 M:      Maximilian Luz <[email protected]>
13918 L:      [email protected]
13919 S:      Maintained
13920 F:      drivers/platform/surface/surface_gpe.c
13921
13922 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13923 M:      Hans de Goede <[email protected]>
13924 M:      Mark Gross <[email protected]>
13925 M:      Maximilian Luz <[email protected]>
13926 L:      [email protected]
13927 S:      Maintained
13928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13929 F:      drivers/platform/surface/
13930
13931 MICROSOFT SURFACE HID TRANSPORT DRIVER
13932 M:      Maximilian Luz <[email protected]>
13933 L:      [email protected]
13934 L:      [email protected]
13935 S:      Maintained
13936 F:      drivers/hid/surface-hid/
13937
13938 MICROSOFT SURFACE HOT-PLUG DRIVER
13939 M:      Maximilian Luz <[email protected]>
13940 L:      [email protected]
13941 S:      Maintained
13942 F:      drivers/platform/surface/surface_hotplug.c
13943
13944 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13945 M:      Maximilian Luz <[email protected]>
13946 L:      [email protected]
13947 S:      Maintained
13948 F:      drivers/platform/surface/surface_platform_profile.c
13949
13950 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13951 M:      Chen Yu <[email protected]>
13952 L:      [email protected]
13953 S:      Supported
13954 F:      drivers/platform/surface/surfacepro3_button.c
13955
13956 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13957 M:      Maximilian Luz <[email protected]>
13958 L:      [email protected]
13959 S:      Maintained
13960 W:      https://github.com/linux-surface/surface-aggregator-module
13961 C:      irc://irc.libera.chat/linux-surface
13962 F:      Documentation/driver-api/surface_aggregator/
13963 F:      drivers/platform/surface/aggregator/
13964 F:      drivers/platform/surface/surface_acpi_notify.c
13965 F:      drivers/platform/surface/surface_aggregator_cdev.c
13966 F:      drivers/platform/surface/surface_aggregator_registry.c
13967 F:      include/linux/surface_acpi_notify.h
13968 F:      include/linux/surface_aggregator/
13969 F:      include/uapi/linux/surface_aggregator/
13970
13971 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13972 M:      Maximilian Luz <[email protected]>
13973 L:      [email protected]
13974 S:      Maintained
13975 F:      drivers/platform/surface/surface_aggregator_hub.c
13976
13977 MICROTEK X6 SCANNER
13978 M:      Oliver Neukum <[email protected]>
13979 S:      Maintained
13980 F:      drivers/usb/image/microtek.*
13981
13982 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13983 M:      Luka Kovacic <[email protected]>
13984 M:      Luka Perkov <[email protected]>
13985 S:      Maintained
13986 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13987 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13988 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13989 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13990 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13991 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13992
13993 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13994 M:      Sakari Ailus <[email protected]>
13995 L:      [email protected]
13996 S:      Maintained
13997 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13998 F:      Documentation/driver-api/media/drivers/ccs/
13999 F:      Documentation/userspace-api/media/drivers/ccs.rst
14000 F:      drivers/media/i2c/ccs-pll.c
14001 F:      drivers/media/i2c/ccs-pll.h
14002 F:      drivers/media/i2c/ccs/
14003 F:      include/uapi/linux/ccs.h
14004 F:      include/uapi/linux/smiapp.h
14005
14006 MIPS
14007 M:      Thomas Bogendoerfer <[email protected]>
14008 L:      [email protected]
14009 S:      Maintained
14010 W:      http://www.linux-mips.org/
14011 Q:      https://patchwork.kernel.org/project/linux-mips/list/
14012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
14013 F:      Documentation/devicetree/bindings/mips/
14014 F:      Documentation/mips/
14015 F:      arch/mips/
14016 F:      drivers/platform/mips/
14017 F:      include/dt-bindings/mips/
14018
14019 MIPS BOSTON DEVELOPMENT BOARD
14020 M:      Paul Burton <[email protected]>
14021 L:      [email protected]
14022 S:      Maintained
14023 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
14024 F:      arch/mips/boot/dts/img/boston.dts
14025 F:      arch/mips/configs/generic/board-boston.config
14026 F:      drivers/clk/imgtec/clk-boston.c
14027 F:      include/dt-bindings/clock/boston-clock.h
14028
14029 MIPS CORE DRIVERS
14030 M:      Thomas Bogendoerfer <[email protected]>
14031 M:      Serge Semin <[email protected]>
14032 L:      [email protected]
14033 S:      Supported
14034 F:      drivers/bus/mips_cdmm.c
14035 F:      drivers/clocksource/mips-gic-timer.c
14036 F:      drivers/cpuidle/cpuidle-cps.c
14037 F:      drivers/irqchip/irq-mips-cpu.c
14038 F:      drivers/irqchip/irq-mips-gic.c
14039
14040 MIPS GENERIC PLATFORM
14041 M:      Paul Burton <[email protected]>
14042 L:      [email protected]
14043 S:      Supported
14044 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
14045 F:      arch/mips/generic/
14046 F:      arch/mips/tools/generic-board-config.sh
14047
14048 MIPS RINT INSTRUCTION EMULATION
14049 M:      Aleksandar Markovic <[email protected]>
14050 L:      [email protected]
14051 S:      Supported
14052 F:      arch/mips/math-emu/dp_rint.c
14053 F:      arch/mips/math-emu/sp_rint.c
14054
14055 MIPS/LOONGSON1 ARCHITECTURE
14056 M:      Keguang Zhang <[email protected]>
14057 L:      [email protected]
14058 S:      Maintained
14059 F:      arch/mips/include/asm/mach-loongson32/
14060 F:      arch/mips/loongson32/
14061 F:      drivers/*/*/*loongson1*
14062 F:      drivers/*/*loongson1*
14063
14064 MIPS/LOONGSON2EF ARCHITECTURE
14065 M:      Jiaxun Yang <[email protected]>
14066 L:      [email protected]
14067 S:      Maintained
14068 F:      arch/mips/include/asm/mach-loongson2ef/
14069 F:      arch/mips/loongson2ef/
14070 F:      drivers/cpufreq/loongson2_cpufreq.c
14071
14072 MIPS/LOONGSON64 ARCHITECTURE
14073 M:      Huacai Chen <[email protected]>
14074 M:      Jiaxun Yang <[email protected]>
14075 L:      [email protected]
14076 S:      Maintained
14077 F:      arch/mips/include/asm/mach-loongson64/
14078 F:      arch/mips/loongson64/
14079 F:      drivers/irqchip/irq-loongson*
14080 F:      drivers/platform/mips/cpu_hwmon.c
14081
14082 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
14083 M:      Hans Verkuil <[email protected]>
14084 L:      [email protected]
14085 S:      Odd Fixes
14086 W:      https://linuxtv.org
14087 T:      git git://linuxtv.org/media_tree.git
14088 F:      drivers/media/radio/radio-miropcm20*
14089
14090 MMP SUPPORT
14091 R:      Lubomir Rintel <[email protected]>
14092 L:      [email protected] (moderated for non-subscribers)
14093 S:      Odd Fixes
14094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
14095 F:      arch/arm/boot/dts/mmp*
14096 F:      arch/arm/mach-mmp/
14097 F:      include/linux/soc/mmp/
14098
14099 MMP USB PHY DRIVERS
14100 R:      Lubomir Rintel <[email protected]>
14101 L:      [email protected] (moderated for non-subscribers)
14102 S:      Maintained
14103 F:      drivers/phy/marvell/phy-mmp3-usb.c
14104 F:      drivers/phy/marvell/phy-pxa-usb.c
14105
14106 MMU GATHER AND TLB INVALIDATION
14107 M:      Will Deacon <[email protected]>
14108 M:      "Aneesh Kumar K.V" <[email protected]>
14109 M:      Andrew Morton <[email protected]>
14110 M:      Nick Piggin <[email protected]>
14111 M:      Peter Zijlstra <[email protected]>
14112 L:      [email protected]
14113 L:      [email protected]
14114 S:      Maintained
14115 F:      arch/*/include/asm/tlb.h
14116 F:      include/asm-generic/tlb.h
14117 F:      mm/mmu_gather.c
14118
14119 MN88472 MEDIA DRIVER
14120 M:      Antti Palosaari <[email protected]>
14121 L:      [email protected]
14122 S:      Maintained
14123 W:      https://linuxtv.org
14124 W:      http://palosaari.fi/linux/
14125 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14126 F:      drivers/media/dvb-frontends/mn88472*
14127
14128 MN88473 MEDIA DRIVER
14129 M:      Antti Palosaari <[email protected]>
14130 L:      [email protected]
14131 S:      Maintained
14132 W:      https://linuxtv.org
14133 W:      http://palosaari.fi/linux/
14134 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14135 F:      drivers/media/dvb-frontends/mn88473*
14136
14137 MODULE SUPPORT
14138 M:      Luis Chamberlain <[email protected]>
14139 L:      [email protected]
14140 L:      [email protected]
14141 S:      Maintained
14142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
14143 F:      include/linux/module.h
14144 F:      kernel/module/
14145 F:      scripts/module*
14146
14147 MONOLITHIC POWER SYSTEM PMIC DRIVER
14148 M:      Saravanan Sekar <[email protected]>
14149 S:      Maintained
14150 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
14151 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
14152 F:      drivers/hwmon/pmbus/mpq7932.c
14153 F:      drivers/iio/adc/mp2629_adc.c
14154 F:      drivers/mfd/mp2629.c
14155 F:      drivers/power/supply/mp2629_charger.c
14156 F:      drivers/regulator/mp5416.c
14157 F:      drivers/regulator/mpq7920.c
14158 F:      drivers/regulator/mpq7920.h
14159 F:      include/linux/mfd/mp2629.h
14160
14161 MOST(R) TECHNOLOGY DRIVER
14162 M:      Parthiban Veerasooran <[email protected]>
14163 M:      Christian Gromm <[email protected]>
14164 S:      Maintained
14165 F:      Documentation/ABI/testing/configfs-most
14166 F:      Documentation/ABI/testing/sysfs-bus-most
14167 F:      drivers/most/
14168 F:      drivers/staging/most/
14169 F:      include/linux/most.h
14170
14171 MOTORCOMM PHY DRIVER
14172 M:      Peter Geis <[email protected]>
14173 M:      Frank <[email protected]>
14174 L:      [email protected]
14175 S:      Maintained
14176 F:      Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
14177 F:      drivers/net/phy/motorcomm.c
14178
14179 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
14180 M:      Jiri Slaby <[email protected]>
14181 S:      Maintained
14182 F:      Documentation/driver-api/tty/moxa-smartio.rst
14183 F:      drivers/tty/mxser.*
14184
14185 MR800 AVERMEDIA USB FM RADIO DRIVER
14186 M:      Alexey Klimov <[email protected]>
14187 L:      [email protected]
14188 S:      Maintained
14189 T:      git git://linuxtv.org/media_tree.git
14190 F:      drivers/media/radio/radio-mr800.c
14191
14192 MRF24J40 IEEE 802.15.4 RADIO DRIVER
14193 M:      Stefan Schmidt <[email protected]>
14194 L:      [email protected]
14195 S:      Odd Fixes
14196 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
14197 F:      drivers/net/ieee802154/mrf24j40.c
14198
14199 MSI EC DRIVER
14200 M:      Nikita Kravets <[email protected]>
14201 L:      [email protected]
14202 S:      Maintained
14203 W:      https://github.com/BeardOverflow/msi-ec
14204 F:      drivers/platform/x86/msi-ec.*
14205
14206 MSI LAPTOP SUPPORT
14207 M:      "Lee, Chun-Yi" <[email protected]>
14208 L:      [email protected]
14209 S:      Maintained
14210 F:      drivers/platform/x86/msi-laptop.c
14211
14212 MSI WMI SUPPORT
14213 L:      [email protected]
14214 S:      Orphan
14215 F:      drivers/platform/x86/msi-wmi.c
14216
14217 MSI001 MEDIA DRIVER
14218 M:      Antti Palosaari <[email protected]>
14219 L:      [email protected]
14220 S:      Maintained
14221 W:      https://linuxtv.org
14222 W:      http://palosaari.fi/linux/
14223 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14224 T:      git git://linuxtv.org/anttip/media_tree.git
14225 F:      drivers/media/tuners/msi001*
14226
14227 MSI2500 MEDIA DRIVER
14228 M:      Antti Palosaari <[email protected]>
14229 L:      [email protected]
14230 S:      Maintained
14231 W:      https://linuxtv.org
14232 W:      http://palosaari.fi/linux/
14233 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14234 T:      git git://linuxtv.org/anttip/media_tree.git
14235 F:      drivers/media/usb/msi2500/
14236
14237 MSTAR INTERRUPT CONTROLLER DRIVER
14238 M:      Mark-PK Tsai <[email protected]>
14239 M:      Daniel Palmer <[email protected]>
14240 S:      Maintained
14241 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
14242 F:      drivers/irqchip/irq-mst-intc.c
14243
14244 MSYSTEMS DISKONCHIP G3 MTD DRIVER
14245 M:      Robert Jarzmik <[email protected]>
14246 L:      [email protected]
14247 S:      Maintained
14248 F:      drivers/mtd/devices/docg3*
14249
14250 MT9P031 APTINA CAMERA SENSOR
14251 M:      Laurent Pinchart <[email protected]>
14252 L:      [email protected]
14253 S:      Maintained
14254 T:      git git://linuxtv.org/media_tree.git
14255 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
14256 F:      drivers/media/i2c/mt9p031.c
14257 F:      include/media/i2c/mt9p031.h
14258
14259 MT9T112 APTINA CAMERA SENSOR
14260 M:      Jacopo Mondi <[email protected]>
14261 L:      [email protected]
14262 S:      Odd Fixes
14263 T:      git git://linuxtv.org/media_tree.git
14264 F:      drivers/media/i2c/mt9t112.c
14265 F:      include/media/i2c/mt9t112.h
14266
14267 MT9V032 APTINA CAMERA SENSOR
14268 M:      Laurent Pinchart <[email protected]>
14269 L:      [email protected]
14270 S:      Maintained
14271 T:      git git://linuxtv.org/media_tree.git
14272 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
14273 F:      drivers/media/i2c/mt9v032.c
14274 F:      include/media/i2c/mt9v032.h
14275
14276 MT9V111 APTINA CAMERA SENSOR
14277 M:      Jacopo Mondi <[email protected]>
14278 L:      [email protected]
14279 S:      Maintained
14280 T:      git git://linuxtv.org/media_tree.git
14281 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
14282 F:      drivers/media/i2c/mt9v111.c
14283
14284 MULTIFUNCTION DEVICES (MFD)
14285 M:      Lee Jones <[email protected]>
14286 S:      Maintained
14287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14288 F:      Documentation/devicetree/bindings/mfd/
14289 F:      drivers/mfd/
14290 F:      include/dt-bindings/mfd/
14291 F:      include/linux/mfd/
14292
14293 MULTIMEDIA CARD (MMC) ETC. OVER SPI
14294 S:      Orphan
14295 F:      drivers/mmc/host/mmc_spi.c
14296 F:      include/linux/spi/mmc_spi.h
14297
14298 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
14299 M:      Ulf Hansson <[email protected]>
14300 L:      [email protected]
14301 S:      Maintained
14302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14303 F:      Documentation/devicetree/bindings/mmc/
14304 F:      drivers/mmc/
14305 F:      include/linux/mmc/
14306 F:      include/uapi/linux/mmc/
14307
14308 MULTIPLEXER SUBSYSTEM
14309 M:      Peter Rosin <[email protected]>
14310 S:      Maintained
14311 F:      Documentation/ABI/testing/sysfs-class-mux*
14312 F:      Documentation/devicetree/bindings/mux/
14313 F:      drivers/mux/
14314 F:      include/dt-bindings/mux/
14315 F:      include/linux/mux/
14316
14317 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
14318 M:      Bin Liu <[email protected]>
14319 L:      [email protected]
14320 S:      Maintained
14321 F:      drivers/usb/musb/
14322
14323 MXL301RF MEDIA DRIVER
14324 M:      Akihiro Tsukada <[email protected]>
14325 L:      [email protected]
14326 S:      Odd Fixes
14327 F:      drivers/media/tuners/mxl301rf*
14328
14329 MXL5007T MEDIA DRIVER
14330 M:      Michael Krufky <[email protected]>
14331 L:      [email protected]
14332 S:      Maintained
14333 W:      https://linuxtv.org
14334 W:      http://github.com/mkrufky
14335 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14336 T:      git git://linuxtv.org/mkrufky/tuners.git
14337 F:      drivers/media/tuners/mxl5007t.*
14338
14339 MXSFB DRM DRIVER
14340 M:      Marek Vasut <[email protected]>
14341 M:      Stefan Agner <[email protected]>
14342 L:      [email protected]
14343 S:      Supported
14344 T:      git git://anongit.freedesktop.org/drm/drm-misc
14345 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
14346 F:      drivers/gpu/drm/mxsfb/
14347
14348 MYLEX DAC960 PCI RAID Controller
14349 M:      Hannes Reinecke <[email protected]>
14350 L:      [email protected]
14351 S:      Supported
14352 F:      drivers/scsi/myrb.*
14353 F:      drivers/scsi/myrs.*
14354
14355 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14356 M:      Chris Lee <[email protected]>
14357 L:      [email protected]
14358 S:      Supported
14359 W:      https://www.cspi.com/ethernet-products/support/downloads/
14360 F:      drivers/net/ethernet/myricom/myri10ge/
14361
14362 NAND FLASH SUBSYSTEM
14363 M:      Miquel Raynal <[email protected]>
14364 R:      Richard Weinberger <[email protected]>
14365 L:      [email protected]
14366 S:      Maintained
14367 W:      http://www.linux-mtd.infradead.org/
14368 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14369 C:      irc://irc.oftc.net/mtd
14370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14371 F:      drivers/mtd/nand/
14372 F:      include/linux/mtd/*nand*.h
14373
14374 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14375 M:      Daniel Mack <[email protected]>
14376 L:      [email protected] (moderated for non-subscribers)
14377 S:      Maintained
14378 W:      http://www.native-instruments.com
14379 F:      sound/usb/caiaq/
14380
14381 NATSEMI ETHERNET DRIVER (DP8381x)
14382 S:      Orphan
14383 F:      drivers/net/ethernet/natsemi/natsemi.c
14384
14385 NCR 5380 SCSI DRIVERS
14386 M:      Finn Thain <[email protected]>
14387 M:      Michael Schmitz <[email protected]>
14388 L:      [email protected]
14389 S:      Maintained
14390 F:      Documentation/scsi/g_NCR5380.rst
14391 F:      drivers/scsi/NCR5380.*
14392 F:      drivers/scsi/arm/cumana_1.c
14393 F:      drivers/scsi/arm/oak.c
14394 F:      drivers/scsi/atari_scsi.*
14395 F:      drivers/scsi/dmx3191d.c
14396 F:      drivers/scsi/g_NCR5380.*
14397 F:      drivers/scsi/mac_scsi.*
14398 F:      drivers/scsi/sun3_scsi.*
14399 F:      drivers/scsi/sun3_scsi_vme.c
14400
14401 NCSI LIBRARY
14402 M:      Samuel Mendoza-Jonas <[email protected]>
14403 S:      Maintained
14404 F:      net/ncsi/
14405
14406 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14407 M:      Guenter Roeck <[email protected]>
14408 L:      [email protected]
14409 S:      Maintained
14410 F:      Documentation/hwmon/nct6775.rst
14411 F:      drivers/hwmon/nct6775-core.c
14412 F:      drivers/hwmon/nct6775-platform.c
14413 F:      drivers/hwmon/nct6775.h
14414
14415 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14416 M:      Zev Weiss <[email protected]>
14417 L:      [email protected]
14418 S:      Maintained
14419 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14420 F:      drivers/hwmon/nct6775-i2c.c
14421
14422 NETDEVSIM
14423 M:      Jakub Kicinski <[email protected]>
14424 S:      Maintained
14425 F:      drivers/net/netdevsim/*
14426
14427 NETEM NETWORK EMULATOR
14428 M:      Stephen Hemminger <[email protected]>
14429 L:      [email protected]
14430 S:      Maintained
14431 F:      net/sched/sch_netem.c
14432
14433 NETERION 10GbE DRIVERS (s2io)
14434 M:      Jon Mason <[email protected]>
14435 L:      [email protected]
14436 S:      Supported
14437 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14438 F:      drivers/net/ethernet/neterion/
14439
14440 NETFILTER
14441 M:      Pablo Neira Ayuso <[email protected]>
14442 M:      Jozsef Kadlecsik <[email protected]>
14443 M:      Florian Westphal <[email protected]>
14444 L:      [email protected]
14445 L:      [email protected]
14446 S:      Maintained
14447 W:      http://www.netfilter.org/
14448 W:      http://www.iptables.org/
14449 W:      http://www.nftables.org/
14450 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14451 C:      irc://irc.libera.chat/netfilter
14452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14454 F:      include/linux/netfilter*
14455 F:      include/linux/netfilter/
14456 F:      include/net/netfilter/
14457 F:      include/uapi/linux/netfilter*
14458 F:      include/uapi/linux/netfilter/
14459 F:      net/*/netfilter.c
14460 F:      net/*/netfilter/
14461 F:      net/bridge/br_netfilter*.c
14462 F:      net/netfilter/
14463
14464 NETROM NETWORK LAYER
14465 M:      Ralf Baechle <[email protected]>
14466 L:      [email protected]
14467 S:      Maintained
14468 W:      http://www.linux-ax25.org/
14469 F:      include/net/netrom.h
14470 F:      include/uapi/linux/netrom.h
14471 F:      net/netrom/
14472
14473 NETRONIX EMBEDDED CONTROLLER
14474 M:      Jonathan Neuschäfer <[email protected]>
14475 S:      Maintained
14476 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14477 F:      drivers/mfd/ntxec.c
14478 F:      drivers/pwm/pwm-ntxec.c
14479 F:      drivers/rtc/rtc-ntxec.c
14480 F:      include/linux/mfd/ntxec.h
14481
14482 NETRONOME ETHERNET DRIVERS
14483 M:      Simon Horman <[email protected]>
14484 R:      Jakub Kicinski <[email protected]>
14485 L:      [email protected]
14486 S:      Maintained
14487 F:      drivers/net/ethernet/netronome/
14488
14489 NETWORK BLOCK DEVICE (NBD)
14490 M:      Josef Bacik <[email protected]>
14491 L:      [email protected]
14492 L:      [email protected]
14493 S:      Maintained
14494 F:      Documentation/admin-guide/blockdev/nbd.rst
14495 F:      drivers/block/nbd.c
14496 F:      include/trace/events/nbd.h
14497 F:      include/uapi/linux/nbd.h
14498
14499 NETWORK DROP MONITOR
14500 M:      Neil Horman <[email protected]>
14501 L:      [email protected]
14502 S:      Maintained
14503 W:      https://fedorahosted.org/dropwatch/
14504 F:      include/uapi/linux/net_dropmon.h
14505 F:      net/core/drop_monitor.c
14506
14507 NETWORKING DRIVERS
14508 M:      "David S. Miller" <[email protected]>
14509 M:      Eric Dumazet <[email protected]>
14510 M:      Jakub Kicinski <[email protected]>
14511 M:      Paolo Abeni <[email protected]>
14512 L:      [email protected]
14513 S:      Maintained
14514 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14517 F:      Documentation/devicetree/bindings/net/
14518 F:      drivers/connector/
14519 F:      drivers/net/
14520 F:      include/dt-bindings/net/
14521 F:      include/linux/etherdevice.h
14522 F:      include/linux/fcdevice.h
14523 F:      include/linux/fddidevice.h
14524 F:      include/linux/hippidevice.h
14525 F:      include/linux/if_*
14526 F:      include/linux/inetdevice.h
14527 F:      include/linux/netdevice.h
14528 F:      include/uapi/linux/if_*
14529 F:      include/uapi/linux/netdevice.h
14530
14531 NETWORKING DRIVERS (WIRELESS)
14532 M:      Kalle Valo <[email protected]>
14533 L:      [email protected]
14534 S:      Maintained
14535 W:      https://wireless.wiki.kernel.org/
14536 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14539 F:      Documentation/devicetree/bindings/net/wireless/
14540 F:      drivers/net/wireless/
14541
14542 NETWORKING [DSA]
14543 M:      Andrew Lunn <[email protected]>
14544 M:      Florian Fainelli <[email protected]>
14545 M:      Vladimir Oltean <[email protected]>
14546 S:      Maintained
14547 F:      Documentation/devicetree/bindings/net/dsa/
14548 F:      Documentation/devicetree/bindings/net/ethernet-switch-port.yaml
14549 F:      Documentation/devicetree/bindings/net/ethernet-switch.yaml
14550 F:      drivers/net/dsa/
14551 F:      include/linux/dsa/
14552 F:      include/linux/platform_data/dsa.h
14553 F:      include/net/dsa.h
14554 F:      net/dsa/
14555 F:      tools/testing/selftests/drivers/net/dsa/
14556
14557 NETWORKING [GENERAL]
14558 M:      "David S. Miller" <[email protected]>
14559 M:      Eric Dumazet <[email protected]>
14560 M:      Jakub Kicinski <[email protected]>
14561 M:      Paolo Abeni <[email protected]>
14562 L:      [email protected]
14563 S:      Maintained
14564 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14565 B:      mailto:[email protected]
14566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14568 F:      Documentation/core-api/netlink.rst
14569 F:      Documentation/networking/
14570 F:      Documentation/process/maintainer-netdev.rst
14571 F:      Documentation/userspace-api/netlink/
14572 F:      include/linux/in.h
14573 F:      include/linux/net.h
14574 F:      include/linux/netdevice.h
14575 F:      include/net/
14576 F:      include/uapi/linux/in.h
14577 F:      include/uapi/linux/net.h
14578 F:      include/uapi/linux/net_namespace.h
14579 F:      include/uapi/linux/netdevice.h
14580 F:      lib/net_utils.c
14581 F:      lib/random32.c
14582 F:      net/
14583 F:      tools/net/
14584 F:      tools/testing/selftests/net/
14585
14586 NETWORKING [IPSEC]
14587 M:      Steffen Klassert <[email protected]>
14588 M:      Herbert Xu <[email protected]>
14589 M:      "David S. Miller" <[email protected]>
14590 L:      [email protected]
14591 S:      Maintained
14592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14594 F:      include/net/xfrm.h
14595 F:      include/uapi/linux/xfrm.h
14596 F:      net/ipv4/ah4.c
14597 F:      net/ipv4/esp4*
14598 F:      net/ipv4/ip_vti.c
14599 F:      net/ipv4/ipcomp.c
14600 F:      net/ipv4/xfrm*
14601 F:      net/ipv6/ah6.c
14602 F:      net/ipv6/esp6*
14603 F:      net/ipv6/ip6_vti.c
14604 F:      net/ipv6/ipcomp6.c
14605 F:      net/ipv6/xfrm*
14606 F:      net/key/
14607 F:      net/xfrm/
14608 F:      tools/testing/selftests/net/ipsec.c
14609
14610 NETWORKING [IPv4/IPv6]
14611 M:      "David S. Miller" <[email protected]>
14612 M:      David Ahern <[email protected]>
14613 L:      [email protected]
14614 S:      Maintained
14615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14616 F:      arch/x86/net/*
14617 F:      include/linux/ip.h
14618 F:      include/linux/ipv6*
14619 F:      include/net/fib*
14620 F:      include/net/ip*
14621 F:      include/net/route.h
14622 F:      net/ipv4/
14623 F:      net/ipv6/
14624
14625 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14626 M:      Paul Moore <[email protected]>
14627 L:      [email protected]
14628 L:      [email protected]
14629 S:      Maintained
14630 W:      https://github.com/netlabel
14631 F:      Documentation/netlabel/
14632 F:      include/net/calipso.h
14633 F:      include/net/cipso_ipv4.h
14634 F:      include/net/netlabel.h
14635 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14636 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14637 F:      net/ipv4/cipso_ipv4.c
14638 F:      net/ipv6/calipso.c
14639 F:      net/netfilter/xt_CONNSECMARK.c
14640 F:      net/netfilter/xt_SECMARK.c
14641 F:      net/netlabel/
14642
14643 NETWORKING [MPTCP]
14644 M:      Matthieu Baerts <[email protected]>
14645 M:      Mat Martineau <[email protected]>
14646 L:      [email protected]
14647 L:      [email protected]
14648 S:      Maintained
14649 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14650 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14651 T:      git https://github.com/multipath-tcp/mptcp_net-next.git export-net
14652 T:      git https://github.com/multipath-tcp/mptcp_net-next.git export
14653 F:      Documentation/networking/mptcp-sysctl.rst
14654 F:      include/net/mptcp.h
14655 F:      include/trace/events/mptcp.h
14656 F:      include/uapi/linux/mptcp.h
14657 F:      net/mptcp/
14658 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14659 F:      tools/testing/selftests/net/mptcp/
14660
14661 NETWORKING [TCP]
14662 M:      Eric Dumazet <[email protected]>
14663 L:      [email protected]
14664 S:      Maintained
14665 F:      include/linux/tcp.h
14666 F:      include/net/tcp.h
14667 F:      include/trace/events/tcp.h
14668 F:      include/uapi/linux/tcp.h
14669 F:      net/ipv4/syncookies.c
14670 F:      net/ipv4/tcp*.c
14671 F:      net/ipv6/syncookies.c
14672 F:      net/ipv6/tcp*.c
14673
14674 NETWORKING [TLS]
14675 M:      Boris Pismenny <[email protected]>
14676 M:      John Fastabend <[email protected]>
14677 M:      Jakub Kicinski <[email protected]>
14678 L:      [email protected]
14679 S:      Maintained
14680 F:      include/net/tls.h
14681 F:      include/uapi/linux/tls.h
14682 F:      net/tls/*
14683
14684 NETXEN (1/10) GbE SUPPORT
14685 M:      Manish Chopra <[email protected]>
14686 M:      Rahul Verma <[email protected]>
14687 M:      [email protected]
14688 L:      [email protected]
14689 S:      Supported
14690 F:      drivers/net/ethernet/qlogic/netxen/
14691
14692 NET_FAILOVER MODULE
14693 M:      Sridhar Samudrala <[email protected]>
14694 L:      [email protected]
14695 S:      Supported
14696 F:      Documentation/networking/net_failover.rst
14697 F:      drivers/net/net_failover.c
14698 F:      include/net/net_failover.h
14699
14700 NEXTHOP
14701 M:      David Ahern <[email protected]>
14702 L:      [email protected]
14703 S:      Maintained
14704 F:      include/net/netns/nexthop.h
14705 F:      include/net/nexthop.h
14706 F:      include/uapi/linux/nexthop.h
14707 F:      net/ipv4/nexthop.c
14708
14709 NFC SUBSYSTEM
14710 M:      Krzysztof Kozlowski <[email protected]>
14711 L:      [email protected]
14712 S:      Maintained
14713 F:      Documentation/devicetree/bindings/net/nfc/
14714 F:      drivers/nfc/
14715 F:      include/net/nfc/
14716 F:      include/uapi/linux/nfc.h
14717 F:      net/nfc/
14718
14719 NFC VIRTUAL NCI DEVICE DRIVER
14720 M:      Bongsu Jeon <[email protected]>
14721 L:      [email protected]
14722 S:      Supported
14723 F:      drivers/nfc/virtual_ncidev.c
14724 F:      tools/testing/selftests/nci/
14725
14726 NFS, SUNRPC, AND LOCKD CLIENTS
14727 M:      Trond Myklebust <[email protected]>
14728 M:      Anna Schumaker <[email protected]>
14729 L:      [email protected]
14730 S:      Maintained
14731 W:      http://client.linux-nfs.org
14732 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14733 F:      fs/lockd/
14734 F:      fs/nfs/
14735 F:      fs/nfs_common/
14736 F:      include/linux/lockd/
14737 F:      include/linux/nfs*
14738 F:      include/linux/sunrpc/
14739 F:      include/uapi/linux/nfs*
14740 F:      include/uapi/linux/sunrpc/
14741 F:      net/sunrpc/
14742 F:      Documentation/filesystems/nfs/
14743
14744 NILFS2 FILESYSTEM
14745 M:      Ryusuke Konishi <[email protected]>
14746 L:      [email protected]
14747 S:      Supported
14748 W:      https://nilfs.sourceforge.io/
14749 W:      https://nilfs.osdn.jp/
14750 T:      git https://github.com/konis/nilfs2.git
14751 F:      Documentation/filesystems/nilfs2.rst
14752 F:      fs/nilfs2/
14753 F:      include/trace/events/nilfs2.h
14754 F:      include/uapi/linux/nilfs2_api.h
14755 F:      include/uapi/linux/nilfs2_ondisk.h
14756
14757 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14758 M:      YOKOTA Hiroshi <[email protected]>
14759 S:      Maintained
14760 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14761 F:      Documentation/scsi/NinjaSCSI.rst
14762 F:      drivers/scsi/pcmcia/nsp_*
14763
14764 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14765 M:      GOTO Masanori <[email protected]>
14766 M:      YOKOTA Hiroshi <[email protected]>
14767 S:      Maintained
14768 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14769 F:      Documentation/scsi/NinjaSCSI.rst
14770 F:      drivers/scsi/nsp32*
14771
14772 NINTENDO HID DRIVER
14773 M:      Daniel J. Ogorchock <[email protected]>
14774 L:      [email protected]
14775 S:      Maintained
14776 F:      drivers/hid/hid-nintendo*
14777
14778 NIOS2 ARCHITECTURE
14779 M:      Dinh Nguyen <[email protected]>
14780 S:      Maintained
14781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14782 F:      arch/nios2/
14783
14784 NITRO ENCLAVES (NE)
14785 M:      Alexandru Ciobotaru <[email protected]>
14786 L:      [email protected]
14787 L:      The AWS Nitro Enclaves Team <[email protected]>
14788 S:      Supported
14789 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14790 F:      Documentation/virt/ne_overview.rst
14791 F:      drivers/virt/nitro_enclaves/
14792 F:      include/linux/nitro_enclaves.h
14793 F:      include/uapi/linux/nitro_enclaves.h
14794 F:      samples/nitro_enclaves/
14795
14796 NOHZ, DYNTICKS SUPPORT
14797 M:      Frederic Weisbecker <[email protected]>
14798 M:      Thomas Gleixner <[email protected]>
14799 M:      Ingo Molnar <[email protected]>
14800 L:      [email protected]
14801 S:      Maintained
14802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14803 F:      include/linux/sched/nohz.h
14804 F:      include/linux/tick.h
14805 F:      kernel/time/tick*.*
14806
14807 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14808 M:      Pavel Machek <[email protected]>
14809 M:      Sakari Ailus <[email protected]>
14810 L:      [email protected]
14811 S:      Maintained
14812 F:      drivers/media/i2c/ad5820.c
14813 F:      drivers/media/i2c/et8ek8
14814
14815 NOKIA N900 POWER SUPPLY DRIVERS
14816 R:      Pali Rohár <[email protected]>
14817 F:      drivers/power/supply/bq2415x_charger.c
14818 F:      drivers/power/supply/bq27xxx_battery.c
14819 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14820 F:      drivers/power/supply/isp1704_charger.c
14821 F:      drivers/power/supply/rx51_battery.c
14822 F:      include/linux/power/bq2415x_charger.h
14823 F:      include/linux/power/bq27xxx_battery.h
14824
14825 NOLIBC HEADER FILE
14826 M:      Willy Tarreau <[email protected]>
14827 S:      Maintained
14828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14829 F:      tools/include/nolibc/
14830 F:      tools/testing/selftests/nolibc/
14831
14832 NSDEPS
14833 M:      Matthias Maennich <[email protected]>
14834 S:      Maintained
14835 F:      Documentation/core-api/symbol-namespaces.rst
14836 F:      scripts/nsdeps
14837
14838 NTB AMD DRIVER
14839 M:      Sanjay R Mehta <[email protected]>
14840 M:      Shyam Sundar S K <[email protected]>
14841 L:      [email protected]
14842 S:      Supported
14843 F:      drivers/ntb/hw/amd/
14844
14845 NTB DRIVER CORE
14846 M:      Jon Mason <[email protected]>
14847 M:      Dave Jiang <[email protected]>
14848 M:      Allen Hubbe <[email protected]>
14849 L:      [email protected]
14850 S:      Supported
14851 W:      https://github.com/jonmason/ntb/wiki
14852 T:      git git://github.com/jonmason/ntb.git
14853 F:      drivers/net/ntb_netdev.c
14854 F:      drivers/ntb/
14855 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14856 F:      include/linux/ntb.h
14857 F:      include/linux/ntb_transport.h
14858 F:      tools/testing/selftests/ntb/
14859
14860 NTB IDT DRIVER
14861 M:      Serge Semin <[email protected]>
14862 L:      [email protected]
14863 S:      Supported
14864 F:      drivers/ntb/hw/idt/
14865
14866 NTB INTEL DRIVER
14867 M:      Dave Jiang <[email protected]>
14868 L:      [email protected]
14869 S:      Supported
14870 W:      https://github.com/davejiang/linux/wiki
14871 T:      git https://github.com/davejiang/linux.git
14872 F:      drivers/ntb/hw/intel/
14873
14874 NTFS FILESYSTEM
14875 M:      Anton Altaparmakov <[email protected]>
14876 L:      [email protected]
14877 S:      Supported
14878 W:      http://www.tuxera.com/
14879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14880 F:      Documentation/filesystems/ntfs.rst
14881 F:      fs/ntfs/
14882
14883 NTFS3 FILESYSTEM
14884 M:      Konstantin Komarov <[email protected]>
14885 L:      [email protected]
14886 S:      Supported
14887 W:      http://www.paragon-software.com/
14888 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14889 F:      Documentation/filesystems/ntfs3.rst
14890 F:      fs/ntfs3/
14891
14892 NUBUS SUBSYSTEM
14893 M:      Finn Thain <[email protected]>
14894 L:      [email protected]
14895 S:      Maintained
14896 F:      arch/*/include/asm/nubus.h
14897 F:      drivers/nubus/
14898 F:      include/linux/nubus.h
14899 F:      include/uapi/linux/nubus.h
14900
14901 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14902 M:      Antonino Daplas <[email protected]>
14903 L:      [email protected]
14904 S:      Maintained
14905 F:      drivers/video/fbdev/nvidia/
14906 F:      drivers/video/fbdev/riva/
14907
14908 NVIDIA WMI EC BACKLIGHT DRIVER
14909 M:      Daniel Dadap <[email protected]>
14910 L:      [email protected]
14911 S:      Supported
14912 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14913 F:      include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14914
14915 NVM EXPRESS DRIVER
14916 M:      Keith Busch <[email protected]>
14917 M:      Jens Axboe <[email protected]>
14918 M:      Christoph Hellwig <[email protected]>
14919 M:      Sagi Grimberg <[email protected]>
14920 L:      [email protected]
14921 S:      Supported
14922 W:      http://git.infradead.org/nvme.git
14923 T:      git git://git.infradead.org/nvme.git
14924 F:      Documentation/nvme/
14925 F:      drivers/nvme/common/
14926 F:      drivers/nvme/host/
14927 F:      include/linux/nvme-*.h
14928 F:      include/linux/nvme.h
14929 F:      include/uapi/linux/nvme_ioctl.h
14930
14931 NVM EXPRESS FABRICS AUTHENTICATION
14932 M:      Hannes Reinecke <[email protected]>
14933 L:      [email protected]
14934 S:      Supported
14935 F:      drivers/nvme/host/auth.c
14936 F:      drivers/nvme/target/auth.c
14937 F:      drivers/nvme/target/fabrics-cmd-auth.c
14938 F:      include/linux/nvme-auth.h
14939
14940 NVM EXPRESS HARDWARE MONITORING SUPPORT
14941 M:      Guenter Roeck <[email protected]>
14942 L:      [email protected]
14943 S:      Supported
14944 F:      drivers/nvme/host/hwmon.c
14945
14946 NVM EXPRESS FC TRANSPORT DRIVERS
14947 M:      James Smart <[email protected]>
14948 L:      [email protected]
14949 S:      Supported
14950 F:      drivers/nvme/host/fc.c
14951 F:      drivers/nvme/target/fc.c
14952 F:      drivers/nvme/target/fcloop.c
14953 F:      include/linux/nvme-fc-driver.h
14954 F:      include/linux/nvme-fc.h
14955
14956 NVM EXPRESS TARGET DRIVER
14957 M:      Christoph Hellwig <[email protected]>
14958 M:      Sagi Grimberg <[email protected]>
14959 M:      Chaitanya Kulkarni <[email protected]>
14960 L:      [email protected]
14961 S:      Supported
14962 W:      http://git.infradead.org/nvme.git
14963 T:      git git://git.infradead.org/nvme.git
14964 F:      drivers/nvme/target/
14965
14966 NVMEM FRAMEWORK
14967 M:      Srinivas Kandagatla <[email protected]>
14968 S:      Maintained
14969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14970 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14971 F:      Documentation/devicetree/bindings/nvmem/
14972 F:      drivers/nvmem/
14973 F:      include/linux/nvmem-consumer.h
14974 F:      include/linux/nvmem-provider.h
14975
14976 NXP C45 TJA11XX PHY DRIVER
14977 M:      Radu Pirea <[email protected]>
14978 L:      [email protected]
14979 S:      Maintained
14980 F:      drivers/net/phy/nxp-c45-tja11xx.c
14981
14982 NXP FSPI DRIVER
14983 M:      Han Xu <[email protected]>
14984 M:      Haibo Chen <[email protected]>
14985 R:      Yogesh Gaur <[email protected]>
14986 L:      [email protected]
14987 S:      Maintained
14988 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14989 F:      drivers/spi/spi-nxp-fspi.c
14990
14991 NXP FXAS21002C DRIVER
14992 M:      Rui Miguel Silva <[email protected]>
14993 L:      [email protected]
14994 S:      Maintained
14995 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14996 F:      drivers/iio/gyro/fxas21002c.h
14997 F:      drivers/iio/gyro/fxas21002c_core.c
14998 F:      drivers/iio/gyro/fxas21002c_i2c.c
14999 F:      drivers/iio/gyro/fxas21002c_spi.c
15000
15001 NXP i.MX CLOCK DRIVERS
15002 M:      Abel Vesa <[email protected]>
15003 R:      Peng Fan <[email protected]>
15004 L:      [email protected]
15005 L:      [email protected]
15006 S:      Maintained
15007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
15008 F:      Documentation/devicetree/bindings/clock/imx*
15009 F:      drivers/clk/imx/
15010 F:      include/dt-bindings/clock/imx*
15011
15012 NXP i.MX 8M ISI DRIVER
15013 M:      Laurent Pinchart <[email protected]>
15014 L:      [email protected]
15015 S:      Maintained
15016 F:      Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml
15017 F:      drivers/media/platform/nxp/imx8-isi/
15018
15019 NXP i.MX 8MQ DCSS DRIVER
15020 M:      Laurentiu Palcu <[email protected]>
15021 R:      Lucas Stach <[email protected]>
15022 L:      [email protected]
15023 S:      Maintained
15024 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
15025 F:      drivers/gpu/drm/imx/dcss/
15026
15027 NXP i.MX 8QXP ADC DRIVER
15028 M:      Cai Huoqing <[email protected]>
15029 M:      Haibo Chen <[email protected]>
15030 L:      [email protected]
15031 L:      [email protected]
15032 S:      Maintained
15033 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
15034 F:      drivers/iio/adc/imx8qxp-adc.c
15035
15036 NXP i.MX 7D/6SX/6UL/93 AND VF610 ADC DRIVER
15037 M:      Haibo Chen <[email protected]>
15038 L:      [email protected]
15039 L:      [email protected]
15040 S:      Maintained
15041 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
15042 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
15043 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx93-adc.yaml
15044 F:      drivers/iio/adc/imx7d_adc.c
15045 F:      drivers/iio/adc/imx93_adc.c
15046 F:      drivers/iio/adc/vf610_adc.c
15047
15048 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
15049 M:      Jagan Teki <[email protected]>
15050 S:      Maintained
15051 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
15052 F:      drivers/regulator/pf8x00-regulator.c
15053
15054 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
15055 M:      Krzysztof Kozlowski <[email protected]>
15056 L:      [email protected]
15057 S:      Maintained
15058 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
15059 F:      drivers/extcon/extcon-ptn5150.c
15060
15061 NXP SGTL5000 DRIVER
15062 M:      Fabio Estevam <[email protected]>
15063 L:      [email protected] (moderated for non-subscribers)
15064 S:      Maintained
15065 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
15066 F:      sound/soc/codecs/sgtl5000*
15067
15068 NXP SJA1105 ETHERNET SWITCH DRIVER
15069 M:      Vladimir Oltean <[email protected]>
15070 L:      [email protected]
15071 S:      Maintained
15072 F:      drivers/net/dsa/sja1105
15073 F:      drivers/net/pcs/pcs-xpcs-nxp.c
15074
15075 NXP TDA998X DRM DRIVER
15076 M:      Russell King <[email protected]>
15077 S:      Maintained
15078 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
15079 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
15080 F:      drivers/gpu/drm/i2c/tda998x_drv.c
15081 F:      include/drm/i2c/tda998x.h
15082 F:      include/dt-bindings/display/tda998x.h
15083 K:      "nxp,tda998x"
15084
15085 NXP TFA9879 DRIVER
15086 M:      Peter Rosin <[email protected]>
15087 L:      [email protected] (moderated for non-subscribers)
15088 S:      Maintained
15089 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
15090 F:      sound/soc/codecs/tfa9879*
15091
15092 NXP/Goodix TFA989X (TFA1) DRIVER
15093 M:      Stephan Gerhold <[email protected]>
15094 L:      [email protected] (moderated for non-subscribers)
15095 S:      Maintained
15096 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
15097 F:      sound/soc/codecs/tfa989x.c
15098
15099 NXP-NCI NFC DRIVER
15100 S:      Orphan
15101 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
15102 F:      drivers/nfc/nxp-nci
15103
15104 NXP i.MX 8MP DW100 V4L2 DRIVER
15105 M:      Xavier Roumegue <[email protected]>
15106 L:      [email protected]
15107 S:      Maintained
15108 F:      Documentation/devicetree/bindings/media/nxp,dw100.yaml
15109 F:      Documentation/userspace-api/media/drivers/dw100.rst
15110 F:      drivers/media/platform/nxp/dw100/
15111 F:      include/uapi/linux/dw100.h
15112
15113 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
15114 M:      Mirela Rabulea <[email protected]>
15115 R:      NXP Linux Team <[email protected]>
15116 L:      [email protected]
15117 S:      Maintained
15118 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
15119 F:      drivers/media/platform/nxp/imx-jpeg
15120
15121 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
15122 M:      Jonas Malaco <[email protected]>
15123 L:      [email protected]
15124 S:      Maintained
15125 F:      Documentation/hwmon/nzxt-kraken2.rst
15126 F:      drivers/hwmon/nzxt-kraken2.c
15127
15128 NZXT-SMART2 HARDWARE MONITORING DRIVER
15129 M:      Aleksandr Mezin <[email protected]>
15130 L:      [email protected]
15131 S:      Maintained
15132 F:      Documentation/hwmon/nzxt-smart2.rst
15133 F:      drivers/hwmon/nzxt-smart2.c
15134
15135 OBJAGG
15136 M:      Jiri Pirko <[email protected]>
15137 L:      [email protected]
15138 S:      Supported
15139 F:      include/linux/objagg.h
15140 F:      lib/objagg.c
15141 F:      lib/test_objagg.c
15142
15143 OBJTOOL
15144 M:      Josh Poimboeuf <[email protected]>
15145 M:      Peter Zijlstra <[email protected]>
15146 S:      Supported
15147 F:      tools/objtool/
15148 F:      include/linux/objtool.h
15149
15150 OCELOT ETHERNET SWITCH DRIVER
15151 M:      Vladimir Oltean <[email protected]>
15152 M:      Claudiu Manoil <[email protected]>
15153 M:      Alexandre Belloni <[email protected]>
15154 M:      [email protected]
15155 L:      [email protected]
15156 S:      Supported
15157 F:      drivers/net/dsa/ocelot/*
15158 F:      drivers/net/ethernet/mscc/
15159 F:      include/soc/mscc/ocelot*
15160 F:      net/dsa/tag_ocelot.c
15161 F:      net/dsa/tag_ocelot_8021q.c
15162 F:      tools/testing/selftests/drivers/net/ocelot/*
15163
15164 OCELOT EXTERNAL SWITCH CONTROL
15165 M:      Colin Foster <[email protected]>
15166 S:      Supported
15167 F:      Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
15168 F:      drivers/mfd/ocelot*
15169 F:      drivers/net/dsa/ocelot/ocelot_ext.c
15170 F:      include/linux/mfd/ocelot.h
15171
15172 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
15173 M:      Frederic Barrat <[email protected]>
15174 M:      Andrew Donnellan <[email protected]>
15175 L:      [email protected]
15176 S:      Supported
15177 F:      Documentation/userspace-api/accelerators/ocxl.rst
15178 F:      arch/powerpc/include/asm/pnv-ocxl.h
15179 F:      arch/powerpc/platforms/powernv/ocxl.c
15180 F:      drivers/misc/ocxl/
15181 F:      include/misc/ocxl*
15182 F:      include/uapi/misc/ocxl.h
15183
15184 OMAP AUDIO SUPPORT
15185 M:      Peter Ujfalusi <[email protected]>
15186 M:      Jarkko Nikula <[email protected]>
15187 L:      [email protected] (moderated for non-subscribers)
15188 L:      [email protected]
15189 S:      Maintained
15190 F:      sound/soc/ti/n810.c
15191 F:      sound/soc/ti/omap*
15192 F:      sound/soc/ti/rx51.c
15193 F:      sound/soc/ti/sdma-pcm.*
15194
15195 OMAP CLOCK FRAMEWORK SUPPORT
15196 M:      Paul Walmsley <[email protected]>
15197 L:      [email protected]
15198 S:      Maintained
15199 F:      arch/arm/*omap*/*clock*
15200
15201 OMAP DEVICE TREE SUPPORT
15202 M:      Benoît Cousson <[email protected]>
15203 M:      Tony Lindgren <[email protected]>
15204 L:      [email protected]
15205 L:      [email protected]
15206 S:      Maintained
15207 F:      arch/arm/boot/dts/*am3*
15208 F:      arch/arm/boot/dts/*am4*
15209 F:      arch/arm/boot/dts/*am5*
15210 F:      arch/arm/boot/dts/*dra7*
15211 F:      arch/arm/boot/dts/*omap*
15212 F:      arch/arm/boot/dts/logicpd-som-lv*
15213 F:      arch/arm/boot/dts/logicpd-torpedo*
15214
15215 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
15216 L:      [email protected]
15217 L:      [email protected]
15218 S:      Orphan
15219 F:      Documentation/arm/omap/dss.rst
15220 F:      drivers/video/fbdev/omap2/
15221
15222 OMAP FRAMEBUFFER SUPPORT
15223 L:      [email protected]
15224 L:      [email protected]
15225 S:      Orphan
15226 F:      drivers/video/fbdev/omap/
15227
15228 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
15229 M:      Roger Quadros <[email protected]>
15230 M:      Tony Lindgren <[email protected]>
15231 L:      [email protected]
15232 S:      Maintained
15233 F:      arch/arm/mach-omap2/*gpmc*
15234 F:      drivers/memory/omap-gpmc.c
15235
15236 OMAP GPIO DRIVER
15237 M:      Grygorii Strashko <[email protected]>
15238 M:      Santosh Shilimkar <[email protected]>
15239 M:      Kevin Hilman <[email protected]>
15240 L:      [email protected]
15241 S:      Maintained
15242 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
15243 F:      drivers/gpio/gpio-omap.c
15244
15245 OMAP HARDWARE SPINLOCK SUPPORT
15246 M:      Ohad Ben-Cohen <[email protected]>
15247 L:      [email protected]
15248 S:      Maintained
15249 F:      drivers/hwspinlock/omap_hwspinlock.c
15250
15251 OMAP HS MMC SUPPORT
15252 L:      [email protected]
15253 L:      [email protected]
15254 S:      Orphan
15255 F:      drivers/mmc/host/omap_hsmmc.c
15256
15257 OMAP HWMOD DATA
15258 M:      Paul Walmsley <[email protected]>
15259 L:      [email protected]
15260 S:      Maintained
15261 F:      arch/arm/mach-omap2/omap_hwmod*data*
15262
15263 OMAP HWMOD SUPPORT
15264 M:      Benoît Cousson <[email protected]>
15265 M:      Paul Walmsley <[email protected]>
15266 L:      [email protected]
15267 S:      Maintained
15268 F:      arch/arm/mach-omap2/omap_hwmod.*
15269
15270 OMAP I2C DRIVER
15271 M:      Vignesh R <[email protected]>
15272 L:      [email protected]
15273 L:      [email protected]
15274 S:      Maintained
15275 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
15276 F:      drivers/i2c/busses/i2c-omap.c
15277
15278 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
15279 M:      Laurent Pinchart <[email protected]>
15280 L:      [email protected]
15281 S:      Maintained
15282 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
15283 F:      drivers/media/platform/ti/omap3isp/
15284 F:      drivers/staging/media/omap4iss/
15285
15286 OMAP MMC SUPPORT
15287 M:      Aaro Koskinen <[email protected]>
15288 L:      [email protected]
15289 S:      Odd Fixes
15290 F:      drivers/mmc/host/omap.c
15291
15292 OMAP POWER MANAGEMENT SUPPORT
15293 M:      Kevin Hilman <[email protected]>
15294 L:      [email protected]
15295 S:      Maintained
15296 F:      arch/arm/*omap*/*pm*
15297 F:      drivers/cpufreq/omap-cpufreq.c
15298
15299 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
15300 M:      Paul Walmsley <[email protected]>
15301 L:      [email protected]
15302 S:      Maintained
15303 F:      arch/arm/mach-omap2/prm*
15304
15305 OMAP RANDOM NUMBER GENERATOR SUPPORT
15306 M:      Deepak Saxena <[email protected]>
15307 S:      Maintained
15308 F:      drivers/char/hw_random/omap-rng.c
15309
15310 OMAP USB SUPPORT
15311 L:      [email protected]
15312 L:      [email protected]
15313 S:      Orphan
15314 F:      arch/arm/*omap*/usb*
15315 F:      drivers/usb/*/*omap*
15316
15317 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
15318 M:      Mark Jackson <[email protected]>
15319 L:      [email protected]
15320 S:      Maintained
15321 F:      arch/arm/boot/dts/am335x-nano.dts
15322
15323 OMAP1 SUPPORT
15324 M:      Aaro Koskinen <[email protected]>
15325 M:      Janusz Krzysztofik <[email protected]>
15326 M:      Tony Lindgren <[email protected]>
15327 L:      [email protected]
15328 S:      Maintained
15329 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15331 F:      arch/arm/configs/omap1_defconfig
15332 F:      arch/arm/mach-omap1/
15333 F:      drivers/i2c/busses/i2c-omap.c
15334 F:      include/linux/platform_data/ams-delta-fiq.h
15335 F:      include/linux/platform_data/i2c-omap.h
15336
15337 OMAP2+ SUPPORT
15338 M:      Tony Lindgren <[email protected]>
15339 L:      [email protected]
15340 S:      Maintained
15341 W:      http://www.muru.com/linux/omap/
15342 W:      http://linux.omap.com/
15343 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15345 F:      arch/arm/configs/omap2plus_defconfig
15346 F:      arch/arm/mach-omap2/
15347 F:      drivers/bus/ti-sysc.c
15348 F:      drivers/i2c/busses/i2c-omap.c
15349 F:      drivers/irqchip/irq-omap-intc.c
15350 F:      drivers/mfd/*omap*.c
15351 F:      drivers/mfd/menelaus.c
15352 F:      drivers/mfd/palmas.c
15353 F:      drivers/mfd/tps65217.c
15354 F:      drivers/mfd/tps65218.c
15355 F:      drivers/mfd/tps65219.c
15356 F:      drivers/mfd/tps65910.c
15357 F:      drivers/mfd/twl-core.[ch]
15358 F:      drivers/mfd/twl4030*.c
15359 F:      drivers/mfd/twl6030*.c
15360 F:      drivers/mfd/twl6040*.c
15361 F:      drivers/regulator/palmas-regulator*.c
15362 F:      drivers/regulator/pbias-regulator.c
15363 F:      drivers/regulator/tps65217-regulator.c
15364 F:      drivers/regulator/tps65218-regulator.c
15365 F:      drivers/regulator/tps65219-regulator.c
15366 F:      drivers/regulator/tps65910-regulator.c
15367 F:      drivers/regulator/twl-regulator.c
15368 F:      drivers/regulator/twl6030-regulator.c
15369 F:      include/linux/platform_data/i2c-omap.h
15370 F:      include/linux/platform_data/ti-sysc.h
15371
15372 OMFS FILESYSTEM
15373 M:      Bob Copeland <[email protected]>
15374 L:      [email protected]
15375 S:      Maintained
15376 F:      Documentation/filesystems/omfs.rst
15377 F:      fs/omfs/
15378
15379 OMNIKEY CARDMAN 4000 DRIVER
15380 M:      Harald Welte <[email protected]>
15381 S:      Maintained
15382 F:      drivers/char/pcmcia/cm4000_cs.c
15383 F:      include/linux/cm4000_cs.h
15384 F:      include/uapi/linux/cm4000_cs.h
15385
15386 OMNIKEY CARDMAN 4040 DRIVER
15387 M:      Harald Welte <[email protected]>
15388 S:      Maintained
15389 F:      drivers/char/pcmcia/cm4040_cs.*
15390
15391 OMNIVISION OG01A1B SENSOR DRIVER
15392 M:      Shawn Tu <[email protected]>
15393 L:      [email protected]
15394 S:      Maintained
15395 F:      drivers/media/i2c/og01a1b.c
15396
15397 OMNIVISION OV02A10 SENSOR DRIVER
15398 M:      Dongchun Zhu <[email protected]>
15399 L:      [email protected]
15400 S:      Maintained
15401 T:      git git://linuxtv.org/media_tree.git
15402 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15403 F:      drivers/media/i2c/ov02a10.c
15404
15405 OMNIVISION OV08D10 SENSOR DRIVER
15406 M:      Jimmy Su <[email protected]>
15407 L:      [email protected]
15408 S:      Maintained
15409 T:      git git://linuxtv.org/media_tree.git
15410 F:      drivers/media/i2c/ov08d10.c
15411
15412 OMNIVISION OV08X40 SENSOR DRIVER
15413 M:      Jason Chen <[email protected]>
15414 L:      [email protected]
15415 S:      Maintained
15416 T:      git git://linuxtv.org/media_tree.git
15417 F:      drivers/media/i2c/ov08x40.c
15418
15419 OMNIVISION OV13858 SENSOR DRIVER
15420 M:      Sakari Ailus <[email protected]>
15421 L:      [email protected]
15422 S:      Maintained
15423 T:      git git://linuxtv.org/media_tree.git
15424 F:      drivers/media/i2c/ov13858.c
15425
15426 OMNIVISION OV13B10 SENSOR DRIVER
15427 M:      Arec Kao <[email protected]>
15428 L:      [email protected]
15429 S:      Maintained
15430 T:      git git://linuxtv.org/media_tree.git
15431 F:      drivers/media/i2c/ov13b10.c
15432
15433 OMNIVISION OV2680 SENSOR DRIVER
15434 M:      Rui Miguel Silva <[email protected]>
15435 L:      [email protected]
15436 S:      Maintained
15437 T:      git git://linuxtv.org/media_tree.git
15438 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15439 F:      drivers/media/i2c/ov2680.c
15440
15441 OMNIVISION OV2685 SENSOR DRIVER
15442 M:      Shunqian Zheng <[email protected]>
15443 L:      [email protected]
15444 S:      Maintained
15445 T:      git git://linuxtv.org/media_tree.git
15446 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2685.yaml
15447 F:      drivers/media/i2c/ov2685.c
15448
15449 OMNIVISION OV2740 SENSOR DRIVER
15450 M:      Tianshu Qiu <[email protected]>
15451 R:      Shawn Tu <[email protected]>
15452 R:      Bingbu Cao <[email protected]>
15453 L:      [email protected]
15454 S:      Maintained
15455 T:      git git://linuxtv.org/media_tree.git
15456 F:      drivers/media/i2c/ov2740.c
15457
15458 OMNIVISION OV4689 SENSOR DRIVER
15459 M:      Mikhail Rudenko <[email protected]>
15460 L:      [email protected]
15461 S:      Maintained
15462 T:      git git://linuxtv.org/media_tree.git
15463 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
15464 F:      drivers/media/i2c/ov5647.c
15465
15466 OMNIVISION OV5640 SENSOR DRIVER
15467 M:      Steve Longerbeam <[email protected]>
15468 L:      [email protected]
15469 S:      Maintained
15470 T:      git git://linuxtv.org/media_tree.git
15471 F:      drivers/media/i2c/ov5640.c
15472
15473 OMNIVISION OV5647 SENSOR DRIVER
15474 M:      Dave Stevenson <[email protected]>
15475 M:      Jacopo Mondi <[email protected]>
15476 L:      [email protected]
15477 S:      Maintained
15478 T:      git git://linuxtv.org/media_tree.git
15479 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15480 F:      drivers/media/i2c/ov5647.c
15481
15482 OMNIVISION OV5670 SENSOR DRIVER
15483 M:      Chiranjeevi Rapolu <[email protected]>
15484 L:      [email protected]
15485 S:      Maintained
15486 T:      git git://linuxtv.org/media_tree.git
15487 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5670.yaml
15488 F:      drivers/media/i2c/ov5670.c
15489
15490 OMNIVISION OV5675 SENSOR DRIVER
15491 M:      Shawn Tu <[email protected]>
15492 L:      [email protected]
15493 S:      Maintained
15494 T:      git git://linuxtv.org/media_tree.git
15495 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5675.yaml
15496 F:      drivers/media/i2c/ov5675.c
15497
15498 OMNIVISION OV5693 SENSOR DRIVER
15499 M:      Daniel Scally <[email protected]>
15500 L:      [email protected]
15501 S:      Maintained
15502 T:      git git://linuxtv.org/media_tree.git
15503 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15504 F:      drivers/media/i2c/ov5693.c
15505
15506 OMNIVISION OV5695 SENSOR DRIVER
15507 M:      Shunqian Zheng <[email protected]>
15508 L:      [email protected]
15509 S:      Maintained
15510 T:      git git://linuxtv.org/media_tree.git
15511 F:      drivers/media/i2c/ov5695.c
15512
15513 OMNIVISION OV7670 SENSOR DRIVER
15514 L:      [email protected]
15515 S:      Orphan
15516 T:      git git://linuxtv.org/media_tree.git
15517 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15518 F:      drivers/media/i2c/ov7670.c
15519
15520 OMNIVISION OV772x SENSOR DRIVER
15521 M:      Jacopo Mondi <[email protected]>
15522 L:      [email protected]
15523 S:      Odd fixes
15524 T:      git git://linuxtv.org/media_tree.git
15525 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15526 F:      drivers/media/i2c/ov772x.c
15527 F:      include/media/i2c/ov772x.h
15528
15529 OMNIVISION OV7740 SENSOR DRIVER
15530 M:      Wenyou Yang <[email protected]>
15531 L:      [email protected]
15532 S:      Maintained
15533 T:      git git://linuxtv.org/media_tree.git
15534 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15535 F:      drivers/media/i2c/ov7740.c
15536
15537 OMNIVISION OV8856 SENSOR DRIVER
15538 M:      Sakari Ailus <[email protected]>
15539 L:      [email protected]
15540 S:      Maintained
15541 T:      git git://linuxtv.org/media_tree.git
15542 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15543 F:      drivers/media/i2c/ov8856.c
15544
15545 OMNIVISION OV8858 SENSOR DRIVER
15546 M:      Jacopo Mondi <[email protected]>
15547 M:      Nicholas Roth <[email protected]>
15548 L:      [email protected]
15549 S:      Maintained
15550 T:      git git://linuxtv.org/media_tree.git
15551 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov8858.yaml
15552 F:      drivers/media/i2c/ov8858.c
15553
15554 OMNIVISION OV9282 SENSOR DRIVER
15555 M:      Paul J. Murphy <[email protected]>
15556 M:      Daniele Alessandrelli <[email protected]>
15557 L:      [email protected]
15558 S:      Maintained
15559 T:      git git://linuxtv.org/media_tree.git
15560 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15561 F:      drivers/media/i2c/ov9282.c
15562
15563 OMNIVISION OV9640 SENSOR DRIVER
15564 M:      Petr Cvek <[email protected]>
15565 L:      [email protected]
15566 S:      Maintained
15567 F:      drivers/media/i2c/ov9640.*
15568
15569 OMNIVISION OV9650 SENSOR DRIVER
15570 M:      Sakari Ailus <[email protected]>
15571 R:      Akinobu Mita <[email protected]>
15572 R:      Sylwester Nawrocki <[email protected]>
15573 L:      [email protected]
15574 S:      Maintained
15575 T:      git git://linuxtv.org/media_tree.git
15576 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15577 F:      drivers/media/i2c/ov9650.c
15578
15579 OMNIVISION OV9734 SENSOR DRIVER
15580 M:      Tianshu Qiu <[email protected]>
15581 R:      Bingbu Cao <[email protected]>
15582 L:      [email protected]
15583 S:      Maintained
15584 T:      git git://linuxtv.org/media_tree.git
15585 F:      drivers/media/i2c/ov9734.c
15586
15587 ONBOARD USB HUB DRIVER
15588 M:      Matthias Kaehlcke <[email protected]>
15589 L:      [email protected]
15590 S:      Maintained
15591 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15592 F:      drivers/usb/misc/onboard_usb_hub.c
15593
15594 ONENAND FLASH DRIVER
15595 M:      Kyungmin Park <[email protected]>
15596 L:      [email protected]
15597 S:      Maintained
15598 F:      drivers/mtd/nand/onenand/
15599 F:      include/linux/mtd/onenand*.h
15600
15601 ONEXPLAYER FAN DRIVER
15602 M:      Derek John Clark <[email protected]>
15603 M:      Joaquín Ignacio Aramendía <[email protected]>
15604 L:      [email protected]
15605 S:      Maintained
15606 F:      drivers/hwmon/oxp-sensors.c
15607
15608 ONION OMEGA2+ BOARD
15609 M:      Harvey Hunt <[email protected]>
15610 L:      [email protected]
15611 S:      Maintained
15612 F:      arch/mips/boot/dts/ralink/omega2p.dts
15613
15614 ONSEMI ETHERNET PHY DRIVERS
15615 M:      Piergiorgio Beruto <[email protected]>
15616 L:      [email protected]
15617 S:      Supported
15618 W:      http://www.onsemi.com
15619 F:      drivers/net/phy/ncn*
15620
15621 OP-TEE DRIVER
15622 M:      Jens Wiklander <[email protected]>
15623 L:      [email protected]
15624 S:      Maintained
15625 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15626 F:      drivers/tee/optee/
15627
15628 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15629 M:      Sumit Garg <[email protected]>
15630 L:      [email protected]
15631 S:      Maintained
15632 F:      drivers/char/hw_random/optee-rng.c
15633
15634 OP-TEE RTC DRIVER
15635 M:      Clément Léger <[email protected]>
15636 L:      [email protected]
15637 S:      Maintained
15638 F:      drivers/rtc/rtc-optee.c
15639
15640 OPA-VNIC DRIVER
15641 M:      Dennis Dalessandro <[email protected]>
15642 L:      [email protected]
15643 S:      Supported
15644 F:      drivers/infiniband/ulp/opa_vnic
15645
15646 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15647 M:      Rob Herring <[email protected]>
15648 M:      Frank Rowand <[email protected]>
15649 L:      [email protected]
15650 S:      Maintained
15651 C:      irc://irc.libera.chat/devicetree
15652 W:      http://www.devicetree.org/
15653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15654 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15655 F:      drivers/of/
15656 F:      include/linux/of*.h
15657 F:      scripts/dtc/
15658 K:      of_overlay_notifier_
15659 K:      of_overlay_fdt_apply
15660 K:      of_overlay_remove
15661
15662 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15663 M:      Rob Herring <[email protected]>
15664 M:      Krzysztof Kozlowski <[email protected]>
15665 L:      [email protected]
15666 S:      Maintained
15667 C:      irc://irc.libera.chat/devicetree
15668 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15670 F:      Documentation/devicetree/
15671 F:      arch/*/boot/dts/
15672 F:      include/dt-bindings/
15673
15674 OPENCOMPUTE PTP CLOCK DRIVER
15675 M:      Jonathan Lemon <[email protected]>
15676 M:      Vadim Fedorenko <[email protected]>
15677 L:      [email protected]
15678 S:      Maintained
15679 F:      drivers/ptp/ptp_ocp.c
15680
15681 INTEL PTP DFL ToD DRIVER
15682 M:      Tianfei Zhang <[email protected]>
15683 L:      [email protected]
15684 L:      [email protected]
15685 S:      Maintained
15686 F:      drivers/ptp/ptp_dfl_tod.c
15687
15688 OPENCORES I2C BUS DRIVER
15689 M:      Peter Korsgaard <[email protected]>
15690 M:      Andrew Lunn <[email protected]>
15691 L:      [email protected]
15692 S:      Maintained
15693 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15694 F:      Documentation/i2c/busses/i2c-ocores.rst
15695 F:      drivers/i2c/busses/i2c-ocores.c
15696 F:      include/linux/platform_data/i2c-ocores.h
15697
15698 OPENRISC ARCHITECTURE
15699 M:      Jonas Bonn <[email protected]>
15700 M:      Stefan Kristiansson <[email protected]>
15701 M:      Stafford Horne <[email protected]>
15702 L:      [email protected]
15703 S:      Maintained
15704 W:      http://openrisc.io
15705 T:      git https://github.com/openrisc/linux.git
15706 F:      Documentation/devicetree/bindings/openrisc/
15707 F:      Documentation/arch/openrisc/
15708 F:      arch/openrisc/
15709 F:      drivers/irqchip/irq-ompic.c
15710 F:      drivers/irqchip/irq-or1k-*
15711
15712 OPENVSWITCH
15713 M:      Pravin B Shelar <[email protected]>
15714 L:      [email protected]
15715 L:      [email protected]
15716 S:      Maintained
15717 W:      http://openvswitch.org
15718 F:      include/uapi/linux/openvswitch.h
15719 F:      net/openvswitch/
15720 F:      tools/testing/selftests/net/openvswitch/
15721
15722 OPERATING PERFORMANCE POINTS (OPP)
15723 M:      Viresh Kumar <[email protected]>
15724 M:      Nishanth Menon <[email protected]>
15725 M:      Stephen Boyd <[email protected]>
15726 L:      [email protected]
15727 S:      Maintained
15728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15729 F:      Documentation/devicetree/bindings/opp/
15730 F:      Documentation/power/opp.rst
15731 F:      drivers/opp/
15732 F:      include/linux/pm_opp.h
15733
15734 OPL4 DRIVER
15735 M:      Clemens Ladisch <[email protected]>
15736 L:      [email protected] (moderated for non-subscribers)
15737 S:      Maintained
15738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15739 F:      sound/drivers/opl4/
15740
15741 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15742 M:      Mark Fasheh <[email protected]>
15743 M:      Joel Becker <[email protected]>
15744 M:      Joseph Qi <[email protected]>
15745 L:      [email protected] (moderated for non-subscribers)
15746 S:      Supported
15747 W:      http://ocfs2.wiki.kernel.org
15748 F:      Documentation/filesystems/dlmfs.rst
15749 F:      Documentation/filesystems/ocfs2.rst
15750 F:      fs/ocfs2/
15751
15752 ORANGEFS FILESYSTEM
15753 M:      Mike Marshall <[email protected]>
15754 R:      Martin Brandenburg <[email protected]>
15755 L:      [email protected]
15756 S:      Supported
15757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15758 F:      Documentation/filesystems/orangefs.rst
15759 F:      fs/orangefs/
15760
15761 ORINOCO DRIVER
15762 L:      [email protected]
15763 S:      Orphan
15764 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15765 W:      http://www.nongnu.org/orinoco/
15766 F:      drivers/net/wireless/intersil/orinoco/
15767
15768 OV2659 OMNIVISION SENSOR DRIVER
15769 M:      "Lad, Prabhakar" <[email protected]>
15770 L:      [email protected]
15771 S:      Maintained
15772 W:      https://linuxtv.org
15773 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15774 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15775 F:      drivers/media/i2c/ov2659.c
15776 F:      include/media/i2c/ov2659.h
15777
15778 OVERLAY FILESYSTEM
15779 M:      Miklos Szeredi <[email protected]>
15780 L:      [email protected]
15781 S:      Supported
15782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15783 F:      Documentation/filesystems/overlayfs.rst
15784 F:      fs/overlayfs/
15785
15786 P54 WIRELESS DRIVER
15787 M:      Christian Lamparter <[email protected]>
15788 L:      [email protected]
15789 S:      Maintained
15790 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15791 F:      drivers/net/wireless/intersil/p54/
15792
15793 PACKET SOCKETS
15794 M:      Willem de Bruijn <[email protected]>
15795 S:      Maintained
15796 F:      include/uapi/linux/if_packet.h
15797 F:      net/packet/af_packet.c
15798
15799 PACKING
15800 M:      Vladimir Oltean <[email protected]>
15801 L:      [email protected]
15802 S:      Supported
15803 F:      Documentation/core-api/packing.rst
15804 F:      include/linux/packing.h
15805 F:      lib/packing.c
15806
15807 PADATA PARALLEL EXECUTION MECHANISM
15808 M:      Steffen Klassert <[email protected]>
15809 M:      Daniel Jordan <[email protected]>
15810 L:      [email protected]
15811 L:      [email protected]
15812 S:      Maintained
15813 F:      Documentation/core-api/padata.rst
15814 F:      include/linux/padata.h
15815 F:      kernel/padata.c
15816
15817 PAGE CACHE
15818 M:      Matthew Wilcox (Oracle) <[email protected]>
15819 L:      [email protected]
15820 S:      Supported
15821 T:      git git://git.infradead.org/users/willy/pagecache.git
15822 F:      Documentation/filesystems/locking.rst
15823 F:      Documentation/filesystems/vfs.rst
15824 F:      include/linux/pagemap.h
15825 F:      mm/filemap.c
15826 F:      mm/page-writeback.c
15827 F:      mm/readahead.c
15828 F:      mm/truncate.c
15829
15830 PAGE POOL
15831 M:      Jesper Dangaard Brouer <[email protected]>
15832 M:      Ilias Apalodimas <[email protected]>
15833 L:      [email protected]
15834 S:      Supported
15835 F:      Documentation/networking/page_pool.rst
15836 F:      include/net/page_pool.h
15837 F:      include/trace/events/page_pool.h
15838 F:      net/core/page_pool.c
15839
15840 PAGE TABLE CHECK
15841 M:      Pasha Tatashin <[email protected]>
15842 M:      Andrew Morton <[email protected]>
15843 L:      [email protected]
15844 S:      Maintained
15845 F:      Documentation/mm/page_table_check.rst
15846 F:      include/linux/page_table_check.h
15847 F:      mm/page_table_check.c
15848
15849 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15850 M:      Kenneth Chan <[email protected]>
15851 L:      [email protected]
15852 S:      Maintained
15853 F:      drivers/platform/x86/panasonic-laptop.c
15854
15855 PARALLAX PING IIO SENSOR DRIVER
15856 M:      Andreas Klinger <[email protected]>
15857 L:      [email protected]
15858 S:      Maintained
15859 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15860 F:      drivers/iio/proximity/ping.c
15861
15862 PARALLEL LCD/KEYPAD PANEL DRIVER
15863 M:      Willy Tarreau <[email protected]>
15864 M:      Ksenija Stanojevic <[email protected]>
15865 S:      Odd Fixes
15866 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15867 F:      drivers/auxdisplay/panel.c
15868
15869 PARALLEL PORT SUBSYSTEM
15870 M:      Sudip Mukherjee <[email protected]>
15871 M:      Sudip Mukherjee <[email protected]>
15872 L:      [email protected] (subscribers-only)
15873 S:      Maintained
15874 F:      Documentation/driver-api/parport*.rst
15875 F:      drivers/char/ppdev.c
15876 F:      drivers/parport/
15877 F:      include/linux/parport*.h
15878 F:      include/uapi/linux/ppdev.h
15879
15880 PARAVIRT_OPS INTERFACE
15881 M:      Juergen Gross <[email protected]>
15882 M:      Srivatsa S. Bhat (VMware) <[email protected]>
15883 R:      Alexey Makhalov <[email protected]>
15884 R:      VMware PV-Drivers Reviewers <[email protected]>
15885 L:      [email protected]
15886 L:      [email protected]
15887 S:      Supported
15888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15889 F:      Documentation/virt/paravirt_ops.rst
15890 F:      arch/*/include/asm/paravirt*.h
15891 F:      arch/*/kernel/paravirt*
15892 F:      include/linux/hypervisor.h
15893
15894 PARISC ARCHITECTURE
15895 M:      "James E.J. Bottomley" <[email protected]>
15896 M:      Helge Deller <[email protected]>
15897 L:      [email protected]
15898 S:      Maintained
15899 W:      https://parisc.wiki.kernel.org
15900 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15903 F:      Documentation/arch/parisc/
15904 F:      arch/parisc/
15905 F:      drivers/char/agp/parisc-agp.c
15906 F:      drivers/input/misc/hp_sdc_rtc.c
15907 F:      drivers/input/serio/gscps2.c
15908 F:      drivers/input/serio/hp_sdc*
15909 F:      drivers/parisc/
15910 F:      drivers/parport/parport_gsc.*
15911 F:      drivers/tty/serial/8250/8250_parisc.c
15912 F:      drivers/video/console/sti*
15913 F:      drivers/video/fbdev/sti*
15914 F:      drivers/video/logo/logo_parisc*
15915 F:      include/linux/hp_sdc.h
15916
15917 PARMAN
15918 M:      Jiri Pirko <[email protected]>
15919 L:      [email protected]
15920 S:      Supported
15921 F:      include/linux/parman.h
15922 F:      lib/parman.c
15923 F:      lib/test_parman.c
15924
15925 PC ENGINES APU BOARD DRIVER
15926 M:      Enrico Weigelt, metux IT consult <[email protected]>
15927 S:      Maintained
15928 F:      drivers/platform/x86/pcengines-apuv2.c
15929
15930 PC87360 HARDWARE MONITORING DRIVER
15931 M:      Jim Cromie <[email protected]>
15932 L:      [email protected]
15933 S:      Maintained
15934 F:      Documentation/hwmon/pc87360.rst
15935 F:      drivers/hwmon/pc87360.c
15936
15937 PC8736x GPIO DRIVER
15938 M:      Jim Cromie <[email protected]>
15939 S:      Maintained
15940 F:      drivers/char/pc8736x_gpio.c
15941
15942 PC87427 HARDWARE MONITORING DRIVER
15943 M:      Jean Delvare <[email protected]>
15944 L:      [email protected]
15945 S:      Maintained
15946 F:      Documentation/hwmon/pc87427.rst
15947 F:      drivers/hwmon/pc87427.c
15948
15949 PCA9532 LED DRIVER
15950 M:      Riku Voipio <[email protected]>
15951 S:      Maintained
15952 F:      drivers/leds/leds-pca9532.c
15953 F:      include/linux/leds-pca9532.h
15954
15955 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15956 M:      Guenter Roeck <[email protected]>
15957 L:      [email protected]
15958 S:      Maintained
15959 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15960
15961 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15962 M:      Khalid Aziz <[email protected]>
15963 S:      Maintained
15964 F:      drivers/firmware/pcdp.*
15965
15966 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15967 M:      Thomas Petazzoni <[email protected]>
15968 M:      Pali Rohár <[email protected]>
15969 L:      [email protected]
15970 L:      [email protected] (moderated for non-subscribers)
15971 S:      Maintained
15972 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15973 F:      drivers/pci/controller/pci-aardvark.c
15974
15975 PCI DRIVER FOR ALTERA PCIE IP
15976 M:      Joyce Ooi <[email protected]>
15977 L:      [email protected]
15978 S:      Supported
15979 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15980 F:      drivers/pci/controller/pcie-altera.c
15981
15982 PCI DRIVER FOR APPLIEDMICRO XGENE
15983 M:      Toan Le <[email protected]>
15984 L:      [email protected]
15985 L:      [email protected] (moderated for non-subscribers)
15986 S:      Maintained
15987 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15988 F:      drivers/pci/controller/pci-xgene.c
15989
15990 PCI DRIVER FOR ARM VERSATILE PLATFORM
15991 M:      Rob Herring <[email protected]>
15992 L:      [email protected]
15993 L:      [email protected] (moderated for non-subscribers)
15994 S:      Maintained
15995 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15996 F:      drivers/pci/controller/pci-versatile.c
15997
15998 PCI DRIVER FOR ARMADA 8K
15999 M:      Thomas Petazzoni <[email protected]>
16000 L:      [email protected]
16001 L:      [email protected] (moderated for non-subscribers)
16002 S:      Maintained
16003 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
16004 F:      drivers/pci/controller/dwc/pcie-armada8k.c
16005
16006 PCI DRIVER FOR CADENCE PCIE IP
16007 M:      Tom Joseph <[email protected]>
16008 L:      [email protected]
16009 S:      Maintained
16010 F:      Documentation/devicetree/bindings/pci/cdns,*
16011 F:      drivers/pci/controller/cadence/
16012
16013 PCI DRIVER FOR FREESCALE LAYERSCAPE
16014 M:      Minghuan Lian <[email protected]>
16015 M:      Mingkai Hu <[email protected]>
16016 M:      Roy Zang <[email protected]>
16017 L:      [email protected]
16018 L:      [email protected]
16019 L:      [email protected] (moderated for non-subscribers)
16020 S:      Maintained
16021 F:      drivers/pci/controller/dwc/*layerscape*
16022
16023 PCI DRIVER FOR GENERIC OF HOSTS
16024 M:      Will Deacon <[email protected]>
16025 L:      [email protected]
16026 L:      [email protected] (moderated for non-subscribers)
16027 S:      Maintained
16028 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
16029 F:      drivers/pci/controller/pci-host-common.c
16030 F:      drivers/pci/controller/pci-host-generic.c
16031
16032 PCI DRIVER FOR IMX6
16033 M:      Richard Zhu <[email protected]>
16034 M:      Lucas Stach <[email protected]>
16035 L:      [email protected]
16036 L:      [email protected] (moderated for non-subscribers)
16037 S:      Maintained
16038 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
16039 F:      drivers/pci/controller/dwc/*imx6*
16040
16041 PCI DRIVER FOR FU740
16042 M:      Paul Walmsley <[email protected]>
16043 M:      Greentime Hu <[email protected]>
16044 L:      [email protected]
16045 S:      Maintained
16046 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
16047 F:      drivers/pci/controller/dwc/pcie-fu740.c
16048
16049 PCI DRIVER FOR INTEL IXP4XX
16050 M:      Linus Walleij <[email protected]>
16051 S:      Maintained
16052 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
16053 F:      drivers/pci/controller/pci-ixp4xx.c
16054
16055 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
16056 M:      Nirmal Patel <[email protected]>
16057 R:      Jonathan Derrick <[email protected]>
16058 L:      [email protected]
16059 S:      Supported
16060 F:      drivers/pci/controller/vmd.c
16061
16062 PCI DRIVER FOR MICROSEMI SWITCHTEC
16063 M:      Kurt Schwemmer <[email protected]>
16064 M:      Logan Gunthorpe <[email protected]>
16065 L:      [email protected]
16066 S:      Maintained
16067 F:      Documentation/ABI/testing/sysfs-class-switchtec
16068 F:      Documentation/driver-api/switchtec.rst
16069 F:      drivers/ntb/hw/mscc/
16070 F:      drivers/pci/switch/switchtec*
16071 F:      include/linux/switchtec.h
16072 F:      include/uapi/linux/switchtec_ioctl.h
16073
16074 PCI DRIVER FOR MOBIVEIL PCIE IP
16075 M:      Karthikeyan Mitran <[email protected]>
16076 M:      Hou Zhiqiang <[email protected]>
16077 L:      [email protected]
16078 S:      Supported
16079 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
16080 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
16081
16082 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
16083 M:      Thomas Petazzoni <[email protected]>
16084 M:      Pali Rohár <[email protected]>
16085 L:      [email protected]
16086 L:      [email protected] (moderated for non-subscribers)
16087 S:      Maintained
16088 F:      drivers/pci/controller/*mvebu*
16089
16090 PCI DRIVER FOR NVIDIA TEGRA
16091 M:      Thierry Reding <[email protected]>
16092 L:      [email protected]
16093 L:      [email protected]
16094 S:      Supported
16095 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
16096 F:      drivers/pci/controller/pci-tegra.c
16097
16098 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
16099 M:      Hou Zhiqiang <[email protected]>
16100 L:      [email protected]
16101 L:      [email protected] (moderated for non-subscribers)
16102 S:      Maintained
16103 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
16104 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
16105
16106 PCI DRIVER FOR RENESAS R-CAR
16107 M:      Marek Vasut <[email protected]>
16108 M:      Yoshihiro Shimoda <[email protected]>
16109 L:      [email protected]
16110 L:      [email protected]
16111 S:      Maintained
16112 F:      Documentation/devicetree/bindings/pci/*rcar*
16113 F:      drivers/pci/controller/*rcar*
16114
16115 PCI DRIVER FOR SAMSUNG EXYNOS
16116 M:      Jingoo Han <[email protected]>
16117 L:      [email protected]
16118 L:      [email protected] (moderated for non-subscribers)
16119 L:      [email protected]
16120 S:      Maintained
16121 F:      drivers/pci/controller/dwc/pci-exynos.c
16122
16123 PCI DRIVER FOR SYNOPSYS DESIGNWARE
16124 M:      Jingoo Han <[email protected]>
16125 M:      Gustavo Pimentel <[email protected]>
16126 L:      [email protected]
16127 S:      Maintained
16128 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
16129 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
16130 F:      drivers/pci/controller/dwc/*designware*
16131
16132 PCI DRIVER FOR TI DRA7XX/J721E
16133 M:      Vignesh Raghavendra <[email protected]>
16134 L:      [email protected]
16135 L:      [email protected]
16136 L:      [email protected] (moderated for non-subscribers)
16137 S:      Supported
16138 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
16139 F:      drivers/pci/controller/cadence/pci-j721e.c
16140 F:      drivers/pci/controller/dwc/pci-dra7xx.c
16141
16142 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
16143 M:      Linus Walleij <[email protected]>
16144 L:      [email protected]
16145 S:      Maintained
16146 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
16147 F:      drivers/pci/controller/pci-v3-semi.c
16148
16149 PCI ENDPOINT SUBSYSTEM
16150 M:      Lorenzo Pieralisi <[email protected]>
16151 M:      Krzysztof Wilczyński <[email protected]>
16152 R:      Manivannan Sadhasivam <[email protected]>
16153 R:      Kishon Vijay Abraham I <[email protected]>
16154 L:      [email protected]
16155 S:      Supported
16156 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16157 B:      https://bugzilla.kernel.org
16158 C:      irc://irc.oftc.net/linux-pci
16159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16160 F:      Documentation/PCI/endpoint/*
16161 F:      Documentation/misc-devices/pci-endpoint-test.rst
16162 F:      drivers/misc/pci_endpoint_test.c
16163 F:      drivers/pci/endpoint/
16164 F:      tools/pci/
16165
16166 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
16167 M:      Mahesh J Salgaonkar <[email protected]>
16168 R:      Oliver O'Halloran <[email protected]>
16169 L:      [email protected]
16170 S:      Supported
16171 F:      Documentation/PCI/pci-error-recovery.rst
16172 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
16173 F:      arch/powerpc/include/*/eeh*.h
16174 F:      arch/powerpc/kernel/eeh*.c
16175 F:      arch/powerpc/platforms/*/eeh*.c
16176 F:      drivers/pci/pcie/aer.c
16177 F:      drivers/pci/pcie/dpc.c
16178 F:      drivers/pci/pcie/err.c
16179
16180 PCI ERROR RECOVERY
16181 M:      Linas Vepstas <[email protected]>
16182 L:      [email protected]
16183 S:      Supported
16184 F:      Documentation/PCI/pci-error-recovery.rst
16185
16186 PCI PEER-TO-PEER DMA (P2PDMA)
16187 M:      Bjorn Helgaas <[email protected]>
16188 M:      Logan Gunthorpe <[email protected]>
16189 L:      [email protected]
16190 S:      Supported
16191 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16192 B:      https://bugzilla.kernel.org
16193 C:      irc://irc.oftc.net/linux-pci
16194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16195 F:      Documentation/driver-api/pci/p2pdma.rst
16196 F:      drivers/pci/p2pdma.c
16197 F:      include/linux/pci-p2pdma.h
16198
16199 PCI MSI DRIVER FOR ALTERA MSI IP
16200 M:      Joyce Ooi <[email protected]>
16201 L:      [email protected]
16202 S:      Supported
16203 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
16204 F:      drivers/pci/controller/pcie-altera-msi.c
16205
16206 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
16207 M:      Toan Le <[email protected]>
16208 L:      [email protected]
16209 L:      [email protected] (moderated for non-subscribers)
16210 S:      Maintained
16211 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
16212 F:      drivers/pci/controller/pci-xgene-msi.c
16213
16214 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
16215 M:      Lorenzo Pieralisi <[email protected]>
16216 M:      Krzysztof Wilczyński <[email protected]>
16217 R:      Rob Herring <[email protected]>
16218 L:      [email protected]
16219 S:      Supported
16220 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16221 B:      https://bugzilla.kernel.org
16222 C:      irc://irc.oftc.net/linux-pci
16223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16224 F:      Documentation/devicetree/bindings/pci/
16225 F:      drivers/pci/controller/
16226 F:      drivers/pci/pci-bridge-emul.c
16227 F:      drivers/pci/pci-bridge-emul.h
16228
16229 PCI SUBSYSTEM
16230 M:      Bjorn Helgaas <[email protected]>
16231 L:      [email protected]
16232 S:      Supported
16233 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16234 B:      https://bugzilla.kernel.org
16235 C:      irc://irc.oftc.net/linux-pci
16236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16237 F:      Documentation/PCI/
16238 F:      Documentation/devicetree/bindings/pci/
16239 F:      arch/x86/kernel/early-quirks.c
16240 F:      arch/x86/kernel/quirks.c
16241 F:      arch/x86/pci/
16242 F:      drivers/acpi/pci*
16243 F:      drivers/pci/
16244 F:      include/asm-generic/pci*
16245 F:      include/linux/of_pci.h
16246 F:      include/linux/pci*
16247 F:      include/uapi/linux/pci*
16248 F:      lib/pci*
16249
16250 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
16251 M:      Jonathan Chocron <[email protected]>
16252 L:      [email protected]
16253 S:      Maintained
16254 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
16255 F:      drivers/pci/controller/dwc/pcie-al.c
16256
16257 PCIE DRIVER FOR AMLOGIC MESON
16258 M:      Yue Wang <[email protected]>
16259 L:      [email protected]
16260 L:      [email protected]
16261 S:      Maintained
16262 F:      drivers/pci/controller/dwc/pci-meson.c
16263
16264 PCIE DRIVER FOR AXIS ARTPEC
16265 M:      Jesper Nilsson <[email protected]>
16266 L:      [email protected]
16267 L:      [email protected]
16268 S:      Maintained
16269 F:      Documentation/devicetree/bindings/pci/axis,artpec*
16270 F:      drivers/pci/controller/dwc/*artpec*
16271
16272 PCIE DRIVER FOR CAVIUM THUNDERX
16273 M:      Robert Richter <[email protected]>
16274 L:      [email protected]
16275 L:      [email protected] (moderated for non-subscribers)
16276 S:      Odd Fixes
16277 F:      drivers/pci/controller/pci-thunder-*
16278
16279 PCIE DRIVER FOR HISILICON
16280 M:      Zhou Wang <[email protected]>
16281 L:      [email protected]
16282 S:      Maintained
16283 F:      drivers/pci/controller/dwc/pcie-hisi.c
16284
16285 PCIE DRIVER FOR HISILICON KIRIN
16286 M:      Xiaowei Song <[email protected]>
16287 M:      Binghui Wang <[email protected]>
16288 L:      [email protected]
16289 S:      Maintained
16290 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
16291 F:      drivers/pci/controller/dwc/pcie-kirin.c
16292
16293 PCIE DRIVER FOR HISILICON STB
16294 M:      Shawn Guo <[email protected]>
16295 L:      [email protected]
16296 S:      Maintained
16297 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
16298 F:      drivers/pci/controller/dwc/pcie-histb.c
16299
16300 PCIE DRIVER FOR INTEL KEEM BAY
16301 M:      Srikanth Thokala <[email protected]>
16302 L:      [email protected]
16303 S:      Supported
16304 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
16305 F:      drivers/pci/controller/dwc/pcie-keembay.c
16306
16307 PCIE DRIVER FOR INTEL LGM GW SOC
16308 M:      Rahul Tanwar <[email protected]>
16309 L:      [email protected]
16310 S:      Maintained
16311 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
16312 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
16313
16314 PCIE DRIVER FOR MEDIATEK
16315 M:      Ryder Lee <[email protected]>
16316 M:      Jianjun Wang <[email protected]>
16317 L:      [email protected]
16318 L:      [email protected] (moderated for non-subscribers)
16319 S:      Supported
16320 F:      Documentation/devicetree/bindings/pci/mediatek*
16321 F:      drivers/pci/controller/*mediatek*
16322
16323 PCIE DRIVER FOR MICROCHIP
16324 M:      Daire McNamara <[email protected]>
16325 L:      [email protected]
16326 S:      Supported
16327 F:      Documentation/devicetree/bindings/pci/microchip*
16328 F:      drivers/pci/controller/*microchip*
16329
16330 PCIE DRIVER FOR QUALCOMM MSM
16331 M:      Manivannan Sadhasivam <[email protected]>
16332 L:      [email protected]
16333 L:      [email protected]
16334 S:      Maintained
16335 F:      drivers/pci/controller/dwc/pcie-qcom.c
16336
16337 PCIE ENDPOINT DRIVER FOR QUALCOMM
16338 M:      Manivannan Sadhasivam <[email protected]>
16339 L:      [email protected]
16340 L:      [email protected]
16341 S:      Maintained
16342 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
16343 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
16344
16345 PCIE DRIVER FOR ROCKCHIP
16346 M:      Shawn Lin <[email protected]>
16347 L:      [email protected]
16348 L:      [email protected]
16349 S:      Maintained
16350 F:      Documentation/devicetree/bindings/pci/rockchip,rk3399-pcie*
16351 F:      drivers/pci/controller/pcie-rockchip*
16352
16353 PCIE DRIVER FOR SOCIONEXT UNIPHIER
16354 M:      Kunihiko Hayashi <[email protected]>
16355 L:      [email protected]
16356 S:      Maintained
16357 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
16358 F:      drivers/pci/controller/dwc/pcie-uniphier*
16359
16360 PCIE DRIVER FOR ST SPEAR13XX
16361 M:      Pratyush Anand <[email protected]>
16362 L:      [email protected]
16363 S:      Maintained
16364 F:      drivers/pci/controller/dwc/*spear*
16365
16366 PCI DRIVER FOR XILINX VERSAL CPM
16367 M:      Bharat Kumar Gogada <[email protected]>
16368 M:      Michal Simek <[email protected]>
16369 L:      [email protected]
16370 S:      Maintained
16371 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
16372 F:      drivers/pci/controller/pcie-xilinx-cpm.c
16373
16374 PCMCIA SUBSYSTEM
16375 M:      Dominik Brodowski <[email protected]>
16376 S:      Odd Fixes
16377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
16378 F:      Documentation/pcmcia/
16379 F:      drivers/pcmcia/
16380 F:      include/pcmcia/
16381 F:      tools/pcmcia/
16382
16383 PCNET32 NETWORK DRIVER
16384 M:      Don Fry <[email protected]>
16385 L:      [email protected]
16386 S:      Maintained
16387 F:      drivers/net/ethernet/amd/pcnet32.c
16388
16389 PCRYPT PARALLEL CRYPTO ENGINE
16390 M:      Steffen Klassert <[email protected]>
16391 L:      [email protected]
16392 S:      Maintained
16393 F:      crypto/pcrypt.c
16394 F:      include/crypto/pcrypt.h
16395
16396 PECI HARDWARE MONITORING DRIVERS
16397 M:      Iwona Winiarska <[email protected]>
16398 L:      [email protected]
16399 S:      Supported
16400 F:      Documentation/hwmon/peci-cputemp.rst
16401 F:      Documentation/hwmon/peci-dimmtemp.rst
16402 F:      drivers/hwmon/peci/
16403
16404 PECI SUBSYSTEM
16405 M:      Iwona Winiarska <[email protected]>
16406 L:      [email protected] (moderated for non-subscribers)
16407 S:      Supported
16408 F:      Documentation/devicetree/bindings/peci/
16409 F:      Documentation/peci/
16410 F:      drivers/peci/
16411 F:      include/linux/peci-cpu.h
16412 F:      include/linux/peci.h
16413
16414 PENSANDO ETHERNET DRIVERS
16415 M:      Shannon Nelson <[email protected]>
16416 M:      Brett Creeley <[email protected]>
16417 M:      [email protected]
16418 L:      [email protected]
16419 S:      Supported
16420 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
16421 F:      drivers/net/ethernet/pensando/
16422
16423 PER-CPU MEMORY ALLOCATOR
16424 M:      Dennis Zhou <[email protected]>
16425 M:      Tejun Heo <[email protected]>
16426 M:      Christoph Lameter <[email protected]>
16427 L:      [email protected]
16428 S:      Maintained
16429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16430 F:      arch/*/include/asm/percpu.h
16431 F:      include/linux/percpu*.h
16432 F:      lib/percpu*.c
16433 F:      mm/percpu*.c
16434
16435 PER-TASK DELAY ACCOUNTING
16436 M:      Balbir Singh <[email protected]>
16437 S:      Maintained
16438 F:      include/linux/delayacct.h
16439 F:      kernel/delayacct.c
16440
16441 PERFORMANCE EVENTS SUBSYSTEM
16442 M:      Peter Zijlstra <[email protected]>
16443 M:      Ingo Molnar <[email protected]>
16444 M:      Arnaldo Carvalho de Melo <[email protected]>
16445 R:      Mark Rutland <[email protected]>
16446 R:      Alexander Shishkin <[email protected]>
16447 R:      Jiri Olsa <[email protected]>
16448 R:      Namhyung Kim <[email protected]>
16449 R:      Ian Rogers <[email protected]>
16450 R:      Adrian Hunter <[email protected]>
16451 L:      [email protected]
16452 L:      [email protected]
16453 S:      Supported
16454 W:      https://perf.wiki.kernel.org/
16455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16456 F:      arch/*/events/*
16457 F:      arch/*/events/*/*
16458 F:      arch/*/include/asm/perf_event.h
16459 F:      arch/*/kernel/*/*/perf_event*.c
16460 F:      arch/*/kernel/*/perf_event*.c
16461 F:      arch/*/kernel/perf_callchain.c
16462 F:      arch/*/kernel/perf_event*.c
16463 F:      include/linux/perf_event.h
16464 F:      include/uapi/linux/perf_event.h
16465 F:      kernel/events/*
16466 F:      tools/lib/perf/
16467 F:      tools/perf/
16468
16469 PERFORMANCE EVENTS TOOLING ARM64
16470 R:      John Garry <[email protected]>
16471 R:      Will Deacon <[email protected]>
16472 R:      James Clark <[email protected]>
16473 R:      Mike Leach <[email protected]>
16474 R:      Leo Yan <[email protected]>
16475 L:      [email protected] (moderated for non-subscribers)
16476 S:      Supported
16477 F:      tools/build/feature/test-libopencsd.c
16478 F:      tools/perf/arch/arm*/
16479 F:      tools/perf/pmu-events/arch/arm64/
16480 F:      tools/perf/util/arm-spe*
16481 F:      tools/perf/util/cs-etm*
16482
16483 PERSONALITY HANDLING
16484 M:      Christoph Hellwig <[email protected]>
16485 L:      [email protected]
16486 S:      Maintained
16487 F:      include/linux/personality.h
16488 F:      include/uapi/linux/personality.h
16489
16490 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16491 M:      Marcus Folkesson <[email protected]>
16492 L:      [email protected]
16493 S:      Maintained
16494 F:      Documentation/input/devices/pxrc.rst
16495 F:      drivers/input/joystick/pxrc.c
16496
16497 PHONET PROTOCOL
16498 M:      Remi Denis-Courmont <[email protected]>
16499 S:      Supported
16500 F:      Documentation/networking/phonet.rst
16501 F:      include/linux/phonet.h
16502 F:      include/net/phonet/
16503 F:      include/uapi/linux/phonet.h
16504 F:      net/phonet/
16505
16506 PHRAM MTD DRIVER
16507 M:      Joern Engel <[email protected]>
16508 L:      [email protected]
16509 S:      Maintained
16510 F:      drivers/mtd/devices/phram.c
16511
16512 PICOLCD HID DRIVER
16513 M:      Bruno Prémont <[email protected]>
16514 L:      [email protected]
16515 S:      Maintained
16516 F:      drivers/hid/hid-picolcd*
16517
16518 PIDFD API
16519 M:      Christian Brauner <[email protected]>
16520 L:      [email protected]
16521 S:      Maintained
16522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16523 F:      samples/pidfd/
16524 F:      tools/testing/selftests/clone3/
16525 F:      tools/testing/selftests/pid_namespace/
16526 F:      tools/testing/selftests/pidfd/
16527 K:      (?i)pidfd
16528 K:      (?i)clone3
16529 K:      \b(clone_args|kernel_clone_args)\b
16530
16531 PIN CONTROL SUBSYSTEM
16532 M:      Linus Walleij <[email protected]>
16533 L:      [email protected]
16534 S:      Maintained
16535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16536 F:      Documentation/devicetree/bindings/pinctrl/
16537 F:      Documentation/driver-api/pin-control.rst
16538 F:      drivers/pinctrl/
16539 F:      include/dt-bindings/pinctrl/
16540 F:      include/linux/pinctrl/
16541
16542 PIN CONTROLLER - AMD
16543 M:      Basavaraj Natikar <[email protected]>
16544 M:      Shyam Sundar S K <[email protected]>
16545 S:      Maintained
16546 F:      drivers/pinctrl/pinctrl-amd.c
16547
16548 PIN CONTROLLER - FREESCALE
16549 M:      Dong Aisheng <[email protected]>
16550 M:      Fabio Estevam <[email protected]>
16551 M:      Shawn Guo <[email protected]>
16552 M:      Jacky Bai <[email protected]>
16553 R:      Pengutronix Kernel Team <[email protected]>
16554 L:      [email protected]
16555 S:      Maintained
16556 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16557 F:      drivers/pinctrl/freescale/
16558
16559 PIN CONTROLLER - INTEL
16560 M:      Mika Westerberg <[email protected]>
16561 M:      Andy Shevchenko <[email protected]>
16562 S:      Supported
16563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16564 F:      drivers/pinctrl/intel/
16565
16566 PIN CONTROLLER - KEEMBAY
16567 M:      Lakshmi Sowjanya D <[email protected]>
16568 S:      Supported
16569 F:      drivers/pinctrl/pinctrl-keembay*
16570
16571 PIN CONTROLLER - MEDIATEK
16572 M:      Sean Wang <[email protected]>
16573 L:      [email protected] (moderated for non-subscribers)
16574 S:      Maintained
16575 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16576 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
16577 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16578 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16579 F:      drivers/pinctrl/mediatek/
16580
16581 PIN CONTROLLER - MICROCHIP AT91
16582 M:      Ludovic Desroches <[email protected]>
16583 L:      [email protected] (moderated for non-subscribers)
16584 L:      [email protected]
16585 S:      Supported
16586 F:      drivers/gpio/gpio-sama5d2-piobu.c
16587 F:      drivers/pinctrl/pinctrl-at91*
16588
16589 PIN CONTROLLER - QUALCOMM
16590 M:      Bjorn Andersson <[email protected]>
16591 L:      [email protected]
16592 S:      Maintained
16593 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16594 F:      drivers/pinctrl/qcom/
16595
16596 PIN CONTROLLER - RENESAS
16597 M:      Geert Uytterhoeven <[email protected]>
16598 L:      [email protected]
16599 S:      Supported
16600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16601 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16602 F:      drivers/pinctrl/renesas/
16603
16604 PIN CONTROLLER - SAMSUNG
16605 M:      Tomasz Figa <[email protected]>
16606 M:      Krzysztof Kozlowski <[email protected]>
16607 M:      Sylwester Nawrocki <[email protected]>
16608 R:      Alim Akhtar <[email protected]>
16609 L:      [email protected] (moderated for non-subscribers)
16610 L:      [email protected]
16611 S:      Maintained
16612 C:      irc://irc.libera.chat/linux-exynos
16613 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16614 B:      mailto:[email protected]
16615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16616 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16617 F:      drivers/pinctrl/samsung/
16618 F:      include/dt-bindings/pinctrl/samsung.h
16619
16620 PIN CONTROLLER - SINGLE
16621 M:      Tony Lindgren <[email protected]>
16622 M:      Haojian Zhuang <[email protected]>
16623 L:      [email protected] (moderated for non-subscribers)
16624 L:      [email protected]
16625 S:      Maintained
16626 F:      drivers/pinctrl/pinctrl-single.c
16627
16628 PIN CONTROLLER - THUNDERBAY
16629 M:      Lakshmi Sowjanya D <[email protected]>
16630 S:      Supported
16631 F:      drivers/pinctrl/pinctrl-thunderbay.c
16632
16633 PIN CONTROLLER - SUNPLUS / TIBBO
16634 M:      Dvorkin Dmitry <[email protected]>
16635 M:      Wells Lu <[email protected]>
16636 L:      [email protected] (moderated for non-subscribers)
16637 S:      Maintained
16638 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16639 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16640 F:      drivers/pinctrl/sunplus/
16641 F:      include/dt-bindings/pinctrl/sppctl*.h
16642
16643 PINE64 PINEPHONE KEYBOARD DRIVER
16644 M:      Samuel Holland <[email protected]>
16645 S:      Supported
16646 F:      Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
16647 F:      drivers/input/keyboard/pinephone-keyboard.c
16648
16649 PKTCDVD DRIVER
16650 M:      [email protected]
16651 S:      Orphan
16652 F:      drivers/block/pktcdvd.c
16653 F:      include/linux/pktcdvd.h
16654 F:      include/uapi/linux/pktcdvd.h
16655
16656 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16657 M:      Tomasz Duszynski <[email protected]>
16658 S:      Maintained
16659 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16660 F:      drivers/iio/chemical/pms7003.c
16661
16662 PLCA RECONCILIATION SUBLAYER (IEEE802.3 Clause 148)
16663 M:      Piergiorgio Beruto <[email protected]>
16664 L:      [email protected]
16665 S:      Maintained
16666 F:      drivers/net/phy/mdio-open-alliance.h
16667 F:      net/ethtool/plca.c
16668
16669 PLDMFW LIBRARY
16670 M:      Jacob Keller <[email protected]>
16671 S:      Maintained
16672 F:      Documentation/driver-api/pldmfw/
16673 F:      include/linux/pldmfw.h
16674 F:      lib/pldmfw/
16675
16676 PLX DMA DRIVER
16677 M:      Logan Gunthorpe <[email protected]>
16678 S:      Maintained
16679 F:      drivers/dma/plx_dma.c
16680
16681 PM6764TR DRIVER
16682 M:      Charles Hsu     <[email protected]>
16683 L:      [email protected]
16684 S:      Maintained
16685 F:      Documentation/hwmon/pm6764tr.rst
16686 F:      drivers/hwmon/pmbus/pm6764tr.c
16687
16688 PM-GRAPH UTILITY
16689 M:      "Todd E Brandt" <[email protected]>
16690 L:      [email protected]
16691 S:      Supported
16692 W:      https://01.org/pm-graph
16693 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16694 T:      git git://github.com/intel/pm-graph
16695 F:      tools/power/pm-graph
16696
16697 PMBUS HARDWARE MONITORING DRIVERS
16698 M:      Guenter Roeck <[email protected]>
16699 L:      [email protected]
16700 S:      Maintained
16701 W:      http://hwmon.wiki.kernel.org/
16702 W:      http://www.roeck-us.net/linux/drivers/
16703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16704 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16705 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16706 F:      Documentation/hwmon/adm1275.rst
16707 F:      Documentation/hwmon/ibm-cffps.rst
16708 F:      Documentation/hwmon/ir35221.rst
16709 F:      Documentation/hwmon/lm25066.rst
16710 F:      Documentation/hwmon/ltc2978.rst
16711 F:      Documentation/hwmon/ltc3815.rst
16712 F:      Documentation/hwmon/max16064.rst
16713 F:      Documentation/hwmon/max20751.rst
16714 F:      Documentation/hwmon/max31785.rst
16715 F:      Documentation/hwmon/max34440.rst
16716 F:      Documentation/hwmon/max8688.rst
16717 F:      Documentation/hwmon/pmbus-core.rst
16718 F:      Documentation/hwmon/pmbus.rst
16719 F:      Documentation/hwmon/tps40422.rst
16720 F:      Documentation/hwmon/ucd9000.rst
16721 F:      Documentation/hwmon/ucd9200.rst
16722 F:      Documentation/hwmon/zl6100.rst
16723 F:      drivers/hwmon/pmbus/
16724 F:      include/linux/pmbus.h
16725
16726 PMC SIERRA MaxRAID DRIVER
16727 L:      [email protected]
16728 S:      Orphan
16729 W:      http://www.pmc-sierra.com/
16730 F:      drivers/scsi/pmcraid.*
16731
16732 PMC SIERRA PM8001 DRIVER
16733 M:      Jack Wang <[email protected]>
16734 L:      [email protected]
16735 S:      Supported
16736 F:      drivers/scsi/pm8001/
16737
16738 PNI RM3100 IIO DRIVER
16739 M:      Song Qiang <[email protected]>
16740 L:      [email protected]
16741 S:      Maintained
16742 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16743 F:      drivers/iio/magnetometer/rm3100*
16744
16745 PNP SUPPORT
16746 M:      "Rafael J. Wysocki" <[email protected]>
16747 L:      [email protected]
16748 S:      Maintained
16749 F:      drivers/pnp/
16750 F:      include/linux/pnp.h
16751
16752 POSIX CLOCKS and TIMERS
16753 M:      Thomas Gleixner <[email protected]>
16754 L:      [email protected]
16755 S:      Maintained
16756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16757 F:      fs/timerfd.c
16758 F:      include/linux/time_namespace.h
16759 F:      include/linux/timer*
16760 F:      kernel/time/*timer*
16761 F:      kernel/time/namespace.c
16762
16763 POWER MANAGEMENT CORE
16764 M:      "Rafael J. Wysocki" <[email protected]>
16765 L:      [email protected]
16766 S:      Supported
16767 B:      https://bugzilla.kernel.org
16768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16769 F:      drivers/base/power/
16770 F:      drivers/powercap/
16771 F:      include/linux/intel_rapl.h
16772 F:      include/linux/pm.h
16773 F:      include/linux/pm_*
16774 F:      include/linux/powercap.h
16775 F:      kernel/configs/nopm.config
16776
16777 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16778 M:      Daniel Lezcano <[email protected]>
16779 L:      [email protected]
16780 S:      Supported
16781 B:      https://bugzilla.kernel.org
16782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16783 F:      drivers/powercap/dtpm*
16784 F:      include/linux/dtpm.h
16785
16786 POWER STATE COORDINATION INTERFACE (PSCI)
16787 M:      Mark Rutland <[email protected]>
16788 M:      Lorenzo Pieralisi <[email protected]>
16789 L:      [email protected] (moderated for non-subscribers)
16790 S:      Maintained
16791 F:      drivers/firmware/psci/
16792 F:      include/linux/psci.h
16793 F:      include/uapi/linux/psci.h
16794
16795 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16796 M:      Sebastian Reichel <[email protected]>
16797 L:      [email protected]
16798 S:      Maintained
16799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16800 F:      Documentation/ABI/testing/sysfs-class-power
16801 F:      Documentation/devicetree/bindings/power/supply/
16802 F:      drivers/power/supply/
16803 F:      include/linux/power/
16804 F:      include/linux/power_supply.h
16805
16806 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16807 M:      Suraj Jitindar Singh <[email protected]>
16808 L:      [email protected]
16809 S:      Maintained
16810 F:      drivers/char/powernv-op-panel.c
16811
16812 PPP OVER ATM (RFC 2364)
16813 M:      Mitchell Blank Jr <[email protected]>
16814 S:      Maintained
16815 F:      include/uapi/linux/atmppp.h
16816 F:      net/atm/pppoatm.c
16817
16818 PPP OVER ETHERNET
16819 M:      Michal Ostrowski <[email protected]>
16820 S:      Maintained
16821 F:      drivers/net/ppp/pppoe.c
16822 F:      drivers/net/ppp/pppox.c
16823
16824 PPP OVER L2TP
16825 M:      James Chapman <[email protected]>
16826 S:      Maintained
16827 F:      include/linux/if_pppol2tp.h
16828 F:      include/uapi/linux/if_pppol2tp.h
16829 F:      net/l2tp/l2tp_ppp.c
16830
16831 PPP PROTOCOL DRIVERS AND COMPRESSORS
16832 L:      [email protected]
16833 S:      Orphan
16834 F:      drivers/net/ppp/ppp_*
16835
16836 PPS SUPPORT
16837 M:      Rodolfo Giometti <[email protected]>
16838 L:      [email protected] (subscribers-only)
16839 S:      Maintained
16840 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16841 F:      Documentation/ABI/testing/sysfs-pps
16842 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16843 F:      Documentation/driver-api/pps.rst
16844 F:      drivers/pps/
16845 F:      include/linux/pps*.h
16846 F:      include/uapi/linux/pps.h
16847
16848 PPTP DRIVER
16849 M:      Dmitry Kozlov <[email protected]>
16850 L:      [email protected]
16851 S:      Maintained
16852 W:      http://sourceforge.net/projects/accel-pptp
16853 F:      drivers/net/ppp/pptp.c
16854
16855 PRESSURE STALL INFORMATION (PSI)
16856 M:      Johannes Weiner <[email protected]>
16857 M:      Suren Baghdasaryan <[email protected]>
16858 S:      Maintained
16859 F:      include/linux/psi*
16860 F:      kernel/sched/psi.c
16861
16862 PRINTK
16863 M:      Petr Mladek <[email protected]>
16864 M:      Sergey Senozhatsky <[email protected]>
16865 R:      Steven Rostedt <[email protected]>
16866 R:      John Ogness <[email protected]>
16867 S:      Maintained
16868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16869 F:      include/linux/printk.h
16870 F:      kernel/printk/
16871
16872 PRINTK INDEXING
16873 R:      Chris Down <[email protected]>
16874 S:      Maintained
16875 F:      Documentation/core-api/printk-index.rst
16876 F:      kernel/printk/index.c
16877 K:      printk_index
16878
16879 PROC FILESYSTEM
16880 L:      [email protected]
16881 L:      [email protected]
16882 S:      Maintained
16883 F:      Documentation/filesystems/proc.rst
16884 F:      fs/proc/
16885 F:      include/linux/proc_fs.h
16886 F:      tools/testing/selftests/proc/
16887
16888 PROC SYSCTL
16889 M:      Luis Chamberlain <[email protected]>
16890 M:      Kees Cook <[email protected]>
16891 M:      Iurii Zaikin <[email protected]>
16892 L:      [email protected]
16893 L:      [email protected]
16894 S:      Maintained
16895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16896 F:      fs/proc/proc_sysctl.c
16897 F:      include/linux/sysctl.h
16898 F:      kernel/sysctl-test.c
16899 F:      kernel/sysctl.c
16900 F:      tools/testing/selftests/sysctl/
16901
16902 PS3 NETWORK SUPPORT
16903 M:      Geoff Levand <[email protected]>
16904 L:      [email protected]
16905 L:      [email protected]
16906 S:      Maintained
16907 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16908
16909 PS3 PLATFORM SUPPORT
16910 M:      Geoff Levand <[email protected]>
16911 L:      [email protected]
16912 S:      Maintained
16913 F:      arch/powerpc/boot/ps3*
16914 F:      arch/powerpc/include/asm/lv1call.h
16915 F:      arch/powerpc/include/asm/ps3*.h
16916 F:      arch/powerpc/platforms/ps3/
16917 F:      drivers/*/ps3*
16918 F:      drivers/ps3/
16919 F:      drivers/rtc/rtc-ps3.c
16920 F:      drivers/usb/host/*ps3.c
16921 F:      sound/ppc/snd_ps3*
16922
16923 PS3VRAM DRIVER
16924 M:      Jim Paris <[email protected]>
16925 M:      Geoff Levand <[email protected]>
16926 L:      [email protected]
16927 S:      Maintained
16928 F:      drivers/block/ps3vram.c
16929
16930 PSAMPLE PACKET SAMPLING SUPPORT
16931 M:      Yotam Gigi <[email protected]>
16932 S:      Maintained
16933 F:      include/net/psample.h
16934 F:      include/uapi/linux/psample.h
16935 F:      net/psample
16936
16937 PSTORE FILESYSTEM
16938 M:      Kees Cook <[email protected]>
16939 R:      Tony Luck <[email protected]>
16940 R:      Guilherme G. Piccoli <[email protected]>
16941 L:      [email protected]
16942 S:      Supported
16943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16944 F:      Documentation/admin-guide/ramoops.rst
16945 F:      Documentation/admin-guide/pstore-blk.rst
16946 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16947 F:      drivers/acpi/apei/erst.c
16948 F:      drivers/firmware/efi/efi-pstore.c
16949 F:      fs/pstore/
16950 F:      include/linux/pstore*
16951 K:      \b(pstore|ramoops)
16952
16953 PTP HARDWARE CLOCK SUPPORT
16954 M:      Richard Cochran <[email protected]>
16955 L:      [email protected]
16956 S:      Maintained
16957 W:      http://linuxptp.sourceforge.net/
16958 F:      Documentation/ABI/testing/sysfs-ptp
16959 F:      Documentation/driver-api/ptp.rst
16960 F:      drivers/net/phy/dp83640*
16961 F:      drivers/ptp/*
16962 F:      include/linux/ptp_cl*
16963 K:      (?:\b|_)ptp(?:\b|_)
16964
16965 PTP VIRTUAL CLOCK SUPPORT
16966 M:      Yangbo Lu <[email protected]>
16967 L:      [email protected]
16968 S:      Maintained
16969 F:      drivers/ptp/ptp_vclock.c
16970 F:      net/ethtool/phc_vclocks.c
16971
16972 PTRACE SUPPORT
16973 M:      Oleg Nesterov <[email protected]>
16974 S:      Maintained
16975 F:      arch/*/*/ptrace*.c
16976 F:      arch/*/include/asm/ptrace*.h
16977 F:      arch/*/ptrace*.c
16978 F:      include/asm-generic/syscall.h
16979 F:      include/linux/ptrace.h
16980 F:      include/linux/regset.h
16981 F:      include/uapi/linux/ptrace.h
16982 F:      kernel/ptrace.c
16983
16984 PULSE8-CEC DRIVER
16985 M:      Hans Verkuil <[email protected]>
16986 L:      [email protected]
16987 S:      Maintained
16988 T:      git git://linuxtv.org/media_tree.git
16989 F:      drivers/media/cec/usb/pulse8/
16990
16991 PURELIFI PLFXLC DRIVER
16992 M:      Srinivasan Raju <[email protected]>
16993 L:      [email protected]
16994 S:      Supported
16995 F:      drivers/net/wireless/purelifi/plfxlc/
16996
16997 PVRUSB2 VIDEO4LINUX DRIVER
16998 M:      Mike Isely <[email protected]>
16999 L:      [email protected]       (subscribers-only)
17000 L:      [email protected]
17001 S:      Maintained
17002 W:      http://www.isely.net/pvrusb2/
17003 T:      git git://linuxtv.org/media_tree.git
17004 F:      Documentation/driver-api/media/drivers/pvrusb2*
17005 F:      drivers/media/usb/pvrusb2/
17006
17007 PWC WEBCAM DRIVER
17008 M:      Hans Verkuil <[email protected]>
17009 L:      [email protected]
17010 S:      Odd Fixes
17011 T:      git git://linuxtv.org/media_tree.git
17012 F:      drivers/media/usb/pwc/*
17013 F:      include/trace/events/pwc.h
17014
17015 PWM IR Transmitter
17016 M:      Sean Young <[email protected]>
17017 L:      [email protected]
17018 S:      Maintained
17019 F:      Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
17020 F:      drivers/media/rc/pwm-ir-tx.c
17021
17022 PWM SUBSYSTEM
17023 M:      Thierry Reding <[email protected]>
17024 R:      Uwe Kleine-König <[email protected]>
17025 L:      [email protected]
17026 S:      Maintained
17027 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
17028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
17029 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
17030 F:      Documentation/devicetree/bindings/pwm/
17031 F:      Documentation/driver-api/pwm.rst
17032 F:      drivers/gpio/gpio-mvebu.c
17033 F:      drivers/pwm/
17034 F:      drivers/video/backlight/pwm_bl.c
17035 F:      include/dt-bindings/pwm/
17036 F:      include/linux/pwm.h
17037 F:      include/linux/pwm_backlight.h
17038 K:      pwm_(config|apply_state|ops)
17039
17040 PXA GPIO DRIVER
17041 M:      Robert Jarzmik <[email protected]>
17042 L:      [email protected]
17043 S:      Maintained
17044 F:      drivers/gpio/gpio-pxa.c
17045
17046 PXA MMCI DRIVER
17047 S:      Orphan
17048
17049 PXA RTC DRIVER
17050 M:      Robert Jarzmik <[email protected]>
17051 L:      [email protected]
17052 S:      Maintained
17053
17054 PXA2xx/PXA3xx SUPPORT
17055 M:      Daniel Mack <[email protected]>
17056 M:      Haojian Zhuang <[email protected]>
17057 M:      Robert Jarzmik <[email protected]>
17058 L:      [email protected] (moderated for non-subscribers)
17059 S:      Maintained
17060 T:      git git://github.com/hzhuang1/linux.git
17061 T:      git git://github.com/rjarzmik/linux.git
17062 F:      arch/arm/boot/dts/pxa*
17063 F:      arch/arm/mach-pxa/
17064 F:      drivers/dma/pxa*
17065 F:      drivers/pcmcia/pxa2xx*
17066 F:      drivers/pinctrl/pxa/
17067 F:      drivers/spi/spi-pxa2xx*
17068 F:      drivers/usb/gadget/udc/pxa2*
17069 F:      include/sound/pxa2xx-lib.h
17070 F:      sound/arm/pxa*
17071 F:      sound/soc/pxa/
17072
17073 QAT DRIVER
17074 M:      Giovanni Cabiddu <[email protected]>
17075 L:      [email protected]
17076 S:      Supported
17077 F:      drivers/crypto/intel/qat/
17078
17079 QCOM AUDIO (ASoC) DRIVERS
17080 M:      Srinivas Kandagatla <[email protected]>
17081 M:      Banajit Goswami <[email protected]>
17082 L:      [email protected] (moderated for non-subscribers)
17083 S:      Supported
17084 F:      Documentation/devicetree/bindings/soc/qcom/qcom,apr*
17085 F:      Documentation/devicetree/bindings/sound/qcom,*
17086 F:      drivers/soc/qcom/apr.c
17087 F:      include/dt-bindings/sound/qcom,wcd9335.h
17088 F:      sound/soc/codecs/lpass-rx-macro.*
17089 F:      sound/soc/codecs/lpass-tx-macro.*
17090 F:      sound/soc/codecs/lpass-va-macro.c
17091 F:      sound/soc/codecs/lpass-wsa-macro.*
17092 F:      sound/soc/codecs/msm8916-wcd-analog.c
17093 F:      sound/soc/codecs/msm8916-wcd-digital.c
17094 F:      sound/soc/codecs/wcd9335.*
17095 F:      sound/soc/codecs/wcd934x.c
17096 F:      sound/soc/codecs/wcd-clsh-v2.*
17097 F:      sound/soc/codecs/wcd-mbhc-v2.*
17098 F:      sound/soc/codecs/wsa881x.c
17099 F:      sound/soc/codecs/wsa883x.c
17100 F:      sound/soc/qcom/
17101
17102 QCOM EMBEDDED USB DEBUGGER (EUD)
17103 M:      Souradeep Chowdhury <[email protected]>
17104 L:      [email protected]
17105 S:      Maintained
17106 F:      Documentation/ABI/testing/sysfs-driver-eud
17107 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
17108 F:      drivers/usb/misc/qcom_eud.c
17109
17110 QCOM IPA DRIVER
17111 M:      Alex Elder <[email protected]>
17112 L:      [email protected]
17113 S:      Supported
17114 F:      drivers/net/ipa/
17115
17116 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
17117 M:      Gabriel Somlo <[email protected]>
17118 M:      "Michael S. Tsirkin" <[email protected]>
17119 L:      [email protected]
17120 S:      Maintained
17121 F:      drivers/firmware/qemu_fw_cfg.c
17122 F:      include/uapi/linux/qemu_fw_cfg.h
17123
17124 QIB DRIVER
17125 M:      Dennis Dalessandro <[email protected]>
17126 L:      [email protected]
17127 S:      Supported
17128 F:      drivers/infiniband/hw/qib/
17129
17130 QLOGIC QL41xxx FCOE DRIVER
17131 M:      Saurav Kashyap <[email protected]>
17132 M:      Javed Hasan <[email protected]>
17133 M:      [email protected]
17134 L:      [email protected]
17135 S:      Supported
17136 F:      drivers/scsi/qedf/
17137
17138 QLOGIC QL41xxx ISCSI DRIVER
17139 M:      Nilesh Javali <[email protected]>
17140 M:      Manish Rangankar <[email protected]>
17141 M:      [email protected]
17142 L:      [email protected]
17143 S:      Supported
17144 F:      drivers/scsi/qedi/
17145
17146 QLOGIC QL4xxx ETHERNET DRIVER
17147 M:      Ariel Elior <[email protected]>
17148 M:      Manish Chopra <[email protected]>
17149 L:      [email protected]
17150 S:      Supported
17151 F:      drivers/net/ethernet/qlogic/qed/
17152 F:      drivers/net/ethernet/qlogic/qede/
17153 F:      include/linux/qed/
17154
17155 QLOGIC QL4xxx RDMA DRIVER
17156 M:      Michal Kalderon <[email protected]>
17157 M:      Ariel Elior <[email protected]>
17158 L:      [email protected]
17159 S:      Supported
17160 F:      drivers/infiniband/hw/qedr/
17161 F:      include/uapi/rdma/qedr-abi.h
17162
17163 QLOGIC QLA1280 SCSI DRIVER
17164 M:      Michael Reed <[email protected]>
17165 L:      [email protected]
17166 S:      Maintained
17167 F:      drivers/scsi/qla1280.[ch]
17168
17169 QLOGIC QLA2XXX FC-SCSI DRIVER
17170 M:      Nilesh Javali <[email protected]>
17171 M:      [email protected]
17172 L:      [email protected]
17173 S:      Supported
17174 F:      drivers/scsi/qla2xxx/
17175
17176 QLOGIC QLA3XXX NETWORK DRIVER
17177 M:      [email protected]
17178 L:      [email protected]
17179 S:      Supported
17180 F:      drivers/net/ethernet/qlogic/qla3xxx.*
17181
17182 QLOGIC QLA4XXX iSCSI DRIVER
17183 M:      Nilesh Javali <[email protected]>
17184 M:      Manish Rangankar <[email protected]>
17185 M:      [email protected]
17186 L:      [email protected]
17187 S:      Supported
17188 F:      drivers/scsi/qla4xxx/
17189
17190 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
17191 M:      Shahed Shaikh <[email protected]>
17192 M:      Manish Chopra <[email protected]>
17193 M:      [email protected]
17194 L:      [email protected]
17195 S:      Supported
17196 F:      drivers/net/ethernet/qlogic/qlcnic/
17197
17198 QLOGIC QLGE 10Gb ETHERNET DRIVER
17199 M:      Manish Chopra <[email protected]>
17200 M:      [email protected]
17201 M:      Coiby Xu <[email protected]>
17202 L:      [email protected]
17203 S:      Supported
17204 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
17205 F:      drivers/staging/qlge/
17206
17207 QM1D1B0004 MEDIA DRIVER
17208 M:      Akihiro Tsukada <[email protected]>
17209 L:      [email protected]
17210 S:      Odd Fixes
17211 F:      drivers/media/tuners/qm1d1b0004*
17212
17213 QM1D1C0042 MEDIA DRIVER
17214 M:      Akihiro Tsukada <[email protected]>
17215 L:      [email protected]
17216 S:      Odd Fixes
17217 F:      drivers/media/tuners/qm1d1c0042*
17218
17219 QNX4 FILESYSTEM
17220 M:      Anders Larsen <[email protected]>
17221 S:      Maintained
17222 W:      http://www.alarsen.net/linux/qnx4fs/
17223 F:      fs/qnx4/
17224 F:      include/uapi/linux/qnx4_fs.h
17225 F:      include/uapi/linux/qnxtypes.h
17226
17227 QNX6 FILESYSTEM
17228 S:      Orphan
17229 F:      Documentation/filesystems/qnx6.rst
17230 F:      fs/qnx6/
17231 F:      include/linux/qnx6_fs.h
17232
17233 QORIQ DPAA2 FSL-MC BUS DRIVER
17234 M:      Stuart Yoder <[email protected]>
17235 M:      Laurentiu Tudor <[email protected]>
17236 L:      [email protected]
17237 S:      Maintained
17238 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
17239 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
17240 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
17241 F:      drivers/bus/fsl-mc/
17242 F:      include/uapi/linux/fsl_mc.h
17243
17244 QT1010 MEDIA DRIVER
17245 M:      Antti Palosaari <[email protected]>
17246 L:      [email protected]
17247 S:      Maintained
17248 W:      https://linuxtv.org
17249 W:      http://palosaari.fi/linux/
17250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17251 T:      git git://linuxtv.org/anttip/media_tree.git
17252 F:      drivers/media/tuners/qt1010*
17253
17254 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
17255 M:      Kalle Valo <[email protected]>
17256 L:      [email protected]
17257 S:      Supported
17258 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
17259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17260 F:      drivers/net/wireless/ath/ath10k/
17261 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.yaml
17262
17263 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
17264 M:      Kalle Valo <[email protected]>
17265 L:      [email protected]
17266 S:      Supported
17267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17268 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
17269 F:      drivers/net/wireless/ath/ath11k/
17270
17271 QUALCOMM ATH12K WIRELESS DRIVER
17272 M:      Kalle Valo <[email protected]>
17273 L:      [email protected]
17274 S:      Supported
17275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17276 F:      drivers/net/wireless/ath/ath12k/
17277
17278 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
17279 M:      Toke Høiland-Jørgensen <[email protected]>
17280 L:      [email protected]
17281 S:      Maintained
17282 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
17283 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
17284 F:      drivers/net/wireless/ath/ath9k/
17285
17286 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
17287 M:      Stephan Gerhold <[email protected]>
17288 L:      [email protected]
17289 L:      [email protected]
17290 S:      Maintained
17291 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
17292 F:      drivers/net/wwan/qcom_bam_dmux.c
17293
17294 QUALCOMM CAMERA SUBSYSTEM DRIVER
17295 M:      Robert Foss <[email protected]>
17296 M:      Todor Tomov <[email protected]>
17297 M:      Bryan O'Donoghue <[email protected]>
17298 L:      [email protected]
17299 S:      Maintained
17300 F:      Documentation/admin-guide/media/qcom_camss.rst
17301 F:      Documentation/devicetree/bindings/media/*camss*
17302 F:      drivers/media/platform/qcom/camss/
17303
17304 QUALCOMM CLOCK DRIVERS
17305 M:      Bjorn Andersson <[email protected]>
17306 L:      [email protected]
17307 S:      Supported
17308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
17309 F:      Documentation/devicetree/bindings/clock/qcom,*
17310 F:      drivers/clk/qcom/
17311 F:      include/dt-bindings/clock/qcom,*
17312
17313 QUALCOMM CLOUD AI (QAIC) DRIVER
17314 M:      Jeffrey Hugo <[email protected]>
17315 L:      [email protected]
17316 L:      [email protected]
17317 S:      Supported
17318 T:      git git://anongit.freedesktop.org/drm/drm-misc
17319 F:      Documentation/accel/qaic/
17320 F:      drivers/accel/qaic/
17321 F:      include/uapi/drm/qaic_accel.h
17322
17323 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
17324 M:      Bjorn Andersson <[email protected]>
17325 M:      Konrad Dybcio <[email protected]>
17326 L:      [email protected]
17327 L:      [email protected]
17328 S:      Maintained
17329 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
17330 F:      drivers/soc/qcom/cpr.c
17331
17332 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
17333 M:      Ilia Lin <[email protected]>
17334 L:      [email protected]
17335 S:      Maintained
17336 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
17337 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
17338 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
17339
17340 QUALCOMM CRYPTO DRIVERS
17341 M:      Thara Gopinath <[email protected]>
17342 L:      [email protected]
17343 L:      [email protected]
17344 S:      Maintained
17345 F:      Documentation/devicetree/bindings/crypto/qcom-qce.yaml
17346 F:      drivers/crypto/qce/
17347
17348 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
17349 M:      Timur Tabi <[email protected]>
17350 L:      [email protected]
17351 S:      Maintained
17352 F:      drivers/net/ethernet/qualcomm/emac/
17353
17354 QUALCOMM ETHQOS ETHERNET DRIVER
17355 M:      Vinod Koul <[email protected]>
17356 R:      Bhupesh Sharma <[email protected]>
17357 L:      [email protected]
17358 S:      Maintained
17359 F:      Documentation/devicetree/bindings/net/qcom,ethqos.yaml
17360 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
17361
17362 QUALCOMM FASTRPC DRIVER
17363 M:      Srinivas Kandagatla <[email protected]>
17364 M:      Amol Maheshwari <[email protected]>
17365 L:      [email protected]
17366 S:      Maintained
17367 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
17368 F:      drivers/misc/fastrpc.c
17369 F:      include/uapi/misc/fastrpc.h
17370
17371 QUALCOMM HEXAGON ARCHITECTURE
17372 M:      Brian Cain <[email protected]>
17373 L:      [email protected]
17374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
17375 S:      Supported
17376 F:      arch/hexagon/
17377
17378 QUALCOMM HIDMA DRIVER
17379 M:      Sinan Kaya <[email protected]>
17380 L:      [email protected] (moderated for non-subscribers)
17381 L:      [email protected]
17382 L:      [email protected]
17383 S:      Supported
17384 F:      drivers/dma/qcom/hidma*
17385
17386 QUALCOMM I2C CCI DRIVER
17387 M:      Loic Poulain <[email protected]>
17388 M:      Robert Foss <[email protected]>
17389 L:      [email protected]
17390 L:      [email protected]
17391 S:      Maintained
17392 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
17393 F:      drivers/i2c/busses/i2c-qcom-cci.c
17394
17395 QUALCOMM INTERCONNECT BWMON DRIVER
17396 M:      Krzysztof Kozlowski <[email protected]>
17397 L:      [email protected]
17398 S:      Maintained
17399 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
17400 F:      drivers/soc/qcom/icc-bwmon.c
17401
17402 QUALCOMM IOMMU
17403 M:      Rob Clark <[email protected]>
17404 L:      [email protected]
17405 L:      [email protected]
17406 S:      Maintained
17407 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
17408
17409 QUALCOMM IPC ROUTER (QRTR) DRIVER
17410 M:      Manivannan Sadhasivam <[email protected]>
17411 L:      [email protected]
17412 S:      Maintained
17413 F:      include/trace/events/qrtr.h
17414 F:      include/uapi/linux/qrtr.h
17415 F:      net/qrtr/
17416
17417 QUALCOMM IPCC MAILBOX DRIVER
17418 M:      Manivannan Sadhasivam <[email protected]>
17419 L:      [email protected]
17420 S:      Supported
17421 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
17422 F:      drivers/mailbox/qcom-ipcc.c
17423 F:      include/dt-bindings/mailbox/qcom-ipcc.h
17424
17425 QUALCOMM IPQ4019 USB PHY DRIVER
17426 M:      Robert Marko <[email protected]>
17427 M:      Luka Perkov <[email protected]>
17428 L:      [email protected]
17429 S:      Maintained
17430 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
17431 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
17432
17433 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
17434 M:      Robert Marko <[email protected]>
17435 M:      Luka Perkov <[email protected]>
17436 L:      [email protected]
17437 S:      Maintained
17438 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
17439 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
17440
17441 QUALCOMM NAND CONTROLLER DRIVER
17442 M:      Manivannan Sadhasivam <[email protected]>
17443 L:      [email protected]
17444 L:      [email protected]
17445 S:      Maintained
17446 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
17447 F:      drivers/mtd/nand/raw/qcom_nandc.c
17448
17449 QUALCOMM RMNET DRIVER
17450 M:      Subash Abhinov Kasiviswanathan <[email protected]>
17451 M:      Sean Tranchetti <[email protected]>
17452 L:      [email protected]
17453 S:      Maintained
17454 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
17455 F:      drivers/net/ethernet/qualcomm/rmnet/
17456 F:      include/linux/if_rmnet.h
17457
17458 QUALCOMM TSENS THERMAL DRIVER
17459 M:      Amit Kucheria <[email protected]>
17460 M:      Thara Gopinath <[email protected]>
17461 L:      [email protected]
17462 L:      [email protected]
17463 S:      Maintained
17464 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17465 F:      drivers/thermal/qcom/
17466
17467 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17468 M:      Stanimir Varbanov <[email protected]>
17469 M:      Vikash Garodia <[email protected]>
17470 L:      [email protected]
17471 L:      [email protected]
17472 S:      Maintained
17473 T:      git git://linuxtv.org/media_tree.git
17474 F:      Documentation/devicetree/bindings/media/*venus*
17475 F:      drivers/media/platform/qcom/venus/
17476
17477 QUALCOMM WCN36XX WIRELESS DRIVER
17478 M:      Loic Poulain <[email protected]>
17479 L:      [email protected]
17480 S:      Supported
17481 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17482 F:      drivers/net/wireless/ath/wcn36xx/
17483
17484 QUANTENNA QTNFMAC WIRELESS DRIVER
17485 M:      Igor Mitsyanko <[email protected]>
17486 R:      Sergey Matyukevich <[email protected]>
17487 L:      [email protected]
17488 S:      Maintained
17489 F:      drivers/net/wireless/quantenna
17490
17491 RADEON and AMDGPU DRM DRIVERS
17492 M:      Alex Deucher <[email protected]>
17493 M:      Christian König <[email protected]>
17494 M:      Pan, Xinhui <[email protected]>
17495 L:      [email protected]
17496 S:      Supported
17497 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17498 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17499 C:      irc://irc.oftc.net/radeon
17500 F:      Documentation/gpu/amdgpu/
17501 F:      drivers/gpu/drm/amd/
17502 F:      drivers/gpu/drm/radeon/
17503 F:      include/uapi/drm/amdgpu_drm.h
17504 F:      include/uapi/drm/radeon_drm.h
17505
17506 RADEON FRAMEBUFFER DISPLAY DRIVER
17507 M:      Benjamin Herrenschmidt <[email protected]>
17508 L:      [email protected]
17509 S:      Maintained
17510 F:      drivers/video/fbdev/aty/radeon*
17511 F:      include/uapi/linux/radeonfb.h
17512
17513 RADIOSHARK RADIO DRIVER
17514 M:      Hans Verkuil <[email protected]>
17515 L:      [email protected]
17516 S:      Maintained
17517 T:      git git://linuxtv.org/media_tree.git
17518 F:      drivers/media/radio/radio-shark.c
17519
17520 RADIOSHARK2 RADIO DRIVER
17521 M:      Hans Verkuil <[email protected]>
17522 L:      [email protected]
17523 S:      Maintained
17524 T:      git git://linuxtv.org/media_tree.git
17525 F:      drivers/media/radio/radio-shark2.c
17526 F:      drivers/media/radio/radio-tea5777.c
17527
17528 RADOS BLOCK DEVICE (RBD)
17529 M:      Ilya Dryomov <[email protected]>
17530 R:      Dongsheng Yang <[email protected]>
17531 L:      [email protected]
17532 S:      Supported
17533 W:      http://ceph.com/
17534 T:      git https://github.com/ceph/ceph-client.git
17535 F:      Documentation/ABI/testing/sysfs-bus-rbd
17536 F:      drivers/block/rbd.c
17537 F:      drivers/block/rbd_types.h
17538
17539 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17540 M:      Paul Mackerras <[email protected]>
17541 L:      [email protected]
17542 S:      Maintained
17543 F:      drivers/video/fbdev/aty/aty128fb.c
17544
17545 RAINSHADOW-CEC DRIVER
17546 M:      Hans Verkuil <[email protected]>
17547 L:      [email protected]
17548 S:      Maintained
17549 T:      git git://linuxtv.org/media_tree.git
17550 F:      drivers/media/cec/usb/rainshadow/
17551
17552 RALINK MIPS ARCHITECTURE
17553 M:      John Crispin <[email protected]>
17554 L:      [email protected]
17555 S:      Maintained
17556 F:      arch/mips/ralink
17557
17558 RALINK MT7621 MIPS ARCHITECTURE
17559 M:      Arınç ÜNAL <[email protected]>
17560 M:      Sergio Paracuellos <[email protected]>
17561 L:      [email protected]
17562 S:      Maintained
17563 F:      arch/mips/boot/dts/ralink/mt7621*
17564
17565 RALINK PINCTRL DRIVER
17566 M:      Arınç ÜNAL <[email protected]>
17567 M:      Sergio Paracuellos <[email protected]>
17568 L:      [email protected]
17569 S:      Maintained
17570 F:      drivers/pinctrl/ralink/
17571
17572 RALINK RT2X00 WIRELESS LAN DRIVER
17573 M:      Stanislaw Gruszka <[email protected]>
17574 M:      Helmut Schaa <[email protected]>
17575 L:      [email protected]
17576 S:      Maintained
17577 F:      drivers/net/wireless/ralink/rt2x00/
17578
17579 RAMDISK RAM BLOCK DEVICE DRIVER
17580 M:      Jens Axboe <[email protected]>
17581 S:      Maintained
17582 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17583 F:      drivers/block/brd.c
17584
17585 RANCHU VIRTUAL BOARD FOR MIPS
17586 M:      Miodrag Dinic <[email protected]>
17587 L:      [email protected]
17588 S:      Supported
17589 F:      arch/mips/configs/generic/board-ranchu.config
17590 F:      arch/mips/generic/board-ranchu.c
17591
17592 RANDOM NUMBER DRIVER
17593 M:      "Theodore Ts'o" <[email protected]>
17594 M:      Jason A. Donenfeld <[email protected]>
17595 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17596 S:      Maintained
17597 F:      drivers/char/random.c
17598 F:      drivers/virt/vmgenid.c
17599
17600 RAPIDIO SUBSYSTEM
17601 M:      Matt Porter <[email protected]>
17602 M:      Alexandre Bounine <[email protected]>
17603 S:      Maintained
17604 F:      drivers/rapidio/
17605
17606 RAS INFRASTRUCTURE
17607 M:      Tony Luck <[email protected]>
17608 M:      Borislav Petkov <[email protected]>
17609 L:      [email protected]
17610 S:      Maintained
17611 F:      Documentation/admin-guide/ras.rst
17612 F:      drivers/ras/
17613 F:      include/linux/ras.h
17614 F:      include/ras/ras_event.h
17615
17616 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17617 L:      [email protected]
17618 S:      Orphan
17619 F:      drivers/net/wireless/legacy/ray*
17620
17621 RC-CORE / LIRC FRAMEWORK
17622 M:      Sean Young <[email protected]>
17623 L:      [email protected]
17624 S:      Maintained
17625 W:      http://linuxtv.org
17626 T:      git git://linuxtv.org/media_tree.git
17627 F:      Documentation/driver-api/media/rc-core.rst
17628 F:      Documentation/userspace-api/media/rc/
17629 F:      drivers/media/rc/
17630 F:      include/media/rc-map.h
17631 F:      include/media/rc-core.h
17632 F:      include/uapi/linux/lirc.h
17633
17634 RCMM REMOTE CONTROLS DECODER
17635 M:      Patrick Lerda <[email protected]>
17636 S:      Maintained
17637 F:      drivers/media/rc/ir-rcmm-decoder.c
17638
17639 RCUTORTURE TEST FRAMEWORK
17640 M:      "Paul E. McKenney" <[email protected]>
17641 M:      Josh Triplett <[email protected]>
17642 R:      Steven Rostedt <[email protected]>
17643 R:      Mathieu Desnoyers <[email protected]>
17644 R:      Lai Jiangshan <[email protected]>
17645 L:      [email protected]
17646 S:      Supported
17647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17648 F:      tools/testing/selftests/rcutorture
17649
17650 RDACM20 Camera Sensor
17651 M:      Jacopo Mondi <[email protected]>
17652 M:      Kieran Bingham <[email protected]>
17653 M:      Laurent Pinchart <[email protected]>
17654 M:      Niklas Söderlund <[email protected]>
17655 L:      [email protected]
17656 S:      Maintained
17657 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17658 F:      drivers/media/i2c/max9271.c
17659 F:      drivers/media/i2c/max9271.h
17660 F:      drivers/media/i2c/rdacm20.c
17661
17662 RDACM21 Camera Sensor
17663 M:      Jacopo Mondi <[email protected]>
17664 M:      Kieran Bingham <[email protected]>
17665 M:      Laurent Pinchart <[email protected]>
17666 M:      Niklas Söderlund <[email protected]>
17667 L:      [email protected]
17668 S:      Maintained
17669 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17670 F:      drivers/media/i2c/max9271.c
17671 F:      drivers/media/i2c/max9271.h
17672 F:      drivers/media/i2c/rdacm21.c
17673
17674 RDC R-321X SoC
17675 M:      Florian Fainelli <[email protected]>
17676 S:      Maintained
17677
17678 RDC R6040 FAST ETHERNET DRIVER
17679 M:      Florian Fainelli <[email protected]>
17680 L:      [email protected]
17681 S:      Maintained
17682 F:      drivers/net/ethernet/rdc/r6040.c
17683
17684 RDMAVT - RDMA verbs software
17685 M:      Dennis Dalessandro <[email protected]>
17686 L:      [email protected]
17687 S:      Supported
17688 F:      drivers/infiniband/sw/rdmavt
17689
17690 RDS - RELIABLE DATAGRAM SOCKETS
17691 M:      Santosh Shilimkar <[email protected]>
17692 L:      [email protected]
17693 L:      [email protected]
17694 L:      [email protected] (moderated for non-subscribers)
17695 S:      Supported
17696 W:      https://oss.oracle.com/projects/rds/
17697 F:      Documentation/networking/rds.rst
17698 F:      net/rds/
17699
17700 RDT - RESOURCE ALLOCATION
17701 M:      Fenghua Yu <[email protected]>
17702 M:      Reinette Chatre <[email protected]>
17703 L:      [email protected]
17704 S:      Supported
17705 F:      Documentation/arch/x86/resctrl*
17706 F:      arch/x86/include/asm/resctrl.h
17707 F:      arch/x86/kernel/cpu/resctrl/
17708 F:      tools/testing/selftests/resctrl/
17709
17710 READ-COPY UPDATE (RCU)
17711 M:      "Paul E. McKenney" <[email protected]>
17712 M:      Frederic Weisbecker <[email protected]> (kernel/rcu/tree_nocb.h)
17713 M:      Neeraj Upadhyay <[email protected]> (kernel/rcu/tasks.h)
17714 M:      Joel Fernandes <[email protected]>
17715 M:      Josh Triplett <[email protected]>
17716 M:      Boqun Feng <[email protected]>
17717 R:      Steven Rostedt <[email protected]>
17718 R:      Mathieu Desnoyers <[email protected]>
17719 R:      Lai Jiangshan <[email protected]>
17720 R:      Zqiang <[email protected]>
17721 L:      [email protected]
17722 S:      Supported
17723 W:      http://www.rdrop.com/users/paulmck/RCU/
17724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17725 F:      Documentation/RCU/
17726 F:      include/linux/rcu*
17727 F:      kernel/rcu/
17728 X:      Documentation/RCU/torture.rst
17729 X:      include/linux/srcu*.h
17730 X:      kernel/rcu/srcu*.c
17731
17732 REAL TIME CLOCK (RTC) SUBSYSTEM
17733 M:      Alessandro Zummo <[email protected]>
17734 M:      Alexandre Belloni <[email protected]>
17735 L:      [email protected]
17736 S:      Maintained
17737 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17739 F:      Documentation/admin-guide/rtc.rst
17740 F:      Documentation/devicetree/bindings/rtc/
17741 F:      drivers/rtc/
17742 F:      include/linux/platform_data/rtc-*
17743 F:      include/linux/rtc.h
17744 F:      include/linux/rtc/
17745 F:      include/uapi/linux/rtc.h
17746 F:      tools/testing/selftests/rtc/
17747
17748 REALTEK AUDIO CODECS
17749 M:      Oder Chiou <[email protected]>
17750 S:      Maintained
17751 F:      include/sound/rt*.h
17752 F:      sound/soc/codecs/rt*
17753
17754 REALTEK OTTO WATCHDOG
17755 M:      Sander Vanheule <[email protected]>
17756 L:      [email protected]
17757 S:      Maintained
17758 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17759 F:      drivers/watchdog/realtek_otto_wdt.c
17760
17761 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17762 M:      Linus Walleij <[email protected]>
17763 M:      Alvin Šipraga <[email protected]>
17764 S:      Maintained
17765 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17766 F:      drivers/net/dsa/realtek/*
17767
17768 REALTEK WIRELESS DRIVER (rtlwifi family)
17769 M:      Ping-Ke Shih <[email protected]>
17770 L:      [email protected]
17771 S:      Maintained
17772 W:      https://wireless.wiki.kernel.org/
17773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17774 F:      drivers/net/wireless/realtek/rtlwifi/
17775
17776 REALTEK WIRELESS DRIVER (rtw88)
17777 M:      Yan-Hsuan Chuang <[email protected]>
17778 L:      [email protected]
17779 S:      Maintained
17780 F:      drivers/net/wireless/realtek/rtw88/
17781
17782 REALTEK WIRELESS DRIVER (rtw89)
17783 M:      Ping-Ke Shih <[email protected]>
17784 L:      [email protected]
17785 S:      Maintained
17786 F:      drivers/net/wireless/realtek/rtw89/
17787
17788 REDPINE WIRELESS DRIVER
17789 L:      [email protected]
17790 S:      Orphan
17791 F:      drivers/net/wireless/rsi/
17792
17793 REGISTER MAP ABSTRACTION
17794 M:      Mark Brown <[email protected]>
17795 L:      [email protected]
17796 S:      Supported
17797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17798 F:      Documentation/devicetree/bindings/regmap/
17799 F:      drivers/base/regmap/
17800 F:      include/linux/regmap.h
17801
17802 REISERFS FILE SYSTEM
17803 L:      [email protected]
17804 S:      Supported
17805 F:      fs/reiserfs/
17806
17807 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17808 M:      Bjorn Andersson <[email protected]>
17809 M:      Mathieu Poirier <[email protected]>
17810 L:      [email protected]
17811 S:      Maintained
17812 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17813 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17814 F:      Documentation/devicetree/bindings/remoteproc/
17815 F:      Documentation/staging/remoteproc.rst
17816 F:      drivers/remoteproc/
17817 F:      include/linux/remoteproc.h
17818 F:      include/linux/remoteproc/
17819
17820 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17821 M:      Bjorn Andersson <[email protected]>
17822 M:      Mathieu Poirier <[email protected]>
17823 L:      [email protected]
17824 S:      Maintained
17825 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17826 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17827 F:      Documentation/staging/rpmsg.rst
17828 F:      drivers/rpmsg/
17829 F:      include/linux/rpmsg.h
17830 F:      include/linux/rpmsg/
17831 F:      include/uapi/linux/rpmsg.h
17832 F:      samples/rpmsg/
17833
17834 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17835 M:      Stephan Gerhold <[email protected]>
17836 L:      [email protected]
17837 L:      [email protected]
17838 S:      Maintained
17839 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17840
17841 RENESAS CLOCK DRIVERS
17842 M:      Geert Uytterhoeven <[email protected]>
17843 L:      [email protected]
17844 S:      Supported
17845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17846 F:      Documentation/devicetree/bindings/clock/renesas,*
17847 F:      drivers/clk/renesas/
17848
17849 RENESAS EMEV2 I2C DRIVER
17850 M:      Wolfram Sang <[email protected]>
17851 L:      [email protected]
17852 S:      Supported
17853 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17854 F:      drivers/i2c/busses/i2c-emev2.c
17855
17856 RENESAS ETHERNET DRIVERS
17857 R:      Sergey Shtylyov <[email protected]>
17858 L:      [email protected]
17859 L:      [email protected]
17860 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17861 F:      drivers/net/ethernet/renesas/
17862 F:      include/linux/sh_eth.h
17863
17864 RENESAS IDT821034 ASoC CODEC
17865 M:      Herve Codina <[email protected]>
17866 L:      [email protected] (moderated for non-subscribers)
17867 S:      Maintained
17868 F:      Documentation/devicetree/bindings/sound/renesas,idt821034.yaml
17869 F:      sound/soc/codecs/idt821034.c
17870
17871 RENESAS R-CAR GYROADC DRIVER
17872 M:      Marek Vasut <[email protected]>
17873 L:      [email protected]
17874 S:      Supported
17875 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17876 F:      drivers/iio/adc/rcar-gyroadc.c
17877
17878 RENESAS R-CAR I2C DRIVERS
17879 M:      Wolfram Sang <[email protected]>
17880 L:      [email protected]
17881 S:      Supported
17882 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17883 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17884 F:      drivers/i2c/busses/i2c-rcar.c
17885 F:      drivers/i2c/busses/i2c-sh_mobile.c
17886
17887 RENESAS R-CAR SATA DRIVER
17888 R:      Sergey Shtylyov <[email protected]>
17889 S:      Supported
17890 L:      [email protected]
17891 L:      [email protected]
17892 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17893 F:      drivers/ata/sata_rcar.c
17894
17895 RENESAS R-CAR THERMAL DRIVERS
17896 M:      Niklas Söderlund <[email protected]>
17897 L:      [email protected]
17898 S:      Supported
17899 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17900 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17901 F:      drivers/thermal/rcar_gen3_thermal.c
17902 F:      drivers/thermal/rcar_thermal.c
17903
17904 RENESAS RIIC DRIVER
17905 M:      Chris Brandt <[email protected]>
17906 L:      [email protected]
17907 S:      Supported
17908 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17909 F:      drivers/i2c/busses/i2c-riic.c
17910
17911 RENESAS USB PHY DRIVER
17912 M:      Yoshihiro Shimoda <[email protected]>
17913 L:      [email protected]
17914 S:      Maintained
17915 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17916
17917 RENESAS RZ/G2L A/D DRIVER
17918 M:      Lad Prabhakar <[email protected]>
17919 L:      [email protected]
17920 L:      [email protected]
17921 S:      Supported
17922 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17923 F:      drivers/iio/adc/rzg2l_adc.c
17924
17925 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17926 M:      Clément Léger <[email protected]>
17927 L:      [email protected]
17928 L:      [email protected]
17929 S:      Maintained
17930 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17931 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17932 F:      drivers/net/dsa/rzn1_a5psw*
17933 F:      drivers/net/pcs/pcs-rzn1-miic.c
17934 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17935 F:      include/linux/pcs-rzn1-miic.h
17936 F:      net/dsa/tag_rzn1_a5psw.c
17937
17938 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17939 M:      Miquel Raynal <[email protected]>
17940 L:      [email protected]
17941 L:      [email protected]
17942 S:      Maintained
17943 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17944 F:      drivers/rtc/rtc-rzn1.c
17945
17946 RENESAS RZ/N1 USBF CONTROLLER DRIVER
17947 M:      Herve Codina <[email protected]>
17948 L:      [email protected]
17949 L:      [email protected]
17950 S:      Maintained
17951 F:      Documentation/devicetree/bindings/usb/renesas,rzn1-usbf.yaml
17952 F:      drivers/usb/gadget/udc/renesas_usbf.c
17953
17954 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17955 M:      Miquel Raynal <[email protected]>
17956 L:      [email protected]
17957 L:      [email protected]
17958 S:      Maintained
17959 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17960 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17961
17962 RENESAS VERSACLOCK 7 CLOCK DRIVER
17963 M:      Alex Helms <[email protected]>
17964 S:      Maintained
17965 F:      Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
17966 F:      drivers/clk/clk-versaclock7.c
17967
17968 RESET CONTROLLER FRAMEWORK
17969 M:      Philipp Zabel <[email protected]>
17970 S:      Maintained
17971 T:      git git://git.pengutronix.de/git/pza/linux
17972 F:      Documentation/devicetree/bindings/reset/
17973 F:      Documentation/driver-api/reset.rst
17974 F:      drivers/reset/
17975 F:      include/dt-bindings/reset/
17976 F:      include/linux/reset-controller.h
17977 F:      include/linux/reset.h
17978 F:      include/linux/reset/
17979 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17980
17981 RESTARTABLE SEQUENCES SUPPORT
17982 M:      Mathieu Desnoyers <[email protected]>
17983 M:      Peter Zijlstra <[email protected]>
17984 M:      "Paul E. McKenney" <[email protected]>
17985 M:      Boqun Feng <[email protected]>
17986 L:      [email protected]
17987 S:      Supported
17988 F:      include/trace/events/rseq.h
17989 F:      include/uapi/linux/rseq.h
17990 F:      kernel/rseq.c
17991 F:      tools/testing/selftests/rseq/
17992
17993 RFKILL
17994 M:      Johannes Berg <[email protected]>
17995 L:      [email protected]
17996 S:      Maintained
17997 W:      https://wireless.wiki.kernel.org/
17998 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
18000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
18001 F:      Documentation/ABI/stable/sysfs-class-rfkill
18002 F:      Documentation/driver-api/rfkill.rst
18003 F:      include/linux/rfkill.h
18004 F:      include/uapi/linux/rfkill.h
18005 F:      net/rfkill/
18006
18007 RHASHTABLE
18008 M:      Thomas Graf <[email protected]>
18009 M:      Herbert Xu <[email protected]>
18010 L:      [email protected]
18011 S:      Maintained
18012 F:      include/linux/rhashtable-types.h
18013 F:      include/linux/rhashtable.h
18014 F:      lib/rhashtable.c
18015 F:      lib/test_rhashtable.c
18016
18017 RICOH R5C592 MEMORYSTICK DRIVER
18018 M:      Maxim Levitsky <[email protected]>
18019 S:      Maintained
18020 F:      drivers/memstick/host/r592.*
18021
18022 RICOH SMARTMEDIA/XD DRIVER
18023 M:      Maxim Levitsky <[email protected]>
18024 S:      Maintained
18025 F:      drivers/mtd/nand/raw/r852.c
18026 F:      drivers/mtd/nand/raw/r852.h
18027
18028 RISC-V PMU DRIVERS
18029 M:      Atish Patra <[email protected]>
18030 R:      Anup Patel <[email protected]>
18031 L:      [email protected]
18032 S:      Supported
18033 F:      drivers/perf/riscv_pmu.c
18034 F:      drivers/perf/riscv_pmu_legacy.c
18035 F:      drivers/perf/riscv_pmu_sbi.c
18036
18037 RISC-V ARCHITECTURE
18038 M:      Paul Walmsley <[email protected]>
18039 M:      Palmer Dabbelt <[email protected]>
18040 M:      Albert Ou <[email protected]>
18041 L:      [email protected]
18042 S:      Supported
18043 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
18044 C:      irc://irc.libera.chat/riscv
18045 P:      Documentation/riscv/patch-acceptance.rst
18046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
18047 F:      arch/riscv/
18048 N:      riscv
18049 K:      riscv
18050
18051 RISC-V MICROCHIP FPGA SUPPORT
18052 M:      Conor Dooley <[email protected]>
18053 M:      Daire McNamara <[email protected]>
18054 L:      [email protected]
18055 S:      Supported
18056 F:      Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
18057 F:      Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
18058 F:      Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
18059 F:      Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
18060 F:      Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
18061 F:      Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
18062 F:      Documentation/devicetree/bindings/riscv/microchip.yaml
18063 F:      Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
18064 F:      Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
18065 F:      Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
18066 F:      arch/riscv/boot/dts/microchip/
18067 F:      drivers/char/hw_random/mpfs-rng.c
18068 F:      drivers/clk/microchip/clk-mpfs*.c
18069 F:      drivers/i2c/busses/i2c-microchip-corei2c.c
18070 F:      drivers/mailbox/mailbox-mpfs.c
18071 F:      drivers/pci/controller/pcie-microchip-host.c
18072 F:      drivers/reset/reset-mpfs.c
18073 F:      drivers/rtc/rtc-mpfs.c
18074 F:      drivers/soc/microchip/mpfs-sys-controller.c
18075 F:      drivers/spi/spi-microchip-core-qspi.c
18076 F:      drivers/spi/spi-microchip-core.c
18077 F:      drivers/usb/musb/mpfs.c
18078 F:      include/soc/microchip/mpfs.h
18079
18080 RISC-V MISC SOC SUPPORT
18081 M:      Conor Dooley <[email protected]>
18082 L:      [email protected]
18083 S:      Maintained
18084 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
18085 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
18086 F:      Documentation/devicetree/bindings/riscv/
18087 F:      arch/riscv/boot/dts/
18088
18089 RNBD BLOCK DRIVERS
18090 M:      Md. Haris Iqbal <[email protected]>
18091 M:      Jack Wang <[email protected]>
18092 L:      [email protected]
18093 S:      Maintained
18094 F:      drivers/block/rnbd/
18095
18096 ROCCAT DRIVERS
18097 M:      Stefan Achatz <[email protected]>
18098 S:      Maintained
18099 W:      http://sourceforge.net/projects/roccat/
18100 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
18101 F:      drivers/hid/hid-roccat*
18102 F:      include/linux/hid-roccat*
18103
18104 ROCKCHIP CRYPTO DRIVERS
18105 M:      Corentin Labbe <[email protected]>
18106 L:      [email protected]
18107 S:      Maintained
18108 F:      Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
18109 F:      drivers/crypto/rockchip/
18110
18111 ROCKCHIP I2S TDM DRIVER
18112 M:      Nicolas Frattaroli <[email protected]>
18113 L:      [email protected]
18114 S:      Maintained
18115 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
18116 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
18117
18118 ROCKCHIP ISP V1 DRIVER
18119 M:      Dafna Hirschfeld <[email protected]>
18120 L:      [email protected]
18121 L:      [email protected]
18122 S:      Maintained
18123 F:      Documentation/admin-guide/media/rkisp1.rst
18124 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
18125 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
18126 F:      drivers/media/platform/rockchip/rkisp1
18127 F:      include/uapi/linux/rkisp1-config.h
18128
18129 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
18130 M:      Jacob Chen <[email protected]>
18131 M:      Ezequiel Garcia <[email protected]>
18132 L:      [email protected]
18133 L:      [email protected]
18134 S:      Maintained
18135 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
18136 F:      drivers/media/platform/rockchip/rga/
18137
18138 ROCKCHIP VIDEO DECODER DRIVER
18139 M:      Ezequiel Garcia <[email protected]>
18140 L:      [email protected]
18141 L:      [email protected]
18142 S:      Maintained
18143 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
18144 F:      drivers/staging/media/rkvdec/
18145
18146 ROCKER DRIVER
18147 M:      Jiri Pirko <[email protected]>
18148 L:      [email protected]
18149 S:      Supported
18150 F:      drivers/net/ethernet/rocker/
18151
18152 ROCKETPORT EXPRESS/INFINITY DRIVER
18153 M:      Kevin Cernekee <[email protected]>
18154 L:      [email protected]
18155 S:      Odd Fixes
18156 F:      drivers/tty/serial/rp2.*
18157
18158 ROHM BD99954 CHARGER IC
18159 M:      Matti Vaittinen <[email protected]>
18160 S:      Supported
18161 F:      drivers/power/supply/bd99954-charger.c
18162 F:      drivers/power/supply/bd99954-charger.h
18163
18164 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
18165 M:      Tomasz Duszynski <[email protected]>
18166 S:      Maintained
18167 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
18168 F:      drivers/iio/light/bh1750.c
18169
18170 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
18171 M:      Marek Vasut <[email protected]>
18172 L:      [email protected]
18173 L:      [email protected]
18174 S:      Supported
18175 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
18176 F:      drivers/gpio/gpio-bd9571mwv.c
18177 F:      drivers/mfd/bd9571mwv.c
18178 F:      drivers/regulator/bd9571mwv-regulator.c
18179 F:      include/linux/mfd/bd9571mwv.h
18180
18181 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
18182 M:      Matti Vaittinen <[email protected]>
18183 S:      Supported
18184 F:      drivers/clk/clk-bd718x7.c
18185 F:      drivers/gpio/gpio-bd71815.c
18186 F:      drivers/gpio/gpio-bd71828.c
18187 F:      drivers/mfd/rohm-bd71828.c
18188 F:      drivers/mfd/rohm-bd718x7.c
18189 F:      drivers/mfd/rohm-bd9576.c
18190 F:      drivers/regulator/bd71815-regulator.c
18191 F:      drivers/regulator/bd71828-regulator.c
18192 F:      drivers/regulator/bd718x7-regulator.c
18193 F:      drivers/regulator/bd9576-regulator.c
18194 F:      drivers/regulator/rohm-regulator.c
18195 F:      drivers/rtc/rtc-bd70528.c
18196 F:      drivers/watchdog/bd9576_wdt.c
18197 F:      include/linux/mfd/rohm-bd71815.h
18198 F:      include/linux/mfd/rohm-bd71828.h
18199 F:      include/linux/mfd/rohm-bd718x7.h
18200 F:      include/linux/mfd/rohm-bd957x.h
18201 F:      include/linux/mfd/rohm-generic.h
18202 F:      include/linux/mfd/rohm-shared.h
18203
18204 ROSE NETWORK LAYER
18205 M:      Ralf Baechle <[email protected]>
18206 L:      [email protected]
18207 S:      Maintained
18208 W:      http://www.linux-ax25.org/
18209 F:      include/net/rose.h
18210 F:      include/uapi/linux/rose.h
18211 F:      net/rose/
18212
18213 ROTATION DRIVER FOR ALLWINNER A83T
18214 M:      Jernej Skrabec <[email protected]>
18215 L:      [email protected]
18216 S:      Maintained
18217 T:      git git://linuxtv.org/media_tree.git
18218 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
18219 F:      drivers/media/platform/sunxi/sun8i-rotate/
18220
18221 RPMSG TTY DRIVER
18222 M:      Arnaud Pouliquen <[email protected]>
18223 L:      [email protected]
18224 S:      Maintained
18225 F:      drivers/tty/rpmsg_tty.c
18226
18227 RTL2830 MEDIA DRIVER
18228 M:      Antti Palosaari <[email protected]>
18229 L:      [email protected]
18230 S:      Maintained
18231 W:      https://linuxtv.org
18232 W:      http://palosaari.fi/linux/
18233 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18234 T:      git git://linuxtv.org/anttip/media_tree.git
18235 F:      drivers/media/dvb-frontends/rtl2830*
18236
18237 RTL2832 MEDIA DRIVER
18238 M:      Antti Palosaari <[email protected]>
18239 L:      [email protected]
18240 S:      Maintained
18241 W:      https://linuxtv.org
18242 W:      http://palosaari.fi/linux/
18243 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18244 T:      git git://linuxtv.org/anttip/media_tree.git
18245 F:      drivers/media/dvb-frontends/rtl2832*
18246
18247 RTL2832_SDR MEDIA DRIVER
18248 M:      Antti Palosaari <[email protected]>
18249 L:      [email protected]
18250 S:      Maintained
18251 W:      https://linuxtv.org
18252 W:      http://palosaari.fi/linux/
18253 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18254 T:      git git://linuxtv.org/anttip/media_tree.git
18255 F:      drivers/media/dvb-frontends/rtl2832_sdr*
18256
18257 RTL8180 WIRELESS DRIVER
18258 L:      [email protected]
18259 S:      Orphan
18260 W:      https://wireless.wiki.kernel.org/
18261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18262 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
18263
18264 RTL8187 WIRELESS DRIVER
18265 M:      Herton Ronaldo Krzesinski <[email protected]>
18266 M:      Hin-Tak Leung <[email protected]>
18267 M:      Larry Finger <[email protected]>
18268 L:      [email protected]
18269 S:      Maintained
18270 W:      https://wireless.wiki.kernel.org/
18271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18272 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
18273
18274 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
18275 M:      Jes Sorensen <[email protected]>
18276 L:      [email protected]
18277 S:      Maintained
18278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
18279 F:      drivers/net/wireless/realtek/rtl8xxxu/
18280
18281 RTRS TRANSPORT DRIVERS
18282 M:      Md. Haris Iqbal <[email protected]>
18283 M:      Jack Wang <[email protected]>
18284 L:      [email protected]
18285 S:      Maintained
18286 F:      drivers/infiniband/ulp/rtrs/
18287
18288 RUNTIME VERIFICATION (RV)
18289 M:      Daniel Bristot de Oliveira <[email protected]>
18290 M:      Steven Rostedt <[email protected]>
18291 L:      [email protected]
18292 S:      Maintained
18293 F:      Documentation/trace/rv/
18294 F:      include/linux/rv.h
18295 F:      include/rv/
18296 F:      kernel/trace/rv/
18297 F:      tools/verification/
18298
18299 RUST
18300 M:      Miguel Ojeda <[email protected]>
18301 M:      Alex Gaynor <[email protected]>
18302 M:      Wedson Almeida Filho <[email protected]>
18303 R:      Boqun Feng <[email protected]>
18304 R:      Gary Guo <[email protected]>
18305 R:      Björn Roy Baron <[email protected]>
18306 L:      [email protected]
18307 S:      Supported
18308 W:      https://github.com/Rust-for-Linux/linux
18309 B:      https://github.com/Rust-for-Linux/linux/issues
18310 C:      zulip://rust-for-linux.zulipchat.com
18311 T:      git https://github.com/Rust-for-Linux/linux.git rust-next
18312 F:      Documentation/rust/
18313 F:      rust/
18314 F:      samples/rust/
18315 F:      scripts/*rust*
18316 K:      \b(?i:rust)\b
18317
18318 RXRPC SOCKETS (AF_RXRPC)
18319 M:      David Howells <[email protected]>
18320 M:      Marc Dionne <[email protected]>
18321 L:      [email protected]
18322 S:      Supported
18323 W:      https://www.infradead.org/~dhowells/kafs/
18324 F:      Documentation/networking/rxrpc.rst
18325 F:      include/keys/rxrpc-type.h
18326 F:      include/net/af_rxrpc.h
18327 F:      include/trace/events/rxrpc.h
18328 F:      include/uapi/linux/rxrpc.h
18329 F:      net/rxrpc/
18330
18331 S3 SAVAGE FRAMEBUFFER DRIVER
18332 M:      Antonino Daplas <[email protected]>
18333 L:      [email protected]
18334 S:      Maintained
18335 F:      drivers/video/fbdev/savage/
18336
18337 S390 ARCHITECTURE
18338 M:      Heiko Carstens <[email protected]>
18339 M:      Vasily Gorbik <[email protected]>
18340 M:      Alexander Gordeev <[email protected]>
18341 R:      Christian Borntraeger <[email protected]>
18342 R:      Sven Schnelle <[email protected]>
18343 L:      [email protected]
18344 S:      Supported
18345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18346 F:      Documentation/driver-api/s390-drivers.rst
18347 F:      Documentation/s390/
18348 F:      arch/s390/
18349 F:      drivers/s390/
18350 F:      drivers/watchdog/diag288_wdt.c
18351
18352 S390 COMMON I/O LAYER
18353 M:      Vineeth Vijayan <[email protected]>
18354 M:      Peter Oberparleiter <[email protected]>
18355 L:      [email protected]
18356 S:      Supported
18357 F:      drivers/s390/cio/
18358
18359 S390 DASD DRIVER
18360 M:      Stefan Haberland <[email protected]>
18361 M:      Jan Hoeppner <[email protected]>
18362 L:      [email protected]
18363 S:      Supported
18364 F:      block/partitions/ibm.c
18365 F:      drivers/s390/block/dasd*
18366 F:      include/linux/dasd_mod.h
18367
18368 S390 IOMMU (PCI)
18369 M:      Niklas Schnelle <[email protected]>
18370 M:      Matthew Rosato <[email protected]>
18371 R:      Gerald Schaefer <[email protected]>
18372 L:      [email protected]
18373 S:      Supported
18374 F:      drivers/iommu/s390-iommu.c
18375
18376 S390 IUCV NETWORK LAYER
18377 M:      Alexandra Winter <[email protected]>
18378 M:      Wenjia Zhang <[email protected]>
18379 L:      [email protected]
18380 L:      [email protected]
18381 S:      Supported
18382 F:      drivers/s390/net/*iucv*
18383 F:      include/net/iucv/
18384 F:      net/iucv/
18385
18386 S390 NETWORK DRIVERS
18387 M:      Alexandra Winter <[email protected]>
18388 M:      Wenjia Zhang <[email protected]>
18389 L:      [email protected]
18390 L:      [email protected]
18391 S:      Supported
18392 F:      drivers/s390/net/
18393
18394 S390 MM
18395 M:      Alexander Gordeev <[email protected]>
18396 M:      Gerald Schaefer <[email protected]>
18397 L:      [email protected]
18398 S:      Supported
18399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18400 F:      arch/s390/include/asm/pgtable.h
18401 F:      arch/s390/mm
18402
18403 S390 PCI SUBSYSTEM
18404 M:      Niklas Schnelle <[email protected]>
18405 M:      Gerald Schaefer <[email protected]>
18406 L:      [email protected]
18407 S:      Supported
18408 F:      arch/s390/pci/
18409 F:      drivers/pci/hotplug/s390_pci_hpc.c
18410 F:      Documentation/s390/pci.rst
18411
18412 S390 SCM DRIVER
18413 M:      Vineeth Vijayan <[email protected]>
18414 L:      [email protected]
18415 S:      Supported
18416 F:      drivers/s390/block/scm*
18417 F:      drivers/s390/cio/scm.c
18418
18419 S390 VFIO AP DRIVER
18420 M:      Tony Krowiak <[email protected]>
18421 M:      Halil Pasic <[email protected]>
18422 M:      Jason Herne <[email protected]>
18423 L:      [email protected]
18424 S:      Supported
18425 F:      Documentation/s390/vfio-ap*
18426 F:      drivers/s390/crypto/vfio_ap*
18427
18428 S390 VFIO-CCW DRIVER
18429 M:      Eric Farman <[email protected]>
18430 M:      Matthew Rosato <[email protected]>
18431 R:      Halil Pasic <[email protected]>
18432 L:      [email protected]
18433 L:      [email protected]
18434 S:      Supported
18435 F:      Documentation/s390/vfio-ccw.rst
18436 F:      drivers/s390/cio/vfio_ccw*
18437 F:      include/uapi/linux/vfio_ccw.h
18438
18439 S390 VFIO-PCI DRIVER
18440 M:      Matthew Rosato <[email protected]>
18441 M:      Eric Farman <[email protected]>
18442 L:      [email protected]
18443 L:      [email protected]
18444 S:      Supported
18445 F:      arch/s390/kvm/pci*
18446 F:      drivers/vfio/pci/vfio_pci_zdev.c
18447 F:      include/uapi/linux/vfio_zdev.h
18448
18449 S390 ZCRYPT DRIVER
18450 M:      Harald Freudenberger <[email protected]>
18451 L:      [email protected]
18452 S:      Supported
18453 F:      drivers/s390/crypto/
18454
18455 S390 ZFCP DRIVER
18456 M:      Steffen Maier <[email protected]>
18457 M:      Benjamin Block <[email protected]>
18458 L:      [email protected]
18459 S:      Supported
18460 F:      drivers/s390/scsi/zfcp_*
18461
18462 SAA6588 RDS RECEIVER DRIVER
18463 M:      Hans Verkuil <[email protected]>
18464 L:      [email protected]
18465 S:      Odd Fixes
18466 W:      https://linuxtv.org
18467 T:      git git://linuxtv.org/media_tree.git
18468 F:      drivers/media/i2c/saa6588*
18469
18470 SAA7134 VIDEO4LINUX DRIVER
18471 M:      Mauro Carvalho Chehab <[email protected]>
18472 L:      [email protected]
18473 S:      Odd fixes
18474 W:      https://linuxtv.org
18475 T:      git git://linuxtv.org/media_tree.git
18476 F:      Documentation/driver-api/media/drivers/saa7134*
18477 F:      drivers/media/pci/saa7134/
18478
18479 SAA7146 VIDEO4LINUX-2 DRIVER
18480 M:      Hans Verkuil <[email protected]>
18481 L:      [email protected]
18482 S:      Maintained
18483 T:      git git://linuxtv.org/media_tree.git
18484 F:      drivers/media/common/saa7146/
18485 F:      drivers/media/pci/saa7146/
18486 F:      include/media/drv-intf/saa7146*
18487
18488 SAFESETID SECURITY MODULE
18489 M:      Micah Morton <[email protected]>
18490 S:      Supported
18491 F:      Documentation/admin-guide/LSM/SafeSetID.rst
18492 F:      security/safesetid/
18493
18494 SAMSUNG AUDIO (ASoC) DRIVERS
18495 M:      Krzysztof Kozlowski <[email protected]>
18496 M:      Sylwester Nawrocki <[email protected]>
18497 L:      [email protected] (moderated for non-subscribers)
18498 S:      Supported
18499 B:      mailto:[email protected]
18500 F:      Documentation/devicetree/bindings/sound/samsung*
18501 F:      sound/soc/samsung/
18502
18503 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18504 M:      Krzysztof Kozlowski <[email protected]>
18505 L:      [email protected]
18506 L:      [email protected]
18507 S:      Maintained
18508 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18509 F:      drivers/crypto/exynos-rng.c
18510
18511 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18512 M:      Łukasz Stelmach <[email protected]>
18513 L:      [email protected]
18514 S:      Maintained
18515 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18516 F:      drivers/char/hw_random/exynos-trng.c
18517
18518 SAMSUNG FRAMEBUFFER DRIVER
18519 M:      Jingoo Han <[email protected]>
18520 L:      [email protected]
18521 S:      Maintained
18522 F:      drivers/video/fbdev/s3c-fb.c
18523
18524 SAMSUNG INTERCONNECT DRIVERS
18525 M:      Sylwester Nawrocki <[email protected]>
18526 M:      Artur Świgoń <[email protected]>
18527 L:      [email protected]
18528 L:      [email protected]
18529 S:      Supported
18530 F:      drivers/interconnect/samsung/
18531
18532 SAMSUNG LAPTOP DRIVER
18533 M:      Corentin Chary <[email protected]>
18534 L:      [email protected]
18535 S:      Maintained
18536 F:      drivers/platform/x86/samsung-laptop.c
18537
18538 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18539 M:      Krzysztof Kozlowski <[email protected]>
18540 L:      [email protected]
18541 L:      [email protected]
18542 S:      Supported
18543 B:      mailto:[email protected]
18544 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18545 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18546 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18547 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18548 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18549 F:      drivers/clk/clk-s2mps11.c
18550 F:      drivers/mfd/sec*.c
18551 F:      drivers/regulator/s2m*.c
18552 F:      drivers/regulator/s5m*.c
18553 F:      drivers/rtc/rtc-s5m.c
18554 F:      include/linux/mfd/samsung/
18555
18556 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18557 M:      Sylwester Nawrocki <[email protected]>
18558 L:      [email protected]
18559 L:      [email protected]
18560 S:      Maintained
18561 F:      drivers/media/platform/samsung/s3c-camif/
18562 F:      include/media/drv-intf/s3c_camif.h
18563
18564 SAMSUNG S3FWRN5 NFC DRIVER
18565 M:      Krzysztof Kozlowski <[email protected]>
18566 S:      Maintained
18567 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18568 F:      drivers/nfc/s3fwrn5
18569
18570 SAMSUNG S5C73M3 CAMERA DRIVER
18571 M:      Sylwester Nawrocki <[email protected]>
18572 M:      Andrzej Hajda <[email protected]>
18573 L:      [email protected]
18574 S:      Supported
18575 F:      Documentation/devicetree/bindings/media/samsung,s5c73m3.yaml
18576 F:      drivers/media/i2c/s5c73m3/*
18577
18578 SAMSUNG S5K5BAF CAMERA DRIVER
18579 M:      Sylwester Nawrocki <[email protected]>
18580 M:      Andrzej Hajda <[email protected]>
18581 L:      [email protected]
18582 S:      Supported
18583 F:      drivers/media/i2c/s5k5baf.c
18584
18585 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18586 M:      Krzysztof Kozlowski <[email protected]>
18587 M:      Vladimir Zapolskiy <[email protected]>
18588 L:      [email protected]
18589 L:      [email protected]
18590 S:      Maintained
18591 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18592 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18593 F:      drivers/crypto/s5p-sss.c
18594
18595 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18596 M:      Sylwester Nawrocki <[email protected]>
18597 L:      [email protected]
18598 S:      Supported
18599 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18600 F:      Documentation/devicetree/bindings/media/samsung,exynos4210-csis.yaml
18601 F:      Documentation/devicetree/bindings/media/samsung,exynos4210-fimc.yaml
18602 F:      Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-is.yaml
18603 F:      Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-lite.yaml
18604 F:      Documentation/devicetree/bindings/media/samsung,fimc.yaml
18605 F:      drivers/media/platform/samsung/exynos4-is/
18606
18607 SAMSUNG SOC CLOCK DRIVERS
18608 M:      Krzysztof Kozlowski <[email protected]>
18609 M:      Sylwester Nawrocki <[email protected]>
18610 M:      Tomasz Figa <[email protected]>
18611 M:      Chanwoo Choi <[email protected]>
18612 R:      Alim Akhtar <[email protected]>
18613 L:      [email protected]
18614 S:      Supported
18615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
18616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18617 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18618 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18619 F:      drivers/clk/samsung/
18620 F:      include/dt-bindings/clock/exynos*.h
18621 F:      include/dt-bindings/clock/s5p*.h
18622 F:      include/dt-bindings/clock/samsung,*.h
18623 F:      include/linux/clk/samsung.h
18624
18625 SAMSUNG SPI DRIVERS
18626 M:      Krzysztof Kozlowski <[email protected]>
18627 M:      Andi Shyti <[email protected]>
18628 L:      [email protected]
18629 L:      [email protected]
18630 S:      Maintained
18631 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18632 F:      drivers/spi/spi-s3c*
18633 F:      include/linux/platform_data/spi-s3c64xx.h
18634
18635 SAMSUNG SXGBE DRIVERS
18636 M:      Byungho An <[email protected]>
18637 L:      [email protected]
18638 S:      Supported
18639 F:      drivers/net/ethernet/samsung/sxgbe/
18640
18641 SAMSUNG THERMAL DRIVER
18642 M:      Bartlomiej Zolnierkiewicz <[email protected]>
18643 M:      Krzysztof Kozlowski <[email protected]>
18644 L:      [email protected]
18645 L:      [email protected]
18646 S:      Maintained
18647 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18648 F:      drivers/thermal/samsung/
18649
18650 SAMSUNG USB2 PHY DRIVER
18651 M:      Sylwester Nawrocki <[email protected]>
18652 L:      [email protected]
18653 S:      Supported
18654 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18655 F:      Documentation/driver-api/phy/samsung-usb2.rst
18656 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18657 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18658 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18659 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18660 F:      drivers/phy/samsung/phy-samsung-usb2.c
18661 F:      drivers/phy/samsung/phy-samsung-usb2.h
18662
18663 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18664 M:      Paul Barker <[email protected]>
18665 R:      Marc Murphy <[email protected]>
18666 S:      Supported
18667 F:      arch/arm/boot/dts/am335x-sancloud*
18668
18669 SC1200 WDT DRIVER
18670 M:      Zwane Mwaikambo <[email protected]>
18671 S:      Maintained
18672 F:      drivers/watchdog/sc1200wdt.c
18673
18674 SCHEDULER
18675 M:      Ingo Molnar <[email protected]>
18676 M:      Peter Zijlstra <[email protected]>
18677 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
18678 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
18679 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
18680 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
18681 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
18682 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
18683 R:      Daniel Bristot de Oliveira <[email protected]> (SCHED_DEADLINE)
18684 R:      Valentin Schneider <[email protected]> (TOPOLOGY)
18685 L:      [email protected]
18686 S:      Maintained
18687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18688 F:      include/linux/preempt.h
18689 F:      include/linux/sched.h
18690 F:      include/linux/wait.h
18691 F:      include/uapi/linux/sched.h
18692 F:      kernel/sched/
18693
18694 SCR24X CHIP CARD INTERFACE DRIVER
18695 M:      Lubomir Rintel <[email protected]>
18696 S:      Supported
18697 F:      drivers/char/pcmcia/scr24x_cs.c
18698
18699 SCSI RDMA PROTOCOL (SRP) INITIATOR
18700 M:      Bart Van Assche <[email protected]>
18701 L:      [email protected]
18702 S:      Supported
18703 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18704 F:      drivers/infiniband/ulp/srp/
18705 F:      include/scsi/srp.h
18706
18707 SCSI RDMA PROTOCOL (SRP) TARGET
18708 M:      Bart Van Assche <[email protected]>
18709 L:      [email protected]
18710 L:      [email protected]
18711 S:      Supported
18712 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18713 F:      drivers/infiniband/ulp/srpt/
18714
18715 SCSI SG DRIVER
18716 M:      Doug Gilbert <[email protected]>
18717 L:      [email protected]
18718 S:      Maintained
18719 W:      http://sg.danny.cz/sg
18720 F:      Documentation/scsi/scsi-generic.rst
18721 F:      drivers/scsi/sg.c
18722 F:      include/scsi/sg.h
18723
18724 SCSI SUBSYSTEM
18725 M:      "James E.J. Bottomley" <[email protected]>
18726 M:      "Martin K. Petersen" <[email protected]>
18727 L:      [email protected]
18728 S:      Maintained
18729 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18732 F:      Documentation/devicetree/bindings/scsi/
18733 F:      drivers/scsi/
18734 F:      drivers/ufs/
18735 F:      include/scsi/
18736
18737 SCSI TAPE DRIVER
18738 M:      Kai Mäkisara <[email protected]>
18739 L:      [email protected]
18740 S:      Maintained
18741 F:      Documentation/scsi/st.rst
18742 F:      drivers/scsi/st.*
18743 F:      drivers/scsi/st_*.h
18744
18745 SCSI TARGET CORE USER DRIVER
18746 M:      Bodo Stroesser <[email protected]>
18747 L:      [email protected]
18748 L:      [email protected]
18749 S:      Supported
18750 F:      Documentation/target/tcmu-design.rst
18751 F:      drivers/target/target_core_user.c
18752 F:      include/uapi/linux/target_core_user.h
18753
18754 SCSI TARGET SUBSYSTEM
18755 M:      "Martin K. Petersen" <[email protected]>
18756 L:      [email protected]
18757 L:      [email protected]
18758 S:      Supported
18759 W:      http://www.linux-iscsi.org
18760 Q:      https://patchwork.kernel.org/project/target-devel/list/
18761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18762 F:      Documentation/target/
18763 F:      drivers/target/
18764 F:      include/target/
18765
18766 SCTP PROTOCOL
18767 M:      Neil Horman <[email protected]>
18768 M:      Marcelo Ricardo Leitner <[email protected]>
18769 M:      Xin Long <[email protected]>
18770 L:      [email protected]
18771 S:      Maintained
18772 W:      http://lksctp.sourceforge.net
18773 F:      Documentation/networking/sctp.rst
18774 F:      include/linux/sctp.h
18775 F:      include/net/sctp/
18776 F:      include/uapi/linux/sctp.h
18777 F:      net/sctp/
18778
18779 SCx200 CPU SUPPORT
18780 M:      Jim Cromie <[email protected]>
18781 S:      Odd Fixes
18782 F:      Documentation/i2c/busses/scx200_acb.rst
18783 F:      arch/x86/platform/scx200/
18784 F:      drivers/i2c/busses/scx200*
18785 F:      drivers/mtd/maps/scx200_docflash.c
18786 F:      drivers/watchdog/scx200_wdt.c
18787 F:      include/linux/scx200.h
18788
18789 SCx200 GPIO DRIVER
18790 M:      Jim Cromie <[email protected]>
18791 S:      Maintained
18792 F:      drivers/char/scx200_gpio.c
18793 F:      include/linux/scx200_gpio.h
18794
18795 SCx200 HRT CLOCKSOURCE DRIVER
18796 M:      Jim Cromie <[email protected]>
18797 S:      Maintained
18798 F:      drivers/clocksource/scx200_hrt.c
18799
18800 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18801 M:      Sascha Sommer <[email protected]>
18802 L:      [email protected] (subscribers-only)
18803 S:      Maintained
18804 F:      drivers/mmc/host/sdricoh_cs.c
18805
18806 SECO BOARDS CEC DRIVER
18807 M:      Ettore Chimenti <[email protected]>
18808 S:      Maintained
18809 F:      drivers/media/cec/platform/seco/seco-cec.c
18810 F:      drivers/media/cec/platform/seco/seco-cec.h
18811
18812 SECURE COMPUTING
18813 M:      Kees Cook <[email protected]>
18814 R:      Andy Lutomirski <[email protected]>
18815 R:      Will Drewry <[email protected]>
18816 S:      Supported
18817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18818 F:      Documentation/userspace-api/seccomp_filter.rst
18819 F:      include/linux/seccomp.h
18820 F:      include/uapi/linux/seccomp.h
18821 F:      kernel/seccomp.c
18822 F:      tools/testing/selftests/kselftest_harness.h
18823 F:      tools/testing/selftests/seccomp/*
18824 K:      \bsecure_computing
18825 K:      \bTIF_SECCOMP\b
18826
18827 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18828 M:      Kamal Dasu <[email protected]>
18829 M:      Al Cooper <[email protected]>
18830 R:      Broadcom internal kernel review list <[email protected]>
18831 L:      [email protected]
18832 S:      Maintained
18833 F:      drivers/mmc/host/sdhci-brcmstb*
18834
18835 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18836 M:      Adrian Hunter <[email protected]>
18837 L:      [email protected]
18838 S:      Supported
18839 F:      Documentation/devicetree/bindings/mmc/sdhci-common.yaml
18840 F:      drivers/mmc/host/sdhci*
18841
18842 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18843 M:      Eugen Hristev <[email protected]>
18844 L:      [email protected]
18845 S:      Supported
18846 F:      drivers/mmc/host/sdhci-of-at91.c
18847
18848 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18849 M:      Ben Dooks <[email protected]>
18850 M:      Jaehoon Chung <[email protected]>
18851 L:      [email protected]
18852 S:      Maintained
18853 F:      drivers/mmc/host/sdhci-s3c*
18854
18855 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18856 M:      Viresh Kumar <[email protected]>
18857 L:      [email protected]
18858 S:      Maintained
18859 F:      drivers/mmc/host/sdhci-spear.c
18860
18861 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18862 M:      Vignesh Raghavendra <[email protected]>
18863 L:      [email protected]
18864 S:      Maintained
18865 F:      drivers/mmc/host/sdhci-omap.c
18866
18867 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18868 M:      Haibo Chen <[email protected]>
18869 L:      [email protected]
18870 L:      [email protected]
18871 S:      Maintained
18872 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18873
18874 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18875 M:      Jonathan Derrick <[email protected]>
18876 L:      [email protected]
18877 S:      Supported
18878 F:      block/opal_proto.h
18879 F:      block/sed*
18880 F:      include/linux/sed*
18881 F:      include/uapi/linux/sed*
18882
18883 SECURITY CONTACT
18884 M:      Security Officers <[email protected]>
18885 S:      Supported
18886 F:      Documentation/process/security-bugs.rst
18887
18888 SECURITY SUBSYSTEM
18889 M:      Paul Moore <[email protected]>
18890 M:      James Morris <[email protected]>
18891 M:      "Serge E. Hallyn" <[email protected]>
18892 L:      [email protected] (suggested Cc:)
18893 S:      Supported
18894 W:      http://kernsec.org/
18895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18896 F:      security/
18897 X:      security/selinux/
18898
18899 SELINUX SECURITY MODULE
18900 M:      Paul Moore <[email protected]>
18901 M:      Stephen Smalley <[email protected]>
18902 M:      Eric Paris <[email protected]>
18903 L:      [email protected]
18904 S:      Supported
18905 W:      https://selinuxproject.org
18906 W:      https://github.com/SELinuxProject
18907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18908 F:      Documentation/ABI/removed/sysfs-selinux-checkreqprot
18909 F:      Documentation/ABI/removed/sysfs-selinux-disable
18910 F:      Documentation/admin-guide/LSM/SELinux.rst
18911 F:      include/trace/events/avc.h
18912 F:      include/uapi/linux/selinux_netlink.h
18913 F:      scripts/selinux/
18914 F:      security/selinux/
18915
18916 SENSABLE PHANTOM
18917 M:      Jiri Slaby <[email protected]>
18918 S:      Maintained
18919 F:      drivers/misc/phantom.c
18920 F:      include/uapi/linux/phantom.h
18921
18922 SENSEAIR SUNRISE 006-0-0007
18923 M:      Jacopo Mondi <[email protected]>
18924 S:      Maintained
18925 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18926 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18927 F:      drivers/iio/chemical/sunrise_co2.c
18928
18929 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18930 M:      Tomasz Duszynski <[email protected]>
18931 S:      Maintained
18932 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18933 F:      drivers/iio/chemical/scd30.h
18934 F:      drivers/iio/chemical/scd30_core.c
18935 F:      drivers/iio/chemical/scd30_i2c.c
18936 F:      drivers/iio/chemical/scd30_serial.c
18937
18938 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18939 M:      Roan van Dijk <[email protected]>
18940 S:      Maintained
18941 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18942 F:      drivers/iio/chemical/scd4x.c
18943
18944 SENSIRION SGP40 GAS SENSOR DRIVER
18945 M:      Andreas Klinger <[email protected]>
18946 S:      Maintained
18947 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18948 F:      drivers/iio/chemical/sgp40.c
18949
18950 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18951 M:      Tomasz Duszynski <[email protected]>
18952 S:      Maintained
18953 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18954 F:      drivers/iio/chemical/sps30.c
18955 F:      drivers/iio/chemical/sps30_i2c.c
18956 F:      drivers/iio/chemical/sps30_serial.c
18957
18958 SERIAL DEVICE BUS
18959 M:      Rob Herring <[email protected]>
18960 L:      [email protected]
18961 S:      Maintained
18962 F:      Documentation/devicetree/bindings/serial/serial.yaml
18963 F:      drivers/tty/serdev/
18964 F:      include/linux/serdev.h
18965
18966 SERIAL DRIVERS
18967 M:      Greg Kroah-Hartman <[email protected]>
18968 L:      [email protected]
18969 S:      Maintained
18970 F:      Documentation/devicetree/bindings/serial/
18971 F:      drivers/tty/serial/
18972
18973 SERIAL IR RECEIVER
18974 M:      Sean Young <[email protected]>
18975 L:      [email protected]
18976 S:      Maintained
18977 F:      drivers/media/rc/serial_ir.c
18978
18979 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18980 M:      Srinivas Kandagatla <[email protected]>
18981 L:      [email protected] (moderated for non-subscribers)
18982 S:      Maintained
18983 F:      Documentation/devicetree/bindings/slimbus/
18984 F:      drivers/slimbus/
18985 F:      include/linux/slimbus.h
18986
18987 SFC NETWORK DRIVER
18988 M:      Edward Cree <[email protected]>
18989 M:      Martin Habets <[email protected]>
18990 L:      [email protected]
18991 S:      Supported
18992 F:      Documentation/networking/devlink/sfc.rst
18993 F:      drivers/net/ethernet/sfc/
18994
18995 SFCTEMP HWMON DRIVER
18996 M:      Emil Renner Berthing <[email protected]>
18997 L:      [email protected]
18998 S:      Maintained
18999 F:      Documentation/devicetree/bindings/hwmon/starfive,jh71x0-temp.yaml
19000 F:      Documentation/hwmon/sfctemp.rst
19001 F:      drivers/hwmon/sfctemp.c
19002
19003 SFF/SFP/SFP+ MODULE SUPPORT
19004 M:      Russell King <[email protected]>
19005 L:      [email protected]
19006 S:      Maintained
19007 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
19008 F:      drivers/net/phy/phylink.c
19009 F:      drivers/net/phy/sfp*
19010 F:      include/linux/mdio/mdio-i2c.h
19011 F:      include/linux/phylink.h
19012 F:      include/linux/sfp.h
19013 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)
19014
19015 SGI GRU DRIVER
19016 M:      Dimitri Sivanich <[email protected]>
19017 S:      Maintained
19018 F:      drivers/misc/sgi-gru/
19019
19020 SGI XP/XPC/XPNET DRIVER
19021 M:      Robin Holt <[email protected]>
19022 M:      Steve Wahl <[email protected]>
19023 R:      Mike Travis <[email protected]>
19024 S:      Maintained
19025 F:      drivers/misc/sgi-xp/
19026
19027 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
19028 M:      Karsten Graul <[email protected]>
19029 M:      Wenjia Zhang <[email protected]>
19030 M:      Jan Karcher <[email protected]>
19031 L:      [email protected]
19032 S:      Supported
19033 F:      net/smc/
19034
19035 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
19036 M:      Linus Walleij <[email protected]>
19037 L:      [email protected]
19038 S:      Maintained
19039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
19040 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
19041 F:      drivers/iio/light/gp2ap002.c
19042
19043 SHARP RJ54N1CB0C SENSOR DRIVER
19044 M:      Jacopo Mondi <[email protected]>
19045 L:      [email protected]
19046 S:      Odd fixes
19047 T:      git git://linuxtv.org/media_tree.git
19048 F:      drivers/media/i2c/rj54n1cb0c.c
19049 F:      include/media/i2c/rj54n1cb0c.h
19050
19051 SH_VOU V4L2 OUTPUT DRIVER
19052 L:      [email protected]
19053 S:      Orphan
19054 F:      drivers/media/platform/renesas/sh_vou.c
19055 F:      include/media/drv-intf/sh_vou.h
19056
19057 SI2157 MEDIA DRIVER
19058 M:      Antti Palosaari <[email protected]>
19059 L:      [email protected]
19060 S:      Maintained
19061 W:      https://linuxtv.org
19062 W:      http://palosaari.fi/linux/
19063 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19064 T:      git git://linuxtv.org/anttip/media_tree.git
19065 F:      drivers/media/tuners/si2157*
19066
19067 SI2165 MEDIA DRIVER
19068 M:      Matthias Schwarzott <[email protected]>
19069 L:      [email protected]
19070 S:      Maintained
19071 W:      https://linuxtv.org
19072 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19073 F:      drivers/media/dvb-frontends/si2165*
19074
19075 SI2168 MEDIA DRIVER
19076 M:      Antti Palosaari <[email protected]>
19077 L:      [email protected]
19078 S:      Maintained
19079 W:      https://linuxtv.org
19080 W:      http://palosaari.fi/linux/
19081 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19082 T:      git git://linuxtv.org/anttip/media_tree.git
19083 F:      drivers/media/dvb-frontends/si2168*
19084
19085 SI470X FM RADIO RECEIVER I2C DRIVER
19086 M:      Hans Verkuil <[email protected]>
19087 L:      [email protected]
19088 S:      Odd Fixes
19089 W:      https://linuxtv.org
19090 T:      git git://linuxtv.org/media_tree.git
19091 F:      Documentation/devicetree/bindings/media/silabs,si470x.yaml
19092 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
19093
19094 SI470X FM RADIO RECEIVER USB DRIVER
19095 M:      Hans Verkuil <[email protected]>
19096 L:      [email protected]
19097 S:      Maintained
19098 W:      https://linuxtv.org
19099 T:      git git://linuxtv.org/media_tree.git
19100 F:      drivers/media/radio/si470x/radio-si470x-common.c
19101 F:      drivers/media/radio/si470x/radio-si470x-usb.c
19102 F:      drivers/media/radio/si470x/radio-si470x.h
19103
19104 SI4713 FM RADIO TRANSMITTER I2C DRIVER
19105 M:      Eduardo Valentin <[email protected]>
19106 L:      [email protected]
19107 S:      Odd Fixes
19108 W:      https://linuxtv.org
19109 T:      git git://linuxtv.org/media_tree.git
19110 F:      drivers/media/radio/si4713/si4713.?
19111
19112 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
19113 M:      Eduardo Valentin <[email protected]>
19114 L:      [email protected]
19115 S:      Odd Fixes
19116 W:      https://linuxtv.org
19117 T:      git git://linuxtv.org/media_tree.git
19118 F:      drivers/media/radio/si4713/radio-platform-si4713.c
19119
19120 SI4713 FM RADIO TRANSMITTER USB DRIVER
19121 M:      Hans Verkuil <[email protected]>
19122 L:      [email protected]
19123 S:      Maintained
19124 W:      https://linuxtv.org
19125 T:      git git://linuxtv.org/media_tree.git
19126 F:      drivers/media/radio/si4713/radio-usb-si4713.c
19127
19128 SIANO DVB DRIVER
19129 M:      Mauro Carvalho Chehab <[email protected]>
19130 L:      [email protected]
19131 S:      Odd fixes
19132 W:      https://linuxtv.org
19133 T:      git git://linuxtv.org/media_tree.git
19134 F:      drivers/media/common/siano/
19135 F:      drivers/media/mmc/siano/
19136 F:      drivers/media/usb/siano/
19137 F:      drivers/media/usb/siano/
19138
19139 SIFIVE DRIVERS
19140 M:      Palmer Dabbelt <[email protected]>
19141 M:      Paul Walmsley <[email protected]>
19142 L:      [email protected]
19143 S:      Supported
19144 N:      sifive
19145 K:      [^@]sifive
19146
19147 SIFIVE FU540 SYSTEM-ON-CHIP
19148 M:      Paul Walmsley <[email protected]>
19149 M:      Palmer Dabbelt <[email protected]>
19150 L:      [email protected]
19151 S:      Supported
19152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
19153 N:      fu540
19154 K:      fu540
19155
19156 SIFIVE PDMA DRIVER
19157 M:      Green Wan <[email protected]>
19158 S:      Maintained
19159 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
19160 F:      drivers/dma/sf-pdma/
19161
19162 SIFIVE SOC DRIVERS
19163 M:      Conor Dooley <[email protected]>
19164 L:      [email protected]
19165 S:      Maintained
19166 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
19167 F:      Documentation/devicetree/bindings/cache/sifive,ccache0.yaml
19168 F:      drivers/soc/sifive/
19169
19170 SILEAD TOUCHSCREEN DRIVER
19171 M:      Hans de Goede <[email protected]>
19172 L:      [email protected]
19173 L:      [email protected]
19174 S:      Maintained
19175 F:      drivers/input/touchscreen/silead.c
19176 F:      drivers/platform/x86/touchscreen_dmi.c
19177
19178 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
19179 M:      Jérôme Pouiller <[email protected]>
19180 S:      Supported
19181 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
19182 F:      drivers/net/wireless/silabs/wfx/
19183
19184 SILICON MOTION SM712 FRAME BUFFER DRIVER
19185 M:      Sudip Mukherjee <[email protected]>
19186 M:      Teddy Wang <[email protected]>
19187 M:      Sudip Mukherjee <[email protected]>
19188 L:      [email protected]
19189 S:      Maintained
19190 F:      Documentation/fb/sm712fb.rst
19191 F:      drivers/video/fbdev/sm712*
19192
19193 SILVACO I3C DUAL-ROLE MASTER
19194 M:      Miquel Raynal <[email protected]>
19195 M:      Conor Culhane <[email protected]>
19196 L:      [email protected] (moderated for non-subscribers)
19197 S:      Maintained
19198 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
19199 F:      drivers/i3c/master/svc-i3c-master.c
19200
19201 SIMPLEFB FB DRIVER
19202 M:      Hans de Goede <[email protected]>
19203 L:      [email protected]
19204 S:      Maintained
19205 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
19206 F:      drivers/video/fbdev/simplefb.c
19207 F:      include/linux/platform_data/simplefb.h
19208
19209 SIMTEC EB110ATX (Chalice CATS)
19210 M:      Simtec Linux Team <[email protected]>
19211 S:      Supported
19212 W:      http://www.simtec.co.uk/products/EB110ATX/
19213
19214 SIOX
19215 M:      Thorsten Scherer <[email protected]>
19216 M:      Uwe Kleine-König <[email protected]>
19217 R:      Pengutronix Kernel Team <[email protected]>
19218 S:      Supported
19219 F:      drivers/gpio/gpio-siox.c
19220 F:      drivers/siox/*
19221 F:      include/trace/events/siox.h
19222
19223 SIPHASH PRF ROUTINES
19224 M:      Jason A. Donenfeld <[email protected]>
19225 S:      Maintained
19226 F:      include/linux/siphash.h
19227 F:      lib/siphash.c
19228 F:      lib/siphash_kunit.c
19229
19230 SIS 190 ETHERNET DRIVER
19231 M:      Francois Romieu <[email protected]>
19232 L:      [email protected]
19233 S:      Maintained
19234 F:      drivers/net/ethernet/sis/sis190.c
19235
19236 SIS 900/7016 FAST ETHERNET DRIVER
19237 M:      Daniele Venzano <[email protected]>
19238 L:      [email protected]
19239 S:      Maintained
19240 W:      http://www.brownhat.org/sis900.html
19241 F:      drivers/net/ethernet/sis/sis900.*
19242
19243 SIS FRAMEBUFFER DRIVER
19244 S:      Orphan
19245 F:      Documentation/fb/sisfb.rst
19246 F:      drivers/video/fbdev/sis/
19247 F:      include/video/sisfb.h
19248
19249 SIS I2C TOUCHSCREEN DRIVER
19250 M:      Mika Penttilä <[email protected]>
19251 L:      [email protected]
19252 S:      Maintained
19253 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
19254 F:      drivers/input/touchscreen/sis_i2c.c
19255
19256 SIS USB2VGA DRIVER
19257 M:      Thomas Winischhofer <[email protected]>
19258 S:      Maintained
19259 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
19260 F:      drivers/usb/misc/sisusbvga/
19261
19262 SL28 CPLD MFD DRIVER
19263 M:      Michael Walle <[email protected]>
19264 S:      Maintained
19265 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
19266 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
19267 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
19268 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
19269 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
19270 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
19271 F:      drivers/gpio/gpio-sl28cpld.c
19272 F:      drivers/hwmon/sl28cpld-hwmon.c
19273 F:      drivers/irqchip/irq-sl28cpld.c
19274 F:      drivers/pwm/pwm-sl28cpld.c
19275 F:      drivers/watchdog/sl28cpld_wdt.c
19276
19277 SLAB ALLOCATOR
19278 M:      Christoph Lameter <[email protected]>
19279 M:      Pekka Enberg <[email protected]>
19280 M:      David Rientjes <[email protected]>
19281 M:      Joonsoo Kim <[email protected]>
19282 M:      Andrew Morton <[email protected]>
19283 M:      Vlastimil Babka <[email protected]>
19284 R:      Roman Gushchin <[email protected]>
19285 R:      Hyeonggon Yoo <[email protected]>
19286 L:      [email protected]
19287 S:      Maintained
19288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
19289 F:      include/linux/sl?b*.h
19290 F:      mm/sl?b*
19291
19292 SLCAN CAN NETWORK DRIVER
19293 M:      Dario Binacchi <[email protected]>
19294 L:      [email protected]
19295 S:      Maintained
19296 F:      drivers/net/can/slcan/
19297
19298 SLEEPABLE READ-COPY UPDATE (SRCU)
19299 M:      Lai Jiangshan <[email protected]>
19300 M:      "Paul E. McKenney" <[email protected]>
19301 M:      Josh Triplett <[email protected]>
19302 R:      Steven Rostedt <[email protected]>
19303 R:      Mathieu Desnoyers <[email protected]>
19304 L:      [email protected]
19305 S:      Supported
19306 W:      http://www.rdrop.com/users/paulmck/RCU/
19307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19308 F:      include/linux/srcu*.h
19309 F:      kernel/rcu/srcu*.c
19310
19311 SMACK SECURITY MODULE
19312 M:      Casey Schaufler <[email protected]>
19313 L:      [email protected]
19314 S:      Maintained
19315 W:      http://schaufler-ca.com
19316 T:      git git://github.com/cschaufler/smack-next
19317 F:      Documentation/admin-guide/LSM/Smack.rst
19318 F:      security/smack/
19319
19320 SMC91x ETHERNET DRIVER
19321 M:      Nicolas Pitre <[email protected]>
19322 S:      Odd Fixes
19323 F:      drivers/net/ethernet/smsc/smc91x.*
19324
19325 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
19326 M:      Mark Rutland <[email protected]>
19327 M:      Lorenzo Pieralisi <[email protected]>
19328 M:      Sudeep Holla <[email protected]>
19329 L:      [email protected] (moderated for non-subscribers)
19330 S:      Maintained
19331 F:      drivers/firmware/smccc/
19332 F:      include/linux/arm-smccc.h
19333
19334 SMM665 HARDWARE MONITOR DRIVER
19335 M:      Guenter Roeck <[email protected]>
19336 L:      [email protected]
19337 S:      Maintained
19338 F:      Documentation/hwmon/smm665.rst
19339 F:      drivers/hwmon/smm665.c
19340
19341 SMSC EMC2103 HARDWARE MONITOR DRIVER
19342 M:      Steve Glendinning <[email protected]>
19343 L:      [email protected]
19344 S:      Maintained
19345 F:      Documentation/hwmon/emc2103.rst
19346 F:      drivers/hwmon/emc2103.c
19347
19348 SMSC SCH5627 HARDWARE MONITOR DRIVER
19349 M:      Hans de Goede <[email protected]>
19350 L:      [email protected]
19351 S:      Supported
19352 F:      Documentation/hwmon/sch5627.rst
19353 F:      drivers/hwmon/sch5627.c
19354
19355 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
19356 M:      Steve Glendinning <[email protected]>
19357 L:      [email protected]
19358 S:      Maintained
19359 F:      drivers/video/fbdev/smscufx.c
19360
19361 SMSC47B397 HARDWARE MONITOR DRIVER
19362 M:      Jean Delvare <[email protected]>
19363 L:      [email protected]
19364 S:      Maintained
19365 F:      Documentation/hwmon/smsc47b397.rst
19366 F:      drivers/hwmon/smsc47b397.c
19367
19368 SMSC911x ETHERNET DRIVER
19369 M:      Steve Glendinning <[email protected]>
19370 L:      [email protected]
19371 S:      Maintained
19372 F:      drivers/net/ethernet/smsc/smsc911x.*
19373 F:      include/linux/smsc911x.h
19374
19375 SMSC9420 PCI ETHERNET DRIVER
19376 M:      Steve Glendinning <[email protected]>
19377 L:      [email protected]
19378 S:      Maintained
19379 F:      drivers/net/ethernet/smsc/smsc9420.*
19380
19381 SOCIONEXT (SNI) AVE NETWORK DRIVER
19382 M:      Kunihiko Hayashi <[email protected]>
19383 L:      [email protected]
19384 S:      Maintained
19385 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
19386 F:      drivers/net/ethernet/socionext/sni_ave.c
19387
19388 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
19389 M:      Jassi Brar <[email protected]>
19390 M:      Ilias Apalodimas <[email protected]>
19391 L:      [email protected]
19392 S:      Maintained
19393 F:      Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
19394 F:      drivers/net/ethernet/socionext/netsec.c
19395
19396 SOCIONEXT (SNI) Synquacer SPI DRIVER
19397 M:      Masahisa Kojima <[email protected]>
19398 M:      Jassi Brar <[email protected]>
19399 L:      [email protected]
19400 S:      Maintained
19401 F:      Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
19402 F:      drivers/spi/spi-synquacer.c
19403
19404 SOCIONEXT SYNQUACER I2C DRIVER
19405 M:      Ard Biesheuvel <[email protected]>
19406 L:      [email protected]
19407 S:      Maintained
19408 F:      Documentation/devicetree/bindings/i2c/socionext,synquacer-i2c.yaml
19409 F:      drivers/i2c/busses/i2c-synquacer.c
19410
19411 SOCIONEXT UNIPHIER SOUND DRIVER
19412 L:      [email protected] (moderated for non-subscribers)
19413 S:      Orphan
19414 F:      sound/soc/uniphier/
19415
19416 SOCKET TIMESTAMPING
19417 M:      Willem de Bruijn <[email protected]>
19418 S:      Maintained
19419 F:      Documentation/networking/timestamping.rst
19420 F:      include/uapi/linux/net_tstamp.h
19421 F:      tools/testing/selftests/net/so_txtime.c
19422
19423 SOEKRIS NET48XX LED SUPPORT
19424 M:      Chris Boot <[email protected]>
19425 S:      Maintained
19426 F:      drivers/leds/leds-net48xx.c
19427
19428 SOFT-IWARP DRIVER (siw)
19429 M:      Bernard Metzler <[email protected]>
19430 L:      [email protected]
19431 S:      Supported
19432 F:      drivers/infiniband/sw/siw/
19433 F:      include/uapi/rdma/siw-abi.h
19434
19435 SOFT-ROCE DRIVER (rxe)
19436 M:      Zhu Yanjun <[email protected]>
19437 L:      [email protected]
19438 S:      Supported
19439 F:      drivers/infiniband/sw/rxe/
19440 F:      include/uapi/rdma/rdma_user_rxe.h
19441
19442 SOFTLOGIC 6x10 MPEG CODEC
19443 M:      Bluecherry Maintainers <[email protected]>
19444 M:      Anton Sviridenko <[email protected]>
19445 M:      Andrey Utkin <[email protected]>
19446 M:      Ismael Luceno <[email protected]>
19447 L:      [email protected]
19448 S:      Supported
19449 F:      drivers/media/pci/solo6x10/
19450
19451 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
19452 M:      James Morse <[email protected]>
19453 L:      [email protected] (moderated for non-subscribers)
19454 S:      Maintained
19455 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
19456 F:      drivers/firmware/arm_sdei.c
19457 F:      include/linux/arm_sdei.h
19458 F:      include/uapi/linux/arm_sdei.h
19459
19460 SOFTWARE NODES AND DEVICE PROPERTIES
19461 R:      Andy Shevchenko <[email protected]>
19462 R:      Daniel Scally <[email protected]>
19463 R:      Heikki Krogerus <[email protected]>
19464 R:      Sakari Ailus <[email protected]>
19465 L:      [email protected]
19466 S:      Maintained
19467 F:      drivers/base/property.c
19468 F:      drivers/base/swnode.c
19469 F:      include/linux/fwnode.h
19470 F:      include/linux/property.h
19471
19472 SOFTWARE RAID (Multiple Disks) SUPPORT
19473 M:      Song Liu <[email protected]>
19474 L:      [email protected]
19475 S:      Supported
19476 Q:      https://patchwork.kernel.org/project/linux-raid/list/
19477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
19478 F:      drivers/md/Kconfig
19479 F:      drivers/md/Makefile
19480 F:      drivers/md/md*
19481 F:      drivers/md/raid*
19482 F:      include/linux/raid/
19483 F:      include/uapi/linux/raid/
19484
19485 SOLIDRUN CLEARFOG SUPPORT
19486 M:      Russell King <[email protected]>
19487 S:      Maintained
19488 F:      arch/arm/boot/dts/armada-388-clearfog*
19489 F:      arch/arm/boot/dts/armada-38x-solidrun-*
19490
19491 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
19492 M:      Russell King <[email protected]>
19493 S:      Maintained
19494 F:      arch/arm/boot/dts/imx6*-cubox-i*
19495 F:      arch/arm/boot/dts/imx6*-hummingboard*
19496 F:      arch/arm/boot/dts/imx6*-sr-*
19497
19498 SONIC NETWORK DRIVER
19499 M:      Thomas Bogendoerfer <[email protected]>
19500 L:      [email protected]
19501 S:      Maintained
19502 F:      drivers/net/ethernet/natsemi/sonic.*
19503
19504 SONICS SILICON BACKPLANE DRIVER (SSB)
19505 M:      Michael Buesch <[email protected]>
19506 L:      [email protected]
19507 S:      Maintained
19508 F:      drivers/ssb/
19509 F:      include/linux/ssb/
19510
19511 SONY IMX208 SENSOR DRIVER
19512 M:      Sakari Ailus <[email protected]>
19513 L:      [email protected]
19514 S:      Maintained
19515 T:      git git://linuxtv.org/media_tree.git
19516 F:      drivers/media/i2c/imx208.c
19517
19518 SONY IMX214 SENSOR DRIVER
19519 M:      Ricardo Ribalda <[email protected]>
19520 L:      [email protected]
19521 S:      Maintained
19522 T:      git git://linuxtv.org/media_tree.git
19523 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19524 F:      drivers/media/i2c/imx214.c
19525
19526 SONY IMX219 SENSOR DRIVER
19527 M:      Dave Stevenson <[email protected]>
19528 L:      [email protected]
19529 S:      Maintained
19530 T:      git git://linuxtv.org/media_tree.git
19531 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
19532 F:      drivers/media/i2c/imx219.c
19533
19534 SONY IMX258 SENSOR DRIVER
19535 M:      Sakari Ailus <[email protected]>
19536 L:      [email protected]
19537 S:      Maintained
19538 T:      git git://linuxtv.org/media_tree.git
19539 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
19540 F:      drivers/media/i2c/imx258.c
19541
19542 SONY IMX274 SENSOR DRIVER
19543 M:      Leon Luo <[email protected]>
19544 L:      [email protected]
19545 S:      Maintained
19546 T:      git git://linuxtv.org/media_tree.git
19547 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19548 F:      drivers/media/i2c/imx274.c
19549
19550 SONY IMX290 SENSOR DRIVER
19551 M:      Manivannan Sadhasivam <[email protected]>
19552 L:      [email protected]
19553 S:      Maintained
19554 T:      git git://linuxtv.org/media_tree.git
19555 F:      Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
19556 F:      drivers/media/i2c/imx290.c
19557
19558 SONY IMX296 SENSOR DRIVER
19559 M:      Laurent Pinchart <[email protected]>
19560 M:      Manivannan Sadhasivam <[email protected]>
19561 L:      [email protected]
19562 S:      Maintained
19563 T:      git git://linuxtv.org/media_tree.git
19564 F:      Documentation/devicetree/bindings/media/i2c/sony,imx296.yaml
19565 F:      drivers/media/i2c/imx296.c
19566
19567 SONY IMX319 SENSOR DRIVER
19568 M:      Bingbu Cao <[email protected]>
19569 L:      [email protected]
19570 S:      Maintained
19571 T:      git git://linuxtv.org/media_tree.git
19572 F:      drivers/media/i2c/imx319.c
19573
19574 SONY IMX334 SENSOR DRIVER
19575 M:      Paul J. Murphy <[email protected]>
19576 M:      Daniele Alessandrelli <[email protected]>
19577 L:      [email protected]
19578 S:      Maintained
19579 T:      git git://linuxtv.org/media_tree.git
19580 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19581 F:      drivers/media/i2c/imx334.c
19582
19583 SONY IMX335 SENSOR DRIVER
19584 M:      Paul J. Murphy <[email protected]>
19585 M:      Daniele Alessandrelli <[email protected]>
19586 L:      [email protected]
19587 S:      Maintained
19588 T:      git git://linuxtv.org/media_tree.git
19589 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19590 F:      drivers/media/i2c/imx335.c
19591
19592 SONY IMX355 SENSOR DRIVER
19593 M:      Tianshu Qiu <[email protected]>
19594 L:      [email protected]
19595 S:      Maintained
19596 T:      git git://linuxtv.org/media_tree.git
19597 F:      drivers/media/i2c/imx355.c
19598
19599 SONY IMX412 SENSOR DRIVER
19600 M:      Paul J. Murphy <[email protected]>
19601 M:      Daniele Alessandrelli <[email protected]>
19602 L:      [email protected]
19603 S:      Maintained
19604 T:      git git://linuxtv.org/media_tree.git
19605 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19606 F:      drivers/media/i2c/imx412.c
19607
19608 SONY IMX415 SENSOR DRIVER
19609 M:      Michael Riesch <[email protected]>
19610 L:      [email protected]
19611 S:      Maintained
19612 T:      git git://linuxtv.org/media_tree.git
19613 F:      Documentation/devicetree/bindings/media/i2c/sony,imx415.yaml
19614 F:      drivers/media/i2c/imx415.c
19615
19616 SONY MEMORYSTICK SUBSYSTEM
19617 M:      Maxim Levitsky <[email protected]>
19618 M:      Alex Dubov <[email protected]>
19619 M:      Ulf Hansson <[email protected]>
19620 L:      [email protected]
19621 S:      Maintained
19622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19623 F:      drivers/memstick/
19624 F:      include/linux/memstick.h
19625
19626 SONY VAIO CONTROL DEVICE DRIVER
19627 M:      Mattia Dongili <[email protected]>
19628 L:      [email protected]
19629 S:      Maintained
19630 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19631 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19632 F:      drivers/char/sonypi.c
19633 F:      drivers/platform/x86/sony-laptop.c
19634 F:      include/linux/sony-laptop.h
19635
19636 SOUND
19637 M:      Jaroslav Kysela <[email protected]>
19638 M:      Takashi Iwai <[email protected]>
19639 L:      [email protected] (moderated for non-subscribers)
19640 S:      Maintained
19641 W:      http://www.alsa-project.org/
19642 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19644 F:      Documentation/sound/
19645 F:      include/sound/
19646 F:      include/uapi/sound/
19647 F:      sound/
19648 F:      tools/testing/selftests/alsa
19649
19650 SOUND - COMPRESSED AUDIO
19651 M:      Vinod Koul <[email protected]>
19652 L:      [email protected] (moderated for non-subscribers)
19653 S:      Supported
19654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19655 F:      Documentation/sound/designs/compress-offload.rst
19656 F:      include/sound/compress_driver.h
19657 F:      include/uapi/sound/compress_*
19658 F:      sound/core/compress_offload.c
19659 F:      sound/soc/soc-compress.c
19660
19661 SOUND - DMAENGINE HELPERS
19662 M:      Lars-Peter Clausen <[email protected]>
19663 S:      Supported
19664 F:      include/sound/dmaengine_pcm.h
19665 F:      sound/core/pcm_dmaengine.c
19666 F:      sound/soc/soc-generic-dmaengine-pcm.c
19667
19668 SOUND - ALSA SELFTESTS
19669 M:      Mark Brown <[email protected]>
19670 L:      [email protected] (moderated for non-subscribers)
19671 L:      [email protected]
19672 S:      Supported
19673 F:      tools/testing/selftests/alsa
19674
19675 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19676 M:      Liam Girdwood <[email protected]>
19677 M:      Mark Brown <[email protected]>
19678 L:      [email protected] (moderated for non-subscribers)
19679 S:      Supported
19680 W:      http://alsa-project.org/main/index.php/ASoC
19681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19682 F:      Documentation/devicetree/bindings/sound/
19683 F:      Documentation/sound/soc/
19684 F:      include/dt-bindings/sound/
19685 F:      include/sound/soc*
19686 F:      sound/soc/
19687
19688 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19689 M:      Pierre-Louis Bossart <[email protected]>
19690 M:      Liam Girdwood <[email protected]>
19691 M:      Peter Ujfalusi <[email protected]>
19692 M:      Bard Liao <[email protected]>
19693 M:      Ranjani Sridharan <[email protected]>
19694 R:      Kai Vehmanen <[email protected]>
19695 M:      Daniel Baluta <[email protected]>
19696 L:      [email protected] (moderated for non-subscribers)
19697 S:      Supported
19698 W:      https://github.com/thesofproject/linux/
19699 F:      sound/soc/sof/
19700
19701 SOUNDWIRE SUBSYSTEM
19702 M:      Vinod Koul <[email protected]>
19703 M:      Bard Liao <[email protected]>
19704 R:      Pierre-Louis Bossart <[email protected]>
19705 R:      Sanyog Kale <[email protected]>
19706 L:      [email protected] (moderated for non-subscribers)
19707 S:      Supported
19708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19709 F:      Documentation/driver-api/soundwire/
19710 F:      drivers/soundwire/
19711 F:      include/linux/soundwire/
19712
19713 SP2 MEDIA DRIVER
19714 M:      Olli Salonen <[email protected]>
19715 L:      [email protected]
19716 S:      Maintained
19717 W:      https://linuxtv.org
19718 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19719 F:      drivers/media/dvb-frontends/sp2*
19720
19721 SPANISH DOCUMENTATION
19722 M:      Carlos Bilbao <[email protected]>
19723 S:      Maintained
19724 F:      Documentation/translations/sp_SP/
19725
19726 SPARC + UltraSPARC (sparc/sparc64)
19727 M:      "David S. Miller" <[email protected]>
19728 L:      [email protected]
19729 S:      Maintained
19730 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19733 F:      arch/sparc/
19734 F:      drivers/sbus/
19735
19736 SPARC SERIAL DRIVERS
19737 M:      "David S. Miller" <[email protected]>
19738 L:      [email protected]
19739 S:      Maintained
19740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19742 F:      drivers/tty/serial/suncore.c
19743 F:      drivers/tty/serial/sunhv.c
19744 F:      drivers/tty/serial/sunsab.c
19745 F:      drivers/tty/serial/sunsab.h
19746 F:      drivers/tty/serial/sunsu.c
19747 F:      drivers/tty/serial/sunzilog.c
19748 F:      drivers/tty/serial/sunzilog.h
19749 F:      drivers/tty/vcc.c
19750 F:      include/linux/sunserialcore.h
19751
19752 SPARSE CHECKER
19753 M:      "Luc Van Oostenryck" <[email protected]>
19754 L:      [email protected]
19755 S:      Maintained
19756 W:      https://sparse.docs.kernel.org/
19757 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19758 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19759 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19760 F:      include/linux/compiler.h
19761
19762 SPEAKUP CONSOLE SPEECH DRIVER
19763 M:      William Hubbs <[email protected]>
19764 M:      Chris Brannon <[email protected]>
19765 M:      Kirk Reiser <[email protected]>
19766 M:      Samuel Thibault <[email protected]>
19767 L:      [email protected]
19768 S:      Odd Fixes
19769 W:      http://www.linux-speakup.org/
19770 W:      https://github.com/linux-speakup/speakup
19771 B:      https://github.com/linux-speakup/speakup/issues
19772 F:      drivers/accessibility/speakup/
19773
19774 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19775 M:      Viresh Kumar <[email protected]>
19776 M:      Shiraz Hashim <[email protected]>
19777 M:      [email protected]
19778 L:      [email protected] (moderated for non-subscribers)
19779 S:      Maintained
19780 W:      http://www.st.com/spear
19781 F:      arch/arm/boot/dts/spear*
19782 F:      arch/arm/mach-spear/
19783 F:      drivers/clk/spear/
19784 F:      drivers/pinctrl/spear/
19785
19786 SPI NOR SUBSYSTEM
19787 M:      Tudor Ambarus <[email protected]>
19788 M:      Pratyush Yadav <[email protected]>
19789 R:      Michael Walle <[email protected]>
19790 L:      [email protected]
19791 S:      Maintained
19792 W:      http://www.linux-mtd.infradead.org/
19793 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19794 C:      irc://irc.oftc.net/mtd
19795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19796 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19797 F:      drivers/mtd/spi-nor/
19798 F:      include/linux/mtd/spi-nor.h
19799
19800 SPI SUBSYSTEM
19801 M:      Mark Brown <[email protected]>
19802 L:      [email protected]
19803 S:      Maintained
19804 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19806 F:      Documentation/devicetree/bindings/spi/
19807 F:      Documentation/spi/
19808 F:      drivers/spi/
19809 F:      include/linux/spi/
19810 F:      include/uapi/linux/spi/
19811 F:      tools/spi/
19812
19813 SPIDERNET NETWORK DRIVER for CELL
19814 M:      Ishizaki Kou <[email protected]>
19815 M:      Geoff Levand <[email protected]>
19816 L:      [email protected]
19817 L:      [email protected]
19818 S:      Maintained
19819 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19820 F:      drivers/net/ethernet/toshiba/spider_net*
19821
19822 SPMI SUBSYSTEM
19823 M:      Stephen Boyd <[email protected]>
19824 L:      [email protected]
19825 S:      Maintained
19826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19827 F:      Documentation/devicetree/bindings/spmi/
19828 F:      drivers/spmi/
19829 F:      include/dt-bindings/spmi/spmi.h
19830 F:      include/linux/spmi.h
19831 F:      include/trace/events/spmi.h
19832
19833 SPU FILE SYSTEM
19834 M:      Jeremy Kerr <[email protected]>
19835 L:      [email protected]
19836 S:      Supported
19837 W:      http://www.ibm.com/developerworks/power/cell/
19838 F:      Documentation/filesystems/spufs/spufs.rst
19839 F:      arch/powerpc/platforms/cell/spufs/
19840
19841 SQUASHFS FILE SYSTEM
19842 M:      Phillip Lougher <[email protected]>
19843 L:      [email protected] (subscribers-only)
19844 S:      Maintained
19845 W:      http://squashfs.org.uk
19846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19847 F:      Documentation/filesystems/squashfs.rst
19848 F:      fs/squashfs/
19849
19850 SRM (Alpha) environment access
19851 M:      Jan-Benedict Glaw <[email protected]>
19852 S:      Maintained
19853 F:      arch/alpha/kernel/srm_env.c
19854
19855 ST LSM6DSx IMU IIO DRIVER
19856 M:      Lorenzo Bianconi <[email protected]>
19857 L:      [email protected]
19858 S:      Maintained
19859 W:      http://www.st.com/
19860 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19861 F:      drivers/iio/imu/st_lsm6dsx/
19862
19863 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19864 M:      Benjamin Mugnier <[email protected]>
19865 M:      Sylvain Petinot <[email protected]>
19866 L:      [email protected]
19867 S:      Maintained
19868 T:      git git://linuxtv.org/media_tree.git
19869 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
19870 F:      drivers/media/i2c/st-mipid02.c
19871
19872 ST STM32 I2C/SMBUS DRIVER
19873 M:      Pierre-Yves MORDRET <[email protected]>
19874 M:      Alain Volmat <[email protected]>
19875 L:      [email protected]
19876 S:      Maintained
19877 F:      drivers/i2c/busses/i2c-stm32*
19878
19879 ST STM32 SPI DRIVER
19880 M:      Alain Volmat <[email protected]>
19881 L:      [email protected]
19882 S:      Maintained
19883 F:      drivers/spi/spi-stm32.c
19884
19885 ST STPDDC60 DRIVER
19886 M:      Daniel Nilsson <[email protected]>
19887 L:      [email protected]
19888 S:      Maintained
19889 F:      Documentation/hwmon/stpddc60.rst
19890 F:      drivers/hwmon/pmbus/stpddc60.c
19891
19892 ST VGXY61 DRIVER
19893 M:      Benjamin Mugnier <[email protected]>
19894 M:      Sylvain Petinot <[email protected]>
19895 L:      [email protected]
19896 S:      Maintained
19897 T:      git git://linuxtv.org/media_tree.git
19898 F:      Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
19899 F:      Documentation/userspace-api/media/drivers/st-vgxy61.rst
19900 F:      drivers/media/i2c/st-vgxy61.c
19901
19902 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19903 M:      Song Qiang <[email protected]>
19904 L:      [email protected]
19905 S:      Maintained
19906 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19907 F:      drivers/iio/proximity/vl53l0x-i2c.c
19908
19909 STABLE BRANCH
19910 M:      Greg Kroah-Hartman <[email protected]>
19911 M:      Sasha Levin <[email protected]>
19912 L:      [email protected]
19913 S:      Supported
19914 F:      Documentation/process/stable-kernel-rules.rst
19915
19916 STAGING - ATOMISP DRIVER
19917 M:      Hans de Goede <[email protected]>
19918 M:      Mauro Carvalho Chehab <[email protected]>
19919 R:      Sakari Ailus <[email protected]>
19920 L:      [email protected]
19921 S:      Maintained
19922 F:      drivers/staging/media/atomisp/
19923
19924 STAGING - FIELDBUS SUBSYSTEM
19925 M:      Sven Van Asbroeck <[email protected]>
19926 S:      Maintained
19927 F:      drivers/staging/fieldbus/*
19928 F:      drivers/staging/fieldbus/Documentation/
19929
19930 STAGING - HMS ANYBUS-S BUS
19931 M:      Sven Van Asbroeck <[email protected]>
19932 S:      Maintained
19933 F:      drivers/staging/fieldbus/anybuss/
19934
19935 STAGING - INDUSTRIAL IO
19936 M:      Jonathan Cameron <[email protected]>
19937 L:      [email protected]
19938 S:      Odd Fixes
19939 F:      Documentation/devicetree/bindings/staging/iio/
19940 F:      drivers/staging/iio/
19941
19942 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19943 M:      Marc Dietrich <[email protected]>
19944 L:      [email protected] (moderated for non-subscribers)
19945 L:      [email protected]
19946 S:      Maintained
19947 F:      drivers/staging/nvec/
19948
19949 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19950 M:      Jens Frederich <[email protected]>
19951 M:      Jon Nettleton <[email protected]>
19952 S:      Maintained
19953 W:      http://wiki.laptop.org/go/DCON
19954 F:      drivers/staging/olpc_dcon/
19955
19956 STAGING - REALTEK RTL8712U DRIVERS
19957 M:      Larry Finger <[email protected]>
19958 M:      Florian Schilhabel <[email protected]>.
19959 S:      Odd Fixes
19960 F:      drivers/staging/rtl8712/
19961
19962 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19963 M:      Michael Hennerich <[email protected]>
19964 L:      [email protected]
19965 S:      Supported
19966 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19967 F:      drivers/staging/fbtft/fb_seps525.c
19968
19969 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19970 M:      Sudip Mukherjee <[email protected]>
19971 M:      Teddy Wang <[email protected]>
19972 M:      Sudip Mukherjee <[email protected]>
19973 L:      [email protected]
19974 S:      Maintained
19975 F:      drivers/staging/sm750fb/
19976
19977 STAGING - VIA VT665X DRIVERS
19978 M:      Forest Bond <[email protected]>
19979 S:      Odd Fixes
19980 F:      drivers/staging/vt665?/
19981
19982 STAGING SUBSYSTEM
19983 M:      Greg Kroah-Hartman <[email protected]>
19984 L:      [email protected]
19985 S:      Supported
19986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19987 F:      drivers/staging/
19988
19989 STARFIRE/DURALAN NETWORK DRIVER
19990 M:      Ion Badulescu <[email protected]>
19991 S:      Odd Fixes
19992 F:      drivers/net/ethernet/adaptec/starfire*
19993
19994 STARFIVE DEVICETREES
19995 M:      Emil Renner Berthing <[email protected]>
19996 S:      Maintained
19997 F:      arch/riscv/boot/dts/starfive/
19998
19999 STARFIVE DWMAC GLUE LAYER
20000 M:      Emil Renner Berthing <[email protected]>
20001 M:      Samin Guo <[email protected]>
20002 S:      Maintained
20003 F:      Documentation/devicetree/bindings/net/starfive,jh7110-dwmac.yaml
20004 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
20005
20006 STARFIVE JH7100 CLOCK DRIVERS
20007 M:      Emil Renner Berthing <[email protected]>
20008 S:      Maintained
20009 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
20010 F:      drivers/clk/starfive/clk-starfive-jh7100*
20011 F:      include/dt-bindings/clock/starfive-jh7100*.h
20012
20013 STARFIVE JH7110 MMC/SD/SDIO DRIVER
20014 M:      William Qiu <[email protected]>
20015 S:      Supported
20016 F:      Documentation/devicetree/bindings/mmc/starfive*
20017 F:      drivers/mmc/host/dw_mmc-starfive.c
20018
20019 STARFIVE JH71X0 PINCTRL DRIVERS
20020 M:      Emil Renner Berthing <[email protected]>
20021 M:      Jianlong Huang <[email protected]>
20022 L:      [email protected]
20023 S:      Maintained
20024 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh71*.yaml
20025 F:      drivers/pinctrl/starfive/pinctrl-starfive-jh71*
20026 F:      include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
20027 F:      include/dt-bindings/pinctrl/starfive,jh7110-pinctrl.h
20028
20029 STARFIVE JH7100 RESET CONTROLLER DRIVER
20030 M:      Emil Renner Berthing <[email protected]>
20031 S:      Maintained
20032 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
20033 F:      drivers/reset/reset-starfive-jh7100.c
20034 F:      include/dt-bindings/reset/starfive-jh7100.h
20035
20036 STARFIVE JH71XX PMU CONTROLLER DRIVER
20037 M:      Walker Chen <[email protected]>
20038 S:      Supported
20039 F:      Documentation/devicetree/bindings/power/starfive*
20040 F:      drivers/soc/starfive/jh71xx_pmu.c
20041 F:      include/dt-bindings/power/starfive,jh7110-pmu.h
20042
20043 STARFIVE SOC DRIVERS
20044 M:      Conor Dooley <[email protected]>
20045 S:      Maintained
20046 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
20047 F:      drivers/soc/starfive/
20048
20049 STARFIVE TRNG DRIVER
20050 M:      Jia Jie Ho <[email protected]>
20051 S:      Supported
20052 F:      Documentation/devicetree/bindings/rng/starfive*
20053 F:      drivers/char/hw_random/jh7110-trng.c
20054
20055 STATIC BRANCH/CALL
20056 M:      Peter Zijlstra <[email protected]>
20057 M:      Josh Poimboeuf <[email protected]>
20058 M:      Jason Baron <[email protected]>
20059 R:      Steven Rostedt <[email protected]>
20060 R:      Ard Biesheuvel <[email protected]>
20061 S:      Supported
20062 F:      arch/*/include/asm/jump_label*.h
20063 F:      arch/*/include/asm/static_call*.h
20064 F:      arch/*/kernel/jump_label.c
20065 F:      arch/*/kernel/static_call.c
20066 F:      include/linux/jump_label*.h
20067 F:      include/linux/static_call*.h
20068 F:      kernel/jump_label.c
20069 F:      kernel/static_call.c
20070
20071 STI AUDIO (ASoC) DRIVERS
20072 M:      Arnaud Pouliquen <[email protected]>
20073 L:      [email protected] (moderated for non-subscribers)
20074 S:      Maintained
20075 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
20076 F:      sound/soc/sti/
20077
20078 STI CEC DRIVER
20079 M:      Alain Volmat <[email protected]>
20080 S:      Maintained
20081 F:      Documentation/devicetree/bindings/media/cec/st,stih-cec.yaml
20082 F:      drivers/media/cec/platform/sti/
20083
20084 STK1160 USB VIDEO CAPTURE DRIVER
20085 M:      Ezequiel Garcia <[email protected]>
20086 L:      [email protected]
20087 S:      Maintained
20088 T:      git git://linuxtv.org/media_tree.git
20089 F:      drivers/media/usb/stk1160/
20090
20091 STM32 AUDIO (ASoC) DRIVERS
20092 M:      Olivier Moysan <[email protected]>
20093 M:      Arnaud Pouliquen <[email protected]>
20094 L:      [email protected] (moderated for non-subscribers)
20095 S:      Maintained
20096 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
20097 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
20098 F:      sound/soc/stm/
20099
20100 STM32 TIMER/LPTIMER DRIVERS
20101 M:      Fabrice Gasnier <[email protected]>
20102 S:      Maintained
20103 F:      Documentation/ABI/testing/*timer-stm32
20104 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
20105 F:      drivers/*/stm32-*timer*
20106 F:      drivers/pwm/pwm-stm32*
20107 F:      include/linux/*/stm32-*tim*
20108
20109 STMMAC ETHERNET DRIVER
20110 M:      Giuseppe Cavallaro <[email protected]>
20111 M:      Alexandre Torgue <[email protected]>
20112 M:      Jose Abreu <[email protected]>
20113 L:      [email protected]
20114 S:      Supported
20115 W:      http://www.stlinux.com
20116 F:      Documentation/networking/device_drivers/ethernet/stmicro/
20117 F:      drivers/net/ethernet/stmicro/stmmac/
20118
20119 SUN3/3X
20120 M:      Sam Creasey <[email protected]>
20121 S:      Maintained
20122 W:      http://sammy.net/sun3/
20123 F:      arch/m68k/include/asm/sun3*
20124 F:      arch/m68k/kernel/*sun3*
20125 F:      arch/m68k/sun3*/
20126 F:      drivers/net/ethernet/i825xx/sun3*
20127
20128 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
20129 M:      Hans de Goede <[email protected]>
20130 L:      [email protected]
20131 S:      Maintained
20132 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
20133 F:      drivers/input/keyboard/sun4i-lradc-keys.c
20134
20135 SUNDANCE NETWORK DRIVER
20136 M:      Denis Kirjanov <[email protected]>
20137 L:      [email protected]
20138 S:      Maintained
20139 F:      drivers/net/ethernet/dlink/sundance.c
20140
20141 SUN HAPPY MEAL ETHERNET DRIVER
20142 M:      Sean Anderson <[email protected]>
20143 S:      Maintained
20144 F:      drivers/net/ethernet/sun/sunhme.*
20145
20146 SUNPLUS ETHERNET DRIVER
20147 M:      Wells Lu <[email protected]>
20148 L:      [email protected]
20149 S:      Maintained
20150 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
20151 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
20152 F:      drivers/net/ethernet/sunplus/
20153
20154 SUNPLUS MMC DRIVER
20155 M:      Tony Huang <[email protected]>
20156 M:      Li-hao Kuo <[email protected]>
20157 S:      Maintained
20158 F:      Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
20159 F:      drivers/mmc/host/sunplus-mmc.c
20160
20161 SUNPLUS OCOTP DRIVER
20162 M:      Vincent Shih <[email protected]>
20163 S:      Maintained
20164 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
20165 F:      drivers/nvmem/sunplus-ocotp.c
20166
20167 SUNPLUS USB2 PHY DRIVER
20168 M:      Vincent Shih <[email protected]>
20169 L:      [email protected]
20170 S:      Maintained
20171 F:      Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
20172 F:      drivers/phy/sunplus/Kconfig
20173 F:      drivers/phy/sunplus/Makefile
20174 F:      drivers/phy/sunplus/phy-sunplus-usb2.c
20175
20176 SUNPLUS PWM DRIVER
20177 M:      Hammer Hsieh <[email protected]>
20178 S:      Maintained
20179 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
20180 F:      drivers/pwm/pwm-sunplus.c
20181
20182 SUNPLUS RTC DRIVER
20183 M:      Vincent Shih <[email protected]>
20184 L:      [email protected]
20185 S:      Maintained
20186 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
20187 F:      drivers/rtc/rtc-sunplus.c
20188
20189 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
20190 M:      Li-hao Kuo <[email protected]>
20191 L:      [email protected]
20192 S:      Maintained
20193 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
20194 F:      drivers/spi/spi-sunplus-sp7021.c
20195
20196 SUNPLUS UART DRIVER
20197 M:      Hammer Hsieh <[email protected]>
20198 S:      Maintained
20199 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
20200 F:      drivers/tty/serial/sunplus-uart.c
20201
20202 SUNPLUS WATCHDOG DRIVER
20203 M:      Xiantao Hu <[email protected]>
20204 L:      [email protected]
20205 S:      Maintained
20206 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
20207 F:      drivers/watchdog/sunplus_wdt.c
20208
20209 SUPERH
20210 M:      Yoshinori Sato <[email protected]>
20211 M:      Rich Felker <[email protected]>
20212 M:      John Paul Adrian Glaubitz <[email protected]>
20213 L:      [email protected]
20214 S:      Maintained
20215 Q:      http://patchwork.kernel.org/project/linux-sh/list/
20216 F:      Documentation/arch/sh/
20217 F:      arch/sh/
20218 F:      drivers/sh/
20219
20220 SUSPEND TO RAM
20221 M:      "Rafael J. Wysocki" <[email protected]>
20222 M:      Len Brown <[email protected]>
20223 M:      Pavel Machek <[email protected]>
20224 L:      [email protected]
20225 S:      Supported
20226 B:      https://bugzilla.kernel.org
20227 F:      Documentation/power/
20228 F:      arch/x86/kernel/acpi/sleep*
20229 F:      arch/x86/kernel/acpi/wakeup*
20230 F:      drivers/base/power/
20231 F:      include/linux/freezer.h
20232 F:      include/linux/pm.h
20233 F:      include/linux/suspend.h
20234 F:      kernel/power/
20235
20236 SVGA HANDLING
20237 M:      Martin Mares <[email protected]>
20238 L:      [email protected]
20239 S:      Maintained
20240 F:      Documentation/admin-guide/svga.rst
20241 F:      arch/x86/boot/video*
20242
20243 SWITCHDEV
20244 M:      Jiri Pirko <[email protected]>
20245 M:      Ivan Vecera <[email protected]>
20246 L:      [email protected]
20247 S:      Supported
20248 F:      include/net/switchdev.h
20249 F:      net/switchdev/
20250
20251 SY8106A REGULATOR DRIVER
20252 M:      Icenowy Zheng <[email protected]>
20253 S:      Maintained
20254 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
20255 F:      drivers/regulator/sy8106a-regulator.c
20256
20257 SYNC FILE FRAMEWORK
20258 M:      Sumit Semwal <[email protected]>
20259 R:      Gustavo Padovan <[email protected]>
20260 L:      [email protected]
20261 L:      [email protected]
20262 S:      Maintained
20263 T:      git git://anongit.freedesktop.org/drm/drm-misc
20264 F:      Documentation/driver-api/sync_file.rst
20265 F:      drivers/dma-buf/dma-fence*
20266 F:      drivers/dma-buf/sw_sync.c
20267 F:      drivers/dma-buf/sync_*
20268 F:      include/linux/sync_file.h
20269 F:      include/uapi/linux/sync_file.h
20270
20271 SYNOPSYS ARC ARCHITECTURE
20272 M:      Vineet Gupta <[email protected]>
20273 L:      [email protected]
20274 S:      Supported
20275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
20276 F:      Documentation/arch/arc
20277 F:      Documentation/devicetree/bindings/arc/*
20278 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
20279 F:      arch/arc/
20280 F:      drivers/clocksource/arc_timer.c
20281 F:      drivers/tty/serial/arc_uart.c
20282
20283 SYNOPSYS ARC HSDK SDP pll clock driver
20284 M:      Eugeniy Paltsev <[email protected]>
20285 S:      Supported
20286 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
20287 F:      drivers/clk/clk-hsdk-pll.c
20288
20289 SYNOPSYS ARC SDP clock driver
20290 M:      Eugeniy Paltsev <[email protected]>
20291 S:      Supported
20292 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
20293 F:      drivers/clk/axs10x/*
20294
20295 SYNOPSYS ARC SDP platform support
20296 M:      Alexey Brodkin <[email protected]>
20297 S:      Supported
20298 F:      Documentation/devicetree/bindings/arc/axs10*
20299 F:      arch/arc/boot/dts/ax*
20300 F:      arch/arc/plat-axs10x
20301
20302 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
20303 M:      Eugeniy Paltsev <[email protected]>
20304 S:      Supported
20305 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
20306 F:      drivers/reset/reset-axs10x.c
20307
20308 SYNOPSYS CREG GPIO DRIVER
20309 M:      Eugeniy Paltsev <[email protected]>
20310 S:      Maintained
20311 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
20312 F:      drivers/gpio/gpio-creg-snps.c
20313
20314 SYNOPSYS DESIGNWARE 8250 UART DRIVER
20315 M:      Ilpo Järvinen <[email protected]>
20316 R:      Andy Shevchenko <[email protected]>
20317 S:      Supported
20318 F:      drivers/tty/serial/8250/8250_dw.c
20319 F:      drivers/tty/serial/8250/8250_dwlib.*
20320 F:      drivers/tty/serial/8250/8250_lpss.c
20321
20322 SYNOPSYS DESIGNWARE APB GPIO DRIVER
20323 M:      Hoan Tran <[email protected]>
20324 M:      Serge Semin <[email protected]>
20325 L:      [email protected]
20326 S:      Maintained
20327 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
20328 F:      drivers/gpio/gpio-dwapb.c
20329
20330 SYNOPSYS DESIGNWARE APB SSI DRIVER
20331 M:      Serge Semin <[email protected]>
20332 L:      [email protected]
20333 S:      Supported
20334 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
20335 F:      drivers/spi/spi-dw*
20336
20337 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
20338 M:      Eugeniy Paltsev <[email protected]>
20339 S:      Maintained
20340 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
20341 F:      drivers/dma/dw-axi-dmac/
20342
20343 SYNOPSYS DESIGNWARE DMAC DRIVER
20344 M:      Viresh Kumar <[email protected]>
20345 R:      Andy Shevchenko <[email protected]>
20346 S:      Maintained
20347 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
20348 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
20349 F:      drivers/dma/dw/
20350 F:      include/dt-bindings/dma/dw-dmac.h
20351 F:      include/linux/dma/dw.h
20352 F:      include/linux/platform_data/dma-dw.h
20353
20354 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
20355 M:      Jose Abreu <[email protected]>
20356 L:      [email protected]
20357 S:      Supported
20358 F:      drivers/net/ethernet/synopsys/
20359
20360 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
20361 M:      Jose Abreu <[email protected]>
20362 L:      [email protected]
20363 S:      Supported
20364 F:      drivers/net/pcs/pcs-xpcs.c
20365 F:      drivers/net/pcs/pcs-xpcs.h
20366 F:      include/linux/pcs/pcs-xpcs.h
20367
20368 SYNOPSYS DESIGNWARE I2C DRIVER
20369 M:      Jarkko Nikula <[email protected]>
20370 R:      Andy Shevchenko <[email protected]>
20371 R:      Mika Westerberg <[email protected]>
20372 R:      Jan Dabros <[email protected]>
20373 L:      [email protected]
20374 S:      Supported
20375 F:      drivers/i2c/busses/i2c-designware-*
20376
20377 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
20378 M:      Jaehoon Chung <[email protected]>
20379 L:      [email protected]
20380 S:      Maintained
20381 F:      drivers/mmc/host/dw_mmc*
20382
20383 SYNOPSYS HSDK RESET CONTROLLER DRIVER
20384 M:      Eugeniy Paltsev <[email protected]>
20385 S:      Supported
20386 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
20387 F:      drivers/reset/reset-hsdk.c
20388 F:      include/dt-bindings/reset/snps,hsdk-reset.h
20389
20390 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
20391 M:      Prabu Thangamuthu <[email protected]>
20392 M:      Manjunath M B <[email protected]>
20393 L:      [email protected]
20394 S:      Maintained
20395 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
20396
20397 SYSTEM CONFIGURATION (SYSCON)
20398 M:      Lee Jones <[email protected]>
20399 M:      Arnd Bergmann <[email protected]>
20400 S:      Supported
20401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
20402 F:      drivers/mfd/syscon.c
20403
20404 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
20405 M:      Sudeep Holla <[email protected]>
20406 R:      Cristian Marussi <[email protected]>
20407 L:      [email protected] (moderated for non-subscribers)
20408 S:      Maintained
20409 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
20410 F:      drivers/clk/clk-sc[mp]i.c
20411 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
20412 F:      drivers/firmware/arm_scmi/
20413 F:      drivers/firmware/arm_scpi.c
20414 F:      drivers/powercap/arm_scmi_powercap.c
20415 F:      drivers/regulator/scmi-regulator.c
20416 F:      drivers/reset/reset-scmi.c
20417 F:      include/linux/sc[mp]i_protocol.h
20418 F:      include/trace/events/scmi.h
20419 F:      include/uapi/linux/virtio_scmi.h
20420
20421 SYSTEM RESET/SHUTDOWN DRIVERS
20422 M:      Sebastian Reichel <[email protected]>
20423 L:      [email protected]
20424 S:      Maintained
20425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
20426 F:      Documentation/devicetree/bindings/power/reset/
20427 F:      drivers/power/reset/
20428
20429 SYSTEM TRACE MODULE CLASS
20430 M:      Alexander Shishkin <[email protected]>
20431 S:      Maintained
20432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
20433 F:      Documentation/trace/stm.rst
20434 F:      drivers/hwtracing/stm/
20435 F:      include/linux/stm.h
20436 F:      include/uapi/linux/stm.h
20437
20438 SYSTEM76 ACPI DRIVER
20439 M:      Jeremy Soller <[email protected]>
20440 M:      System76 Product Development <[email protected]>
20441 L:      [email protected]
20442 S:      Maintained
20443 F:      drivers/platform/x86/system76_acpi.c
20444
20445 SYSV FILESYSTEM
20446 S:      Orphan
20447 F:      Documentation/filesystems/sysv-fs.rst
20448 F:      fs/sysv/
20449 F:      include/linux/sysv_fs.h
20450
20451 TASKSTATS STATISTICS INTERFACE
20452 M:      Balbir Singh <[email protected]>
20453 S:      Maintained
20454 F:      Documentation/accounting/taskstats*
20455 F:      include/linux/taskstats*
20456 F:      kernel/taskstats.c
20457
20458 TC subsystem
20459 M:      Jamal Hadi Salim <[email protected]>
20460 M:      Cong Wang <[email protected]>
20461 M:      Jiri Pirko <[email protected]>
20462 L:      [email protected]
20463 S:      Maintained
20464 F:      include/net/pkt_cls.h
20465 F:      include/net/pkt_sched.h
20466 F:      include/net/tc_act/
20467 F:      include/uapi/linux/pkt_cls.h
20468 F:      include/uapi/linux/pkt_sched.h
20469 F:      include/uapi/linux/tc_act/
20470 F:      include/uapi/linux/tc_ematch/
20471 F:      net/sched/
20472 F:      tools/testing/selftests/tc-testing
20473
20474 TC90522 MEDIA DRIVER
20475 M:      Akihiro Tsukada <[email protected]>
20476 L:      [email protected]
20477 S:      Odd Fixes
20478 F:      drivers/media/dvb-frontends/tc90522*
20479
20480 TCP LOW PRIORITY MODULE
20481 M:      "Wong Hoi Sing, Edison" <[email protected]>
20482 M:      "Hung Hing Lun, Mike" <[email protected]>
20483 S:      Maintained
20484 W:      http://tcp-lp-mod.sourceforge.net/
20485 F:      net/ipv4/tcp_lp.c
20486
20487 TDA10071 MEDIA DRIVER
20488 M:      Antti Palosaari <[email protected]>
20489 L:      [email protected]
20490 S:      Maintained
20491 W:      https://linuxtv.org
20492 W:      http://palosaari.fi/linux/
20493 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20494 T:      git git://linuxtv.org/anttip/media_tree.git
20495 F:      drivers/media/dvb-frontends/tda10071*
20496
20497 TDA18212 MEDIA DRIVER
20498 M:      Antti Palosaari <[email protected]>
20499 L:      [email protected]
20500 S:      Maintained
20501 W:      https://linuxtv.org
20502 W:      http://palosaari.fi/linux/
20503 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20504 T:      git git://linuxtv.org/anttip/media_tree.git
20505 F:      drivers/media/tuners/tda18212*
20506
20507 TDA18218 MEDIA DRIVER
20508 M:      Antti Palosaari <[email protected]>
20509 L:      [email protected]
20510 S:      Maintained
20511 W:      https://linuxtv.org
20512 W:      http://palosaari.fi/linux/
20513 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20514 T:      git git://linuxtv.org/anttip/media_tree.git
20515 F:      drivers/media/tuners/tda18218*
20516
20517 TDA18250 MEDIA DRIVER
20518 M:      Olli Salonen <[email protected]>
20519 L:      [email protected]
20520 S:      Maintained
20521 W:      https://linuxtv.org
20522 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20523 T:      git git://linuxtv.org/media_tree.git
20524 F:      drivers/media/tuners/tda18250*
20525
20526 TDA18271 MEDIA DRIVER
20527 M:      Michael Krufky <[email protected]>
20528 L:      [email protected]
20529 S:      Maintained
20530 W:      https://linuxtv.org
20531 W:      http://github.com/mkrufky
20532 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20533 T:      git git://linuxtv.org/mkrufky/tuners.git
20534 F:      drivers/media/tuners/tda18271*
20535
20536 TDA1997x MEDIA DRIVER
20537 M:      Tim Harvey <[email protected]>
20538 L:      [email protected]
20539 S:      Maintained
20540 W:      https://linuxtv.org
20541 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20542 F:      drivers/media/i2c/tda1997x.*
20543
20544 TDA827x MEDIA DRIVER
20545 M:      Michael Krufky <[email protected]>
20546 L:      [email protected]
20547 S:      Maintained
20548 W:      https://linuxtv.org
20549 W:      http://github.com/mkrufky
20550 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20551 T:      git git://linuxtv.org/mkrufky/tuners.git
20552 F:      drivers/media/tuners/tda8290.*
20553
20554 TDA8290 MEDIA DRIVER
20555 M:      Michael Krufky <[email protected]>
20556 L:      [email protected]
20557 S:      Maintained
20558 W:      https://linuxtv.org
20559 W:      http://github.com/mkrufky
20560 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20561 T:      git git://linuxtv.org/mkrufky/tuners.git
20562 F:      drivers/media/tuners/tda8290.*
20563
20564 TDA9840 MEDIA DRIVER
20565 M:      Hans Verkuil <[email protected]>
20566 L:      [email protected]
20567 S:      Maintained
20568 W:      https://linuxtv.org
20569 T:      git git://linuxtv.org/media_tree.git
20570 F:      drivers/media/i2c/tda9840*
20571
20572 TEA5761 TUNER DRIVER
20573 M:      Mauro Carvalho Chehab <[email protected]>
20574 L:      [email protected]
20575 S:      Odd fixes
20576 W:      https://linuxtv.org
20577 T:      git git://linuxtv.org/media_tree.git
20578 F:      drivers/media/tuners/tea5761.*
20579
20580 TEA5767 TUNER DRIVER
20581 M:      Mauro Carvalho Chehab <[email protected]>
20582 L:      [email protected]
20583 S:      Maintained
20584 W:      https://linuxtv.org
20585 T:      git git://linuxtv.org/media_tree.git
20586 F:      drivers/media/tuners/tea5767.*
20587
20588 TEA6415C MEDIA DRIVER
20589 M:      Hans Verkuil <[email protected]>
20590 L:      [email protected]
20591 S:      Maintained
20592 W:      https://linuxtv.org
20593 T:      git git://linuxtv.org/media_tree.git
20594 F:      drivers/media/i2c/tea6415c*
20595
20596 TEA6420 MEDIA DRIVER
20597 M:      Hans Verkuil <[email protected]>
20598 L:      [email protected]
20599 S:      Maintained
20600 W:      https://linuxtv.org
20601 T:      git git://linuxtv.org/media_tree.git
20602 F:      drivers/media/i2c/tea6420*
20603
20604 TEAM DRIVER
20605 M:      Jiri Pirko <[email protected]>
20606 L:      [email protected]
20607 S:      Supported
20608 F:      drivers/net/team/
20609 F:      include/linux/if_team.h
20610 F:      include/uapi/linux/if_team.h
20611 F:      tools/testing/selftests/drivers/net/team/
20612
20613 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20614 M:      "Savoir-faire Linux Inc." <[email protected]>
20615 S:      Maintained
20616 F:      arch/x86/platform/ts5500/
20617
20618 TECHNOTREND USB IR RECEIVER
20619 M:      Sean Young <[email protected]>
20620 L:      [email protected]
20621 S:      Maintained
20622 F:      drivers/media/rc/ttusbir.c
20623
20624 TECHWELL TW9910 VIDEO DECODER
20625 L:      [email protected]
20626 S:      Orphan
20627 F:      drivers/media/i2c/tw9910.c
20628 F:      include/media/i2c/tw9910.h
20629
20630 TEE SUBSYSTEM
20631 M:      Jens Wiklander <[email protected]>
20632 R:      Sumit Garg <[email protected]>
20633 L:      [email protected]
20634 S:      Maintained
20635 F:      Documentation/staging/tee.rst
20636 F:      drivers/tee/
20637 F:      include/linux/tee_drv.h
20638 F:      include/uapi/linux/tee.h
20639
20640 TEGRA ARCHITECTURE SUPPORT
20641 M:      Thierry Reding <[email protected]>
20642 M:      Jonathan Hunter <[email protected]>
20643 L:      [email protected]
20644 S:      Supported
20645 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
20646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20647 N:      [^a-z]tegra
20648
20649 TEGRA CLOCK DRIVER
20650 M:      Peter De Schrijver <[email protected]>
20651 M:      Prashant Gaikwad <[email protected]>
20652 S:      Supported
20653 F:      drivers/clk/tegra/
20654
20655 TEGRA DMA DRIVERS
20656 M:      Laxman Dewangan <[email protected]>
20657 M:      Jon Hunter <[email protected]>
20658 S:      Supported
20659 F:      drivers/dma/tegra*
20660
20661 TEGRA I2C DRIVER
20662 M:      Laxman Dewangan <[email protected]>
20663 R:      Dmitry Osipenko <[email protected]>
20664 S:      Supported
20665 F:      drivers/i2c/busses/i2c-tegra.c
20666
20667 TEGRA IOMMU DRIVERS
20668 M:      Thierry Reding <[email protected]>
20669 R:      Krishna Reddy <[email protected]>
20670 L:      [email protected]
20671 S:      Supported
20672 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20673 F:      drivers/iommu/tegra*
20674
20675 TEGRA KBC DRIVER
20676 M:      Laxman Dewangan <[email protected]>
20677 S:      Supported
20678 F:      drivers/input/keyboard/tegra-kbc.c
20679
20680 TEGRA NAND DRIVER
20681 M:      Stefan Agner <[email protected]>
20682 M:      Lucas Stach <[email protected]>
20683 S:      Maintained
20684 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20685 F:      drivers/mtd/nand/raw/tegra_nand.c
20686
20687 TEGRA PWM DRIVER
20688 M:      Thierry Reding <[email protected]>
20689 S:      Supported
20690 F:      drivers/pwm/pwm-tegra.c
20691
20692 TEGRA SERIAL DRIVER
20693 M:      Laxman Dewangan <[email protected]>
20694 S:      Supported
20695 F:      drivers/tty/serial/serial-tegra.c
20696
20697 TEGRA SPI DRIVER
20698 M:      Laxman Dewangan <[email protected]>
20699 S:      Supported
20700 F:      drivers/spi/spi-tegra*
20701
20702 TEGRA QUAD SPI DRIVER
20703 M:      Thierry Reding <[email protected]>
20704 M:      Jonathan Hunter <[email protected]>
20705 M:      Sowjanya Komatineni <[email protected]>
20706 L:      [email protected]
20707 S:      Maintained
20708 F:      drivers/spi/spi-tegra210-quad.c
20709
20710 TEGRA VIDEO DRIVER
20711 M:      Thierry Reding <[email protected]>
20712 M:      Jonathan Hunter <[email protected]>
20713 M:      Sowjanya Komatineni <[email protected]>
20714 L:      [email protected]
20715 L:      [email protected]
20716 S:      Maintained
20717 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20718 F:      drivers/staging/media/tegra-video/
20719
20720 TEGRA XUSB PADCTL DRIVER
20721 M:      JC Kuo <[email protected]>
20722 S:      Supported
20723 F:      drivers/phy/tegra/xusb*
20724
20725 TEHUTI ETHERNET DRIVER
20726 M:      Andy Gospodarek <[email protected]>
20727 L:      [email protected]
20728 S:      Supported
20729 F:      drivers/net/ethernet/tehuti/*
20730
20731 TELECOM CLOCK DRIVER FOR MCPL0010
20732 M:      Mark Gross <[email protected]>
20733 S:      Supported
20734 F:      drivers/char/tlclk.c
20735
20736 TEMPO SEMICONDUCTOR DRIVERS
20737 M:      Steven Eckhoff <[email protected]>
20738 S:      Maintained
20739 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20740 F:      sound/soc/codecs/tscs*.c
20741 F:      sound/soc/codecs/tscs*.h
20742
20743 TENSILICA XTENSA PORT (xtensa)
20744 M:      Chris Zankel <[email protected]>
20745 M:      Max Filippov <[email protected]>
20746 S:      Maintained
20747 T:      git https://github.com/jcmvbkbc/linux-xtensa.git
20748 F:      arch/xtensa/
20749 F:      drivers/irqchip/irq-xtensa-*
20750
20751 TEXAS INSTRUMENTS ASoC DRIVERS
20752 M:      Peter Ujfalusi <[email protected]>
20753 L:      [email protected] (moderated for non-subscribers)
20754 S:      Maintained
20755 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20756 F:      sound/soc/ti/
20757
20758 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20759 M:      Ricardo Ribalda <[email protected]>
20760 L:      [email protected]
20761 S:      Supported
20762 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20763 F:      drivers/iio/dac/ti-dac7612.c
20764
20765 TEXAS INSTRUMENTS DMA DRIVERS
20766 M:      Peter Ujfalusi <[email protected]>
20767 L:      [email protected]
20768 S:      Maintained
20769 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20770 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20771 F:      Documentation/devicetree/bindings/dma/ti/
20772 F:      drivers/dma/ti/
20773 X:      drivers/dma/ti/cppi41.c
20774 F:      include/linux/dma/k3-udma-glue.h
20775 F:      include/linux/dma/ti-cppi5.h
20776 F:      include/linux/dma/k3-psil.h
20777
20778 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20779 M:      Nishanth Menon <[email protected]>
20780 M:      Tero Kristo <[email protected]>
20781 M:      Santosh Shilimkar <[email protected]>
20782 L:      [email protected] (moderated for non-subscribers)
20783 S:      Maintained
20784 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20785 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20786 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20787 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20788 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20789 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20790 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20791 F:      drivers/clk/keystone/sci-clk.c
20792 F:      drivers/firmware/ti_sci*
20793 F:      drivers/irqchip/irq-ti-sci-inta.c
20794 F:      drivers/irqchip/irq-ti-sci-intr.c
20795 F:      drivers/reset/reset-ti-sci.c
20796 F:      drivers/soc/ti/ti_sci_inta_msi.c
20797 F:      drivers/soc/ti/ti_sci_pm_domains.c
20798 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20799 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20800 F:      include/linux/soc/ti/ti_sci_protocol.h
20801
20802 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20803 M:      Robert Marko <[email protected]>
20804 M:      Luka Perkov <[email protected]>
20805 L:      [email protected]
20806 S:      Maintained
20807 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20808 F:      Documentation/hwmon/tps23861.rst
20809 F:      drivers/hwmon/tps23861.c
20810
20811 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20812 M:      Puranjay Mohan <[email protected]>
20813 L:      [email protected]
20814 S:      Supported
20815 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20816 F:      drivers/iio/temperature/tmp117.c
20817
20818 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20819 M:      Hans Verkuil <[email protected]>
20820 L:      [email protected]
20821 S:      Maintained
20822 W:      https://linuxtv.org
20823 T:      git git://linuxtv.org/media_tree.git
20824 F:      drivers/media/radio/radio-raremono.c
20825
20826 THERMAL
20827 M:      Rafael J. Wysocki <[email protected]>
20828 M:      Daniel Lezcano <[email protected]>
20829 R:      Amit Kucheria <[email protected]>
20830 R:      Zhang Rui <[email protected]>
20831 L:      [email protected]
20832 S:      Supported
20833 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20835 F:      Documentation/ABI/testing/sysfs-class-thermal
20836 F:      Documentation/admin-guide/thermal/
20837 F:      Documentation/devicetree/bindings/thermal/
20838 F:      Documentation/driver-api/thermal/
20839 F:      drivers/thermal/
20840 F:      include/dt-bindings/thermal/
20841 F:      include/linux/cpu_cooling.h
20842 F:      include/linux/thermal.h
20843 F:      include/uapi/linux/thermal.h
20844 F:      tools/lib/thermal/
20845 F:      tools/thermal/
20846
20847 THERMAL DRIVER FOR AMLOGIC SOCS
20848 M:      Guillaume La Roque <[email protected]>
20849 L:      [email protected]
20850 L:      [email protected]
20851 S:      Supported
20852 W:      http://linux-meson.com/
20853 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20854 F:      drivers/thermal/amlogic_thermal.c
20855
20856 THERMAL/CPU_COOLING
20857 M:      Amit Daniel Kachhap <[email protected]>
20858 M:      Daniel Lezcano <[email protected]>
20859 M:      Viresh Kumar <[email protected]>
20860 R:      Lukasz Luba <[email protected]>
20861 L:      [email protected]
20862 S:      Supported
20863 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20864 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20865 F:      drivers/thermal/cpufreq_cooling.c
20866 F:      drivers/thermal/cpuidle_cooling.c
20867 F:      include/linux/cpu_cooling.h
20868
20869 THERMAL/POWER_ALLOCATOR
20870 M:      Lukasz Luba <[email protected]>
20871 L:      [email protected]
20872 S:      Maintained
20873 F:      Documentation/driver-api/thermal/power_allocator.rst
20874 F:      drivers/thermal/gov_power_allocator.c
20875 F:      drivers/thermal/thermal_trace_ipa.h
20876
20877 THINKPAD ACPI EXTRAS DRIVER
20878 M:      Henrique de Moraes Holschuh <[email protected]>
20879 L:      [email protected]
20880 L:      [email protected]
20881 S:      Maintained
20882 W:      http://ibm-acpi.sourceforge.net
20883 W:      http://thinkwiki.org/wiki/Ibm-acpi
20884 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20885 F:      drivers/platform/x86/thinkpad_acpi.c
20886
20887 THINKPAD LMI DRIVER
20888 M:      Mark Pearson <[email protected]>
20889 L:      [email protected]
20890 S:      Maintained
20891 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20892 F:      drivers/platform/x86/think-lmi.?
20893
20894 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20895 M:      Isaac Hazan <[email protected]>
20896 L:      [email protected]
20897 S:      Maintained
20898 F:      drivers/thunderbolt/dma_test.c
20899
20900 THUNDERBOLT DRIVER
20901 M:      Andreas Noever <[email protected]>
20902 M:      Michael Jamet <[email protected]>
20903 M:      Mika Westerberg <[email protected]>
20904 M:      Yehezkel Bernat <[email protected]>
20905 L:      [email protected]
20906 S:      Maintained
20907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20908 F:      Documentation/admin-guide/thunderbolt.rst
20909 F:      drivers/thunderbolt/
20910 F:      include/linux/thunderbolt.h
20911
20912 THUNDERBOLT NETWORK DRIVER
20913 M:      Michael Jamet <[email protected]>
20914 M:      Mika Westerberg <[email protected]>
20915 M:      Yehezkel Bernat <[email protected]>
20916 L:      [email protected]
20917 S:      Maintained
20918 F:      drivers/net/thunderbolt/
20919
20920 THUNDERX GPIO DRIVER
20921 M:      Robert Richter <[email protected]>
20922 S:      Odd Fixes
20923 F:      drivers/gpio/gpio-thunderx.c
20924
20925 TI ADS7924 ADC DRIVER
20926 M:      Hugo Villeneuve <[email protected]>
20927 L:      [email protected]
20928 S:      Supported
20929 F:      Documentation/devicetree/bindings/iio/adc/ti,ads7924.yaml
20930 F:      drivers/iio/adc/ti-ads7924.c
20931
20932 TI AM437X VPFE DRIVER
20933 M:      "Lad, Prabhakar" <[email protected]>
20934 L:      [email protected]
20935 S:      Maintained
20936 W:      https://linuxtv.org
20937 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20938 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20939 F:      drivers/media/platform/ti/am437x/
20940
20941 TI BANDGAP AND THERMAL DRIVER
20942 M:      Eduardo Valentin <[email protected]>
20943 M:      Keerthy <[email protected]>
20944 L:      [email protected]
20945 L:      [email protected]
20946 S:      Maintained
20947 F:      drivers/thermal/ti-soc-thermal/
20948
20949 TI BQ27XXX POWER SUPPLY DRIVER
20950 F:      drivers/power/supply/bq27xxx_battery.c
20951 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20952 F:      include/linux/power/bq27xxx_battery.h
20953
20954 TI CDCE706 CLOCK DRIVER
20955 M:      Max Filippov <[email protected]>
20956 S:      Maintained
20957 F:      drivers/clk/clk-cdce706.c
20958
20959 TI CLOCK DRIVER
20960 M:      Tero Kristo <[email protected]>
20961 L:      [email protected]
20962 S:      Odd Fixes
20963 F:      drivers/clk/ti/
20964 F:      include/linux/clk/ti.h
20965
20966 TI DAVINCI MACHINE SUPPORT
20967 M:      Bartosz Golaszewski <[email protected]>
20968 L:      [email protected] (moderated for non-subscribers)
20969 S:      Maintained
20970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
20971 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20972 F:      arch/arm/boot/dts/da850*
20973 F:      arch/arm/mach-davinci/
20974 F:      drivers/i2c/busses/i2c-davinci.c
20975
20976 TI DAVINCI SERIES CLOCK DRIVER
20977 M:      David Lechner <[email protected]>
20978 R:      Sekhar Nori <[email protected]>
20979 S:      Maintained
20980 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20981 F:      drivers/clk/davinci/
20982 F:      include/linux/clk/davinci.h
20983
20984 TI DAVINCI SERIES GPIO DRIVER
20985 M:      Keerthy <[email protected]>
20986 L:      [email protected]
20987 S:      Maintained
20988 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20989 F:      drivers/gpio/gpio-davinci.c
20990
20991 TI DAVINCI SERIES MEDIA DRIVER
20992 M:      "Lad, Prabhakar" <[email protected]>
20993 L:      [email protected]
20994 S:      Maintained
20995 W:      https://linuxtv.org
20996 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20997 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20998 F:      drivers/media/platform/ti/davinci/
20999 F:      include/media/davinci/
21000
21001 TI ENHANCED CAPTURE (eCAP) DRIVER
21002 M:      Vignesh Raghavendra <[email protected]>
21003 R:      Julien Panis <[email protected]>
21004 L:      [email protected]
21005 L:      [email protected]
21006 S:      Maintained
21007 F:      Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
21008 F:      drivers/counter/ti-ecap-capture.c
21009
21010 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
21011 R:      David Lechner <[email protected]>
21012 L:      [email protected]
21013 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
21014 F:      drivers/counter/ti-eqep.c
21015
21016 TI ETHERNET SWITCH DRIVER (CPSW)
21017 R:      Grygorii Strashko <[email protected]>
21018 L:      [email protected]
21019 L:      [email protected]
21020 S:      Maintained
21021 F:      drivers/net/ethernet/ti/cpsw*
21022 F:      drivers/net/ethernet/ti/davinci*
21023
21024 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
21025 M:      Alex Dubov <[email protected]>
21026 S:      Maintained
21027 W:      http://tifmxx.berlios.de/
21028 F:      drivers/memstick/host/tifm_ms.c
21029 F:      drivers/misc/tifm*
21030 F:      drivers/mmc/host/tifm_sd.c
21031 F:      include/linux/tifm.h
21032
21033 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
21034 M:      Nishanth Menon <[email protected]>
21035 M:      Santosh Shilimkar <[email protected]>
21036 L:      [email protected]
21037 L:      [email protected] (moderated for non-subscribers)
21038 S:      Maintained
21039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
21040 F:      drivers/soc/ti/*
21041
21042 TI LM49xxx FAMILY ASoC CODEC DRIVERS
21043 M:      M R Swami Reddy <[email protected]>
21044 M:      Vishwas A Deshpande <[email protected]>
21045 L:      [email protected] (moderated for non-subscribers)
21046 S:      Maintained
21047 F:      sound/soc/codecs/isabelle*
21048 F:      sound/soc/codecs/lm49453*
21049
21050 TI LMP92064 ADC DRIVER
21051 M:      Leonard Göhrs <[email protected]>
21052 R:      [email protected]
21053 L:      [email protected]
21054 S:      Maintained
21055 F:      Documentation/devicetree/bindings/iio/adc/ti,lmp92064.yaml
21056 F:      drivers/iio/adc/ti-lmp92064.c
21057
21058 TI PCM3060 ASoC CODEC DRIVER
21059 M:      Kirill Marinushkin <[email protected]>
21060 L:      [email protected] (moderated for non-subscribers)
21061 S:      Maintained
21062 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
21063 F:      sound/soc/codecs/pcm3060*
21064
21065 TI TAS571X FAMILY ASoC CODEC DRIVER
21066 M:      Kevin Cernekee <[email protected]>
21067 L:      [email protected] (moderated for non-subscribers)
21068 S:      Odd Fixes
21069 F:      sound/soc/codecs/tas571x*
21070
21071 TI TMAG5273 MAGNETOMETER DRIVER
21072 M:      Gerald Loacker <[email protected]>
21073 L:      [email protected]
21074 S:      Maintained
21075 F:      Documentation/devicetree/bindings/iio/magnetometer/ti,tmag5273.yaml
21076 F:      drivers/iio/magnetometer/tmag5273.c
21077
21078 TI TRF7970A NFC DRIVER
21079 M:      Mark Greer <[email protected]>
21080 L:      [email protected]
21081 S:      Supported
21082 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
21083 F:      drivers/nfc/trf7970a.c
21084
21085 TI TSC2046 ADC DRIVER
21086 M:      Oleksij Rempel <[email protected]>
21087 R:      [email protected]
21088 L:      [email protected]
21089 S:      Maintained
21090 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
21091 F:      drivers/iio/adc/ti-tsc2046.c
21092
21093 TI TWL4030 SERIES SOC CODEC DRIVER
21094 M:      Peter Ujfalusi <[email protected]>
21095 L:      [email protected] (moderated for non-subscribers)
21096 S:      Maintained
21097 F:      sound/soc/codecs/twl4030*
21098
21099 TI VPE/CAL DRIVERS
21100 M:      Benoit Parrot <[email protected]>
21101 L:      [email protected]
21102 S:      Maintained
21103 W:      http://linuxtv.org/
21104 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21105 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
21106 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
21107 F:      drivers/media/platform/ti/cal/
21108 F:      drivers/media/platform/ti/vpe/
21109
21110 TI WILINK WIRELESS DRIVERS
21111 L:      [email protected]
21112 S:      Orphan
21113 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
21114 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
21115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
21116 F:      drivers/net/wireless/ti/
21117
21118 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
21119 M:      John Stultz <[email protected]>
21120 M:      Thomas Gleixner <[email protected]>
21121 R:      Stephen Boyd <[email protected]>
21122 L:      [email protected]
21123 S:      Supported
21124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
21125 F:      include/linux/clocksource.h
21126 F:      include/linux/time.h
21127 F:      include/linux/timex.h
21128 F:      include/uapi/linux/time.h
21129 F:      include/uapi/linux/timex.h
21130 F:      kernel/time/alarmtimer.c
21131 F:      kernel/time/clocksource.c
21132 F:      kernel/time/ntp.c
21133 F:      kernel/time/time*.c
21134 F:      tools/testing/selftests/timers/
21135
21136 TIPC NETWORK LAYER
21137 M:      Jon Maloy <[email protected]>
21138 M:      Ying Xue <[email protected]>
21139 L:      [email protected] (core kernel code)
21140 L:      [email protected] (user apps, general discussion)
21141 S:      Maintained
21142 W:      http://tipc.sourceforge.net/
21143 F:      include/uapi/linux/tipc*.h
21144 F:      net/tipc/
21145
21146 TLAN NETWORK DRIVER
21147 M:      Samuel Chessman <[email protected]>
21148 L:      [email protected] (subscribers-only)
21149 S:      Maintained
21150 W:      http://sourceforge.net/projects/tlan/
21151 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
21152 F:      drivers/net/ethernet/ti/tlan.*
21153
21154 TMIO/SDHI MMC DRIVER
21155 M:      Wolfram Sang <[email protected]>
21156 L:      [email protected]
21157 L:      [email protected]
21158 S:      Supported
21159 F:      drivers/mmc/host/renesas_sdhi*
21160 F:      drivers/mmc/host/tmio_mmc*
21161 F:      include/linux/mfd/tmio.h
21162
21163 TMP401 HARDWARE MONITOR DRIVER
21164 M:      Guenter Roeck <[email protected]>
21165 L:      [email protected]
21166 S:      Maintained
21167 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
21168 F:      Documentation/hwmon/tmp401.rst
21169 F:      drivers/hwmon/tmp401.c
21170
21171 TMP464 HARDWARE MONITOR DRIVER
21172 M:      Guenter Roeck <[email protected]>
21173 L:      [email protected]
21174 S:      Maintained
21175 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
21176 F:      Documentation/hwmon/tmp464.rst
21177 F:      drivers/hwmon/tmp464.c
21178
21179 TMP513 HARDWARE MONITOR DRIVER
21180 M:      Eric Tremblay <[email protected]>
21181 L:      [email protected]
21182 S:      Maintained
21183 F:      Documentation/hwmon/tmp513.rst
21184 F:      drivers/hwmon/tmp513.c
21185
21186 TMPFS (SHMEM FILESYSTEM)
21187 M:      Hugh Dickins <[email protected]>
21188 L:      [email protected]
21189 S:      Maintained
21190 F:      include/linux/shmem_fs.h
21191 F:      mm/shmem.c
21192
21193 TOMOYO SECURITY MODULE
21194 M:      Kentaro Takeda <[email protected]>
21195 M:      Tetsuo Handa <[email protected]>
21196 L:      [email protected] (subscribers-only, for developers in English)
21197 L:      [email protected] (subscribers-only, for users in English)
21198 L:      [email protected] (subscribers-only, for developers in Japanese)
21199 L:      [email protected] (subscribers-only, for users in Japanese)
21200 S:      Maintained
21201 W:      https://tomoyo.osdn.jp/
21202 F:      security/tomoyo/
21203
21204 TOPSTAR LAPTOP EXTRAS DRIVER
21205 M:      Herton Ronaldo Krzesinski <[email protected]>
21206 L:      [email protected]
21207 S:      Maintained
21208 F:      drivers/platform/x86/topstar-laptop.c
21209
21210 TORTURE-TEST MODULES
21211 M:      Davidlohr Bueso <[email protected]>
21212 M:      "Paul E. McKenney" <[email protected]>
21213 M:      Josh Triplett <[email protected]>
21214 L:      [email protected]
21215 S:      Supported
21216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
21217 F:      Documentation/RCU/torture.rst
21218 F:      kernel/locking/locktorture.c
21219 F:      kernel/rcu/rcuscale.c
21220 F:      kernel/rcu/rcutorture.c
21221 F:      kernel/rcu/refscale.c
21222 F:      kernel/torture.c
21223
21224 TOSHIBA ACPI EXTRAS DRIVER
21225 M:      Azael Avalos <[email protected]>
21226 L:      [email protected]
21227 S:      Maintained
21228 F:      drivers/platform/x86/toshiba_acpi.c
21229
21230 TOSHIBA BLUETOOTH DRIVER
21231 M:      Azael Avalos <[email protected]>
21232 L:      [email protected]
21233 S:      Maintained
21234 F:      drivers/platform/x86/toshiba_bluetooth.c
21235
21236 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
21237 M:      Azael Avalos <[email protected]>
21238 L:      [email protected]
21239 S:      Maintained
21240 F:      drivers/platform/x86/toshiba_haps.c
21241
21242 TOSHIBA SMM DRIVER
21243 M:      Jonathan Buzzard <[email protected]>
21244 S:      Maintained
21245 W:      http://www.buzzard.org.uk/toshiba/
21246 F:      drivers/char/toshiba.c
21247 F:      include/linux/toshiba.h
21248 F:      include/uapi/linux/toshiba.h
21249
21250 TOSHIBA TC358743 DRIVER
21251 M:      Hans Verkuil <[email protected]>
21252 L:      [email protected]
21253 S:      Maintained
21254 F:      Documentation/devicetree/bindings/media/i2c/tc358743.txt
21255 F:      drivers/media/i2c/tc358743*
21256 F:      include/media/i2c/tc358743.h
21257
21258 TOSHIBA WMI HOTKEYS DRIVER
21259 M:      Azael Avalos <[email protected]>
21260 L:      [email protected]
21261 S:      Maintained
21262 F:      drivers/platform/x86/toshiba-wmi.c
21263
21264 TPM DEVICE DRIVER
21265 M:      Peter Huewe <[email protected]>
21266 M:      Jarkko Sakkinen <[email protected]>
21267 R:      Jason Gunthorpe <[email protected]>
21268 L:      [email protected]
21269 S:      Maintained
21270 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
21271 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
21272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
21273 F:      drivers/char/tpm/
21274
21275 TPS546D24 DRIVER
21276 M:      Duke Du <[email protected]>
21277 L:      [email protected]
21278 S:      Maintained
21279 F:      Documentation/hwmon/tps546d24.rst
21280 F:      drivers/hwmon/pmbus/tps546d24.c
21281
21282 TRACING
21283 M:      Steven Rostedt <[email protected]>
21284 M:      Masami Hiramatsu <[email protected]>
21285 L:      [email protected]
21286 L:      [email protected]
21287 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
21288 S:      Maintained
21289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
21290 F:      Documentation/trace/*
21291 F:      fs/tracefs/
21292 F:      include/linux/trace*.h
21293 F:      include/trace/
21294 F:      kernel/trace/
21295 F:      scripts/tracing/
21296 F:      tools/testing/selftests/ftrace/
21297
21298 TRACING MMIO ACCESSES (MMIOTRACE)
21299 M:      Steven Rostedt <[email protected]>
21300 M:      Masami Hiramatsu <[email protected]>
21301 R:      Karol Herbst <[email protected]>
21302 R:      Pekka Paalanen <[email protected]>
21303 L:      [email protected]
21304 L:      [email protected]
21305 S:      Maintained
21306 F:      arch/x86/mm/kmmio.c
21307 F:      arch/x86/mm/mmio-mod.c
21308 F:      arch/x86/mm/testmmiotrace.c
21309 F:      include/linux/mmiotrace.h
21310 F:      kernel/trace/trace_mmiotrace.c
21311
21312 TRACING OS NOISE / LATENCY TRACERS
21313 M:      Steven Rostedt <[email protected]>
21314 M:      Daniel Bristot de Oliveira <[email protected]>
21315 S:      Maintained
21316 F:      kernel/trace/trace_osnoise.c
21317 F:      include/trace/events/osnoise.h
21318 F:      kernel/trace/trace_hwlat.c
21319 F:      kernel/trace/trace_irqsoff.c
21320 F:      kernel/trace/trace_sched_wakeup.c
21321 F:      Documentation/trace/osnoise-tracer.rst
21322 F:      Documentation/trace/timerlat-tracer.rst
21323 F:      Documentation/trace/hwlat_detector.rst
21324 F:      arch/*/kernel/trace.c
21325
21326 Real-time Linux Analysis (RTLA) tools
21327 M:      Daniel Bristot de Oliveira <[email protected]>
21328 M:      Steven Rostedt <[email protected]>
21329 L:      [email protected]
21330 S:      Maintained
21331 F:      Documentation/tools/rtla/
21332 F:      tools/tracing/rtla/
21333
21334 TECHNICAL ADVISORY BOARD PROCESS DOCS
21335 M:      "Theodore Ts'o" <[email protected]>
21336 M:      Greg Kroah-Hartman <[email protected]>
21337 L:      [email protected]
21338 S:      Maintained
21339 F:      Documentation/process/researcher-guidelines.rst
21340 F:      Documentation/process/contribution-maturity-model.rst
21341
21342 TRADITIONAL CHINESE DOCUMENTATION
21343 M:      Hu Haowen <[email protected]>
21344 L:      [email protected] (moderated for non-subscribers)
21345 S:      Maintained
21346 W:      https://github.com/srcres258/linux-doc
21347 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
21348 F:      Documentation/translations/zh_TW/
21349
21350 TTY LAYER
21351 M:      Greg Kroah-Hartman <[email protected]>
21352 M:      Jiri Slaby <[email protected]>
21353 S:      Supported
21354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
21355 F:      Documentation/driver-api/serial/
21356 F:      drivers/tty/
21357 F:      drivers/tty/serial/serial_core.c
21358 F:      include/linux/selection.h
21359 F:      include/linux/serial.h
21360 F:      include/linux/serial_core.h
21361 F:      include/linux/sysrq.h
21362 F:      include/linux/tty*.h
21363 F:      include/linux/vt.h
21364 F:      include/linux/vt_*.h
21365 F:      include/uapi/linux/serial.h
21366 F:      include/uapi/linux/serial_core.h
21367 F:      include/uapi/linux/tty.h
21368
21369 TUA9001 MEDIA DRIVER
21370 M:      Antti Palosaari <[email protected]>
21371 L:      [email protected]
21372 S:      Maintained
21373 W:      https://linuxtv.org
21374 W:      http://palosaari.fi/linux/
21375 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21376 T:      git git://linuxtv.org/anttip/media_tree.git
21377 F:      drivers/media/tuners/tua9001*
21378
21379 TULIP NETWORK DRIVERS
21380 L:      [email protected]
21381 L:      [email protected]
21382 S:      Orphan
21383 F:      drivers/net/ethernet/dec/tulip/
21384
21385 TUN/TAP driver
21386 M:      Maxim Krasnyansky <[email protected]>
21387 S:      Maintained
21388 W:      http://vtun.sourceforge.net/tun
21389 F:      Documentation/networking/tuntap.rst
21390 F:      arch/um/os-Linux/drivers/
21391
21392 TURBOCHANNEL SUBSYSTEM
21393 M:      "Maciej W. Rozycki" <[email protected]>
21394 M:      Ralf Baechle <[email protected]>
21395 L:      [email protected]
21396 S:      Maintained
21397 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
21398 F:      drivers/tc/
21399 F:      include/linux/tc.h
21400
21401 TURBOSTAT UTILITY
21402 M:      "Len Brown" <[email protected]>
21403 L:      [email protected]
21404 S:      Supported
21405 Q:      https://patchwork.kernel.org/project/linux-pm/list/
21406 B:      https://bugzilla.kernel.org
21407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
21408 F:      tools/power/x86/turbostat/
21409
21410 TW5864 VIDEO4LINUX DRIVER
21411 M:      Bluecherry Maintainers <[email protected]>
21412 M:      Anton Sviridenko <[email protected]>
21413 M:      Andrey Utkin <[email protected]>
21414 M:      Andrey Utkin <[email protected]>
21415 L:      [email protected]
21416 S:      Supported
21417 F:      drivers/media/pci/tw5864/
21418
21419 TW68 VIDEO4LINUX DRIVER
21420 M:      Hans Verkuil <[email protected]>
21421 L:      [email protected]
21422 S:      Odd Fixes
21423 W:      https://linuxtv.org
21424 T:      git git://linuxtv.org/media_tree.git
21425 F:      drivers/media/pci/tw68/
21426
21427 TW686X VIDEO4LINUX DRIVER
21428 M:      Ezequiel Garcia <[email protected]>
21429 L:      [email protected]
21430 S:      Maintained
21431 W:      http://linuxtv.org
21432 T:      git git://linuxtv.org/media_tree.git
21433 F:      drivers/media/pci/tw686x/
21434
21435 U-BOOT ENVIRONMENT VARIABLES
21436 M:      Rafał Miłecki <[email protected]>
21437 S:      Maintained
21438 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
21439 F:      drivers/nvmem/u-boot-env.c
21440
21441 UACCE ACCELERATOR FRAMEWORK
21442 M:      Zhangfei Gao <[email protected]>
21443 M:      Zhou Wang <[email protected]>
21444 L:      [email protected]
21445 L:      [email protected]
21446 S:      Maintained
21447 F:      Documentation/ABI/testing/sysfs-driver-uacce
21448 F:      Documentation/misc-devices/uacce.rst
21449 F:      drivers/misc/uacce/
21450 F:      include/linux/uacce.h
21451 F:      include/uapi/misc/uacce/
21452
21453 UBI FILE SYSTEM (UBIFS)
21454 M:      Richard Weinberger <[email protected]>
21455 L:      [email protected]
21456 S:      Supported
21457 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
21458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21460 F:      Documentation/ABI/testing/sysfs-fs-ubifs
21461 F:      Documentation/filesystems/ubifs-authentication.rst
21462 F:      Documentation/filesystems/ubifs.rst
21463 F:      fs/ubifs/
21464
21465 UBLK USERSPACE BLOCK DRIVER
21466 M:      Ming Lei <[email protected]>
21467 L:      [email protected]
21468 S:      Maintained
21469 F:      Documentation/block/ublk.rst
21470 F:      drivers/block/ublk_drv.c
21471 F:      include/uapi/linux/ublk_cmd.h
21472
21473 UCLINUX (M68KNOMMU AND COLDFIRE)
21474 M:      Greg Ungerer <[email protected]>
21475 L:      [email protected]
21476 L:      [email protected]  (subscribers-only)
21477 S:      Maintained
21478 W:      http://www.linux-m68k.org/
21479 W:      http://www.uclinux.org/
21480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
21481 F:      arch/m68k/*/*_no.*
21482 F:      arch/m68k/68*/
21483 F:      arch/m68k/coldfire/
21484 F:      arch/m68k/include/asm/*_no.*
21485
21486 UDF FILESYSTEM
21487 M:      Jan Kara <[email protected]>
21488 S:      Maintained
21489 F:      Documentation/filesystems/udf.rst
21490 F:      fs/udf/
21491
21492 UDRAW TABLET
21493 M:      Bastien Nocera <[email protected]>
21494 L:      [email protected]
21495 S:      Maintained
21496 F:      drivers/hid/hid-udraw-ps3.c
21497
21498 UFS FILESYSTEM
21499 M:      Evgeniy Dushistov <[email protected]>
21500 S:      Maintained
21501 F:      Documentation/admin-guide/ufs.rst
21502 F:      fs/ufs/
21503
21504 UHID USERSPACE HID IO DRIVER
21505 M:      David Rheinsberg <[email protected]>
21506 L:      [email protected]
21507 S:      Maintained
21508 F:      drivers/hid/uhid.c
21509 F:      include/uapi/linux/uhid.h
21510
21511 ULPI BUS
21512 M:      Heikki Krogerus <[email protected]>
21513 L:      [email protected]
21514 S:      Maintained
21515 F:      drivers/usb/common/ulpi.c
21516 F:      include/linux/ulpi/
21517
21518 UNICODE SUBSYSTEM
21519 M:      Gabriel Krisman Bertazi <[email protected]>
21520 L:      [email protected]
21521 S:      Supported
21522 F:      fs/unicode/
21523
21524 UNIFDEF
21525 M:      Tony Finch <[email protected]>
21526 S:      Maintained
21527 W:      http://dotat.at/prog/unifdef
21528 F:      scripts/unifdef.c
21529
21530 UNIFORM CDROM DRIVER
21531 M:      Phillip Potter <[email protected]>
21532 S:      Maintained
21533 F:      Documentation/cdrom/
21534 F:      drivers/cdrom/cdrom.c
21535 F:      include/linux/cdrom.h
21536 F:      include/uapi/linux/cdrom.h
21537
21538 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
21539 R:      Alim Akhtar <[email protected]>
21540 R:      Avri Altman <[email protected]>
21541 R:      Bart Van Assche <[email protected]>
21542 L:      [email protected]
21543 S:      Supported
21544 F:      Documentation/devicetree/bindings/ufs/
21545 F:      Documentation/scsi/ufs.rst
21546 F:      drivers/ufs/core/
21547
21548 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
21549 M:      Pedro Sousa <[email protected]>
21550 L:      [email protected]
21551 S:      Supported
21552 F:      drivers/ufs/host/*dwc*
21553
21554 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER EXYNOS HOOKS
21555 M:      Alim Akhtar <[email protected]>
21556 L:      [email protected]
21557 S:      Maintained
21558 F:      drivers/ufs/host/ufs-exynos*
21559
21560 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
21561 M:      Stanley Chu <[email protected]>
21562 L:      [email protected]
21563 L:      [email protected] (moderated for non-subscribers)
21564 S:      Maintained
21565 F:      drivers/ufs/host/ufs-mediatek*
21566
21567 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER QUALCOMM HOOKS
21568 M:      Manivannan Sadhasivam <[email protected]>
21569 L:      [email protected]
21570 L:      [email protected]
21571 S:      Maintained
21572 F:      Documentation/devicetree/bindings/ufs/qcom,ufs.yaml
21573 F:      drivers/ufs/host/ufs-qcom*
21574
21575 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
21576 M:      Yoshihiro Shimoda <[email protected]>
21577 L:      [email protected]
21578 L:      [email protected]
21579 S:      Maintained
21580 F:      drivers/ufs/host/ufs-renesas.c
21581
21582 UNSORTED BLOCK IMAGES (UBI)
21583 M:      Richard Weinberger <[email protected]>
21584 L:      [email protected]
21585 S:      Supported
21586 W:      http://www.linux-mtd.infradead.org/
21587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21589 F:      drivers/mtd/ubi/
21590 F:      include/linux/mtd/ubi.h
21591 F:      include/uapi/mtd/ubi-user.h
21592
21593 USB "USBNET" DRIVER FRAMEWORK
21594 M:      Oliver Neukum <[email protected]>
21595 L:      [email protected]
21596 S:      Maintained
21597 W:      http://www.linux-usb.org/usbnet
21598 F:      drivers/net/usb/usbnet.c
21599 F:      include/linux/usb/usbnet.h
21600
21601 USB ACM DRIVER
21602 M:      Oliver Neukum <[email protected]>
21603 L:      [email protected]
21604 S:      Maintained
21605 F:      Documentation/usb/acm.rst
21606 F:      drivers/usb/class/cdc-acm.*
21607
21608 USB APPLE MFI FASTCHARGE DRIVER
21609 M:      Bastien Nocera <[email protected]>
21610 L:      [email protected]
21611 S:      Maintained
21612 F:      drivers/usb/misc/apple-mfi-fastcharge.c
21613
21614 USB AR5523 WIRELESS DRIVER
21615 M:      Pontus Fuchs <[email protected]>
21616 L:      [email protected]
21617 S:      Maintained
21618 F:      drivers/net/wireless/ath/ar5523/
21619
21620 USB ATTACHED SCSI
21621 M:      Oliver Neukum <[email protected]>
21622 L:      [email protected]
21623 L:      [email protected]
21624 S:      Maintained
21625 F:      drivers/usb/storage/uas.c
21626
21627 USB CDC ETHERNET DRIVER
21628 M:      Oliver Neukum <[email protected]>
21629 L:      [email protected]
21630 S:      Maintained
21631 F:      drivers/net/usb/cdc_*.c
21632 F:      include/uapi/linux/usb/cdc.h
21633
21634 USB CHAOSKEY DRIVER
21635 M:      Keith Packard <[email protected]>
21636 L:      [email protected]
21637 S:      Maintained
21638 F:      drivers/usb/misc/chaoskey.c
21639
21640 USB CYPRESS C67X00 DRIVER
21641 L:      [email protected]
21642 S:      Orphan
21643 F:      drivers/usb/c67x00/
21644
21645 USB DAVICOM DM9601 DRIVER
21646 M:      Peter Korsgaard <[email protected]>
21647 L:      [email protected]
21648 S:      Maintained
21649 W:      http://www.linux-usb.org/usbnet
21650 F:      drivers/net/usb/dm9601.c
21651
21652 USB EHCI DRIVER
21653 M:      Alan Stern <[email protected]>
21654 L:      [email protected]
21655 S:      Maintained
21656 F:      Documentation/usb/ehci.rst
21657 F:      drivers/usb/host/ehci*
21658
21659 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21660 M:      Jiri Kosina <[email protected]>
21661 M:      Benjamin Tissoires <[email protected]>
21662 L:      [email protected]
21663 S:      Maintained
21664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21665 F:      Documentation/hid/hiddev.rst
21666 F:      drivers/hid/usbhid/
21667
21668 USB INTEL XHCI ROLE MUX DRIVER
21669 M:      Hans de Goede <[email protected]>
21670 L:      [email protected]
21671 S:      Maintained
21672 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
21673
21674 USB IP DRIVER FOR HISILICON KIRIN 960
21675 M:      Yu Chen <[email protected]>
21676 M:      Binghui Wang <[email protected]>
21677 L:      [email protected]
21678 S:      Maintained
21679 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21680 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
21681
21682 USB IP DRIVER FOR HISILICON KIRIN 970
21683 M:      Mauro Carvalho Chehab <[email protected]>
21684 L:      [email protected]
21685 S:      Maintained
21686 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21687 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
21688
21689 USB ISP116X DRIVER
21690 M:      Olav Kongas <[email protected]>
21691 L:      [email protected]
21692 S:      Maintained
21693 F:      drivers/usb/host/isp116x*
21694 F:      include/linux/usb/isp116x.h
21695
21696 USB ISP1760 DRIVER
21697 M:      Rui Miguel Silva <[email protected]>
21698 L:      [email protected]
21699 S:      Maintained
21700 F:      drivers/usb/isp1760/*
21701 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21702
21703 USB LAN78XX ETHERNET DRIVER
21704 M:      Woojung Huh <[email protected]>
21705 M:      [email protected]
21706 L:      [email protected]
21707 S:      Maintained
21708 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21709 F:      drivers/net/usb/lan78xx.*
21710 F:      include/dt-bindings/net/microchip-lan78xx.h
21711
21712 USB MASS STORAGE DRIVER
21713 M:      Alan Stern <[email protected]>
21714 L:      [email protected]
21715 L:      [email protected]
21716 S:      Maintained
21717 F:      drivers/usb/storage/
21718
21719 USB MIDI DRIVER
21720 M:      Clemens Ladisch <[email protected]>
21721 L:      [email protected] (moderated for non-subscribers)
21722 S:      Maintained
21723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21724 F:      sound/usb/midi.*
21725
21726 USB NETWORKING DRIVERS
21727 L:      [email protected]
21728 S:      Odd Fixes
21729 F:      drivers/net/usb/
21730
21731 USB OHCI DRIVER
21732 M:      Alan Stern <[email protected]>
21733 L:      [email protected]
21734 S:      Maintained
21735 F:      Documentation/usb/ohci.rst
21736 F:      drivers/usb/host/ohci*
21737
21738 USB OTG FSM (Finite State Machine)
21739 M:      Peter Chen <[email protected]>
21740 L:      [email protected]
21741 S:      Maintained
21742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21743 F:      drivers/usb/common/usb-otg-fsm.c
21744
21745 USB OVER IP DRIVER
21746 M:      Valentina Manea <[email protected]>
21747 M:      Shuah Khan <[email protected]>
21748 M:      Shuah Khan <[email protected]>
21749 R:      Hongren Zheng <[email protected]>
21750 L:      [email protected]
21751 S:      Maintained
21752 F:      Documentation/usb/usbip_protocol.rst
21753 F:      drivers/usb/usbip/
21754 F:      tools/testing/selftests/drivers/usb/usbip/
21755 F:      tools/usb/usbip/
21756
21757 USB PEGASUS DRIVER
21758 M:      Petko Manolov <[email protected]>
21759 L:      [email protected]
21760 L:      [email protected]
21761 S:      Maintained
21762 W:      https://github.com/petkan/pegasus
21763 T:      git https://github.com/petkan/pegasus.git
21764 F:      drivers/net/usb/pegasus.*
21765
21766 USB PRINTER DRIVER (usblp)
21767 M:      Pete Zaitcev <[email protected]>
21768 L:      [email protected]
21769 S:      Supported
21770 F:      drivers/usb/class/usblp.c
21771
21772 USB RAW GADGET DRIVER
21773 R:      Andrey Konovalov <[email protected]>
21774 L:      [email protected]
21775 S:      Maintained
21776 F:      Documentation/usb/raw-gadget.rst
21777 F:      drivers/usb/gadget/legacy/raw_gadget.c
21778 F:      include/uapi/linux/usb/raw_gadget.h
21779
21780 USB QMI WWAN NETWORK DRIVER
21781 M:      Bjørn Mork <[email protected]>
21782 L:      [email protected]
21783 S:      Maintained
21784 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21785 F:      drivers/net/usb/qmi_wwan.c
21786
21787 USB RTL8150 DRIVER
21788 M:      Petko Manolov <[email protected]>
21789 L:      [email protected]
21790 L:      [email protected]
21791 S:      Maintained
21792 W:      https://github.com/petkan/rtl8150
21793 T:      git https://github.com/petkan/rtl8150.git
21794 F:      drivers/net/usb/rtl8150.c
21795
21796 USB SERIAL SUBSYSTEM
21797 M:      Johan Hovold <[email protected]>
21798 L:      [email protected]
21799 S:      Maintained
21800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21801 F:      Documentation/usb/usb-serial.rst
21802 F:      drivers/usb/serial/
21803 F:      include/linux/usb/serial.h
21804
21805 USB SMSC75XX ETHERNET DRIVER
21806 M:      Steve Glendinning <[email protected]>
21807 L:      [email protected]
21808 S:      Maintained
21809 F:      drivers/net/usb/smsc75xx.*
21810
21811 USB SMSC95XX ETHERNET DRIVER
21812 M:      Steve Glendinning <[email protected]>
21813 M:      [email protected]
21814 L:      [email protected]
21815 S:      Maintained
21816 F:      drivers/net/usb/smsc95xx.*
21817
21818 USB SUBSYSTEM
21819 M:      Greg Kroah-Hartman <[email protected]>
21820 L:      [email protected]
21821 S:      Supported
21822 W:      http://www.linux-usb.org
21823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21824 F:      Documentation/devicetree/bindings/usb/
21825 F:      Documentation/usb/
21826 F:      drivers/usb/
21827 F:      include/dt-bindings/usb/
21828 F:      include/linux/usb.h
21829 F:      include/linux/usb/
21830
21831 USB TYPEC BUS FOR ALTERNATE MODES
21832 M:      Heikki Krogerus <[email protected]>
21833 L:      [email protected]
21834 S:      Maintained
21835 F:      Documentation/ABI/testing/sysfs-bus-typec
21836 F:      Documentation/driver-api/usb/typec_bus.rst
21837 F:      drivers/usb/typec/altmodes/
21838 F:      include/linux/usb/typec_altmode.h
21839
21840 USB TYPEC CLASS
21841 M:      Heikki Krogerus <[email protected]>
21842 L:      [email protected]
21843 S:      Maintained
21844 F:      Documentation/ABI/testing/sysfs-class-typec
21845 F:      Documentation/driver-api/usb/typec.rst
21846 F:      drivers/usb/typec/
21847 F:      include/linux/usb/typec.h
21848
21849 USB TYPEC INTEL PMC MUX DRIVER
21850 M:      Heikki Krogerus <[email protected]>
21851 L:      [email protected]
21852 S:      Maintained
21853 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21854 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21855
21856 USB TYPEC PI3USB30532 MUX DRIVER
21857 M:      Hans de Goede <[email protected]>
21858 L:      [email protected]
21859 S:      Maintained
21860 F:      drivers/usb/typec/mux/pi3usb30532.c
21861
21862 USB TYPEC PORT CONTROLLER DRIVERS
21863 M:      Guenter Roeck <[email protected]>
21864 L:      [email protected]
21865 S:      Maintained
21866 F:      drivers/usb/typec/tcpm/
21867
21868 USB UHCI DRIVER
21869 M:      Alan Stern <[email protected]>
21870 L:      [email protected]
21871 S:      Maintained
21872 F:      drivers/usb/host/uhci*
21873
21874 USB VIDEO CLASS
21875 M:      Laurent Pinchart <[email protected]>
21876 L:      [email protected]
21877 S:      Maintained
21878 W:      http://www.ideasonboard.org/uvc/
21879 T:      git git://linuxtv.org/media_tree.git
21880 F:      drivers/media/usb/uvc/
21881 F:      include/uapi/linux/uvcvideo.h
21882
21883 USB WEBCAM GADGET
21884 M:      Laurent Pinchart <[email protected]>
21885 M:      Daniel Scally <[email protected]>
21886 L:      [email protected]
21887 S:      Maintained
21888 F:      drivers/usb/gadget/function/*uvc*
21889 F:      drivers/usb/gadget/legacy/webcam.c
21890 F:      include/uapi/linux/usb/g_uvc.h
21891
21892 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21893 M:      Jussi Kivilinna <[email protected]>
21894 L:      [email protected]
21895 S:      Maintained
21896 F:      drivers/net/wireless/legacy/rndis_wlan.c
21897
21898 USB XHCI DRIVER
21899 M:      Mathias Nyman <[email protected]>
21900 L:      [email protected]
21901 S:      Supported
21902 F:      drivers/usb/host/pci-quirks*
21903 F:      drivers/usb/host/xhci*
21904
21905 USB ZD1201 DRIVER
21906 L:      [email protected]
21907 S:      Orphan
21908 W:      http://linux-lc100020.sourceforge.net
21909 F:      drivers/net/wireless/zydas/zd1201.*
21910
21911 USER DATAGRAM PROTOCOL (UDP)
21912 M:      Willem de Bruijn <[email protected]>
21913 S:      Maintained
21914 F:      include/linux/udp.h
21915 F:      net/ipv4/udp.c
21916 F:      net/ipv6/udp.c
21917
21918 USER-MODE LINUX (UML)
21919 M:      Richard Weinberger <[email protected]>
21920 M:      Anton Ivanov <[email protected]>
21921 M:      Johannes Berg <[email protected]>
21922 L:      [email protected]
21923 S:      Maintained
21924 W:      http://user-mode-linux.sourceforge.net
21925 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21928 F:      Documentation/virt/uml/
21929 F:      arch/um/
21930 F:      arch/x86/um/
21931 F:      fs/hostfs/
21932
21933 USERSPACE COPYIN/COPYOUT (UIOVEC)
21934 M:      Alexander Viro <[email protected]>
21935 S:      Maintained
21936 F:      include/linux/uio.h
21937 F:      lib/iov_iter.c
21938
21939 USERSPACE DMA BUFFER DRIVER
21940 M:      Gerd Hoffmann <[email protected]>
21941 L:      [email protected]
21942 S:      Maintained
21943 T:      git git://anongit.freedesktop.org/drm/drm-misc
21944 F:      drivers/dma-buf/udmabuf.c
21945 F:      include/uapi/linux/udmabuf.h
21946
21947 USERSPACE I/O (UIO)
21948 M:      Greg Kroah-Hartman <[email protected]>
21949 S:      Maintained
21950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21951 F:      Documentation/driver-api/uio-howto.rst
21952 F:      drivers/uio/
21953 F:      include/linux/uio_driver.h
21954
21955 UTIL-LINUX PACKAGE
21956 M:      Karel Zak <[email protected]>
21957 L:      [email protected]
21958 S:      Maintained
21959 W:      http://en.wikipedia.org/wiki/Util-linux
21960 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21961
21962 UUID HELPERS
21963 R:      Andy Shevchenko <[email protected]>
21964 L:      [email protected]
21965 S:      Maintained
21966 F:      include/linux/uuid.h
21967 F:      lib/test_uuid.c
21968 F:      lib/uuid.c
21969
21970 UV SYSFS DRIVER
21971 M:      Justin Ernst <[email protected]>
21972 L:      [email protected]
21973 S:      Maintained
21974 F:      drivers/platform/x86/uv_sysfs.c
21975
21976 UVESAFB DRIVER
21977 M:      Michal Januszewski <[email protected]>
21978 L:      [email protected]
21979 S:      Maintained
21980 W:      https://github.com/mjanusz/v86d
21981 F:      Documentation/fb/uvesafb.rst
21982 F:      drivers/video/fbdev/uvesafb.*
21983
21984 Ux500 CLOCK DRIVERS
21985 M:      Ulf Hansson <[email protected]>
21986 L:      [email protected]
21987 L:      [email protected] (moderated for non-subscribers)
21988 S:      Maintained
21989 F:      drivers/clk/ux500/
21990
21991 VF610 NAND DRIVER
21992 M:      Stefan Agner <[email protected]>
21993 L:      [email protected]
21994 S:      Supported
21995 F:      drivers/mtd/nand/raw/vf610_nfc.c
21996
21997 VFAT/FAT/MSDOS FILESYSTEM
21998 M:      OGAWA Hirofumi <[email protected]>
21999 S:      Maintained
22000 F:      Documentation/filesystems/vfat.rst
22001 F:      fs/fat/
22002 F:      tools/testing/selftests/filesystems/fat/
22003
22004 VFIO DRIVER
22005 M:      Alex Williamson <[email protected]>
22006 L:      [email protected]
22007 S:      Maintained
22008 T:      git https://github.com/awilliam/linux-vfio.git
22009 F:      Documentation/ABI/testing/sysfs-devices-vfio-dev
22010 F:      Documentation/driver-api/vfio.rst
22011 F:      drivers/vfio/
22012 F:      include/linux/vfio.h
22013 F:      include/linux/vfio_pci_core.h
22014 F:      include/uapi/linux/vfio.h
22015
22016 VFIO FSL-MC DRIVER
22017 M:      Diana Craciun <[email protected]>
22018 L:      [email protected]
22019 S:      Maintained
22020 F:      drivers/vfio/fsl-mc/
22021
22022 VFIO HISILICON PCI DRIVER
22023 M:      Longfang Liu <[email protected]>
22024 M:      Shameer Kolothum <[email protected]>
22025 L:      [email protected]
22026 S:      Maintained
22027 F:      drivers/vfio/pci/hisilicon/
22028
22029 VFIO MEDIATED DEVICE DRIVERS
22030 M:      Kirti Wankhede <[email protected]>
22031 L:      [email protected]
22032 S:      Maintained
22033 F:      Documentation/driver-api/vfio-mediated-device.rst
22034 F:      drivers/vfio/mdev/
22035 F:      include/linux/mdev.h
22036 F:      samples/vfio-mdev/
22037
22038 VFIO PCI DEVICE SPECIFIC DRIVERS
22039 R:      Jason Gunthorpe <[email protected]>
22040 R:      Yishai Hadas <[email protected]>
22041 R:      Shameer Kolothum <[email protected]>
22042 R:      Kevin Tian <[email protected]>
22043 L:      [email protected]
22044 S:      Maintained
22045 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
22046 F:      drivers/vfio/pci/*/
22047
22048 VFIO PLATFORM DRIVER
22049 M:      Eric Auger <[email protected]>
22050 L:      [email protected]
22051 S:      Maintained
22052 F:      drivers/vfio/platform/
22053
22054 VFIO MLX5 PCI DRIVER
22055 M:      Yishai Hadas <[email protected]>
22056 L:      [email protected]
22057 S:      Maintained
22058 F:      drivers/vfio/pci/mlx5/
22059
22060 VGA_SWITCHEROO
22061 R:      Lukas Wunner <[email protected]>
22062 S:      Maintained
22063 T:      git git://anongit.freedesktop.org/drm/drm-misc
22064 F:      Documentation/gpu/vga-switcheroo.rst
22065 F:      drivers/gpu/vga/vga_switcheroo.c
22066 F:      include/linux/vga_switcheroo.h
22067
22068 VIA RHINE NETWORK DRIVER
22069 S:      Maintained
22070 M:      Kevin Brace <[email protected]>
22071 F:      drivers/net/ethernet/via/via-rhine.c
22072
22073 VIA SD/MMC CARD CONTROLLER DRIVER
22074 M:      Bruce Chang <[email protected]>
22075 M:      Harald Welte <[email protected]>
22076 S:      Maintained
22077 F:      drivers/mmc/host/via-sdmmc.c
22078
22079 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
22080 M:      Florian Tobias Schandinat <[email protected]>
22081 L:      [email protected]
22082 S:      Maintained
22083 F:      drivers/video/fbdev/via/
22084 F:      include/linux/via-core.h
22085 F:      include/linux/via-gpio.h
22086 F:      include/linux/via_i2c.h
22087
22088 VIA VELOCITY NETWORK DRIVER
22089 M:      Francois Romieu <[email protected]>
22090 L:      [email protected]
22091 S:      Maintained
22092 F:      drivers/net/ethernet/via/via-velocity.*
22093
22094 VICODEC VIRTUAL CODEC DRIVER
22095 M:      Hans Verkuil <[email protected]>
22096 L:      [email protected]
22097 S:      Maintained
22098 W:      https://linuxtv.org
22099 T:      git git://linuxtv.org/media_tree.git
22100 F:      drivers/media/test-drivers/vicodec/*
22101
22102 VIDEO I2C POLLING DRIVER
22103 M:      Matt Ranostay <[email protected]>
22104 L:      [email protected]
22105 S:      Maintained
22106 F:      drivers/media/i2c/video-i2c.c
22107
22108 VIDEO MULTIPLEXER DRIVER
22109 M:      Philipp Zabel <[email protected]>
22110 L:      [email protected]
22111 S:      Maintained
22112 F:      drivers/media/platform/video-mux.c
22113
22114 VIDEOBUF2 FRAMEWORK
22115 M:      Tomasz Figa <[email protected]>
22116 M:      Marek Szyprowski <[email protected]>
22117 L:      [email protected]
22118 S:      Maintained
22119 F:      drivers/media/common/videobuf2/*
22120 F:      include/media/videobuf2-*
22121
22122 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
22123 M:      Shuah Khan <[email protected]>
22124 R:      Kieran Bingham <[email protected]>
22125 L:      [email protected]
22126 S:      Maintained
22127 W:      https://linuxtv.org
22128 T:      git git://linuxtv.org/media_tree.git
22129 F:      drivers/media/test-drivers/vimc/*
22130
22131 VIRT LIB
22132 M:      Alex Williamson <[email protected]>
22133 M:      Paolo Bonzini <[email protected]>
22134 L:      [email protected]
22135 S:      Supported
22136 F:      virt/lib/
22137
22138 VIRTIO AND VHOST VSOCK DRIVER
22139 M:      Stefan Hajnoczi <[email protected]>
22140 M:      Stefano Garzarella <[email protected]>
22141 L:      [email protected]
22142 L:      [email protected]
22143 L:      [email protected]
22144 S:      Maintained
22145 F:      drivers/vhost/vsock.c
22146 F:      include/linux/virtio_vsock.h
22147 F:      include/uapi/linux/virtio_vsock.h
22148 F:      net/vmw_vsock/virtio_transport.c
22149 F:      net/vmw_vsock/virtio_transport_common.c
22150
22151 VIRTIO BLOCK AND SCSI DRIVERS
22152 M:      "Michael S. Tsirkin" <[email protected]>
22153 M:      Jason Wang <[email protected]>
22154 R:      Paolo Bonzini <[email protected]>
22155 R:      Stefan Hajnoczi <[email protected]>
22156 L:      [email protected]
22157 S:      Maintained
22158 F:      drivers/block/virtio_blk.c
22159 F:      drivers/scsi/virtio_scsi.c
22160 F:      drivers/vhost/scsi.c
22161 F:      include/uapi/linux/virtio_blk.h
22162 F:      include/uapi/linux/virtio_scsi.h
22163
22164 VIRTIO CONSOLE DRIVER
22165 M:      Amit Shah <[email protected]>
22166 L:      [email protected]
22167 S:      Maintained
22168 F:      drivers/char/virtio_console.c
22169 F:      include/linux/virtio_console.h
22170 F:      include/uapi/linux/virtio_console.h
22171
22172 VIRTIO CORE AND NET DRIVERS
22173 M:      "Michael S. Tsirkin" <[email protected]>
22174 M:      Jason Wang <[email protected]>
22175 L:      [email protected]
22176 S:      Maintained
22177 F:      Documentation/ABI/testing/sysfs-bus-vdpa
22178 F:      Documentation/ABI/testing/sysfs-class-vduse
22179 F:      Documentation/devicetree/bindings/virtio/
22180 F:      Documentation/driver-api/virtio/
22181 F:      drivers/block/virtio_blk.c
22182 F:      drivers/crypto/virtio/
22183 F:      drivers/net/virtio_net.c
22184 F:      drivers/vdpa/
22185 F:      drivers/virtio/
22186 F:      include/linux/vdpa.h
22187 F:      include/linux/virtio*.h
22188 F:      include/uapi/linux/virtio_*.h
22189 F:      tools/virtio/
22190
22191 VISL VIRTUAL STATELESS DECODER DRIVER
22192 M:      Daniel Almeida <[email protected]>
22193 L:      [email protected]
22194 S:      Supported
22195 F:      drivers/media/test-drivers/visl
22196
22197 IFCVF VIRTIO DATA PATH ACCELERATOR
22198 R:      Zhu Lingshan <[email protected]>
22199 F:      drivers/vdpa/ifcvf/
22200
22201 SNET DPU VIRTIO DATA PATH ACCELERATOR
22202 R:      Alvaro Karsz <[email protected]>
22203 F:      drivers/vdpa/solidrun/
22204
22205 VIRTIO BALLOON
22206 M:      "Michael S. Tsirkin" <[email protected]>
22207 M:      David Hildenbrand <[email protected]>
22208 L:      [email protected]
22209 S:      Maintained
22210 F:      drivers/virtio/virtio_balloon.c
22211 F:      include/uapi/linux/virtio_balloon.h
22212 F:      include/linux/balloon_compaction.h
22213 F:      mm/balloon_compaction.c
22214
22215 VIRTIO CRYPTO DRIVER
22216 M:      Gonglei <[email protected]>
22217 L:      [email protected]
22218 L:      [email protected]
22219 S:      Maintained
22220 F:      drivers/crypto/virtio/
22221 F:      include/uapi/linux/virtio_crypto.h
22222
22223 VIRTIO DRIVERS FOR S390
22224 M:      Cornelia Huck <[email protected]>
22225 M:      Halil Pasic <[email protected]>
22226 M:      Eric Farman <[email protected]>
22227 L:      [email protected]
22228 L:      [email protected]
22229 L:      [email protected]
22230 S:      Supported
22231 F:      arch/s390/include/uapi/asm/virtio-ccw.h
22232 F:      drivers/s390/virtio/
22233
22234 VIRTIO FILE SYSTEM
22235 M:      Vivek Goyal <[email protected]>
22236 M:      Stefan Hajnoczi <[email protected]>
22237 M:      Miklos Szeredi <[email protected]>
22238 L:      [email protected]
22239 L:      [email protected]
22240 S:      Supported
22241 W:      https://virtio-fs.gitlab.io/
22242 F:      Documentation/filesystems/virtiofs.rst
22243 F:      fs/fuse/virtio_fs.c
22244 F:      include/uapi/linux/virtio_fs.h
22245
22246 VIRTIO GPIO DRIVER
22247 M:      Enrico Weigelt, metux IT consult <[email protected]>
22248 M:      Viresh Kumar <[email protected]>
22249 L:      [email protected]
22250 L:      [email protected]
22251 S:      Maintained
22252 F:      drivers/gpio/gpio-virtio.c
22253 F:      include/uapi/linux/virtio_gpio.h
22254
22255 VIRTIO GPU DRIVER
22256 M:      David Airlie <[email protected]>
22257 M:      Gerd Hoffmann <[email protected]>
22258 R:      Gurchetan Singh <[email protected]>
22259 R:      Chia-I Wu <[email protected]>
22260 L:      [email protected]
22261 L:      [email protected]
22262 S:      Maintained
22263 T:      git git://anongit.freedesktop.org/drm/drm-misc
22264 F:      drivers/gpu/drm/virtio/
22265 F:      include/uapi/linux/virtio_gpu.h
22266
22267 VIRTIO HOST (VHOST)
22268 M:      "Michael S. Tsirkin" <[email protected]>
22269 M:      Jason Wang <[email protected]>
22270 L:      [email protected]
22271 L:      [email protected]
22272 L:      [email protected]
22273 S:      Maintained
22274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
22275 F:      kernel/vhost_task.c
22276 F:      drivers/vhost/
22277 F:      include/linux/sched/vhost_task.h
22278 F:      include/linux/vhost_iotlb.h
22279 F:      include/uapi/linux/vhost.h
22280
22281 VIRTIO INPUT DRIVER
22282 M:      Gerd Hoffmann <[email protected]>
22283 S:      Maintained
22284 F:      drivers/virtio/virtio_input.c
22285 F:      include/uapi/linux/virtio_input.h
22286
22287 VIRTIO IOMMU DRIVER
22288 M:      Jean-Philippe Brucker <[email protected]>
22289 L:      [email protected]
22290 S:      Maintained
22291 F:      drivers/iommu/virtio-iommu.c
22292 F:      include/uapi/linux/virtio_iommu.h
22293
22294 VIRTIO MEM DRIVER
22295 M:      David Hildenbrand <[email protected]>
22296 L:      [email protected]
22297 S:      Maintained
22298 W:      https://virtio-mem.gitlab.io/
22299 F:      drivers/virtio/virtio_mem.c
22300 F:      include/uapi/linux/virtio_mem.h
22301
22302 VIRTIO SOUND DRIVER
22303 M:      Anton Yakovlev <[email protected]>
22304 M:      "Michael S. Tsirkin" <[email protected]>
22305 L:      [email protected]
22306 L:      [email protected] (moderated for non-subscribers)
22307 S:      Maintained
22308 F:      include/uapi/linux/virtio_snd.h
22309 F:      sound/virtio/*
22310
22311 VIRTIO I2C DRIVER
22312 M:      Conghui Chen <[email protected]>
22313 M:      Viresh Kumar <[email protected]>
22314 L:      [email protected]
22315 L:      [email protected]
22316 S:      Maintained
22317 F:      drivers/i2c/busses/i2c-virtio.c
22318 F:      include/uapi/linux/virtio_i2c.h
22319
22320 VIRTIO PMEM DRIVER
22321 M:      Pankaj Gupta <[email protected]>
22322 L:      [email protected]
22323 S:      Maintained
22324 F:      drivers/nvdimm/virtio_pmem.c
22325 F:      drivers/nvdimm/nd_virtio.c
22326
22327 VIRTUAL BOX GUEST DEVICE DRIVER
22328 M:      Hans de Goede <[email protected]>
22329 M:      Arnd Bergmann <[email protected]>
22330 M:      Greg Kroah-Hartman <[email protected]>
22331 S:      Maintained
22332 F:      drivers/virt/vboxguest/
22333 F:      include/linux/vbox_utils.h
22334 F:      include/uapi/linux/vbox*.h
22335
22336 VIRTUAL BOX SHARED FOLDER VFS DRIVER
22337 M:      Hans de Goede <[email protected]>
22338 L:      [email protected]
22339 S:      Maintained
22340 F:      fs/vboxsf/*
22341
22342 VIRTUAL SERIO DEVICE DRIVER
22343 M:      Stephen Chandler Paul <[email protected]>
22344 S:      Maintained
22345 F:      drivers/input/serio/userio.c
22346 F:      include/uapi/linux/userio.h
22347
22348 VIVID VIRTUAL VIDEO DRIVER
22349 M:      Hans Verkuil <[email protected]>
22350 L:      [email protected]
22351 S:      Maintained
22352 W:      https://linuxtv.org
22353 T:      git git://linuxtv.org/media_tree.git
22354 F:      drivers/media/test-drivers/vivid/*
22355
22356 VIDTV VIRTUAL DIGITAL TV DRIVER
22357 M:      Daniel W. S. Almeida <[email protected]>
22358 L:      [email protected]
22359 S:      Maintained
22360 W:      https://linuxtv.org
22361 T:      git git://linuxtv.org/media_tree.git
22362 F:      drivers/media/test-drivers/vidtv/*
22363
22364 VLYNQ BUS
22365 M:      Florian Fainelli <[email protected]>
22366 L:      [email protected] (subscribers-only)
22367 S:      Maintained
22368 F:      drivers/vlynq/vlynq.c
22369 F:      include/linux/vlynq.h
22370
22371 VME SUBSYSTEM
22372 M:      Martyn Welch <[email protected]>
22373 M:      Manohar Vanga <[email protected]>
22374 M:      Greg Kroah-Hartman <[email protected]>
22375 L:      [email protected]
22376 S:      Odd fixes
22377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22378 F:      Documentation/driver-api/vme.rst
22379 F:      drivers/staging/vme_user/
22380
22381 VM SOCKETS (AF_VSOCK)
22382 M:      Stefano Garzarella <[email protected]>
22383 L:      [email protected]
22384 L:      [email protected]
22385 S:      Maintained
22386 F:      drivers/net/vsockmon.c
22387 F:      include/net/af_vsock.h
22388 F:      include/uapi/linux/vm_sockets.h
22389 F:      include/uapi/linux/vm_sockets_diag.h
22390 F:      include/uapi/linux/vsockmon.h
22391 F:      net/vmw_vsock/
22392 F:      tools/testing/vsock/
22393
22394 VMWARE BALLOON DRIVER
22395 M:      Nadav Amit <[email protected]>
22396 R:      VMware PV-Drivers Reviewers <[email protected]>
22397 L:      [email protected]
22398 S:      Supported
22399 F:      drivers/misc/vmw_balloon.c
22400
22401 VMWARE HYPERVISOR INTERFACE
22402 M:      Srivatsa S. Bhat (VMware) <[email protected]>
22403 M:      Alexey Makhalov <[email protected]>
22404 R:      VMware PV-Drivers Reviewers <[email protected]>
22405 L:      [email protected]
22406 L:      [email protected]
22407 S:      Supported
22408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
22409 F:      arch/x86/include/asm/vmware.h
22410 F:      arch/x86/kernel/cpu/vmware.c
22411
22412 VMWARE PVRDMA DRIVER
22413 M:      Bryan Tan <[email protected]>
22414 M:      Vishnu Dasa <[email protected]>
22415 R:      VMware PV-Drivers Reviewers <[email protected]>
22416 L:      [email protected]
22417 S:      Supported
22418 F:      drivers/infiniband/hw/vmw_pvrdma/
22419
22420 VMWARE PVSCSI DRIVER
22421 M:      Vishal Bhakta <[email protected]>
22422 R:      VMware PV-Drivers Reviewers <[email protected]>
22423 L:      [email protected]
22424 S:      Supported
22425 F:      drivers/scsi/vmw_pvscsi.c
22426 F:      drivers/scsi/vmw_pvscsi.h
22427
22428 VMWARE VIRTUAL PTP CLOCK DRIVER
22429 M:      Srivatsa S. Bhat (VMware) <[email protected]>
22430 M:      Deep Shah <[email protected]>
22431 R:      Alexey Makhalov <[email protected]>
22432 R:      VMware PV-Drivers Reviewers <[email protected]>
22433 L:      [email protected]
22434 S:      Supported
22435 F:      drivers/ptp/ptp_vmw.c
22436
22437 VMWARE VMCI DRIVER
22438 M:      Bryan Tan <[email protected]>
22439 M:      Vishnu Dasa <[email protected]>
22440 R:      VMware PV-Drivers Reviewers <[email protected]>
22441 L:      [email protected]
22442 S:      Supported
22443 F:      drivers/misc/vmw_vmci/
22444 F:      include/linux/vmw_vmci*
22445
22446 VMWARE VMMOUSE SUBDRIVER
22447 M:      Zack Rusin <[email protected]>
22448 R:      VMware Graphics Reviewers <[email protected]>
22449 R:      VMware PV-Drivers Reviewers <[email protected]>
22450 L:      [email protected]
22451 S:      Supported
22452 F:      drivers/input/mouse/vmmouse.c
22453 F:      drivers/input/mouse/vmmouse.h
22454
22455 VMWARE VMXNET3 ETHERNET DRIVER
22456 M:      Ronak Doshi <[email protected]>
22457 R:      VMware PV-Drivers Reviewers <[email protected]>
22458 L:      [email protected]
22459 S:      Supported
22460 F:      drivers/net/vmxnet3/
22461
22462 VMWARE VSOCK VMCI TRANSPORT DRIVER
22463 M:      Bryan Tan <[email protected]>
22464 M:      Vishnu Dasa <[email protected]>
22465 R:      VMware PV-Drivers Reviewers <[email protected]>
22466 L:      [email protected]
22467 S:      Supported
22468 F:      net/vmw_vsock/vmci_transport*
22469
22470 VOCORE VOCORE2 BOARD
22471 M:      Harvey Hunt <[email protected]>
22472 L:      [email protected]
22473 S:      Maintained
22474 F:      arch/mips/boot/dts/ralink/vocore2.dts
22475
22476 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
22477 M:      Liam Girdwood <[email protected]>
22478 M:      Mark Brown <[email protected]>
22479 L:      [email protected]
22480 S:      Supported
22481 W:      http://www.slimlogic.co.uk/?p=48
22482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
22483 F:      Documentation/devicetree/bindings/regulator/
22484 F:      Documentation/power/regulator/
22485 F:      drivers/regulator/
22486 F:      include/dt-bindings/regulator/
22487 F:      include/linux/regulator/
22488 K:      regulator_get_optional
22489
22490 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
22491 R:      Matti Vaittinen <[email protected]>
22492 F:      drivers/regulator/irq_helpers.c
22493
22494 VRF
22495 M:      David Ahern <[email protected]>
22496 L:      [email protected]
22497 S:      Maintained
22498 F:      Documentation/networking/vrf.rst
22499 F:      drivers/net/vrf.c
22500
22501 VSPRINTF
22502 M:      Petr Mladek <[email protected]>
22503 M:      Steven Rostedt <[email protected]>
22504 M:      Sergey Senozhatsky <[email protected]>
22505 R:      Andy Shevchenko <[email protected]>
22506 R:      Rasmus Villemoes <[email protected]>
22507 S:      Maintained
22508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
22509 F:      Documentation/core-api/printk-formats.rst
22510 F:      lib/test_printf.c
22511 F:      lib/test_scanf.c
22512 F:      lib/vsprintf.c
22513
22514 VT1211 HARDWARE MONITOR DRIVER
22515 M:      Juerg Haefliger <[email protected]>
22516 L:      [email protected]
22517 S:      Maintained
22518 F:      Documentation/hwmon/vt1211.rst
22519 F:      drivers/hwmon/vt1211.c
22520
22521 VT8231 HARDWARE MONITOR DRIVER
22522 M:      Roger Lucas <[email protected]>
22523 L:      [email protected]
22524 S:      Maintained
22525 F:      drivers/hwmon/vt8231.c
22526
22527 VUB300 USB to SDIO/SD/MMC bridge chip
22528 L:      [email protected]
22529 S:      Orphan
22530 F:      drivers/mmc/host/vub300.c
22531
22532 W1 DALLAS'S 1-WIRE BUS
22533 M:      Evgeniy Polyakov <[email protected]>
22534 S:      Maintained
22535 F:      Documentation/devicetree/bindings/w1/
22536 F:      Documentation/w1/
22537 F:      drivers/w1/
22538 F:      include/linux/w1.h
22539
22540 W83791D HARDWARE MONITORING DRIVER
22541 M:      Marc Hulsman <[email protected]>
22542 L:      [email protected]
22543 S:      Maintained
22544 F:      Documentation/hwmon/w83791d.rst
22545 F:      drivers/hwmon/w83791d.c
22546
22547 W83793 HARDWARE MONITORING DRIVER
22548 M:      Rudolf Marek <[email protected]>
22549 L:      [email protected]
22550 S:      Maintained
22551 F:      Documentation/hwmon/w83793.rst
22552 F:      drivers/hwmon/w83793.c
22553
22554 W83795 HARDWARE MONITORING DRIVER
22555 M:      Jean Delvare <[email protected]>
22556 L:      [email protected]
22557 S:      Maintained
22558 F:      drivers/hwmon/w83795.c
22559
22560 W83L51xD SD/MMC CARD INTERFACE DRIVER
22561 M:      Pierre Ossman <[email protected]>
22562 S:      Maintained
22563 F:      drivers/mmc/host/wbsd.*
22564
22565 WACOM PROTOCOL 4 SERIAL TABLETS
22566 M:      Julian Squires <[email protected]>
22567 M:      Hans de Goede <[email protected]>
22568 L:      [email protected]
22569 S:      Maintained
22570 F:      drivers/input/tablet/wacom_serial4.c
22571
22572 WANGXUN ETHERNET DRIVER
22573 M:      Jiawen Wu <[email protected]>
22574 M:      Mengyuan Lou <[email protected]>
22575 W:      https://www.net-swift.com
22576 L:      [email protected]
22577 S:      Maintained
22578 F:      Documentation/networking/device_drivers/ethernet/wangxun/*
22579 F:      drivers/net/ethernet/wangxun/
22580
22581 WATCHDOG DEVICE DRIVERS
22582 M:      Wim Van Sebroeck <[email protected]>
22583 M:      Guenter Roeck <[email protected]>
22584 L:      [email protected]
22585 S:      Maintained
22586 W:      http://www.linux-watchdog.org/
22587 T:      git git://www.linux-watchdog.org/linux-watchdog.git
22588 F:      Documentation/devicetree/bindings/watchdog/
22589 F:      Documentation/watchdog/
22590 F:      drivers/watchdog/
22591 F:      include/linux/watchdog.h
22592 F:      include/uapi/linux/watchdog.h
22593 F:      include/trace/events/watchdog.h
22594
22595 WHISKEYCOVE PMIC GPIO DRIVER
22596 M:      Kuppuswamy Sathyanarayanan <[email protected]>
22597 L:      [email protected]
22598 S:      Maintained
22599 F:      drivers/gpio/gpio-wcove.c
22600
22601 WHWAVE RTC DRIVER
22602 M:      Dianlong Li <[email protected]>
22603 L:      [email protected]
22604 S:      Maintained
22605 F:      drivers/rtc/rtc-sd3078.c
22606
22607 WIIMOTE HID DRIVER
22608 M:      David Rheinsberg <[email protected]>
22609 L:      [email protected]
22610 S:      Maintained
22611 F:      drivers/hid/hid-wiimote*
22612
22613 WILOCITY WIL6210 WIRELESS DRIVER
22614 L:      [email protected]
22615 S:      Orphan
22616 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
22617 F:      drivers/net/wireless/ath/wil6210/
22618
22619 WINBOND CIR DRIVER
22620 M:      David Härdeman <[email protected]>
22621 S:      Maintained
22622 F:      drivers/media/rc/winbond-cir.c
22623
22624 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
22625 M:      William Breathitt Gray <[email protected]>
22626 L:      [email protected]
22627 S:      Maintained
22628 F:      drivers/watchdog/ebc-c384_wdt.c
22629
22630 WINSYSTEMS WS16C48 GPIO DRIVER
22631 M:      William Breathitt Gray <[email protected]>
22632 L:      [email protected]
22633 S:      Maintained
22634 F:      drivers/gpio/gpio-ws16c48.c
22635
22636 WIREGUARD SECURE NETWORK TUNNEL
22637 M:      Jason A. Donenfeld <[email protected]>
22638 L:      [email protected]
22639 L:      [email protected]
22640 S:      Maintained
22641 F:      drivers/net/wireguard/
22642 F:      tools/testing/selftests/wireguard/
22643
22644 WISTRON LAPTOP BUTTON DRIVER
22645 M:      Miloslav Trmac <[email protected]>
22646 S:      Maintained
22647 F:      drivers/input/misc/wistron_btns.c
22648
22649 WL3501 WIRELESS PCMCIA CARD DRIVER
22650 L:      [email protected]
22651 S:      Odd fixes
22652 F:      drivers/net/wireless/legacy/wl3501*
22653
22654 WOLFSON MICROELECTRONICS DRIVERS
22655 L:      [email protected]
22656 S:      Supported
22657 W:      https://github.com/CirrusLogic/linux-drivers/wiki
22658 T:      git https://github.com/CirrusLogic/linux-drivers.git
22659 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22660 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22661 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
22662 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22663 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
22664 F:      Documentation/devicetree/bindings/sound/wm*
22665 F:      Documentation/hwmon/wm83??.rst
22666 F:      arch/arm/mach-s3c/mach-crag6410*
22667 F:      drivers/clk/clk-wm83*.c
22668 F:      drivers/gpio/gpio-*wm*.c
22669 F:      drivers/gpio/gpio-arizona.c
22670 F:      drivers/hwmon/wm83??-hwmon.c
22671 F:      drivers/input/misc/wm831x-on.c
22672 F:      drivers/input/touchscreen/wm831x-ts.c
22673 F:      drivers/input/touchscreen/wm97*.c
22674 F:      drivers/leds/leds-wm83*.c
22675 F:      drivers/mfd/arizona*
22676 F:      drivers/mfd/cs47l24*
22677 F:      drivers/mfd/wm*.c
22678 F:      drivers/power/supply/wm83*.c
22679 F:      drivers/regulator/arizona*
22680 F:      drivers/regulator/wm8*.c
22681 F:      drivers/rtc/rtc-wm83*.c
22682 F:      drivers/video/backlight/wm83*_bl.c
22683 F:      drivers/watchdog/wm83*_wdt.c
22684 F:      include/linux/mfd/arizona/
22685 F:      include/linux/mfd/wm831x/
22686 F:      include/linux/mfd/wm8350/
22687 F:      include/linux/mfd/wm8400*
22688 F:      include/linux/regulator/arizona*
22689 F:      include/linux/wm97xx.h
22690 F:      include/sound/wm????.h
22691 F:      sound/soc/codecs/arizona*
22692 F:      sound/soc/codecs/cs47l24*
22693 F:      sound/soc/codecs/wm*
22694
22695 WORKQUEUE
22696 M:      Tejun Heo <[email protected]>
22697 R:      Lai Jiangshan <[email protected]>
22698 S:      Maintained
22699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22700 F:      Documentation/core-api/workqueue.rst
22701 F:      include/linux/workqueue.h
22702 F:      kernel/workqueue.c
22703
22704 WWAN DRIVERS
22705 M:      Loic Poulain <[email protected]>
22706 M:      Sergey Ryazanov <[email protected]>
22707 R:      Johannes Berg <[email protected]>
22708 L:      [email protected]
22709 S:      Maintained
22710 F:      drivers/net/wwan/
22711 F:      include/linux/wwan.h
22712 F:      include/uapi/linux/wwan.h
22713
22714 X-POWERS AXP288 PMIC DRIVERS
22715 M:      Hans de Goede <[email protected]>
22716 S:      Maintained
22717 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22718 N:      axp288
22719
22720 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22721 M:      Chen-Yu Tsai <[email protected]>
22722 L:      [email protected]
22723 S:      Maintained
22724 N:      axp[128]
22725
22726 X.25 STACK
22727 M:      Martin Schiller <[email protected]>
22728 L:      [email protected]
22729 S:      Maintained
22730 F:      Documentation/networking/lapb-module.rst
22731 F:      Documentation/networking/x25*
22732 F:      drivers/net/wan/hdlc_x25.c
22733 F:      drivers/net/wan/lapbether.c
22734 F:      include/*/lapb.h
22735 F:      include/net/x25*
22736 F:      include/uapi/linux/x25.h
22737 F:      net/lapb/
22738 F:      net/x25/
22739
22740 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22741 M:      Thomas Gleixner <[email protected]>
22742 M:      Ingo Molnar <[email protected]>
22743 M:      Borislav Petkov <[email protected]>
22744 M:      Dave Hansen <[email protected]>
22745 M:      [email protected]
22746 R:      "H. Peter Anvin" <[email protected]>
22747 L:      [email protected]
22748 S:      Maintained
22749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22750 F:      Documentation/devicetree/bindings/x86/
22751 F:      Documentation/arch/x86/
22752 F:      arch/x86/
22753
22754 X86 ENTRY CODE
22755 M:      Andy Lutomirski <[email protected]>
22756 L:      [email protected]
22757 S:      Maintained
22758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22759 F:      arch/x86/entry/
22760
22761 X86 HARDWARE VULNERABILITIES
22762 M:      Thomas Gleixner <[email protected]>
22763 M:      Borislav Petkov <[email protected]>
22764 M:      Peter Zijlstra <[email protected]>
22765 M:      Josh Poimboeuf <[email protected]>
22766 R:      Pawan Gupta <[email protected]>
22767 S:      Maintained
22768 F:      Documentation/admin-guide/hw-vuln/
22769 F:      arch/x86/include/asm/nospec-branch.h
22770 F:      arch/x86/kernel/cpu/bugs.c
22771
22772 X86 MCE INFRASTRUCTURE
22773 M:      Tony Luck <[email protected]>
22774 M:      Borislav Petkov <[email protected]>
22775 L:      [email protected]
22776 S:      Maintained
22777 F:      Documentation/ABI/testing/sysfs-mce
22778 F:      Documentation/arch/x86/x86_64/machinecheck.rst
22779 F:      arch/x86/kernel/cpu/mce/*
22780
22781 X86 MICROCODE UPDATE SUPPORT
22782 M:      Borislav Petkov <[email protected]>
22783 S:      Maintained
22784 F:      arch/x86/kernel/cpu/microcode/*
22785
22786 X86 MM
22787 M:      Dave Hansen <[email protected]>
22788 M:      Andy Lutomirski <[email protected]>
22789 M:      Peter Zijlstra <[email protected]>
22790 L:      [email protected]
22791 S:      Maintained
22792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22793 F:      arch/x86/mm/
22794
22795 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22796 M:      Hans de Goede <[email protected]>
22797 L:      [email protected]
22798 S:      Maintained
22799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22800 F:      drivers/platform/x86/x86-android-tablets/
22801
22802 X86 PLATFORM DRIVERS
22803 M:      Hans de Goede <[email protected]>
22804 M:      Mark Gross <[email protected]>
22805 L:      [email protected]
22806 S:      Maintained
22807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22808 F:      drivers/platform/olpc/
22809 F:      drivers/platform/x86/
22810 F:      include/linux/platform_data/x86/
22811
22812 X86 PLATFORM DRIVERS - ARCH
22813 R:      Darren Hart <[email protected]>
22814 R:      Andy Shevchenko <[email protected]>
22815 L:      [email protected]
22816 L:      [email protected]
22817 S:      Maintained
22818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22819 F:      arch/x86/platform
22820
22821 X86 PLATFORM UV HPE SUPERDOME FLEX
22822 M:      Steve Wahl <[email protected]>
22823 R:      Mike Travis <[email protected]>
22824 R:      Dimitri Sivanich <[email protected]>
22825 R:      Russ Anderson <[email protected]>
22826 S:      Supported
22827 F:      arch/x86/include/asm/uv/
22828 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22829 F:      arch/x86/platform/uv/
22830
22831 X86 STACK UNWINDING
22832 M:      Josh Poimboeuf <[email protected]>
22833 M:      Peter Zijlstra <[email protected]>
22834 S:      Supported
22835 F:      arch/x86/include/asm/unwind*.h
22836 F:      arch/x86/kernel/dumpstack.c
22837 F:      arch/x86/kernel/stacktrace.c
22838 F:      arch/x86/kernel/unwind_*.c
22839
22840 X86 VDSO
22841 M:      Andy Lutomirski <[email protected]>
22842 L:      [email protected]
22843 S:      Maintained
22844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22845 F:      arch/x86/entry/vdso/
22846
22847 XARRAY
22848 M:      Matthew Wilcox <[email protected]>
22849 L:      [email protected]
22850 S:      Supported
22851 F:      Documentation/core-api/xarray.rst
22852 F:      include/linux/idr.h
22853 F:      include/linux/xarray.h
22854 F:      lib/idr.c
22855 F:      lib/xarray.c
22856 F:      tools/testing/radix-tree
22857
22858 XBOX DVD IR REMOTE
22859 M:      Benjamin Valentin <[email protected]>
22860 S:      Maintained
22861 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22862 F:      drivers/media/rc/xbox_remote.c
22863
22864 XC2028/3028 TUNER DRIVER
22865 M:      Mauro Carvalho Chehab <[email protected]>
22866 L:      [email protected]
22867 S:      Maintained
22868 W:      https://linuxtv.org
22869 T:      git git://linuxtv.org/media_tree.git
22870 F:      drivers/media/tuners/xc2028.*
22871
22872 XDP (eXpress Data Path)
22873 M:      Alexei Starovoitov <[email protected]>
22874 M:      Daniel Borkmann <[email protected]>
22875 M:      David S. Miller <[email protected]>
22876 M:      Jakub Kicinski <[email protected]>
22877 M:      Jesper Dangaard Brouer <[email protected]>
22878 M:      John Fastabend <[email protected]>
22879 L:      [email protected]
22880 L:      [email protected]
22881 S:      Supported
22882 F:      include/net/xdp.h
22883 F:      include/net/xdp_priv.h
22884 F:      include/trace/events/xdp.h
22885 F:      kernel/bpf/cpumap.c
22886 F:      kernel/bpf/devmap.c
22887 F:      net/core/xdp.c
22888 F:      samples/bpf/xdp*
22889 F:      tools/testing/selftests/bpf/*xdp*
22890 F:      tools/testing/selftests/bpf/*/*xdp*
22891 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22892 F:      drivers/net/ethernet/*/*/*xdp*
22893 K:      (?:\b|_)xdp(?:\b|_)
22894
22895 XDP SOCKETS (AF_XDP)
22896 M:      Björn Töpel <[email protected]>
22897 M:      Magnus Karlsson <[email protected]>
22898 M:      Maciej Fijalkowski <[email protected]>
22899 R:      Jonathan Lemon <[email protected]>
22900 L:      [email protected]
22901 L:      [email protected]
22902 S:      Maintained
22903 F:      Documentation/networking/af_xdp.rst
22904 F:      include/net/xdp_sock*
22905 F:      include/net/xsk_buff_pool.h
22906 F:      include/uapi/linux/if_xdp.h
22907 F:      include/uapi/linux/xdp_diag.h
22908 F:      include/net/netns/xdp.h
22909 F:      net/xdp/
22910 F:      tools/testing/selftests/bpf/*xsk*
22911
22912 XEN BLOCK SUBSYSTEM
22913 M:      Roger Pau Monné <[email protected]>
22914 L:      [email protected] (moderated for non-subscribers)
22915 S:      Supported
22916 F:      drivers/block/xen*
22917 F:      drivers/block/xen-blkback/*
22918
22919 XEN HYPERVISOR ARM
22920 M:      Stefano Stabellini <[email protected]>
22921 L:      [email protected] (moderated for non-subscribers)
22922 S:      Maintained
22923 F:      arch/arm/include/asm/xen/
22924 F:      arch/arm/xen/
22925
22926 XEN HYPERVISOR ARM64
22927 M:      Stefano Stabellini <[email protected]>
22928 L:      [email protected] (moderated for non-subscribers)
22929 S:      Maintained
22930 F:      arch/arm64/include/asm/xen/
22931 F:      arch/arm64/xen/
22932
22933 XEN HYPERVISOR INTERFACE
22934 M:      Juergen Gross <[email protected]>
22935 M:      Stefano Stabellini <[email protected]>
22936 R:      Oleksandr Tyshchenko <[email protected]>
22937 L:      [email protected] (moderated for non-subscribers)
22938 S:      Supported
22939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22940 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22941 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22942 F:      drivers/*/xen-*front.c
22943 F:      drivers/xen/
22944 F:      include/uapi/xen/
22945 F:      include/xen/
22946 F:      kernel/configs/xen.config
22947
22948 XEN HYPERVISOR X86
22949 M:      Juergen Gross <[email protected]>
22950 R:      Boris Ostrovsky <[email protected]>
22951 L:      [email protected] (moderated for non-subscribers)
22952 S:      Supported
22953 F:      arch/x86/configs/xen.config
22954 F:      arch/x86/include/asm/pvclock-abi.h
22955 F:      arch/x86/include/asm/xen/
22956 F:      arch/x86/platform/pvh/
22957 F:      arch/x86/xen/
22958
22959 XEN NETWORK BACKEND DRIVER
22960 M:      Wei Liu <[email protected]>
22961 M:      Paul Durrant <[email protected]>
22962 L:      [email protected] (moderated for non-subscribers)
22963 L:      [email protected]
22964 S:      Supported
22965 F:      drivers/net/xen-netback/*
22966
22967 XEN PCI SUBSYSTEM
22968 M:      Juergen Gross <[email protected]>
22969 L:      [email protected] (moderated for non-subscribers)
22970 S:      Supported
22971 F:      arch/x86/pci/*xen*
22972 F:      drivers/pci/*xen*
22973
22974 XEN PVSCSI DRIVERS
22975 M:      Juergen Gross <[email protected]>
22976 L:      [email protected] (moderated for non-subscribers)
22977 L:      [email protected]
22978 S:      Supported
22979 F:      drivers/scsi/xen-scsifront.c
22980 F:      drivers/xen/xen-scsiback.c
22981 F:      include/xen/interface/io/vscsiif.h
22982
22983 XEN PVUSB DRIVER
22984 M:      Juergen Gross <[email protected]>
22985 L:      [email protected] (moderated for non-subscribers)
22986 L:      [email protected]
22987 S:      Supported
22988 F:      drivers/usb/host/xen*
22989 F:      include/xen/interface/io/usbif.h
22990
22991 XEN SOUND FRONTEND DRIVER
22992 M:      Oleksandr Andrushchenko <[email protected]>
22993 L:      [email protected] (moderated for non-subscribers)
22994 L:      [email protected] (moderated for non-subscribers)
22995 S:      Supported
22996 F:      sound/xen/*
22997
22998 XEN SWIOTLB SUBSYSTEM
22999 M:      Juergen Gross <[email protected]>
23000 M:      Stefano Stabellini <[email protected]>
23001 L:      [email protected] (moderated for non-subscribers)
23002 L:      [email protected]
23003 S:      Supported
23004 F:      arch/*/include/asm/xen/swiotlb-xen.h
23005 F:      drivers/xen/swiotlb-xen.c
23006 F:      include/xen/arm/swiotlb-xen.h
23007 F:      include/xen/swiotlb-xen.h
23008
23009 XFS FILESYSTEM
23010 C:      irc://irc.oftc.net/xfs
23011 M:      Darrick J. Wong <[email protected]>
23012 L:      [email protected]
23013 S:      Supported
23014 W:      http://xfs.org/
23015 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
23016 F:      Documentation/ABI/testing/sysfs-fs-xfs
23017 F:      Documentation/admin-guide/xfs.rst
23018 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
23019 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
23020 F:      fs/xfs/
23021 F:      include/uapi/linux/dqblk_xfs.h
23022 F:      include/uapi/linux/fsmap.h
23023
23024 XILINX AMS DRIVER
23025 M:      Anand Ashok Dumbre <[email protected]>
23026 L:      [email protected]
23027 S:      Maintained
23028 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
23029 F:      drivers/iio/adc/xilinx-ams.c
23030
23031 XILINX AXI ETHERNET DRIVER
23032 M:      Radhey Shyam Pandey <[email protected]>
23033 S:      Maintained
23034 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
23035
23036 XILINX CAN DRIVER
23037 M:      Appana Durga Kedareswara rao <[email protected]>
23038 R:      Naga Sureshkumar Relli <[email protected]>
23039 L:      [email protected]
23040 S:      Maintained
23041 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
23042 F:      drivers/net/can/xilinx_can.c
23043
23044 XILINX GPIO DRIVER
23045 M:      Shubhrajyoti Datta <[email protected]>
23046 R:      Srinivas Neeli <[email protected]>
23047 R:      Michal Simek <[email protected]>
23048 S:      Maintained
23049 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
23050 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
23051 F:      drivers/gpio/gpio-xilinx.c
23052 F:      drivers/gpio/gpio-zynq.c
23053
23054 XILINX SD-FEC IP CORES
23055 M:      Derek Kiernan <[email protected]>
23056 M:      Dragan Cvetic <[email protected]>
23057 S:      Maintained
23058 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
23059 F:      Documentation/misc-devices/xilinx_sdfec.rst
23060 F:      drivers/misc/Kconfig
23061 F:      drivers/misc/Makefile
23062 F:      drivers/misc/xilinx_sdfec.c
23063 F:      include/uapi/misc/xilinx_sdfec.h
23064
23065 XILINX PWM DRIVER
23066 M:      Sean Anderson <[email protected]>
23067 S:      Maintained
23068 F:      drivers/pwm/pwm-xilinx.c
23069 F:      include/clocksource/timer-xilinx.h
23070
23071 XILINX UARTLITE SERIAL DRIVER
23072 M:      Peter Korsgaard <[email protected]>
23073 L:      [email protected]
23074 S:      Maintained
23075 F:      drivers/tty/serial/uartlite.c
23076
23077 XILINX VIDEO IP CORES
23078 M:      Hyun Kwon <[email protected]>
23079 M:      Laurent Pinchart <[email protected]>
23080 L:      [email protected]
23081 S:      Supported
23082 T:      git git://linuxtv.org/media_tree.git
23083 F:      Documentation/devicetree/bindings/media/xilinx/
23084 F:      drivers/media/platform/xilinx/
23085 F:      include/uapi/linux/xilinx-v4l2-controls.h
23086
23087 XILINX XDMA DRIVER
23088 M:      Lizhi Hou <[email protected]>
23089 M:      Brian Xu <[email protected]>
23090 M:      Raj Kumar Rampelli <[email protected]>
23091 L:      [email protected]
23092 S:      Supported
23093 F:      drivers/dma/xilinx/xdma-regs.h
23094 F:      drivers/dma/xilinx/xdma.c
23095 F:      include/linux/dma/amd_xdma.h
23096 F:      include/linux/platform_data/amd_xdma.h
23097
23098 XILINX ZYNQMP DPDMA DRIVER
23099 M:      Hyun Kwon <[email protected]>
23100 M:      Laurent Pinchart <[email protected]>
23101 L:      [email protected]
23102 S:      Supported
23103 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
23104 F:      drivers/dma/xilinx/xilinx_dpdma.c
23105 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
23106
23107 XILINX ZYNQMP OCM EDAC DRIVER
23108 M:      Shubhrajyoti Datta <[email protected]>
23109 M:      Sai Krishna Potthuri <[email protected]>
23110 S:      Maintained
23111 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynqmp-ocmc-1.0.yaml
23112 F:      drivers/edac/zynqmp_edac.c
23113
23114 XILINX ZYNQMP PSGTR PHY DRIVER
23115 M:      Anurag Kumar Vulisha <[email protected]>
23116 M:      Laurent Pinchart <[email protected]>
23117 L:      [email protected]
23118 S:      Supported
23119 T:      git https://github.com/Xilinx/linux-xlnx.git
23120 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
23121 F:      drivers/phy/xilinx/phy-zynqmp.c
23122
23123 XILINX ZYNQMP SHA3 DRIVER
23124 M:      Harsha <[email protected]>
23125 S:      Maintained
23126 F:      drivers/crypto/xilinx/zynqmp-sha.c
23127
23128 XILINX EVENT MANAGEMENT DRIVER
23129 M:      Abhyuday Godhasara <[email protected]>
23130 S:      Maintained
23131 F:      drivers/soc/xilinx/xlnx_event_manager.c
23132 F:      include/linux/firmware/xlnx-event-manager.h
23133
23134 XILLYBUS DRIVER
23135 M:      Eli Billauer <[email protected]>
23136 L:      [email protected]
23137 S:      Supported
23138 F:      drivers/char/xillybus/
23139
23140 XLP9XX I2C DRIVER
23141 M:      George Cherian <[email protected]>
23142 L:      [email protected]
23143 S:      Supported
23144 W:      http://www.marvell.com
23145 F:      drivers/i2c/busses/i2c-xlp9xx.c
23146
23147 XRA1403 GPIO EXPANDER
23148 M:      Nandor Han <[email protected]>
23149 L:      [email protected]
23150 S:      Maintained
23151 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
23152 F:      drivers/gpio/gpio-xra1403.c
23153
23154 XTENSA XTFPGA PLATFORM SUPPORT
23155 M:      Max Filippov <[email protected]>
23156 S:      Maintained
23157 F:      drivers/spi/spi-xtensa-xtfpga.c
23158 F:      sound/soc/xtensa/xtfpga-i2s.c
23159
23160 YAM DRIVER FOR AX.25
23161 M:      Jean-Paul Roubelat <[email protected]>
23162 L:      [email protected]
23163 S:      Maintained
23164 F:      drivers/net/hamradio/yam*
23165 F:      include/linux/yam.h
23166
23167 YAMA SECURITY MODULE
23168 M:      Kees Cook <[email protected]>
23169 S:      Supported
23170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
23171 F:      Documentation/admin-guide/LSM/Yama.rst
23172 F:      security/yama/
23173
23174 YEALINK PHONE DRIVER
23175 M:      Henk Vergonet <[email protected]>
23176 L:      [email protected]
23177 S:      Maintained
23178 F:      Documentation/input/devices/yealink.rst
23179 F:      drivers/input/misc/yealink.*
23180
23181 Z8530 DRIVER FOR AX.25
23182 M:      Joerg Reuter <[email protected]>
23183 L:      [email protected]
23184 S:      Maintained
23185 W:      http://yaina.de/jreuter/
23186 W:      http://www.qsl.net/dl1bke/
23187 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
23188 F:      drivers/net/hamradio/*scc.c
23189 F:      drivers/net/hamradio/z8530.h
23190
23191 ZBUD COMPRESSED PAGE ALLOCATOR
23192 M:      Seth Jennings <[email protected]>
23193 M:      Dan Streetman <[email protected]>
23194 L:      [email protected]
23195 S:      Maintained
23196 F:      mm/zbud.c
23197
23198 Z3FOLD COMPRESSED PAGE ALLOCATOR
23199 M:      Vitaly Wool <[email protected]>
23200 R:      Miaohe Lin <[email protected]>
23201 L:      [email protected]
23202 S:      Maintained
23203 F:      mm/z3fold.c
23204
23205 ZD1211RW WIRELESS DRIVER
23206 M:      Ulrich Kunitz <[email protected]>
23207 L:      [email protected]
23208 L:      [email protected] (subscribers-only)
23209 S:      Maintained
23210 W:      http://zd1211.ath.cx/wiki/DriverRewrite
23211 F:      drivers/net/wireless/zydas/zd1211rw/
23212
23213 ZD1301 MEDIA DRIVER
23214 M:      Antti Palosaari <[email protected]>
23215 L:      [email protected]
23216 S:      Maintained
23217 W:      https://linuxtv.org/
23218 W:      http://palosaari.fi/linux/
23219 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23220 F:      drivers/media/usb/dvb-usb-v2/zd1301*
23221
23222 ZD1301_DEMOD MEDIA DRIVER
23223 M:      Antti Palosaari <[email protected]>
23224 L:      [email protected]
23225 S:      Maintained
23226 W:      https://linuxtv.org/
23227 W:      http://palosaari.fi/linux/
23228 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23229 F:      drivers/media/dvb-frontends/zd1301_demod*
23230
23231 ZHAOXIN PROCESSOR SUPPORT
23232 M:      Tony W Wang-oc <[email protected]>
23233 L:      [email protected]
23234 S:      Maintained
23235 F:      arch/x86/kernel/cpu/zhaoxin.c
23236
23237 ZONEFS FILESYSTEM
23238 M:      Damien Le Moal <[email protected]>
23239 M:      Naohiro Aota <[email protected]>
23240 R:      Johannes Thumshirn <[email protected]>
23241 L:      [email protected]
23242 S:      Maintained
23243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
23244 F:      Documentation/filesystems/zonefs.rst
23245 F:      fs/zonefs/
23246
23247 ZPOOL COMPRESSED PAGE STORAGE API
23248 M:      Dan Streetman <[email protected]>
23249 L:      [email protected]
23250 S:      Maintained
23251 F:      include/linux/zpool.h
23252 F:      mm/zpool.c
23253
23254 ZR36067 VIDEO FOR LINUX DRIVER
23255 M:      Corentin Labbe <[email protected]>
23256 L:      [email protected]
23257 L:      [email protected]
23258 S:      Maintained
23259 W:      http://mjpeg.sourceforge.net/driver-zoran/
23260 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23261 F:      Documentation/driver-api/media/drivers/zoran.rst
23262 F:      drivers/media/pci/zoran/
23263
23264 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
23265 M:      Minchan Kim <[email protected]>
23266 M:      Sergey Senozhatsky <[email protected]>
23267 L:      [email protected]
23268 S:      Maintained
23269 F:      Documentation/admin-guide/blockdev/zram.rst
23270 F:      drivers/block/zram/
23271
23272 ZS DECSTATION Z85C30 SERIAL DRIVER
23273 M:      "Maciej W. Rozycki" <[email protected]>
23274 S:      Maintained
23275 F:      drivers/tty/serial/zs.*
23276
23277 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
23278 M:      Minchan Kim <[email protected]>
23279 M:      Sergey Senozhatsky <[email protected]>
23280 L:      [email protected]
23281 S:      Maintained
23282 F:      Documentation/mm/zsmalloc.rst
23283 F:      include/linux/zsmalloc.h
23284 F:      mm/zsmalloc.c
23285
23286 ZSTD
23287 M:      Nick Terrell <[email protected]>
23288 S:      Maintained
23289 B:      https://github.com/facebook/zstd/issues
23290 T:      git https://github.com/terrelln/linux.git
23291 F:      include/linux/zstd*
23292 F:      lib/zstd/
23293 F:      lib/decompress_unzstd.c
23294 F:      crypto/zstd.c
23295 N:      zstd
23296 K:      zstd
23297
23298 ZSWAP COMPRESSED SWAP CACHING
23299 M:      Seth Jennings <[email protected]>
23300 M:      Dan Streetman <[email protected]>
23301 M:      Vitaly Wool <[email protected]>
23302 L:      [email protected]
23303 S:      Maintained
23304 F:      mm/zswap.c
23305
23306 NXP BLUETOOTH WIRELESS DRIVERS
23307 M:      Amitkumar Karwar <[email protected]>
23308 M:      Neeraj Kale <[email protected]>
23309 S:      Maintained
23310 F:      Documentation/devicetree/bindings/net/bluetooth/nxp,88w8987-bt.yaml
23311 F:      drivers/bluetooth/btnxpuart.c
23312
23313 THE REST
23314 M:      Linus Torvalds <[email protected]>
23315 L:      [email protected]
23316 S:      Buried alive in reporters
23317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
23318 F:      *
23319 F:      */
This page took 1.361809 seconds and 4 git commands to generate.