]> Git Repo - linux.git/blob - MAINTAINERS
net/sched: act_api: move TCA_EXT_WARN_MSG to the correct hierarchy
[linux.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: [email protected], especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <[email protected]>
148 L:      [email protected]
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <[email protected]>
155 L:      [email protected]
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <[email protected]>
161 L:      [email protected]
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <[email protected]>
168 L:      [email protected]
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <[email protected]>
174 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://swik.net/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A64FX DIAG DRIVER
245 M:      Hitomi Hasegawa <[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 SPI DRIVER
1045 M:      Sanjay R Mehta <[email protected]>
1046 S:      Maintained
1047 F:      drivers/spi/spi-amd.c
1048
1049 AMD MP2 I2C DRIVER
1050 M:      Elie Morisse <[email protected]>
1051 M:      Shyam Sundar S K <[email protected]>
1052 L:      [email protected]
1053 S:      Maintained
1054 F:      drivers/i2c/busses/i2c-amd-mp2*
1055
1056 AMD PMC DRIVER
1057 M:      Shyam Sundar S K <[email protected]>
1058 L:      [email protected]
1059 S:      Maintained
1060 F:      drivers/platform/x86/amd/pmc.c
1061
1062 AMD PMF DRIVER
1063 M:      Shyam Sundar S K <[email protected]>
1064 L:      [email protected]
1065 S:      Maintained
1066 F:      Documentation/ABI/testing/sysfs-amd-pmf
1067 F:      drivers/platform/x86/amd/pmf/
1068
1069 AMD HSMP DRIVER
1070 M:      Naveen Krishna Chatradhi <[email protected]>
1071 R:      Carlos Bilbao <[email protected]>
1072 L:      [email protected]
1073 S:      Maintained
1074 F:      Documentation/x86/amd_hsmp.rst
1075 F:      arch/x86/include/asm/amd_hsmp.h
1076 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1077 F:      drivers/platform/x86/amd/hsmp.c
1078
1079 AMD POWERPLAY AND SWSMU
1080 M:      Evan Quan <[email protected]>
1081 L:      [email protected]
1082 S:      Supported
1083 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1084 F:      drivers/gpu/drm/amd/pm/
1085
1086 AMD PSTATE DRIVER
1087 M:      Huang Rui <[email protected]>
1088 L:      [email protected]
1089 S:      Supported
1090 F:      Documentation/admin-guide/pm/amd-pstate.rst
1091 F:      drivers/cpufreq/amd-pstate*
1092 F:      include/linux/amd-pstate.h
1093 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1094
1095 AMD PTDMA DRIVER
1096 M:      Sanjay R Mehta <[email protected]>
1097 L:      [email protected]
1098 S:      Maintained
1099 F:      drivers/dma/ptdma/
1100
1101 AMD SEATTLE DEVICE TREE SUPPORT
1102 M:      Suravee Suthikulpanit <[email protected]>
1103 M:      Tom Lendacky <[email protected]>
1104 S:      Supported
1105 F:      arch/arm64/boot/dts/amd/
1106
1107 AMD XGBE DRIVER
1108 M:      "Shyam Sundar S K" <[email protected]>
1109 L:      [email protected]
1110 S:      Supported
1111 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1112 F:      drivers/net/ethernet/amd/xgbe/
1113
1114 AMD SENSOR FUSION HUB DRIVER
1115 M:      Basavaraj Natikar <[email protected]>
1116 L:      [email protected]
1117 S:      Maintained
1118 F:      Documentation/hid/amd-sfh*
1119 F:      drivers/hid/amd-sfh-hid/
1120
1121 AMLOGIC DDR PMU DRIVER
1122 M:      Jiucheng Xu <[email protected]>
1123 L:      [email protected]
1124 S:      Supported
1125 W:      http://www.amlogic.com
1126 F:      Documentation/admin-guide/perf/meson-ddr-pmu.rst
1127 F:      Documentation/devicetree/bindings/perf/amlogic,g12-ddr-pmu.yaml
1128 F:      drivers/perf/amlogic/
1129 F:      include/soc/amlogic/
1130
1131 AMPHION VPU CODEC V4L2 DRIVER
1132 M:      Ming Qian <[email protected]>
1133 M:      Shijie Qin <[email protected]>
1134 M:      Zhou Peng <[email protected]>
1135 L:      [email protected]
1136 S:      Maintained
1137 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1138 F:      drivers/media/platform/amphion/
1139
1140 AMS AS73211 DRIVER
1141 M:      Christian Eggers <[email protected]>
1142 L:      [email protected]
1143 S:      Maintained
1144 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1145 F:      drivers/iio/light/as73211.c
1146
1147 AMT (Automatic Multicast Tunneling)
1148 M:      Taehee Yoo <[email protected]>
1149 L:      [email protected]
1150 S:      Maintained
1151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1153 F:      drivers/net/amt.c
1154
1155 ANALOG DEVICES INC AD4130 DRIVER
1156 M:      Cosmin Tanislav <[email protected]>
1157 L:      [email protected]
1158 S:      Supported
1159 W:      http://ez.analog.com/community/linux-device-drivers
1160 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-ad4130
1161 F:      Documentation/devicetree/bindings/iio/adc/adi,ad4130.yaml
1162 F:      drivers/iio/adc/ad4130.c
1163
1164 ANALOG DEVICES INC AD7192 DRIVER
1165 M:      Alexandru Tachici <[email protected]>
1166 L:      [email protected]
1167 S:      Supported
1168 W:      https://ez.analog.com/linux-software-drivers
1169 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1170 F:      drivers/iio/adc/ad7192.c
1171
1172 ANALOG DEVICES INC AD7292 DRIVER
1173 M:      Marcelo Schmitt <[email protected]>
1174 L:      [email protected]
1175 S:      Supported
1176 W:      https://ez.analog.com/linux-software-drivers
1177 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1178 F:      drivers/iio/adc/ad7292.c
1179
1180 ANALOG DEVICES INC AD3552R DRIVER
1181 M:      Nuno Sá <[email protected]>
1182 L:      [email protected]
1183 S:      Supported
1184 W:      https://ez.analog.com/linux-software-drivers
1185 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1186 F:      drivers/iio/dac/ad3552r.c
1187
1188 ANALOG DEVICES INC AD7293 DRIVER
1189 M:      Antoniu Miclaus <[email protected]>
1190 L:      [email protected]
1191 S:      Supported
1192 W:      https://ez.analog.com/linux-software-drivers
1193 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1194 F:      drivers/iio/dac/ad7293.c
1195
1196 ANALOG DEVICES INC AD7768-1 DRIVER
1197 M:      Michael Hennerich <[email protected]>
1198 L:      [email protected]
1199 S:      Supported
1200 W:      https://ez.analog.com/linux-software-drivers
1201 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1202 F:      drivers/iio/adc/ad7768-1.c
1203
1204 ANALOG DEVICES INC AD7780 DRIVER
1205 M:      Michael Hennerich <[email protected]>
1206 M:      Renato Lui Geh <[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,ad7780.yaml
1211 F:      drivers/iio/adc/ad7780.c
1212
1213 ANALOG DEVICES INC AD74115 DRIVER
1214 M:      Cosmin Tanislav <[email protected]>
1215 L:      [email protected]
1216 S:      Supported
1217 W:      http://ez.analog.com/community/linux-device-drivers
1218 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74115.yaml
1219 F:      drivers/iio/addac/ad74115.c
1220
1221 ANALOG DEVICES INC AD74413R DRIVER
1222 M:      Cosmin Tanislav <[email protected]>
1223 L:      [email protected]
1224 S:      Supported
1225 W:      https://ez.analog.com/linux-software-drivers
1226 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1227 F:      drivers/iio/addac/ad74413r.c
1228 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1229
1230 ANALOG DEVICES INC AD9389B DRIVER
1231 M:      Hans Verkuil <[email protected]>
1232 L:      [email protected]
1233 S:      Maintained
1234 F:      drivers/media/i2c/ad9389b*
1235
1236 ANALOG DEVICES INC ADA4250 DRIVER
1237 M:      Antoniu Miclaus <[email protected]>
1238 L:      [email protected]
1239 S:      Supported
1240 W:      https://ez.analog.com/linux-software-drivers
1241 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1242 F:      drivers/iio/amplifiers/ada4250.c
1243
1244 ANALOG DEVICES INC ADF4377 DRIVER
1245 M:      Antoniu Miclaus <[email protected]>
1246 L:      [email protected]
1247 S:      Supported
1248 W:      https://ez.analog.com/linux-software-drivers
1249 F:      Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml
1250 F:      drivers/iio/frequency/adf4377.c
1251
1252 ANALOG DEVICES INC ADGS1408 DRIVER
1253 M:      Mircea Caprioru <[email protected]>
1254 S:      Supported
1255 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1256 F:      drivers/mux/adgs1408.c
1257
1258 ANALOG DEVICES INC ADIN DRIVER
1259 M:      Michael Hennerich <[email protected]>
1260 L:      [email protected]
1261 S:      Supported
1262 W:      https://ez.analog.com/linux-software-drivers
1263 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1264 F:      drivers/net/phy/adin.c
1265
1266 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1267 M:      Nuno Sa <[email protected]>
1268 L:      [email protected]
1269 S:      Supported
1270 F:      drivers/iio/imu/adis.c
1271 F:      drivers/iio/imu/adis_buffer.c
1272 F:      drivers/iio/imu/adis_trigger.c
1273 F:      include/linux/iio/imu/adis.h
1274
1275 ANALOG DEVICES INC ADIS16460 DRIVER
1276 M:      Dragos Bogdan <[email protected]>
1277 L:      [email protected]
1278 S:      Supported
1279 W:      https://ez.analog.com/linux-software-drivers
1280 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1281 F:      drivers/iio/imu/adis16460.c
1282
1283 ANALOG DEVICES INC ADIS16475 DRIVER
1284 M:      Nuno Sa <[email protected]>
1285 L:      [email protected]
1286 W:      https://ez.analog.com/linux-software-drivers
1287 S:      Supported
1288 F:      drivers/iio/imu/adis16475.c
1289 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1290
1291 ANALOG DEVICES INC ADM1177 DRIVER
1292 M:      Michael Hennerich <[email protected]>
1293 L:      [email protected]
1294 S:      Supported
1295 W:      https://ez.analog.com/linux-software-drivers
1296 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1297 F:      drivers/hwmon/adm1177.c
1298
1299 ANALOG DEVICES INC ADMV1013 DRIVER
1300 M:      Antoniu Miclaus <[email protected]>
1301 L:      [email protected]
1302 S:      Supported
1303 W:      https://ez.analog.com/linux-software-drivers
1304 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1305 F:      drivers/iio/frequency/admv1013.c
1306
1307 ANALOG DEVICES INC ADMV8818 DRIVER
1308 M:      Antoniu Miclaus <[email protected]>
1309 L:      [email protected]
1310 S:      Supported
1311 W:      https://ez.analog.com/linux-software-drivers
1312 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1313 F:      drivers/iio/filter/admv8818.c
1314
1315 ANALOG DEVICES INC ADMV1014 DRIVER
1316 M:      Antoniu Miclaus <[email protected]>
1317 L:      [email protected]
1318 S:      Supported
1319 W:      https://ez.analog.com/linux-software-drivers
1320 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1321 F:      drivers/iio/frequency/admv1014.c
1322
1323 ANALOG DEVICES INC ADP5061 DRIVER
1324 M:      Michael Hennerich <[email protected]>
1325 L:      [email protected]
1326 S:      Supported
1327 W:      https://ez.analog.com/linux-software-drivers
1328 F:      drivers/power/supply/adp5061.c
1329
1330 ANALOG DEVICES INC ADRF6780 DRIVER
1331 M:      Antoniu Miclaus <[email protected]>
1332 L:      [email protected]
1333 S:      Supported
1334 W:      https://ez.analog.com/linux-software-drivers
1335 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1336 F:      drivers/iio/frequency/adrf6780.c
1337
1338 ANALOG DEVICES INC ADV7180 DRIVER
1339 M:      Lars-Peter Clausen <[email protected]>
1340 L:      [email protected]
1341 S:      Supported
1342 W:      https://ez.analog.com/linux-software-drivers
1343 F:      drivers/media/i2c/adv7180.c
1344 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1345
1346 ANALOG DEVICES INC ADV748X DRIVER
1347 M:      Kieran Bingham <[email protected]>
1348 L:      [email protected]
1349 S:      Maintained
1350 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1351 F:      drivers/media/i2c/adv748x/*
1352
1353 ANALOG DEVICES INC ADV7511 DRIVER
1354 M:      Hans Verkuil <[email protected]>
1355 L:      [email protected]
1356 S:      Maintained
1357 F:      drivers/media/i2c/adv7511*
1358
1359 ANALOG DEVICES INC ADV7604 DRIVER
1360 M:      Hans Verkuil <[email protected]>
1361 L:      [email protected]
1362 S:      Maintained
1363 F:      drivers/media/i2c/adv7604*
1364 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1365
1366 ANALOG DEVICES INC ADV7842 DRIVER
1367 M:      Hans Verkuil <[email protected]>
1368 L:      [email protected]
1369 S:      Maintained
1370 F:      drivers/media/i2c/adv7842*
1371
1372 ANALOG DEVICES INC ADXRS290 DRIVER
1373 M:      Nishant Malpani <[email protected]>
1374 L:      [email protected]
1375 S:      Supported
1376 F:      drivers/iio/gyro/adxrs290.c
1377 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1378
1379 ANALOG DEVICES INC ASOC CODEC DRIVERS
1380 M:      Lars-Peter Clausen <[email protected]>
1381 M:      Nuno Sá <[email protected]>
1382 L:      [email protected] (moderated for non-subscribers)
1383 S:      Supported
1384 W:      http://wiki.analog.com/
1385 W:      https://ez.analog.com/linux-software-drivers
1386 F:      sound/soc/codecs/ad1*
1387 F:      sound/soc/codecs/ad7*
1388 F:      sound/soc/codecs/adau*
1389 F:      sound/soc/codecs/adav*
1390 F:      sound/soc/codecs/sigmadsp.*
1391 F:      sound/soc/codecs/ssm*
1392
1393 ANALOG DEVICES INC DMA DRIVERS
1394 M:      Lars-Peter Clausen <[email protected]>
1395 S:      Supported
1396 W:      https://ez.analog.com/linux-software-drivers
1397 F:      drivers/dma/dma-axi-dmac.c
1398
1399 ANALOG DEVICES INC IIO DRIVERS
1400 M:      Lars-Peter Clausen <[email protected]>
1401 M:      Michael Hennerich <[email protected]>
1402 S:      Supported
1403 W:      http://wiki.analog.com/
1404 W:      https://ez.analog.com/linux-software-drivers
1405 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1406 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1407 F:      Documentation/devicetree/bindings/iio/*/adi,*
1408 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2496.yaml
1409 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2497.yaml
1410 F:      drivers/iio/*/ad*
1411 F:      drivers/iio/adc/ltc249*
1412 F:      drivers/iio/amplifiers/hmc425a.c
1413 F:      drivers/staging/iio/*/ad*
1414 X:      drivers/iio/*/adjd*
1415
1416 ANALOG DEVICES INC MAX31760 DRIVER
1417 M:      Ibrahim Tilki <[email protected]>
1418 S:      Maintained
1419 W:      http://wiki.analog.com/
1420 W:      https://ez.analog.com/linux-software-drivers
1421 F:      Documentation/devicetree/bindings/hwmon/adi,max31760.yaml
1422 F:      Documentation/hwmon/max31760.rst
1423 F:      drivers/hwmon/max31760.c
1424
1425 ANALOGBITS PLL LIBRARIES
1426 M:      Paul Walmsley <[email protected]>
1427 S:      Supported
1428 F:      drivers/clk/analogbits/*
1429 F:      include/linux/clk/analogbits*
1430
1431 ANDROID CONFIG FRAGMENTS
1432 M:      Rob Herring <[email protected]>
1433 S:      Supported
1434 F:      kernel/configs/android*
1435
1436 ANDROID DRIVERS
1437 M:      Greg Kroah-Hartman <[email protected]>
1438 M:      Arve Hjønnevåg <[email protected]>
1439 M:      Todd Kjos <[email protected]>
1440 M:      Martijn Coenen <[email protected]>
1441 M:      Joel Fernandes <[email protected]>
1442 M:      Christian Brauner <[email protected]>
1443 M:      Carlos Llamas <[email protected]>
1444 M:      Suren Baghdasaryan <[email protected]>
1445 L:      [email protected]
1446 S:      Supported
1447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1448 F:      drivers/android/
1449
1450 ANDROID GOLDFISH PIC DRIVER
1451 M:      Miodrag Dinic <[email protected]>
1452 S:      Supported
1453 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1454 F:      drivers/irqchip/irq-goldfish-pic.c
1455
1456 ANDROID GOLDFISH RTC DRIVER
1457 M:      Jiaxun Yang <[email protected]>
1458 S:      Supported
1459 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1460 F:      drivers/rtc/rtc-goldfish.c
1461
1462 AOA (Apple Onboard Audio) ALSA DRIVER
1463 M:      Johannes Berg <[email protected]>
1464 L:      [email protected]
1465 L:      [email protected] (moderated for non-subscribers)
1466 S:      Maintained
1467 F:      sound/aoa/
1468
1469 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1470 M:      William Breathitt Gray <[email protected]>
1471 L:      [email protected]
1472 S:      Maintained
1473 F:      drivers/iio/addac/stx104.c
1474
1475 APM DRIVER
1476 M:      Jiri Kosina <[email protected]>
1477 S:      Odd fixes
1478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1479 F:      arch/x86/kernel/apm_32.c
1480 F:      drivers/char/apm-emulation.c
1481 F:      include/linux/apm_bios.h
1482 F:      include/uapi/linux/apm_bios.h
1483
1484 APPARMOR SECURITY MODULE
1485 M:      John Johansen <[email protected]>
1486 M:      John Johansen <[email protected]>
1487 L:      [email protected] (moderated for non-subscribers)
1488 S:      Supported
1489 W:      apparmor.net
1490 B:      https://gitlab.com/apparmor/apparmor-kernel
1491 C:      irc://irc.oftc.net/apparmor
1492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1493 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1494 F:      Documentation/admin-guide/LSM/apparmor.rst
1495 F:      security/apparmor/
1496
1497 APPLE BCM5974 MULTITOUCH DRIVER
1498 M:      Henrik Rydberg <[email protected]>
1499 L:      [email protected]
1500 S:      Odd fixes
1501 F:      drivers/input/mouse/bcm5974.c
1502
1503 APPLE PCIE CONTROLLER DRIVER
1504 M:      Alyssa Rosenzweig <[email protected]>
1505 M:      Marc Zyngier <[email protected]>
1506 L:      [email protected]
1507 S:      Maintained
1508 F:      drivers/pci/controller/pcie-apple.c
1509
1510 APPLE SMC DRIVER
1511 M:      Henrik Rydberg <[email protected]>
1512 L:      [email protected]
1513 S:      Odd fixes
1514 F:      drivers/hwmon/applesmc.c
1515
1516 APPLETALK NETWORK LAYER
1517 L:      [email protected]
1518 S:      Odd fixes
1519 F:      drivers/net/appletalk/
1520 F:      include/linux/atalk.h
1521 F:      include/uapi/linux/atalk.h
1522 F:      net/appletalk/
1523
1524 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1525 M:      Khuong Dinh <[email protected]>
1526 S:      Supported
1527 F:      arch/arm64/boot/dts/apm/
1528
1529 APPLIED MICRO (APM) X-GENE SOC EDAC
1530 M:      Khuong Dinh <[email protected]>
1531 S:      Supported
1532 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1533 F:      drivers/edac/xgene_edac.c
1534
1535 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1536 M:      Iyappan Subramanian <[email protected]>
1537 M:      Keyur Chudgar <[email protected]>
1538 S:      Supported
1539 F:      drivers/net/ethernet/apm/xgene-v2/
1540
1541 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1542 M:      Iyappan Subramanian <[email protected]>
1543 M:      Keyur Chudgar <[email protected]>
1544 M:      Quan Nguyen <[email protected]>
1545 S:      Supported
1546 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1547 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1548 F:      drivers/net/ethernet/apm/xgene/
1549 F:      drivers/net/mdio/mdio-xgene.c
1550
1551 APPLIED MICRO (APM) X-GENE SOC PMU
1552 M:      Khuong Dinh <[email protected]>
1553 S:      Supported
1554 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1555 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1556 F:      drivers/perf/xgene_pmu.c
1557
1558 APTINA CAMERA SENSOR PLL
1559 M:      Laurent Pinchart <[email protected]>
1560 L:      [email protected]
1561 S:      Maintained
1562 F:      drivers/media/i2c/aptina-pll.*
1563
1564 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1565 M:      Aleksa Savic <[email protected]>
1566 M:      Jack Doan <[email protected]>
1567 L:      [email protected]
1568 S:      Maintained
1569 F:      Documentation/hwmon/aquacomputer_d5next.rst
1570 F:      drivers/hwmon/aquacomputer_d5next.c
1571
1572 AQUANTIA ETHERNET DRIVER (atlantic)
1573 M:      Igor Russkikh <[email protected]>
1574 L:      [email protected]
1575 S:      Supported
1576 W:      https://www.marvell.com/
1577 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1578 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1579 F:      drivers/net/ethernet/aquantia/atlantic/
1580
1581 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1582 M:      Egor Pomozov <[email protected]>
1583 L:      [email protected]
1584 S:      Supported
1585 W:      http://www.aquantia.com
1586 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1587
1588 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1589 M:      Krzysztof Hałasa <[email protected]>
1590 L:      [email protected]
1591 S:      Maintained
1592 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1593 F:      drivers/media/i2c/ar0521.c
1594
1595 ARASAN NAND CONTROLLER DRIVER
1596 M:      Miquel Raynal <[email protected]>
1597 M:      Naga Sureshkumar Relli <[email protected]>
1598 L:      [email protected]
1599 S:      Maintained
1600 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1601 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1602
1603 ARC FRAMEBUFFER DRIVER
1604 M:      Jaya Kumar <[email protected]>
1605 S:      Maintained
1606 F:      drivers/video/fbdev/arcfb.c
1607 F:      drivers/video/fbdev/core/fb_defio.c
1608
1609 ARC PGU DRM DRIVER
1610 M:      Alexey Brodkin <[email protected]>
1611 S:      Supported
1612 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1613 F:      drivers/gpu/drm/tiny/arcpgu.c
1614
1615 ARCNET NETWORK LAYER
1616 M:      Michael Grzeschik <[email protected]>
1617 L:      [email protected]
1618 S:      Maintained
1619 F:      drivers/net/arcnet/
1620 F:      include/uapi/linux/if_arcnet.h
1621
1622 ARM ARCHITECTED TIMER DRIVER
1623 M:      Mark Rutland <[email protected]>
1624 M:      Marc Zyngier <[email protected]>
1625 L:      [email protected] (moderated for non-subscribers)
1626 S:      Maintained
1627 F:      arch/arm/include/asm/arch_timer.h
1628 F:      arch/arm64/include/asm/arch_timer.h
1629 F:      drivers/clocksource/arm_arch_timer.c
1630
1631 ARM HDLCD DRM DRIVER
1632 M:      Liviu Dudau <[email protected]>
1633 S:      Supported
1634 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1635 F:      drivers/gpu/drm/arm/hdlcd_*
1636
1637 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1638 M:      Linus Walleij <[email protected]>
1639 L:      [email protected] (moderated for non-subscribers)
1640 S:      Maintained
1641 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1642 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1643 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1644 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1645 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1646 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1647 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1648 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1649 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1650 F:      arch/arm/boot/dts/arm-realview-*
1651 F:      arch/arm/boot/dts/integrator*
1652 F:      arch/arm/boot/dts/versatile*
1653 F:      arch/arm/mach-versatile/
1654 F:      drivers/bus/arm-integrator-lm.c
1655 F:      drivers/clk/versatile/
1656 F:      drivers/i2c/busses/i2c-versatile.c
1657 F:      drivers/irqchip/irq-versatile-fpga.c
1658 F:      drivers/mtd/maps/physmap-versatile.*
1659 F:      drivers/power/reset/arm-versatile-reboot.c
1660 F:      drivers/soc/versatile/
1661
1662 ARM KOMEDA DRM-KMS DRIVER
1663 M:      James (Qian) Wang <[email protected]>
1664 M:      Liviu Dudau <[email protected]>
1665 M:      Mihail Atanassov <[email protected]>
1666 L:      Mali DP Maintainers <[email protected]>
1667 S:      Supported
1668 T:      git git://anongit.freedesktop.org/drm/drm-misc
1669 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1670 F:      Documentation/gpu/komeda-kms.rst
1671 F:      drivers/gpu/drm/arm/display/include/
1672 F:      drivers/gpu/drm/arm/display/komeda/
1673
1674 ARM MALI PANFROST DRM DRIVER
1675 M:      Rob Herring <[email protected]>
1676 M:      Tomeu Vizoso <[email protected]>
1677 R:      Steven Price <[email protected]>
1678 R:      Alyssa Rosenzweig <[email protected]>
1679 L:      [email protected]
1680 S:      Supported
1681 T:      git git://anongit.freedesktop.org/drm/drm-misc
1682 F:      drivers/gpu/drm/panfrost/
1683 F:      include/uapi/drm/panfrost_drm.h
1684
1685 ARM MALI-DP DRM DRIVER
1686 M:      Liviu Dudau <[email protected]>
1687 M:      Brian Starkey <[email protected]>
1688 L:      Mali DP Maintainers <[email protected]>
1689 S:      Supported
1690 T:      git git://anongit.freedesktop.org/drm/drm-misc
1691 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1692 F:      Documentation/gpu/afbc.rst
1693 F:      drivers/gpu/drm/arm/
1694
1695 ARM MFM AND FLOPPY DRIVERS
1696 M:      Ian Molton <[email protected]>
1697 S:      Maintained
1698 F:      arch/arm/include/asm/floppy.h
1699 F:      arch/arm/mach-rpc/floppydma.S
1700
1701 ARM PMU PROFILING AND DEBUGGING
1702 M:      Will Deacon <[email protected]>
1703 M:      Mark Rutland <[email protected]>
1704 L:      [email protected] (moderated for non-subscribers)
1705 S:      Maintained
1706 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1707 F:      Documentation/devicetree/bindings/perf/
1708 F:      arch/arm*/include/asm/hw_breakpoint.h
1709 F:      arch/arm*/include/asm/perf_event.h
1710 F:      arch/arm*/kernel/hw_breakpoint.c
1711 F:      arch/arm*/kernel/perf_*
1712 F:      drivers/perf/
1713 F:      include/linux/perf/arm_pmu.h
1714
1715 ARM PORT
1716 M:      Russell King <[email protected]>
1717 L:      [email protected] (moderated for non-subscribers)
1718 S:      Odd Fixes
1719 W:      http://www.armlinux.org.uk/
1720 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1721 F:      arch/arm/
1722 X:      arch/arm/boot/dts/
1723
1724 ARM PRIMECELL AACI PL041 DRIVER
1725 M:      Russell King <[email protected]>
1726 S:      Odd Fixes
1727 F:      sound/arm/aaci.*
1728
1729 ARM PRIMECELL BUS SUPPORT
1730 M:      Russell King <[email protected]>
1731 S:      Odd Fixes
1732 F:      drivers/amba/
1733 F:      include/linux/amba/bus.h
1734
1735 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1736 M:      Miquel Raynal <[email protected]>
1737 M:      Naga Sureshkumar Relli <[email protected]>
1738 L:      [email protected]
1739 S:      Maintained
1740 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1741 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1742
1743 ARM PRIMECELL PL35X SMC DRIVER
1744 M:      Miquel Raynal <[email protected]>
1745 M:      Naga Sureshkumar Relli <[email protected]>
1746 L:      [email protected] (moderated for non-subscribers)
1747 S:      Maintained
1748 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
1749 F:      drivers/memory/pl353-smc.c
1750
1751 ARM PRIMECELL CLCD PL110 DRIVER
1752 M:      Russell King <[email protected]>
1753 S:      Odd Fixes
1754 F:      drivers/video/fbdev/amba-clcd.*
1755
1756 ARM PRIMECELL KMI PL050 DRIVER
1757 M:      Russell King <[email protected]>
1758 S:      Odd Fixes
1759 F:      drivers/input/serio/ambakmi.*
1760 F:      include/linux/amba/kmi.h
1761
1762 ARM PRIMECELL MMCI PL180/1 DRIVER
1763 M:      Russell King <[email protected]>
1764 S:      Odd Fixes
1765 F:      drivers/mmc/host/mmci.*
1766 F:      include/linux/amba/mmci.h
1767
1768 ARM PRIMECELL SSP PL022 SPI DRIVER
1769 M:      Linus Walleij <[email protected]>
1770 L:      [email protected] (moderated for non-subscribers)
1771 S:      Maintained
1772 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1773 F:      drivers/spi/spi-pl022.c
1774
1775 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1776 M:      Russell King <[email protected]>
1777 S:      Odd Fixes
1778 F:      drivers/tty/serial/amba-pl01*.c
1779 F:      include/linux/amba/serial.h
1780
1781 ARM PRIMECELL VIC PL190/PL192 DRIVER
1782 M:      Linus Walleij <[email protected]>
1783 L:      [email protected] (moderated for non-subscribers)
1784 S:      Maintained
1785 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1786 F:      drivers/irqchip/irq-vic.c
1787
1788 ARM SMC WATCHDOG DRIVER
1789 M:      Julius Werner <[email protected]>
1790 R:      Evan Benn <[email protected]>
1791 S:      Maintained
1792 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1793 F:      drivers/watchdog/arm_smc_wdt.c
1794
1795 ARM SMMU DRIVERS
1796 M:      Will Deacon <[email protected]>
1797 R:      Robin Murphy <[email protected]>
1798 L:      [email protected] (moderated for non-subscribers)
1799 S:      Maintained
1800 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1801 F:      drivers/iommu/arm/
1802 F:      drivers/iommu/io-pgtable-arm*
1803
1804 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1805 M:      Arnd Bergmann <[email protected]>
1806 M:      Olof Johansson <[email protected]>
1807 M:      [email protected]
1808 L:      [email protected] (moderated for non-subscribers)
1809 S:      Maintained
1810 C:      irc://irc.libera.chat/armlinux
1811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1812 F:      arch/arm/boot/dts/Makefile
1813 F:      arch/arm64/boot/dts/Makefile
1814
1815 ARM SUB-ARCHITECTURES
1816 L:      [email protected] (moderated for non-subscribers)
1817 S:      Maintained
1818 C:      irc://irc.libera.chat/armlinux
1819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1820 F:      arch/arm/mach-*/
1821 F:      arch/arm/plat-*/
1822
1823 ARM/ACTIONS SEMI ARCHITECTURE
1824 M:      Andreas Färber <[email protected]>
1825 M:      Manivannan Sadhasivam <[email protected]>
1826 L:      [email protected] (moderated for non-subscribers)
1827 L:      [email protected] (moderated for non-subscribers)
1828 S:      Maintained
1829 F:      Documentation/devicetree/bindings/arm/actions.yaml
1830 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1831 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1832 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1833 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1834 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1835 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1836 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1837 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1838 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1839 F:      arch/arm/boot/dts/owl-*
1840 F:      arch/arm/mach-actions/
1841 F:      arch/arm64/boot/dts/actions/
1842 F:      drivers/clk/actions/
1843 F:      drivers/clocksource/timer-owl*
1844 F:      drivers/dma/owl-dma.c
1845 F:      drivers/i2c/busses/i2c-owl.c
1846 F:      drivers/irqchip/irq-owl-sirq.c
1847 F:      drivers/mmc/host/owl-mmc.c
1848 F:      drivers/net/ethernet/actions/
1849 F:      drivers/pinctrl/actions/*
1850 F:      drivers/soc/actions/
1851 F:      include/dt-bindings/power/owl-*
1852 F:      include/dt-bindings/reset/actions,*
1853 F:      include/linux/soc/actions/
1854 N:      owl
1855
1856 ARM/Allwinner SoC Clock Support
1857 M:      Emilio López <[email protected]>
1858 S:      Maintained
1859 F:      drivers/clk/sunxi/
1860
1861 ARM/Allwinner sunXi SoC support
1862 M:      Chen-Yu Tsai <[email protected]>
1863 M:      Jernej Skrabec <[email protected]>
1864 M:      Samuel Holland <[email protected]>
1865 L:      [email protected] (moderated for non-subscribers)
1866 S:      Maintained
1867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1868 L:      [email protected]
1869 F:      arch/arm/mach-sunxi/
1870 F:      arch/arm64/boot/dts/allwinner/
1871 F:      drivers/clk/sunxi-ng/
1872 F:      drivers/pinctrl/sunxi/
1873 F:      drivers/soc/sunxi/
1874 N:      allwinner
1875 N:      sun[x456789]i
1876 N:      sun[25]0i
1877
1878 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1879 M:      Neil Armstrong <[email protected]>
1880 M:      Jerome Brunet <[email protected]>
1881 L:      [email protected]
1882 S:      Maintained
1883 F:      Documentation/devicetree/bindings/clock/amlogic*
1884 F:      drivers/clk/meson/
1885 F:      include/dt-bindings/clock/gxbb*
1886 F:      include/dt-bindings/clock/meson*
1887
1888 ARM/Amlogic Meson SoC Crypto Drivers
1889 M:      Corentin Labbe <[email protected]>
1890 L:      [email protected]
1891 L:      [email protected]
1892 S:      Maintained
1893 F:      Documentation/devicetree/bindings/crypto/amlogic*
1894 F:      drivers/crypto/amlogic/
1895
1896 ARM/Amlogic Meson SoC Sound Drivers
1897 M:      Jerome Brunet <[email protected]>
1898 L:      [email protected] (moderated for non-subscribers)
1899 S:      Maintained
1900 F:      Documentation/devicetree/bindings/sound/amlogic*
1901 F:      sound/soc/meson/
1902
1903 ARM/Amlogic Meson SoC support
1904 M:      Neil Armstrong <[email protected]>
1905 M:      Kevin Hilman <[email protected]>
1906 R:      Jerome Brunet <[email protected]>
1907 R:      Martin Blumenstingl <[email protected]>
1908 L:      [email protected] (moderated for non-subscribers)
1909 L:      [email protected]
1910 S:      Maintained
1911 W:      http://linux-meson.com/
1912 F:      arch/arm/boot/dts/meson*
1913 F:      arch/arm/mach-meson/
1914 F:      arch/arm64/boot/dts/amlogic/
1915 F:      drivers/mmc/host/meson*
1916 F:      drivers/pinctrl/meson/
1917 F:      drivers/rtc/rtc-meson*
1918 F:      drivers/soc/amlogic/
1919 N:      meson
1920
1921 ARM/Annapurna Labs ALPINE ARCHITECTURE
1922 M:      Tsahee Zidenberg <[email protected]>
1923 M:      Antoine Tenart <[email protected]>
1924 L:      [email protected] (moderated for non-subscribers)
1925 S:      Maintained
1926 F:      arch/arm/boot/dts/alpine*
1927 F:      arch/arm/mach-alpine/
1928 F:      arch/arm64/boot/dts/amazon/
1929 F:      drivers/*/*alpine*
1930
1931 ARM/APPLE MACHINE SUPPORT
1932 M:      Hector Martin <[email protected]>
1933 M:      Sven Peter <[email protected]>
1934 R:      Alyssa Rosenzweig <[email protected]>
1935 L:      [email protected]
1936 L:      [email protected] (moderated for non-subscribers)
1937 S:      Maintained
1938 W:      https://asahilinux.org
1939 B:      https://github.com/AsahiLinux/linux/issues
1940 C:      irc://irc.oftc.net/asahi-dev
1941 T:      git https://github.com/AsahiLinux/linux.git
1942 F:      Documentation/devicetree/bindings/arm/apple.yaml
1943 F:      Documentation/devicetree/bindings/arm/apple/*
1944 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1945 F:      Documentation/devicetree/bindings/cpufreq/apple,cluster-cpufreq.yaml
1946 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
1947 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1948 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1949 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1950 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1951 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1952 F:      Documentation/devicetree/bindings/net/bluetooth/brcm,bcm4377-bluetooth.yaml
1953 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1954 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1955 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1956 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1957 F:      Documentation/devicetree/bindings/power/apple*
1958 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1959 F:      arch/arm64/boot/dts/apple/
1960 F:      drivers/bluetooth/hci_bcm4377.c
1961 F:      drivers/clk/clk-apple-nco.c
1962 F:      drivers/cpufreq/apple-soc-cpufreq.c
1963 F:      drivers/dma/apple-admac.c
1964 F:      drivers/i2c/busses/i2c-pasemi-core.c
1965 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1966 F:      drivers/iommu/apple-dart.c
1967 F:      drivers/iommu/io-pgtable-dart.c
1968 F:      drivers/irqchip/irq-apple-aic.c
1969 F:      drivers/mailbox/apple-mailbox.c
1970 F:      drivers/nvme/host/apple.c
1971 F:      drivers/nvmem/apple-efuses.c
1972 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1973 F:      drivers/soc/apple/*
1974 F:      drivers/watchdog/apple_wdt.c
1975 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1976 F:      include/dt-bindings/pinctrl/apple.h
1977 F:      include/linux/apple-mailbox.h
1978 F:      include/linux/soc/apple/*
1979
1980 ARM/APPLE MACHINE SOUND DRIVERS
1981 M:      Martin Povišer <[email protected]>
1982 L:      [email protected]
1983 L:      [email protected] (moderated for non-subscribers)
1984 S:      Maintained
1985 F:      Documentation/devicetree/bindings/sound/apple,*
1986 F:      sound/soc/apple/*
1987 F:      sound/soc/codecs/cs42l83-i2c.c
1988
1989 ARM/ARTPEC MACHINE SUPPORT
1990 M:      Jesper Nilsson <[email protected]>
1991 M:      Lars Persson <[email protected]>
1992 L:      [email protected]
1993 S:      Maintained
1994 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1995 F:      arch/arm/boot/dts/artpec6*
1996 F:      arch/arm/mach-artpec
1997 F:      drivers/clk/axis
1998 F:      drivers/crypto/axis
1999 F:      drivers/mmc/host/usdhi6rol0.c
2000 F:      drivers/pinctrl/pinctrl-artpec*
2001
2002 ARM/ASPEED I2C DRIVER
2003 M:      Brendan Higgins <[email protected]>
2004 R:      Benjamin Herrenschmidt <[email protected]>
2005 R:      Joel Stanley <[email protected]>
2006 L:      [email protected]
2007 L:      [email protected] (moderated for non-subscribers)
2008 S:      Maintained
2009 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
2010 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
2011 F:      drivers/i2c/busses/i2c-aspeed.c
2012 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
2013
2014 ARM/ASPEED MACHINE SUPPORT
2015 M:      Joel Stanley <[email protected]>
2016 R:      Andrew Jeffery <[email protected]>
2017 L:      [email protected] (moderated for non-subscribers)
2018 L:      [email protected] (moderated for non-subscribers)
2019 S:      Supported
2020 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
2021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
2022 F:      Documentation/devicetree/bindings/arm/aspeed/
2023 F:      arch/arm/boot/dts/aspeed-*
2024 F:      arch/arm/mach-aspeed/
2025 N:      aspeed
2026
2027 ARM/BITMAIN ARCHITECTURE
2028 M:      Manivannan Sadhasivam <[email protected]>
2029 L:      [email protected] (moderated for non-subscribers)
2030 S:      Maintained
2031 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
2032 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
2033 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
2034 F:      arch/arm64/boot/dts/bitmain/
2035 F:      drivers/clk/clk-bm1880.c
2036 F:      drivers/pinctrl/pinctrl-bm1880.c
2037
2038 ARM/CALXEDA HIGHBANK ARCHITECTURE
2039 M:      Andre Przywara <[email protected]>
2040 L:      [email protected] (moderated for non-subscribers)
2041 S:      Maintained
2042 F:      arch/arm/boot/dts/ecx-*.dts*
2043 F:      arch/arm/boot/dts/highbank.dts
2044 F:      arch/arm/mach-highbank/
2045
2046 ARM/CAVIUM THUNDER NETWORK DRIVER
2047 M:      Sunil Goutham <[email protected]>
2048 L:      [email protected] (moderated for non-subscribers)
2049 S:      Supported
2050 F:      drivers/net/ethernet/cavium/thunder/
2051
2052 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
2053 M:      Lukasz Majewski <[email protected]>
2054 L:      [email protected] (moderated for non-subscribers)
2055 S:      Maintained
2056 F:      arch/arm/mach-ep93xx/ts72xx.c
2057
2058 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
2059 M:      Alexander Shiyan <[email protected]>
2060 L:      [email protected] (moderated for non-subscribers)
2061 S:      Odd Fixes
2062 N:      clps711x
2063
2064 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
2065 M:      Lennert Buytenhek <[email protected]>
2066 L:      [email protected] (moderated for non-subscribers)
2067 S:      Maintained
2068
2069 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
2070 M:      Hartley Sweeten <[email protected]>
2071 M:      Alexander Sverdlin <[email protected]>
2072 L:      [email protected] (moderated for non-subscribers)
2073 S:      Maintained
2074 F:      arch/arm/boot/compressed/misc-ep93xx.h
2075 F:      arch/arm/mach-ep93xx/
2076
2077 ARM/CLKDEV SUPPORT
2078 M:      Russell King <[email protected]>
2079 L:      [email protected] (moderated for non-subscribers)
2080 S:      Maintained
2081 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
2082 F:      drivers/clk/clkdev.c
2083
2084 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
2085 M:      Baruch Siach <[email protected]>
2086 L:      [email protected] (moderated for non-subscribers)
2087 S:      Maintained
2088 F:      arch/arm/boot/dts/cx92755*
2089 N:      digicolor
2090
2091 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2092 M:      Mathieu Poirier <[email protected]>
2093 M:      Suzuki K Poulose <[email protected]>
2094 R:      Mike Leach <[email protected]>
2095 R:      Leo Yan <[email protected]>
2096 L:      [email protected] (moderated for non-subscribers)
2097 L:      [email protected] (moderated for non-subscribers)
2098 S:      Maintained
2099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2100 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2101 F:      Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2102 F:      Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2103 F:      Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2104 F:      Documentation/trace/coresight/*
2105 F:      drivers/hwtracing/coresight/*
2106 F:      include/dt-bindings/arm/coresight-cti-dt.h
2107 F:      include/linux/coresight*
2108 F:      samples/coresight/*
2109 F:      tools/perf/tests/shell/coresight/*
2110 F:      tools/perf/arch/arm/util/auxtrace.c
2111 F:      tools/perf/arch/arm/util/cs-etm.c
2112 F:      tools/perf/arch/arm/util/cs-etm.h
2113 F:      tools/perf/arch/arm/util/pmu.c
2114 F:      tools/perf/util/cs-etm-decoder/*
2115 F:      tools/perf/util/cs-etm.*
2116
2117 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2118 M:      Hans Ulli Kroll <[email protected]>
2119 M:      Linus Walleij <[email protected]>
2120 L:      [email protected] (moderated for non-subscribers)
2121 S:      Maintained
2122 T:      git git://github.com/ulli-kroll/linux.git
2123 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2124 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2125 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2126 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2127 F:      arch/arm/boot/dts/gemini*
2128 F:      arch/arm/mach-gemini/
2129 F:      drivers/crypto/gemini/
2130 F:      drivers/net/ethernet/cortina/
2131 F:      drivers/pinctrl/pinctrl-gemini.c
2132 F:      drivers/rtc/rtc-ftrtc010.c
2133
2134 ARM/CZ.NIC TURRIS SUPPORT
2135 M:      Marek Behún <[email protected]>
2136 S:      Maintained
2137 W:      https://www.turris.cz/
2138 F:      Documentation/ABI/testing/debugfs-moxtet
2139 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2140 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2141 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2142 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2143 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2144 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2145 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2146 F:      drivers/bus/moxtet.c
2147 F:      drivers/firmware/turris-mox-rwtm.c
2148 F:      drivers/leds/leds-turris-omnia.c
2149 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2150 F:      drivers/gpio/gpio-moxtet.c
2151 F:      drivers/watchdog/armada_37xx_wdt.c
2152 F:      include/dt-bindings/bus/moxtet.h
2153 F:      include/linux/armada-37xx-rwtm-mailbox.h
2154 F:      include/linux/moxtet.h
2155
2156 ARM/FARADAY FA526 PORT
2157 M:      Hans Ulli Kroll <[email protected]>
2158 L:      [email protected] (moderated for non-subscribers)
2159 S:      Maintained
2160 T:      git git://git.berlios.de/gemini-board
2161 F:      arch/arm/mm/*-fa*
2162
2163 ARM/FOOTBRIDGE ARCHITECTURE
2164 M:      Russell King <[email protected]>
2165 L:      [email protected] (moderated for non-subscribers)
2166 S:      Maintained
2167 W:      http://www.armlinux.org.uk/
2168 F:      arch/arm/include/asm/hardware/dec21285.h
2169 F:      arch/arm/mach-footbridge/
2170
2171 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2172 M:      Shawn Guo <[email protected]>
2173 M:      Sascha Hauer <[email protected]>
2174 R:      Pengutronix Kernel Team <[email protected]>
2175 R:      Fabio Estevam <[email protected]>
2176 R:      NXP Linux Team <[email protected]>
2177 L:      [email protected] (moderated for non-subscribers)
2178 S:      Maintained
2179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2180 X:      drivers/media/i2c/
2181 F:      arch/arm64/boot/dts/freescale/
2182 X:      arch/arm64/boot/dts/freescale/fsl-*
2183 X:      arch/arm64/boot/dts/freescale/qoriq-*
2184 N:      imx
2185 N:      mxs
2186
2187 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2188 M:      Shawn Guo <[email protected]>
2189 M:      Li Yang <[email protected]>
2190 L:      [email protected] (moderated for non-subscribers)
2191 S:      Maintained
2192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2193 F:      arch/arm/boot/dts/ls1021a*
2194 F:      arch/arm64/boot/dts/freescale/fsl-*
2195 F:      arch/arm64/boot/dts/freescale/qoriq-*
2196
2197 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2198 M:      Shawn Guo <[email protected]>
2199 M:      Sascha Hauer <[email protected]>
2200 R:      Pengutronix Kernel Team <[email protected]>
2201 R:      Stefan Agner <[email protected]>
2202 L:      [email protected] (moderated for non-subscribers)
2203 S:      Maintained
2204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2205 F:      arch/arm/boot/dts/vf*
2206 F:      arch/arm/mach-imx/*vf610*
2207
2208 ARM/GUMSTIX MACHINE SUPPORT
2209 M:      Steve Sakoman <[email protected]>
2210 L:      [email protected] (moderated for non-subscribers)
2211 S:      Maintained
2212
2213 ARM/HISILICON SOC SUPPORT
2214 M:      Wei Xu <[email protected]>
2215 L:      [email protected] (moderated for non-subscribers)
2216 S:      Supported
2217 W:      http://www.hisilicon.com
2218 T:      git https://github.com/hisilicon/linux-hisi.git
2219 F:      arch/arm/boot/dts/hi3*
2220 F:      arch/arm/boot/dts/hip*
2221 F:      arch/arm/boot/dts/hisi*
2222 F:      arch/arm/mach-hisi/
2223 F:      arch/arm64/boot/dts/hisilicon/
2224
2225 ARM/HP JORNADA 7XX MACHINE SUPPORT
2226 M:      Kristoffer Ericson <[email protected]>
2227 S:      Maintained
2228 W:      www.jlime.com
2229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2230 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2231 F:      arch/arm/mach-sa1100/jornada720.c
2232
2233 ARM/HPE GXP ARCHITECTURE
2234 M:      Jean-Marie Verdun <[email protected]>
2235 M:      Nick Hawkins <[email protected]>
2236 S:      Maintained
2237 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2238 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2239 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2240 F:      arch/arm/boot/dts/hpe-bmc*
2241 F:      arch/arm/boot/dts/hpe-gxp*
2242 F:      arch/arm/mach-hpe/
2243 F:      drivers/clocksource/timer-gxp.c
2244 F:      drivers/spi/spi-gxp.c
2245 F:      drivers/watchdog/gxp-wdt.c
2246
2247 ARM/IGEP MACHINE SUPPORT
2248 M:      Enric Balletbo i Serra <[email protected]>
2249 M:      Javier Martinez Canillas <[email protected]>
2250 L:      [email protected]
2251 L:      [email protected] (moderated for non-subscribers)
2252 S:      Maintained
2253 F:      arch/arm/boot/dts/omap3-igep*
2254
2255 ARM/INTEL IXP4XX ARM ARCHITECTURE
2256 M:      Linus Walleij <[email protected]>
2257 M:      Imre Kaloz <[email protected]>
2258 M:      Krzysztof Halasa <[email protected]>
2259 L:      [email protected] (moderated for non-subscribers)
2260 S:      Maintained
2261 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2262 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2263 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2264 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2265 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2266 F:      arch/arm/boot/dts/intel-ixp*
2267 F:      arch/arm/mach-ixp4xx/
2268 F:      drivers/bus/intel-ixp4xx-eb.c
2269 F:      drivers/clocksource/timer-ixp4xx.c
2270 F:      drivers/crypto/ixp4xx_crypto.c
2271 F:      drivers/gpio/gpio-ixp4xx.c
2272 F:      drivers/irqchip/irq-ixp4xx.c
2273
2274 ARM/INTEL KEEMBAY ARCHITECTURE
2275 M:      Paul J. Murphy <[email protected]>
2276 M:      Daniele Alessandrelli <[email protected]>
2277 S:      Maintained
2278 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2279 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2280 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2281
2282 ARM/INTEL XSC3 (MANZANO) ARM CORE
2283 M:      Lennert Buytenhek <[email protected]>
2284 L:      [email protected] (moderated for non-subscribers)
2285 S:      Maintained
2286
2287 ARM/LG1K ARCHITECTURE
2288 M:      Chanho Min <[email protected]>
2289 L:      [email protected] (moderated for non-subscribers)
2290 S:      Maintained
2291 F:      arch/arm64/boot/dts/lg/
2292
2293 ARM/LPC18XX ARCHITECTURE
2294 M:      Vladimir Zapolskiy <[email protected]>
2295 L:      [email protected] (moderated for non-subscribers)
2296 S:      Maintained
2297 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2298 F:      arch/arm/boot/dts/lpc43*
2299 F:      drivers/i2c/busses/i2c-lpc2k.c
2300 F:      drivers/memory/pl172.c
2301 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2302 F:      drivers/rtc/rtc-lpc24xx.c
2303 N:      lpc18xx
2304
2305 ARM/LPC32XX SOC SUPPORT
2306 M:      Vladimir Zapolskiy <[email protected]>
2307 L:      [email protected] (moderated for non-subscribers)
2308 S:      Maintained
2309 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2310 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2311 F:      arch/arm/boot/dts/lpc32*
2312 F:      arch/arm/mach-lpc32xx/
2313 F:      drivers/i2c/busses/i2c-pnx.c
2314 F:      drivers/net/ethernet/nxp/lpc_eth.c
2315 F:      drivers/usb/host/ohci-nxp.c
2316 F:      drivers/watchdog/pnx4008_wdt.c
2317 N:      lpc32xx
2318
2319 ARM/Marvell Dove/MV78xx0/Orion SOC support
2320 M:      Andrew Lunn <[email protected]>
2321 M:      Sebastian Hesselbarth <[email protected]>
2322 M:      Gregory Clement <[email protected]>
2323 L:      [email protected] (moderated for non-subscribers)
2324 S:      Maintained
2325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2326 F:      Documentation/devicetree/bindings/arm/marvell/marvell,dove.txt
2327 F:      Documentation/devicetree/bindings/arm/marvell/marvell,orion5x.txt
2328 F:      Documentation/devicetree/bindings/soc/dove/
2329 F:      arch/arm/boot/dts/dove*
2330 F:      arch/arm/boot/dts/orion5x*
2331 F:      arch/arm/mach-dove/
2332 F:      arch/arm/mach-mv78xx0/
2333 F:      arch/arm/mach-orion5x/
2334 F:      arch/arm/plat-orion/
2335 F:      drivers/soc/dove/
2336
2337 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2338 M:      Andrew Lunn <[email protected]>
2339 M:      Gregory Clement <[email protected]>
2340 M:      Sebastian Hesselbarth <[email protected]>
2341 L:      [email protected] (moderated for non-subscribers)
2342 S:      Maintained
2343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2344 F:      Documentation/devicetree/bindings/arm/marvell/
2345 F:      arch/arm/boot/dts/armada*
2346 F:      arch/arm/boot/dts/kirkwood*
2347 F:      arch/arm/configs/mvebu_*_defconfig
2348 F:      arch/arm/mach-mvebu/
2349 F:      arch/arm64/boot/dts/marvell/armada*
2350 F:      arch/arm64/boot/dts/marvell/cn913*
2351 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2352 F:      drivers/cpufreq/armada-8k-cpufreq.c
2353 F:      drivers/cpufreq/mvebu-cpufreq.c
2354 F:      drivers/irqchip/irq-armada-370-xp.c
2355 F:      drivers/irqchip/irq-mvebu-*
2356 F:      drivers/pinctrl/mvebu/
2357 F:      drivers/rtc/rtc-armada38x.c
2358
2359 ARM/Mediatek RTC DRIVER
2360 M:      Eddie Huang <[email protected]>
2361 M:      Sean Wang <[email protected]>
2362 L:      [email protected] (moderated for non-subscribers)
2363 L:      [email protected] (moderated for non-subscribers)
2364 S:      Maintained
2365 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2366 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2367 F:      drivers/rtc/rtc-mt2712.c
2368 F:      drivers/rtc/rtc-mt6397.c
2369 F:      drivers/rtc/rtc-mt7622.c
2370
2371 ARM/Mediatek SoC support
2372 M:      Matthias Brugger <[email protected]>
2373 R:      AngeloGioacchino Del Regno <[email protected]>
2374 L:      [email protected]
2375 L:      [email protected] (moderated for non-subscribers)
2376 L:      [email protected] (moderated for non-subscribers)
2377 S:      Maintained
2378 W:      https://mtk.wiki.kernel.org/
2379 C:      irc://irc.libera.chat/linux-mediatek
2380 F:      arch/arm/boot/dts/mt2*
2381 F:      arch/arm/boot/dts/mt6*
2382 F:      arch/arm/boot/dts/mt7*
2383 F:      arch/arm/boot/dts/mt8*
2384 F:      arch/arm/mach-mediatek/
2385 F:      arch/arm64/boot/dts/mediatek/
2386 F:      drivers/soc/mediatek/
2387 N:      mtk
2388 N:      mt[2678]
2389 K:      mediatek
2390
2391 ARM/Mediatek USB3 PHY DRIVER
2392 M:      Chunfeng Yun <[email protected]>
2393 L:      [email protected] (moderated for non-subscribers)
2394 L:      [email protected] (moderated for non-subscribers)
2395 S:      Maintained
2396 F:      Documentation/devicetree/bindings/phy/mediatek,*
2397 F:      drivers/phy/mediatek/
2398
2399 ARM/Microchip (AT91) SoC support
2400 M:      Nicolas Ferre <[email protected]>
2401 M:      Alexandre Belloni <[email protected]>
2402 M:      Claudiu Beznea <[email protected]>
2403 L:      [email protected] (moderated for non-subscribers)
2404 S:      Supported
2405 W:      http://www.linux4sam.org
2406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2407 F:      arch/arm/boot/dts/at91*.dts
2408 F:      arch/arm/boot/dts/at91*.dtsi
2409 F:      arch/arm/boot/dts/sama*.dts
2410 F:      arch/arm/boot/dts/sama*.dtsi
2411 F:      arch/arm/include/debug/at91.S
2412 F:      arch/arm/mach-at91/
2413 F:      drivers/memory/atmel*
2414 F:      drivers/watchdog/sama5d4_wdt.c
2415 F:      include/soc/at91/
2416 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2417 X:      drivers/net/wireless/atmel/
2418 N:      at91
2419 N:      atmel
2420
2421 ARM/Microchip Sparx5 SoC support
2422 M:      Lars Povlsen <[email protected]>
2423 M:      Steen Hegelund <[email protected]>
2424 M:      Daniel Machon <[email protected]>
2425 M:      [email protected]
2426 L:      [email protected] (moderated for non-subscribers)
2427 S:      Supported
2428 T:      git git://github.com/microchip-ung/linux-upstream.git
2429 F:      arch/arm64/boot/dts/microchip/
2430 F:      drivers/net/ethernet/microchip/vcap/
2431 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2432 N:      sparx5
2433
2434 Microchip Timer Counter Block (TCB) Capture Driver
2435 M:      Kamel Bouhara <[email protected]>
2436 L:      [email protected] (moderated for non-subscribers)
2437 L:      [email protected]
2438 S:      Maintained
2439 F:      drivers/counter/microchip-tcb-capture.c
2440
2441 ARM/MILBEAUT ARCHITECTURE
2442 M:      Taichi Sugaya <[email protected]>
2443 M:      Takao Orito <[email protected]>
2444 L:      [email protected] (moderated for non-subscribers)
2445 S:      Maintained
2446 F:      arch/arm/boot/dts/milbeaut*
2447 F:      arch/arm/mach-milbeaut/
2448 N:      milbeaut
2449
2450 ARM/MStar/Sigmastar Armv7 SoC support
2451 M:      Daniel Palmer <[email protected]>
2452 M:      Romain Perier <[email protected]>
2453 L:      [email protected] (moderated for non-subscribers)
2454 S:      Maintained
2455 W:      http://linux-chenxing.org/
2456 T:      git git://github.com/linux-chenxing/linux.git
2457 F:      Documentation/devicetree/bindings/arm/mstar/*
2458 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2459 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2460 F:      arch/arm/boot/dts/mstar-*
2461 F:      arch/arm/mach-mstar/
2462 F:      drivers/clk/mstar/
2463 F:      drivers/clocksource/timer-msc313e.c
2464 F:      drivers/gpio/gpio-msc313.c
2465 F:      drivers/rtc/rtc-msc313.c
2466 F:      drivers/watchdog/msc313e_wdt.c
2467 F:      include/dt-bindings/clock/mstar-*
2468 F:      include/dt-bindings/gpio/msc313-gpio.h
2469
2470 ARM/NOMADIK/Ux500 ARCHITECTURES
2471 M:      Linus Walleij <[email protected]>
2472 L:      [email protected] (moderated for non-subscribers)
2473 S:      Maintained
2474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2475 F:      Documentation/devicetree/bindings/arm/ste-*
2476 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2477 F:      Documentation/devicetree/bindings/arm/ux500/
2478 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2479 F:      arch/arm/boot/dts/ste-*
2480 F:      arch/arm/mach-nomadik/
2481 F:      arch/arm/mach-ux500/
2482 F:      drivers/clk/clk-nomadik.c
2483 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2484 F:      drivers/dma/ste_dma40*
2485 F:      drivers/hwspinlock/u8500_hsem.c
2486 F:      drivers/i2c/busses/i2c-nomadik.c
2487 F:      drivers/iio/adc/ab8500-gpadc.c
2488 F:      drivers/mfd/ab8500*
2489 F:      drivers/mfd/abx500*
2490 F:      drivers/mfd/db8500*
2491 F:      drivers/pinctrl/nomadik/
2492 F:      drivers/rtc/rtc-ab8500.c
2493 F:      drivers/rtc/rtc-pl031.c
2494 F:      drivers/soc/ux500/
2495
2496 ARM/NUVOTON NPCM ARCHITECTURE
2497 M:      Avi Fishman <[email protected]>
2498 M:      Tomer Maimon <[email protected]>
2499 M:      Tali Perry <[email protected]>
2500 R:      Patrick Venture <[email protected]>
2501 R:      Nancy Yuen <[email protected]>
2502 R:      Benjamin Fair <[email protected]>
2503 L:      [email protected] (moderated for non-subscribers)
2504 S:      Supported
2505 F:      Documentation/devicetree/bindings/*/*/*npcm*
2506 F:      Documentation/devicetree/bindings/*/*npcm*
2507 F:      Documentation/devicetree/bindings/arm/npcm/*
2508 F:      Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2509 F:      arch/arm/boot/dts/nuvoton-npcm*
2510 F:      arch/arm/mach-npcm/
2511 F:      arch/arm64/boot/dts/nuvoton/
2512 F:      drivers/*/*npcm*
2513 F:      drivers/*/*/*npcm*
2514 F:      drivers/rtc/rtc-nct3018y.c
2515 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2516 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2517
2518 ARM/NUVOTON WPCM450 ARCHITECTURE
2519 M:      Jonathan Neuschäfer <[email protected]>
2520 L:      [email protected] (moderated for non-subscribers)
2521 S:      Maintained
2522 W:      https://github.com/neuschaefer/wpcm450/wiki
2523 F:      Documentation/devicetree/bindings/*/*wpcm*
2524 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2525 F:      arch/arm/configs/wpcm450_defconfig
2526 F:      arch/arm/mach-npcm/wpcm450.c
2527 F:      drivers/*/*/*wpcm*
2528 F:      drivers/*/*wpcm*
2529
2530 ARM/NXP S32G ARCHITECTURE
2531 M:      Chester Lin <[email protected]>
2532 R:      Andreas Färber <[email protected]>
2533 R:      Matthias Brugger <[email protected]>
2534 R:      NXP S32 Linux Team <[email protected]>
2535 L:      [email protected] (moderated for non-subscribers)
2536 S:      Maintained
2537 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2538
2539 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2540 M:      Alexander Clouter <[email protected]>
2541 L:      [email protected] (moderated for non-subscribers)
2542 S:      Maintained
2543 W:      http://www.digriz.org.uk/ts78xx/kernel
2544 F:      arch/arm/mach-orion5x/ts78xx-*
2545
2546 ARM/OXNAS platform support
2547 M:      Neil Armstrong <[email protected]>
2548 L:      [email protected] (moderated for non-subscribers)
2549 L:      [email protected] (moderated for non-subscribers)
2550 S:      Maintained
2551 F:      arch/arm/boot/dts/ox8*.dts*
2552 F:      arch/arm/mach-oxnas/
2553 F:      drivers/power/reset/oxnas-restart.c
2554 N:      oxnas
2555
2556 ARM/QUALCOMM SUPPORT
2557 M:      Andy Gross <[email protected]>
2558 M:      Bjorn Andersson <[email protected]>
2559 R:      Konrad Dybcio <[email protected]>
2560 L:      [email protected]
2561 S:      Maintained
2562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2563 F:      Documentation/devicetree/bindings/*/qcom*
2564 F:      Documentation/devicetree/bindings/soc/qcom/
2565 F:      arch/arm/boot/dts/qcom-*.dts
2566 F:      arch/arm/boot/dts/qcom-*.dtsi
2567 F:      arch/arm/configs/qcom_defconfig
2568 F:      arch/arm/mach-qcom/
2569 F:      arch/arm64/boot/dts/qcom/
2570 F:      drivers/*/*/qcom*
2571 F:      drivers/*/*/qcom/
2572 F:      drivers/*/pm8???-*
2573 F:      drivers/*/qcom*
2574 F:      drivers/*/qcom/
2575 F:      drivers/bluetooth/btqcomsmd.c
2576 F:      drivers/clocksource/timer-qcom.c
2577 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2578 F:      drivers/extcon/extcon-qcom*
2579 F:      drivers/i2c/busses/i2c-qcom-geni.c
2580 F:      drivers/i2c/busses/i2c-qup.c
2581 F:      drivers/iommu/msm*
2582 F:      drivers/mfd/ssbi.c
2583 F:      drivers/mmc/host/mmci_qcom*
2584 F:      drivers/mmc/host/sdhci-msm.c
2585 F:      drivers/pci/controller/dwc/pcie-qcom.c
2586 F:      drivers/phy/qualcomm/
2587 F:      drivers/power/*/msm*
2588 F:      drivers/reset/reset-qcom-*
2589 F:      drivers/ufs/host/ufs-qcom*
2590 F:      drivers/spi/spi-geni-qcom.c
2591 F:      drivers/spi/spi-qcom-qspi.c
2592 F:      drivers/spi/spi-qup.c
2593 F:      drivers/tty/serial/msm_serial.c
2594 F:      drivers/usb/dwc3/dwc3-qcom.c
2595 F:      include/dt-bindings/*/qcom*
2596 F:      include/linux/*/qcom*
2597 F:      include/linux/soc/qcom/
2598
2599 ARM/RDA MICRO ARCHITECTURE
2600 M:      Manivannan Sadhasivam <[email protected]>
2601 L:      [email protected] (moderated for non-subscribers)
2602 L:      [email protected] (moderated for non-subscribers)
2603 S:      Maintained
2604 F:      Documentation/devicetree/bindings/arm/rda.yaml
2605 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2606 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2607 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2608 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2609 F:      arch/arm/boot/dts/rda8810pl-*
2610 F:      drivers/clocksource/timer-rda.c
2611 F:      drivers/gpio/gpio-rda.c
2612 F:      drivers/irqchip/irq-rda-intc.c
2613 F:      drivers/tty/serial/rda-uart.c
2614
2615 ARM/REALTEK ARCHITECTURE
2616 M:      Andreas Färber <[email protected]>
2617 L:      [email protected] (moderated for non-subscribers)
2618 L:      [email protected] (moderated for non-subscribers)
2619 S:      Maintained
2620 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2621 F:      arch/arm/boot/dts/rtd*
2622 F:      arch/arm/mach-realtek/
2623 F:      arch/arm64/boot/dts/realtek/
2624
2625 ARM/RISC-V/RENESAS ARCHITECTURE
2626 M:      Geert Uytterhoeven <[email protected]>
2627 M:      Magnus Damm <[email protected]>
2628 L:      [email protected]
2629 S:      Supported
2630 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2631 C:      irc://irc.libera.chat/renesas-soc
2632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2633 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2634 F:      Documentation/devicetree/bindings/soc/renesas/
2635 F:      arch/arm/boot/dts/emev2*
2636 F:      arch/arm/boot/dts/gr-peach*
2637 F:      arch/arm/boot/dts/iwg20d-q7*
2638 F:      arch/arm/boot/dts/r7s*
2639 F:      arch/arm/boot/dts/r8a*
2640 F:      arch/arm/boot/dts/r9a*
2641 F:      arch/arm/boot/dts/sh*
2642 F:      arch/arm/configs/shmobile_defconfig
2643 F:      arch/arm/include/debug/renesas-scif.S
2644 F:      arch/arm/mach-shmobile/
2645 F:      arch/arm64/boot/dts/renesas/
2646 F:      arch/riscv/boot/dts/renesas/
2647 F:      drivers/soc/renesas/
2648 F:      include/linux/soc/renesas/
2649
2650 ARM/RISCPC ARCHITECTURE
2651 M:      Russell King <[email protected]>
2652 L:      [email protected] (moderated for non-subscribers)
2653 S:      Maintained
2654 W:      http://www.armlinux.org.uk/
2655 F:      arch/arm/include/asm/hardware/ioc.h
2656 F:      arch/arm/include/asm/hardware/iomd.h
2657 F:      arch/arm/include/asm/hardware/memc.h
2658 F:      arch/arm/mach-rpc/
2659 F:      drivers/net/ethernet/8390/etherh.c
2660 F:      drivers/net/ethernet/i825xx/ether1*
2661 F:      drivers/net/ethernet/seeq/ether3*
2662 F:      drivers/scsi/arm/
2663
2664 ARM/Rockchip SoC support
2665 M:      Heiko Stuebner <[email protected]>
2666 L:      [email protected] (moderated for non-subscribers)
2667 L:      [email protected]
2668 S:      Maintained
2669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2670 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2671 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2672 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2673 F:      arch/arm/boot/dts/rk3*
2674 F:      arch/arm/boot/dts/rv11*
2675 F:      arch/arm/mach-rockchip/
2676 F:      drivers/*/*/*rockchip*
2677 F:      drivers/*/*rockchip*
2678 F:      drivers/clk/rockchip/
2679 F:      drivers/i2c/busses/i2c-rk3x.c
2680 F:      sound/soc/rockchip/
2681 N:      rockchip
2682
2683 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2684 M:      Krzysztof Kozlowski <[email protected]>
2685 R:      Alim Akhtar <[email protected]>
2686 L:      [email protected] (moderated for non-subscribers)
2687 L:      [email protected]
2688 S:      Maintained
2689 C:      irc://irc.libera.chat/linux-exynos
2690 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2691 B:      mailto:[email protected]
2692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2693 F:      Documentation/arm/samsung/
2694 F:      Documentation/devicetree/bindings/arm/samsung/
2695 F:      Documentation/devicetree/bindings/hwinfo/samsung,*
2696 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2697 F:      Documentation/devicetree/bindings/soc/samsung/
2698 F:      arch/arm/boot/dts/exynos*
2699 F:      arch/arm/boot/dts/s3c*
2700 F:      arch/arm/boot/dts/s5p*
2701 F:      arch/arm/mach-exynos*/
2702 F:      arch/arm/mach-s3c/
2703 F:      arch/arm/mach-s5p*/
2704 F:      arch/arm64/boot/dts/exynos/
2705 F:      drivers/*/*/*s3c24*
2706 F:      drivers/*/*s3c24*
2707 F:      drivers/*/*s3c64xx*
2708 F:      drivers/*/*s5pv210*
2709 F:      drivers/clocksource/samsung_pwm_timer.c
2710 F:      drivers/memory/samsung/
2711 F:      drivers/pwm/pwm-samsung.c
2712 F:      drivers/soc/samsung/
2713 F:      drivers/tty/serial/samsung*
2714 F:      include/clocksource/samsung_pwm.h
2715 F:      include/linux/platform_data/*s3c*
2716 F:      include/linux/serial_s3c.h
2717 F:      include/linux/soc/samsung/
2718 N:      exynos
2719 N:      s3c64xx
2720 N:      s5pv210
2721
2722 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2723 M:      Łukasz Stelmach <[email protected]>
2724 L:      [email protected] (moderated for non-subscribers)
2725 L:      [email protected]
2726 S:      Maintained
2727 F:      drivers/media/platform/samsung/s5p-g2d/
2728
2729 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2730 M:      Marek Szyprowski <[email protected]>
2731 L:      [email protected]
2732 L:      [email protected]
2733 S:      Maintained
2734 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2735 F:      drivers/media/cec/platform/s5p/
2736
2737 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2738 M:      Andrzej Pietrasiewicz <[email protected]>
2739 M:      Jacek Anaszewski <[email protected]>
2740 M:      Sylwester Nawrocki <[email protected]>
2741 L:      [email protected] (moderated for non-subscribers)
2742 L:      [email protected]
2743 S:      Maintained
2744 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2745 F:      drivers/media/platform/samsung/s5p-jpeg/
2746
2747 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2748 M:      Marek Szyprowski <[email protected]>
2749 M:      Andrzej Hajda <[email protected]>
2750 L:      [email protected] (moderated for non-subscribers)
2751 L:      [email protected]
2752 S:      Maintained
2753 F:      drivers/media/platform/samsung/s5p-mfc/
2754
2755 ARM/SOCFPGA ARCHITECTURE
2756 M:      Dinh Nguyen <[email protected]>
2757 S:      Maintained
2758 W:      http://www.rocketboards.org
2759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2760 F:      arch/arm/boot/dts/socfpga*
2761 F:      arch/arm/configs/socfpga_defconfig
2762 F:      arch/arm/mach-socfpga/
2763 F:      arch/arm64/boot/dts/altera/
2764 F:      arch/arm64/boot/dts/intel/
2765
2766 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2767 M:      Dinh Nguyen <[email protected]>
2768 S:      Maintained
2769 F:      drivers/clk/socfpga/
2770
2771 ARM/SOCFPGA EDAC SUPPORT
2772 M:      Dinh Nguyen <[email protected]>
2773 S:      Maintained
2774 F:      drivers/edac/altera_edac.[ch]
2775
2776 ARM/SPREADTRUM SoC SUPPORT
2777 M:      Orson Zhai <[email protected]>
2778 M:      Baolin Wang <[email protected]>
2779 M:      Chunyan Zhang <[email protected]>
2780 S:      Maintained
2781 F:      arch/arm64/boot/dts/sprd
2782 N:      sprd
2783 N:      sc27xx
2784 N:      sc2731
2785
2786 ARM/STI ARCHITECTURE
2787 M:      Patrice Chotard <[email protected]>
2788 L:      [email protected] (moderated for non-subscribers)
2789 S:      Maintained
2790 W:      http://www.stlinux.com
2791 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2792 F:      arch/arm/boot/dts/sti*
2793 F:      arch/arm/mach-sti/
2794 F:      drivers/ata/ahci_st.c
2795 F:      drivers/char/hw_random/st-rng.c
2796 F:      drivers/clocksource/arm_global_timer.c
2797 F:      drivers/clocksource/clksrc_st_lpc.c
2798 F:      drivers/cpufreq/sti-cpufreq.c
2799 F:      drivers/dma/st_fdma*
2800 F:      drivers/i2c/busses/i2c-st.c
2801 F:      drivers/media/platform/st/sti/c8sectpfe/
2802 F:      drivers/media/rc/st_rc.c
2803 F:      drivers/mmc/host/sdhci-st.c
2804 F:      drivers/phy/st/phy-miphy28lp.c
2805 F:      drivers/phy/st/phy-stih407-usb.c
2806 F:      drivers/pinctrl/pinctrl-st.c
2807 F:      drivers/remoteproc/st_remoteproc.c
2808 F:      drivers/remoteproc/st_slim_rproc.c
2809 F:      drivers/reset/sti/
2810 F:      drivers/rtc/rtc-st-lpc.c
2811 F:      drivers/tty/serial/st-asc.c
2812 F:      drivers/usb/dwc3/dwc3-st.c
2813 F:      drivers/usb/host/ehci-st.c
2814 F:      drivers/usb/host/ohci-st.c
2815 F:      drivers/watchdog/st_lpc_wdt.c
2816 F:      include/linux/remoteproc/st_slim_rproc.h
2817
2818 ARM/STM32 ARCHITECTURE
2819 M:      Maxime Coquelin <[email protected]>
2820 M:      Alexandre Torgue <[email protected]>
2821 L:      [email protected] (moderated for non-subscribers)
2822 L:      [email protected] (moderated for non-subscribers)
2823 S:      Maintained
2824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2825 F:      arch/arm/boot/dts/stm32*
2826 F:      arch/arm/mach-stm32/
2827 F:      drivers/clocksource/armv7m_systick.c
2828 N:      stm32
2829 N:      stm
2830
2831 ARM/SUNPLUS SP7021 SOC SUPPORT
2832 M:      Qin Jian <[email protected]>
2833 L:      [email protected] (moderated for mon-subscribers)
2834 S:      Maintained
2835 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2836 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2837 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2838 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2839 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2840 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2841 F:      arch/arm/configs/sp7021_*defconfig
2842 F:      arch/arm/mach-sunplus/
2843 F:      drivers/irqchip/irq-sp7021-intc.c
2844 F:      drivers/reset/reset-sunplus.c
2845 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2846 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2847
2848 ARM/Synaptics SoC support
2849 M:      Jisheng Zhang <[email protected]>
2850 M:      Sebastian Hesselbarth <[email protected]>
2851 L:      [email protected] (moderated for non-subscribers)
2852 S:      Maintained
2853 F:      arch/arm/boot/dts/berlin*
2854 F:      arch/arm/mach-berlin/
2855 F:      arch/arm64/boot/dts/synaptics/
2856
2857 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2858 M:      Lennert Buytenhek <[email protected]>
2859 L:      [email protected] (moderated for non-subscribers)
2860 S:      Maintained
2861
2862 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2863 M:      Hans Verkuil <[email protected]>
2864 L:      [email protected]
2865 L:      [email protected]
2866 S:      Maintained
2867 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2868 F:      drivers/media/cec/platform/tegra/
2869
2870 ARM/TESLA FSD SoC SUPPORT
2871 M:      Alim Akhtar <[email protected]>
2872 M:      [email protected]
2873 L:      [email protected] (moderated for non-subscribers)
2874 L:      [email protected]
2875 S:      Maintained
2876 F:      arch/arm64/boot/dts/tesla/
2877
2878 ARM/TETON BGA MACHINE SUPPORT
2879 M:      "Mark F. Brown" <[email protected]>
2880 L:      [email protected] (moderated for non-subscribers)
2881 S:      Maintained
2882
2883 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2884 M:      Santosh Shilimkar <[email protected]>
2885 L:      [email protected]
2886 S:      Maintained
2887 F:      drivers/memory/*emif*
2888
2889 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2890 M:      Nishanth Menon <[email protected]>
2891 M:      Santosh Shilimkar <[email protected]>
2892 L:      [email protected] (moderated for non-subscribers)
2893 S:      Maintained
2894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2895 F:      arch/arm/boot/dts/keystone-*
2896 F:      arch/arm/mach-keystone/
2897
2898 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2899 M:      Santosh Shilimkar <[email protected]>
2900 L:      [email protected]
2901 S:      Maintained
2902 F:      drivers/clk/keystone/
2903
2904 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2905 M:      Santosh Shilimkar <[email protected]>
2906 L:      [email protected] (moderated for non-subscribers)
2907 L:      [email protected]
2908 S:      Maintained
2909 F:      drivers/clocksource/timer-keystone.c
2910
2911 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2912 M:      Santosh Shilimkar <[email protected]>
2913 L:      [email protected]
2914 S:      Maintained
2915 F:      drivers/power/reset/keystone-reset.c
2916
2917 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2918 M:      Nishanth Menon <[email protected]>
2919 M:      Vignesh Raghavendra <[email protected]>
2920 M:      Tero Kristo <[email protected]>
2921 L:      [email protected] (moderated for non-subscribers)
2922 S:      Supported
2923 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2924 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2925 F:      arch/arm64/boot/dts/ti/Makefile
2926 F:      arch/arm64/boot/dts/ti/k3-*
2927 F:      include/dt-bindings/pinctrl/k3.h
2928
2929 ARM/TOSHIBA VISCONTI ARCHITECTURE
2930 M:      Nobuhiro Iwamatsu <[email protected]>
2931 L:      [email protected] (moderated for non-subscribers)
2932 S:      Supported
2933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2934 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2935 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2936 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2937 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2938 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2939 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2940 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2941 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2942 F:      arch/arm64/boot/dts/toshiba/
2943 F:      drivers/clk/visconti/
2944 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2945 F:      drivers/gpio/gpio-visconti.c
2946 F:      drivers/pci/controller/dwc/pcie-visconti.c
2947 F:      drivers/pinctrl/visconti/
2948 F:      drivers/watchdog/visconti_wdt.c
2949 N:      visconti
2950
2951 ARM/UNIPHIER ARCHITECTURE
2952 M:      Kunihiko Hayashi <[email protected]>
2953 M:      Masami Hiramatsu <[email protected]>
2954 L:      [email protected] (moderated for non-subscribers)
2955 S:      Maintained
2956 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2957 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2958 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2959 F:      arch/arm/boot/dts/uniphier*
2960 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2961 F:      arch/arm/mach-uniphier/
2962 F:      arch/arm/mm/cache-uniphier.c
2963 F:      arch/arm64/boot/dts/socionext/uniphier*
2964 F:      drivers/bus/uniphier-system-bus.c
2965 F:      drivers/clk/uniphier/
2966 F:      drivers/dma/uniphier-mdmac.c
2967 F:      drivers/gpio/gpio-uniphier.c
2968 F:      drivers/i2c/busses/i2c-uniphier*
2969 F:      drivers/irqchip/irq-uniphier-aidet.c
2970 F:      drivers/mmc/host/uniphier-sd.c
2971 F:      drivers/pinctrl/uniphier/
2972 F:      drivers/reset/reset-uniphier.c
2973 F:      drivers/tty/serial/8250/8250_uniphier.c
2974 N:      uniphier
2975
2976 ARM/VERSATILE EXPRESS PLATFORM
2977 M:      Liviu Dudau <[email protected]>
2978 M:      Sudeep Holla <[email protected]>
2979 M:      Lorenzo Pieralisi <[email protected]>
2980 L:      [email protected] (moderated for non-subscribers)
2981 S:      Maintained
2982 F:      */*/*/vexpress*
2983 F:      */*/vexpress*
2984 F:      arch/arm/boot/dts/vexpress*
2985 F:      arch/arm/mach-versatile/
2986 F:      arch/arm64/boot/dts/arm/
2987 F:      drivers/clk/versatile/clk-vexpress-osc.c
2988 F:      drivers/clocksource/timer-versatile.c
2989 N:      mps2
2990
2991 ARM/VFP SUPPORT
2992 M:      Russell King <[email protected]>
2993 L:      [email protected] (moderated for non-subscribers)
2994 S:      Maintained
2995 W:      http://www.armlinux.org.uk/
2996 F:      arch/arm/vfp/
2997
2998 ARM/VT8500 ARM ARCHITECTURE
2999 L:      [email protected] (moderated for non-subscribers)
3000 S:      Orphan
3001 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3002 F:      arch/arm/mach-vt8500/
3003 F:      drivers/clocksource/timer-vt8500.c
3004 F:      drivers/i2c/busses/i2c-wmt.c
3005 F:      drivers/mmc/host/wmt-sdmmc.c
3006 F:      drivers/pwm/pwm-vt8500.c
3007 F:      drivers/rtc/rtc-vt8500.c
3008 F:      drivers/tty/serial/vt8500_serial.c
3009 F:      drivers/usb/host/ehci-platform.c
3010 F:      drivers/usb/host/uhci-platform.c
3011 F:      drivers/video/fbdev/vt8500lcdfb.*
3012 F:      drivers/video/fbdev/wm8505fb*
3013 F:      drivers/video/fbdev/wmt_ge_rops.*
3014
3015 ARM/ZYNQ ARCHITECTURE
3016 M:      Michal Simek <[email protected]>
3017 L:      [email protected] (moderated for non-subscribers)
3018 S:      Supported
3019 W:      http://wiki.xilinx.com
3020 T:      git https://github.com/Xilinx/linux-xlnx.git
3021 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3022 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3023 F:      Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3024 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3025 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3026 F:      arch/arm/mach-zynq/
3027 F:      drivers/clocksource/timer-cadence-ttc.c
3028 F:      drivers/cpuidle/cpuidle-zynq.c
3029 F:      drivers/edac/synopsys_edac.c
3030 F:      drivers/i2c/busses/i2c-cadence.c
3031 F:      drivers/i2c/busses/i2c-xiic.c
3032 F:      drivers/mmc/host/sdhci-of-arasan.c
3033 N:      zynq
3034 N:      xilinx
3035
3036 ARM64 PORT (AARCH64 ARCHITECTURE)
3037 M:      Catalin Marinas <[email protected]>
3038 M:      Will Deacon <[email protected]>
3039 L:      [email protected] (moderated for non-subscribers)
3040 S:      Maintained
3041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3042 F:      Documentation/arm64/
3043 F:      arch/arm64/
3044 F:      tools/testing/selftests/arm64/
3045 X:      arch/arm64/boot/dts/
3046
3047 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3048 M:      George McCollister <[email protected]>
3049 L:      [email protected]
3050 S:      Maintained
3051 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3052 F:      drivers/net/dsa/xrs700x/*
3053 F:      net/dsa/tag_xrs700x.c
3054
3055 AS3645A LED FLASH CONTROLLER DRIVER
3056 M:      Sakari Ailus <[email protected]>
3057 L:      [email protected]
3058 S:      Maintained
3059 F:      drivers/leds/flash/leds-as3645a.c
3060
3061 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3062 M:      Tianshu Qiu <[email protected]>
3063 L:      [email protected]
3064 S:      Maintained
3065 T:      git git://linuxtv.org/media_tree.git
3066 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3067 F:      drivers/media/i2c/ak7375.c
3068
3069 ASAHI KASEI AK8974 DRIVER
3070 M:      Linus Walleij <[email protected]>
3071 L:      [email protected]
3072 S:      Supported
3073 W:      http://www.akm.com/
3074 F:      drivers/iio/magnetometer/ak8974.c
3075
3076 ASC7621 HARDWARE MONITOR DRIVER
3077 M:      George Joseph <[email protected]>
3078 L:      [email protected]
3079 S:      Maintained
3080 F:      Documentation/hwmon/asc7621.rst
3081 F:      drivers/hwmon/asc7621.c
3082
3083 ASIX AX88796C SPI ETHERNET ADAPTER
3084 M:      Łukasz Stelmach <[email protected]>
3085 S:      Maintained
3086 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3087 F:      drivers/net/ethernet/asix/ax88796c_*
3088
3089 ASPEED PECI CONTROLLER
3090 M:      Iwona Winiarska <[email protected]>
3091 L:      [email protected] (moderated for non-subscribers)
3092 L:      [email protected] (moderated for non-subscribers)
3093 S:      Supported
3094 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3095 F:      drivers/peci/controller/peci-aspeed.c
3096
3097 ASPEED PINCTRL DRIVERS
3098 M:      Andrew Jeffery <[email protected]>
3099 L:      [email protected] (moderated for non-subscribers)
3100 L:      [email protected] (moderated for non-subscribers)
3101 L:      [email protected]
3102 S:      Maintained
3103 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3104 F:      drivers/pinctrl/aspeed/
3105
3106 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3107 M:      Eddie James <[email protected]>
3108 L:      [email protected] (moderated for non-subscribers)
3109 S:      Maintained
3110 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3111 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3112 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3113
3114 ASPEED SD/MMC DRIVER
3115 M:      Andrew Jeffery <[email protected]>
3116 L:      [email protected] (moderated for non-subscribers)
3117 L:      [email protected] (moderated for non-subscribers)
3118 L:      [email protected]
3119 S:      Maintained
3120 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3121 F:      drivers/mmc/host/sdhci-of-aspeed*
3122
3123 ASPEED SMC SPI DRIVER
3124 M:      Chin-Ting Kuo <[email protected]>
3125 M:      Cédric Le Goater <[email protected]>
3126 L:      [email protected] (moderated for non-subscribers)
3127 L:      [email protected] (moderated for non-subscribers)
3128 L:      [email protected]
3129 S:      Maintained
3130 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3131 F:      drivers/spi/spi-aspeed-smc.c
3132
3133 ASPEED VIDEO ENGINE DRIVER
3134 M:      Eddie James <[email protected]>
3135 L:      [email protected]
3136 L:      [email protected] (moderated for non-subscribers)
3137 S:      Maintained
3138 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3139 F:      drivers/media/platform/aspeed/
3140
3141 ASPEED USB UDC DRIVER
3142 M:      Neal Liu <[email protected]>
3143 L:      [email protected] (moderated for non-subscribers)
3144 S:      Maintained
3145 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3146 F:      drivers/usb/gadget/udc/aspeed_udc.c
3147
3148 ASPEED CRYPTO DRIVER
3149 M:      Neal Liu <[email protected]>
3150 L:      [email protected] (moderated for non-subscribers)
3151 S:      Maintained
3152 F:      Documentation/devicetree/bindings/crypto/aspeed,*
3153 F:      drivers/crypto/aspeed/
3154
3155 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3156 M:      Corentin Chary <[email protected]>
3157 L:      [email protected]
3158 L:      [email protected]
3159 S:      Maintained
3160 W:      http://acpi4asus.sf.net
3161 F:      drivers/platform/x86/asus*.c
3162 F:      drivers/platform/x86/eeepc*.c
3163
3164 ASUS TF103C DOCK DRIVER
3165 M:      Hans de Goede <[email protected]>
3166 L:      [email protected]
3167 S:      Maintained
3168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3169 F:      drivers/platform/x86/asus-tf103c-dock.c
3170
3171 ASUS WMI HARDWARE MONITOR DRIVER
3172 M:      Ed Brindley <[email protected]>
3173 M:      Denis Pauk <[email protected]>
3174 L:      [email protected]
3175 S:      Maintained
3176 F:      drivers/hwmon/asus_wmi_sensors.c
3177
3178 ASUS EC HARDWARE MONITOR DRIVER
3179 M:      Eugene Shalygin <[email protected]>
3180 L:      [email protected]
3181 S:      Maintained
3182 F:      drivers/hwmon/asus-ec-sensors.c
3183
3184 ASUS WIRELESS RADIO CONTROL DRIVER
3185 M:      João Paulo Rechi Vita <[email protected]>
3186 L:      [email protected]
3187 S:      Maintained
3188 F:      drivers/platform/x86/asus-wireless.c
3189
3190 ASYMMETRIC KEYS
3191 M:      David Howells <[email protected]>
3192 L:      [email protected]
3193 S:      Maintained
3194 F:      Documentation/crypto/asymmetric-keys.rst
3195 F:      crypto/asymmetric_keys/
3196 F:      include/crypto/pkcs7.h
3197 F:      include/crypto/public_key.h
3198 F:      include/linux/verification.h
3199
3200 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3201 R:      Dan Williams <[email protected]>
3202 S:      Odd fixes
3203 W:      http://sourceforge.net/projects/xscaleiop
3204 F:      Documentation/crypto/async-tx-api.rst
3205 F:      crypto/async_tx/
3206 F:      include/linux/async_tx.h
3207
3208 AT24 EEPROM DRIVER
3209 M:      Bartosz Golaszewski <[email protected]>
3210 L:      [email protected]
3211 S:      Maintained
3212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3213 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3214 F:      drivers/misc/eeprom/at24.c
3215
3216 ATA OVER ETHERNET (AOE) DRIVER
3217 M:      "Justin Sanders" <[email protected]>
3218 S:      Supported
3219 W:      http://www.openaoe.org/
3220 F:      Documentation/admin-guide/aoe/
3221 F:      drivers/block/aoe/
3222
3223 ATC260X PMIC MFD DRIVER
3224 M:      Manivannan Sadhasivam <[email protected]>
3225 M:      Cristian Ciocaltea <[email protected]>
3226 L:      [email protected]
3227 S:      Maintained
3228 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3229 F:      drivers/input/misc/atc260x-onkey.c
3230 F:      drivers/mfd/atc260*
3231 F:      drivers/power/reset/atc260x-poweroff.c
3232 F:      drivers/regulator/atc260x-regulator.c
3233 F:      include/linux/mfd/atc260x/*
3234
3235 ATHEROS 71XX/9XXX GPIO DRIVER
3236 M:      Alban Bedel <[email protected]>
3237 S:      Maintained
3238 W:      https://github.com/AlbanBedel/linux
3239 T:      git git://github.com/AlbanBedel/linux
3240 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3241 F:      drivers/gpio/gpio-ath79.c
3242
3243 ATHEROS 71XX/9XXX USB PHY DRIVER
3244 M:      Alban Bedel <[email protected]>
3245 S:      Maintained
3246 W:      https://github.com/AlbanBedel/linux
3247 T:      git git://github.com/AlbanBedel/linux
3248 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3249 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3250
3251 ATHEROS ATH GENERIC UTILITIES
3252 M:      Kalle Valo <[email protected]>
3253 L:      [email protected]
3254 S:      Supported
3255 F:      drivers/net/wireless/ath/*
3256
3257 ATHEROS ATH5K WIRELESS DRIVER
3258 M:      Jiri Slaby <[email protected]>
3259 M:      Nick Kossifidis <[email protected]>
3260 M:      Luis Chamberlain <[email protected]>
3261 L:      [email protected]
3262 S:      Maintained
3263 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3264 F:      drivers/net/wireless/ath/ath5k/
3265
3266 ATHEROS ATH6KL WIRELESS DRIVER
3267 L:      [email protected]
3268 S:      Orphan
3269 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3270 F:      drivers/net/wireless/ath/ath6kl/
3271
3272 ATI_REMOTE2 DRIVER
3273 M:      Ville Syrjala <[email protected]>
3274 S:      Maintained
3275 F:      drivers/input/misc/ati_remote2.c
3276
3277 ATK0110 HWMON DRIVER
3278 M:      Luca Tettamanti <[email protected]>
3279 L:      [email protected]
3280 S:      Maintained
3281 F:      drivers/hwmon/asus_atk0110.c
3282
3283 ATLX ETHERNET DRIVERS
3284 M:      Chris Snook <[email protected]>
3285 L:      [email protected]
3286 S:      Maintained
3287 W:      http://sourceforge.net/projects/atl1
3288 W:      http://atl1.sourceforge.net
3289 F:      drivers/net/ethernet/atheros/
3290
3291 ATM
3292 M:      Chas Williams <[email protected]>
3293 L:      [email protected] (moderated for non-subscribers)
3294 L:      [email protected]
3295 S:      Maintained
3296 W:      http://linux-atm.sourceforge.net
3297 F:      drivers/atm/
3298 F:      include/linux/atm*
3299 F:      include/uapi/linux/atm*
3300
3301 ATMEL MACB ETHERNET DRIVER
3302 M:      Nicolas Ferre <[email protected]>
3303 M:      Claudiu Beznea <[email protected]>
3304 S:      Supported
3305 F:      drivers/net/ethernet/cadence/
3306
3307 ATMEL MAXTOUCH DRIVER
3308 M:      Nick Dyer <[email protected]>
3309 S:      Maintained
3310 T:      git git://github.com/ndyer/linux.git
3311 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3312 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3313
3314 ATMEL WIRELESS DRIVER
3315 M:      Simon Kelley <[email protected]>
3316 L:      [email protected]
3317 S:      Maintained
3318 W:      http://www.thekelleys.org.uk/atmel
3319 W:      http://atmelwlandriver.sourceforge.net/
3320 F:      drivers/net/wireless/atmel/atmel*
3321
3322 ATOMIC INFRASTRUCTURE
3323 M:      Will Deacon <[email protected]>
3324 M:      Peter Zijlstra <[email protected]>
3325 R:      Boqun Feng <[email protected]>
3326 R:      Mark Rutland <[email protected]>
3327 L:      [email protected]
3328 S:      Maintained
3329 F:      arch/*/include/asm/atomic*.h
3330 F:      include/*/atomic*.h
3331 F:      include/linux/refcount.h
3332 F:      Documentation/atomic_*.txt
3333 F:      scripts/atomic/
3334
3335 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3336 M:      Bradley Grove <[email protected]>
3337 L:      [email protected]
3338 S:      Supported
3339 W:      http://www.attotech.com
3340 F:      drivers/scsi/esas2r
3341
3342 ATUSB IEEE 802.15.4 RADIO DRIVER
3343 M:      Stefan Schmidt <[email protected]>
3344 L:      [email protected]
3345 S:      Maintained
3346 F:      drivers/net/ieee802154/at86rf230.h
3347 F:      drivers/net/ieee802154/atusb.c
3348 F:      drivers/net/ieee802154/atusb.h
3349
3350 AUDIT SUBSYSTEM
3351 M:      Paul Moore <[email protected]>
3352 M:      Eric Paris <[email protected]>
3353 L:      [email protected] (moderated for non-subscribers)
3354 S:      Supported
3355 W:      https://github.com/linux-audit
3356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3357 F:      include/asm-generic/audit_*.h
3358 F:      include/linux/audit.h
3359 F:      include/linux/audit_arch.h
3360 F:      include/uapi/linux/audit.h
3361 F:      kernel/audit*
3362 F:      lib/*audit.c
3363
3364 AUXILIARY DISPLAY DRIVERS
3365 M:      Miguel Ojeda <[email protected]>
3366 S:      Maintained
3367 F:      Documentation/devicetree/bindings/auxdisplay/
3368 F:      drivers/auxdisplay/
3369 F:      include/linux/cfag12864b.h
3370
3371 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3372 M:      Andreas Klinger <[email protected]>
3373 L:      [email protected]
3374 S:      Maintained
3375 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3376 F:      drivers/iio/adc/hx711.c
3377
3378 AX.25 NETWORK LAYER
3379 M:      Ralf Baechle <[email protected]>
3380 L:      [email protected]
3381 S:      Maintained
3382 W:      http://www.linux-ax25.org/
3383 F:      include/net/ax25.h
3384 F:      include/uapi/linux/ax25.h
3385 F:      net/ax25/
3386
3387 AXENTIA ARM DEVICES
3388 M:      Peter Rosin <[email protected]>
3389 L:      [email protected] (moderated for non-subscribers)
3390 S:      Maintained
3391 F:      arch/arm/boot/dts/at91-linea.dtsi
3392 F:      arch/arm/boot/dts/at91-natte.dtsi
3393 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3394 F:      arch/arm/boot/dts/at91-tse850-3.dts
3395
3396 AXENTIA ASOC DRIVERS
3397 M:      Peter Rosin <[email protected]>
3398 L:      [email protected] (moderated for non-subscribers)
3399 S:      Maintained
3400 F:      Documentation/devicetree/bindings/sound/axentia,*
3401 F:      sound/soc/atmel/tse850-pcm5142.c
3402
3403 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3404 M:      Nuno Sá <[email protected]>
3405 L:      [email protected]
3406 S:      Supported
3407 W:      https://ez.analog.com/linux-software-drivers
3408 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3409 F:      drivers/hwmon/axi-fan-control.c
3410
3411 AXXIA I2C CONTROLLER
3412 M:      Krzysztof Adamski <[email protected]>
3413 L:      [email protected]
3414 S:      Maintained
3415 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3416 F:      drivers/i2c/busses/i2c-axxia.c
3417
3418 AZ6007 DVB DRIVER
3419 M:      Mauro Carvalho Chehab <[email protected]>
3420 L:      [email protected]
3421 S:      Maintained
3422 W:      https://linuxtv.org
3423 T:      git git://linuxtv.org/media_tree.git
3424 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3425
3426 AZTECH FM RADIO RECEIVER DRIVER
3427 M:      Hans Verkuil <[email protected]>
3428 L:      [email protected]
3429 S:      Maintained
3430 W:      https://linuxtv.org
3431 T:      git git://linuxtv.org/media_tree.git
3432 F:      drivers/media/radio/radio-aztech*
3433
3434 B43 WIRELESS DRIVER
3435 L:      [email protected]
3436 L:      [email protected]
3437 S:      Odd Fixes
3438 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3439 F:      drivers/net/wireless/broadcom/b43/
3440
3441 B43LEGACY WIRELESS DRIVER
3442 M:      Larry Finger <[email protected]>
3443 L:      [email protected]
3444 L:      [email protected]
3445 S:      Maintained
3446 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3447 F:      drivers/net/wireless/broadcom/b43legacy/
3448
3449 BACKLIGHT CLASS/SUBSYSTEM
3450 M:      Lee Jones <[email protected]>
3451 M:      Daniel Thompson <[email protected]>
3452 M:      Jingoo Han <[email protected]>
3453 L:      [email protected]
3454 S:      Maintained
3455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3456 F:      Documentation/ABI/stable/sysfs-class-backlight
3457 F:      Documentation/ABI/testing/sysfs-class-backlight
3458 F:      Documentation/devicetree/bindings/leds/backlight
3459 F:      drivers/video/backlight/
3460 F:      include/linux/backlight.h
3461 F:      include/linux/pwm_backlight.h
3462
3463 BARCO P50 GPIO DRIVER
3464 M:      Santosh Kumar Yadav <[email protected]>
3465 M:      Peter Korsgaard <[email protected]>
3466 S:      Maintained
3467 F:      drivers/platform/x86/barco-p50-gpio.c
3468
3469 BATMAN ADVANCED
3470 M:      Marek Lindner <[email protected]>
3471 M:      Simon Wunderlich <[email protected]>
3472 M:      Antonio Quartulli <[email protected]>
3473 M:      Sven Eckelmann <[email protected]>
3474 L:      [email protected] (moderated for non-subscribers)
3475 S:      Maintained
3476 W:      https://www.open-mesh.org/
3477 Q:      https://patchwork.open-mesh.org/project/batman/list/
3478 B:      https://www.open-mesh.org/projects/batman-adv/issues
3479 C:      ircs://irc.hackint.org/batadv
3480 T:      git https://git.open-mesh.org/linux-merge.git
3481 F:      Documentation/networking/batman-adv.rst
3482 F:      include/uapi/linux/batadv_packet.h
3483 F:      include/uapi/linux/batman_adv.h
3484 F:      net/batman-adv/
3485
3486 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3487 M:      Thomas Sailer <[email protected]>
3488 L:      [email protected]
3489 S:      Maintained
3490 W:      http://www.baycom.org/~tom/ham/ham.html
3491 F:      drivers/net/hamradio/baycom*
3492
3493 BCACHE (BLOCK LAYER CACHE)
3494 M:      Coly Li <[email protected]>
3495 M:      Kent Overstreet <[email protected]>
3496 L:      [email protected]
3497 S:      Maintained
3498 W:      http://bcache.evilpiepirate.org
3499 C:      irc://irc.oftc.net/bcache
3500 F:      drivers/md/bcache/
3501
3502 BDISP ST MEDIA DRIVER
3503 M:      Fabien Dessenne <[email protected]>
3504 L:      [email protected]
3505 S:      Supported
3506 W:      https://linuxtv.org
3507 T:      git git://linuxtv.org/media_tree.git
3508 F:      drivers/media/platform/st/sti/bdisp
3509
3510 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3511 M:      Dariusz Marcinkiewicz <[email protected]>
3512 L:      [email protected]
3513 S:      Maintained
3514 F:      drivers/net/ethernet/ec_bhf.c
3515
3516 BEFS FILE SYSTEM
3517 M:      Luis de Bethencourt <[email protected]>
3518 M:      Salah Triki <[email protected]>
3519 S:      Maintained
3520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3521 F:      Documentation/filesystems/befs.rst
3522 F:      fs/befs/
3523
3524 BFQ I/O SCHEDULER
3525 M:      Paolo Valente <[email protected]>
3526 M:      Jens Axboe <[email protected]>
3527 L:      [email protected]
3528 S:      Maintained
3529 F:      Documentation/block/bfq-iosched.rst
3530 F:      block/bfq-*
3531
3532 BFS FILE SYSTEM
3533 M:      "Tigran A. Aivazian" <[email protected]>
3534 S:      Maintained
3535 F:      Documentation/filesystems/bfs.rst
3536 F:      fs/bfs/
3537 F:      include/uapi/linux/bfs_fs.h
3538
3539 BITMAP API
3540 M:      Yury Norov <[email protected]>
3541 R:      Andy Shevchenko <[email protected]>
3542 R:      Rasmus Villemoes <[email protected]>
3543 S:      Maintained
3544 F:      include/linux/bitmap.h
3545 F:      include/linux/cpumask.h
3546 F:      include/linux/find.h
3547 F:      include/linux/nodemask.h
3548 F:      lib/bitmap.c
3549 F:      lib/cpumask.c
3550 F:      lib/cpumask_kunit.c
3551 F:      lib/find_bit.c
3552 F:      lib/find_bit_benchmark.c
3553 F:      lib/test_bitmap.c
3554 F:      tools/include/linux/bitmap.h
3555 F:      tools/include/linux/find.h
3556 F:      tools/lib/bitmap.c
3557 F:      tools/lib/find_bit.c
3558
3559 BLINKM RGB LED DRIVER
3560 M:      Jan-Simon Moeller <[email protected]>
3561 S:      Maintained
3562 F:      drivers/leds/leds-blinkm.c
3563
3564 BLOCK LAYER
3565 M:      Jens Axboe <[email protected]>
3566 L:      [email protected]
3567 S:      Maintained
3568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3569 F:      Documentation/ABI/stable/sysfs-block
3570 F:      Documentation/block/
3571 F:      block/
3572 F:      drivers/block/
3573 F:      include/linux/bio.h
3574 F:      include/linux/blk*
3575 F:      kernel/trace/blktrace.c
3576 F:      lib/sbitmap.c
3577
3578 BLOCK2MTD DRIVER
3579 M:      Joern Engel <[email protected]>
3580 L:      [email protected]
3581 S:      Maintained
3582 F:      drivers/mtd/devices/block2mtd.c
3583
3584 BLUETOOTH DRIVERS
3585 M:      Marcel Holtmann <[email protected]>
3586 M:      Johan Hedberg <[email protected]>
3587 M:      Luiz Augusto von Dentz <[email protected]>
3588 L:      [email protected]
3589 S:      Supported
3590 W:      http://www.bluez.org/
3591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3593 F:      drivers/bluetooth/
3594
3595 BLUETOOTH SUBSYSTEM
3596 M:      Marcel Holtmann <[email protected]>
3597 M:      Johan Hedberg <[email protected]>
3598 M:      Luiz Augusto von Dentz <[email protected]>
3599 L:      [email protected]
3600 S:      Supported
3601 W:      http://www.bluez.org/
3602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3604 F:      include/net/bluetooth/
3605 F:      net/bluetooth/
3606
3607 BONDING DRIVER
3608 M:      Jay Vosburgh <[email protected]>
3609 M:      Andy Gospodarek <[email protected]>
3610 L:      [email protected]
3611 S:      Supported
3612 W:      http://sourceforge.net/projects/bonding/
3613 F:      Documentation/networking/bonding.rst
3614 F:      drivers/net/bonding/
3615 F:      include/net/bond*
3616 F:      include/uapi/linux/if_bonding.h
3617 F:      tools/testing/selftests/drivers/net/bonding/
3618
3619 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3620 M:      Dan Robertson <[email protected]>
3621 L:      [email protected]
3622 S:      Maintained
3623 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3624 F:      drivers/iio/accel/bma400*
3625
3626 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3627 M:      Alexei Starovoitov <[email protected]>
3628 M:      Daniel Borkmann <[email protected]>
3629 M:      Andrii Nakryiko <[email protected]>
3630 R:      Martin KaFai Lau <[email protected]>
3631 R:      Song Liu <[email protected]>
3632 R:      Yonghong Song <[email protected]>
3633 R:      John Fastabend <[email protected]>
3634 R:      KP Singh <[email protected]>
3635 R:      Stanislav Fomichev <[email protected]>
3636 R:      Hao Luo <[email protected]>
3637 R:      Jiri Olsa <[email protected]>
3638 L:      [email protected]
3639 S:      Supported
3640 W:      https://bpf.io/
3641 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3644 F:      Documentation/bpf/
3645 F:      Documentation/networking/filter.rst
3646 F:      Documentation/userspace-api/ebpf/
3647 F:      arch/*/net/*
3648 F:      include/linux/bpf*
3649 F:      include/linux/btf*
3650 F:      include/linux/filter.h
3651 F:      include/trace/events/xdp.h
3652 F:      include/uapi/linux/bpf*
3653 F:      include/uapi/linux/btf*
3654 F:      include/uapi/linux/filter.h
3655 F:      kernel/bpf/
3656 F:      kernel/trace/bpf_trace.c
3657 F:      lib/test_bpf.c
3658 F:      net/bpf/
3659 F:      net/core/filter.c
3660 F:      net/sched/act_bpf.c
3661 F:      net/sched/cls_bpf.c
3662 F:      samples/bpf/
3663 F:      scripts/bpf_doc.py
3664 F:      scripts/pahole-flags.sh
3665 F:      scripts/pahole-version.sh
3666 F:      tools/bpf/
3667 F:      tools/lib/bpf/
3668 F:      tools/testing/selftests/bpf/
3669
3670 BPF JIT for ARM
3671 M:      Shubham Bansal <[email protected]>
3672 L:      [email protected]
3673 S:      Odd Fixes
3674 F:      arch/arm/net/
3675
3676 BPF JIT for ARM64
3677 M:      Daniel Borkmann <[email protected]>
3678 M:      Alexei Starovoitov <[email protected]>
3679 M:      Zi Shen Lim <[email protected]>
3680 L:      [email protected]
3681 S:      Supported
3682 F:      arch/arm64/net/
3683
3684 BPF JIT for MIPS (32-BIT AND 64-BIT)
3685 M:      Johan Almbladh <[email protected]>
3686 M:      Paul Burton <[email protected]>
3687 L:      [email protected]
3688 S:      Maintained
3689 F:      arch/mips/net/
3690
3691 BPF JIT for NFP NICs
3692 M:      Jakub Kicinski <[email protected]>
3693 L:      [email protected]
3694 S:      Odd Fixes
3695 F:      drivers/net/ethernet/netronome/nfp/bpf/
3696
3697 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3698 M:      Naveen N. Rao <[email protected]>
3699 M:      Michael Ellerman <[email protected]>
3700 L:      [email protected]
3701 S:      Supported
3702 F:      arch/powerpc/net/
3703
3704 BPF JIT for RISC-V (32-bit)
3705 M:      Luke Nelson <[email protected]>
3706 M:      Xi Wang <[email protected]>
3707 L:      [email protected]
3708 S:      Maintained
3709 F:      arch/riscv/net/
3710 X:      arch/riscv/net/bpf_jit_comp64.c
3711
3712 BPF JIT for RISC-V (64-bit)
3713 M:      Björn Töpel <[email protected]>
3714 L:      [email protected]
3715 S:      Maintained
3716 F:      arch/riscv/net/
3717 X:      arch/riscv/net/bpf_jit_comp32.c
3718
3719 BPF JIT for S390
3720 M:      Ilya Leoshkevich <[email protected]>
3721 M:      Heiko Carstens <[email protected]>
3722 M:      Vasily Gorbik <[email protected]>
3723 L:      [email protected]
3724 S:      Supported
3725 F:      arch/s390/net/
3726 X:      arch/s390/net/pnet.c
3727
3728 BPF JIT for SPARC (32-BIT AND 64-BIT)
3729 M:      David S. Miller <[email protected]>
3730 L:      [email protected]
3731 S:      Odd Fixes
3732 F:      arch/sparc/net/
3733
3734 BPF JIT for X86 32-BIT
3735 M:      Wang YanQing <[email protected]>
3736 L:      [email protected]
3737 S:      Odd Fixes
3738 F:      arch/x86/net/bpf_jit_comp32.c
3739
3740 BPF JIT for X86 64-BIT
3741 M:      Alexei Starovoitov <[email protected]>
3742 M:      Daniel Borkmann <[email protected]>
3743 L:      [email protected]
3744 S:      Supported
3745 F:      arch/x86/net/
3746 X:      arch/x86/net/bpf_jit_comp32.c
3747
3748 BPF [CORE]
3749 M:      Alexei Starovoitov <[email protected]>
3750 M:      Daniel Borkmann <[email protected]>
3751 R:      John Fastabend <[email protected]>
3752 L:      [email protected]
3753 S:      Maintained
3754 F:      kernel/bpf/verifier.c
3755 F:      kernel/bpf/tnum.c
3756 F:      kernel/bpf/core.c
3757 F:      kernel/bpf/syscall.c
3758 F:      kernel/bpf/dispatcher.c
3759 F:      kernel/bpf/trampoline.c
3760 F:      include/linux/bpf*
3761 F:      include/linux/filter.h
3762 F:      include/linux/tnum.h
3763
3764 BPF [BTF]
3765 M:      Martin KaFai Lau <[email protected]>
3766 L:      [email protected]
3767 S:      Maintained
3768 F:      kernel/bpf/btf.c
3769 F:      include/linux/btf*
3770
3771 BPF [TRACING]
3772 M:      Song Liu <[email protected]>
3773 R:      Jiri Olsa <[email protected]>
3774 L:      [email protected]
3775 S:      Maintained
3776 F:      kernel/trace/bpf_trace.c
3777 F:      kernel/bpf/stackmap.c
3778
3779 BPF [NETWORKING] (tc BPF, sock_addr)
3780 M:      Martin KaFai Lau <[email protected]>
3781 M:      Daniel Borkmann <[email protected]>
3782 R:      John Fastabend <[email protected]>
3783 L:      [email protected]
3784 L:      [email protected]
3785 S:      Maintained
3786 F:      net/core/filter.c
3787 F:      net/sched/act_bpf.c
3788 F:      net/sched/cls_bpf.c
3789
3790 BPF [NETWORKING] (struct_ops, reuseport)
3791 M:      Martin KaFai Lau <[email protected]>
3792 L:      [email protected]
3793 L:      [email protected]
3794 S:      Maintained
3795 F:      kernel/bpf/bpf_struct*
3796
3797 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3798 M:      KP Singh <[email protected]>
3799 R:      Florent Revest <[email protected]>
3800 R:      Brendan Jackman <[email protected]>
3801 L:      [email protected]
3802 S:      Maintained
3803 F:      Documentation/bpf/prog_lsm.rst
3804 F:      include/linux/bpf_lsm.h
3805 F:      kernel/bpf/bpf_lsm.c
3806 F:      security/bpf/
3807
3808 BPF [STORAGE & CGROUPS]
3809 M:      Martin KaFai Lau <[email protected]>
3810 L:      [email protected]
3811 S:      Maintained
3812 F:      kernel/bpf/cgroup.c
3813 F:      kernel/bpf/*storage.c
3814 F:      kernel/bpf/bpf_lru*
3815
3816 BPF [RINGBUF]
3817 M:      Andrii Nakryiko <[email protected]>
3818 L:      [email protected]
3819 S:      Maintained
3820 F:      kernel/bpf/ringbuf.c
3821
3822 BPF [ITERATOR]
3823 M:      Yonghong Song <[email protected]>
3824 L:      [email protected]
3825 S:      Maintained
3826 F:      kernel/bpf/*iter.c
3827
3828 BPF [L7 FRAMEWORK] (sockmap)
3829 M:      John Fastabend <[email protected]>
3830 M:      Jakub Sitnicki <[email protected]>
3831 L:      [email protected]
3832 L:      [email protected]
3833 S:      Maintained
3834 F:      include/linux/skmsg.h
3835 F:      net/core/skmsg.c
3836 F:      net/core/sock_map.c
3837 F:      net/ipv4/tcp_bpf.c
3838 F:      net/ipv4/udp_bpf.c
3839 F:      net/unix/unix_bpf.c
3840
3841 BPF [LIBRARY] (libbpf)
3842 M:      Andrii Nakryiko <[email protected]>
3843 L:      [email protected]
3844 S:      Maintained
3845 F:      tools/lib/bpf/
3846
3847 BPF [TOOLING] (bpftool)
3848 M:      Quentin Monnet <[email protected]>
3849 L:      [email protected]
3850 S:      Maintained
3851 F:      kernel/bpf/disasm.*
3852 F:      tools/bpf/bpftool/
3853
3854 BPF [SELFTESTS] (Test Runners & Infrastructure)
3855 M:      Andrii Nakryiko <[email protected]>
3856 R:      Mykola Lysenko <[email protected]>
3857 L:      [email protected]
3858 S:      Maintained
3859 F:      tools/testing/selftests/bpf/
3860
3861 BPF [DOCUMENTATION] (Related to Standardization)
3862 R:      David Vernet <[email protected]>
3863 L:      [email protected]
3864 L:      [email protected]
3865 S:      Maintained
3866 F:      Documentation/bpf/instruction-set.rst
3867
3868 BPF [MISC]
3869 L:      [email protected]
3870 S:      Odd Fixes
3871 K:      (?:\b|_)bpf(?:\b|_)
3872
3873 BROADCOM B44 10/100 ETHERNET DRIVER
3874 M:      Michael Chan <[email protected]>
3875 L:      [email protected]
3876 S:      Supported
3877 F:      drivers/net/ethernet/broadcom/b44.*
3878
3879 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3880 M:      Florian Fainelli <[email protected]>
3881 L:      [email protected]
3882 L:      [email protected] (subscribers-only)
3883 S:      Supported
3884 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3885 F:      drivers/net/dsa/b53/*
3886 F:      drivers/net/dsa/bcm_sf2*
3887 F:      include/linux/dsa/brcm.h
3888 F:      include/linux/platform_data/b53.h
3889
3890 BROADCOM BCMBCA ARM ARCHITECTURE
3891 M:      William Zhang <[email protected]>
3892 M:      Anand Gore <[email protected]>
3893 M:      Kursad Oney <[email protected]>
3894 M:      Florian Fainelli <[email protected]>
3895 M:      Rafał Miłecki <[email protected]>
3896 R:      Broadcom internal kernel review list <[email protected]>
3897 L:      [email protected] (moderated for non-subscribers)
3898 S:      Maintained
3899 T:      git https://github.com/broadcom/stblinux.git
3900 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3901 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3902 N:      bcmbca
3903 N:      bcm[9]?47622
3904 N:      bcm[9]?4912
3905 N:      bcm[9]?63138
3906 N:      bcm[9]?63146
3907 N:      bcm[9]?63148
3908 N:      bcm[9]?63158
3909 N:      bcm[9]?63178
3910 N:      bcm[9]?6756
3911 N:      bcm[9]?6813
3912 N:      bcm[9]?6846
3913 N:      bcm[9]?6855
3914 N:      bcm[9]?6856
3915 N:      bcm[9]?6858
3916 N:      bcm[9]?6878
3917
3918 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3919 M:      Florian Fainelli <[email protected]>
3920 R:      Broadcom internal kernel review list <[email protected]>
3921 L:      [email protected] (moderated for non-subscribers)
3922 L:      [email protected] (moderated for non-subscribers)
3923 S:      Maintained
3924 T:      git https://github.com/broadcom/stblinux.git
3925 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3926 F:      drivers/pci/controller/pcie-brcmstb.c
3927 F:      drivers/staging/vc04_services
3928 N:      bcm2711
3929 N:      bcm283*
3930 N:      raspberrypi
3931
3932 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3933 M:      Florian Fainelli <[email protected]>
3934 M:      Ray Jui <[email protected]>
3935 M:      Scott Branden <[email protected]>
3936 R:      Broadcom internal kernel review list <[email protected]>
3937 S:      Maintained
3938 T:      git https://github.com/broadcom/mach-bcm
3939 F:      arch/arm/mach-bcm/
3940 N:      bcm281*
3941 N:      bcm113*
3942 N:      bcm216*
3943 N:      kona
3944
3945 BROADCOM BCM47XX MIPS ARCHITECTURE
3946 M:      Hauke Mehrtens <[email protected]>
3947 M:      Rafał Miłecki <[email protected]>
3948 L:      [email protected]
3949 S:      Maintained
3950 F:      Documentation/devicetree/bindings/mips/brcm/
3951 F:      arch/mips/bcm47xx/*
3952 F:      arch/mips/include/asm/mach-bcm47xx/*
3953
3954 BROADCOM BCM4908 ETHERNET DRIVER
3955 M:      Rafał Miłecki <[email protected]>
3956 R:      Broadcom internal kernel review list <[email protected]>
3957 L:      [email protected]
3958 S:      Maintained
3959 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3960 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3961 F:      drivers/net/ethernet/broadcom/unimac.h
3962
3963 BROADCOM BCM4908 PINMUX DRIVER
3964 M:      Rafał Miłecki <[email protected]>
3965 R:      Broadcom internal kernel review list <[email protected]>
3966 L:      [email protected]
3967 S:      Maintained
3968 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3969 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3970
3971 BROADCOM BCM5301X ARM ARCHITECTURE
3972 M:      Florian Fainelli <[email protected]>
3973 M:      Hauke Mehrtens <[email protected]>
3974 M:      Rafał Miłecki <[email protected]>
3975 R:      Broadcom internal kernel review list <[email protected]>
3976 L:      [email protected] (moderated for non-subscribers)
3977 S:      Maintained
3978 F:      arch/arm/boot/dts/bcm470*
3979 F:      arch/arm/boot/dts/bcm5301*
3980 F:      arch/arm/boot/dts/bcm953012*
3981 F:      arch/arm/mach-bcm/bcm_5301x.c
3982
3983 BROADCOM BCM53573 ARM ARCHITECTURE
3984 M:      Florian Fainelli <[email protected]>
3985 M:      Rafał Miłecki <[email protected]>
3986 R:      Broadcom internal kernel review list <[email protected]>
3987 L:      [email protected] (moderated for non-subscribers)
3988 S:      Maintained
3989 F:      arch/arm/boot/dts/bcm47189*
3990 F:      arch/arm/boot/dts/bcm53573*
3991
3992 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3993 M:      Kevin Cernekee <[email protected]>
3994 L:      [email protected]
3995 S:      Maintained
3996 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3997
3998 BROADCOM BCM7XXX ARM ARCHITECTURE
3999 M:      Florian Fainelli <[email protected]>
4000 R:      Broadcom internal kernel review list <[email protected]>
4001 L:      [email protected] (moderated for non-subscribers)
4002 S:      Maintained
4003 T:      git https://github.com/broadcom/stblinux.git
4004 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4005 F:      arch/arm/boot/dts/bcm7*.dts*
4006 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4007 F:      arch/arm/mach-bcm/*brcmstb*
4008 F:      arch/arm/mm/cache-b15-rac.c
4009 F:      drivers/bus/brcmstb_gisb.c
4010 F:      drivers/pci/controller/pcie-brcmstb.c
4011 N:      brcmstb
4012 N:      bcm7038
4013 N:      bcm7120
4014
4015 BROADCOM BDC DRIVER
4016 M:      Justin Chen <[email protected]>
4017 M:      Al Cooper <[email protected]>
4018 L:      [email protected]
4019 R:      Broadcom internal kernel review list <[email protected]>
4020 S:      Maintained
4021 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4022 F:      drivers/usb/gadget/udc/bdc/
4023
4024 BROADCOM BMIPS CPUFREQ DRIVER
4025 M:      Markus Mayer <[email protected]>
4026 R:      Broadcom internal kernel review list <[email protected]>
4027 L:      [email protected]
4028 S:      Maintained
4029 F:      drivers/cpufreq/bmips-cpufreq.c
4030
4031 BROADCOM BMIPS MIPS ARCHITECTURE
4032 M:      Florian Fainelli <[email protected]>
4033 R:      Broadcom internal kernel review list <[email protected]>
4034 L:      [email protected]
4035 S:      Maintained
4036 T:      git https://github.com/broadcom/stblinux.git
4037 F:      arch/mips/bmips/*
4038 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4039 F:      arch/mips/include/asm/mach-bmips/*
4040 F:      arch/mips/kernel/*bmips*
4041 F:      drivers/soc/bcm/bcm63xx
4042 F:      drivers/irqchip/irq-bcm63*
4043 F:      drivers/irqchip/irq-bcm7*
4044 F:      drivers/irqchip/irq-brcmstb*
4045 F:      include/linux/bcm963xx_nvram.h
4046 F:      include/linux/bcm963xx_tag.h
4047
4048 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4049 M:      Rasesh Mody <[email protected]>
4050 M:      [email protected]
4051 L:      [email protected]
4052 S:      Supported
4053 F:      drivers/net/ethernet/broadcom/bnx2.*
4054 F:      drivers/net/ethernet/broadcom/bnx2_*
4055
4056 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4057 M:      Saurav Kashyap <[email protected]>
4058 M:      Javed Hasan <[email protected]>
4059 M:      [email protected]
4060 L:      [email protected]
4061 S:      Supported
4062 F:      drivers/scsi/bnx2fc/
4063
4064 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4065 M:      Nilesh Javali <[email protected]>
4066 M:      Manish Rangankar <[email protected]>
4067 M:      [email protected]
4068 L:      [email protected]
4069 S:      Supported
4070 F:      drivers/scsi/bnx2i/
4071
4072 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4073 M:      Ariel Elior <[email protected]>
4074 M:      Sudarsana Kalluru <[email protected]>
4075 M:      Manish Chopra <[email protected]>
4076 L:      [email protected]
4077 S:      Supported
4078 F:      drivers/net/ethernet/broadcom/bnx2x/
4079
4080 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4081 M:      Michael Chan <[email protected]>
4082 L:      [email protected]
4083 S:      Supported
4084 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4085 F:      drivers/net/ethernet/broadcom/bnxt/
4086 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4087
4088 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4089 M:      Arend van Spriel <[email protected]>
4090 M:      Franky Lin <[email protected]>
4091 M:      Hante Meuleman <[email protected]>
4092 L:      [email protected]
4093 L:      [email protected]
4094 L:      [email protected]
4095 S:      Supported
4096 F:      drivers/net/wireless/broadcom/brcm80211/
4097
4098 BROADCOM BRCMSTB GPIO DRIVER
4099 M:      Doug Berger <[email protected]>
4100 M:      Florian Fainelli <[email protected]>
4101 R:      Broadcom internal kernel review list <[email protected]>
4102 S:      Supported
4103 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4104 F:      drivers/gpio/gpio-brcmstb.c
4105
4106 BROADCOM BRCMSTB I2C DRIVER
4107 M:      Kamal Dasu <[email protected]>
4108 R:      Broadcom internal kernel review list <[email protected]>
4109 L:      [email protected]
4110 S:      Supported
4111 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4112 F:      drivers/i2c/busses/i2c-brcmstb.c
4113
4114 BROADCOM BRCMSTB UART DRIVER
4115 M:      Al Cooper <[email protected]>
4116 R:      Broadcom internal kernel review list <[email protected]>
4117 L:      [email protected]
4118 S:      Maintained
4119 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4120 F:      drivers/tty/serial/8250/8250_bcm7271.c
4121
4122 BROADCOM BRCMSTB USB EHCI DRIVER
4123 M:      Justin Chen <[email protected]>
4124 M:      Al Cooper <[email protected]>
4125 R:      Broadcom internal kernel review list <[email protected]>
4126 L:      [email protected]
4127 S:      Maintained
4128 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4129 F:      drivers/usb/host/ehci-brcm.*
4130
4131 BROADCOM BRCMSTB USB PIN MAP DRIVER
4132 M:      Al Cooper <[email protected]>
4133 R:      Broadcom internal kernel review list <[email protected]>
4134 L:      [email protected]
4135 S:      Maintained
4136 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4137 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4138
4139 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4140 M:      Justin Chen <[email protected]>
4141 M:      Al Cooper <[email protected]>
4142 R:      Broadcom internal kernel review list <[email protected]>
4143 L:      [email protected]
4144 S:      Maintained
4145 F:      drivers/phy/broadcom/phy-brcm-usb*
4146
4147 BROADCOM ETHERNET PHY DRIVERS
4148 M:      Florian Fainelli <[email protected]>
4149 R:      Broadcom internal kernel review list <[email protected]>
4150 L:      [email protected]
4151 S:      Supported
4152 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4153 F:      drivers/net/phy/bcm*.[ch]
4154 F:      drivers/net/phy/broadcom.c
4155 F:      include/linux/brcmphy.h
4156
4157 BROADCOM GENET ETHERNET DRIVER
4158 M:      Doug Berger <[email protected]>
4159 M:      Florian Fainelli <[email protected]>
4160 R:      Broadcom internal kernel review list <[email protected]>
4161 L:      [email protected]
4162 S:      Supported
4163 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4164 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4165 F:      drivers/net/ethernet/broadcom/genet/
4166 F:      drivers/net/ethernet/broadcom/unimac.h
4167 F:      drivers/net/mdio/mdio-bcm-unimac.c
4168 F:      include/linux/platform_data/bcmgenet.h
4169 F:      include/linux/platform_data/mdio-bcm-unimac.h
4170
4171 BROADCOM IPROC ARM ARCHITECTURE
4172 M:      Ray Jui <[email protected]>
4173 M:      Scott Branden <[email protected]>
4174 R:      Broadcom internal kernel review list <[email protected]>
4175 L:      [email protected] (moderated for non-subscribers)
4176 S:      Maintained
4177 T:      git https://github.com/broadcom/stblinux.git
4178 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4179 F:      arch/arm64/boot/dts/broadcom/stingray/*
4180 F:      drivers/clk/bcm/clk-ns*
4181 F:      drivers/clk/bcm/clk-sr*
4182 F:      drivers/pinctrl/bcm/pinctrl-ns*
4183 F:      include/dt-bindings/clock/bcm-sr*
4184 N:      iproc
4185 N:      cygnus
4186 N:      bcm[-_]nsp
4187 N:      bcm9113*
4188 N:      bcm9583*
4189 N:      bcm9585*
4190 N:      bcm9586*
4191 N:      bcm988312
4192 N:      bcm113*
4193 N:      bcm583*
4194 N:      bcm585*
4195 N:      bcm586*
4196 N:      bcm88312
4197 N:      hr2
4198 N:      stingray
4199
4200 BROADCOM IPROC GBIT ETHERNET DRIVER
4201 M:      Rafał Miłecki <[email protected]>
4202 R:      Broadcom internal kernel review list <[email protected]>
4203 L:      [email protected]
4204 S:      Maintained
4205 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4206 F:      drivers/net/ethernet/broadcom/bgmac*
4207 F:      drivers/net/ethernet/broadcom/unimac.h
4208
4209 BROADCOM KONA GPIO DRIVER
4210 M:      Ray Jui <[email protected]>
4211 R:      Broadcom internal kernel review list <[email protected]>
4212 S:      Supported
4213 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4214 F:      drivers/gpio/gpio-bcm-kona.c
4215
4216 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4217 M:      Sathya Prakash Veerichetty <[email protected]>
4218 M:      Kashyap Desai <[email protected]>
4219 M:      Sumit Saxena <[email protected]>
4220 M:      Sreekanth Reddy <[email protected]>
4221 L:      [email protected]
4222 L:      [email protected]
4223 S:      Supported
4224 W:      https://www.broadcom.com/support/storage
4225 F:      drivers/scsi/mpi3mr/
4226
4227 BROADCOM NETXTREME-E ROCE DRIVER
4228 M:      Selvin Xavier <[email protected]>
4229 L:      [email protected]
4230 S:      Supported
4231 W:      http://www.broadcom.com
4232 F:      drivers/infiniband/hw/bnxt_re/
4233 F:      include/uapi/rdma/bnxt_re-abi.h
4234
4235 BROADCOM NVRAM DRIVER
4236 M:      Rafał Miłecki <[email protected]>
4237 L:      [email protected]
4238 S:      Maintained
4239 F:      drivers/firmware/broadcom/*
4240
4241 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4242 M:      Rafał Miłecki <[email protected]>
4243 M:      Florian Fainelli <[email protected]>
4244 R:      Broadcom internal kernel review list <[email protected]>
4245 L:      [email protected]
4246 S:      Maintained
4247 T:      git https://github.com/broadcom/stblinux.git
4248 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4249 F:      include/dt-bindings/soc/bcm-pmb.h
4250
4251 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4252 M:      Rafał Miłecki <[email protected]>
4253 L:      [email protected]
4254 S:      Maintained
4255 F:      drivers/bcma/
4256 F:      include/linux/bcma/
4257
4258 BROADCOM SPI DRIVER
4259 M:      Kamal Dasu <[email protected]>
4260 R:      Broadcom internal kernel review list <[email protected]>
4261 S:      Maintained
4262 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4263 F:      drivers/spi/spi-bcm-qspi.*
4264 F:      drivers/spi/spi-brcmstb-qspi.c
4265 F:      drivers/spi/spi-iproc-qspi.c
4266
4267 BROADCOM STB AVS CPUFREQ DRIVER
4268 M:      Markus Mayer <[email protected]>
4269 R:      Broadcom internal kernel review list <[email protected]>
4270 L:      [email protected]
4271 S:      Maintained
4272 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4273 F:      drivers/cpufreq/brcmstb*
4274
4275 BROADCOM STB AVS TMON DRIVER
4276 M:      Markus Mayer <[email protected]>
4277 R:      Broadcom internal kernel review list <[email protected]>
4278 L:      [email protected]
4279 S:      Maintained
4280 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4281 F:      drivers/thermal/broadcom/brcmstb*
4282
4283 BROADCOM STB DPFE DRIVER
4284 M:      Markus Mayer <[email protected]>
4285 R:      Broadcom internal kernel review list <[email protected]>
4286 L:      [email protected] (moderated for non-subscribers)
4287 S:      Maintained
4288 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4289 F:      drivers/memory/brcmstb_dpfe.c
4290
4291 BROADCOM STB NAND FLASH DRIVER
4292 M:      Brian Norris <[email protected]>
4293 M:      Kamal Dasu <[email protected]>
4294 R:      Broadcom internal kernel review list <[email protected]>
4295 L:      [email protected]
4296 S:      Maintained
4297 F:      drivers/mtd/nand/raw/brcmnand/
4298 F:      include/linux/platform_data/brcmnand.h
4299
4300 BROADCOM STB PCIE DRIVER
4301 M:      Jim Quinlan <[email protected]>
4302 M:      Nicolas Saenz Julienne <[email protected]>
4303 M:      Florian Fainelli <[email protected]>
4304 R:      Broadcom internal kernel review list <[email protected]>
4305 L:      [email protected]
4306 S:      Maintained
4307 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4308 F:      drivers/pci/controller/pcie-brcmstb.c
4309
4310 BROADCOM SYSTEMPORT ETHERNET DRIVER
4311 M:      Florian Fainelli <[email protected]>
4312 R:      Broadcom internal kernel review list <[email protected]>
4313 L:      [email protected]
4314 S:      Supported
4315 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4316 F:      drivers/net/ethernet/broadcom/unimac.h
4317 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4318
4319 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4320 M:      Siva Reddy Kallam <[email protected]>
4321 M:      Prashant Sreedharan <[email protected]>
4322 M:      Michael Chan <[email protected]>
4323 L:      [email protected]
4324 S:      Supported
4325 F:      drivers/net/ethernet/broadcom/tg3.*
4326
4327 BROADCOM VK DRIVER
4328 M:      Scott Branden <[email protected]>
4329 R:      Broadcom internal kernel review list <[email protected]>
4330 S:      Supported
4331 F:      drivers/misc/bcm-vk/
4332 F:      include/uapi/linux/misc/bcm_vk.h
4333
4334 BROCADE BFA FC SCSI DRIVER
4335 M:      Anil Gurumurthy <[email protected]>
4336 M:      Sudarsana Kalluru <[email protected]>
4337 L:      [email protected]
4338 S:      Supported
4339 F:      drivers/scsi/bfa/
4340
4341 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4342 M:      Rasesh Mody <[email protected]>
4343 M:      Sudarsana Kalluru <[email protected]>
4344 M:      [email protected]
4345 L:      [email protected]
4346 S:      Supported
4347 F:      drivers/net/ethernet/brocade/bna/
4348
4349 BSG (block layer generic sg v4 driver)
4350 M:      FUJITA Tomonori <[email protected]>
4351 L:      [email protected]
4352 S:      Supported
4353 F:      block/bsg.c
4354 F:      include/linux/bsg.h
4355 F:      include/uapi/linux/bsg.h
4356
4357 BT87X AUDIO DRIVER
4358 M:      Clemens Ladisch <[email protected]>
4359 L:      [email protected] (moderated for non-subscribers)
4360 S:      Maintained
4361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4362 F:      Documentation/sound/cards/bt87x.rst
4363 F:      sound/pci/bt87x.c
4364
4365 BT8XXGPIO DRIVER
4366 M:      Michael Buesch <[email protected]>
4367 S:      Maintained
4368 W:      http://bu3sch.de/btgpio.php
4369 F:      drivers/gpio/gpio-bt8xx.c
4370
4371 BTRFS FILE SYSTEM
4372 M:      Chris Mason <[email protected]>
4373 M:      Josef Bacik <[email protected]>
4374 M:      David Sterba <[email protected]>
4375 L:      [email protected]
4376 S:      Maintained
4377 W:      https://btrfs.readthedocs.io
4378 W:      https://btrfs.wiki.kernel.org/
4379 Q:      https://patchwork.kernel.org/project/linux-btrfs/list/
4380 C:      irc://irc.libera.chat/btrfs
4381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4382 F:      Documentation/filesystems/btrfs.rst
4383 F:      fs/btrfs/
4384 F:      include/linux/btrfs*
4385 F:      include/trace/events/btrfs.h
4386 F:      include/uapi/linux/btrfs*
4387
4388 BTTV VIDEO4LINUX DRIVER
4389 M:      Mauro Carvalho Chehab <[email protected]>
4390 L:      [email protected]
4391 S:      Odd fixes
4392 W:      https://linuxtv.org
4393 T:      git git://linuxtv.org/media_tree.git
4394 F:      Documentation/driver-api/media/drivers/bttv*
4395 F:      drivers/media/pci/bt8xx/bttv*
4396
4397 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4398 M:      Chanwoo Choi <[email protected]>
4399 L:      [email protected]
4400 L:      [email protected]
4401 S:      Maintained
4402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4403 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4404 F:      drivers/devfreq/exynos-bus.c
4405
4406 BUSLOGIC SCSI DRIVER
4407 M:      Khalid Aziz <[email protected]>
4408 L:      [email protected]
4409 S:      Maintained
4410 F:      drivers/scsi/BusLogic.*
4411 F:      drivers/scsi/FlashPoint.*
4412
4413 C-MEDIA CMI8788 DRIVER
4414 M:      Clemens Ladisch <[email protected]>
4415 L:      [email protected] (moderated for non-subscribers)
4416 S:      Maintained
4417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4418 F:      sound/pci/oxygen/
4419
4420 C-SKY ARCHITECTURE
4421 M:      Guo Ren <[email protected]>
4422 L:      [email protected]
4423 S:      Supported
4424 T:      git https://github.com/c-sky/csky-linux.git
4425 F:      Documentation/devicetree/bindings/csky/
4426 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4427 F:      Documentation/devicetree/bindings/timer/csky,*
4428 F:      arch/csky/
4429 F:      drivers/clocksource/timer-gx6605s.c
4430 F:      drivers/clocksource/timer-mp-csky.c
4431 F:      drivers/irqchip/irq-csky-*
4432 N:      csky
4433 K:      csky
4434
4435 CA8210 IEEE-802.15.4 RADIO DRIVER
4436 L:      [email protected]
4437 S:      Orphan
4438 W:      https://github.com/Cascoda/ca8210-linux.git
4439 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4440 F:      drivers/net/ieee802154/ca8210.c
4441
4442 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4443 M:      Damien Le Moal <[email protected]>
4444 L:      [email protected]
4445 L:      [email protected] (pinctrl driver)
4446 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4447 F:      drivers/pinctrl/pinctrl-k210.c
4448
4449 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4450 M:      Damien Le Moal <[email protected]>
4451 L:      [email protected]
4452 L:      [email protected]
4453 S:      Maintained
4454 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4455 F:      drivers/reset/reset-k210.c
4456
4457 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4458 M:      Damien Le Moal <[email protected]>
4459 L:      [email protected]
4460 S:      Maintained
4461 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4462 F:      drivers/soc/canaan/
4463 F:      include/soc/canaan/
4464
4465 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4466 M:      David Howells <[email protected]>
4467 L:      [email protected] (moderated for non-subscribers)
4468 S:      Supported
4469 F:      Documentation/filesystems/caching/cachefiles.rst
4470 F:      fs/cachefiles/
4471
4472 CADENCE MIPI-CSI2 BRIDGES
4473 M:      Maxime Ripard <[email protected]>
4474 L:      [email protected]
4475 S:      Maintained
4476 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4477 F:      drivers/media/platform/cadence/cdns-csi2*
4478
4479 CADENCE NAND DRIVER
4480 L:      [email protected]
4481 S:      Orphan
4482 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4483 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4484
4485 CADENCE USB3 DRD IP DRIVER
4486 M:      Peter Chen <[email protected]>
4487 M:      Pawel Laszczak <[email protected]>
4488 R:      Roger Quadros <[email protected]>
4489 R:      Aswath Govindraju <[email protected]>
4490 L:      [email protected]
4491 S:      Maintained
4492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4493 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4494 F:      drivers/usb/cdns3/
4495 X:      drivers/usb/cdns3/cdnsp*
4496
4497 CADENCE USBSSP DRD IP DRIVER
4498 M:      Pawel Laszczak <[email protected]>
4499 L:      [email protected]
4500 S:      Maintained
4501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4502 F:      drivers/usb/cdns3/
4503 X:      drivers/usb/cdns3/cdns3*
4504
4505 CADET FM/AM RADIO RECEIVER DRIVER
4506 M:      Hans Verkuil <[email protected]>
4507 L:      [email protected]
4508 S:      Maintained
4509 W:      https://linuxtv.org
4510 T:      git git://linuxtv.org/media_tree.git
4511 F:      drivers/media/radio/radio-cadet*
4512
4513 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4514 L:      [email protected]
4515 S:      Orphan
4516 T:      git git://linuxtv.org/media_tree.git
4517 F:      Documentation/admin-guide/media/cafe_ccic*
4518 F:      drivers/media/platform/marvell/
4519
4520 CAIF NETWORK LAYER
4521 L:      [email protected]
4522 S:      Orphan
4523 F:      Documentation/networking/caif/
4524 F:      drivers/net/caif/
4525 F:      include/net/caif/
4526 F:      include/uapi/linux/caif/
4527 F:      net/caif/
4528
4529 CAKE QDISC
4530 M:      Toke Høiland-Jørgensen <[email protected]>
4531 L:      [email protected] (moderated for non-subscribers)
4532 S:      Maintained
4533 F:      net/sched/sch_cake.c
4534
4535 CAN NETWORK DRIVERS
4536 M:      Wolfgang Grandegger <[email protected]>
4537 M:      Marc Kleine-Budde <[email protected]>
4538 L:      [email protected]
4539 S:      Maintained
4540 W:      https://github.com/linux-can
4541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4543 F:      Documentation/devicetree/bindings/net/can/
4544 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4545 F:      drivers/net/can/
4546 F:      drivers/phy/phy-can-transceiver.c
4547 F:      include/linux/can/bittiming.h
4548 F:      include/linux/can/dev.h
4549 F:      include/linux/can/length.h
4550 F:      include/linux/can/platform/
4551 F:      include/linux/can/rx-offload.h
4552 F:      include/uapi/linux/can/error.h
4553 F:      include/uapi/linux/can/netlink.h
4554 F:      include/uapi/linux/can/vxcan.h
4555
4556 CAN NETWORK LAYER
4557 M:      Oliver Hartkopp <[email protected]>
4558 M:      Marc Kleine-Budde <[email protected]>
4559 L:      [email protected]
4560 S:      Maintained
4561 W:      https://github.com/linux-can
4562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4564 F:      Documentation/networking/can.rst
4565 F:      include/linux/can/can-ml.h
4566 F:      include/linux/can/core.h
4567 F:      include/linux/can/skb.h
4568 F:      include/net/netns/can.h
4569 F:      include/uapi/linux/can.h
4570 F:      include/uapi/linux/can/bcm.h
4571 F:      include/uapi/linux/can/gw.h
4572 F:      include/uapi/linux/can/isotp.h
4573 F:      include/uapi/linux/can/raw.h
4574 F:      net/can/
4575
4576 CAN-J1939 NETWORK LAYER
4577 M:      Robin van der Gracht <[email protected]>
4578 M:      Oleksij Rempel <[email protected]>
4579 R:      [email protected]
4580 L:      [email protected]
4581 S:      Maintained
4582 F:      Documentation/networking/j1939.rst
4583 F:      include/uapi/linux/can/j1939.h
4584 F:      net/can/j1939/
4585
4586 CAPABILITIES
4587 M:      Serge Hallyn <[email protected]>
4588 L:      [email protected]
4589 S:      Supported
4590 F:      include/linux/capability.h
4591 F:      include/uapi/linux/capability.h
4592 F:      kernel/capability.c
4593 F:      security/commoncap.c
4594
4595 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4596 M:      Kevin Tsai <[email protected]>
4597 S:      Maintained
4598 F:      drivers/iio/light/cm*
4599
4600 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4601 M:      Christian Lamparter <[email protected]>
4602 L:      [email protected]
4603 S:      Maintained
4604 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4605 F:      drivers/net/wireless/ath/carl9170/
4606
4607 CAVIUM I2C DRIVER
4608 M:      Robert Richter <[email protected]>
4609 S:      Odd Fixes
4610 W:      http://www.marvell.com
4611 F:      drivers/i2c/busses/i2c-octeon*
4612 F:      drivers/i2c/busses/i2c-thunderx*
4613
4614 CAVIUM LIQUIDIO NETWORK DRIVER
4615 M:      Derek Chickles <[email protected]>
4616 M:      Satanand Burla <[email protected]>
4617 M:      Felix Manlunas <[email protected]>
4618 L:      [email protected]
4619 S:      Supported
4620 W:      http://www.marvell.com
4621 F:      drivers/net/ethernet/cavium/liquidio/
4622
4623 CAVIUM MMC DRIVER
4624 M:      Robert Richter <[email protected]>
4625 S:      Odd Fixes
4626 W:      http://www.marvell.com
4627 F:      drivers/mmc/host/cavium*
4628
4629 CAVIUM OCTEON-TX CRYPTO DRIVER
4630 M:      George Cherian <[email protected]>
4631 L:      [email protected]
4632 S:      Supported
4633 W:      http://www.marvell.com
4634 F:      drivers/crypto/cavium/cpt/
4635
4636 CAVIUM THUNDERX2 ARM64 SOC
4637 M:      Robert Richter <[email protected]>
4638 L:      [email protected] (moderated for non-subscribers)
4639 S:      Odd Fixes
4640 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4641 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4642
4643 CBS/ETF/TAPRIO QDISCS
4644 M:      Vinicius Costa Gomes <[email protected]>
4645 S:      Maintained
4646 L:      [email protected]
4647 F:      net/sched/sch_cbs.c
4648 F:      net/sched/sch_etf.c
4649 F:      net/sched/sch_taprio.c
4650
4651 CC2520 IEEE-802.15.4 RADIO DRIVER
4652 M:      Stefan Schmidt <[email protected]>
4653 L:      [email protected]
4654 S:      Odd Fixes
4655 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4656 F:      drivers/net/ieee802154/cc2520.c
4657
4658 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4659 M:      Gilad Ben-Yossef <[email protected]>
4660 L:      [email protected]
4661 S:      Supported
4662 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4663 F:      drivers/crypto/ccree/
4664
4665 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4666 M:      Hadar Gat <[email protected]>
4667 L:      [email protected]
4668 S:      Supported
4669 F:      drivers/char/hw_random/cctrng.c
4670 F:      drivers/char/hw_random/cctrng.h
4671 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4672 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4673
4674 CEC FRAMEWORK
4675 M:      Hans Verkuil <[email protected]>
4676 L:      [email protected]
4677 S:      Supported
4678 W:      http://linuxtv.org
4679 T:      git git://linuxtv.org/media_tree.git
4680 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4681 F:      Documentation/devicetree/bindings/media/cec.txt
4682 F:      Documentation/driver-api/media/cec-core.rst
4683 F:      Documentation/userspace-api/media/cec
4684 F:      drivers/media/cec/
4685 F:      drivers/media/rc/keymaps/rc-cec.c
4686 F:      include/media/cec-notifier.h
4687 F:      include/media/cec.h
4688 F:      include/uapi/linux/cec-funcs.h
4689 F:      include/uapi/linux/cec.h
4690
4691 CEC GPIO DRIVER
4692 M:      Hans Verkuil <[email protected]>
4693 L:      [email protected]
4694 S:      Supported
4695 W:      http://linuxtv.org
4696 T:      git git://linuxtv.org/media_tree.git
4697 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4698 F:      drivers/media/cec/platform/cec-gpio/
4699
4700 CELL BROADBAND ENGINE ARCHITECTURE
4701 M:      Arnd Bergmann <[email protected]>
4702 L:      [email protected]
4703 S:      Supported
4704 W:      http://www.ibm.com/developerworks/power/cell/
4705 F:      arch/powerpc/include/asm/cell*.h
4706 F:      arch/powerpc/include/asm/spu*.h
4707 F:      arch/powerpc/include/uapi/asm/spu*.h
4708 F:      arch/powerpc/platforms/cell/
4709
4710 CELLWISE CW2015 BATTERY DRIVER
4711 M:      Tobias Schrammm <[email protected]>
4712 S:      Maintained
4713 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4714 F:      drivers/power/supply/cw2015_battery.c
4715
4716 CEPH COMMON CODE (LIBCEPH)
4717 M:      Ilya Dryomov <[email protected]>
4718 M:      Xiubo Li <[email protected]>
4719 R:      Jeff Layton <[email protected]>
4720 L:      [email protected]
4721 S:      Supported
4722 W:      http://ceph.com/
4723 T:      git https://github.com/ceph/ceph-client.git
4724 F:      include/linux/ceph/
4725 F:      include/linux/crush/
4726 F:      net/ceph/
4727
4728 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4729 M:      Xiubo Li <[email protected]>
4730 M:      Ilya Dryomov <[email protected]>
4731 R:      Jeff Layton <[email protected]>
4732 L:      [email protected]
4733 S:      Supported
4734 W:      http://ceph.com/
4735 T:      git https://github.com/ceph/ceph-client.git
4736 F:      Documentation/filesystems/ceph.rst
4737 F:      fs/ceph/
4738
4739 CERTIFICATE HANDLING
4740 M:      David Howells <[email protected]>
4741 M:      David Woodhouse <[email protected]>
4742 L:      [email protected]
4743 S:      Maintained
4744 F:      Documentation/admin-guide/module-signing.rst
4745 F:      certs/
4746 F:      scripts/sign-file.c
4747 F:      tools/certs/
4748
4749 CFAG12864B LCD DRIVER
4750 M:      Miguel Ojeda <[email protected]>
4751 S:      Maintained
4752 F:      drivers/auxdisplay/cfag12864b.c
4753 F:      include/linux/cfag12864b.h
4754
4755 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4756 M:      Miguel Ojeda <[email protected]>
4757 S:      Maintained
4758 F:      drivers/auxdisplay/cfag12864bfb.c
4759 F:      include/linux/cfag12864b.h
4760
4761 CHAR and MISC DRIVERS
4762 M:      Arnd Bergmann <[email protected]>
4763 M:      Greg Kroah-Hartman <[email protected]>
4764 S:      Supported
4765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4766 F:      drivers/char/
4767 F:      drivers/misc/
4768 F:      include/linux/miscdevice.h
4769 X:      drivers/char/agp/
4770 X:      drivers/char/hw_random/
4771 X:      drivers/char/ipmi/
4772 X:      drivers/char/random.c
4773 X:      drivers/char/tpm/
4774
4775 CHECKPATCH
4776 M:      Andy Whitcroft <[email protected]>
4777 M:      Joe Perches <[email protected]>
4778 R:      Dwaipayan Ray <[email protected]>
4779 R:      Lukas Bulwahn <[email protected]>
4780 S:      Maintained
4781 F:      scripts/checkpatch.pl
4782
4783 CHECKPATCH DOCUMENTATION
4784 M:      Dwaipayan Ray <[email protected]>
4785 M:      Lukas Bulwahn <[email protected]>
4786 R:      Joe Perches <[email protected]>
4787 S:      Maintained
4788 F:      Documentation/dev-tools/checkpatch.rst
4789
4790 CHINESE DOCUMENTATION
4791 M:      Alex Shi <[email protected]>
4792 M:      Yanteng Si <[email protected]>
4793 S:      Maintained
4794 F:      Documentation/translations/zh_CN/
4795
4796 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4797 M:      Peter Chen <[email protected]>
4798 L:      [email protected]
4799 S:      Maintained
4800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4801 F:      drivers/usb/chipidea/
4802
4803 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4804 M:      Hans de Goede <[email protected]>
4805 L:      [email protected]
4806 S:      Maintained
4807 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4808 F:      drivers/input/touchscreen/chipone_icn8318.c
4809
4810 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4811 M:      Hans de Goede <[email protected]>
4812 L:      [email protected]
4813 S:      Maintained
4814 F:      drivers/input/touchscreen/chipone_icn8505.c
4815
4816 CHROME HARDWARE PLATFORM SUPPORT
4817 M:      Benson Leung <[email protected]>
4818 L:      [email protected]
4819 S:      Maintained
4820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4821 F:      drivers/platform/chrome/
4822
4823 CHROMEOS EC CODEC DRIVER
4824 M:      Cheng-Yi Chiang <[email protected]>
4825 M:      Tzung-Bi Shih <[email protected]>
4826 R:      Guenter Roeck <[email protected]>
4827 L:      [email protected]
4828 S:      Maintained
4829 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4830 F:      sound/soc/codecs/cros_ec_codec.*
4831
4832 CHROMEOS EC UART DRIVER
4833 M:      Bhanu Prakash Maiya <[email protected]>
4834 R:      Benson Leung <[email protected]>
4835 R:      Tzung-Bi Shih <[email protected]>
4836 S:      Maintained
4837 F:      drivers/platform/chrome/cros_ec_uart.c
4838
4839 CHROMEOS EC SUBDRIVERS
4840 M:      Benson Leung <[email protected]>
4841 R:      Guenter Roeck <[email protected]>
4842 L:      [email protected]
4843 S:      Maintained
4844 F:      drivers/power/supply/cros_usbpd-charger.c
4845 N:      cros_ec
4846 N:      cros-ec
4847
4848 CHROMEOS EC USB TYPE-C DRIVER
4849 M:      Prashant Malani <[email protected]>
4850 L:      [email protected]
4851 S:      Maintained
4852 F:      drivers/platform/chrome/cros_ec_typec.*
4853 F:      drivers/platform/chrome/cros_typec_switch.c
4854 F:      drivers/platform/chrome/cros_typec_vdm.*
4855
4856 CHROMEOS EC USB PD NOTIFY DRIVER
4857 M:      Prashant Malani <[email protected]>
4858 L:      [email protected]
4859 S:      Maintained
4860 F:      drivers/platform/chrome/cros_usbpd_notify.c
4861 F:      include/linux/platform_data/cros_usbpd_notify.h
4862
4863 CHROMEOS HPS DRIVER
4864 M:      Dan Callaghan <[email protected]>
4865 R:      Sami Kyöstilä <[email protected]>
4866 S:      Maintained
4867 F:      drivers/platform/chrome/cros_hps_i2c.c
4868
4869 CHRONTEL CH7322 CEC DRIVER
4870 M:      Joe Tessler <[email protected]>
4871 L:      [email protected]
4872 S:      Maintained
4873 T:      git git://linuxtv.org/media_tree.git
4874 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4875 F:      drivers/media/cec/i2c/ch7322.c
4876
4877 CIRRUS LOGIC AUDIO CODEC DRIVERS
4878 M:      James Schulman <[email protected]>
4879 M:      David Rhodes <[email protected]>
4880 M:      Lucas Tanure <[email protected]>
4881 M:      Richard Fitzgerald <[email protected]>
4882 L:      [email protected] (moderated for non-subscribers)
4883 L:      [email protected]
4884 S:      Maintained
4885 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4886 F:      include/dt-bindings/sound/cs*
4887 F:      sound/pci/hda/cs*
4888 F:      sound/pci/hda/hda_cs_dsp_ctl.*
4889 F:      sound/soc/codecs/cs*
4890
4891 CIRRUS LOGIC DSP FIRMWARE DRIVER
4892 M:      Simon Trimmer <[email protected]>
4893 M:      Charles Keepax <[email protected]>
4894 M:      Richard Fitzgerald <[email protected]>
4895 L:      [email protected]
4896 S:      Supported
4897 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4898 T:      git https://github.com/CirrusLogic/linux-drivers.git
4899 F:      drivers/firmware/cirrus/*
4900 F:      include/linux/firmware/cirrus/*
4901
4902 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4903 M:      Hartley Sweeten <[email protected]>
4904 L:      [email protected]
4905 S:      Maintained
4906 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4907
4908 CIRRUS LOGIC LOCHNAGAR DRIVER
4909 M:      Charles Keepax <[email protected]>
4910 M:      Richard Fitzgerald <[email protected]>
4911 L:      [email protected]
4912 S:      Supported
4913 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4914 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4915 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4916 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4917 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4918 F:      Documentation/hwmon/lochnagar.rst
4919 F:      drivers/clk/clk-lochnagar.c
4920 F:      drivers/hwmon/lochnagar-hwmon.c
4921 F:      drivers/mfd/lochnagar-i2c.c
4922 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4923 F:      drivers/regulator/lochnagar-regulator.c
4924 F:      include/dt-bindings/clock/lochnagar.h
4925 F:      include/dt-bindings/pinctrl/lochnagar.h
4926 F:      include/linux/mfd/lochnagar*
4927 F:      sound/soc/codecs/lochnagar-sc.c
4928
4929 CIRRUS LOGIC MADERA CODEC DRIVERS
4930 M:      Charles Keepax <[email protected]>
4931 M:      Richard Fitzgerald <[email protected]>
4932 L:      [email protected] (moderated for non-subscribers)
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:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4938 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4939 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4940 F:      drivers/gpio/gpio-madera*
4941 F:      drivers/irqchip/irq-madera*
4942 F:      drivers/mfd/cs47l*
4943 F:      drivers/mfd/madera*
4944 F:      drivers/pinctrl/cirrus/*
4945 F:      include/dt-bindings/sound/madera*
4946 F:      include/linux/irqchip/irq-madera*
4947 F:      include/linux/mfd/madera/*
4948 F:      include/sound/madera*
4949 F:      sound/soc/codecs/cs47l*
4950 F:      sound/soc/codecs/madera*
4951
4952 CISCO FCOE HBA DRIVER
4953 M:      Satish Kharat <[email protected]>
4954 M:      Sesidhar Baddela <[email protected]>
4955 M:      Karan Tilak Kumar <[email protected]>
4956 L:      [email protected]
4957 S:      Supported
4958 F:      drivers/scsi/fnic/
4959
4960 CISCO SCSI HBA DRIVER
4961 M:      Karan Tilak Kumar <[email protected]>
4962 M:      Sesidhar Baddela <[email protected]>
4963 L:      [email protected]
4964 S:      Supported
4965 F:      drivers/scsi/snic/
4966
4967 CISCO VIC ETHERNET NIC DRIVER
4968 M:      Christian Benvenuti <[email protected]>
4969 M:      Satish Kharat <[email protected]>
4970 S:      Supported
4971 F:      drivers/net/ethernet/cisco/enic/
4972
4973 CISCO VIC LOW LATENCY NIC DRIVER
4974 M:      Christian Benvenuti <[email protected]>
4975 M:      Nelson Escobar <[email protected]>
4976 S:      Supported
4977 F:      drivers/infiniband/hw/usnic/
4978
4979 CLANG-FORMAT FILE
4980 M:      Miguel Ojeda <[email protected]>
4981 S:      Maintained
4982 F:      .clang-format
4983
4984 CLANG/LLVM BUILD SUPPORT
4985 M:      Nathan Chancellor <[email protected]>
4986 M:      Nick Desaulniers <[email protected]>
4987 R:      Tom Rix <[email protected]>
4988 L:      [email protected]
4989 S:      Supported
4990 W:      https://clangbuiltlinux.github.io/
4991 B:      https://github.com/ClangBuiltLinux/linux/issues
4992 C:      irc://irc.libera.chat/clangbuiltlinux
4993 F:      Documentation/kbuild/llvm.rst
4994 F:      include/linux/compiler-clang.h
4995 F:      scripts/Makefile.clang
4996 F:      scripts/clang-tools/
4997 K:      \b(?i:clang|llvm)\b
4998
4999 CLANG CONTROL FLOW INTEGRITY SUPPORT
5000 M:      Sami Tolvanen <[email protected]>
5001 M:      Kees Cook <[email protected]>
5002 R:      Nathan Chancellor <[email protected]>
5003 R:      Nick Desaulniers <[email protected]>
5004 L:      [email protected]
5005 S:      Supported
5006 B:      https://github.com/ClangBuiltLinux/linux/issues
5007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5008 F:      include/linux/cfi.h
5009 F:      kernel/cfi.c
5010
5011 CLK API
5012 M:      Russell King <[email protected]>
5013 L:      [email protected]
5014 S:      Maintained
5015 F:      include/linux/clk.h
5016
5017 CLOCKSOURCE, CLOCKEVENT DRIVERS
5018 M:      Daniel Lezcano <[email protected]>
5019 M:      Thomas Gleixner <[email protected]>
5020 L:      [email protected]
5021 S:      Supported
5022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5023 F:      Documentation/devicetree/bindings/timer/
5024 F:      drivers/clocksource/
5025
5026 CMPC ACPI DRIVER
5027 M:      Thadeu Lima de Souza Cascardo <[email protected]>
5028 M:      Daniel Oliveira Nascimento <[email protected]>
5029 L:      [email protected]
5030 S:      Supported
5031 F:      drivers/platform/x86/classmate-laptop.c
5032
5033 COBALT MEDIA DRIVER
5034 M:      Hans Verkuil <[email protected]>
5035 L:      [email protected]
5036 S:      Supported
5037 W:      https://linuxtv.org
5038 T:      git git://linuxtv.org/media_tree.git
5039 F:      drivers/media/pci/cobalt/
5040
5041 COCCINELLE/Semantic Patches (SmPL)
5042 M:      Julia Lawall <[email protected]>
5043 M:      Nicolas Palix <[email protected]>
5044 L:      [email protected] (moderated for non-subscribers)
5045 S:      Supported
5046 W:      https://coccinelle.gitlabpages.inria.fr/website/
5047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5048 F:      Documentation/dev-tools/coccinelle.rst
5049 F:      scripts/coccicheck
5050 F:      scripts/coccinelle/
5051
5052 CODA FILE SYSTEM
5053 M:      Jan Harkes <[email protected]>
5054 M:      [email protected]
5055 L:      [email protected]
5056 S:      Maintained
5057 W:      http://www.coda.cs.cmu.edu/
5058 F:      Documentation/filesystems/coda.rst
5059 F:      fs/coda/
5060 F:      include/linux/coda*.h
5061 F:      include/uapi/linux/coda*.h
5062
5063 CODA V4L2 MEM2MEM DRIVER
5064 M:      Philipp Zabel <[email protected]>
5065 L:      [email protected]
5066 S:      Maintained
5067 F:      Documentation/devicetree/bindings/media/coda.yaml
5068 F:      drivers/media/platform/chips-media/
5069
5070 CODE OF CONDUCT
5071 M:      Greg Kroah-Hartman <[email protected]>
5072 S:      Supported
5073 F:      Documentation/process/code-of-conduct-interpretation.rst
5074 F:      Documentation/process/code-of-conduct.rst
5075
5076 COMEDI DRIVERS
5077 M:      Ian Abbott <[email protected]>
5078 M:      H Hartley Sweeten <[email protected]>
5079 S:      Odd Fixes
5080 F:      drivers/comedi/
5081 F:      include/linux/comedi/
5082 F:      include/uapi/linux/comedi.h
5083
5084 COMMON CLK FRAMEWORK
5085 M:      Michael Turquette <[email protected]>
5086 M:      Stephen Boyd <[email protected]>
5087 L:      [email protected]
5088 S:      Maintained
5089 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5091 F:      Documentation/devicetree/bindings/clock/
5092 F:      drivers/clk/
5093 F:      include/dt-bindings/clock/
5094 F:      include/linux/clk-pr*
5095 F:      include/linux/clk/
5096 F:      include/linux/of_clk.h
5097 X:      drivers/clk/clkdev.c
5098
5099 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5100 M:      Steve French <[email protected]>
5101 R:      Paulo Alcantara <[email protected]> (DFS, global name space)
5102 R:      Ronnie Sahlberg <[email protected]> (directory leases, sparse files)
5103 R:      Shyam Prasad N <[email protected]> (multichannel)
5104 R:      Tom Talpey <[email protected]> (RDMA, smbdirect)
5105 L:      [email protected]
5106 L:      [email protected] (moderated for non-subscribers)
5107 S:      Supported
5108 W:      https://wiki.samba.org/index.php/LinuxCIFS
5109 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5110 F:      Documentation/admin-guide/cifs/
5111 F:      fs/cifs/
5112 F:      fs/smbfs_common/
5113 F:      include/uapi/linux/cifs
5114
5115 COMPACTPCI HOTPLUG CORE
5116 M:      Scott Murray <[email protected]>
5117 L:      [email protected]
5118 S:      Maintained
5119 F:      drivers/pci/hotplug/cpci_hotplug*
5120
5121 COMPACTPCI HOTPLUG GENERIC DRIVER
5122 M:      Scott Murray <[email protected]>
5123 L:      [email protected]
5124 S:      Maintained
5125 F:      drivers/pci/hotplug/cpcihp_generic.c
5126
5127 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5128 M:      Scott Murray <[email protected]>
5129 L:      [email protected]
5130 S:      Maintained
5131 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5132
5133 COMPAL LAPTOP SUPPORT
5134 M:      Cezary Jackiewicz <[email protected]>
5135 L:      [email protected]
5136 S:      Maintained
5137 F:      drivers/platform/x86/compal-laptop.c
5138
5139 COMPILER ATTRIBUTES
5140 M:      Miguel Ojeda <[email protected]>
5141 R:      Nick Desaulniers <[email protected]>
5142 S:      Maintained
5143 F:      include/linux/compiler_attributes.h
5144
5145 COMPUTE EXPRESS LINK (CXL)
5146 M:      Alison Schofield <[email protected]>
5147 M:      Vishal Verma <[email protected]>
5148 M:      Ira Weiny <[email protected]>
5149 M:      Ben Widawsky <[email protected]>
5150 M:      Dan Williams <[email protected]>
5151 L:      [email protected]
5152 S:      Maintained
5153 F:      drivers/cxl/
5154 F:      include/uapi/linux/cxl_mem.h
5155
5156 CONEXANT ACCESSRUNNER USB DRIVER
5157 L:      [email protected]
5158 S:      Orphan
5159 W:      http://accessrunner.sourceforge.net/
5160 F:      drivers/usb/atm/cxacru.c
5161
5162 CONFIGFS
5163 M:      Joel Becker <[email protected]>
5164 M:      Christoph Hellwig <[email protected]>
5165 S:      Supported
5166 T:      git git://git.infradead.org/users/hch/configfs.git
5167 F:      fs/configfs/
5168 F:      include/linux/configfs.h
5169 F:      samples/configfs/
5170
5171 CONSOLE SUBSYSTEM
5172 M:      Greg Kroah-Hartman <[email protected]>
5173 S:      Supported
5174 F:      drivers/video/console/
5175 F:      include/linux/console*
5176
5177 CONTEXT TRACKING
5178 M:      Frederic Weisbecker <[email protected]>
5179 M:      "Paul E. McKenney" <[email protected]>
5180 S:      Maintained
5181 F:      kernel/context_tracking.c
5182 F:      include/linux/context_tracking*
5183
5184 CONTROL GROUP (CGROUP)
5185 M:      Tejun Heo <[email protected]>
5186 M:      Zefan Li <[email protected]>
5187 M:      Johannes Weiner <[email protected]>
5188 L:      [email protected]
5189 S:      Maintained
5190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5191 F:      Documentation/admin-guide/cgroup-v1/
5192 F:      Documentation/admin-guide/cgroup-v2.rst
5193 F:      include/linux/cgroup*
5194 F:      kernel/cgroup/
5195 F:      tools/testing/selftests/cgroup/
5196
5197 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5198 M:      Tejun Heo <[email protected]>
5199 M:      Josef Bacik <[email protected]>
5200 M:      Jens Axboe <[email protected]>
5201 L:      [email protected]
5202 L:      [email protected]
5203 T:      git git://git.kernel.dk/linux-block
5204 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5205 F:      block/bfq-cgroup.c
5206 F:      block/blk-cgroup.c
5207 F:      block/blk-iocost.c
5208 F:      block/blk-iolatency.c
5209 F:      block/blk-throttle.c
5210 F:      include/linux/blk-cgroup.h
5211
5212 CONTROL GROUP - CPUSET
5213 M:      Waiman Long <[email protected]>
5214 M:      Zefan Li <[email protected]>
5215 L:      [email protected]
5216 S:      Maintained
5217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5218 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5219 F:      include/linux/cpuset.h
5220 F:      kernel/cgroup/cpuset.c
5221
5222 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5223 M:      Johannes Weiner <[email protected]>
5224 M:      Michal Hocko <[email protected]>
5225 M:      Roman Gushchin <[email protected]>
5226 M:      Shakeel Butt <[email protected]>
5227 R:      Muchun Song <[email protected]>
5228 L:      [email protected]
5229 L:      [email protected]
5230 S:      Maintained
5231 F:      mm/memcontrol.c
5232 F:      mm/swap_cgroup.c
5233 F:      tools/testing/selftests/cgroup/memcg_protection.m
5234 F:      tools/testing/selftests/cgroup/test_kmem.c
5235 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5236
5237 CORETEMP HARDWARE MONITORING DRIVER
5238 M:      Fenghua Yu <[email protected]>
5239 L:      [email protected]
5240 S:      Maintained
5241 F:      Documentation/hwmon/coretemp.rst
5242 F:      drivers/hwmon/coretemp.c
5243
5244 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5245 M:      Marius Zachmann <[email protected]>
5246 L:      [email protected]
5247 S:      Maintained
5248 F:      drivers/hwmon/corsair-cpro.c
5249
5250 CORSAIR-PSU HARDWARE MONITOR DRIVER
5251 M:      Wilken Gottwalt <[email protected]>
5252 L:      [email protected]
5253 S:      Maintained
5254 F:      Documentation/hwmon/corsair-psu.rst
5255 F:      drivers/hwmon/corsair-psu.c
5256
5257 COUNTER SUBSYSTEM
5258 M:      William Breathitt Gray <[email protected]>
5259 L:      [email protected]
5260 S:      Maintained
5261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git
5262 F:      Documentation/ABI/testing/sysfs-bus-counter
5263 F:      Documentation/driver-api/generic-counter.rst
5264 F:      drivers/counter/
5265 F:      include/linux/counter.h
5266 F:      include/uapi/linux/counter.h
5267 F:      tools/counter/
5268
5269 CP2615 I2C DRIVER
5270 M:      Bence Csókás <[email protected]>
5271 S:      Maintained
5272 F:      drivers/i2c/busses/i2c-cp2615.c
5273
5274 CPMAC ETHERNET DRIVER
5275 M:      Florian Fainelli <[email protected]>
5276 L:      [email protected]
5277 S:      Maintained
5278 F:      drivers/net/ethernet/ti/cpmac.c
5279
5280 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5281 M:      Viresh Kumar <[email protected]>
5282 M:      Sudeep Holla <[email protected]>
5283 L:      [email protected]
5284 S:      Maintained
5285 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5286 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5287
5288 CPU FREQUENCY SCALING FRAMEWORK
5289 M:      "Rafael J. Wysocki" <[email protected]>
5290 M:      Viresh Kumar <[email protected]>
5291 L:      [email protected]
5292 S:      Maintained
5293 B:      https://bugzilla.kernel.org
5294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5296 F:      Documentation/admin-guide/pm/cpufreq.rst
5297 F:      Documentation/admin-guide/pm/intel_pstate.rst
5298 F:      Documentation/cpu-freq/
5299 F:      Documentation/devicetree/bindings/cpufreq/
5300 F:      drivers/cpufreq/
5301 F:      include/linux/cpufreq.h
5302 F:      include/linux/sched/cpufreq.h
5303 F:      kernel/sched/cpufreq*.c
5304 F:      tools/testing/selftests/cpufreq/
5305
5306 CPU IDLE TIME MANAGEMENT FRAMEWORK
5307 M:      "Rafael J. Wysocki" <[email protected]>
5308 M:      Daniel Lezcano <[email protected]>
5309 L:      [email protected]
5310 S:      Maintained
5311 B:      https://bugzilla.kernel.org
5312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5313 F:      Documentation/admin-guide/pm/cpuidle.rst
5314 F:      Documentation/driver-api/pm/cpuidle.rst
5315 F:      drivers/cpuidle/
5316 F:      include/linux/cpuidle.h
5317
5318 CPU POWER MONITORING SUBSYSTEM
5319 M:      Thomas Renninger <[email protected]>
5320 M:      Shuah Khan <[email protected]>
5321 M:      Shuah Khan <[email protected]>
5322 L:      [email protected]
5323 S:      Maintained
5324 F:      tools/power/cpupower/
5325
5326 CPUID/MSR DRIVER
5327 M:      "H. Peter Anvin" <[email protected]>
5328 S:      Maintained
5329 F:      arch/x86/kernel/cpuid.c
5330 F:      arch/x86/kernel/msr.c
5331
5332 CPUIDLE DRIVER - ARM BIG LITTLE
5333 M:      Lorenzo Pieralisi <[email protected]>
5334 M:      Daniel Lezcano <[email protected]>
5335 L:      [email protected]
5336 L:      [email protected] (moderated for non-subscribers)
5337 S:      Maintained
5338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5339 F:      drivers/cpuidle/cpuidle-big_little.c
5340
5341 CPUIDLE DRIVER - ARM EXYNOS
5342 M:      Daniel Lezcano <[email protected]>
5343 R:      Krzysztof Kozlowski <[email protected]>
5344 M:      Kukjin Kim <[email protected]>
5345 L:      [email protected]
5346 L:      [email protected]
5347 S:      Supported
5348 F:      arch/arm/mach-exynos/pm.c
5349 F:      drivers/cpuidle/cpuidle-exynos.c
5350 F:      include/linux/platform_data/cpuidle-exynos.h
5351
5352 CPUIDLE DRIVER - ARM PSCI
5353 M:      Lorenzo Pieralisi <[email protected]>
5354 M:      Sudeep Holla <[email protected]>
5355 L:      [email protected]
5356 L:      [email protected] (moderated for non-subscribers)
5357 S:      Supported
5358 F:      drivers/cpuidle/cpuidle-psci.c
5359
5360 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5361 M:      Ulf Hansson <[email protected]>
5362 L:      [email protected]
5363 L:      [email protected] (moderated for non-subscribers)
5364 S:      Supported
5365 F:      drivers/cpuidle/cpuidle-psci.h
5366 F:      drivers/cpuidle/cpuidle-psci-domain.c
5367
5368 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5369 M:      Ulf Hansson <[email protected]>
5370 L:      [email protected]
5371 S:      Supported
5372 F:      drivers/cpuidle/dt_idle_genpd.c
5373 F:      drivers/cpuidle/dt_idle_genpd.h
5374
5375 CPUIDLE DRIVER - RISC-V SBI
5376 M:      Anup Patel <[email protected]>
5377 L:      [email protected]
5378 L:      [email protected]
5379 S:      Maintained
5380 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5381
5382 CRAMFS FILESYSTEM
5383 M:      Nicolas Pitre <[email protected]>
5384 S:      Maintained
5385 F:      Documentation/filesystems/cramfs.rst
5386 F:      fs/cramfs/
5387
5388 CREATIVE SB0540
5389 M:      Bastien Nocera <[email protected]>
5390 L:      [email protected]
5391 S:      Maintained
5392 F:      drivers/hid/hid-creative-sb0540.c
5393
5394 CRYPTO API
5395 M:      Herbert Xu <[email protected]>
5396 M:      "David S. Miller" <[email protected]>
5397 L:      [email protected]
5398 S:      Maintained
5399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5401 F:      Documentation/crypto/
5402 F:      Documentation/devicetree/bindings/crypto/
5403 F:      arch/*/crypto/
5404 F:      crypto/
5405 F:      drivers/crypto/
5406 F:      include/crypto/
5407 F:      include/linux/crypto*
5408 F:      lib/crypto/
5409
5410 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5411 M:      Neil Horman <[email protected]>
5412 L:      [email protected]
5413 S:      Maintained
5414 F:      crypto/ansi_cprng.c
5415 F:      crypto/rng.c
5416
5417 CS3308 MEDIA DRIVER
5418 M:      Hans Verkuil <[email protected]>
5419 L:      [email protected]
5420 S:      Odd Fixes
5421 W:      http://linuxtv.org
5422 T:      git git://linuxtv.org/media_tree.git
5423 F:      drivers/media/i2c/cs3308.c
5424
5425 CS5535 Audio ALSA driver
5426 M:      Jaya Kumar <[email protected]>
5427 S:      Maintained
5428 F:      sound/pci/cs5535audio/
5429
5430 CTU CAN FD DRIVER
5431 M:      Pavel Pisa <[email protected]>
5432 M:      Ondrej Ille <[email protected]>
5433 L:      [email protected]
5434 S:      Maintained
5435 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5436 F:      drivers/net/can/ctucanfd/
5437
5438 CW1200 WLAN driver
5439 M:      Solomon Peachy <[email protected]>
5440 S:      Maintained
5441 F:      drivers/net/wireless/st/cw1200/
5442
5443 CX18 VIDEO4LINUX DRIVER
5444 M:      Andy Walls <[email protected]>
5445 L:      [email protected]
5446 S:      Maintained
5447 W:      https://linuxtv.org
5448 T:      git git://linuxtv.org/media_tree.git
5449 F:      drivers/media/pci/cx18/
5450 F:      include/uapi/linux/ivtv*
5451
5452 CX2341X MPEG ENCODER HELPER MODULE
5453 M:      Hans Verkuil <[email protected]>
5454 L:      [email protected]
5455 S:      Maintained
5456 W:      https://linuxtv.org
5457 T:      git git://linuxtv.org/media_tree.git
5458 F:      drivers/media/common/cx2341x*
5459 F:      include/media/drv-intf/cx2341x.h
5460
5461 CX24120 MEDIA DRIVER
5462 M:      Jemma Denson <[email protected]>
5463 M:      Patrick Boettcher <[email protected]>
5464 L:      [email protected]
5465 S:      Maintained
5466 W:      https://linuxtv.org
5467 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5468 F:      drivers/media/dvb-frontends/cx24120*
5469
5470 CX88 VIDEO4LINUX DRIVER
5471 M:      Mauro Carvalho Chehab <[email protected]>
5472 L:      [email protected]
5473 S:      Odd fixes
5474 W:      https://linuxtv.org
5475 T:      git git://linuxtv.org/media_tree.git
5476 F:      Documentation/driver-api/media/drivers/cx88*
5477 F:      drivers/media/pci/cx88/
5478
5479 CXD2820R MEDIA DRIVER
5480 M:      Antti Palosaari <[email protected]>
5481 L:      [email protected]
5482 S:      Maintained
5483 W:      https://linuxtv.org
5484 W:      http://palosaari.fi/linux/
5485 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5486 T:      git git://linuxtv.org/anttip/media_tree.git
5487 F:      drivers/media/dvb-frontends/cxd2820r*
5488
5489 CXGB3 ETHERNET DRIVER (CXGB3)
5490 M:      Raju Rangoju <[email protected]>
5491 L:      [email protected]
5492 S:      Supported
5493 W:      http://www.chelsio.com
5494 F:      drivers/net/ethernet/chelsio/cxgb3/
5495
5496 CXGB3 ISCSI DRIVER (CXGB3I)
5497 M:      Varun Prakash <[email protected]>
5498 L:      [email protected]
5499 S:      Supported
5500 W:      http://www.chelsio.com
5501 F:      drivers/scsi/cxgbi/cxgb3i
5502
5503 CXGB4 CRYPTO DRIVER (chcr)
5504 M:      Ayush Sawal <[email protected]>
5505 L:      [email protected]
5506 S:      Supported
5507 W:      http://www.chelsio.com
5508 F:      drivers/crypto/chelsio
5509
5510 CXGB4 INLINE CRYPTO DRIVER
5511 M:      Ayush Sawal <[email protected]>
5512 L:      [email protected]
5513 S:      Supported
5514 W:      http://www.chelsio.com
5515 F:      drivers/net/ethernet/chelsio/inline_crypto/
5516
5517 CXGB4 ETHERNET DRIVER (CXGB4)
5518 M:      Raju Rangoju <[email protected]>
5519 L:      [email protected]
5520 S:      Supported
5521 W:      http://www.chelsio.com
5522 F:      drivers/net/ethernet/chelsio/cxgb4/
5523
5524 CXGB4 ISCSI DRIVER (CXGB4I)
5525 M:      Varun Prakash <[email protected]>
5526 L:      [email protected]
5527 S:      Supported
5528 W:      http://www.chelsio.com
5529 F:      drivers/scsi/cxgbi/cxgb4i
5530
5531 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5532 M:      Potnuri Bharat Teja <[email protected]>
5533 L:      [email protected]
5534 S:      Supported
5535 W:      http://www.openfabrics.org
5536 F:      drivers/infiniband/hw/cxgb4/
5537 F:      include/uapi/rdma/cxgb4-abi.h
5538
5539 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5540 M:      Raju Rangoju <[email protected]>
5541 L:      [email protected]
5542 S:      Supported
5543 W:      http://www.chelsio.com
5544 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5545
5546 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5547 M:      Frederic Barrat <[email protected]>
5548 M:      Andrew Donnellan <[email protected]>
5549 L:      [email protected]
5550 S:      Supported
5551 F:      Documentation/ABI/testing/sysfs-class-cxl
5552 F:      Documentation/powerpc/cxl.rst
5553 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5554 F:      drivers/misc/cxl/
5555 F:      include/misc/cxl*
5556 F:      include/uapi/misc/cxl.h
5557
5558 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5559 M:      Manoj N. Kumar <[email protected]>
5560 M:      Matthew R. Ochs <[email protected]>
5561 M:      Uma Krishnan <[email protected]>
5562 L:      [email protected]
5563 S:      Supported
5564 F:      Documentation/powerpc/cxlflash.rst
5565 F:      drivers/scsi/cxlflash/
5566 F:      include/uapi/scsi/cxlflash_ioctl.h
5567
5568 CYBERPRO FB DRIVER
5569 M:      Russell King <[email protected]>
5570 L:      [email protected] (moderated for non-subscribers)
5571 S:      Maintained
5572 W:      http://www.armlinux.org.uk/
5573 F:      drivers/video/fbdev/cyber2000fb.*
5574
5575 CYCLADES PC300 DRIVER
5576 S:      Orphan
5577 F:      drivers/net/wan/pc300*
5578
5579 CYPRESS_FIRMWARE MEDIA DRIVER
5580 M:      Antti Palosaari <[email protected]>
5581 L:      [email protected]
5582 S:      Maintained
5583 W:      https://linuxtv.org
5584 W:      http://palosaari.fi/linux/
5585 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5586 T:      git git://linuxtv.org/anttip/media_tree.git
5587 F:      drivers/media/common/cypress_firmware*
5588
5589 CYPRESS CY8C95X0 PINCTRL DRIVER
5590 M:      Patrick Rudolph <[email protected]>
5591 L:      [email protected]
5592 S:      Maintained
5593 F:      drivers/pinctrl/pinctrl-cy8c95x0.c
5594
5595 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5596 M:      Linus Walleij <[email protected]>
5597 L:      [email protected]
5598 S:      Maintained
5599 F:      drivers/input/touchscreen/cy8ctma140.c
5600
5601 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5602 M:      Yassine Oudjana <[email protected]>
5603 L:      [email protected]
5604 S:      Maintained
5605 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5606 F:      drivers/input/keyboard/cypress-sf.c
5607
5608 CYTTSP TOUCHSCREEN DRIVER
5609 M:      Linus Walleij <[email protected]>
5610 L:      [email protected]
5611 S:      Maintained
5612 F:      drivers/input/touchscreen/cyttsp*
5613
5614 D-LINK DIR-685 TOUCHKEYS DRIVER
5615 M:      Linus Walleij <[email protected]>
5616 L:      [email protected]
5617 S:      Supported
5618 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5619
5620 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5621 M:      Joshua Kinard <[email protected]>
5622 S:      Maintained
5623 F:      drivers/rtc/rtc-ds1685.c
5624 F:      include/linux/rtc/ds1685.h
5625
5626 DAMA SLAVE for AX.25
5627 M:      Joerg Reuter <[email protected]>
5628 L:      [email protected]
5629 S:      Maintained
5630 W:      http://yaina.de/jreuter/
5631 W:      http://www.qsl.net/dl1bke/
5632 F:      net/ax25/af_ax25.c
5633 F:      net/ax25/ax25_dev.c
5634 F:      net/ax25/ax25_ds_*
5635 F:      net/ax25/ax25_in.c
5636 F:      net/ax25/ax25_out.c
5637 F:      net/ax25/ax25_timer.c
5638 F:      net/ax25/sysctl_net_ax25.c
5639
5640 DATA ACCESS MONITOR
5641 M:      SeongJae Park <[email protected]>
5642 L:      [email protected]
5643 L:      [email protected]
5644 S:      Maintained
5645 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5646 F:      Documentation/admin-guide/mm/damon/
5647 F:      Documentation/mm/damon/
5648 F:      include/linux/damon.h
5649 F:      include/trace/events/damon.h
5650 F:      mm/damon/
5651 F:      tools/testing/selftests/damon/
5652
5653 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5654 L:      [email protected]
5655 S:      Orphan
5656 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5657 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5658
5659 DC390/AM53C974 SCSI driver
5660 M:      Hannes Reinecke <[email protected]>
5661 L:      [email protected]
5662 S:      Maintained
5663 F:      drivers/scsi/am53c974.c
5664
5665 DC395x SCSI driver
5666 M:      Oliver Neukum <[email protected]>
5667 M:      Ali Akcaagac <[email protected]>
5668 M:      Jamie Lenehan <[email protected]>
5669 L:      [email protected]
5670 S:      Maintained
5671 W:      http://twibble.org/dist/dc395x/
5672 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5673 F:      Documentation/scsi/dc395x.rst
5674 F:      drivers/scsi/dc395x.*
5675
5676 DCCP PROTOCOL
5677 L:      [email protected]
5678 S:      Orphan
5679 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5680 F:      include/linux/dccp.h
5681 F:      include/linux/tfrc.h
5682 F:      include/uapi/linux/dccp.h
5683 F:      net/dccp/
5684
5685 DECSTATION PLATFORM SUPPORT
5686 M:      "Maciej W. Rozycki" <[email protected]>
5687 L:      [email protected]
5688 S:      Maintained
5689 W:      http://www.linux-mips.org/wiki/DECstation
5690 F:      arch/mips/dec/
5691 F:      arch/mips/include/asm/dec/
5692 F:      arch/mips/include/asm/mach-dec/
5693
5694 DEFXX FDDI NETWORK DRIVER
5695 M:      "Maciej W. Rozycki" <[email protected]>
5696 S:      Maintained
5697 F:      drivers/net/fddi/defxx.*
5698
5699 DEFZA FDDI NETWORK DRIVER
5700 M:      "Maciej W. Rozycki" <[email protected]>
5701 S:      Maintained
5702 F:      drivers/net/fddi/defza.*
5703
5704 DEINTERLACE DRIVERS FOR ALLWINNER H3
5705 M:      Jernej Skrabec <[email protected]>
5706 L:      [email protected]
5707 S:      Maintained
5708 T:      git git://linuxtv.org/media_tree.git
5709 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5710 F:      drivers/media/platform/sunxi/sun8i-di/
5711
5712 DELL LAPTOP DRIVER
5713 M:      Matthew Garrett <[email protected]>
5714 M:      Pali Rohár <[email protected]>
5715 L:      [email protected]
5716 S:      Maintained
5717 F:      drivers/platform/x86/dell/dell-laptop.c
5718
5719 DELL LAPTOP FREEFALL DRIVER
5720 M:      Pali Rohár <[email protected]>
5721 S:      Maintained
5722 F:      drivers/platform/x86/dell/dell-smo8800.c
5723
5724 DELL LAPTOP RBTN DRIVER
5725 M:      Pali Rohár <[email protected]>
5726 S:      Maintained
5727 F:      drivers/platform/x86/dell/dell-rbtn.*
5728
5729 DELL LAPTOP SMM DRIVER
5730 M:      Pali Rohár <[email protected]>
5731 S:      Maintained
5732 F:      Documentation/ABI/obsolete/procfs-i8k
5733 F:      drivers/hwmon/dell-smm-hwmon.c
5734 F:      include/uapi/linux/i8k.h
5735
5736 DELL REMOTE BIOS UPDATE DRIVER
5737 M:      Stuart Hayes <[email protected]>
5738 L:      [email protected]
5739 S:      Maintained
5740 F:      drivers/platform/x86/dell/dell_rbu.c
5741
5742 DELL SMBIOS DRIVER
5743 M:      Pali Rohár <[email protected]>
5744 L:      [email protected]
5745 L:      [email protected]
5746 S:      Maintained
5747 F:      drivers/platform/x86/dell/dell-smbios.*
5748
5749 DELL SMBIOS SMM DRIVER
5750 L:      [email protected]
5751 L:      [email protected]
5752 S:      Maintained
5753 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5754
5755 DELL SMBIOS WMI DRIVER
5756 L:      [email protected]
5757 L:      [email protected]
5758 S:      Maintained
5759 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5760 F:      tools/wmi/dell-smbios-example.c
5761
5762 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5763 M:      Stuart Hayes <[email protected]>
5764 L:      [email protected]
5765 S:      Maintained
5766 F:      Documentation/driver-api/dcdbas.rst
5767 F:      drivers/platform/x86/dell/dcdbas.*
5768
5769 DELL WMI DESCRIPTOR DRIVER
5770 L:      [email protected]
5771 S:      Maintained
5772 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5773
5774 DELL WMI DDV DRIVER
5775 M:      Armin Wolf <[email protected]>
5776 S:      Maintained
5777 F:      Documentation/ABI/testing/debugfs-dell-wmi-ddv
5778 F:      Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
5779 F:      drivers/platform/x86/dell/dell-wmi-ddv.c
5780
5781 DELL WMI SYSMAN DRIVER
5782 M:      Prasanth Ksr <[email protected]>
5783 L:      [email protected]
5784 L:      [email protected]
5785 S:      Maintained
5786 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5787 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5788
5789 DELL WMI NOTIFICATIONS DRIVER
5790 M:      Matthew Garrett <[email protected]>
5791 M:      Pali Rohár <[email protected]>
5792 S:      Maintained
5793 F:      drivers/platform/x86/dell/dell-wmi-base.c
5794
5795 DELL WMI HARDWARE PRIVACY SUPPORT
5796 M:      Perry Yuan <[email protected]>
5797 L:      [email protected]
5798 L:      [email protected]
5799 S:      Maintained
5800 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5801
5802 DELTA ST MEDIA DRIVER
5803 M:      Hugues Fruchet <[email protected]>
5804 L:      [email protected]
5805 S:      Supported
5806 W:      https://linuxtv.org
5807 T:      git git://linuxtv.org/media_tree.git
5808 F:      drivers/media/platform/st/sti/delta
5809
5810 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5811 M:      Zev Weiss <[email protected]>
5812 L:      [email protected]
5813 S:      Maintained
5814 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5815
5816 DELTA DPS920AB PSU DRIVER
5817 M:      Robert Marko <[email protected]>
5818 L:      [email protected]
5819 S:      Maintained
5820 F:      Documentation/hwmon/dps920ab.rst
5821 F:      drivers/hwmon/pmbus/dps920ab.c
5822
5823 DELTA NETWORKS TN48M CPLD DRIVERS
5824 M:      Robert Marko <[email protected]>
5825 S:      Maintained
5826 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5827 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5828 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5829 F:      drivers/gpio/gpio-tn48m.c
5830 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5831
5832 DENALI NAND DRIVER
5833 L:      [email protected]
5834 S:      Orphan
5835 F:      drivers/mtd/nand/raw/denali*
5836
5837 DESIGNWARE EDMA CORE IP DRIVER
5838 M:      Gustavo Pimentel <[email protected]>
5839 L:      [email protected]
5840 S:      Maintained
5841 F:      drivers/dma/dw-edma/
5842 F:      include/linux/dma/edma.h
5843
5844 DESIGNWARE XDATA IP DRIVER
5845 M:      Gustavo Pimentel <[email protected]>
5846 L:      [email protected]
5847 S:      Maintained
5848 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5849 F:      drivers/misc/dw-xdata-pcie.c
5850
5851 DESIGNWARE USB2 DRD IP DRIVER
5852 M:      Minas Harutyunyan <[email protected]>
5853 L:      [email protected]
5854 S:      Maintained
5855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5856 F:      drivers/usb/dwc2/
5857
5858 DESIGNWARE USB3 DRD IP DRIVER
5859 M:      Thinh Nguyen <[email protected]>
5860 L:      [email protected]
5861 S:      Maintained
5862 F:      drivers/usb/dwc3/
5863
5864 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5865 M:      Andreas Klinger <[email protected]>
5866 L:      [email protected]
5867 S:      Maintained
5868 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5869 F:      drivers/iio/proximity/srf*.c
5870
5871 DEVICE COREDUMP (DEV_COREDUMP)
5872 M:      Johannes Berg <[email protected]>
5873 L:      [email protected]
5874 S:      Maintained
5875 F:      drivers/base/devcoredump.c
5876 F:      include/linux/devcoredump.h
5877
5878 DEVICE DEPENDENCY HELPER SCRIPT
5879 M:      Saravana Kannan <[email protected]>
5880 L:      [email protected]
5881 S:      Maintained
5882 F:      scripts/dev-needs.sh
5883
5884 DEVICE DIRECT ACCESS (DAX)
5885 M:      Dan Williams <[email protected]>
5886 M:      Vishal Verma <[email protected]>
5887 M:      Dave Jiang <[email protected]>
5888 L:      [email protected]
5889 S:      Supported
5890 F:      drivers/dax/
5891
5892 DEVICE FREQUENCY (DEVFREQ)
5893 M:      MyungJoo Ham <[email protected]>
5894 M:      Kyungmin Park <[email protected]>
5895 M:      Chanwoo Choi <[email protected]>
5896 L:      [email protected]
5897 S:      Maintained
5898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5899 F:      Documentation/devicetree/bindings/devfreq/
5900 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5901 F:      drivers/devfreq/
5902 F:      include/linux/devfreq.h
5903 F:      include/trace/events/devfreq.h
5904
5905 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5906 M:      Chanwoo Choi <[email protected]>
5907 L:      [email protected]
5908 S:      Supported
5909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5910 F:      Documentation/devicetree/bindings/devfreq/event/
5911 F:      drivers/devfreq/devfreq-event.c
5912 F:      drivers/devfreq/event/
5913 F:      include/dt-bindings/pmu/exynos_ppmu.h
5914 F:      include/linux/devfreq-event.h
5915
5916 DEVICE NUMBER REGISTRY
5917 M:      Torben Mathiasen <[email protected]>
5918 S:      Maintained
5919 W:      http://lanana.org/docs/device-list/index.html
5920
5921 DEVICE RESOURCE MANAGEMENT HELPERS
5922 M:      Hans de Goede <[email protected]>
5923 R:      Matti Vaittinen <[email protected]>
5924 S:      Maintained
5925 F:      include/linux/devm-helpers.h
5926
5927 DEVICE-MAPPER  (LVM)
5928 M:      Alasdair Kergon <[email protected]>
5929 M:      Mike Snitzer <[email protected]>
5930 M:      [email protected]
5931 L:      [email protected]
5932 S:      Maintained
5933 W:      http://sources.redhat.com/dm
5934 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5936 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5937 F:      Documentation/admin-guide/device-mapper/
5938 F:      drivers/md/Kconfig
5939 F:      drivers/md/Makefile
5940 F:      drivers/md/dm*
5941 F:      drivers/md/persistent-data/
5942 F:      include/linux/device-mapper.h
5943 F:      include/linux/dm-*.h
5944 F:      include/uapi/linux/dm-*.h
5945
5946 DEVLINK
5947 M:      Jiri Pirko <[email protected]>
5948 L:      [email protected]
5949 S:      Supported
5950 F:      Documentation/networking/devlink
5951 F:      include/net/devlink.h
5952 F:      include/uapi/linux/devlink.h
5953 F:      net/devlink/
5954
5955 DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD SUPPORT
5956 M:      Christoph Niedermaier <[email protected]>
5957 L:      [email protected]
5958 S:      Maintained
5959 F:      arch/arm/boot/dts/imx6*-dhcom-*
5960 F:      arch/arm/boot/dts/imx6*-dhcor-*
5961
5962 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5963 M:      Marek Vasut <[email protected]>
5964 L:      [email protected]
5965 S:      Maintained
5966 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5967 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5968
5969 DIALOG SEMICONDUCTOR DRIVERS
5970 M:      Support Opensource <[email protected]>
5971 S:      Supported
5972 W:      http://www.dialog-semiconductor.com/products
5973 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5974 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5975 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5976 F:      Documentation/devicetree/bindings/mfd/da90*.yaml
5977 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5978 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5979 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5980 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5981 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5982 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5983 F:      Documentation/hwmon/da90??.rst
5984 F:      drivers/gpio/gpio-da90??.c
5985 F:      drivers/hwmon/da90??-hwmon.c
5986 F:      drivers/iio/adc/da91??-*.c
5987 F:      drivers/input/misc/da72??.[ch]
5988 F:      drivers/input/misc/da90??_onkey.c
5989 F:      drivers/input/touchscreen/da9052_tsi.c
5990 F:      drivers/leds/leds-da90??.c
5991 F:      drivers/mfd/da903x.c
5992 F:      drivers/mfd/da90??-*.c
5993 F:      drivers/mfd/da91??-*.c
5994 F:      drivers/pinctrl/pinctrl-da90??.c
5995 F:      drivers/power/supply/da9052-battery.c
5996 F:      drivers/power/supply/da91??-*.c
5997 F:      drivers/regulator/da9???-regulator.[ch]
5998 F:      drivers/regulator/slg51000-regulator.[ch]
5999 F:      drivers/rtc/rtc-da90??.c
6000 F:      drivers/thermal/da90??-thermal.c
6001 F:      drivers/video/backlight/da90??_bl.c
6002 F:      drivers/watchdog/da90??_wdt.c
6003 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6004 F:      include/linux/mfd/da903x.h
6005 F:      include/linux/mfd/da9052/
6006 F:      include/linux/mfd/da9055/
6007 F:      include/linux/mfd/da9062/
6008 F:      include/linux/mfd/da9063/
6009 F:      include/linux/mfd/da9150/
6010 F:      include/linux/regulator/da9211.h
6011 F:      include/sound/da[79]*.h
6012 F:      sound/soc/codecs/da[79]*.[ch]
6013
6014 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6015 M:      William Breathitt Gray <[email protected]>
6016 L:      [email protected]
6017 S:      Maintained
6018 F:      drivers/gpio/gpio-gpio-mm.c
6019
6020 DIOLAN U2C-12 I2C DRIVER
6021 M:      Guenter Roeck <[email protected]>
6022 L:      [email protected]
6023 S:      Maintained
6024 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6025
6026 DIRECTORY NOTIFICATION (DNOTIFY)
6027 M:      Jan Kara <[email protected]>
6028 R:      Amir Goldstein <[email protected]>
6029 L:      [email protected]
6030 S:      Maintained
6031 F:      Documentation/filesystems/dnotify.rst
6032 F:      fs/notify/dnotify/
6033 F:      include/linux/dnotify.h
6034
6035 DISK GEOMETRY AND PARTITION HANDLING
6036 M:      Andries Brouwer <[email protected]>
6037 S:      Maintained
6038 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6039 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6040 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6041
6042 DISKQUOTA
6043 M:      Jan Kara <[email protected]>
6044 S:      Maintained
6045 F:      Documentation/filesystems/quota.rst
6046 F:      fs/quota/
6047 F:      include/linux/quota*.h
6048 F:      include/uapi/linux/quota*.h
6049
6050 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6051 M:      Bernie Thompson <[email protected]>
6052 L:      [email protected]
6053 S:      Maintained
6054 W:      http://plugable.com/category/projects/udlfb/
6055 F:      Documentation/fb/udlfb.rst
6056 F:      drivers/video/fbdev/udlfb.c
6057 F:      include/video/udlfb.h
6058
6059 DISTRIBUTED LOCK MANAGER (DLM)
6060 M:      Christine Caulfield <[email protected]>
6061 M:      David Teigland <[email protected]>
6062 L:      [email protected]
6063 S:      Supported
6064 W:      http://sources.redhat.com/cluster/
6065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6066 F:      fs/dlm/
6067
6068 DMA BUFFER SHARING FRAMEWORK
6069 M:      Sumit Semwal <[email protected]>
6070 M:      Christian König <[email protected]>
6071 L:      [email protected]
6072 L:      [email protected]
6073 L:      [email protected] (moderated for non-subscribers)
6074 S:      Maintained
6075 T:      git git://anongit.freedesktop.org/drm/drm-misc
6076 F:      Documentation/driver-api/dma-buf.rst
6077 F:      drivers/dma-buf/
6078 F:      include/linux/*fence.h
6079 F:      include/linux/dma-buf.h
6080 F:      include/linux/dma-resv.h
6081 K:      \bdma_(?:buf|fence|resv)\b
6082
6083 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6084 M:      Vinod Koul <[email protected]>
6085 L:      [email protected]
6086 S:      Maintained
6087 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6089 F:      Documentation/devicetree/bindings/dma/
6090 F:      Documentation/driver-api/dmaengine/
6091 F:      drivers/dma/
6092 F:      include/dt-bindings/dma/
6093 F:      include/linux/dma/
6094 F:      include/linux/dmaengine.h
6095 F:      include/linux/of_dma.h
6096
6097 DMA MAPPING HELPERS
6098 M:      Christoph Hellwig <[email protected]>
6099 M:      Marek Szyprowski <[email protected]>
6100 R:      Robin Murphy <[email protected]>
6101 L:      [email protected]
6102 S:      Supported
6103 W:      http://git.infradead.org/users/hch/dma-mapping.git
6104 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6105 F:      include/asm-generic/dma-mapping.h
6106 F:      include/linux/dma-direct.h
6107 F:      include/linux/dma-mapping.h
6108 F:      include/linux/dma-map-ops.h
6109 F:      include/linux/swiotlb.h
6110 F:      kernel/dma/
6111
6112 DMA MAPPING BENCHMARK
6113 M:      Xiang Chen <[email protected]>
6114 L:      [email protected]
6115 F:      kernel/dma/map_benchmark.c
6116 F:      tools/testing/selftests/dma/
6117
6118 DMA-BUF HEAPS FRAMEWORK
6119 M:      Sumit Semwal <[email protected]>
6120 R:      Benjamin Gaignard <[email protected]>
6121 R:      Liam Mark <[email protected]>
6122 R:      Laura Abbott <[email protected]>
6123 R:      Brian Starkey <[email protected]>
6124 R:      John Stultz <[email protected]>
6125 L:      [email protected]
6126 L:      [email protected]
6127 L:      [email protected] (moderated for non-subscribers)
6128 S:      Maintained
6129 T:      git git://anongit.freedesktop.org/drm/drm-misc
6130 F:      drivers/dma-buf/dma-heap.c
6131 F:      drivers/dma-buf/heaps/*
6132 F:      include/linux/dma-heap.h
6133 F:      include/uapi/linux/dma-heap.h
6134
6135 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6136 M:      Lukasz Luba <[email protected]>
6137 L:      [email protected]
6138 L:      [email protected]
6139 S:      Maintained
6140 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6141 F:      drivers/memory/samsung/exynos5422-dmc.c
6142
6143 DME1737 HARDWARE MONITOR DRIVER
6144 M:      Juerg Haefliger <[email protected]>
6145 L:      [email protected]
6146 S:      Maintained
6147 F:      Documentation/hwmon/dme1737.rst
6148 F:      drivers/hwmon/dme1737.c
6149
6150 DMI/SMBIOS SUPPORT
6151 M:      Jean Delvare <[email protected]>
6152 S:      Maintained
6153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6154 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6155 F:      drivers/firmware/dmi-id.c
6156 F:      drivers/firmware/dmi_scan.c
6157 F:      include/linux/dmi.h
6158
6159 DOCUMENTATION
6160 M:      Jonathan Corbet <[email protected]>
6161 L:      [email protected]
6162 S:      Maintained
6163 P:      Documentation/doc-guide/maintainer-profile.rst
6164 T:      git git://git.lwn.net/linux.git docs-next
6165 F:      Documentation/
6166 F:      scripts/documentation-file-ref-check
6167 F:      scripts/kernel-doc
6168 F:      scripts/sphinx-pre-install
6169 X:      Documentation/ABI/
6170 X:      Documentation/admin-guide/media/
6171 X:      Documentation/devicetree/
6172 X:      Documentation/driver-api/media/
6173 X:      Documentation/firmware-guide/acpi/
6174 X:      Documentation/i2c/
6175 X:      Documentation/power/
6176 X:      Documentation/spi/
6177 X:      Documentation/userspace-api/media/
6178
6179 DOCUMENTATION REPORTING ISSUES
6180 M:      Thorsten Leemhuis <[email protected]>
6181 L:      [email protected]
6182 S:      Maintained
6183 F:      Documentation/admin-guide/reporting-issues.rst
6184
6185 DOCUMENTATION SCRIPTS
6186 M:      Mauro Carvalho Chehab <[email protected]>
6187 L:      [email protected]
6188 S:      Maintained
6189 F:      Documentation/sphinx/parse-headers.pl
6190 F:      scripts/documentation-file-ref-check
6191 F:      scripts/sphinx-pre-install
6192
6193 DOCUMENTATION/ITALIAN
6194 M:      Federico Vaga <[email protected]>
6195 L:      [email protected]
6196 S:      Maintained
6197 F:      Documentation/translations/it_IT
6198
6199 DOCUMENTATION/JAPANESE
6200 R:      Akira Yokosawa <[email protected]>
6201 L:      [email protected]
6202 S:      Maintained
6203 F:      Documentation/translations/ja_JP
6204
6205 DONGWOON DW9714 LENS VOICE COIL DRIVER
6206 M:      Sakari Ailus <[email protected]>
6207 L:      [email protected]
6208 S:      Maintained
6209 T:      git git://linuxtv.org/media_tree.git
6210 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
6211 F:      drivers/media/i2c/dw9714.c
6212
6213 DONGWOON DW9768 LENS VOICE COIL DRIVER
6214 M:      Dongchun Zhu <[email protected]>
6215 L:      [email protected]
6216 S:      Maintained
6217 T:      git git://linuxtv.org/media_tree.git
6218 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6219 F:      drivers/media/i2c/dw9768.c
6220
6221 DONGWOON DW9807 LENS VOICE COIL DRIVER
6222 M:      Sakari Ailus <[email protected]>
6223 L:      [email protected]
6224 S:      Maintained
6225 T:      git git://linuxtv.org/media_tree.git
6226 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6227 F:      drivers/media/i2c/dw9807-vcm.c
6228
6229 DOUBLETALK DRIVER
6230 M:      "James R. Van Zandt" <[email protected]>
6231 L:      [email protected]
6232 S:      Maintained
6233 F:      drivers/char/dtlk.c
6234 F:      include/linux/dtlk.h
6235
6236 DPAA2 DATAPATH I/O (DPIO) DRIVER
6237 M:      Roy Pledge <[email protected]>
6238 L:      [email protected]
6239 S:      Maintained
6240 F:      drivers/soc/fsl/dpio
6241
6242 DPAA2 ETHERNET DRIVER
6243 M:      Ioana Ciornei <[email protected]>
6244 L:      [email protected]
6245 S:      Maintained
6246 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6247 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6248 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6249 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6250 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6251 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6252 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-xsk*
6253 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6254 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6255 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6256
6257 DPAA2 ETHERNET SWITCH DRIVER
6258 M:      Ioana Ciornei <[email protected]>
6259 L:      [email protected]
6260 S:      Maintained
6261 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6262 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6263 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6264
6265 DRBD DRIVER
6266 M:      Philipp Reisner <[email protected]>
6267 M:      Lars Ellenberg <[email protected]>
6268 M:      Christoph Böhmwalder <[email protected]>
6269 L:      [email protected]
6270 S:      Supported
6271 W:      http://www.drbd.org
6272 T:      git git://git.linbit.com/linux-drbd.git
6273 T:      git git://git.linbit.com/drbd-8.4.git
6274 F:      Documentation/admin-guide/blockdev/
6275 F:      drivers/block/drbd/
6276 F:      include/linux/drbd*
6277 F:      lib/lru_cache.c
6278
6279 DRIVER COMPONENT FRAMEWORK
6280 L:      [email protected]
6281 F:      drivers/base/component.c
6282 F:      include/linux/component.h
6283
6284 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6285 M:      Greg Kroah-Hartman <[email protected]>
6286 R:      "Rafael J. Wysocki" <[email protected]>
6287 S:      Supported
6288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6289 F:      Documentation/core-api/kobject.rst
6290 F:      drivers/base/
6291 F:      fs/debugfs/
6292 F:      fs/sysfs/
6293 F:      include/linux/debugfs.h
6294 F:      include/linux/kobj*
6295 F:      lib/kobj*
6296
6297 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6298 M:      Nishanth Menon <[email protected]>
6299 L:      [email protected]
6300 S:      Maintained
6301 F:      drivers/soc/ti/smartreflex.c
6302 F:      include/linux/power/smartreflex.h
6303
6304 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6305 M:      Maxime Ripard <[email protected]>
6306 M:      Chen-Yu Tsai <[email protected]>
6307 R:      Jernej Skrabec <[email protected]>
6308 L:      [email protected]
6309 S:      Supported
6310 T:      git git://anongit.freedesktop.org/drm/drm-misc
6311 F:      drivers/gpu/drm/sun4i/sun8i*
6312
6313 DRM DRIVER FOR ARM PL111 CLCD
6314 M:      Emma Anholt <[email protected]>
6315 S:      Supported
6316 T:      git git://anongit.freedesktop.org/drm/drm-misc
6317 F:      drivers/gpu/drm/pl111/
6318
6319 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6320 M:      Linus Walleij <[email protected]>
6321 S:      Maintained
6322 T:      git git://anongit.freedesktop.org/drm/drm-misc
6323 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6324 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6325
6326 DRM DRIVER FOR ASPEED BMC GFX
6327 M:      Joel Stanley <[email protected]>
6328 L:      [email protected] (moderated for non-subscribers)
6329 S:      Supported
6330 T:      git git://anongit.freedesktop.org/drm/drm-misc
6331 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6332 F:      drivers/gpu/drm/aspeed/
6333
6334 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6335 M:      Dave Airlie <[email protected]>
6336 R:      Thomas Zimmermann <[email protected]>
6337 L:      [email protected]
6338 S:      Supported
6339 T:      git git://anongit.freedesktop.org/drm/drm-misc
6340 F:      drivers/gpu/drm/ast/
6341
6342 DRM DRIVER FOR BOCHS VIRTUAL GPU
6343 M:      Gerd Hoffmann <[email protected]>
6344 L:      [email protected]
6345 S:      Maintained
6346 T:      git git://anongit.freedesktop.org/drm/drm-misc
6347 F:      drivers/gpu/drm/tiny/bochs.c
6348
6349 DRM DRIVER FOR BOE HIMAX8279D PANELS
6350 M:      Jerry Han <[email protected]>
6351 S:      Maintained
6352 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6353 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6354
6355 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6356 M:      Jagan Teki <[email protected]>
6357 S:      Maintained
6358 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6359 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6360
6361 DRM DRIVER FOR EBBG FT8719 PANEL
6362 M:      Joel Selvaraj <[email protected]>
6363 S:      Maintained
6364 T:      git git://anongit.freedesktop.org/drm/drm-misc
6365 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6366 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6367
6368 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6369 M:      Linus Walleij <[email protected]>
6370 S:      Maintained
6371 T:      git git://anongit.freedesktop.org/drm/drm-misc
6372 F:      drivers/gpu/drm/tve200/
6373
6374 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6375 M:      Icenowy Zheng <[email protected]>
6376 S:      Maintained
6377 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6378 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6379
6380 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6381 M:      Jagan Teki <[email protected]>
6382 S:      Maintained
6383 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6384 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6385
6386 DRM DRIVER FOR GENERIC EDP PANELS
6387 R:      Douglas Anderson <[email protected]>
6388 F:      Documentation/devicetree/bindings/display/panel/panel-edp.yaml
6389 F:      drivers/gpu/drm/panel/panel-edp.c
6390
6391 DRM DRIVER FOR GENERIC USB DISPLAY
6392 M:      Noralf Trønnes <[email protected]>
6393 S:      Maintained
6394 W:      https://github.com/notro/gud/wiki
6395 T:      git git://anongit.freedesktop.org/drm/drm-misc
6396 F:      drivers/gpu/drm/gud/
6397 F:      include/drm/gud.h
6398
6399 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6400 M:      Hans de Goede <[email protected]>
6401 S:      Maintained
6402 T:      git git://anongit.freedesktop.org/drm/drm-misc
6403 F:      drivers/gpu/drm/tiny/gm12u320.c
6404
6405 DRM DRIVER FOR HX8357D PANELS
6406 M:      Emma Anholt <[email protected]>
6407 S:      Maintained
6408 T:      git git://anongit.freedesktop.org/drm/drm-misc
6409 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6410 F:      drivers/gpu/drm/tiny/hx8357d.c
6411
6412 DRM DRIVER FOR ILITEK ILI9225 PANELS
6413 M:      David Lechner <[email protected]>
6414 S:      Maintained
6415 T:      git git://anongit.freedesktop.org/drm/drm-misc
6416 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6417 F:      drivers/gpu/drm/tiny/ili9225.c
6418
6419 DRM DRIVER FOR ILITEK ILI9486 PANELS
6420 M:      Kamlesh Gurudasani <[email protected]>
6421 S:      Maintained
6422 T:      git git://anongit.freedesktop.org/drm/drm-misc
6423 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6424 F:      drivers/gpu/drm/tiny/ili9486.c
6425
6426 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6427 S:      Orphan / Obsolete
6428 F:      drivers/gpu/drm/i810/
6429 F:      include/uapi/drm/i810_drm.h
6430
6431 DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
6432 M:      Jagan Teki <[email protected]>
6433 S:      Maintained
6434 F:      Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
6435 F:      drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
6436
6437 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6438 M:      Paul Kocialkowski <[email protected]>
6439 S:      Supported
6440 T:      git git://anongit.freedesktop.org/drm/drm-misc
6441 F:      drivers/gpu/drm/logicvc/
6442
6443 DRM DRIVER FOR LVDS PANELS
6444 M:      Laurent Pinchart <[email protected]>
6445 L:      [email protected]
6446 T:      git git://anongit.freedesktop.org/drm/drm-misc
6447 S:      Maintained
6448 F:      drivers/gpu/drm/panel/panel-lvds.c
6449 F:      Documentation/devicetree/bindings/display/lvds.yaml
6450 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6451
6452 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6453 M:      Guido Günther <[email protected]>
6454 R:      Purism Kernel Team <[email protected]>
6455 S:      Maintained
6456 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6457 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6458
6459 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6460 S:      Orphan / Obsolete
6461 F:      drivers/gpu/drm/mga/
6462 F:      include/uapi/drm/mga_drm.h
6463
6464 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6465 M:      Dave Airlie <[email protected]>
6466 R:      Thomas Zimmermann <[email protected]>
6467 L:      [email protected]
6468 S:      Supported
6469 T:      git git://anongit.freedesktop.org/drm/drm-misc
6470 F:      drivers/gpu/drm/mgag200/
6471
6472 DRM DRIVER FOR MI0283QT
6473 M:      Noralf Trønnes <[email protected]>
6474 S:      Maintained
6475 T:      git git://anongit.freedesktop.org/drm/drm-misc
6476 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6477 F:      drivers/gpu/drm/tiny/mi0283qt.c
6478
6479 DRM DRIVER FOR MIPI DBI compatible panels
6480 M:      Noralf Trønnes <[email protected]>
6481 S:      Maintained
6482 W:      https://github.com/notro/panel-mipi-dbi/wiki
6483 T:      git git://anongit.freedesktop.org/drm/drm-misc
6484 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6485 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6486
6487 DRM DRIVER FOR MSM ADRENO GPU
6488 M:      Rob Clark <[email protected]>
6489 M:      Abhinav Kumar <[email protected]>
6490 M:      Dmitry Baryshkov <[email protected]>
6491 R:      Sean Paul <[email protected]>
6492 L:      [email protected]
6493 L:      [email protected]
6494 L:      [email protected]
6495 S:      Maintained
6496 T:      git https://gitlab.freedesktop.org/drm/msm.git
6497 F:      Documentation/devicetree/bindings/display/msm/
6498 F:      drivers/gpu/drm/msm/
6499 F:      include/uapi/drm/msm_drm.h
6500
6501 DRM DRIVER FOR NOVATEK NT35510 PANELS
6502 M:      Linus Walleij <[email protected]>
6503 S:      Maintained
6504 T:      git git://anongit.freedesktop.org/drm/drm-misc
6505 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6506 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6507
6508 DRM DRIVER FOR NOVATEK NT35560 PANELS
6509 M:      Linus Walleij <[email protected]>
6510 S:      Maintained
6511 T:      git git://anongit.freedesktop.org/drm/drm-misc
6512 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6513 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6514
6515 DRM DRIVER FOR NOVATEK NT36672A PANELS
6516 M:      Sumit Semwal <[email protected]>
6517 S:      Maintained
6518 T:      git git://anongit.freedesktop.org/drm/drm-misc
6519 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6520 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6521
6522 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6523 M:      Ben Skeggs <[email protected]>
6524 M:      Karol Herbst <[email protected]>
6525 M:      Lyude Paul <[email protected]>
6526 L:      [email protected]
6527 L:      [email protected]
6528 S:      Supported
6529 W:      https://nouveau.freedesktop.org/
6530 Q:      https://patchwork.freedesktop.org/project/nouveau/
6531 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6532 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6533 C:      irc://irc.oftc.net/nouveau
6534 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6535 F:      drivers/gpu/drm/nouveau/
6536 F:      include/uapi/drm/nouveau_drm.h
6537
6538 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6539 M:      Stefan Mavrodiev <[email protected]>
6540 S:      Maintained
6541 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6542 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6543
6544 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6545 R:      Douglas Anderson <[email protected]>
6546 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6547 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6548
6549 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6550 M:      Noralf Trønnes <[email protected]>
6551 S:      Maintained
6552 T:      git git://anongit.freedesktop.org/drm/drm-misc
6553 F:      Documentation/devicetree/bindings/display/repaper.txt
6554 F:      drivers/gpu/drm/tiny/repaper.c
6555
6556 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6557 M:      Javier Martinez Canillas <[email protected]>
6558 S:      Maintained
6559 T:      git git://anongit.freedesktop.org/drm/drm-misc
6560 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6561 F:      drivers/gpu/drm/solomon/ssd130x*
6562
6563 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6564 M:      Dave Airlie <[email protected]>
6565 M:      Gerd Hoffmann <[email protected]>
6566 L:      [email protected]
6567 S:      Obsolete
6568 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6569 T:      git git://anongit.freedesktop.org/drm/drm-misc
6570 F:      drivers/gpu/drm/tiny/cirrus.c
6571
6572 DRM DRIVER FOR QXL VIRTUAL GPU
6573 M:      Dave Airlie <[email protected]>
6574 M:      Gerd Hoffmann <[email protected]>
6575 L:      [email protected]
6576 L:      [email protected]
6577 S:      Maintained
6578 T:      git git://anongit.freedesktop.org/drm/drm-misc
6579 F:      drivers/gpu/drm/qxl/
6580 F:      include/uapi/drm/qxl_drm.h
6581
6582 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6583 S:      Orphan / Obsolete
6584 F:      drivers/gpu/drm/r128/
6585 F:      include/uapi/drm/r128_drm.h
6586
6587 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6588 M:      Robert Chiras <[email protected]>
6589 S:      Maintained
6590 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6591 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6592
6593 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6594 M:      Linus Walleij <[email protected]>
6595 S:      Maintained
6596 T:      git git://anongit.freedesktop.org/drm/drm-misc
6597 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6598 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6599
6600 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6601 M:      Markuss Broks <[email protected]>
6602 S:      Maintained
6603 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6604 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6605
6606 DRM DRIVER FOR SITRONIX ST7703 PANELS
6607 M:      Guido Günther <[email protected]>
6608 R:      Purism Kernel Team <[email protected]>
6609 R:      Ondrej Jirman <[email protected]>
6610 S:      Maintained
6611 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6612 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6613
6614 DRM DRIVER FOR SAVAGE VIDEO CARDS
6615 S:      Orphan / Obsolete
6616 F:      drivers/gpu/drm/savage/
6617 F:      include/uapi/drm/savage_drm.h
6618
6619 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6620 M:      Thomas Zimmermann <[email protected]>
6621 M:      Javier Martinez Canillas <[email protected]>
6622 L:      [email protected]
6623 S:      Maintained
6624 T:      git git://anongit.freedesktop.org/drm/drm-misc
6625 F:      drivers/gpu/drm/drm_aperture.c
6626 F:      drivers/gpu/drm/tiny/ofdrm.c
6627 F:      drivers/gpu/drm/tiny/simpledrm.c
6628 F:      drivers/video/aperture.c
6629 F:      drivers/video/nomodeset.c
6630 F:      include/drm/drm_aperture.h
6631 F:      include/linux/aperture.h
6632 F:      include/video/nomodeset.h
6633
6634 DRM DRIVER FOR SIS VIDEO CARDS
6635 S:      Orphan / Obsolete
6636 F:      drivers/gpu/drm/sis/
6637 F:      include/uapi/drm/sis_drm.h
6638
6639 DRM DRIVER FOR SITRONIX ST7586 PANELS
6640 M:      David Lechner <[email protected]>
6641 S:      Maintained
6642 T:      git git://anongit.freedesktop.org/drm/drm-misc
6643 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6644 F:      drivers/gpu/drm/tiny/st7586.c
6645
6646 DRM DRIVER FOR SITRONIX ST7701 PANELS
6647 M:      Jagan Teki <[email protected]>
6648 S:      Maintained
6649 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6650 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6651
6652 DRM DRIVER FOR SITRONIX ST7735R PANELS
6653 M:      David Lechner <[email protected]>
6654 S:      Maintained
6655 T:      git git://anongit.freedesktop.org/drm/drm-misc
6656 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6657 F:      drivers/gpu/drm/tiny/st7735r.c
6658
6659 DRM DRIVER FOR ST-ERICSSON MCDE
6660 M:      Linus Walleij <[email protected]>
6661 S:      Maintained
6662 T:      git git://anongit.freedesktop.org/drm/drm-misc
6663 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6664 F:      drivers/gpu/drm/mcde/
6665
6666 DRM DRIVER FOR TDFX VIDEO CARDS
6667 S:      Orphan / Obsolete
6668 F:      drivers/gpu/drm/tdfx/
6669
6670 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6671 M:      Jagan Teki <[email protected]>
6672 S:      Maintained
6673 F:      Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6674 F:      drivers/gpu/drm/bridge/ti-dlpc3433.c
6675
6676 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6677 R:      Douglas Anderson <[email protected]>
6678 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6679 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6680
6681 DRM DRIVER FOR TPO TPG110 PANELS
6682 M:      Linus Walleij <[email protected]>
6683 S:      Maintained
6684 T:      git git://anongit.freedesktop.org/drm/drm-misc
6685 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6686 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6687
6688 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6689 M:      Dave Airlie <[email protected]>
6690 R:      Sean Paul <[email protected]>
6691 R:      Thomas Zimmermann <[email protected]>
6692 L:      [email protected]
6693 S:      Supported
6694 T:      git git://anongit.freedesktop.org/drm/drm-misc
6695 F:      drivers/gpu/drm/udl/
6696
6697 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6698 M:      Rodrigo Siqueira <[email protected]>
6699 M:      Melissa Wen <[email protected]>
6700 R:      Haneen Mohammed <[email protected]>
6701 R:      Daniel Vetter <[email protected]>
6702 L:      [email protected]
6703 S:      Maintained
6704 T:      git git://anongit.freedesktop.org/drm/drm-misc
6705 F:      Documentation/gpu/vkms.rst
6706 F:      drivers/gpu/drm/vkms/
6707
6708 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6709 M:      Hans de Goede <[email protected]>
6710 L:      [email protected]
6711 S:      Maintained
6712 T:      git git://anongit.freedesktop.org/drm/drm-misc
6713 F:      drivers/gpu/drm/vboxvideo/
6714
6715 DRM DRIVER FOR VMWARE VIRTUAL GPU
6716 M:      Zack Rusin <[email protected]>
6717 R:      VMware Graphics Reviewers <[email protected]>
6718 L:      [email protected]
6719 S:      Supported
6720 T:      git git://anongit.freedesktop.org/drm/drm-misc
6721 F:      drivers/gpu/drm/vmwgfx/
6722 F:      include/uapi/drm/vmwgfx_drm.h
6723
6724 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6725 M:      Linus Walleij <[email protected]>
6726 S:      Maintained
6727 T:      git git://anongit.freedesktop.org/drm/drm-misc
6728 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6729 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6730
6731 DRM DRIVERS
6732 M:      David Airlie <[email protected]>
6733 M:      Daniel Vetter <[email protected]>
6734 L:      [email protected]
6735 S:      Maintained
6736 B:      https://gitlab.freedesktop.org/drm
6737 C:      irc://irc.oftc.net/dri-devel
6738 T:      git git://anongit.freedesktop.org/drm/drm
6739 F:      Documentation/devicetree/bindings/display/
6740 F:      Documentation/devicetree/bindings/gpu/
6741 F:      Documentation/gpu/
6742 F:      drivers/gpu/
6743 F:      include/drm/
6744 F:      include/linux/vga*
6745 F:      include/uapi/drm/
6746
6747 DRM DRIVERS AND MISC GPU PATCHES
6748 M:      Maarten Lankhorst <[email protected]>
6749 M:      Maxime Ripard <[email protected]>
6750 M:      Thomas Zimmermann <[email protected]>
6751 S:      Maintained
6752 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6753 T:      git git://anongit.freedesktop.org/drm/drm-misc
6754 F:      Documentation/gpu/
6755 F:      drivers/gpu/drm/*
6756 F:      drivers/gpu/vga/
6757 F:      include/drm/drm*
6758 F:      include/linux/vga*
6759 F:      include/uapi/drm/drm*
6760
6761 DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
6762 M:      Oded Gabbay <[email protected]>
6763 L:      [email protected]
6764 S:      Maintained
6765 C:      irc://irc.oftc.net/dri-devel
6766 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
6767 F:      Documentation/accel/
6768 F:      drivers/accel/
6769
6770 DRM DRIVERS FOR ALLWINNER A10
6771 M:      Maxime Ripard <[email protected]>
6772 M:      Chen-Yu Tsai <[email protected]>
6773 L:      [email protected]
6774 S:      Supported
6775 T:      git git://anongit.freedesktop.org/drm/drm-misc
6776 F:      Documentation/devicetree/bindings/display/allwinner*
6777 F:      drivers/gpu/drm/sun4i/
6778
6779 DRM DRIVERS FOR AMLOGIC SOCS
6780 M:      Neil Armstrong <[email protected]>
6781 L:      [email protected]
6782 L:      [email protected]
6783 S:      Supported
6784 W:      http://linux-meson.com/
6785 T:      git git://anongit.freedesktop.org/drm/drm-misc
6786 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6787 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6788 F:      Documentation/gpu/meson.rst
6789 F:      drivers/gpu/drm/meson/
6790
6791 DRM DRIVERS FOR ATMEL HLCDC
6792 M:      Sam Ravnborg <[email protected]>
6793 M:      Boris Brezillon <[email protected]>
6794 L:      [email protected]
6795 S:      Supported
6796 T:      git git://anongit.freedesktop.org/drm/drm-misc
6797 F:      Documentation/devicetree/bindings/display/atmel/
6798 F:      drivers/gpu/drm/atmel-hlcdc/
6799
6800 DRM DRIVERS FOR BRIDGE CHIPS
6801 M:      Andrzej Hajda <[email protected]>
6802 M:      Neil Armstrong <[email protected]>
6803 M:      Robert Foss <[email protected]>
6804 R:      Laurent Pinchart <[email protected]>
6805 R:      Jonas Karlman <[email protected]>
6806 R:      Jernej Skrabec <[email protected]>
6807 S:      Maintained
6808 T:      git git://anongit.freedesktop.org/drm/drm-misc
6809 F:      Documentation/devicetree/bindings/display/bridge/
6810 F:      drivers/gpu/drm/bridge/
6811
6812 DRM DRIVERS FOR EXYNOS
6813 M:      Inki Dae <[email protected]>
6814 M:      Seung-Woo Kim <[email protected]>
6815 M:      Kyungmin Park <[email protected]>
6816 L:      [email protected]
6817 S:      Supported
6818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6819 F:      Documentation/devicetree/bindings/display/exynos/
6820 F:      Documentation/devicetree/bindings/display/samsung/
6821 F:      drivers/gpu/drm/exynos/
6822 F:      include/uapi/drm/exynos_drm.h
6823
6824 DRM DRIVERS FOR FREESCALE DCU
6825 M:      Stefan Agner <[email protected]>
6826 M:      Alison Wang <[email protected]>
6827 L:      [email protected]
6828 S:      Supported
6829 T:      git git://anongit.freedesktop.org/drm/drm-misc
6830 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6831 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6832 F:      drivers/gpu/drm/fsl-dcu/
6833
6834 DRM DRIVERS FOR FREESCALE IMX
6835 M:      Philipp Zabel <[email protected]>
6836 L:      [email protected]
6837 S:      Maintained
6838 F:      Documentation/devicetree/bindings/display/imx/
6839 F:      drivers/gpu/drm/imx/
6840 F:      drivers/gpu/ipu-v3/
6841
6842 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6843 M:      Liu Ying <[email protected]>
6844 L:      [email protected]
6845 S:      Maintained
6846 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6847 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6848 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6849 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6850 F:      drivers/gpu/drm/bridge/imx/
6851
6852 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6853 M:      Patrik Jakobsson <[email protected]>
6854 L:      [email protected]
6855 S:      Maintained
6856 T:      git git://github.com/patjak/drm-gma500
6857 F:      drivers/gpu/drm/gma500/
6858
6859 DRM DRIVERS FOR HISILICON
6860 M:      Xinliang Liu <[email protected]>
6861 M:      Tian Tao  <[email protected]>
6862 R:      John Stultz <[email protected]>
6863 R:      Xinwei Kong <[email protected]>
6864 R:      Chen Feng <[email protected]>
6865 L:      [email protected]
6866 S:      Maintained
6867 T:      git git://anongit.freedesktop.org/drm/drm-misc
6868 F:      Documentation/devicetree/bindings/display/hisilicon/
6869 F:      drivers/gpu/drm/hisilicon/
6870
6871 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6872 M:      Deepak Rawat <[email protected]>
6873 L:      [email protected]
6874 L:      [email protected]
6875 S:      Maintained
6876 T:      git git://anongit.freedesktop.org/drm/drm-misc
6877 F:      drivers/gpu/drm/hyperv
6878
6879 DRM DRIVERS FOR LIMA
6880 M:      Qiang Yu <[email protected]>
6881 L:      [email protected]
6882 L:      [email protected] (moderated for non-subscribers)
6883 S:      Maintained
6884 T:      git git://anongit.freedesktop.org/drm/drm-misc
6885 F:      drivers/gpu/drm/lima/
6886 F:      include/uapi/drm/lima_drm.h
6887
6888 DRM DRIVERS FOR MEDIATEK
6889 M:      Chun-Kuang Hu <[email protected]>
6890 M:      Philipp Zabel <[email protected]>
6891 L:      [email protected]
6892 L:      [email protected] (moderated for non-subscribers)
6893 S:      Supported
6894 F:      Documentation/devicetree/bindings/display/mediatek/
6895 F:      drivers/gpu/drm/mediatek/
6896 F:      drivers/phy/mediatek/phy-mtk-dp.c
6897 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6898 F:      drivers/phy/mediatek/phy-mtk-mipi*
6899
6900 DRM DRIVERS FOR NVIDIA TEGRA
6901 M:      Thierry Reding <[email protected]>
6902 L:      [email protected]
6903 L:      [email protected]
6904 S:      Supported
6905 T:      git git://anongit.freedesktop.org/tegra/linux.git
6906 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6907 F:      Documentation/devicetree/bindings/gpu/host1x/
6908 F:      drivers/gpu/drm/tegra/
6909 F:      drivers/gpu/host1x/
6910 F:      include/linux/host1x.h
6911 F:      include/uapi/drm/tegra_drm.h
6912
6913 DRM DRIVERS FOR RENESAS
6914 M:      Laurent Pinchart <[email protected]>
6915 M:      Kieran Bingham <[email protected]>
6916 L:      [email protected]
6917 L:      [email protected]
6918 S:      Supported
6919 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6920 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6921 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6922 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6923 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6924 F:      drivers/gpu/drm/rcar-du/
6925 F:      drivers/gpu/drm/shmobile/
6926 F:      include/linux/platform_data/shmob_drm.h
6927
6928 DRM DRIVERS FOR ROCKCHIP
6929 M:      Sandy Huang <[email protected]>
6930 M:      Heiko Stübner <[email protected]>
6931 L:      [email protected]
6932 S:      Maintained
6933 T:      git git://anongit.freedesktop.org/drm/drm-misc
6934 F:      Documentation/devicetree/bindings/display/rockchip/
6935 F:      drivers/gpu/drm/rockchip/
6936
6937 DRM DRIVERS FOR STI
6938 M:      Alain Volmat <[email protected]>
6939 L:      [email protected]
6940 S:      Maintained
6941 T:      git git://anongit.freedesktop.org/drm/drm-misc
6942 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6943 F:      drivers/gpu/drm/sti
6944
6945 DRM DRIVERS FOR STM
6946 M:      Yannick Fertre <[email protected]>
6947 M:      Raphael Gallais-Pou <[email protected]>
6948 M:      Philippe Cornu <[email protected]>
6949 L:      [email protected]
6950 S:      Maintained
6951 T:      git git://anongit.freedesktop.org/drm/drm-misc
6952 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6953 F:      drivers/gpu/drm/stm
6954
6955 DRM DRIVERS FOR TI KEYSTONE
6956 M:      Jyri Sarha <[email protected]>
6957 M:      Tomi Valkeinen <[email protected]>
6958 L:      [email protected]
6959 S:      Maintained
6960 T:      git git://anongit.freedesktop.org/drm/drm-misc
6961 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6962 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6963 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6964 F:      drivers/gpu/drm/tidss/
6965
6966 DRM DRIVERS FOR TI LCDC
6967 M:      Jyri Sarha <[email protected]>
6968 R:      Tomi Valkeinen <[email protected]>
6969 L:      [email protected]
6970 S:      Maintained
6971 F:      Documentation/devicetree/bindings/display/tilcdc/
6972 F:      drivers/gpu/drm/tilcdc/
6973
6974 DRM DRIVERS FOR TI OMAP
6975 M:      Tomi Valkeinen <[email protected]>
6976 L:      [email protected]
6977 S:      Maintained
6978 F:      Documentation/devicetree/bindings/display/ti/
6979 F:      drivers/gpu/drm/omapdrm/
6980
6981 DRM DRIVERS FOR V3D
6982 M:      Emma Anholt <[email protected]>
6983 M:      Melissa Wen <[email protected]>
6984 S:      Supported
6985 T:      git git://anongit.freedesktop.org/drm/drm-misc
6986 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6987 F:      drivers/gpu/drm/v3d/
6988 F:      include/uapi/drm/v3d_drm.h
6989
6990 DRM DRIVERS FOR VC4
6991 M:      Emma Anholt <[email protected]>
6992 M:      Maxime Ripard <[email protected]>
6993 S:      Supported
6994 T:      git git://github.com/anholt/linux
6995 T:      git git://anongit.freedesktop.org/drm/drm-misc
6996 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6997 F:      drivers/gpu/drm/vc4/
6998 F:      include/uapi/drm/vc4_drm.h
6999
7000 DRM DRIVERS FOR VIVANTE GPU IP
7001 M:      Lucas Stach <[email protected]>
7002 R:      Russell King <[email protected]>
7003 R:      Christian Gmeiner <[email protected]>
7004 L:      [email protected] (moderated for non-subscribers)
7005 L:      [email protected]
7006 S:      Maintained
7007 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7008 F:      drivers/gpu/drm/etnaviv/
7009 F:      include/uapi/drm/etnaviv_drm.h
7010
7011 DRM DRIVERS FOR XEN
7012 M:      Oleksandr Andrushchenko <[email protected]>
7013 L:      [email protected]
7014 L:      [email protected] (moderated for non-subscribers)
7015 S:      Supported
7016 T:      git git://anongit.freedesktop.org/drm/drm-misc
7017 F:      Documentation/gpu/xen-front.rst
7018 F:      drivers/gpu/drm/xen/
7019
7020 DRM DRIVERS FOR XILINX
7021 M:      Hyun Kwon <[email protected]>
7022 M:      Laurent Pinchart <[email protected]>
7023 L:      [email protected]
7024 S:      Maintained
7025 T:      git git://anongit.freedesktop.org/drm/drm-misc
7026 F:      Documentation/devicetree/bindings/display/xlnx/
7027 F:      drivers/gpu/drm/xlnx/
7028
7029 DRM PANEL DRIVERS
7030 M:      Thierry Reding <[email protected]>
7031 R:      Sam Ravnborg <[email protected]>
7032 L:      [email protected]
7033 S:      Maintained
7034 T:      git git://anongit.freedesktop.org/drm/drm-misc
7035 F:      Documentation/devicetree/bindings/display/panel/
7036 F:      drivers/gpu/drm/drm_panel.c
7037 F:      drivers/gpu/drm/panel/
7038 F:      include/drm/drm_panel.h
7039
7040 DRM PRIVACY-SCREEN CLASS
7041 M:      Hans de Goede <[email protected]>
7042 L:      [email protected]
7043 S:      Maintained
7044 T:      git git://anongit.freedesktop.org/drm/drm-misc
7045 F:      drivers/gpu/drm/drm_privacy_screen*
7046 F:      include/drm/drm_privacy_screen*
7047
7048 DRM TTM SUBSYSTEM
7049 M:      Christian Koenig <[email protected]>
7050 M:      Huang Rui <[email protected]>
7051 L:      [email protected]
7052 S:      Maintained
7053 T:      git git://anongit.freedesktop.org/drm/drm-misc
7054 F:      drivers/gpu/drm/ttm/
7055 F:      include/drm/ttm/
7056
7057 DRM GPU SCHEDULER
7058 M:      Luben Tuikov <[email protected]>
7059 L:      [email protected]
7060 S:      Maintained
7061 T:      git git://anongit.freedesktop.org/drm/drm-misc
7062 F:      drivers/gpu/drm/scheduler/
7063 F:      include/drm/gpu_scheduler.h
7064
7065 DSBR100 USB FM RADIO DRIVER
7066 M:      Alexey Klimov <[email protected]>
7067 L:      [email protected]
7068 S:      Maintained
7069 T:      git git://linuxtv.org/media_tree.git
7070 F:      drivers/media/radio/dsbr100.c
7071
7072 DT3155 MEDIA DRIVER
7073 M:      Hans Verkuil <[email protected]>
7074 L:      [email protected]
7075 S:      Odd Fixes
7076 W:      https://linuxtv.org
7077 T:      git git://linuxtv.org/media_tree.git
7078 F:      drivers/media/pci/dt3155/
7079
7080 DVB_USB_AF9015 MEDIA DRIVER
7081 M:      Antti Palosaari <[email protected]>
7082 L:      [email protected]
7083 S:      Maintained
7084 W:      https://linuxtv.org
7085 W:      http://palosaari.fi/linux/
7086 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7087 T:      git git://linuxtv.org/anttip/media_tree.git
7088 F:      drivers/media/usb/dvb-usb-v2/af9015*
7089
7090 DVB_USB_AF9035 MEDIA DRIVER
7091 M:      Antti Palosaari <[email protected]>
7092 L:      [email protected]
7093 S:      Maintained
7094 W:      https://linuxtv.org
7095 W:      http://palosaari.fi/linux/
7096 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7097 T:      git git://linuxtv.org/anttip/media_tree.git
7098 F:      drivers/media/usb/dvb-usb-v2/af9035*
7099
7100 DVB_USB_ANYSEE MEDIA DRIVER
7101 M:      Antti Palosaari <[email protected]>
7102 L:      [email protected]
7103 S:      Maintained
7104 W:      https://linuxtv.org
7105 W:      http://palosaari.fi/linux/
7106 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7107 T:      git git://linuxtv.org/anttip/media_tree.git
7108 F:      drivers/media/usb/dvb-usb-v2/anysee*
7109
7110 DVB_USB_AU6610 MEDIA DRIVER
7111 M:      Antti Palosaari <[email protected]>
7112 L:      [email protected]
7113 S:      Maintained
7114 W:      https://linuxtv.org
7115 W:      http://palosaari.fi/linux/
7116 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7117 T:      git git://linuxtv.org/anttip/media_tree.git
7118 F:      drivers/media/usb/dvb-usb-v2/au6610*
7119
7120 DVB_USB_CE6230 MEDIA DRIVER
7121 M:      Antti Palosaari <[email protected]>
7122 L:      [email protected]
7123 S:      Maintained
7124 W:      https://linuxtv.org
7125 W:      http://palosaari.fi/linux/
7126 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7127 T:      git git://linuxtv.org/anttip/media_tree.git
7128 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7129
7130 DVB_USB_CXUSB MEDIA DRIVER
7131 M:      Michael Krufky <[email protected]>
7132 L:      [email protected]
7133 S:      Maintained
7134 W:      https://linuxtv.org
7135 W:      http://github.com/mkrufky
7136 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7137 T:      git git://linuxtv.org/media_tree.git
7138 F:      drivers/media/usb/dvb-usb/cxusb*
7139
7140 DVB_USB_EC168 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/ec168*
7149
7150 DVB_USB_GL861 MEDIA DRIVER
7151 M:      Antti Palosaari <[email protected]>
7152 L:      [email protected]
7153 S:      Maintained
7154 W:      https://linuxtv.org
7155 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7156 T:      git git://linuxtv.org/anttip/media_tree.git
7157 F:      drivers/media/usb/dvb-usb-v2/gl861*
7158
7159 DVB_USB_MXL111SF MEDIA DRIVER
7160 M:      Michael Krufky <[email protected]>
7161 L:      [email protected]
7162 S:      Maintained
7163 W:      https://linuxtv.org
7164 W:      http://github.com/mkrufky
7165 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7166 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7167 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7168
7169 DVB_USB_RTL28XXU MEDIA DRIVER
7170 M:      Antti Palosaari <[email protected]>
7171 L:      [email protected]
7172 S:      Maintained
7173 W:      https://linuxtv.org
7174 W:      http://palosaari.fi/linux/
7175 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7176 T:      git git://linuxtv.org/anttip/media_tree.git
7177 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7178
7179 DVB_USB_V2 MEDIA DRIVER
7180 M:      Antti Palosaari <[email protected]>
7181 L:      [email protected]
7182 S:      Maintained
7183 W:      https://linuxtv.org
7184 W:      http://palosaari.fi/linux/
7185 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7186 T:      git git://linuxtv.org/anttip/media_tree.git
7187 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7188 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7189
7190 DYNAMIC DEBUG
7191 M:      Jason Baron <[email protected]>
7192 S:      Maintained
7193 F:      include/linux/dynamic_debug.h
7194 F:      lib/dynamic_debug.c
7195 M:      Jim Cromie <[email protected]>
7196 F:      lib/test_dynamic_debug.c
7197
7198 DYNAMIC INTERRUPT MODERATION
7199 M:      Tal Gilboa <[email protected]>
7200 S:      Maintained
7201 F:      Documentation/networking/net_dim.rst
7202 F:      include/linux/dim.h
7203 F:      lib/dim/
7204
7205 DZ DECSTATION DZ11 SERIAL DRIVER
7206 M:      "Maciej W. Rozycki" <[email protected]>
7207 S:      Maintained
7208 F:      drivers/tty/serial/dz.*
7209
7210 E3X0 POWER BUTTON DRIVER
7211 M:      Moritz Fischer <[email protected]>
7212 L:      [email protected]
7213 S:      Supported
7214 W:      http://www.ettus.com
7215 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7216 F:      drivers/input/misc/e3x0-button.c
7217
7218 E4000 MEDIA DRIVER
7219 M:      Antti Palosaari <[email protected]>
7220 L:      [email protected]
7221 S:      Maintained
7222 W:      https://linuxtv.org
7223 W:      http://palosaari.fi/linux/
7224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7225 T:      git git://linuxtv.org/anttip/media_tree.git
7226 F:      drivers/media/tuners/e4000*
7227
7228 EARTH_PT1 MEDIA DRIVER
7229 M:      Akihiro Tsukada <[email protected]>
7230 L:      [email protected]
7231 S:      Odd Fixes
7232 F:      drivers/media/pci/pt1/
7233
7234 EARTH_PT3 MEDIA DRIVER
7235 M:      Akihiro Tsukada <[email protected]>
7236 L:      [email protected]
7237 S:      Odd Fixes
7238 F:      drivers/media/pci/pt3/
7239
7240 EC100 MEDIA DRIVER
7241 M:      Antti Palosaari <[email protected]>
7242 L:      [email protected]
7243 S:      Maintained
7244 W:      https://linuxtv.org
7245 W:      http://palosaari.fi/linux/
7246 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7247 T:      git git://linuxtv.org/anttip/media_tree.git
7248 F:      drivers/media/dvb-frontends/ec100*
7249
7250 ECRYPT FILE SYSTEM
7251 M:      Tyler Hicks <[email protected]>
7252 L:      [email protected]
7253 S:      Odd Fixes
7254 W:      http://ecryptfs.org
7255 W:      https://launchpad.net/ecryptfs
7256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7257 F:      Documentation/filesystems/ecryptfs.rst
7258 F:      fs/ecryptfs/
7259
7260 EDAC-AMD64
7261 M:      Yazen Ghannam <[email protected]>
7262 L:      [email protected]
7263 S:      Supported
7264 F:      drivers/edac/amd64_edac*
7265 F:      drivers/edac/mce_amd*
7266
7267 EDAC-ARMADA
7268 M:      Jan Luebbe <[email protected]>
7269 L:      [email protected]
7270 S:      Maintained
7271 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7272 F:      drivers/edac/armada_xp_*
7273
7274 EDAC-AST2500
7275 M:      Stefan Schaeckeler <[email protected]>
7276 S:      Supported
7277 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7278 F:      drivers/edac/aspeed_edac.c
7279
7280 EDAC-BLUEFIELD
7281 M:      Shravan Kumar Ramani <[email protected]>
7282 S:      Supported
7283 F:      drivers/edac/bluefield_edac.c
7284
7285 EDAC-CALXEDA
7286 M:      Andre Przywara <[email protected]>
7287 L:      [email protected]
7288 S:      Maintained
7289 F:      drivers/edac/highbank*
7290
7291 EDAC-CAVIUM OCTEON
7292 M:      Ralf Baechle <[email protected]>
7293 L:      [email protected]
7294 L:      [email protected]
7295 S:      Supported
7296 F:      drivers/edac/octeon_edac*
7297
7298 EDAC-CAVIUM THUNDERX
7299 M:      Robert Richter <[email protected]>
7300 L:      [email protected]
7301 S:      Odd Fixes
7302 F:      drivers/edac/thunderx_edac*
7303
7304 EDAC-CORE
7305 M:      Borislav Petkov <[email protected]>
7306 M:      Tony Luck <[email protected]>
7307 R:      James Morse <[email protected]>
7308 R:      Mauro Carvalho Chehab <[email protected]>
7309 R:      Robert Richter <[email protected]>
7310 L:      [email protected]
7311 S:      Supported
7312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7313 F:      Documentation/admin-guide/ras.rst
7314 F:      Documentation/driver-api/edac.rst
7315 F:      drivers/edac/
7316 F:      include/linux/edac.h
7317
7318 EDAC-DMC520
7319 M:      Lei Wang <[email protected]>
7320 L:      [email protected]
7321 S:      Supported
7322 F:      drivers/edac/dmc520_edac.c
7323
7324 EDAC-E752X
7325 M:      Mark Gross <[email protected]>
7326 L:      [email protected]
7327 S:      Maintained
7328 F:      drivers/edac/e752x_edac.c
7329
7330 EDAC-E7XXX
7331 L:      [email protected]
7332 S:      Maintained
7333 F:      drivers/edac/e7xxx_edac.c
7334
7335 EDAC-FSL_DDR
7336 M:      York Sun <[email protected]>
7337 L:      [email protected]
7338 S:      Maintained
7339 F:      drivers/edac/fsl_ddr_edac.*
7340
7341 EDAC-GHES
7342 M:      Mauro Carvalho Chehab <[email protected]>
7343 L:      [email protected]
7344 S:      Maintained
7345 F:      drivers/edac/ghes_edac.c
7346
7347 EDAC-I10NM
7348 M:      Tony Luck <[email protected]>
7349 L:      [email protected]
7350 S:      Maintained
7351 F:      drivers/edac/i10nm_base.c
7352
7353 EDAC-I3000
7354 L:      [email protected]
7355 S:      Orphan
7356 F:      drivers/edac/i3000_edac.c
7357
7358 EDAC-I5000
7359 L:      [email protected]
7360 S:      Maintained
7361 F:      drivers/edac/i5000_edac.c
7362
7363 EDAC-I5400
7364 M:      Mauro Carvalho Chehab <[email protected]>
7365 L:      [email protected]
7366 S:      Maintained
7367 F:      drivers/edac/i5400_edac.c
7368
7369 EDAC-I7300
7370 M:      Mauro Carvalho Chehab <[email protected]>
7371 L:      [email protected]
7372 S:      Maintained
7373 F:      drivers/edac/i7300_edac.c
7374
7375 EDAC-I7CORE
7376 M:      Mauro Carvalho Chehab <[email protected]>
7377 L:      [email protected]
7378 S:      Maintained
7379 F:      drivers/edac/i7core_edac.c
7380
7381 EDAC-I82443BXGX
7382 M:      Tim Small <[email protected]>
7383 L:      [email protected]
7384 S:      Maintained
7385 F:      drivers/edac/i82443bxgx_edac.c
7386
7387 EDAC-I82975X
7388 M:      "Arvind R." <[email protected]>
7389 L:      [email protected]
7390 S:      Maintained
7391 F:      drivers/edac/i82975x_edac.c
7392
7393 EDAC-IE31200
7394 M:      Jason Baron <[email protected]>
7395 L:      [email protected]
7396 S:      Maintained
7397 F:      drivers/edac/ie31200_edac.c
7398
7399 EDAC-IGEN6
7400 M:      Tony Luck <[email protected]>
7401 R:      Qiuxu Zhuo <[email protected]>
7402 L:      [email protected]
7403 S:      Maintained
7404 F:      drivers/edac/igen6_edac.c
7405
7406 EDAC-MPC85XX
7407 M:      Johannes Thumshirn <[email protected]>
7408 L:      [email protected]
7409 S:      Maintained
7410 F:      drivers/edac/mpc85xx_edac.[ch]
7411
7412 EDAC-PASEMI
7413 M:      Egor Martovetsky <[email protected]>
7414 L:      [email protected]
7415 S:      Maintained
7416 F:      drivers/edac/pasemi_edac.c
7417
7418 EDAC-PND2
7419 M:      Tony Luck <[email protected]>
7420 L:      [email protected]
7421 S:      Maintained
7422 F:      drivers/edac/pnd2_edac.[ch]
7423
7424 EDAC-QCOM
7425 M:      Manivannan Sadhasivam <[email protected]>
7426 L:      [email protected]
7427 L:      [email protected]
7428 S:      Maintained
7429 F:      drivers/edac/qcom_edac.c
7430
7431 EDAC-R82600
7432 M:      Tim Small <[email protected]>
7433 L:      [email protected]
7434 S:      Maintained
7435 F:      drivers/edac/r82600_edac.c
7436
7437 EDAC-SBRIDGE
7438 M:      Tony Luck <[email protected]>
7439 R:      Qiuxu Zhuo <[email protected]>
7440 L:      [email protected]
7441 S:      Maintained
7442 F:      drivers/edac/sb_edac.c
7443
7444 EDAC-SKYLAKE
7445 M:      Tony Luck <[email protected]>
7446 L:      [email protected]
7447 S:      Maintained
7448 F:      drivers/edac/skx_*.[ch]
7449
7450 EDAC-TI
7451 M:      Tero Kristo <[email protected]>
7452 L:      [email protected]
7453 S:      Odd Fixes
7454 F:      drivers/edac/ti_edac.c
7455
7456 EDIROL UA-101/UA-1000 DRIVER
7457 M:      Clemens Ladisch <[email protected]>
7458 L:      [email protected] (moderated for non-subscribers)
7459 S:      Maintained
7460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7461 F:      sound/usb/misc/ua101.c
7462
7463 EFI TEST DRIVER
7464 M:      Ivan Hu <[email protected]>
7465 M:      Ard Biesheuvel <[email protected]>
7466 L:      [email protected]
7467 S:      Maintained
7468 F:      drivers/firmware/efi/test/
7469
7470 EFI VARIABLE FILESYSTEM
7471 M:      Jeremy Kerr <[email protected]>
7472 M:      Ard Biesheuvel <[email protected]>
7473 L:      [email protected]
7474 S:      Maintained
7475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7476 F:      fs/efivarfs/
7477
7478 EFIFB FRAMEBUFFER DRIVER
7479 M:      Peter Jones <[email protected]>
7480 L:      [email protected]
7481 S:      Maintained
7482 F:      drivers/video/fbdev/efifb.c
7483
7484 EFS FILESYSTEM
7485 S:      Orphan
7486 W:      http://aeschi.ch.eu.org/efs/
7487 F:      fs/efs/
7488
7489 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7490 M:      Douglas Miller <[email protected]>
7491 L:      [email protected]
7492 S:      Maintained
7493 F:      drivers/net/ethernet/ibm/ehea/
7494
7495 ELM327 CAN NETWORK DRIVER
7496 M:      Max Staudt <[email protected]>
7497 L:      [email protected]
7498 S:      Maintained
7499 F:      Documentation/networking/device_drivers/can/can327.rst
7500 F:      drivers/net/can/can327.c
7501
7502 EM28XX VIDEO4LINUX DRIVER
7503 M:      Mauro Carvalho Chehab <[email protected]>
7504 L:      [email protected]
7505 S:      Maintained
7506 W:      https://linuxtv.org
7507 T:      git git://linuxtv.org/media_tree.git
7508 F:      Documentation/admin-guide/media/em28xx*
7509 F:      drivers/media/usb/em28xx/
7510
7511 EMBEDDED LINUX
7512 M:      Olivia Mackall <[email protected]>
7513 M:      David Woodhouse <[email protected]>
7514 L:      [email protected]
7515 S:      Maintained
7516
7517 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7518 M:      Adrian Hunter <[email protected]>
7519 M:      Ritesh Harjani <[email protected]>
7520 M:      Asutosh Das <[email protected]>
7521 L:      [email protected]
7522 S:      Supported
7523 F:      drivers/mmc/host/cqhci*
7524
7525 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7526 M:      Ketan Mukadam <[email protected]>
7527 L:      [email protected]
7528 S:      Supported
7529 W:      http://www.broadcom.com
7530 F:      drivers/scsi/be2iscsi/
7531
7532 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7533 M:      Ajit Khaparde <[email protected]>
7534 M:      Sriharsha Basavapatna <[email protected]>
7535 M:      Somnath Kotur <[email protected]>
7536 L:      [email protected]
7537 S:      Supported
7538 W:      http://www.emulex.com
7539 F:      drivers/net/ethernet/emulex/benet/
7540
7541 EMULEX ONECONNECT ROCE DRIVER
7542 M:      Selvin Xavier <[email protected]>
7543 L:      [email protected]
7544 S:      Odd Fixes
7545 W:      http://www.broadcom.com
7546 F:      drivers/infiniband/hw/ocrdma/
7547 F:      include/uapi/rdma/ocrdma-abi.h
7548
7549 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7550 M:      James Smart <[email protected]>
7551 M:      Dick Kennedy <[email protected]>
7552 L:      [email protected]
7553 S:      Supported
7554 W:      http://www.broadcom.com
7555 F:      drivers/scsi/lpfc/
7556
7557 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7558 M:      James Smart <[email protected]>
7559 M:      Ram Vegesna <[email protected]>
7560 L:      [email protected]
7561 L:      [email protected]
7562 S:      Supported
7563 W:      http://www.broadcom.com
7564 F:      drivers/scsi/elx/
7565
7566 ENE CB710 FLASH CARD READER DRIVER
7567 M:      Michał Mirosław <[email protected]>
7568 S:      Maintained
7569 F:      drivers/misc/cb710/
7570 F:      drivers/mmc/host/cb710-mmc.*
7571 F:      include/linux/cb710.h
7572
7573 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7574 M:      Maxim Levitsky <[email protected]>
7575 S:      Maintained
7576 F:      drivers/media/rc/ene_ir.*
7577
7578 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7579 M:      Laurentiu Tudor <[email protected]>
7580 L:      [email protected]
7581 S:      Maintained
7582 F:      drivers/tty/ehv_bytechan.c
7583
7584 EPSON S1D13XXX FRAMEBUFFER DRIVER
7585 M:      Kristoffer Ericson <[email protected]>
7586 S:      Maintained
7587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7588 F:      drivers/video/fbdev/s1d13xxxfb.c
7589 F:      include/video/s1d13xxxfb.h
7590
7591 EROFS FILE SYSTEM
7592 M:      Gao Xiang <[email protected]>
7593 M:      Chao Yu <[email protected]>
7594 R:      Yue Hu <[email protected]>
7595 R:      Jeffle Xu <[email protected]>
7596 L:      [email protected]
7597 S:      Maintained
7598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7599 F:      Documentation/ABI/testing/sysfs-fs-erofs
7600 F:      Documentation/filesystems/erofs.rst
7601 F:      fs/erofs/
7602 F:      include/trace/events/erofs.h
7603
7604 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7605 M:      Jeff Layton <[email protected]>
7606 S:      Maintained
7607 F:      include/linux/errseq.h
7608 F:      lib/errseq.c
7609
7610 ESD CAN/USB DRIVERS
7611 M:      Frank Jungclaus <[email protected]>
7612 R:      [email protected]
7613 L:      [email protected]
7614 S:      Maintained
7615 F:      drivers/net/can/usb/esd_usb.c
7616
7617 ET131X NETWORK DRIVER
7618 M:      Mark Einon <[email protected]>
7619 S:      Odd Fixes
7620 F:      drivers/net/ethernet/agere/
7621
7622 ETAS ES58X CAN/USB DRIVER
7623 M:      Vincent Mailhol <[email protected]>
7624 L:      [email protected]
7625 S:      Maintained
7626 F:      Documentation/networking/devlink/etas_es58x.rst
7627 F:      drivers/net/can/usb/etas_es58x/
7628
7629 ETHERNET BRIDGE
7630 M:      Roopa Prabhu <[email protected]>
7631 M:      Nikolay Aleksandrov <[email protected]>
7632 L:      [email protected] (moderated for non-subscribers)
7633 L:      [email protected]
7634 S:      Maintained
7635 W:      http://www.linuxfoundation.org/en/Net:Bridge
7636 F:      include/linux/netfilter_bridge/
7637 F:      net/bridge/
7638
7639 ETHERNET PHY LIBRARY
7640 M:      Andrew Lunn <[email protected]>
7641 M:      Heiner Kallweit <[email protected]>
7642 R:      Russell King <[email protected]>
7643 L:      [email protected]
7644 S:      Maintained
7645 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7646 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7647 F:      Documentation/devicetree/bindings/net/mdio*
7648 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7649 F:      Documentation/networking/phy.rst
7650 F:      drivers/net/mdio/
7651 F:      drivers/net/mdio/acpi_mdio.c
7652 F:      drivers/net/mdio/fwnode_mdio.c
7653 F:      drivers/net/mdio/of_mdio.c
7654 F:      drivers/net/pcs/
7655 F:      drivers/net/phy/
7656 F:      include/dt-bindings/net/qca-ar803x.h
7657 F:      include/linux/linkmode.h
7658 F:      include/linux/*mdio*.h
7659 F:      include/linux/mdio/*.h
7660 F:      include/linux/mii.h
7661 F:      include/linux/of_net.h
7662 F:      include/linux/phy.h
7663 F:      include/linux/phy_fixed.h
7664 F:      include/linux/platform_data/mdio-bcm-unimac.h
7665 F:      include/linux/platform_data/mdio-gpio.h
7666 F:      include/trace/events/mdio.h
7667 F:      include/uapi/linux/mdio.h
7668 F:      include/uapi/linux/mii.h
7669 F:      net/core/of_net.c
7670
7671 EXEC & BINFMT API
7672 R:      Eric Biederman <[email protected]>
7673 R:      Kees Cook <[email protected]>
7674 L:      [email protected]
7675 S:      Supported
7676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7677 F:      fs/*binfmt_*.c
7678 F:      fs/exec.c
7679 F:      include/linux/binfmts.h
7680 F:      include/linux/elf.h
7681 F:      include/uapi/linux/binfmts.h
7682 F:      include/uapi/linux/elf.h
7683 F:      tools/testing/selftests/exec/
7684 N:      asm/elf.h
7685 N:      binfmt
7686
7687 EXFAT FILE SYSTEM
7688 M:      Namjae Jeon <[email protected]>
7689 M:      Sungjong Seo <[email protected]>
7690 L:      [email protected]
7691 S:      Maintained
7692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7693 F:      fs/exfat/
7694
7695 EXT2 FILE SYSTEM
7696 M:      Jan Kara <[email protected]>
7697 L:      [email protected]
7698 S:      Maintained
7699 F:      Documentation/filesystems/ext2.rst
7700 F:      fs/ext2/
7701 F:      include/linux/ext2*
7702
7703 EXT4 FILE SYSTEM
7704 M:      "Theodore Ts'o" <[email protected]>
7705 M:      Andreas Dilger <[email protected]>
7706 L:      [email protected]
7707 S:      Maintained
7708 W:      http://ext4.wiki.kernel.org
7709 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7711 F:      Documentation/filesystems/ext4/
7712 F:      fs/ext4/
7713 F:      include/trace/events/ext4.h
7714
7715 Extended Verification Module (EVM)
7716 M:      Mimi Zohar <[email protected]>
7717 L:      [email protected]
7718 S:      Supported
7719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7720 F:      security/integrity/evm/
7721 F:      security/integrity/
7722
7723 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7724 M:      Ard Biesheuvel <[email protected]>
7725 L:      [email protected]
7726 S:      Maintained
7727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7728 F:      Documentation/admin-guide/efi-stub.rst
7729 F:      arch/*/include/asm/efi.h
7730 F:      arch/*/kernel/efi.c
7731 F:      arch/arm/boot/compressed/efi-header.S
7732 F:      arch/x86/platform/efi/
7733 F:      drivers/firmware/efi/
7734 F:      include/linux/efi*.h
7735
7736 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7737 M:      MyungJoo Ham <[email protected]>
7738 M:      Chanwoo Choi <[email protected]>
7739 L:      [email protected]
7740 S:      Maintained
7741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7742 F:      Documentation/devicetree/bindings/extcon/
7743 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7744 F:      drivers/extcon/
7745 F:      include/linux/extcon.h
7746 F:      include/linux/extcon/
7747
7748 EXTRA BOOT CONFIG
7749 M:      Masami Hiramatsu <[email protected]>
7750 L:      [email protected]
7751 L:      [email protected]
7752 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
7753 S:      Maintained
7754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
7755 F:      Documentation/admin-guide/bootconfig.rst
7756 F:      fs/proc/bootconfig.c
7757 F:      include/linux/bootconfig.h
7758 F:      lib/bootconfig-data.S
7759 F:      lib/bootconfig.c
7760 F:      tools/bootconfig/*
7761 F:      tools/bootconfig/scripts/*
7762
7763 EXYNOS DP DRIVER
7764 M:      Jingoo Han <[email protected]>
7765 L:      [email protected]
7766 S:      Maintained
7767 F:      drivers/gpu/drm/exynos/exynos_dp*
7768
7769 EXYNOS SYSMMU (IOMMU) driver
7770 M:      Marek Szyprowski <[email protected]>
7771 L:      [email protected]
7772 S:      Maintained
7773 F:      drivers/iommu/exynos-iommu.c
7774
7775 F2FS FILE SYSTEM
7776 M:      Jaegeuk Kim <[email protected]>
7777 M:      Chao Yu <[email protected]>
7778 L:      [email protected]
7779 S:      Maintained
7780 W:      https://f2fs.wiki.kernel.org/
7781 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=f2fs
7782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7783 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7784 F:      Documentation/filesystems/f2fs.rst
7785 F:      fs/f2fs/
7786 F:      include/linux/f2fs_fs.h
7787 F:      include/trace/events/f2fs.h
7788 F:      include/uapi/linux/f2fs.h
7789
7790 F71805F HARDWARE MONITORING DRIVER
7791 M:      Jean Delvare <[email protected]>
7792 L:      [email protected]
7793 S:      Maintained
7794 F:      Documentation/hwmon/f71805f.rst
7795 F:      drivers/hwmon/f71805f.c
7796
7797 FADDR2LINE
7798 M:      Josh Poimboeuf <[email protected]>
7799 S:      Maintained
7800 F:      scripts/faddr2line
7801
7802 FAILOVER MODULE
7803 M:      Sridhar Samudrala <[email protected]>
7804 L:      [email protected]
7805 S:      Supported
7806 F:      Documentation/networking/failover.rst
7807 F:      include/net/failover.h
7808 F:      net/core/failover.c
7809
7810 FANOTIFY
7811 M:      Jan Kara <[email protected]>
7812 R:      Amir Goldstein <[email protected]>
7813 R:      Matthew Bobrowski <[email protected]>
7814 L:      [email protected]
7815 S:      Maintained
7816 F:      fs/notify/fanotify/
7817 F:      include/linux/fanotify.h
7818 F:      include/uapi/linux/fanotify.h
7819
7820 FARADAY FOTG210 USB2 DUAL-ROLE CONTROLLER
7821 M:      Linus Walleij <[email protected]>
7822 L:      [email protected]
7823 S:      Maintained
7824 F:      drivers/usb/fotg210/
7825
7826 FARSYNC SYNCHRONOUS DRIVER
7827 M:      Kevin Curtis <[email protected]>
7828 S:      Supported
7829 W:      http://www.farsite.co.uk/
7830 F:      drivers/net/wan/farsync.*
7831
7832 FAULT INJECTION SUPPORT
7833 M:      Akinobu Mita <[email protected]>
7834 S:      Supported
7835 F:      Documentation/fault-injection/
7836 F:      lib/fault-inject.c
7837
7838 FBTFT Framebuffer drivers
7839 L:      [email protected]
7840 L:      [email protected]
7841 S:      Orphan
7842 F:      drivers/staging/fbtft/
7843
7844 FC0011 TUNER DRIVER
7845 M:      Michael Buesch <[email protected]>
7846 L:      [email protected]
7847 S:      Maintained
7848 F:      drivers/media/tuners/fc0011.c
7849 F:      drivers/media/tuners/fc0011.h
7850
7851 FC2580 MEDIA DRIVER
7852 M:      Antti Palosaari <[email protected]>
7853 L:      [email protected]
7854 S:      Maintained
7855 W:      https://linuxtv.org
7856 W:      http://palosaari.fi/linux/
7857 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7858 T:      git git://linuxtv.org/anttip/media_tree.git
7859 F:      drivers/media/tuners/fc2580*
7860
7861 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7862 M:      Hannes Reinecke <[email protected]>
7863 L:      [email protected]
7864 S:      Supported
7865 W:      www.Open-FCoE.org
7866 F:      drivers/scsi/fcoe/
7867 F:      drivers/scsi/libfc/
7868 F:      include/scsi/fc/
7869 F:      include/scsi/libfc.h
7870 F:      include/scsi/libfcoe.h
7871 F:      include/uapi/scsi/fc/
7872
7873 FILE LOCKING (flock() and fcntl()/lockf())
7874 M:      Jeff Layton <[email protected]>
7875 M:      Chuck Lever <[email protected]>
7876 L:      [email protected]
7877 S:      Maintained
7878 F:      fs/fcntl.c
7879 F:      fs/locks.c
7880 F:      include/linux/fcntl.h
7881 F:      include/uapi/linux/fcntl.h
7882
7883 FILESYSTEM DIRECT ACCESS (DAX)
7884 M:      Dan Williams <[email protected]>
7885 R:      Matthew Wilcox <[email protected]>
7886 R:      Jan Kara <[email protected]>
7887 L:      [email protected]
7888 L:      [email protected]
7889 S:      Supported
7890 F:      fs/dax.c
7891 F:      include/linux/dax.h
7892 F:      include/trace/events/fs_dax.h
7893
7894 FILESYSTEMS (VFS and infrastructure)
7895 M:      Alexander Viro <[email protected]>
7896 L:      [email protected]
7897 S:      Maintained
7898 F:      fs/*
7899 F:      include/linux/fs.h
7900 F:      include/linux/fs_types.h
7901 F:      include/uapi/linux/fs.h
7902 F:      include/uapi/linux/openat2.h
7903
7904 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7905 M:      Riku Voipio <[email protected]>
7906 L:      [email protected]
7907 S:      Maintained
7908 F:      drivers/hwmon/f75375s.c
7909 F:      include/linux/f75375s.h
7910
7911 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7912 M:      Clemens Ladisch <[email protected]>
7913 M:      Takashi Sakamoto <[email protected]>
7914 L:      [email protected] (moderated for non-subscribers)
7915 S:      Maintained
7916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7917 F:      include/uapi/sound/firewire.h
7918 F:      sound/firewire/
7919
7920 FIREWIRE MEDIA DRIVERS (firedtv)
7921 M:      Stefan Richter <[email protected]>
7922 L:      [email protected]
7923 L:      [email protected]
7924 S:      Maintained
7925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7926 F:      drivers/media/firewire/
7927
7928 FIREWIRE SBP-2 TARGET
7929 M:      Chris Boot <[email protected]>
7930 L:      [email protected]
7931 L:      [email protected]
7932 L:      [email protected]
7933 S:      Maintained
7934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7935 F:      drivers/target/sbp/
7936
7937 FIREWIRE SUBSYSTEM
7938 M:      Stefan Richter <[email protected]>
7939 L:      [email protected]
7940 S:      Maintained
7941 W:      http://ieee1394.wiki.kernel.org/
7942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7943 F:      drivers/firewire/
7944 F:      include/linux/firewire.h
7945 F:      include/uapi/linux/firewire*.h
7946 F:      tools/firewire/
7947
7948 FIRMWARE FRAMEWORK FOR ARMV8-A
7949 M:      Sudeep Holla <[email protected]>
7950 L:      [email protected] (moderated for non-subscribers)
7951 S:      Maintained
7952 F:      drivers/firmware/arm_ffa/
7953 F:      include/linux/arm_ffa.h
7954
7955 FIRMWARE LOADER (request_firmware)
7956 M:      Luis Chamberlain <[email protected]>
7957 M:      Russ Weight <[email protected]>
7958 L:      [email protected]
7959 S:      Maintained
7960 F:      Documentation/firmware_class/
7961 F:      drivers/base/firmware_loader/
7962 F:      include/linux/firmware.h
7963
7964 FLEXTIMER FTM-QUADDEC DRIVER
7965 M:      Patrick Havelange <[email protected]>
7966 L:      [email protected]
7967 S:      Maintained
7968 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7969 F:      drivers/counter/ftm-quaddec.c
7970
7971 FLOPPY DRIVER
7972 M:      Denis Efremov <[email protected]>
7973 L:      [email protected]
7974 S:      Odd Fixes
7975 F:      drivers/block/floppy.c
7976
7977 FLYSKY FSIA6B RC RECEIVER
7978 M:      Markus Koch <[email protected]>
7979 L:      [email protected]
7980 S:      Maintained
7981 F:      drivers/input/joystick/fsia6b.c
7982
7983 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7984 M:      Geoffrey D. Bennett <[email protected]>
7985 L:      [email protected] (moderated for non-subscribers)
7986 S:      Maintained
7987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7988 F:      sound/usb/mixer_scarlett_gen2.c
7989
7990 FORCEDETH GIGABIT ETHERNET DRIVER
7991 M:      Rain River <[email protected]>
7992 M:      Zhu Yanjun <[email protected]>
7993 L:      [email protected]
7994 S:      Maintained
7995 F:      drivers/net/ethernet/nvidia/*
7996
7997 FORTIFY_SOURCE
7998 M:      Kees Cook <[email protected]>
7999 L:      [email protected]
8000 S:      Supported
8001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8002 F:      include/linux/fortify-string.h
8003 F:      lib/fortify_kunit.c
8004 F:      lib/memcpy_kunit.c
8005 F:      lib/strscpy_kunit.c
8006 F:      lib/test_fortify/*
8007 F:      scripts/test_fortify.sh
8008 K:      \b__NO_FORTIFY\b
8009
8010 FPGA DFL DRIVERS
8011 M:      Wu Hao <[email protected]>
8012 R:      Tom Rix <[email protected]>
8013 L:      [email protected]
8014 S:      Maintained
8015 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8016 F:      Documentation/fpga/dfl.rst
8017 F:      drivers/fpga/dfl*
8018 F:      drivers/uio/uio_dfl.c
8019 F:      include/linux/dfl.h
8020 F:      include/uapi/linux/fpga-dfl.h
8021
8022 FPGA MANAGER FRAMEWORK
8023 M:      Moritz Fischer <[email protected]>
8024 M:      Wu Hao <[email protected]>
8025 M:      Xu Yilun <[email protected]>
8026 R:      Tom Rix <[email protected]>
8027 L:      [email protected]
8028 S:      Maintained
8029 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8031 F:      Documentation/devicetree/bindings/fpga/
8032 F:      Documentation/driver-api/fpga/
8033 F:      Documentation/fpga/
8034 F:      drivers/fpga/
8035 F:      include/linux/fpga/
8036
8037 INTEL MAX10 BMC SECURE UPDATES
8038 M:      Russ Weight <[email protected]>
8039 L:      [email protected]
8040 S:      Maintained
8041 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8042 F:      drivers/fpga/intel-m10-bmc-sec-update.c
8043
8044 MICROCHIP POLARFIRE FPGA DRIVERS
8045 M:      Conor Dooley <[email protected]>
8046 R:      Ivan Bornyakov <[email protected]>
8047 L:      [email protected]
8048 S:      Supported
8049 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8050 F:      drivers/fpga/microchip-spi.c
8051
8052 FPU EMULATOR
8053 M:      Bill Metzenthen <[email protected]>
8054 S:      Maintained
8055 W:      https://floatingpoint.billm.au/
8056 F:      arch/x86/math-emu/
8057
8058 FRAMEBUFFER CORE
8059 M:      Daniel Vetter <[email protected]>
8060 F:      drivers/video/fbdev/core/
8061 S:      Odd Fixes
8062 T:      git git://anongit.freedesktop.org/drm/drm-misc
8063
8064 FRAMEBUFFER LAYER
8065 M:      Helge Deller <[email protected]>
8066 L:      [email protected]
8067 L:      [email protected]
8068 S:      Maintained
8069 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8071 F:      Documentation/fb/
8072 F:      drivers/video/
8073 F:      include/linux/fb.h
8074 F:      include/uapi/linux/fb.h
8075 F:      include/uapi/video/
8076 F:      include/video/
8077
8078 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8079 M:      Horia Geantă <[email protected]>
8080 M:      Pankaj Gupta <[email protected]>
8081 M:      Gaurav Jain <[email protected]>
8082 L:      [email protected]
8083 S:      Maintained
8084 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
8085 F:      drivers/crypto/caam/
8086
8087 FREESCALE COLDFIRE M5441X MMC DRIVER
8088 M:      Angelo Dureghello <[email protected]>
8089 L:      [email protected]
8090 S:      Maintained
8091 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8092 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8093
8094 FREESCALE DIU FRAMEBUFFER DRIVER
8095 M:      Timur Tabi <[email protected]>
8096 L:      [email protected]
8097 S:      Maintained
8098 F:      drivers/video/fbdev/fsl-diu-fb.*
8099
8100 FREESCALE DMA DRIVER
8101 M:      Li Yang <[email protected]>
8102 M:      Zhang Wei <[email protected]>
8103 L:      [email protected]
8104 S:      Maintained
8105 F:      drivers/dma/fsldma.*
8106
8107 FREESCALE DSPI DRIVER
8108 M:      Vladimir Oltean <[email protected]>
8109 L:      [email protected]
8110 S:      Maintained
8111 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8112 F:      drivers/spi/spi-fsl-dspi.c
8113 F:      include/linux/spi/spi-fsl-dspi.h
8114
8115 FREESCALE ENETC ETHERNET DRIVERS
8116 M:      Claudiu Manoil <[email protected]>
8117 L:      [email protected]
8118 S:      Maintained
8119 F:      drivers/net/ethernet/freescale/enetc/
8120
8121 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8122 M:      Claudiu Manoil <[email protected]>
8123 L:      [email protected]
8124 S:      Maintained
8125 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8126 F:      drivers/net/ethernet/freescale/gianfar*
8127
8128 FREESCALE GPMI NAND DRIVER
8129 M:      Han Xu <[email protected]>
8130 L:      [email protected]
8131 S:      Maintained
8132 F:      drivers/mtd/nand/raw/gpmi-nand/*
8133
8134 FREESCALE I2C CPM DRIVER
8135 M:      Jochen Friedrich <[email protected]>
8136 L:      [email protected]
8137 L:      [email protected]
8138 S:      Maintained
8139 F:      drivers/i2c/busses/i2c-cpm.c
8140
8141 FREESCALE IMX / MXC FEC DRIVER
8142 M:      Wei Fang <[email protected]>
8143 R:      Shenwei Wang <[email protected]>
8144 R:      Clark Wang <[email protected]>
8145 R:      NXP Linux Team <[email protected]>
8146 L:      [email protected]
8147 S:      Maintained
8148 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8149 F:      drivers/net/ethernet/freescale/fec.h
8150 F:      drivers/net/ethernet/freescale/fec_main.c
8151 F:      drivers/net/ethernet/freescale/fec_ptp.c
8152
8153 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8154 M:      Sascha Hauer <[email protected]>
8155 R:      Pengutronix Kernel Team <[email protected]>
8156 L:      [email protected]
8157 L:      [email protected] (moderated for non-subscribers)
8158 S:      Maintained
8159 F:      drivers/video/fbdev/imxfb.c
8160
8161 FREESCALE IMX DDR PMU DRIVER
8162 M:      Frank Li <[email protected]>
8163 L:      [email protected] (moderated for non-subscribers)
8164 S:      Maintained
8165 F:      Documentation/admin-guide/perf/imx-ddr.rst
8166 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8167 F:      drivers/perf/fsl_imx8_ddr_perf.c
8168
8169 FREESCALE IMX I2C DRIVER
8170 M:      Oleksij Rempel <[email protected]>
8171 R:      Pengutronix Kernel Team <[email protected]>
8172 L:      [email protected]
8173 S:      Maintained
8174 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8175 F:      drivers/i2c/busses/i2c-imx.c
8176
8177 FREESCALE IMX LPI2C DRIVER
8178 M:      Dong Aisheng <[email protected]>
8179 L:      [email protected]
8180 L:      [email protected]
8181 S:      Maintained
8182 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8183 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8184
8185 FREESCALE MPC I2C DRIVER
8186 M:      Chris Packham <[email protected]>
8187 L:      [email protected]
8188 S:      Maintained
8189 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8190 F:      drivers/i2c/busses/i2c-mpc.c
8191
8192 FREESCALE QORIQ DPAA ETHERNET DRIVER
8193 M:      Madalin Bucur <[email protected]>
8194 L:      [email protected]
8195 S:      Maintained
8196 F:      drivers/net/ethernet/freescale/dpaa
8197
8198 FREESCALE QORIQ DPAA FMAN DRIVER
8199 M:      Madalin Bucur <[email protected]>
8200 L:      [email protected]
8201 S:      Maintained
8202 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8203 F:      drivers/net/ethernet/freescale/fman
8204
8205 FREESCALE QORIQ PTP CLOCK DRIVER
8206 M:      Yangbo Lu <[email protected]>
8207 L:      [email protected]
8208 S:      Maintained
8209 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8210 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8211 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8212 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8213 F:      drivers/ptp/ptp_qoriq.c
8214 F:      drivers/ptp/ptp_qoriq_debugfs.c
8215 F:      include/linux/fsl/ptp_qoriq.h
8216
8217 FREESCALE QUAD SPI DRIVER
8218 M:      Han Xu <[email protected]>
8219 L:      [email protected]
8220 S:      Maintained
8221 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8222 F:      drivers/spi/spi-fsl-qspi.c
8223
8224 FREESCALE QUICC ENGINE LIBRARY
8225 M:      Qiang Zhao <[email protected]>
8226 L:      [email protected]
8227 S:      Maintained
8228 F:      drivers/soc/fsl/qe/
8229 F:      include/soc/fsl/qe/
8230
8231 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8232 M:      Li Yang <[email protected]>
8233 L:      [email protected]
8234 L:      [email protected]
8235 S:      Maintained
8236 F:      drivers/net/ethernet/freescale/ucc_geth*
8237
8238 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8239 M:      Zhao Qiang <[email protected]>
8240 L:      [email protected]
8241 L:      [email protected]
8242 S:      Maintained
8243 F:      drivers/net/wan/fsl_ucc_hdlc*
8244
8245 FREESCALE QUICC ENGINE UCC UART DRIVER
8246 M:      Timur Tabi <[email protected]>
8247 L:      [email protected]
8248 S:      Maintained
8249 F:      drivers/tty/serial/ucc_uart.c
8250
8251 FREESCALE SOC DRIVERS
8252 M:      Li Yang <[email protected]>
8253 L:      [email protected]
8254 L:      [email protected] (moderated for non-subscribers)
8255 S:      Maintained
8256 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8257 F:      Documentation/devicetree/bindings/soc/fsl/
8258 F:      drivers/soc/fsl/
8259 F:      include/linux/fsl/
8260 F:      include/soc/fsl/
8261
8262 FREESCALE SOC FS_ENET DRIVER
8263 M:      Pantelis Antoniou <[email protected]>
8264 L:      [email protected]
8265 L:      [email protected]
8266 S:      Maintained
8267 F:      drivers/net/ethernet/freescale/fs_enet/
8268 F:      include/linux/fs_enet_pd.h
8269
8270 FREESCALE SOC SOUND DRIVERS
8271 M:      Shengjiu Wang <[email protected]>
8272 M:      Xiubo Li <[email protected]>
8273 R:      Fabio Estevam <[email protected]>
8274 R:      Nicolin Chen <[email protected]>
8275 L:      [email protected] (moderated for non-subscribers)
8276 L:      [email protected]
8277 S:      Maintained
8278 F:      sound/soc/fsl/fsl*
8279 F:      sound/soc/fsl/imx*
8280 F:      sound/soc/fsl/mpc8610_hpcd.c
8281
8282 FREESCALE USB PERIPHERAL DRIVERS
8283 M:      Li Yang <[email protected]>
8284 L:      [email protected]
8285 L:      [email protected]
8286 S:      Maintained
8287 F:      drivers/usb/gadget/udc/fsl*
8288
8289 FREESCALE USB PHY DRIVER
8290 M:      Ran Wang <[email protected]>
8291 L:      [email protected]
8292 L:      [email protected]
8293 S:      Maintained
8294 F:      drivers/usb/phy/phy-fsl-usb*
8295
8296 FREEVXFS FILESYSTEM
8297 M:      Christoph Hellwig <[email protected]>
8298 S:      Maintained
8299 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8300 F:      fs/freevxfs/
8301
8302 FREEZER
8303 M:      "Rafael J. Wysocki" <[email protected]>
8304 M:      Pavel Machek <[email protected]>
8305 L:      [email protected]
8306 S:      Supported
8307 F:      Documentation/power/freezing-of-tasks.rst
8308 F:      include/linux/freezer.h
8309 F:      kernel/freezer.c
8310
8311 FRONTSWAP API
8312 M:      Konrad Rzeszutek Wilk <[email protected]>
8313 L:      [email protected]
8314 S:      Maintained
8315 F:      include/linux/frontswap.h
8316 F:      mm/frontswap.c
8317
8318 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8319 M:      David Howells <[email protected]>
8320 L:      [email protected] (moderated for non-subscribers)
8321 S:      Supported
8322 F:      Documentation/filesystems/caching/
8323 F:      fs/fscache/
8324 F:      include/linux/fscache*.h
8325
8326 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8327 M:      Eric Biggers <[email protected]>
8328 M:      Theodore Y. Ts'o <[email protected]>
8329 M:      Jaegeuk Kim <[email protected]>
8330 L:      [email protected]
8331 S:      Supported
8332 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8333 T:      git https://git.kernel.org/pub/scm/fs/fscrypt/linux.git
8334 F:      Documentation/filesystems/fscrypt.rst
8335 F:      fs/crypto/
8336 F:      include/linux/fscrypt.h
8337 F:      include/uapi/linux/fscrypt.h
8338
8339 FSI SUBSYSTEM
8340 M:      Jeremy Kerr <[email protected]>
8341 M:      Joel Stanley <[email protected]>
8342 R:      Alistar Popple <[email protected]>
8343 R:      Eddie James <[email protected]>
8344 L:      [email protected]
8345 S:      Supported
8346 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8348 F:      drivers/fsi/
8349 F:      include/linux/fsi*.h
8350 F:      include/trace/events/fsi*.h
8351
8352 FSI-ATTACHED I2C DRIVER
8353 M:      Eddie James <[email protected]>
8354 L:      [email protected]
8355 L:      [email protected] (moderated for non-subscribers)
8356 S:      Maintained
8357 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8358 F:      drivers/i2c/busses/i2c-fsi.c
8359
8360 FSI-ATTACHED SPI DRIVER
8361 M:      Eddie James <[email protected]>
8362 L:      [email protected]
8363 S:      Maintained
8364 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8365 F:      drivers/spi/spi-fsi.c
8366
8367 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8368 M:      Jan Kara <[email protected]>
8369 R:      Amir Goldstein <[email protected]>
8370 L:      [email protected]
8371 S:      Maintained
8372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8373 F:      fs/notify/
8374 F:      include/linux/fsnotify*.h
8375
8376 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8377 M:      Eric Biggers <[email protected]>
8378 M:      Theodore Y. Ts'o <[email protected]>
8379 L:      [email protected]
8380 S:      Supported
8381 Q:      https://patchwork.kernel.org/project/fsverity/list/
8382 T:      git https://git.kernel.org/pub/scm/fs/fsverity/linux.git
8383 F:      Documentation/filesystems/fsverity.rst
8384 F:      fs/verity/
8385 F:      include/linux/fsverity.h
8386 F:      include/uapi/linux/fsverity.h
8387
8388 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8389 M:      Michael Zaidman <[email protected]>
8390 L:      [email protected]
8391 L:      [email protected]
8392 S:      Maintained
8393 F:      drivers/hid/hid-ft260.c
8394
8395 FUJITSU LAPTOP EXTRAS
8396 M:      Jonathan Woithe <[email protected]>
8397 L:      [email protected]
8398 S:      Maintained
8399 F:      drivers/platform/x86/fujitsu-laptop.c
8400
8401 FUJITSU M-5MO LS CAMERA ISP DRIVER
8402 M:      Kyungmin Park <[email protected]>
8403 M:      Heungjun Kim <[email protected]>
8404 L:      [email protected]
8405 S:      Maintained
8406 F:      drivers/media/i2c/m5mols/
8407 F:      include/media/i2c/m5mols.h
8408
8409 FUJITSU TABLET EXTRAS
8410 M:      Robert Gerlach <[email protected]>
8411 L:      [email protected]
8412 S:      Maintained
8413 F:      drivers/platform/x86/fujitsu-tablet.c
8414
8415 FUNCTION HOOKS (FTRACE)
8416 M:      Steven Rostedt <[email protected]>
8417 M:      Masami Hiramatsu <[email protected]>
8418 R:      Mark Rutland <[email protected]>
8419 L:      [email protected]
8420 L:      [email protected]
8421 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
8422 S:      Maintained
8423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
8424 F:      Documentation/trace/ftrace*
8425 F:      kernel/trace/ftrace*
8426 F:      kernel/trace/fgraph.c
8427 F:      arch/*/*/*/*ftrace*
8428 F:      arch/*/*/*ftrace*
8429 F:      include/*/ftrace.h
8430 F:      samples/ftrace
8431
8432 FUNGIBLE ETHERNET DRIVERS
8433 M:      Dimitris Michailidis <[email protected]>
8434 L:      [email protected]
8435 S:      Supported
8436 F:      drivers/net/ethernet/fungible/
8437
8438 FUSE: FILESYSTEM IN USERSPACE
8439 M:      Miklos Szeredi <[email protected]>
8440 L:      [email protected]
8441 S:      Maintained
8442 W:      https://github.com/libfuse/
8443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8444 F:      Documentation/filesystems/fuse.rst
8445 F:      fs/fuse/
8446 F:      include/uapi/linux/fuse.h
8447
8448 FUTEX SUBSYSTEM
8449 M:      Thomas Gleixner <[email protected]>
8450 M:      Ingo Molnar <[email protected]>
8451 R:      Peter Zijlstra <[email protected]>
8452 R:      Darren Hart <[email protected]>
8453 R:      Davidlohr Bueso <[email protected]>
8454 R:      André Almeida <[email protected]>
8455 L:      [email protected]
8456 S:      Maintained
8457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8458 F:      Documentation/locking/*futex*
8459 F:      include/asm-generic/futex.h
8460 F:      include/linux/futex.h
8461 F:      include/uapi/linux/futex.h
8462 F:      kernel/futex/*
8463 F:      tools/perf/bench/futex*
8464 F:      tools/testing/selftests/futex/
8465
8466 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8467 M:      Tim Harvey <[email protected]>
8468 S:      Maintained
8469 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8470 F:      drivers/mfd/gateworks-gsc.c
8471 F:      include/linux/mfd/gsc.h
8472 F:      Documentation/hwmon/gsc-hwmon.rst
8473 F:      drivers/hwmon/gsc-hwmon.c
8474 F:      include/linux/platform_data/gsc_hwmon.h
8475
8476 GCC PLUGINS
8477 M:      Kees Cook <[email protected]>
8478 L:      [email protected]
8479 S:      Maintained
8480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8481 F:      Documentation/kbuild/gcc-plugins.rst
8482 F:      scripts/Makefile.gcc-plugins
8483 F:      scripts/gcc-plugins/
8484
8485 GCOV BASED KERNEL PROFILING
8486 M:      Peter Oberparleiter <[email protected]>
8487 S:      Maintained
8488 F:      Documentation/dev-tools/gcov.rst
8489 F:      kernel/gcov/
8490
8491 GDB KERNEL DEBUGGING HELPER SCRIPTS
8492 M:      Jan Kiszka <[email protected]>
8493 M:      Kieran Bingham <[email protected]>
8494 S:      Supported
8495 F:      scripts/gdb/
8496
8497 GEMINI CRYPTO DRIVER
8498 M:      Corentin Labbe <[email protected]>
8499 L:      [email protected]
8500 S:      Maintained
8501 F:      drivers/crypto/gemini/
8502
8503 GEMTEK FM RADIO RECEIVER DRIVER
8504 M:      Hans Verkuil <[email protected]>
8505 L:      [email protected]
8506 S:      Maintained
8507 W:      https://linuxtv.org
8508 T:      git git://linuxtv.org/media_tree.git
8509 F:      drivers/media/radio/radio-gemtek*
8510
8511 GENERIC ARCHITECTURE TOPOLOGY
8512 M:      Sudeep Holla <[email protected]>
8513 L:      [email protected]
8514 S:      Maintained
8515 F:      drivers/base/arch_topology.c
8516 F:      include/linux/arch_topology.h
8517
8518 GENERIC ENTRY CODE
8519 M:      Thomas Gleixner <[email protected]>
8520 M:      Peter Zijlstra <[email protected]>
8521 M:      Andy Lutomirski <[email protected]>
8522 L:      [email protected]
8523 S:      Maintained
8524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8525 F:      include/linux/entry-common.h
8526 F:      include/linux/entry-kvm.h
8527 F:      kernel/entry/
8528
8529 GENERIC GPIO I2C DRIVER
8530 M:      Wolfram Sang <[email protected]>
8531 S:      Supported
8532 F:      drivers/i2c/busses/i2c-gpio.c
8533 F:      include/linux/platform_data/i2c-gpio.h
8534
8535 GENERIC GPIO I2C MULTIPLEXER DRIVER
8536 M:      Peter Korsgaard <[email protected]>
8537 L:      [email protected]
8538 S:      Supported
8539 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8540 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8541 F:      include/linux/platform_data/i2c-mux-gpio.h
8542
8543 GENERIC HDLC (WAN) DRIVERS
8544 M:      Krzysztof Halasa <[email protected]>
8545 S:      Maintained
8546 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8547 F:      drivers/net/wan/c101.c
8548 F:      drivers/net/wan/hd6457*
8549 F:      drivers/net/wan/hdlc*
8550 F:      drivers/net/wan/n2.c
8551 F:      drivers/net/wan/pc300too.c
8552 F:      drivers/net/wan/pci200syn.c
8553 F:      drivers/net/wan/wanxl*
8554
8555 GENERIC INCLUDE/ASM HEADER FILES
8556 M:      Arnd Bergmann <[email protected]>
8557 L:      [email protected]
8558 S:      Maintained
8559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8560 F:      include/asm-generic/
8561 F:      include/uapi/asm-generic/
8562
8563 GENERIC PHY FRAMEWORK
8564 M:      Vinod Koul <[email protected]>
8565 M:      Kishon Vijay Abraham I <[email protected]>
8566 L:      [email protected]
8567 S:      Supported
8568 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8570 F:      Documentation/devicetree/bindings/phy/
8571 F:      drivers/phy/
8572 F:      include/dt-bindings/phy/
8573 F:      include/linux/phy/
8574
8575 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8576 M:      Wolfram Sang <[email protected]>
8577 S:      Supported
8578 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8579
8580 GENERIC PM DOMAINS
8581 M:      "Rafael J. Wysocki" <[email protected]>
8582 M:      Kevin Hilman <[email protected]>
8583 M:      Ulf Hansson <[email protected]>
8584 L:      [email protected]
8585 S:      Supported
8586 F:      Documentation/devicetree/bindings/power/power?domain*
8587 F:      drivers/base/power/domain*.c
8588 F:      include/linux/pm_domain.h
8589
8590 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8591 M:      Eugen Hristev <[email protected]>
8592 L:      [email protected]
8593 S:      Maintained
8594 F:      drivers/input/touchscreen/resistive-adc-touch.c
8595
8596 GENERIC STRING LIBRARY
8597 R:      Andy Shevchenko <[email protected]>
8598 S:      Maintained
8599 F:      lib/string.c
8600 F:      lib/string_helpers.c
8601 F:      lib/test_string.c
8602 F:      lib/test-string_helpers.c
8603
8604 GENERIC UIO DRIVER FOR PCI DEVICES
8605 M:      "Michael S. Tsirkin" <[email protected]>
8606 L:      [email protected]
8607 S:      Supported
8608 F:      drivers/uio/uio_pci_generic.c
8609
8610 GENERIC VDSO LIBRARY
8611 M:      Andy Lutomirski <[email protected]>
8612 M:      Thomas Gleixner <[email protected]>
8613 M:      Vincenzo Frascino <[email protected]>
8614 L:      [email protected]
8615 S:      Maintained
8616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8617 F:      include/asm-generic/vdso/vsyscall.h
8618 F:      include/vdso/
8619 F:      kernel/time/vsyscall.c
8620 F:      lib/vdso/
8621
8622 GENWQE (IBM Generic Workqueue Card)
8623 M:      Frank Haverkamp <[email protected]>
8624 S:      Supported
8625 F:      drivers/misc/genwqe/
8626
8627 GET_MAINTAINER SCRIPT
8628 M:      Joe Perches <[email protected]>
8629 S:      Maintained
8630 F:      scripts/get_maintainer.pl
8631
8632 GFS2 FILE SYSTEM
8633 M:      Bob Peterson <[email protected]>
8634 M:      Andreas Gruenbacher <[email protected]>
8635 L:      [email protected]
8636 S:      Supported
8637 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8639 F:      Documentation/filesystems/gfs2*
8640 F:      fs/gfs2/
8641 F:      include/uapi/linux/gfs2_ondisk.h
8642
8643 GIGABYTE WMI DRIVER
8644 M:      Thomas Weißschuh <[email protected]>
8645 L:      [email protected]
8646 S:      Maintained
8647 F:      drivers/platform/x86/gigabyte-wmi.c
8648
8649 GNSS SUBSYSTEM
8650 M:      Johan Hovold <[email protected]>
8651 S:      Maintained
8652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8653 F:      Documentation/ABI/testing/sysfs-class-gnss
8654 F:      Documentation/devicetree/bindings/gnss/
8655 F:      drivers/gnss/
8656 F:      include/linux/gnss.h
8657
8658 GO7007 MPEG CODEC
8659 M:      Hans Verkuil <[email protected]>
8660 L:      [email protected]
8661 S:      Maintained
8662 F:      drivers/media/usb/go7007/
8663
8664 GOODIX TOUCHSCREEN
8665 M:      Bastien Nocera <[email protected]>
8666 M:      Hans de Goede <[email protected]>
8667 L:      [email protected]
8668 S:      Maintained
8669 F:      drivers/input/touchscreen/goodix*
8670
8671 GOOGLE ETHERNET DRIVERS
8672 M:      Jeroen de Borst <[email protected]>
8673 M:      Catherine Sullivan <[email protected]>
8674 R:      Shailend Chand <[email protected]>
8675 L:      [email protected]
8676 S:      Supported
8677 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8678 F:      drivers/net/ethernet/google
8679
8680 GPD POCKET FAN DRIVER
8681 M:      Hans de Goede <[email protected]>
8682 L:      [email protected]
8683 S:      Maintained
8684 F:      drivers/platform/x86/gpd-pocket-fan.c
8685
8686 GPIO ACPI SUPPORT
8687 M:      Mika Westerberg <[email protected]>
8688 M:      Andy Shevchenko <[email protected]>
8689 L:      [email protected]
8690 L:      [email protected]
8691 S:      Supported
8692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8693 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8694 F:      drivers/gpio/gpiolib-acpi.c
8695 F:      drivers/gpio/gpiolib-acpi.h
8696
8697 GPIO AGGREGATOR
8698 M:      Geert Uytterhoeven <[email protected]>
8699 L:      [email protected]
8700 S:      Supported
8701 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8702 F:      drivers/gpio/gpio-aggregator.c
8703
8704 GPIO IR Transmitter
8705 M:      Sean Young <[email protected]>
8706 L:      [email protected]
8707 S:      Maintained
8708 F:      Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.yaml
8709 F:      drivers/media/rc/gpio-ir-tx.c
8710
8711 GPIO MOCKUP DRIVER
8712 M:      Bamvor Jian Zhang <[email protected]>
8713 L:      [email protected]
8714 S:      Maintained
8715 F:      drivers/gpio/gpio-mockup.c
8716 F:      tools/testing/selftests/gpio/
8717
8718 GPIO REGMAP
8719 R:      Michael Walle <[email protected]>
8720 S:      Maintained
8721 F:      drivers/gpio/gpio-regmap.c
8722 F:      include/linux/gpio/regmap.h
8723
8724 GPIO SUBSYSTEM
8725 M:      Linus Walleij <[email protected]>
8726 M:      Bartosz Golaszewski <[email protected]>
8727 L:      [email protected]
8728 S:      Maintained
8729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8730 F:      Documentation/ABI/obsolete/sysfs-gpio
8731 F:      Documentation/ABI/testing/gpio-cdev
8732 F:      Documentation/admin-guide/gpio/
8733 F:      Documentation/devicetree/bindings/gpio/
8734 F:      Documentation/driver-api/gpio/
8735 F:      drivers/gpio/
8736 F:      include/asm-generic/gpio.h
8737 F:      include/dt-bindings/gpio/
8738 F:      include/linux/gpio.h
8739 F:      include/linux/gpio/
8740 F:      include/linux/of_gpio.h
8741 F:      include/uapi/linux/gpio.h
8742 F:      tools/gpio/
8743
8744 GRE DEMULTIPLEXER DRIVER
8745 M:      Dmitry Kozlov <[email protected]>
8746 L:      [email protected]
8747 S:      Maintained
8748 F:      include/net/gre.h
8749 F:      net/ipv4/gre_demux.c
8750 F:      net/ipv4/gre_offload.c
8751
8752 GRETH 10/100/1G Ethernet MAC device driver
8753 M:      Andreas Larsson <[email protected]>
8754 L:      [email protected]
8755 S:      Maintained
8756 F:      drivers/net/ethernet/aeroflex/
8757
8758 GREYBUS AUDIO PROTOCOLS DRIVERS
8759 M:      Vaibhav Agarwal <[email protected]>
8760 M:      Mark Greer <[email protected]>
8761 S:      Maintained
8762 F:      drivers/staging/greybus/audio_apbridgea.c
8763 F:      drivers/staging/greybus/audio_apbridgea.h
8764 F:      drivers/staging/greybus/audio_codec.c
8765 F:      drivers/staging/greybus/audio_codec.h
8766 F:      drivers/staging/greybus/audio_gb.c
8767 F:      drivers/staging/greybus/audio_manager.c
8768 F:      drivers/staging/greybus/audio_manager.h
8769 F:      drivers/staging/greybus/audio_manager_module.c
8770 F:      drivers/staging/greybus/audio_manager_private.h
8771 F:      drivers/staging/greybus/audio_manager_sysfs.c
8772 F:      drivers/staging/greybus/audio_module.c
8773 F:      drivers/staging/greybus/audio_topology.c
8774
8775 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8776 M:      Viresh Kumar <[email protected]>
8777 S:      Maintained
8778 F:      drivers/staging/greybus/authentication.c
8779 F:      drivers/staging/greybus/bootrom.c
8780 F:      drivers/staging/greybus/firmware.h
8781 F:      drivers/staging/greybus/fw-core.c
8782 F:      drivers/staging/greybus/fw-download.c
8783 F:      drivers/staging/greybus/fw-management.c
8784 F:      drivers/staging/greybus/greybus_authentication.h
8785 F:      drivers/staging/greybus/greybus_firmware.h
8786 F:      drivers/staging/greybus/hid.c
8787 F:      drivers/staging/greybus/i2c.c
8788 F:      drivers/staging/greybus/spi.c
8789 F:      drivers/staging/greybus/spilib.c
8790 F:      drivers/staging/greybus/spilib.h
8791
8792 GREYBUS LOOPBACK DRIVER
8793 M:      Bryan O'Donoghue <[email protected]>
8794 S:      Maintained
8795 F:      drivers/staging/greybus/loopback.c
8796
8797 GREYBUS PLATFORM DRIVERS
8798 M:      Vaibhav Hiremath <[email protected]>
8799 S:      Maintained
8800 F:      drivers/staging/greybus/arche-apb-ctrl.c
8801 F:      drivers/staging/greybus/arche-platform.c
8802 F:      drivers/staging/greybus/arche_platform.h
8803
8804 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8805 M:      Rui Miguel Silva <[email protected]>
8806 S:      Maintained
8807 F:      drivers/staging/greybus/gpio.c
8808 F:      drivers/staging/greybus/light.c
8809 F:      drivers/staging/greybus/power_supply.c
8810 F:      drivers/staging/greybus/sdio.c
8811 F:      drivers/staging/greybus/spi.c
8812 F:      drivers/staging/greybus/spilib.c
8813
8814 GREYBUS SUBSYSTEM
8815 M:      Johan Hovold <[email protected]>
8816 M:      Alex Elder <[email protected]>
8817 M:      Greg Kroah-Hartman <[email protected]>
8818 L:      [email protected] (moderated for non-subscribers)
8819 S:      Maintained
8820 F:      drivers/greybus/
8821 F:      drivers/staging/greybus/
8822 F:      include/linux/greybus.h
8823 F:      include/linux/greybus/
8824
8825 GREYBUS UART PROTOCOLS DRIVERS
8826 M:      David Lin <[email protected]>
8827 S:      Maintained
8828 F:      drivers/staging/greybus/log.c
8829 F:      drivers/staging/greybus/uart.c
8830
8831 GS1662 VIDEO SERIALIZER
8832 M:      Charles-Antoine Couret <[email protected]>
8833 L:      [email protected]
8834 S:      Maintained
8835 T:      git git://linuxtv.org/media_tree.git
8836 F:      drivers/media/spi/gs1662.c
8837
8838 GSPCA FINEPIX SUBDRIVER
8839 M:      Frank Zago <[email protected]>
8840 L:      [email protected]
8841 S:      Maintained
8842 T:      git git://linuxtv.org/media_tree.git
8843 F:      drivers/media/usb/gspca/finepix.c
8844
8845 GSPCA GL860 SUBDRIVER
8846 M:      Olivier Lorin <[email protected]>
8847 L:      [email protected]
8848 S:      Maintained
8849 T:      git git://linuxtv.org/media_tree.git
8850 F:      drivers/media/usb/gspca/gl860/
8851
8852 GSPCA M5602 SUBDRIVER
8853 M:      Erik Andren <[email protected]>
8854 L:      [email protected]
8855 S:      Maintained
8856 T:      git git://linuxtv.org/media_tree.git
8857 F:      drivers/media/usb/gspca/m5602/
8858
8859 GSPCA PAC207 SONIXB SUBDRIVER
8860 M:      Hans Verkuil <[email protected]>
8861 L:      [email protected]
8862 S:      Odd Fixes
8863 T:      git git://linuxtv.org/media_tree.git
8864 F:      drivers/media/usb/gspca/pac207.c
8865
8866 GSPCA SN9C20X SUBDRIVER
8867 M:      Brian Johnson <[email protected]>
8868 L:      [email protected]
8869 S:      Maintained
8870 T:      git git://linuxtv.org/media_tree.git
8871 F:      drivers/media/usb/gspca/sn9c20x.c
8872
8873 GSPCA T613 SUBDRIVER
8874 M:      Leandro Costantino <[email protected]>
8875 L:      [email protected]
8876 S:      Maintained
8877 T:      git git://linuxtv.org/media_tree.git
8878 F:      drivers/media/usb/gspca/t613.c
8879
8880 GSPCA USB WEBCAM DRIVER
8881 M:      Hans Verkuil <[email protected]>
8882 L:      [email protected]
8883 S:      Odd Fixes
8884 T:      git git://linuxtv.org/media_tree.git
8885 F:      drivers/media/usb/gspca/
8886
8887 GTP (GPRS Tunneling Protocol)
8888 M:      Pablo Neira Ayuso <[email protected]>
8889 M:      Harald Welte <[email protected]>
8890 L:      [email protected]
8891 S:      Maintained
8892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8893 F:      drivers/net/gtp.c
8894
8895 GUID PARTITION TABLE (GPT)
8896 M:      Davidlohr Bueso <[email protected]>
8897 L:      [email protected]
8898 S:      Maintained
8899 F:      block/partitions/efi.*
8900
8901 HABANALABS PCI DRIVER
8902 M:      Oded Gabbay <[email protected]>
8903 S:      Supported
8904 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8905 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8906 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8907 F:      drivers/misc/habanalabs/
8908 F:      include/trace/events/habanalabs.h
8909 F:      include/uapi/misc/habanalabs.h
8910
8911 HACKRF MEDIA DRIVER
8912 M:      Antti Palosaari <[email protected]>
8913 L:      [email protected]
8914 S:      Maintained
8915 W:      https://linuxtv.org
8916 W:      http://palosaari.fi/linux/
8917 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8918 T:      git git://linuxtv.org/anttip/media_tree.git
8919 F:      drivers/media/usb/hackrf/
8920
8921 HANTRO VPU CODEC DRIVER
8922 M:      Ezequiel Garcia <[email protected]>
8923 M:      Philipp Zabel <[email protected]>
8924 L:      [email protected]
8925 L:      [email protected]
8926 S:      Maintained
8927 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8928 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8929 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8930 F:      drivers/media/platform/verisilicon/
8931
8932 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8933 M:      Frank Seidel <[email protected]>
8934 L:      [email protected]
8935 S:      Maintained
8936 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8937 F:      drivers/platform/x86/hdaps.c
8938
8939 HARDWARE MONITORING
8940 M:      Jean Delvare <[email protected]>
8941 M:      Guenter Roeck <[email protected]>
8942 L:      [email protected]
8943 S:      Maintained
8944 W:      http://hwmon.wiki.kernel.org/
8945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8946 F:      Documentation/ABI/testing/sysfs-class-hwmon
8947 F:      Documentation/devicetree/bindings/hwmon/
8948 F:      Documentation/hwmon/
8949 F:      drivers/hwmon/
8950 F:      include/linux/hwmon*.h
8951 F:      include/trace/events/hwmon*.h
8952 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8953
8954 HARDWARE RANDOM NUMBER GENERATOR CORE
8955 M:      Olivia Mackall <[email protected]>
8956 M:      Herbert Xu <[email protected]>
8957 L:      [email protected]
8958 S:      Odd fixes
8959 F:      Documentation/admin-guide/hw_random.rst
8960 F:      Documentation/devicetree/bindings/rng/
8961 F:      drivers/char/hw_random/
8962 F:      include/linux/hw_random.h
8963
8964 HARDWARE SPINLOCK CORE
8965 M:      Ohad Ben-Cohen <[email protected]>
8966 M:      Bjorn Andersson <[email protected]>
8967 R:      Baolin Wang <[email protected]>
8968 L:      [email protected]
8969 S:      Maintained
8970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8971 F:      Documentation/devicetree/bindings/hwlock/
8972 F:      Documentation/locking/hwspinlock.rst
8973 F:      drivers/hwspinlock/
8974 F:      include/linux/hwspinlock.h
8975
8976 HARDWARE TRACING FACILITIES
8977 M:      Alexander Shishkin <[email protected]>
8978 S:      Maintained
8979 F:      drivers/hwtracing/
8980
8981 HARMONY SOUND DRIVER
8982 L:      [email protected]
8983 S:      Maintained
8984 F:      sound/parisc/harmony.*
8985
8986 HDPVR USB VIDEO ENCODER DRIVER
8987 M:      Hans Verkuil <[email protected]>
8988 L:      [email protected]
8989 S:      Odd Fixes
8990 W:      https://linuxtv.org
8991 T:      git git://linuxtv.org/media_tree.git
8992 F:      drivers/media/usb/hdpvr/
8993
8994 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8995 M:      Matt Hsiao <[email protected]>
8996 S:      Supported
8997 F:      drivers/misc/hpilo.[ch]
8998
8999 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
9000 M:      Jerry Hoemann <[email protected]>
9001 S:      Supported
9002 F:      Documentation/watchdog/hpwdt.rst
9003 F:      drivers/watchdog/hpwdt.c
9004
9005 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
9006 M:      Don Brace <[email protected]>
9007 L:      [email protected]
9008 L:      [email protected]
9009 S:      Supported
9010 F:      Documentation/scsi/hpsa.rst
9011 F:      drivers/scsi/hpsa*.[ch]
9012 F:      include/linux/cciss*.h
9013 F:      include/uapi/linux/cciss*.h
9014
9015 HFI1 DRIVER
9016 M:      Dennis Dalessandro <[email protected]>
9017 L:      [email protected]
9018 S:      Supported
9019 F:      drivers/infiniband/hw/hfi1
9020
9021 HFS FILESYSTEM
9022 L:      [email protected]
9023 S:      Orphan
9024 F:      Documentation/filesystems/hfs.rst
9025 F:      fs/hfs/
9026
9027 HFSPLUS FILESYSTEM
9028 L:      [email protected]
9029 S:      Orphan
9030 F:      Documentation/filesystems/hfsplus.rst
9031 F:      fs/hfsplus/
9032
9033 HGA FRAMEBUFFER DRIVER
9034 M:      Ferenc Bakonyi <[email protected]>
9035 L:      [email protected]
9036 S:      Maintained
9037 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9038 F:      drivers/video/fbdev/hgafb.c
9039
9040 HIBERNATION (aka Software Suspend, aka swsusp)
9041 M:      "Rafael J. Wysocki" <[email protected]>
9042 M:      Pavel Machek <[email protected]>
9043 L:      [email protected]
9044 S:      Supported
9045 B:      https://bugzilla.kernel.org
9046 F:      arch/*/include/asm/suspend*.h
9047 F:      arch/x86/power/
9048 F:      drivers/base/power/
9049 F:      include/linux/freezer.h
9050 F:      include/linux/pm.h
9051 F:      include/linux/suspend.h
9052 F:      kernel/power/
9053
9054 HID CORE LAYER
9055 M:      Jiri Kosina <[email protected]>
9056 M:      Benjamin Tissoires <[email protected]>
9057 L:      [email protected]
9058 S:      Maintained
9059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9060 F:      drivers/hid/
9061 F:      include/linux/hid*
9062 F:      include/uapi/linux/hid*
9063
9064 HID LOGITECH DRIVERS
9065 R:      Filipe Laíns <[email protected]>
9066 L:      [email protected]
9067 S:      Maintained
9068 F:      drivers/hid/hid-logitech-*
9069
9070 HID PLAYSTATION DRIVER
9071 M:      Roderick Colenbrander <[email protected]>
9072 L:      [email protected]
9073 S:      Supported
9074 F:      drivers/hid/hid-playstation.c
9075
9076 HID PHOENIX RC FLIGHT CONTROLLER
9077 M:      Marcus Folkesson <[email protected]>
9078 L:      [email protected]
9079 S:      Maintained
9080 F:      drivers/hid/hid-pxrc.c
9081
9082 HID SENSOR HUB DRIVERS
9083 M:      Jiri Kosina <[email protected]>
9084 M:      Jonathan Cameron <[email protected]>
9085 M:      Srinivas Pandruvada <[email protected]>
9086 L:      [email protected]
9087 L:      [email protected]
9088 S:      Maintained
9089 F:      Documentation/hid/hid-sensor*
9090 F:      drivers/hid/hid-sensor-*
9091 F:      drivers/iio/*/hid-*
9092 F:      include/linux/hid-sensor-*
9093
9094 HID VRC-2 CAR CONTROLLER DRIVER
9095 M:      Marcus Folkesson <[email protected]>
9096 L:      [email protected]
9097 S:      Maintained
9098 F:      drivers/hid/hid-vrc2.c
9099
9100 HID WACOM DRIVER
9101 M:      Ping Cheng <[email protected]>
9102 M:      Jason Gerecke  <[email protected]>
9103 L:      [email protected]
9104 S:      Maintained
9105 F:      drivers/hid/wacom.h
9106 F:      drivers/hid/wacom_*
9107
9108 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9109 M:      Thomas Gleixner <[email protected]>
9110 L:      [email protected]
9111 S:      Maintained
9112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9113 F:      Documentation/timers/
9114 F:      include/linux/clockchips.h
9115 F:      include/linux/hrtimer.h
9116 F:      kernel/time/clockevents.c
9117 F:      kernel/time/hrtimer.c
9118 F:      kernel/time/timer_*.c
9119
9120 HIGH-SPEED SCC DRIVER FOR AX.25
9121 L:      [email protected]
9122 S:      Orphan
9123 F:      drivers/net/hamradio/scc.c
9124
9125 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9126 M:      HighPoint Linux Team <[email protected]>
9127 S:      Supported
9128 W:      http://www.highpoint-tech.com
9129 F:      Documentation/scsi/hptiop.rst
9130 F:      drivers/scsi/hptiop.c
9131
9132 HIMAX HX83112B TOUCHSCREEN SUPPORT
9133 M:      Job Noorman <[email protected]>
9134 L:      [email protected]
9135 S:      Maintained
9136 F:      Documentation/devicetree/bindings/input/touchscreen/himax,hx83112b.yaml
9137 F:      drivers/input/touchscreen/himax_hx83112b.c
9138
9139 HIPPI
9140 M:      Jes Sorensen <[email protected]>
9141 L:      [email protected]
9142 S:      Maintained
9143 F:      drivers/net/hippi/
9144 F:      include/linux/hippidevice.h
9145 F:      include/uapi/linux/if_hippi.h
9146 F:      net/802/hippi.c
9147
9148 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9149 M:      Kurt Kanzenbach <[email protected]>
9150 L:      [email protected]
9151 S:      Maintained
9152 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9153 F:      drivers/net/dsa/hirschmann/*
9154 F:      include/linux/platform_data/hirschmann-hellcreek.h
9155 F:      net/dsa/tag_hellcreek.c
9156
9157 HISILICON DMA DRIVER
9158 M:      Zhou Wang <[email protected]>
9159 M:      Jie Hai <[email protected]>
9160 L:      [email protected]
9161 S:      Maintained
9162 F:      drivers/dma/hisi_dma.c
9163
9164 HISILICON GPIO DRIVER
9165 M:      Jay Fang <[email protected]>
9166 L:      [email protected]
9167 S:      Maintained
9168 F:      Documentation/devicetree/bindings/gpio/hisilicon,ascend910-gpio.yaml
9169 F:      drivers/gpio/gpio-hisi.c
9170
9171 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9172 M:      Longfang Liu <[email protected]>
9173 L:      [email protected]
9174 S:      Maintained
9175 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9176 F:      drivers/crypto/hisilicon/hpre/hpre.h
9177 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9178 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9179
9180 HISILICON I2C CONTROLLER DRIVER
9181 M:      Yicong Yang <[email protected]>
9182 L:      [email protected]
9183 S:      Maintained
9184 W:      https://www.hisilicon.com
9185 F:      Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
9186 F:      drivers/i2c/busses/i2c-hisi.c
9187
9188 HISILICON LPC BUS DRIVER
9189 M:      Jay Fang <[email protected]>
9190 S:      Maintained
9191 W:      http://www.hisilicon.com
9192 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9193 F:      drivers/bus/hisi_lpc.c
9194
9195 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9196 M:      Yisen Zhuang <[email protected]>
9197 M:      Salil Mehta <[email protected]>
9198 L:      [email protected]
9199 S:      Maintained
9200 W:      http://www.hisilicon.com
9201 F:      drivers/net/ethernet/hisilicon/hns3/
9202
9203 HISILICON NETWORK SUBSYSTEM DRIVER
9204 M:      Yisen Zhuang <[email protected]>
9205 M:      Salil Mehta <[email protected]>
9206 L:      [email protected]
9207 S:      Maintained
9208 W:      http://www.hisilicon.com
9209 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9210 F:      drivers/net/ethernet/hisilicon/
9211
9212 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9213 M:      John Stultz <[email protected]>
9214 L:      [email protected]
9215 S:      Maintained
9216 F:      drivers/misc/hisi_hikey_usb.c
9217
9218 HISILICON PMU DRIVER
9219 M:      Shaokun Zhang <[email protected]>
9220 M:      Jonathan Cameron <[email protected]>
9221 S:      Supported
9222 W:      http://www.hisilicon.com
9223 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9224 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9225 F:      drivers/perf/hisilicon
9226
9227 HISILICON HNS3 PMU DRIVER
9228 M:      Guangbin Huang <[email protected]>
9229 S:      Supported
9230 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9231 F:      drivers/perf/hisilicon/hns3_pmu.c
9232
9233 HISILICON PTT DRIVER
9234 M:      Yicong Yang <[email protected]>
9235 L:      [email protected]
9236 S:      Maintained
9237 F:      Documentation/ABI/testing/sysfs-devices-hisi_ptt
9238 F:      Documentation/trace/hisi-ptt.rst
9239 F:      drivers/hwtracing/ptt/
9240
9241 HISILICON QM DRIVER
9242 M:      Weili Qian <[email protected]>
9243 M:      Zhou Wang <[email protected]>
9244 L:      [email protected]
9245 S:      Maintained
9246 F:      drivers/crypto/hisilicon/Kconfig
9247 F:      drivers/crypto/hisilicon/Makefile
9248 F:      drivers/crypto/hisilicon/qm.c
9249 F:      drivers/crypto/hisilicon/sgl.c
9250 F:      include/linux/hisi_acc_qm.h
9251
9252 HISILICON ZIP Controller DRIVER
9253 M:      Yang Shen <[email protected]>
9254 M:      Zhou Wang <[email protected]>
9255 L:      [email protected]
9256 S:      Maintained
9257 F:      Documentation/ABI/testing/debugfs-hisi-zip
9258 F:      drivers/crypto/hisilicon/zip/
9259
9260 HISILICON ROCE DRIVER
9261 M:      Haoyue Xu <[email protected]>
9262 M:      Wenpeng Liang <[email protected]>
9263 L:      [email protected]
9264 S:      Maintained
9265 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9266 F:      drivers/infiniband/hw/hns/
9267
9268 HISILICON SAS Controller
9269 M:      Xiang Chen <[email protected]>
9270 S:      Supported
9271 W:      http://www.hisilicon.com
9272 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9273 F:      drivers/scsi/hisi_sas/
9274
9275 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9276 M:      Kai Ye <[email protected]>
9277 M:      Longfang Liu <[email protected]>
9278 L:      [email protected]
9279 S:      Maintained
9280 F:      Documentation/ABI/testing/debugfs-hisi-sec
9281 F:      drivers/crypto/hisilicon/sec2/sec.h
9282 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9283 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9284 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9285
9286 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9287 M:      Jay Fang <[email protected]>
9288 L:      [email protected]
9289 S:      Maintained
9290 W:      http://www.hisilicon.com
9291 F:      drivers/spi/spi-hisi-kunpeng.c
9292
9293 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9294 M:      Mauro Carvalho Chehab <[email protected]>
9295 L:      [email protected]
9296 S:      Maintained
9297 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9298 F:      drivers/spmi/hisi-spmi-controller.c
9299
9300 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9301 M:      Mauro Carvalho Chehab <[email protected]>
9302 L:      [email protected]
9303 S:      Maintained
9304 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9305 F:      drivers/mfd/hi6421-spmi-pmic.c
9306
9307 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9308 M:      Weili Qian <[email protected]>
9309 S:      Maintained
9310 F:      drivers/crypto/hisilicon/trng/trng.c
9311
9312 HISILICON V3XX SPI NOR FLASH Controller Driver
9313 M:      Jay Fang <[email protected]>
9314 S:      Maintained
9315 W:      http://www.hisilicon.com
9316 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9317
9318 HMM - Heterogeneous Memory Management
9319 M:      Jérôme Glisse <[email protected]>
9320 L:      [email protected]
9321 S:      Maintained
9322 F:      Documentation/mm/hmm.rst
9323 F:      include/linux/hmm*
9324 F:      lib/test_hmm*
9325 F:      mm/hmm*
9326 F:      tools/testing/selftests/vm/*hmm*
9327
9328 HOST AP DRIVER
9329 M:      Jouni Malinen <[email protected]>
9330 L:      [email protected]
9331 S:      Obsolete
9332 W:      http://w1.fi/hostap-driver.html
9333 F:      drivers/net/wireless/intersil/hostap/
9334
9335 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9336 L:      [email protected]
9337 S:      Orphan
9338 F:      drivers/platform/x86/hp/tc1100-wmi.c
9339
9340 HPET:   High Precision Event Timers driver
9341 M:      Clemens Ladisch <[email protected]>
9342 S:      Maintained
9343 F:      Documentation/timers/hpet.rst
9344 F:      drivers/char/hpet.c
9345 F:      include/linux/hpet.h
9346 F:      include/uapi/linux/hpet.h
9347
9348 HPET:   x86
9349 S:      Orphan
9350 F:      arch/x86/include/asm/hpet.h
9351 F:      arch/x86/kernel/hpet.c
9352
9353 HPFS FILESYSTEM
9354 M:      Mikulas Patocka <[email protected]>
9355 S:      Maintained
9356 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9357 F:      fs/hpfs/
9358
9359 HSI SUBSYSTEM
9360 M:      Sebastian Reichel <[email protected]>
9361 S:      Maintained
9362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9363 F:      Documentation/ABI/testing/sysfs-bus-hsi
9364 F:      Documentation/driver-api/hsi.rst
9365 F:      drivers/hsi/
9366 F:      include/linux/hsi/
9367 F:      include/uapi/linux/hsi/
9368
9369 HSO 3G MODEM DRIVER
9370 L:      [email protected]
9371 S:      Orphan
9372 F:      drivers/net/usb/hso.c
9373
9374 HSR NETWORK PROTOCOL
9375 L:      [email protected]
9376 S:      Orphan
9377 F:      net/hsr/
9378
9379 HT16K33 LED CONTROLLER DRIVER
9380 M:      Robin van der Gracht <[email protected]>
9381 S:      Maintained
9382 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9383 F:      drivers/auxdisplay/ht16k33.c
9384
9385 HTCPEN TOUCHSCREEN DRIVER
9386 M:      Pau Oliva Fora <[email protected]>
9387 L:      [email protected]
9388 S:      Maintained
9389 F:      drivers/input/touchscreen/htcpen.c
9390
9391 HTE SUBSYSTEM
9392 M:      Dipen Patel <[email protected]>
9393 S:      Maintained
9394 F:      Documentation/devicetree/bindings/timestamp/
9395 F:      Documentation/driver-api/hte/
9396 F:      drivers/hte/
9397 F:      include/linux/hte.h
9398
9399 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9400 M:      Lorenzo Bianconi <[email protected]>
9401 L:      [email protected]
9402 S:      Maintained
9403 W:      http://www.st.com/
9404 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9405 F:      drivers/iio/humidity/hts221*
9406
9407 HUAWEI ETHERNET DRIVER
9408 M:      Cai Huoqing <[email protected]>
9409 L:      [email protected]
9410 S:      Maintained
9411 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9412 F:      drivers/net/ethernet/huawei/hinic/
9413
9414 HUGETLB SUBSYSTEM
9415 M:      Mike Kravetz <[email protected]>
9416 M:      Muchun Song <[email protected]>
9417 L:      [email protected]
9418 S:      Maintained
9419 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9420 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9421 F:      Documentation/mm/hugetlbfs_reserv.rst
9422 F:      Documentation/mm/vmemmap_dedup.rst
9423 F:      fs/hugetlbfs/
9424 F:      include/linux/hugetlb.h
9425 F:      mm/hugetlb.c
9426 F:      mm/hugetlb_vmemmap.c
9427 F:      mm/hugetlb_vmemmap.h
9428
9429 HVA ST MEDIA DRIVER
9430 M:      Jean-Christophe Trotin <[email protected]>
9431 L:      [email protected]
9432 S:      Supported
9433 W:      https://linuxtv.org
9434 T:      git git://linuxtv.org/media_tree.git
9435 F:      drivers/media/platform/st/sti/hva
9436
9437 HWPOISON MEMORY FAILURE HANDLING
9438 M:      Naoya Horiguchi <[email protected]>
9439 R:      Miaohe Lin <[email protected]>
9440 L:      [email protected]
9441 S:      Maintained
9442 F:      mm/hwpoison-inject.c
9443 F:      mm/memory-failure.c
9444
9445 HYCON HY46XX TOUCHSCREEN SUPPORT
9446 M:      Giulio Benetti <[email protected]>
9447 L:      [email protected]
9448 S:      Maintained
9449 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9450 F:      drivers/input/touchscreen/hycon-hy46xx.c
9451
9452 HYGON PROCESSOR SUPPORT
9453 M:      Pu Wen <[email protected]>
9454 L:      [email protected]
9455 S:      Maintained
9456 F:      arch/x86/kernel/cpu/hygon.c
9457
9458 HYNIX HI556 SENSOR DRIVER
9459 M:      Shawn Tu <[email protected]>
9460 L:      [email protected]
9461 S:      Maintained
9462 T:      git git://linuxtv.org/media_tree.git
9463 F:      drivers/media/i2c/hi556.c
9464
9465 HYNIX HI846 SENSOR DRIVER
9466 M:      Martin Kepplinger <[email protected]>
9467 L:      [email protected]
9468 S:      Maintained
9469 F:      drivers/media/i2c/hi846.c
9470
9471 HYNIX HI847 SENSOR DRIVER
9472 M:      Shawn Tu <[email protected]>
9473 L:      [email protected]
9474 S:      Maintained
9475 F:      drivers/media/i2c/hi847.c
9476
9477 Hyper-V/Azure CORE AND DRIVERS
9478 M:      "K. Y. Srinivasan" <[email protected]>
9479 M:      Haiyang Zhang <[email protected]>
9480 M:      Wei Liu <[email protected]>
9481 M:      Dexuan Cui <[email protected]>
9482 L:      [email protected]
9483 S:      Supported
9484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9485 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9486 F:      Documentation/ABI/testing/debugfs-hyperv
9487 F:      Documentation/virt/hyperv
9488 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9489 F:      arch/arm64/hyperv
9490 F:      arch/arm64/include/asm/hyperv-tlfs.h
9491 F:      arch/arm64/include/asm/mshyperv.h
9492 F:      arch/x86/hyperv
9493 F:      arch/x86/include/asm/hyperv-tlfs.h
9494 F:      arch/x86/include/asm/mshyperv.h
9495 F:      arch/x86/include/asm/trace/hyperv.h
9496 F:      arch/x86/kernel/cpu/mshyperv.c
9497 F:      drivers/clocksource/hyperv_timer.c
9498 F:      drivers/hid/hid-hyperv.c
9499 F:      drivers/hv/
9500 F:      drivers/input/serio/hyperv-keyboard.c
9501 F:      drivers/iommu/hyperv-iommu.c
9502 F:      drivers/net/ethernet/microsoft/
9503 F:      drivers/net/hyperv/
9504 F:      drivers/pci/controller/pci-hyperv-intf.c
9505 F:      drivers/pci/controller/pci-hyperv.c
9506 F:      drivers/scsi/storvsc_drv.c
9507 F:      drivers/uio/uio_hv_generic.c
9508 F:      drivers/video/fbdev/hyperv_fb.c
9509 F:      include/asm-generic/hyperv-tlfs.h
9510 F:      include/asm-generic/mshyperv.h
9511 F:      include/clocksource/hyperv_timer.h
9512 F:      include/linux/hyperv.h
9513 F:      include/net/mana
9514 F:      include/uapi/linux/hyperv.h
9515 F:      net/vmw_vsock/hyperv_transport.c
9516 F:      tools/hv/
9517
9518 HYPERBUS SUPPORT
9519 M:      Vignesh Raghavendra <[email protected]>
9520 L:      [email protected]
9521 S:      Supported
9522 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9523 C:      irc://irc.oftc.net/mtd
9524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9525 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9526 F:      drivers/mtd/hyperbus/
9527 F:      include/linux/mtd/hyperbus.h
9528
9529 HYPERVISOR VIRTUAL CONSOLE DRIVER
9530 L:      [email protected]
9531 S:      Odd Fixes
9532 F:      drivers/tty/hvc/
9533
9534 I2C ACPI SUPPORT
9535 M:      Mika Westerberg <[email protected]>
9536 L:      [email protected]
9537 L:      [email protected]
9538 S:      Maintained
9539 F:      drivers/i2c/i2c-core-acpi.c
9540
9541 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9542 M:      Ajay Gupta <[email protected]>
9543 L:      [email protected]
9544 S:      Maintained
9545 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9546 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9547
9548 I2C MUXES
9549 M:      Peter Rosin <[email protected]>
9550 L:      [email protected]
9551 S:      Maintained
9552 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9553 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9554 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9555 F:      Documentation/i2c/i2c-topology.rst
9556 F:      Documentation/i2c/muxes/
9557 F:      drivers/i2c/i2c-mux.c
9558 F:      drivers/i2c/muxes/
9559 F:      include/linux/i2c-mux.h
9560
9561 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9562 M:      Gregory CLEMENT <[email protected]>
9563 L:      [email protected]
9564 S:      Maintained
9565 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9566 F:      drivers/i2c/busses/i2c-mv64xxx.c
9567
9568 I2C OVER PARALLEL PORT
9569 M:      Jean Delvare <[email protected]>
9570 L:      [email protected]
9571 S:      Maintained
9572 F:      Documentation/i2c/busses/i2c-parport.rst
9573 F:      drivers/i2c/busses/i2c-parport.c
9574
9575 I2C SUBSYSTEM
9576 M:      Wolfram Sang <[email protected]>
9577 L:      [email protected]
9578 S:      Maintained
9579 W:      https://i2c.wiki.kernel.org/
9580 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9582 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9583 F:      Documentation/i2c/
9584 F:      drivers/i2c/*
9585 F:      include/dt-bindings/i2c/i2c.h
9586 F:      include/linux/i2c-dev.h
9587 F:      include/linux/i2c-smbus.h
9588 F:      include/linux/i2c.h
9589 F:      include/uapi/linux/i2c-*.h
9590 F:      include/uapi/linux/i2c.h
9591
9592 I2C SUBSYSTEM HOST DRIVERS
9593 L:      [email protected]
9594 S:      Odd Fixes
9595 W:      https://i2c.wiki.kernel.org/
9596 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9598 F:      Documentation/devicetree/bindings/i2c/
9599 F:      drivers/i2c/algos/
9600 F:      drivers/i2c/busses/
9601 F:      include/dt-bindings/i2c/
9602
9603 I2C-TAOS-EVM DRIVER
9604 M:      Jean Delvare <[email protected]>
9605 L:      [email protected]
9606 S:      Maintained
9607 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9608 F:      drivers/i2c/busses/i2c-taos-evm.c
9609
9610 I2C-TINY-USB DRIVER
9611 M:      Till Harbaum <[email protected]>
9612 L:      [email protected]
9613 S:      Maintained
9614 W:      http://www.harbaum.org/till/i2c_tiny_usb
9615 F:      drivers/i2c/busses/i2c-tiny-usb.c
9616
9617 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9618 M:      Jean Delvare <[email protected]>
9619 L:      [email protected]
9620 S:      Maintained
9621 F:      Documentation/i2c/busses/i2c-ali1535.rst
9622 F:      Documentation/i2c/busses/i2c-ali1563.rst
9623 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9624 F:      Documentation/i2c/busses/i2c-amd756.rst
9625 F:      Documentation/i2c/busses/i2c-amd8111.rst
9626 F:      Documentation/i2c/busses/i2c-i801.rst
9627 F:      Documentation/i2c/busses/i2c-nforce2.rst
9628 F:      Documentation/i2c/busses/i2c-piix4.rst
9629 F:      Documentation/i2c/busses/i2c-sis5595.rst
9630 F:      Documentation/i2c/busses/i2c-sis630.rst
9631 F:      Documentation/i2c/busses/i2c-sis96x.rst
9632 F:      Documentation/i2c/busses/i2c-via.rst
9633 F:      Documentation/i2c/busses/i2c-viapro.rst
9634 F:      drivers/i2c/busses/i2c-ali1535.c
9635 F:      drivers/i2c/busses/i2c-ali1563.c
9636 F:      drivers/i2c/busses/i2c-ali15x3.c
9637 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9638 F:      drivers/i2c/busses/i2c-amd756.c
9639 F:      drivers/i2c/busses/i2c-amd8111.c
9640 F:      drivers/i2c/busses/i2c-i801.c
9641 F:      drivers/i2c/busses/i2c-isch.c
9642 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9643 F:      drivers/i2c/busses/i2c-nforce2.c
9644 F:      drivers/i2c/busses/i2c-piix4.c
9645 F:      drivers/i2c/busses/i2c-sis5595.c
9646 F:      drivers/i2c/busses/i2c-sis630.c
9647 F:      drivers/i2c/busses/i2c-sis96x.c
9648 F:      drivers/i2c/busses/i2c-via.c
9649 F:      drivers/i2c/busses/i2c-viapro.c
9650
9651 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9652 M:      Hans de Goede <[email protected]>
9653 L:      [email protected]
9654 S:      Maintained
9655 F:      drivers/i2c/busses/i2c-cht-wc.c
9656
9657 I2C/SMBUS ISMT DRIVER
9658 M:      Seth Heasley <[email protected]>
9659 M:      Neil Horman <[email protected]>
9660 L:      [email protected]
9661 F:      Documentation/i2c/busses/i2c-ismt.rst
9662 F:      drivers/i2c/busses/i2c-ismt.c
9663
9664 I2C/SMBUS STUB DRIVER
9665 M:      Jean Delvare <[email protected]>
9666 L:      [email protected]
9667 S:      Maintained
9668 F:      drivers/i2c/i2c-stub.c
9669
9670 I3C DRIVER FOR CADENCE I3C MASTER IP
9671 M:      Przemysław Gaj <[email protected]>
9672 S:      Maintained
9673 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9674 F:      drivers/i3c/master/i3c-master-cdns.c
9675
9676 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9677 S:      Orphan
9678 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9679 F:      drivers/i3c/master/dw*
9680
9681 I3C SUBSYSTEM
9682 M:      Alexandre Belloni <[email protected]>
9683 L:      [email protected] (moderated for non-subscribers)
9684 S:      Maintained
9685 C:      irc://chat.freenode.net/linux-i3c
9686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9687 F:      Documentation/ABI/testing/sysfs-bus-i3c
9688 F:      Documentation/devicetree/bindings/i3c/
9689 F:      Documentation/driver-api/i3c
9690 F:      drivers/i3c/
9691 F:      include/linux/i3c/
9692
9693 IA64 (Itanium) PLATFORM
9694 L:      [email protected]
9695 S:      Orphan
9696 F:      Documentation/ia64/
9697 F:      arch/ia64/
9698
9699 IBM Operation Panel Input Driver
9700 M:      Eddie James <[email protected]>
9701 L:      [email protected]
9702 S:      Maintained
9703 F:      Documentation/devicetree/bindings/input/ibm,op-panel.yaml
9704 F:      drivers/input/misc/ibm-panel.c
9705
9706 IBM Power 842 compression accelerator
9707 M:      Haren Myneni <[email protected]>
9708 S:      Supported
9709 F:      crypto/842.c
9710 F:      drivers/crypto/nx/Kconfig
9711 F:      drivers/crypto/nx/Makefile
9712 F:      drivers/crypto/nx/nx-842*
9713 F:      include/linux/sw842.h
9714 F:      lib/842/
9715
9716 IBM Power in-Nest Crypto Acceleration
9717 M:      Breno Leitão <[email protected]>
9718 M:      Nayna Jain <[email protected]>
9719 M:      Paulo Flabiano Smorigo <[email protected]>
9720 L:      [email protected]
9721 S:      Supported
9722 F:      drivers/crypto/nx/Kconfig
9723 F:      drivers/crypto/nx/Makefile
9724 F:      drivers/crypto/nx/nx-aes*
9725 F:      drivers/crypto/nx/nx-sha*
9726 F:      drivers/crypto/nx/nx.*
9727 F:      drivers/crypto/nx/nx_csbcpb.h
9728 F:      drivers/crypto/nx/nx_debugfs.c
9729
9730 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9731 M:      Tyrel Datwyler <[email protected]>
9732 L:      [email protected]
9733 L:      [email protected]
9734 S:      Supported
9735 F:      drivers/pci/hotplug/rpadlpar*
9736
9737 IBM Power Linux RAID adapter
9738 M:      Brian King <[email protected]>
9739 S:      Supported
9740 F:      drivers/scsi/ipr.*
9741
9742 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9743 M:      Tyrel Datwyler <[email protected]>
9744 L:      [email protected]
9745 L:      [email protected]
9746 S:      Supported
9747 F:      drivers/pci/hotplug/rpaphp*
9748
9749 IBM Power SRIOV Virtual NIC Device Driver
9750 M:      Haren Myneni <[email protected]>
9751 M:      Rick Lindsley <[email protected]>
9752 R:      Nick Child <[email protected]>
9753 R:      Dany Madden <[email protected]>
9754 R:      Thomas Falcon <[email protected]>
9755 L:      [email protected]
9756 S:      Supported
9757 F:      drivers/net/ethernet/ibm/ibmvnic.*
9758
9759 IBM Power Virtual Accelerator Switchboard
9760 L:      [email protected]
9761 S:      Supported
9762 F:      arch/powerpc/include/asm/vas.h
9763 F:      arch/powerpc/platforms/powernv/copy-paste.h
9764 F:      arch/powerpc/platforms/powernv/vas*
9765
9766 IBM Power Virtual Ethernet Device Driver
9767 M:      Nick Child <[email protected]>
9768 L:      [email protected]
9769 S:      Supported
9770 F:      drivers/net/ethernet/ibm/ibmveth.*
9771
9772 IBM Power Virtual FC Device Drivers
9773 M:      Tyrel Datwyler <[email protected]>
9774 L:      [email protected]
9775 S:      Supported
9776 F:      drivers/scsi/ibmvscsi/ibmvfc*
9777
9778 IBM Power Virtual Management Channel Driver
9779 M:      Brad Warrum <[email protected]>
9780 M:      Ritu Agarwal <[email protected]>
9781 S:      Supported
9782 F:      drivers/misc/ibmvmc.*
9783
9784 IBM Power Virtual SCSI Device Drivers
9785 M:      Tyrel Datwyler <[email protected]>
9786 L:      [email protected]
9787 S:      Supported
9788 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9789 F:      include/scsi/viosrp.h
9790
9791 IBM Power Virtual SCSI Device Target Driver
9792 M:      Michael Cyr <[email protected]>
9793 L:      [email protected]
9794 L:      [email protected]
9795 S:      Supported
9796 F:      drivers/scsi/ibmvscsi_tgt/
9797
9798 IBM Power VMX Cryptographic instructions
9799 M:      Breno Leitão <[email protected]>
9800 M:      Nayna Jain <[email protected]>
9801 M:      Paulo Flabiano Smorigo <[email protected]>
9802 L:      [email protected]
9803 S:      Supported
9804 F:      drivers/crypto/vmx/Kconfig
9805 F:      drivers/crypto/vmx/Makefile
9806 F:      drivers/crypto/vmx/aes*
9807 F:      drivers/crypto/vmx/ghash*
9808 F:      drivers/crypto/vmx/ppc-xlate.pl
9809 F:      drivers/crypto/vmx/vmx.c
9810
9811 IBM ServeRAID RAID DRIVER
9812 S:      Orphan
9813 F:      drivers/scsi/ips.*
9814
9815 ICH LPC AND GPIO DRIVER
9816 M:      Peter Tyser <[email protected]>
9817 S:      Maintained
9818 F:      drivers/gpio/gpio-ich.c
9819 F:      drivers/mfd/lpc_ich.c
9820
9821 ICY I2C DRIVER
9822 M:      Max Staudt <[email protected]>
9823 L:      [email protected]
9824 S:      Maintained
9825 F:      drivers/i2c/busses/i2c-icy.c
9826
9827 IDEAPAD LAPTOP EXTRAS DRIVER
9828 M:      Ike Panhc <[email protected]>
9829 L:      [email protected]
9830 S:      Maintained
9831 W:      http://launchpad.net/ideapad-laptop
9832 F:      drivers/platform/x86/ideapad-laptop.c
9833
9834 IDEAPAD LAPTOP SLIDEBAR DRIVER
9835 M:      Andrey Moiseev <[email protected]>
9836 L:      [email protected]
9837 S:      Maintained
9838 W:      https://github.com/o2genum/ideapad-slidebar
9839 F:      drivers/input/misc/ideapad_slidebar.c
9840
9841 IDMAPPED MOUNTS
9842 M:      Christian Brauner <[email protected]>
9843 M:      Seth Forshee <[email protected]>
9844 L:      [email protected]
9845 S:      Maintained
9846 T:      git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9847 F:      Documentation/filesystems/idmappings.rst
9848 F:      tools/testing/selftests/mount_setattr/
9849 F:      include/linux/mnt_idmapping.*
9850
9851 IDT VersaClock 5 CLOCK DRIVER
9852 M:      Luca Ceresoli <[email protected]>
9853 S:      Maintained
9854 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9855 F:      drivers/clk/clk-versaclock5.c
9856
9857 IEEE 802.15.4 SUBSYSTEM
9858 M:      Alexander Aring <[email protected]>
9859 M:      Stefan Schmidt <[email protected]>
9860 M:      Miquel Raynal <[email protected]>
9861 L:      [email protected]
9862 S:      Maintained
9863 W:      https://linux-wpan.org/
9864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9866 F:      Documentation/networking/ieee802154.rst
9867 F:      drivers/net/ieee802154/
9868 F:      include/linux/ieee802154.h
9869 F:      include/linux/nl802154.h
9870 F:      include/net/af_ieee802154.h
9871 F:      include/net/cfg802154.h
9872 F:      include/net/ieee802154_netdev.h
9873 F:      include/net/mac802154.h
9874 F:      include/net/nl802154.h
9875 F:      net/ieee802154/
9876 F:      net/mac802154/
9877
9878 IFE PROTOCOL
9879 M:      Yotam Gigi <[email protected]>
9880 M:      Jamal Hadi Salim <[email protected]>
9881 F:      include/net/ife.h
9882 F:      include/uapi/linux/ife.h
9883 F:      net/ife
9884
9885 IGORPLUG-USB IR RECEIVER
9886 M:      Sean Young <[email protected]>
9887 L:      [email protected]
9888 S:      Maintained
9889 F:      drivers/media/rc/igorplugusb.c
9890
9891 IGUANAWORKS USB IR TRANSCEIVER
9892 M:      Sean Young <[email protected]>
9893 L:      [email protected]
9894 S:      Maintained
9895 F:      drivers/media/rc/iguanair.c
9896
9897 IIO DIGITAL POTENTIOMETER DAC
9898 M:      Peter Rosin <[email protected]>
9899 L:      [email protected]
9900 S:      Maintained
9901 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9902 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9903 F:      drivers/iio/dac/dpot-dac.c
9904
9905 IIO ENVELOPE DETECTOR
9906 M:      Peter Rosin <[email protected]>
9907 L:      [email protected]
9908 S:      Maintained
9909 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9910 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9911 F:      drivers/iio/adc/envelope-detector.c
9912
9913 IIO MULTIPLEXER
9914 M:      Peter Rosin <[email protected]>
9915 L:      [email protected]
9916 S:      Maintained
9917 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9918 F:      drivers/iio/multiplexer/iio-mux.c
9919
9920 IIO SCMI BASED DRIVER
9921 M:      Jyoti Bhayana <[email protected]>
9922 L:      [email protected]
9923 S:      Maintained
9924 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9925
9926 IIO SUBSYSTEM AND DRIVERS
9927 M:      Jonathan Cameron <[email protected]>
9928 R:      Lars-Peter Clausen <[email protected]>
9929 L:      [email protected]
9930 S:      Maintained
9931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9932 F:      Documentation/ABI/testing/configfs-iio*
9933 F:      Documentation/ABI/testing/sysfs-bus-iio*
9934 F:      Documentation/devicetree/bindings/iio/
9935 F:      drivers/iio/
9936 F:      drivers/staging/iio/
9937 F:      include/dt-bindings/iio/
9938 F:      include/linux/iio/
9939 F:      tools/iio/
9940
9941 IIO UNIT CONVERTER
9942 M:      Peter Rosin <[email protected]>
9943 L:      [email protected]
9944 S:      Maintained
9945 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9946 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9947 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9948 F:      drivers/iio/afe/iio-rescale.c
9949
9950 IKANOS/ADI EAGLE ADSL USB DRIVER
9951 M:      Matthieu Castet <[email protected]>
9952 M:      Stanislaw Gruszka <[email protected]>
9953 S:      Maintained
9954 F:      drivers/usb/atm/ueagle-atm.c
9955
9956 IMAGIS TOUCHSCREEN DRIVER
9957 M:      Markuss Broks <[email protected]>
9958 S:      Maintained
9959 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9960 F:      drivers/input/touchscreen/imagis.c
9961
9962 IMGTEC ASCII LCD DRIVER
9963 M:      Paul Burton <[email protected]>
9964 S:      Maintained
9965 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9966 F:      drivers/auxdisplay/img-ascii-lcd.c
9967
9968 IMGTEC IR DECODER DRIVER
9969 S:      Orphan
9970 F:      drivers/media/rc/img-ir/
9971
9972 IMON SOUNDGRAPH USB IR RECEIVER
9973 M:      Sean Young <[email protected]>
9974 L:      [email protected]
9975 S:      Maintained
9976 F:      drivers/media/rc/imon.c
9977 F:      drivers/media/rc/imon_raw.c
9978
9979 IMS TWINTURBO FRAMEBUFFER DRIVER
9980 L:      [email protected]
9981 S:      Orphan
9982 F:      drivers/video/fbdev/imsttfb.c
9983
9984 INA209 HARDWARE MONITOR DRIVER
9985 M:      Guenter Roeck <[email protected]>
9986 L:      [email protected]
9987 S:      Maintained
9988 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9989 F:      Documentation/hwmon/ina209.rst
9990 F:      drivers/hwmon/ina209.c
9991
9992 INA2XX HARDWARE MONITOR DRIVER
9993 M:      Guenter Roeck <[email protected]>
9994 L:      [email protected]
9995 S:      Maintained
9996 F:      Documentation/hwmon/ina2xx.rst
9997 F:      drivers/hwmon/ina2xx.c
9998 F:      include/linux/platform_data/ina2xx.h
9999
10000 INDEX OF FURTHER KERNEL DOCUMENTATION
10001 M:      Carlos Bilbao <[email protected]>
10002 S:      Maintained
10003 F:      Documentation/process/kernel-docs.rst
10004
10005 INDUSTRY PACK SUBSYSTEM (IPACK)
10006 M:      Samuel Iglesias Gonsalvez <[email protected]>
10007 M:      Jens Taprogge <[email protected]>
10008 M:      Greg Kroah-Hartman <[email protected]>
10009 L:      [email protected]
10010 S:      Maintained
10011 W:      http://industrypack.sourceforge.net
10012 F:      drivers/ipack/
10013
10014 INFINEON DPS310 Driver
10015 M:      Eddie James <[email protected]>
10016 L:      [email protected]
10017 S:      Maintained
10018 F:      drivers/iio/pressure/dps310.c
10019
10020 INFINIBAND SUBSYSTEM
10021 M:      Jason Gunthorpe <[email protected]>
10022 M:      Leon Romanovsky <[email protected]>
10023 L:      [email protected]
10024 S:      Supported
10025 W:      https://github.com/linux-rdma/rdma-core
10026 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
10028 F:      Documentation/devicetree/bindings/infiniband/
10029 F:      Documentation/infiniband/
10030 F:      drivers/infiniband/
10031 F:      include/rdma/
10032 F:      include/trace/events/ib_mad.h
10033 F:      include/trace/events/ib_umad.h
10034 F:      include/trace/misc/rdma.h
10035 F:      include/uapi/linux/if_infiniband.h
10036 F:      include/uapi/rdma/
10037 F:      samples/bpf/ibumad_kern.c
10038 F:      samples/bpf/ibumad_user.c
10039
10040 INGENIC JZ4780 NAND DRIVER
10041 M:      Harvey Hunt <[email protected]>
10042 L:      [email protected]
10043 L:      [email protected]
10044 S:      Maintained
10045 F:      drivers/mtd/nand/raw/ingenic/
10046
10047 INGENIC JZ47xx SoCs
10048 M:      Paul Cercueil <[email protected]>
10049 L:      [email protected]
10050 S:      Maintained
10051 F:      arch/mips/boot/dts/ingenic/
10052 F:      arch/mips/generic/board-ingenic.c
10053 F:      arch/mips/include/asm/mach-ingenic/
10054 F:      arch/mips/ingenic/Kconfig
10055 F:      drivers/clk/ingenic/
10056 F:      drivers/dma/dma-jz4780.c
10057 F:      drivers/gpu/drm/ingenic/
10058 F:      drivers/i2c/busses/i2c-jz4780.c
10059 F:      drivers/iio/adc/ingenic-adc.c
10060 F:      drivers/irqchip/irq-ingenic.c
10061 F:      drivers/memory/jz4780-nemc.c
10062 F:      drivers/mmc/host/jz4740_mmc.c
10063 F:      drivers/mtd/nand/raw/ingenic/
10064 F:      drivers/pinctrl/pinctrl-ingenic.c
10065 F:      drivers/power/supply/ingenic-battery.c
10066 F:      drivers/pwm/pwm-jz4740.c
10067 F:      drivers/remoteproc/ingenic_rproc.c
10068 F:      drivers/rtc/rtc-jz4740.c
10069 F:      drivers/tty/serial/8250/8250_ingenic.c
10070 F:      drivers/usb/musb/jz4740.c
10071 F:      drivers/watchdog/jz4740_wdt.c
10072 F:      include/dt-bindings/iio/adc/ingenic,adc.h
10073 F:      include/linux/mfd/ingenic-tcu.h
10074 F:      sound/soc/codecs/jz47*
10075 F:      sound/soc/jz4740/
10076
10077 INJOINIC IP5xxx POWER BANK IC DRIVER
10078 M:      Samuel Holland <[email protected]>
10079 S:      Maintained
10080 F:      drivers/power/supply/ip5xxx_power.c
10081
10082 INOTIFY
10083 M:      Jan Kara <[email protected]>
10084 R:      Amir Goldstein <[email protected]>
10085 L:      [email protected]
10086 S:      Maintained
10087 F:      Documentation/filesystems/inotify.rst
10088 F:      fs/notify/inotify/
10089 F:      include/linux/inotify.h
10090 F:      include/uapi/linux/inotify.h
10091
10092 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10093 M:      Dmitry Torokhov <[email protected]>
10094 L:      [email protected]
10095 S:      Maintained
10096 Q:      http://patchwork.kernel.org/project/linux-input/list/
10097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10098 F:      Documentation/devicetree/bindings/input/
10099 F:      Documentation/devicetree/bindings/serio/
10100 F:      Documentation/input/
10101 F:      drivers/input/
10102 F:      include/dt-bindings/input/
10103 F:      include/linux/input.h
10104 F:      include/linux/input/
10105 F:      include/uapi/linux/input-event-codes.h
10106 F:      include/uapi/linux/input.h
10107
10108 INPUT MULTITOUCH (MT) PROTOCOL
10109 M:      Henrik Rydberg <[email protected]>
10110 L:      [email protected]
10111 S:      Odd fixes
10112 F:      Documentation/input/multi-touch-protocol.rst
10113 F:      drivers/input/input-mt.c
10114 K:      \b(ABS|SYN)_MT_
10115
10116 INSIDE SECURE CRYPTO DRIVER
10117 M:      Antoine Tenart <[email protected]>
10118 L:      [email protected]
10119 S:      Maintained
10120 F:      drivers/crypto/inside-secure/
10121
10122 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10123 M:      Mimi Zohar <[email protected]>
10124 M:      Dmitry Kasatkin <[email protected]>
10125 L:      [email protected]
10126 S:      Supported
10127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10128 F:      security/integrity/ima/
10129 F:      security/integrity/
10130
10131 INTEL 810/815 FRAMEBUFFER DRIVER
10132 M:      Antonino Daplas <[email protected]>
10133 L:      [email protected]
10134 S:      Maintained
10135 F:      drivers/video/fbdev/i810/
10136
10137 INTEL 8255 GPIO DRIVER
10138 M:      William Breathitt Gray <[email protected]>
10139 L:      [email protected]
10140 S:      Maintained
10141 F:      drivers/gpio/gpio-i8255.c
10142 F:      drivers/gpio/gpio-i8255.h
10143
10144 INTEL ASoC DRIVERS
10145 M:      Cezary Rojewski <[email protected]>
10146 M:      Pierre-Louis Bossart <[email protected]>
10147 M:      Liam Girdwood <[email protected]>
10148 M:      Peter Ujfalusi <[email protected]>
10149 M:      Bard Liao <[email protected]>
10150 M:      Ranjani Sridharan <[email protected]>
10151 M:      Kai Vehmanen <[email protected]>
10152 L:      [email protected] (moderated for non-subscribers)
10153 S:      Supported
10154 F:      sound/soc/intel/
10155
10156 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10157 M:      Hans de Goede <[email protected]>
10158 L:      [email protected]
10159 S:      Maintained
10160 F:      drivers/platform/x86/intel/atomisp2/pm.c
10161
10162 INTEL ATOMISP2 LED DRIVER
10163 M:      Hans de Goede <[email protected]>
10164 L:      [email protected]
10165 S:      Maintained
10166 F:      drivers/platform/x86/intel/atomisp2/led.c
10167
10168 INTEL BIOS SAR INT1092 DRIVER
10169 M:      Shravan Sudhakar <[email protected]>
10170 M:      Intel Corporation <[email protected]>
10171 L:      [email protected]
10172 S:      Maintained
10173 F:      drivers/platform/x86/intel/int1092/
10174
10175 INTEL BROXTON PMC DRIVER
10176 M:      Mika Westerberg <[email protected]>
10177 M:      Zha Qipeng <[email protected]>
10178 S:      Maintained
10179 F:      drivers/mfd/intel_pmc_bxt.c
10180 F:      include/linux/mfd/intel_pmc_bxt.h
10181
10182 INTEL C600 SERIES SAS CONTROLLER DRIVER
10183 M:      Artur Paszkiewicz <[email protected]>
10184 L:      [email protected]
10185 S:      Supported
10186 T:      git git://git.code.sf.net/p/intel-sas/isci
10187 F:      drivers/scsi/isci/
10188
10189 INTEL CPU family model numbers
10190 M:      Tony Luck <[email protected]>
10191 M:      [email protected]
10192 L:      [email protected]
10193 S:      Supported
10194 F:      arch/x86/include/asm/intel-family.h
10195
10196 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10197 M:      Jani Nikula <[email protected]>
10198 M:      Joonas Lahtinen <[email protected]>
10199 M:      Rodrigo Vivi <[email protected]>
10200 M:      Tvrtko Ursulin <[email protected]>
10201 L:      [email protected]
10202 S:      Supported
10203 W:      https://01.org/linuxgraphics/
10204 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10205 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10206 C:      irc://irc.oftc.net/intel-gfx
10207 T:      git git://anongit.freedesktop.org/drm-intel
10208 F:      Documentation/ABI/testing/sysfs-driver-intel-i915-hwmon
10209 F:      Documentation/gpu/i915.rst
10210 F:      drivers/gpu/drm/i915/
10211 F:      include/drm/i915*
10212 F:      include/uapi/drm/i915_drm.h
10213
10214 INTEL ETHERNET DRIVERS
10215 M:      Jesse Brandeburg <[email protected]>
10216 M:      Tony Nguyen <[email protected]>
10217 L:      [email protected] (moderated for non-subscribers)
10218 S:      Supported
10219 W:      http://www.intel.com/support/feedback.htm
10220 W:      http://e1000.sourceforge.net/
10221 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10224 F:      Documentation/networking/device_drivers/ethernet/intel/
10225 F:      drivers/net/ethernet/intel/
10226 F:      drivers/net/ethernet/intel/*/
10227 F:      include/linux/avf/virtchnl.h
10228 F:      include/linux/net/intel/iidc.h
10229
10230 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10231 M:      Mustafa Ismail <[email protected]>
10232 M:      Shiraz Saleem <[email protected]>
10233 L:      [email protected]
10234 S:      Supported
10235 F:      drivers/infiniband/hw/irdma/
10236 F:      include/uapi/rdma/irdma-abi.h
10237
10238 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10239 M:      Maik Broemme <[email protected]>
10240 L:      [email protected]
10241 S:      Maintained
10242 F:      Documentation/fb/intelfb.rst
10243 F:      drivers/video/fbdev/intelfb/
10244
10245 INTEL GPIO DRIVERS
10246 M:      Andy Shevchenko <[email protected]>
10247 L:      [email protected]
10248 S:      Supported
10249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10250 F:      drivers/gpio/gpio-ich.c
10251 F:      drivers/gpio/gpio-merrifield.c
10252 F:      drivers/gpio/gpio-ml-ioh.c
10253 F:      drivers/gpio/gpio-pch.c
10254 F:      drivers/gpio/gpio-sch.c
10255 F:      drivers/gpio/gpio-sodaville.c
10256
10257 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10258 M:      Zhenyu Wang <[email protected]>
10259 M:      Zhi Wang <[email protected]>
10260 L:      [email protected]
10261 L:      [email protected]
10262 S:      Supported
10263 W:      https://01.org/igvt-g
10264 T:      git https://github.com/intel/gvt-linux.git
10265 F:      drivers/gpu/drm/i915/gvt/
10266
10267 INTEL HID EVENT DRIVER
10268 M:      Alex Hung <[email protected]>
10269 L:      [email protected]
10270 S:      Maintained
10271 F:      drivers/platform/x86/intel/hid.c
10272
10273 INTEL I/OAT DMA DRIVER
10274 M:      Dave Jiang <[email protected]>
10275 R:      Dan Williams <[email protected]>
10276 L:      [email protected]
10277 S:      Supported
10278 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10279 F:      drivers/dma/ioat*
10280
10281 INTEL IDXD DRIVER
10282 M:      Fenghua Yu <[email protected]>
10283 M:      Dave Jiang <[email protected]>
10284 L:      [email protected]
10285 S:      Supported
10286 F:      drivers/dma/idxd/*
10287 F:      include/uapi/linux/idxd.h
10288
10289 INTEL IDLE DRIVER
10290 M:      Jacob Pan <[email protected]>
10291 M:      Len Brown <[email protected]>
10292 L:      [email protected]
10293 S:      Supported
10294 B:      https://bugzilla.kernel.org
10295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10296 F:      drivers/idle/intel_idle.c
10297
10298 INTEL IN FIELD SCAN (IFS) DEVICE
10299 M:      Jithu Joseph <[email protected]>
10300 R:      Ashok Raj <[email protected]>
10301 R:      Tony Luck <[email protected]>
10302 S:      Maintained
10303 F:      drivers/platform/x86/intel/ifs
10304 F:      include/trace/events/intel_ifs.h
10305
10306 INTEL INTEGRATED SENSOR HUB DRIVER
10307 M:      Srinivas Pandruvada <[email protected]>
10308 M:      Jiri Kosina <[email protected]>
10309 L:      [email protected]
10310 S:      Maintained
10311 F:      drivers/hid/intel-ish-hid/
10312
10313 INTEL IOMMU (VT-d)
10314 M:      David Woodhouse <[email protected]>
10315 M:      Lu Baolu <[email protected]>
10316 L:      [email protected]
10317 S:      Supported
10318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10319 F:      drivers/iommu/intel/
10320 F:      include/linux/intel-svm.h
10321
10322 INTEL IPU3 CSI-2 CIO2 DRIVER
10323 M:      Yong Zhi <[email protected]>
10324 M:      Sakari Ailus <[email protected]>
10325 M:      Bingbu Cao <[email protected]>
10326 M:      Dan Scally <[email protected]>
10327 R:      Tianshu Qiu <[email protected]>
10328 L:      [email protected]
10329 S:      Maintained
10330 T:      git git://linuxtv.org/media_tree.git
10331 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10332 F:      drivers/media/pci/intel/ipu3/
10333
10334 INTEL IPU3 CSI-2 IMGU DRIVER
10335 M:      Sakari Ailus <[email protected]>
10336 R:      Bingbu Cao <[email protected]>
10337 R:      Tianshu Qiu <[email protected]>
10338 L:      [email protected]
10339 S:      Maintained
10340 F:      Documentation/admin-guide/media/ipu3.rst
10341 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10342 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10343 F:      drivers/staging/media/ipu3/
10344
10345 INTEL IXP4XX CRYPTO SUPPORT
10346 M:      Corentin Labbe <[email protected]>
10347 L:      [email protected]
10348 S:      Maintained
10349 F:      drivers/crypto/ixp4xx_crypto.c
10350
10351 INTEL ISHTP ECLITE DRIVER
10352 M:      Sumesh K Naduvalath <[email protected]>
10353 L:      [email protected]
10354 S:      Supported
10355 F:      drivers/platform/x86/intel/ishtp_eclite.c
10356
10357 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10358 M:      Krzysztof Halasa <[email protected]>
10359 S:      Maintained
10360 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10361 F:      drivers/net/wan/ixp4xx_hss.c
10362 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10363 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10364 F:      include/linux/soc/ixp4xx/npe.h
10365 F:      include/linux/soc/ixp4xx/qmgr.h
10366
10367 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10368 M:      Deepak Saxena <[email protected]>
10369 S:      Maintained
10370 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10371 F:      drivers/char/hw_random/ixp4xx-rng.c
10372
10373 INTEL KEEM BAY DRM DRIVER
10374 M:      Anitha Chrisanthus <[email protected]>
10375 M:      Edmund Dea <[email protected]>
10376 S:      Maintained
10377 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10378 F:      drivers/gpu/drm/kmb/
10379
10380 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10381 M:      Daniele Alessandrelli <[email protected]>
10382 S:      Maintained
10383 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10384 F:      drivers/crypto/keembay/Kconfig
10385 F:      drivers/crypto/keembay/Makefile
10386 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10387 F:      drivers/crypto/keembay/ocs-aes.c
10388 F:      drivers/crypto/keembay/ocs-aes.h
10389
10390 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10391 M:      Daniele Alessandrelli <[email protected]>
10392 M:      Prabhjot Khurana <[email protected]>
10393 M:      Mark Gross <[email protected]>
10394 S:      Maintained
10395 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10396 F:      drivers/crypto/keembay/Kconfig
10397 F:      drivers/crypto/keembay/Makefile
10398 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10399
10400 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10401 M:      Daniele Alessandrelli <[email protected]>
10402 M:      Declan Murphy <[email protected]>
10403 S:      Maintained
10404 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10405 F:      drivers/crypto/keembay/Kconfig
10406 F:      drivers/crypto/keembay/Makefile
10407 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10408 F:      drivers/crypto/keembay/ocs-hcu.c
10409 F:      drivers/crypto/keembay/ocs-hcu.h
10410
10411 INTEL THUNDER BAY EMMC PHY DRIVER
10412 M:      Nandhini Srikandan <[email protected]>
10413 M:      Rashmi A <[email protected]>
10414 S:      Maintained
10415 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10416 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10417
10418 INTEL MANAGEMENT ENGINE (mei)
10419 M:      Tomas Winkler <[email protected]>
10420 L:      [email protected]
10421 S:      Supported
10422 F:      Documentation/driver-api/mei/*
10423 F:      drivers/misc/mei/
10424 F:      drivers/watchdog/mei_wdt.c
10425 F:      include/linux/mei_aux.h
10426 F:      include/linux/mei_cl_bus.h
10427 F:      include/uapi/linux/mei.h
10428 F:      samples/mei/*
10429
10430 INTEL MAX 10 BMC MFD DRIVER
10431 M:      Xu Yilun <[email protected]>
10432 R:      Tom Rix <[email protected]>
10433 S:      Maintained
10434 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10435 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10436 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10437 F:      drivers/mfd/intel-m10-bmc.c
10438 F:      include/linux/mfd/intel-m10-bmc.h
10439
10440 INTEL MENLOW THERMAL DRIVER
10441 M:      Sujith Thomas <[email protected]>
10442 L:      [email protected]
10443 S:      Supported
10444 F:      drivers/thermal/intel/intel_menlow.c
10445
10446 INTEL P-Unit IPC DRIVER
10447 M:      Zha Qipeng <[email protected]>
10448 L:      [email protected]
10449 S:      Maintained
10450 F:      arch/x86/include/asm/intel_punit_ipc.h
10451 F:      drivers/platform/x86/intel/punit_ipc.c
10452
10453 INTEL PMC CORE DRIVER
10454 M:      Rajneesh Bhardwaj <[email protected]>
10455 M:      David E Box <[email protected]>
10456 L:      [email protected]
10457 S:      Maintained
10458 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10459 F:      drivers/platform/x86/intel/pmc/
10460
10461 INTEL PMIC GPIO DRIVERS
10462 M:      Andy Shevchenko <[email protected]>
10463 S:      Supported
10464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10465 F:      drivers/gpio/gpio-*cove.c
10466
10467 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10468 M:      Andy Shevchenko <[email protected]>
10469 S:      Supported
10470 F:      drivers/mfd/intel_soc_pmic*
10471 F:      include/linux/mfd/intel_soc_pmic*
10472
10473 INTEL PMT DRIVERS
10474 M:      David E. Box <[email protected]>
10475 S:      Supported
10476 F:      drivers/platform/x86/intel/pmt/
10477
10478 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10479 M:      Stanislav Yakovlev <[email protected]>
10480 L:      [email protected]
10481 S:      Maintained
10482 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10483 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10484 F:      drivers/net/wireless/intel/ipw2x00/
10485
10486 INTEL PSTATE DRIVER
10487 M:      Srinivas Pandruvada <[email protected]>
10488 M:      Len Brown <[email protected]>
10489 L:      [email protected]
10490 S:      Supported
10491 F:      drivers/cpufreq/intel_pstate.c
10492
10493 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10494 M:      Jarkko Nikula <[email protected]>
10495 L:      [email protected]
10496 F:      drivers/counter/intel-qep.c
10497
10498 INTEL SCU DRIVERS
10499 M:      Mika Westerberg <[email protected]>
10500 S:      Maintained
10501 F:      arch/x86/include/asm/intel_scu_ipc.h
10502 F:      drivers/platform/x86/intel_scu_*
10503
10504 INTEL SDSI DRIVER
10505 M:      David E. Box <[email protected]>
10506 S:      Supported
10507 F:      drivers/platform/x86/intel/sdsi.c
10508 F:      tools/arch/x86/intel_sdsi/
10509 F:      tools/testing/selftests/drivers/sdsi/
10510
10511 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10512 M:      Daniel Scally <[email protected]>
10513 S:      Maintained
10514 F:      drivers/platform/x86/intel/int3472/
10515
10516 INTEL SPEED SELECT TECHNOLOGY
10517 M:      Srinivas Pandruvada <[email protected]>
10518 L:      [email protected]
10519 S:      Maintained
10520 F:      drivers/platform/x86/intel/speed_select_if/
10521 F:      include/uapi/linux/isst_if.h
10522 F:      tools/power/x86/intel-speed-select/
10523
10524 INTEL STRATIX10 FIRMWARE DRIVERS
10525 M:      Dinh Nguyen <[email protected]>
10526 L:      [email protected]
10527 S:      Maintained
10528 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10529 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10530 F:      drivers/firmware/stratix10-rsu.c
10531 F:      drivers/firmware/stratix10-svc.c
10532 F:      include/linux/firmware/intel/stratix10-smc.h
10533 F:      include/linux/firmware/intel/stratix10-svc-client.h
10534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10535
10536 INTEL TELEMETRY DRIVER
10537 M:      Rajneesh Bhardwaj <[email protected]>
10538 M:      "David E. Box" <[email protected]>
10539 L:      [email protected]
10540 S:      Maintained
10541 F:      arch/x86/include/asm/intel_telemetry.h
10542 F:      drivers/platform/x86/intel/telemetry/
10543
10544 INTEL TPMI DRIVER
10545 M:      Srinivas Pandruvada <[email protected]>
10546 L:      [email protected]
10547 S:      Maintained
10548 F:      drivers/platform/x86/intel/tpmi.c
10549 F:      include/linux/intel_tpmi.h
10550
10551 INTEL UNCORE FREQUENCY CONTROL
10552 M:      Srinivas Pandruvada <[email protected]>
10553 L:      [email protected]
10554 S:      Maintained
10555 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10556 F:      drivers/platform/x86/intel/uncore-frequency/
10557
10558 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10559 M:      David E. Box <[email protected]>
10560 S:      Supported
10561 F:      drivers/platform/x86/intel/vsec.*
10562
10563 INTEL VIRTUAL BUTTON DRIVER
10564 M:      AceLan Kao <[email protected]>
10565 L:      [email protected]
10566 S:      Maintained
10567 F:      drivers/platform/x86/intel/vbtn.c
10568
10569 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10570 M:      Stanislaw Gruszka <[email protected]>
10571 L:      [email protected]
10572 S:      Supported
10573 F:      drivers/net/wireless/intel/iwlegacy/
10574
10575 INTEL WIRELESS WIFI LINK (iwlwifi)
10576 M:      Gregory Greenman <[email protected]>
10577 L:      [email protected]
10578 S:      Supported
10579 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10581 F:      drivers/net/wireless/intel/iwlwifi/
10582
10583 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10584 M:      Jithu Joseph <[email protected]>
10585 R:      Maurice Ma <[email protected]>
10586 S:      Maintained
10587 W:      https://slimbootloader.github.io/security/firmware-update.html
10588 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10589
10590 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10591 L:      [email protected]
10592 S:      Maintained
10593 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10594
10595 INTEL WWAN IOSM DRIVER
10596 M:      M Chetan Kumar <[email protected]>
10597 M:      Intel Corporation <[email protected]>
10598 L:      [email protected]
10599 S:      Maintained
10600 F:      drivers/net/wwan/iosm/
10601
10602 INTEL(R) TRACE HUB
10603 M:      Alexander Shishkin <[email protected]>
10604 S:      Supported
10605 F:      Documentation/trace/intel_th.rst
10606 F:      drivers/hwtracing/intel_th/
10607 F:      include/linux/intel_th.h
10608
10609 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10610 M:      Ning Sun <[email protected]>
10611 L:      [email protected]
10612 S:      Supported
10613 W:      http://tboot.sourceforge.net
10614 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10615 F:      Documentation/x86/intel_txt.rst
10616 F:      arch/x86/kernel/tboot.c
10617 F:      include/linux/tboot.h
10618
10619 INTEL SGX
10620 M:      Jarkko Sakkinen <[email protected]>
10621 R:      Dave Hansen <[email protected]>
10622 L:      [email protected]
10623 S:      Supported
10624 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10626 F:      Documentation/x86/sgx.rst
10627 F:      arch/x86/entry/vdso/vsgx.S
10628 F:      arch/x86/include/asm/sgx.h
10629 F:      arch/x86/include/uapi/asm/sgx.h
10630 F:      arch/x86/kernel/cpu/sgx/*
10631 F:      tools/testing/selftests/sgx/*
10632 K:      \bSGX_
10633
10634 INTERCONNECT API
10635 M:      Georgi Djakov <[email protected]>
10636 L:      [email protected]
10637 S:      Maintained
10638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10639 F:      Documentation/devicetree/bindings/interconnect/
10640 F:      Documentation/driver-api/interconnect.rst
10641 F:      drivers/interconnect/
10642 F:      include/dt-bindings/interconnect/
10643 F:      include/linux/interconnect-provider.h
10644 F:      include/linux/interconnect.h
10645
10646 INTERRUPT COUNTER DRIVER
10647 M:      Oleksij Rempel <[email protected]>
10648 R:      Pengutronix Kernel Team <[email protected]>
10649 L:      [email protected]
10650 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10651 F:      drivers/counter/interrupt-cnt.c
10652
10653 INTERSIL ISL7998X VIDEO DECODER DRIVER
10654 M:      Michael Tretter <[email protected]>
10655 R:      Pengutronix Kernel Team <[email protected]>
10656 L:      [email protected]
10657 S:      Maintained
10658 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10659 F:      drivers/media/i2c/isl7998x.c
10660
10661 INVENSENSE ICM-426xx IMU DRIVER
10662 M:      Jean-Baptiste Maneyrol <[email protected]>
10663 L:      [email protected]
10664 S:      Maintained
10665 W:      https://invensense.tdk.com/
10666 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10667 F:      drivers/iio/imu/inv_icm42600/
10668
10669 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10670 M:      Linus Walleij <[email protected]>
10671 L:      [email protected]
10672 S:      Maintained
10673 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10674 F:      drivers/iio/gyro/mpu3050*
10675
10676 IOC3 ETHERNET DRIVER
10677 M:      Ralf Baechle <[email protected]>
10678 L:      [email protected]
10679 S:      Maintained
10680 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10681
10682 IOMAP FILESYSTEM LIBRARY
10683 M:      Christoph Hellwig <[email protected]>
10684 M:      Darrick J. Wong <[email protected]>
10685 L:      [email protected]
10686 L:      [email protected]
10687 S:      Supported
10688 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10689 F:      fs/iomap/
10690 F:      include/linux/iomap.h
10691
10692 IOMMU DMA-API LAYER
10693 M:      Robin Murphy <[email protected]>
10694 L:      [email protected]
10695 S:      Maintained
10696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10697 F:      drivers/iommu/dma-iommu.c
10698 F:      drivers/iommu/dma-iommu.h
10699 F:      drivers/iommu/iova.c
10700 F:      include/linux/iova.h
10701
10702 IOMMUFD
10703 M:      Jason Gunthorpe <[email protected]>
10704 M:      Kevin Tian <[email protected]>
10705 L:      [email protected]
10706 S:      Maintained
10707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
10708 F:      Documentation/userspace-api/iommufd.rst
10709 F:      drivers/iommu/iommufd/
10710 F:      include/linux/iommufd.h
10711 F:      include/uapi/linux/iommufd.h
10712 F:      tools/testing/selftests/iommu/
10713
10714 IOMMU SUBSYSTEM
10715 M:      Joerg Roedel <[email protected]>
10716 M:      Will Deacon <[email protected]>
10717 R:      Robin Murphy <[email protected]>
10718 L:      [email protected]
10719 S:      Maintained
10720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10721 F:      Documentation/devicetree/bindings/iommu/
10722 F:      Documentation/userspace-api/iommu.rst
10723 F:      drivers/iommu/
10724 F:      include/linux/iommu.h
10725 F:      include/linux/iova.h
10726 F:      include/linux/of_iommu.h
10727 F:      include/uapi/linux/iommu.h
10728
10729 IOSYS-MAP HELPERS
10730 M:      Thomas Zimmermann <[email protected]>
10731 L:      [email protected]
10732 S:      Maintained
10733 T:      git git://anongit.freedesktop.org/drm/drm-misc
10734 F:      include/linux/iosys-map.h
10735
10736 IO_URING
10737 M:      Jens Axboe <[email protected]>
10738 R:      Pavel Begunkov <[email protected]>
10739 L:      [email protected]
10740 S:      Maintained
10741 T:      git git://git.kernel.dk/linux-block
10742 T:      git git://git.kernel.dk/liburing
10743 F:      io_uring/
10744 F:      include/linux/io_uring.h
10745 F:      include/linux/io_uring_types.h
10746 F:      include/trace/events/io_uring.h
10747 F:      include/uapi/linux/io_uring.h
10748 F:      tools/io_uring/
10749
10750 IPMI SUBSYSTEM
10751 M:      Corey Minyard <[email protected]>
10752 L:      [email protected] (moderated for non-subscribers)
10753 S:      Supported
10754 W:      http://openipmi.sourceforge.net/
10755 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10756 F:      Documentation/driver-api/ipmi.rst
10757 F:      Documentation/devicetree/bindings/ipmi/
10758 F:      drivers/char/ipmi/
10759 F:      include/linux/ipmi*
10760 F:      include/uapi/linux/ipmi*
10761
10762 IPS SCSI RAID DRIVER
10763 M:      Adaptec OEM Raid Solutions <[email protected]>
10764 L:      [email protected]
10765 S:      Maintained
10766 W:      http://www.adaptec.com/
10767 F:      drivers/scsi/ips*
10768
10769 IPVS
10770 M:      Simon Horman <[email protected]>
10771 M:      Julian Anastasov <[email protected]>
10772 L:      [email protected]
10773 L:      [email protected]
10774 S:      Maintained
10775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10777 F:      Documentation/networking/ipvs-sysctl.rst
10778 F:      include/net/ip_vs.h
10779 F:      include/uapi/linux/ip_vs.h
10780 F:      net/netfilter/ipvs/
10781
10782 IPWIRELESS DRIVER
10783 M:      Jiri Kosina <[email protected]>
10784 M:      David Sterba <[email protected]>
10785 S:      Odd Fixes
10786 F:      drivers/tty/ipwireless/
10787
10788 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10789 M:      Marc Zyngier <[email protected]>
10790 S:      Maintained
10791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10792 F:      Documentation/core-api/irq/irq-domain.rst
10793 F:      include/linux/irqdomain.h
10794 F:      kernel/irq/irqdomain.c
10795 F:      kernel/irq/msi.c
10796
10797 IRQ SUBSYSTEM
10798 M:      Thomas Gleixner <[email protected]>
10799 L:      [email protected]
10800 S:      Maintained
10801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10802 F:      kernel/irq/
10803 F:      include/linux/group_cpus.h
10804 F:      lib/group_cpus.c
10805
10806 IRQCHIP DRIVERS
10807 M:      Thomas Gleixner <[email protected]>
10808 M:      Marc Zyngier <[email protected]>
10809 L:      [email protected]
10810 S:      Maintained
10811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10812 F:      Documentation/devicetree/bindings/interrupt-controller/
10813 F:      drivers/irqchip/
10814
10815 ISA
10816 M:      William Breathitt Gray <[email protected]>
10817 S:      Maintained
10818 F:      Documentation/driver-api/isa.rst
10819 F:      drivers/base/isa.c
10820 F:      include/linux/isa.h
10821
10822 ISA RADIO MODULE
10823 M:      Hans Verkuil <[email protected]>
10824 L:      [email protected]
10825 S:      Maintained
10826 W:      https://linuxtv.org
10827 T:      git git://linuxtv.org/media_tree.git
10828 F:      drivers/media/radio/radio-isa*
10829
10830 ISAPNP
10831 M:      Jaroslav Kysela <[email protected]>
10832 S:      Maintained
10833 F:      Documentation/driver-api/isapnp.rst
10834 F:      drivers/pnp/isapnp/
10835 F:      include/linux/isapnp.h
10836
10837 ISCSI
10838 M:      Lee Duncan <[email protected]>
10839 M:      Chris Leech <[email protected]>
10840 M:      Mike Christie <[email protected]>
10841 L:      [email protected]
10842 L:      [email protected]
10843 S:      Maintained
10844 W:      www.open-iscsi.com
10845 F:      drivers/scsi/*iscsi*
10846 F:      include/scsi/*iscsi*
10847
10848 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10849 M:      Peter Jones <[email protected]>
10850 M:      Konrad Rzeszutek Wilk <[email protected]>
10851 S:      Maintained
10852 F:      drivers/firmware/iscsi_ibft*
10853
10854 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10855 M:      Sagi Grimberg <[email protected]>
10856 M:      Max Gurtovoy <[email protected]>
10857 L:      [email protected]
10858 S:      Supported
10859 W:      http://www.openfabrics.org
10860 W:      www.open-iscsi.org
10861 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10862 F:      drivers/infiniband/ulp/iser/
10863
10864 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10865 M:      Sagi Grimberg <[email protected]>
10866 L:      [email protected]
10867 L:      [email protected]
10868 S:      Supported
10869 W:      http://www.linux-iscsi.org
10870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10871 F:      drivers/infiniband/ulp/isert
10872
10873 ISDN/CMTP OVER BLUETOOTH
10874 M:      Karsten Keil <[email protected]>
10875 L:      [email protected] (subscribers-only)
10876 L:      [email protected]
10877 S:      Odd Fixes
10878 W:      http://www.isdn4linux.de
10879 F:      Documentation/isdn/
10880 F:      drivers/isdn/capi/
10881 F:      include/linux/isdn/
10882 F:      include/uapi/linux/isdn/
10883 F:      net/bluetooth/cmtp/
10884
10885 ISDN/mISDN SUBSYSTEM
10886 M:      Karsten Keil <[email protected]>
10887 L:      [email protected] (subscribers-only)
10888 L:      [email protected]
10889 S:      Maintained
10890 W:      http://www.isdn4linux.de
10891 F:      drivers/isdn/Kconfig
10892 F:      drivers/isdn/Makefile
10893 F:      drivers/isdn/hardware/
10894 F:      drivers/isdn/mISDN/
10895
10896 ISOFS FILESYSTEM
10897 M:      Jan Kara <[email protected]>
10898 L:      [email protected]
10899 S:      Maintained
10900 F:      Documentation/filesystems/isofs.rst
10901 F:      fs/isofs/
10902
10903 IT87 HARDWARE MONITORING DRIVER
10904 M:      Jean Delvare <[email protected]>
10905 L:      [email protected]
10906 S:      Maintained
10907 F:      Documentation/hwmon/it87.rst
10908 F:      drivers/hwmon/it87.c
10909
10910 IT913X MEDIA DRIVER
10911 M:      Antti Palosaari <[email protected]>
10912 L:      [email protected]
10913 S:      Maintained
10914 W:      https://linuxtv.org
10915 W:      http://palosaari.fi/linux/
10916 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10917 T:      git git://linuxtv.org/anttip/media_tree.git
10918 F:      drivers/media/tuners/it913x*
10919
10920 ITE IT66121 HDMI BRIDGE DRIVER
10921 M:      Phong LE <[email protected]>
10922 M:      Neil Armstrong <[email protected]>
10923 S:      Maintained
10924 T:      git git://anongit.freedesktop.org/drm/drm-misc
10925 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10926 F:      drivers/gpu/drm/bridge/ite-it66121.c
10927
10928 IVTV VIDEO4LINUX DRIVER
10929 M:      Andy Walls <[email protected]>
10930 L:      [email protected]
10931 S:      Maintained
10932 W:      https://linuxtv.org
10933 T:      git git://linuxtv.org/media_tree.git
10934 F:      Documentation/admin-guide/media/ivtv*
10935 F:      drivers/media/pci/ivtv/
10936 F:      include/uapi/linux/ivtv*
10937
10938 IX2505V MEDIA DRIVER
10939 M:      Malcolm Priestley <[email protected]>
10940 L:      [email protected]
10941 S:      Maintained
10942 W:      https://linuxtv.org
10943 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10944 F:      drivers/media/dvb-frontends/ix2505v*
10945
10946 JAILHOUSE HYPERVISOR INTERFACE
10947 M:      Jan Kiszka <[email protected]>
10948 L:      [email protected]
10949 S:      Maintained
10950 F:      arch/x86/include/asm/jailhouse_para.h
10951 F:      arch/x86/kernel/jailhouse.c
10952
10953 JC42.4 TEMPERATURE SENSOR DRIVER
10954 M:      Guenter Roeck <[email protected]>
10955 L:      [email protected]
10956 S:      Maintained
10957 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10958 F:      Documentation/hwmon/jc42.rst
10959 F:      drivers/hwmon/jc42.c
10960
10961 JFS FILESYSTEM
10962 M:      Dave Kleikamp <[email protected]>
10963 L:      [email protected]
10964 S:      Odd Fixes
10965 W:      http://jfs.sourceforge.net/
10966 T:      git https://github.com/kleikamp/linux-shaggy.git
10967 F:      Documentation/admin-guide/jfs.rst
10968 F:      fs/jfs/
10969
10970 JME NETWORK DRIVER
10971 M:      Guo-Fu Tseng <[email protected]>
10972 L:      [email protected]
10973 S:      Maintained
10974 F:      drivers/net/ethernet/jme.*
10975
10976 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10977 M:      David Woodhouse <[email protected]>
10978 M:      Richard Weinberger <[email protected]>
10979 L:      [email protected]
10980 S:      Odd Fixes
10981 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10982 T:      git git://git.infradead.org/ubifs-2.6.git
10983 F:      fs/jffs2/
10984 F:      include/uapi/linux/jffs2.h
10985
10986 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10987 M:      "Theodore Ts'o" <[email protected]>
10988 M:      Jan Kara <[email protected]>
10989 L:      [email protected]
10990 S:      Maintained
10991 F:      fs/jbd2/
10992 F:      include/linux/jbd2.h
10993
10994 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10995 M:      Mikhail Ulyanov <[email protected]>
10996 L:      [email protected]
10997 L:      [email protected]
10998 S:      Maintained
10999 F:      drivers/media/platform/renesas/rcar_jpu.c
11000
11001 JSM Neo PCI based serial card
11002 L:      [email protected]
11003 S:      Orphan
11004 F:      drivers/tty/serial/jsm/
11005
11006 K10TEMP HARDWARE MONITORING DRIVER
11007 M:      Clemens Ladisch <[email protected]>
11008 L:      [email protected]
11009 S:      Maintained
11010 F:      Documentation/hwmon/k10temp.rst
11011 F:      drivers/hwmon/k10temp.c
11012
11013 K8TEMP HARDWARE MONITORING DRIVER
11014 M:      Rudolf Marek <[email protected]>
11015 L:      [email protected]
11016 S:      Maintained
11017 F:      Documentation/hwmon/k8temp.rst
11018 F:      drivers/hwmon/k8temp.c
11019
11020 KASAN
11021 M:      Andrey Ryabinin <[email protected]>
11022 R:      Alexander Potapenko <[email protected]>
11023 R:      Andrey Konovalov <[email protected]>
11024 R:      Dmitry Vyukov <[email protected]>
11025 R:      Vincenzo Frascino <[email protected]>
11026 L:      [email protected]
11027 S:      Maintained
11028 F:      Documentation/dev-tools/kasan.rst
11029 F:      arch/*/include/asm/*kasan.h
11030 F:      arch/*/mm/kasan_init*
11031 F:      include/linux/kasan*.h
11032 F:      lib/Kconfig.kasan
11033 F:      mm/kasan/
11034 F:      scripts/Makefile.kasan
11035
11036 KCONFIG
11037 M:      Masahiro Yamada <[email protected]>
11038 L:      [email protected]
11039 S:      Maintained
11040 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
11042 F:      Documentation/kbuild/kconfig*
11043 F:      scripts/Kconfig.include
11044 F:      scripts/kconfig/
11045
11046 KCOV
11047 R:      Dmitry Vyukov <[email protected]>
11048 R:      Andrey Konovalov <[email protected]>
11049 L:      [email protected]
11050 S:      Maintained
11051 F:      Documentation/dev-tools/kcov.rst
11052 F:      include/linux/kcov.h
11053 F:      include/uapi/linux/kcov.h
11054 F:      kernel/kcov.c
11055 F:      scripts/Makefile.kcov
11056
11057 KCSAN
11058 M:      Marco Elver <[email protected]>
11059 R:      Dmitry Vyukov <[email protected]>
11060 L:      [email protected]
11061 S:      Maintained
11062 F:      Documentation/dev-tools/kcsan.rst
11063 F:      include/linux/kcsan*.h
11064 F:      kernel/kcsan/
11065 F:      lib/Kconfig.kcsan
11066 F:      scripts/Makefile.kcsan
11067
11068 KDUMP
11069 M:      Baoquan He <[email protected]>
11070 R:      Vivek Goyal <[email protected]>
11071 R:      Dave Young <[email protected]>
11072 L:      [email protected]
11073 S:      Maintained
11074 W:      http://lse.sourceforge.net/kdump/
11075 F:      Documentation/admin-guide/kdump/
11076 F:      fs/proc/vmcore.c
11077 F:      include/linux/crash_core.h
11078 F:      include/linux/crash_dump.h
11079 F:      include/uapi/linux/vmcore.h
11080 F:      kernel/crash_*.c
11081
11082 KEENE FM RADIO TRANSMITTER DRIVER
11083 M:      Hans Verkuil <[email protected]>
11084 L:      [email protected]
11085 S:      Maintained
11086 W:      https://linuxtv.org
11087 T:      git git://linuxtv.org/media_tree.git
11088 F:      drivers/media/radio/radio-keene*
11089
11090 KERNEL AUTOMOUNTER
11091 M:      Ian Kent <[email protected]>
11092 L:      [email protected]
11093 S:      Maintained
11094 F:      fs/autofs/
11095
11096 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11097 M:      Masahiro Yamada <[email protected]>
11098 R:      Nathan Chancellor <[email protected]>
11099 R:      Nick Desaulniers <[email protected]>
11100 R:      Nicolas Schier <[email protected]>
11101 L:      [email protected]
11102 S:      Maintained
11103 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11105 F:      Documentation/kbuild/
11106 F:      Makefile
11107 F:      scripts/*vmlinux*
11108 F:      scripts/Kbuild*
11109 F:      scripts/Makefile*
11110 F:      scripts/basic/
11111 F:      scripts/dummy-tools/
11112 F:      scripts/mk*
11113 F:      scripts/mod/
11114 F:      scripts/package/
11115
11116 KERNEL HARDENING (not covered by other areas)
11117 M:      Kees Cook <[email protected]>
11118 L:      [email protected]
11119 S:      Supported
11120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11121 F:      Documentation/ABI/testing/sysfs-kernel-oops_count
11122 F:      Documentation/ABI/testing/sysfs-kernel-warn_count
11123 F:      include/linux/overflow.h
11124 F:      include/linux/randomize_kstack.h
11125 F:      mm/usercopy.c
11126 K:      \b(add|choose)_random_kstack_offset\b
11127 K:      \b__check_(object_size|heap_object)\b
11128
11129 KERNEL JANITORS
11130 L:      [email protected]
11131 S:      Odd Fixes
11132 W:      http://kernelnewbies.org/KernelJanitors
11133
11134 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11135 M:      Chuck Lever <[email protected]>
11136 M:      Jeff Layton <[email protected]>
11137 L:      [email protected]
11138 S:      Supported
11139 W:      http://nfs.sourceforge.net/
11140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11141 F:      fs/exportfs/
11142 F:      fs/lockd/
11143 F:      fs/nfs_common/
11144 F:      fs/nfsd/
11145 F:      include/linux/lockd/
11146 F:      include/linux/sunrpc/
11147 F:      include/trace/events/rpcgss.h
11148 F:      include/trace/events/rpcrdma.h
11149 F:      include/trace/events/sunrpc.h
11150 F:      include/trace/misc/fs.h
11151 F:      include/trace/misc/nfs.h
11152 F:      include/trace/misc/sunrpc.h
11153 F:      include/uapi/linux/nfsd/
11154 F:      include/uapi/linux/sunrpc/
11155 F:      net/sunrpc/
11156 F:      Documentation/filesystems/nfs/
11157
11158 KERNEL REGRESSIONS
11159 M:      Thorsten Leemhuis <[email protected]>
11160 L:      [email protected]
11161 S:      Supported
11162 F:      Documentation/admin-guide/reporting-regressions.rst
11163 F:      Documentation/process/handling-regressions.rst
11164
11165 KERNEL SELFTEST FRAMEWORK
11166 M:      Shuah Khan <[email protected]>
11167 M:      Shuah Khan <[email protected]>
11168 L:      [email protected]
11169 S:      Maintained
11170 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11172 F:      Documentation/dev-tools/kselftest*
11173 F:      tools/testing/selftests/
11174
11175 KERNEL SMB3 SERVER (KSMBD)
11176 M:      Namjae Jeon <[email protected]>
11177 M:      Steve French <[email protected]>
11178 R:      Sergey Senozhatsky <[email protected]>
11179 R:      Tom Talpey <[email protected]>
11180 L:      [email protected]
11181 S:      Maintained
11182 T:      git git://git.samba.org/ksmbd.git
11183 F:      Documentation/filesystems/cifs/ksmbd.rst
11184 F:      fs/ksmbd/
11185 F:      fs/smbfs_common/
11186
11187 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11188 M:      Brendan Higgins <[email protected]>
11189 M:      David Gow <[email protected]>
11190 L:      [email protected]
11191 L:      [email protected]
11192 S:      Maintained
11193 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11194 F:      Documentation/dev-tools/kunit/
11195 F:      include/kunit/
11196 F:      lib/kunit/
11197 F:      tools/testing/kunit/
11198
11199 KERNEL USERMODE HELPER
11200 M:      Luis Chamberlain <[email protected]>
11201 L:      [email protected]
11202 S:      Maintained
11203 F:      include/linux/umh.h
11204 F:      kernel/umh.c
11205
11206 KERNEL VIRTUAL MACHINE (KVM)
11207 M:      Paolo Bonzini <[email protected]>
11208 L:      [email protected]
11209 S:      Supported
11210 W:      http://www.linux-kvm.org
11211 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11212 F:      Documentation/virt/kvm/
11213 F:      include/asm-generic/kvm*
11214 F:      include/kvm/iodev.h
11215 F:      include/linux/kvm*
11216 F:      include/trace/events/kvm.h
11217 F:      include/uapi/asm-generic/kvm*
11218 F:      include/uapi/linux/kvm*
11219 F:      tools/kvm/
11220 F:      tools/testing/selftests/kvm/
11221 F:      virt/kvm/*
11222
11223 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11224 M:      Marc Zyngier <[email protected]>
11225 R:      James Morse <[email protected]>
11226 R:      Suzuki K Poulose <[email protected]>
11227 R:      Oliver Upton <[email protected]>
11228 R:      Zenghui Yu <[email protected]>
11229 L:      [email protected] (moderated for non-subscribers)
11230 L:      [email protected]
11231 L:      [email protected] (deprecated, moderated for non-subscribers)
11232 S:      Maintained
11233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11234 F:      arch/arm64/include/asm/kvm*
11235 F:      arch/arm64/include/uapi/asm/kvm*
11236 F:      arch/arm64/kvm/
11237 F:      include/kvm/arm_*
11238 F:      tools/testing/selftests/kvm/*/aarch64/
11239 F:      tools/testing/selftests/kvm/aarch64/
11240
11241 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11242 M:      Huacai Chen <[email protected]>
11243 M:      Aleksandar Markovic <[email protected]>
11244 L:      [email protected]
11245 L:      [email protected]
11246 S:      Maintained
11247 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11248 F:      arch/mips/include/asm/kvm*
11249 F:      arch/mips/include/uapi/asm/kvm*
11250 F:      arch/mips/kvm/
11251
11252 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11253 L:      [email protected]
11254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11255 F:      arch/powerpc/include/asm/kvm*
11256 F:      arch/powerpc/include/uapi/asm/kvm*
11257 F:      arch/powerpc/kernel/kvm*
11258 F:      arch/powerpc/kvm/
11259
11260 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11261 M:      Anup Patel <[email protected]>
11262 R:      Atish Patra <[email protected]>
11263 L:      [email protected]
11264 L:      [email protected]
11265 L:      [email protected]
11266 S:      Maintained
11267 T:      git https://github.com/kvm-riscv/linux.git
11268 F:      arch/riscv/include/asm/kvm*
11269 F:      arch/riscv/include/uapi/asm/kvm*
11270 F:      arch/riscv/kvm/
11271 F:      tools/testing/selftests/kvm/*/riscv/
11272
11273 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11274 M:      Christian Borntraeger <[email protected]>
11275 M:      Janosch Frank <[email protected]>
11276 M:      Claudio Imbrenda <[email protected]>
11277 R:      David Hildenbrand <[email protected]>
11278 L:      [email protected]
11279 S:      Supported
11280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11281 F:      Documentation/virt/kvm/s390*
11282 F:      arch/s390/include/asm/gmap.h
11283 F:      arch/s390/include/asm/kvm*
11284 F:      arch/s390/include/uapi/asm/kvm*
11285 F:      arch/s390/include/uapi/asm/uvdevice.h
11286 F:      arch/s390/kernel/uv.c
11287 F:      arch/s390/kvm/
11288 F:      arch/s390/mm/gmap.c
11289 F:      drivers/s390/char/uvdevice.c
11290 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11291 F:      tools/testing/selftests/kvm/*/s390x/
11292 F:      tools/testing/selftests/kvm/s390x/
11293
11294 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11295 M:      Sean Christopherson <[email protected]>
11296 M:      Paolo Bonzini <[email protected]>
11297 L:      [email protected]
11298 S:      Supported
11299 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11300 F:      arch/x86/include/asm/kvm*
11301 F:      arch/x86/include/asm/svm.h
11302 F:      arch/x86/include/asm/vmx*.h
11303 F:      arch/x86/include/uapi/asm/kvm*
11304 F:      arch/x86/include/uapi/asm/svm.h
11305 F:      arch/x86/include/uapi/asm/vmx.h
11306 F:      arch/x86/kvm/
11307 F:      arch/x86/kvm/*/
11308
11309 KVM PARAVIRT (KVM/paravirt)
11310 M:      Paolo Bonzini <[email protected]>
11311 R:      Wanpeng Li <[email protected]>
11312 R:      Vitaly Kuznetsov <[email protected]>
11313 L:      [email protected]
11314 S:      Supported
11315 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11316 F:      arch/x86/kernel/kvm.c
11317 F:      arch/x86/kernel/kvmclock.c
11318 F:      arch/x86/include/asm/pvclock-abi.h
11319 F:      include/linux/kvm_para.h
11320 F:      include/uapi/linux/kvm_para.h
11321 F:      include/uapi/asm-generic/kvm_para.h
11322 F:      include/asm-generic/kvm_para.h
11323 F:      arch/um/include/asm/kvm_para.h
11324 F:      arch/x86/include/asm/kvm_para.h
11325 F:      arch/x86/include/uapi/asm/kvm_para.h
11326
11327 KVM X86 HYPER-V (KVM/hyper-v)
11328 M:      Vitaly Kuznetsov <[email protected]>
11329 M:      Sean Christopherson <[email protected]>
11330 M:      Paolo Bonzini <[email protected]>
11331 L:      [email protected]
11332 S:      Supported
11333 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11334 F:      arch/x86/kvm/hyperv.*
11335 F:      arch/x86/kvm/kvm_onhyperv.*
11336 F:      arch/x86/kvm/svm/hyperv.*
11337 F:      arch/x86/kvm/svm/svm_onhyperv.*
11338 F:      arch/x86/kvm/vmx/hyperv.*
11339
11340 KVM X86 Xen (KVM/Xen)
11341 M:      David Woodhouse <[email protected]>
11342 M:      Paul Durrant <[email protected]>
11343 M:      Sean Christopherson <[email protected]>
11344 M:      Paolo Bonzini <[email protected]>
11345 L:      [email protected]
11346 S:      Supported
11347 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11348 F:      arch/x86/kvm/xen.*
11349
11350 KERNFS
11351 M:      Greg Kroah-Hartman <[email protected]>
11352 M:      Tejun Heo <[email protected]>
11353 S:      Supported
11354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11355 F:      fs/kernfs/
11356 F:      include/linux/kernfs.h
11357
11358 KEXEC
11359 M:      Eric Biederman <[email protected]>
11360 L:      [email protected]
11361 S:      Maintained
11362 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11363 F:      include/linux/kexec.h
11364 F:      include/uapi/linux/kexec.h
11365 F:      kernel/kexec*
11366
11367 KEYS-ENCRYPTED
11368 M:      Mimi Zohar <[email protected]>
11369 L:      [email protected]
11370 L:      [email protected]
11371 S:      Supported
11372 F:      Documentation/security/keys/trusted-encrypted.rst
11373 F:      include/keys/encrypted-type.h
11374 F:      security/keys/encrypted-keys/
11375
11376 KEYS-TRUSTED
11377 M:      James Bottomley <[email protected]>
11378 M:      Jarkko Sakkinen <[email protected]>
11379 M:      Mimi Zohar <[email protected]>
11380 L:      [email protected]
11381 L:      [email protected]
11382 S:      Supported
11383 F:      Documentation/security/keys/trusted-encrypted.rst
11384 F:      include/keys/trusted-type.h
11385 F:      include/keys/trusted_tpm.h
11386 F:      security/keys/trusted-keys/
11387
11388 KEYS-TRUSTED-TEE
11389 M:      Sumit Garg <[email protected]>
11390 L:      [email protected]
11391 L:      [email protected]
11392 S:      Supported
11393 F:      include/keys/trusted_tee.h
11394 F:      security/keys/trusted-keys/trusted_tee.c
11395
11396 KEYS-TRUSTED-CAAM
11397 M:      Ahmad Fatoum <[email protected]>
11398 R:      Pengutronix Kernel Team <[email protected]>
11399 L:      [email protected]
11400 L:      [email protected]
11401 S:      Maintained
11402 F:      include/keys/trusted_caam.h
11403 F:      security/keys/trusted-keys/trusted_caam.c
11404
11405 KEYS/KEYRINGS
11406 M:      David Howells <[email protected]>
11407 M:      Jarkko Sakkinen <[email protected]>
11408 L:      [email protected]
11409 S:      Maintained
11410 F:      Documentation/security/keys/core.rst
11411 F:      include/keys/
11412 F:      include/linux/key-type.h
11413 F:      include/linux/key.h
11414 F:      include/linux/keyctl.h
11415 F:      include/uapi/linux/keyctl.h
11416 F:      security/keys/
11417
11418 KEYS/KEYRINGS_INTEGRITY
11419 M:      Jarkko Sakkinen <[email protected]>
11420 M:      Mimi Zohar <[email protected]>
11421 L:      [email protected]
11422 L:      [email protected]
11423 S:      Supported
11424 F:      security/integrity/platform_certs
11425
11426 KFENCE
11427 M:      Alexander Potapenko <[email protected]>
11428 M:      Marco Elver <[email protected]>
11429 R:      Dmitry Vyukov <[email protected]>
11430 L:      [email protected]
11431 S:      Maintained
11432 F:      Documentation/dev-tools/kfence.rst
11433 F:      arch/*/include/asm/kfence.h
11434 F:      include/linux/kfence.h
11435 F:      lib/Kconfig.kfence
11436 F:      mm/kfence/
11437
11438 KFIFO
11439 M:      Stefani Seibold <[email protected]>
11440 S:      Maintained
11441 F:      include/linux/kfifo.h
11442 F:      lib/kfifo.c
11443 F:      samples/kfifo/
11444
11445 KGDB / KDB /debug_core
11446 M:      Jason Wessel <[email protected]>
11447 M:      Daniel Thompson <[email protected]>
11448 R:      Douglas Anderson <[email protected]>
11449 L:      [email protected]
11450 S:      Maintained
11451 W:      http://kgdb.wiki.kernel.org/
11452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11453 F:      Documentation/dev-tools/kgdb.rst
11454 F:      drivers/misc/kgdbts.c
11455 F:      drivers/tty/serial/kgdboc.c
11456 F:      include/linux/kdb.h
11457 F:      include/linux/kgdb.h
11458 F:      kernel/debug/
11459 F:      kernel/module/kdb.c
11460
11461 KHADAS MCU MFD DRIVER
11462 M:      Neil Armstrong <[email protected]>
11463 L:      [email protected]
11464 S:      Maintained
11465 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11466 F:      drivers/mfd/khadas-mcu.c
11467 F:      include/linux/mfd/khadas-mcu.h
11468 F:      drivers/thermal/khadas_mcu_fan.c
11469
11470 KIONIX/ROHM KX022A ACCELEROMETER
11471 M:      Matti Vaittinen <[email protected]>
11472 L:      [email protected]
11473 S:      Supported
11474 F:      drivers/iio/accel/kionix-kx022a*
11475
11476 KMEMLEAK
11477 M:      Catalin Marinas <[email protected]>
11478 S:      Maintained
11479 F:      Documentation/dev-tools/kmemleak.rst
11480 F:      include/linux/kmemleak.h
11481 F:      mm/kmemleak.c
11482 F:      samples/kmemleak/kmemleak-test.c
11483
11484 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11485 M:      Luis Chamberlain <[email protected]>
11486 L:      [email protected]
11487 L:      [email protected]
11488 S:      Maintained
11489 F:      include/linux/kmod.h
11490 F:      kernel/kmod.c
11491 F:      lib/test_kmod.c
11492 F:      tools/testing/selftests/kmod/
11493
11494 KMSAN
11495 M:      Alexander Potapenko <[email protected]>
11496 R:      Marco Elver <[email protected]>
11497 R:      Dmitry Vyukov <[email protected]>
11498 L:      [email protected]
11499 S:      Maintained
11500 F:      Documentation/dev-tools/kmsan.rst
11501 F:      arch/*/include/asm/kmsan.h
11502 F:      arch/*/mm/kmsan_*
11503 F:      include/linux/kmsan*.h
11504 F:      lib/Kconfig.kmsan
11505 F:      mm/kmsan/
11506 F:      scripts/Makefile.kmsan
11507
11508 KPROBES
11509 M:      Naveen N. Rao <[email protected]>
11510 M:      Anil S Keshavamurthy <[email protected]>
11511 M:      "David S. Miller" <[email protected]>
11512 M:      Masami Hiramatsu <[email protected]>
11513 L:      [email protected]
11514 L:      [email protected]
11515 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
11516 S:      Maintained
11517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
11518 F:      Documentation/trace/kprobes.rst
11519 F:      include/asm-generic/kprobes.h
11520 F:      include/linux/kprobes.h
11521 F:      kernel/kprobes.c
11522 F:      lib/test_kprobes.c
11523 F:      samples/kprobes
11524
11525 KS0108 LCD CONTROLLER DRIVER
11526 M:      Miguel Ojeda <[email protected]>
11527 S:      Maintained
11528 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11529 F:      drivers/auxdisplay/ks0108.c
11530 F:      include/linux/ks0108.h
11531
11532 KTD253 BACKLIGHT DRIVER
11533 M:      Linus Walleij <[email protected]>
11534 S:      Maintained
11535 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11536 F:      drivers/video/backlight/ktd253-backlight.c
11537
11538 KTEST
11539 M:      Steven Rostedt <[email protected]>
11540 M:      John Hawley <[email protected]>
11541 S:      Maintained
11542 F:      tools/testing/ktest
11543
11544 L3MDEV
11545 M:      David Ahern <[email protected]>
11546 L:      [email protected]
11547 S:      Maintained
11548 F:      include/net/l3mdev.h
11549 F:      net/l3mdev
11550
11551 LANDLOCK SECURITY MODULE
11552 M:      Mickaël Salaün <[email protected]>
11553 L:      [email protected]
11554 S:      Supported
11555 W:      https://landlock.io
11556 T:      git https://github.com/landlock-lsm/linux.git
11557 F:      Documentation/security/landlock.rst
11558 F:      Documentation/userspace-api/landlock.rst
11559 F:      include/uapi/linux/landlock.h
11560 F:      samples/landlock/
11561 F:      security/landlock/
11562 F:      tools/testing/selftests/landlock/
11563 K:      landlock
11564 K:      LANDLOCK
11565
11566 LANTIQ / INTEL Ethernet drivers
11567 M:      Hauke Mehrtens <[email protected]>
11568 L:      [email protected]
11569 S:      Maintained
11570 F:      drivers/net/dsa/lantiq_gswip.c
11571 F:      drivers/net/dsa/lantiq_pce.h
11572 F:      drivers/net/ethernet/lantiq_xrx200.c
11573 F:      net/dsa/tag_gswip.c
11574
11575 LANTIQ MIPS ARCHITECTURE
11576 M:      John Crispin <[email protected]>
11577 L:      [email protected]
11578 S:      Maintained
11579 F:      arch/mips/lantiq
11580 F:      drivers/soc/lantiq
11581
11582 LASI 53c700 driver for PARISC
11583 M:      "James E.J. Bottomley" <[email protected]>
11584 L:      [email protected]
11585 S:      Maintained
11586 F:      Documentation/scsi/53c700.rst
11587 F:      drivers/scsi/53c700*
11588
11589 LEAKING_ADDRESSES
11590 M:      Tobin C. Harding <[email protected]>
11591 M:      Tycho Andersen <[email protected]>
11592 L:      [email protected]
11593 S:      Maintained
11594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11595 F:      scripts/leaking_addresses.pl
11596
11597 LED SUBSYSTEM
11598 M:      Pavel Machek <[email protected]>
11599 M:      Lee Jones <[email protected]>
11600 L:      [email protected]
11601 S:      Maintained
11602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11603 F:      Documentation/devicetree/bindings/leds/
11604 F:      drivers/leds/
11605 F:      include/dt-bindings/leds/
11606 F:      include/linux/leds.h
11607
11608 LEGACY EEPROM DRIVER
11609 M:      Jean Delvare <[email protected]>
11610 S:      Maintained
11611 F:      Documentation/misc-devices/eeprom.rst
11612 F:      drivers/misc/eeprom/eeprom.c
11613
11614 LEGO MINDSTORMS EV3
11615 R:      David Lechner <[email protected]>
11616 S:      Maintained
11617 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11618 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11619 F:      drivers/power/supply/lego_ev3_battery.c
11620
11621 LEGO USB Tower driver
11622 M:      Juergen Stuber <[email protected]>
11623 L:      [email protected]
11624 S:      Maintained
11625 W:      http://legousb.sourceforge.net/
11626 F:      drivers/usb/misc/legousbtower.c
11627
11628 LETSKETCH HID TABLET DRIVER
11629 M:      Hans de Goede <[email protected]>
11630 L:      [email protected]
11631 S:      Maintained
11632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11633 F:      drivers/hid/hid-letsketch.c
11634
11635 LG LAPTOP EXTRAS
11636 M:      Matan Ziv-Av <[email protected]>
11637 L:      [email protected]
11638 S:      Maintained
11639 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11640 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11641 F:      drivers/platform/x86/lg-laptop.c
11642
11643 LG2160 MEDIA DRIVER
11644 M:      Michael Krufky <[email protected]>
11645 L:      [email protected]
11646 S:      Maintained
11647 W:      https://linuxtv.org
11648 W:      http://github.com/mkrufky
11649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11650 T:      git git://linuxtv.org/mkrufky/tuners.git
11651 F:      drivers/media/dvb-frontends/lg2160.*
11652
11653 LGDT3305 MEDIA DRIVER
11654 M:      Michael Krufky <[email protected]>
11655 L:      [email protected]
11656 S:      Maintained
11657 W:      https://linuxtv.org
11658 W:      http://github.com/mkrufky
11659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11660 T:      git git://linuxtv.org/mkrufky/tuners.git
11661 F:      drivers/media/dvb-frontends/lgdt3305.*
11662
11663 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11664 M:      Viresh Kumar <[email protected]>
11665 L:      [email protected]
11666 S:      Maintained
11667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11668 F:      drivers/ata/pata_arasan_cf.c
11669 F:      include/linux/pata_arasan_cf_data.h
11670
11671 LIBATA PATA DRIVERS
11672 R:      Sergey Shtylyov <[email protected]>
11673 L:      [email protected]
11674 F:      drivers/ata/ata_*.c
11675 F:      drivers/ata/pata_*.c
11676
11677 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11678 M:      Linus Walleij <[email protected]>
11679 L:      [email protected]
11680 S:      Maintained
11681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11682 F:      drivers/ata/pata_ftide010.c
11683 F:      drivers/ata/sata_gemini.c
11684 F:      drivers/ata/sata_gemini.h
11685
11686 LIBATA SATA AHCI PLATFORM devices support
11687 M:      Hans de Goede <[email protected]>
11688 M:      Jens Axboe <[email protected]>
11689 L:      [email protected]
11690 S:      Maintained
11691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11692 F:      drivers/ata/ahci_platform.c
11693 F:      drivers/ata/libahci_platform.c
11694 F:      include/linux/ahci_platform.h
11695
11696 LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
11697 M:      Serge Semin <[email protected]>
11698 L:      [email protected]
11699 S:      Maintained
11700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11701 F:      Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
11702 F:      Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
11703 F:      drivers/ata/ahci_dwc.c
11704
11705 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11706 M:      Mikael Pettersson <[email protected]>
11707 L:      [email protected]
11708 S:      Maintained
11709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11710 F:      drivers/ata/sata_promise.*
11711
11712 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11713 M:      Damien Le Moal <[email protected]>
11714 L:      [email protected]
11715 S:      Maintained
11716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11717 F:      Documentation/ABI/testing/sysfs-ata
11718 F:      Documentation/devicetree/bindings/ata/
11719 F:      drivers/ata/
11720 F:      include/linux/ata.h
11721 F:      include/linux/libata.h
11722
11723 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11724 M:      Vishal Verma <[email protected]>
11725 M:      Dan Williams <[email protected]>
11726 M:      Dave Jiang <[email protected]>
11727 L:      [email protected]
11728 S:      Supported
11729 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11730 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11731 F:      drivers/nvdimm/btt*
11732
11733 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11734 M:      Dan Williams <[email protected]>
11735 M:      Vishal Verma <[email protected]>
11736 M:      Dave Jiang <[email protected]>
11737 L:      [email protected]
11738 S:      Supported
11739 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11740 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11741 F:      drivers/nvdimm/pmem*
11742
11743 LIBNVDIMM: DEVICETREE BINDINGS
11744 M:      Oliver O'Halloran <[email protected]>
11745 L:      [email protected]
11746 S:      Supported
11747 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11748 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11749 F:      drivers/nvdimm/of_pmem.c
11750
11751 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11752 M:      Dan Williams <[email protected]>
11753 M:      Vishal Verma <[email protected]>
11754 M:      Dave Jiang <[email protected]>
11755 M:      Ira Weiny <[email protected]>
11756 L:      [email protected]
11757 S:      Supported
11758 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11759 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11761 F:      drivers/acpi/nfit/*
11762 F:      drivers/nvdimm/*
11763 F:      include/linux/libnvdimm.h
11764 F:      include/linux/nd.h
11765 F:      include/uapi/linux/ndctl.h
11766 F:      tools/testing/nvdimm/
11767
11768 LICENSES and SPDX stuff
11769 M:      Thomas Gleixner <[email protected]>
11770 M:      Greg Kroah-Hartman <[email protected]>
11771 L:      [email protected]
11772 S:      Maintained
11773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11774 F:      COPYING
11775 F:      Documentation/process/license-rules.rst
11776 F:      LICENSES/
11777 F:      scripts/spdxcheck-test.sh
11778 F:      scripts/spdxcheck.py
11779 F:      scripts/spdxexclude
11780
11781 LINEAR RANGES HELPERS
11782 M:      Mark Brown <[email protected]>
11783 R:      Matti Vaittinen <[email protected]>
11784 F:      lib/linear_ranges.c
11785 F:      lib/test_linear_ranges.c
11786 F:      include/linux/linear_range.h
11787
11788 LINUX FOR POWER MACINTOSH
11789 M:      Benjamin Herrenschmidt <[email protected]>
11790 L:      [email protected]
11791 S:      Odd Fixes
11792 F:      arch/powerpc/platforms/powermac/
11793 F:      drivers/macintosh/
11794
11795 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11796 M:      Michael Ellerman <[email protected]>
11797 R:      Nicholas Piggin <[email protected]>
11798 R:      Christophe Leroy <[email protected]>
11799 L:      [email protected]
11800 S:      Supported
11801 W:      https://github.com/linuxppc/wiki/wiki
11802 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11804 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11805 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11806 F:      Documentation/devicetree/bindings/powerpc/
11807 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11808 F:      Documentation/powerpc/
11809 F:      arch/powerpc/
11810 F:      drivers/*/*/*pasemi*
11811 F:      drivers/*/*pasemi*
11812 F:      drivers/char/tpm/tpm_ibmvtpm*
11813 F:      drivers/crypto/nx/
11814 F:      drivers/crypto/vmx/
11815 F:      drivers/i2c/busses/i2c-opal.c
11816 F:      drivers/net/ethernet/ibm/ibmveth.*
11817 F:      drivers/net/ethernet/ibm/ibmvnic.*
11818 F:      drivers/pci/hotplug/pnv_php.c
11819 F:      drivers/pci/hotplug/rpa*
11820 F:      drivers/rtc/rtc-opal.c
11821 F:      drivers/scsi/ibmvscsi/
11822 F:      drivers/tty/hvc/hvc_opal.c
11823 F:      drivers/watchdog/wdrtas.c
11824 F:      tools/testing/selftests/powerpc
11825 N:      /pmac
11826 N:      powermac
11827 N:      powernv
11828 N:      [^a-z0-9]ps3
11829 N:      pseries
11830
11831 LINUX FOR POWERPC EMBEDDED MPC5XXX
11832 M:      Anatolij Gustschin <[email protected]>
11833 L:      [email protected]
11834 S:      Odd Fixes
11835 F:      arch/powerpc/platforms/512x/
11836 F:      arch/powerpc/platforms/52xx/
11837
11838 LINUX FOR POWERPC EMBEDDED PPC4XX
11839 L:      [email protected]
11840 S:      Orphan
11841 F:      arch/powerpc/platforms/40x/
11842 F:      arch/powerpc/platforms/44x/
11843
11844 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11845 M:      Scott Wood <[email protected]>
11846 L:      [email protected]
11847 S:      Odd fixes
11848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11849 F:      Documentation/devicetree/bindings/powerpc/fsl/
11850 F:      arch/powerpc/platforms/83xx/
11851 F:      arch/powerpc/platforms/85xx/
11852
11853 LINUX FOR POWERPC EMBEDDED PPC8XX
11854 M:      Christophe Leroy <[email protected]>
11855 L:      [email protected]
11856 S:      Maintained
11857 F:      arch/powerpc/platforms/8xx/
11858
11859 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11860 M:      Kees Cook <[email protected]>
11861 S:      Maintained
11862 F:      drivers/misc/lkdtm/*
11863 F:      tools/testing/selftests/lkdtm/*
11864
11865 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11866 M:      Alan Stern <[email protected]>
11867 M:      Andrea Parri <[email protected]>
11868 M:      Will Deacon <[email protected]>
11869 M:      Peter Zijlstra <[email protected]>
11870 M:      Boqun Feng <[email protected]>
11871 M:      Nicholas Piggin <[email protected]>
11872 M:      David Howells <[email protected]>
11873 M:      Jade Alglave <[email protected]>
11874 M:      Luc Maranget <[email protected]>
11875 M:      "Paul E. McKenney" <[email protected]>
11876 R:      Akira Yokosawa <[email protected]>
11877 R:      Daniel Lustig <[email protected]>
11878 R:      Joel Fernandes <[email protected]>
11879 L:      [email protected]
11880 L:      [email protected]
11881 S:      Supported
11882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11883 F:      Documentation/atomic_bitops.txt
11884 F:      Documentation/atomic_t.txt
11885 F:      Documentation/core-api/refcount-vs-atomic.rst
11886 F:      Documentation/litmus-tests/
11887 F:      Documentation/memory-barriers.txt
11888 F:      tools/memory-model/
11889
11890 LIS3LV02D ACCELEROMETER DRIVER
11891 M:      Eric Piel <[email protected]>
11892 S:      Maintained
11893 F:      Documentation/misc-devices/lis3lv02d.rst
11894 F:      drivers/misc/lis3lv02d/
11895 F:      drivers/platform/x86/hp/hp_accel.c
11896
11897 LIST KUNIT TEST
11898 M:      David Gow <[email protected]>
11899 L:      [email protected]
11900 L:      [email protected]
11901 S:      Maintained
11902 F:      lib/list-test.c
11903
11904 LITEX PLATFORM
11905 M:      Karol Gugala <[email protected]>
11906 M:      Mateusz Holenko <[email protected]>
11907 M:      Gabriel Somlo <[email protected]>
11908 M:      Joel Stanley <[email protected]>
11909 S:      Maintained
11910 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11911 F:      arch/openrisc/boot/dts/or1klitex.dts
11912 F:      include/linux/litex.h
11913 F:      drivers/tty/serial/liteuart.c
11914 F:      drivers/soc/litex/*
11915 F:      drivers/net/ethernet/litex/*
11916 F:      drivers/mmc/host/litex_mmc.c
11917 N:      litex
11918
11919 LIVE PATCHING
11920 M:      Josh Poimboeuf <[email protected]>
11921 M:      Jiri Kosina <[email protected]>
11922 M:      Miroslav Benes <[email protected]>
11923 M:      Petr Mladek <[email protected]>
11924 R:      Joe Lawrence <[email protected]>
11925 L:      [email protected]
11926 S:      Maintained
11927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11928 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11929 F:      Documentation/livepatch/
11930 F:      arch/powerpc/include/asm/livepatch.h
11931 F:      include/linux/livepatch.h
11932 F:      kernel/livepatch/
11933 F:      kernel/module/livepatch.c
11934 F:      lib/livepatch/
11935 F:      samples/livepatch/
11936 F:      tools/testing/selftests/livepatch/
11937
11938 LLC (802.2)
11939 L:      [email protected]
11940 S:      Odd fixes
11941 F:      include/linux/llc.h
11942 F:      include/net/llc*
11943 F:      include/uapi/linux/llc.h
11944 F:      net/llc/
11945
11946 LM73 HARDWARE MONITOR DRIVER
11947 M:      Guillaume Ligneul <[email protected]>
11948 L:      [email protected]
11949 S:      Maintained
11950 F:      drivers/hwmon/lm73.c
11951
11952 LM78 HARDWARE MONITOR DRIVER
11953 M:      Jean Delvare <[email protected]>
11954 L:      [email protected]
11955 S:      Maintained
11956 F:      Documentation/hwmon/lm78.rst
11957 F:      drivers/hwmon/lm78.c
11958
11959 LM83 HARDWARE MONITOR DRIVER
11960 M:      Jean Delvare <[email protected]>
11961 L:      [email protected]
11962 S:      Maintained
11963 F:      Documentation/hwmon/lm83.rst
11964 F:      drivers/hwmon/lm83.c
11965
11966 LM90 HARDWARE MONITOR DRIVER
11967 M:      Jean Delvare <[email protected]>
11968 L:      [email protected]
11969 S:      Maintained
11970 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11971 F:      Documentation/hwmon/lm90.rst
11972 F:      drivers/hwmon/lm90.c
11973 F:      include/dt-bindings/thermal/lm90.h
11974
11975 LM95234 HARDWARE MONITOR DRIVER
11976 M:      Guenter Roeck <[email protected]>
11977 L:      [email protected]
11978 S:      Maintained
11979 F:      Documentation/hwmon/lm95234.rst
11980 F:      drivers/hwmon/lm95234.c
11981
11982 LME2510 MEDIA DRIVER
11983 M:      Malcolm Priestley <[email protected]>
11984 L:      [email protected]
11985 S:      Maintained
11986 W:      https://linuxtv.org
11987 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11988 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11989
11990 LOADPIN SECURITY MODULE
11991 M:      Kees Cook <[email protected]>
11992 S:      Supported
11993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11994 F:      Documentation/admin-guide/LSM/LoadPin.rst
11995 F:      security/loadpin/
11996
11997 LOCKING PRIMITIVES
11998 M:      Peter Zijlstra <[email protected]>
11999 M:      Ingo Molnar <[email protected]>
12000 M:      Will Deacon <[email protected]>
12001 R:      Waiman Long <[email protected]>
12002 R:      Boqun Feng <[email protected]> (LOCKDEP)
12003 L:      [email protected]
12004 S:      Maintained
12005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
12006 F:      Documentation/locking/
12007 F:      arch/*/include/asm/spinlock*.h
12008 F:      include/linux/lockdep.h
12009 F:      include/linux/mutex*.h
12010 F:      include/linux/rwlock*.h
12011 F:      include/linux/rwsem*.h
12012 F:      include/linux/seqlock.h
12013 F:      include/linux/spinlock*.h
12014 F:      kernel/locking/
12015 F:      lib/locking*.[ch]
12016 X:      kernel/locking/locktorture.c
12017
12018 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
12019 M:      "Richard Russon (FlatCap)" <[email protected]>
12020 L:      [email protected]
12021 S:      Maintained
12022 W:      http://www.linux-ntfs.org/content/view/19/37/
12023 F:      Documentation/admin-guide/ldm.rst
12024 F:      block/partitions/ldm.*
12025
12026 LOGITECH HID GAMING KEYBOARDS
12027 M:      Hans de Goede <[email protected]>
12028 L:      [email protected]
12029 S:      Maintained
12030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12031 F:      drivers/hid/hid-lg-g15.c
12032
12033 LONTIUM LT8912B MIPI TO HDMI BRIDGE
12034 M:      Adrien Grassein <[email protected]>
12035 S:      Maintained
12036 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
12037 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
12038
12039 LOONGARCH
12040 M:      Huacai Chen <[email protected]>
12041 R:      WANG Xuerui <[email protected]>
12042 L:      [email protected]
12043 S:      Maintained
12044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
12045 F:      arch/loongarch/
12046 F:      drivers/*/*loongarch*
12047 F:      Documentation/loongarch/
12048 F:      Documentation/translations/zh_CN/loongarch/
12049
12050 LOONGSON-2 SOC SERIES GUTS DRIVER
12051 M:      Yinbo Zhu <[email protected]>
12052 L:      [email protected]
12053 S:      Maintained
12054 F:      Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
12055 F:      drivers/soc/loongson/loongson2_guts.c
12056
12057 LOONGSON-2 SOC SERIES PINCTRL DRIVER
12058 M:      zhanghongchen <[email protected]>
12059 M:      Yinbo Zhu <[email protected]>
12060 L:      [email protected]
12061 S:      Maintained
12062 F:      Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
12063 F:      drivers/pinctrl/pinctrl-loongson2.c
12064
12065 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
12066 M:      Sathya Prakash <[email protected]>
12067 M:      Sreekanth Reddy <[email protected]>
12068 M:      Suganath Prabu Subramani <[email protected]>
12069 L:      [email protected]
12070 L:      [email protected]
12071 S:      Supported
12072 W:      http://www.avagotech.com/support/
12073 F:      drivers/message/fusion/
12074 F:      drivers/scsi/mpt3sas/
12075
12076 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
12077 M:      Matthew Wilcox <[email protected]>
12078 L:      [email protected]
12079 S:      Maintained
12080 F:      drivers/scsi/sym53c8xx_2/
12081
12082 LTC1660 DAC DRIVER
12083 M:      Marcus Folkesson <[email protected]>
12084 L:      [email protected]
12085 S:      Maintained
12086 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
12087 F:      drivers/iio/dac/ltc1660.c
12088
12089 LTC2688 IIO DAC DRIVER
12090 M:      Nuno Sá <[email protected]>
12091 L:      [email protected]
12092 S:      Supported
12093 W:      https://ez.analog.com/linux-software-drivers
12094 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
12095 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
12096 F:      drivers/iio/dac/ltc2688.c
12097
12098 LTC2947 HARDWARE MONITOR DRIVER
12099 M:      Nuno Sá <[email protected]>
12100 L:      [email protected]
12101 S:      Supported
12102 W:      https://ez.analog.com/linux-software-drivers
12103 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
12104 F:      drivers/hwmon/ltc2947-core.c
12105 F:      drivers/hwmon/ltc2947-i2c.c
12106 F:      drivers/hwmon/ltc2947-spi.c
12107 F:      drivers/hwmon/ltc2947.h
12108
12109 LTC2983 IIO TEMPERATURE DRIVER
12110 M:      Nuno Sá <[email protected]>
12111 L:      [email protected]
12112 S:      Supported
12113 W:      https://ez.analog.com/linux-software-drivers
12114 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
12115 F:      drivers/iio/temperature/ltc2983.c
12116
12117 LTC4261 HARDWARE MONITOR DRIVER
12118 M:      Guenter Roeck <[email protected]>
12119 L:      [email protected]
12120 S:      Maintained
12121 F:      Documentation/hwmon/ltc4261.rst
12122 F:      drivers/hwmon/ltc4261.c
12123
12124 LTC4306 I2C MULTIPLEXER DRIVER
12125 M:      Michael Hennerich <[email protected]>
12126 L:      [email protected]
12127 S:      Supported
12128 W:      https://ez.analog.com/linux-software-drivers
12129 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
12130 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
12131
12132 LTP (Linux Test Project)
12133 M:      Mike Frysinger <[email protected]>
12134 M:      Cyril Hrubis <[email protected]>
12135 M:      Wanlong Gao <[email protected]>
12136 M:      Jan Stancek <[email protected]>
12137 M:      Stanislav Kholmanskikh <[email protected]>
12138 M:      Alexey Kodanev <[email protected]>
12139 L:      [email protected] (subscribers-only)
12140 S:      Maintained
12141 W:      http://linux-test-project.github.io/
12142 T:      git https://github.com/linux-test-project/ltp.git
12143
12144 LYNX 28G SERDES PHY DRIVER
12145 M:      Ioana Ciornei <[email protected]>
12146 L:      [email protected]
12147 S:      Supported
12148 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12149 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
12150
12151 LYNX PCS MODULE
12152 M:      Ioana Ciornei <[email protected]>
12153 L:      [email protected]
12154 S:      Supported
12155 F:      drivers/net/pcs/pcs-lynx.c
12156 F:      include/linux/pcs-lynx.h
12157
12158 M68K ARCHITECTURE
12159 M:      Geert Uytterhoeven <[email protected]>
12160 L:      [email protected]
12161 S:      Maintained
12162 W:      http://www.linux-m68k.org/
12163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12164 F:      arch/m68k/
12165 F:      drivers/zorro/
12166
12167 M68K ON APPLE MACINTOSH
12168 M:      Joshua Thompson <[email protected]>
12169 L:      [email protected]
12170 S:      Maintained
12171 W:      http://www.mac.linux-m68k.org/
12172 F:      arch/m68k/mac/
12173 F:      drivers/macintosh/adb-iop.c
12174 F:      drivers/macintosh/via-macii.c
12175
12176 M68K ON HP9000/300
12177 M:      Philip Blundell <[email protected]>
12178 S:      Maintained
12179 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12180 F:      arch/m68k/hp300/
12181
12182 M88DS3103 MEDIA DRIVER
12183 M:      Antti Palosaari <[email protected]>
12184 L:      [email protected]
12185 S:      Maintained
12186 W:      https://linuxtv.org
12187 W:      http://palosaari.fi/linux/
12188 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12189 T:      git git://linuxtv.org/anttip/media_tree.git
12190 F:      drivers/media/dvb-frontends/m88ds3103*
12191
12192 M88RS2000 MEDIA DRIVER
12193 M:      Malcolm Priestley <[email protected]>
12194 L:      [email protected]
12195 S:      Maintained
12196 W:      https://linuxtv.org
12197 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12198 F:      drivers/media/dvb-frontends/m88rs2000*
12199
12200 MA901 MASTERKIT USB FM RADIO DRIVER
12201 M:      Alexey Klimov <[email protected]>
12202 L:      [email protected]
12203 S:      Maintained
12204 T:      git git://linuxtv.org/media_tree.git
12205 F:      drivers/media/radio/radio-ma901.c
12206
12207 MAC80211
12208 M:      Johannes Berg <[email protected]>
12209 L:      [email protected]
12210 S:      Maintained
12211 W:      https://wireless.wiki.kernel.org/
12212 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12215 F:      Documentation/networking/mac80211-injection.rst
12216 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12217 F:      drivers/net/wireless/mac80211_hwsim.[ch]
12218 F:      include/net/mac80211.h
12219 F:      net/mac80211/
12220
12221 MAILBOX API
12222 M:      Jassi Brar <[email protected]>
12223 L:      [email protected]
12224 S:      Maintained
12225 F:      drivers/mailbox/
12226 F:      include/linux/mailbox_client.h
12227 F:      include/linux/mailbox_controller.h
12228 F:      include/dt-bindings/mailbox/
12229 F:      Documentation/devicetree/bindings/mailbox/
12230
12231 MAILBOX ARM MHUv2
12232 M:      Viresh Kumar <[email protected]>
12233 M:      Tushar Khandelwal <[email protected]>
12234 L:      [email protected]
12235 S:      Maintained
12236 F:      drivers/mailbox/arm_mhuv2.c
12237 F:      include/linux/mailbox/arm_mhuv2_message.h
12238 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12239
12240 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12241 M:      Jeremy Kerr <[email protected]>
12242 M:      Matt Johnston <[email protected]>
12243 L:      [email protected]
12244 S:      Maintained
12245 F:      Documentation/networking/mctp.rst
12246 F:      drivers/net/mctp/
12247 F:      include/net/mctp.h
12248 F:      include/net/mctpdevice.h
12249 F:      include/net/netns/mctp.h
12250 F:      net/mctp/
12251
12252 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12253 M:      Michael Kerrisk <[email protected]>
12254 L:      [email protected]
12255 S:      Maintained
12256 W:      http://www.kernel.org/doc/man-pages
12257
12258 MAPLE TREE
12259 M:      Liam R. Howlett <[email protected]>
12260 L:      [email protected]
12261 S:      Supported
12262 F:      Documentation/core-api/maple_tree.rst
12263 F:      include/linux/maple_tree.h
12264 F:      include/trace/events/maple_tree.h
12265 F:      lib/maple_tree.c
12266 F:      lib/test_maple_tree.c
12267 F:      tools/testing/radix-tree/linux/maple_tree.h
12268 F:      tools/testing/radix-tree/maple.c
12269
12270 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12271 M:      Rahul Bedarkar <[email protected]>
12272 L:      [email protected]
12273 S:      Maintained
12274 F:      arch/mips/boot/dts/img/pistachio*
12275
12276 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12277 M:      Andrew Lunn <[email protected]>
12278 L:      [email protected]
12279 S:      Maintained
12280 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12281 F:      Documentation/networking/devlink/mv88e6xxx.rst
12282 F:      drivers/net/dsa/mv88e6xxx/
12283 F:      include/linux/dsa/mv88e6xxx.h
12284 F:      include/linux/platform_data/mv88e6xxx.h
12285
12286 MARVELL ARMADA 3700 PHY DRIVERS
12287 M:      Miquel Raynal <[email protected]>
12288 S:      Maintained
12289 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12290 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12291 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12292 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12293
12294 MARVELL ARMADA 3700 SERIAL DRIVER
12295 M:      Pali Rohár <[email protected]>
12296 S:      Maintained
12297 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12298 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12299 F:      drivers/tty/serial/mvebu-uart.c
12300
12301 MARVELL ARMADA DRM SUPPORT
12302 M:      Russell King <[email protected]>
12303 S:      Maintained
12304 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12305 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12306 F:      Documentation/devicetree/bindings/display/armada/
12307 F:      drivers/gpu/drm/armada/
12308 F:      include/uapi/drm/armada_drm.h
12309
12310 MARVELL CRYPTO DRIVER
12311 M:      Boris Brezillon <[email protected]>
12312 M:      Arnaud Ebalard <[email protected]>
12313 M:      Srujana Challa <[email protected]>
12314 L:      [email protected]
12315 S:      Maintained
12316 F:      drivers/crypto/marvell/
12317 F:      include/linux/soc/marvell/octeontx2/
12318
12319 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12320 M:      Mirko Lindner <[email protected]>
12321 M:      Stephen Hemminger <[email protected]>
12322 L:      [email protected]
12323 S:      Maintained
12324 F:      drivers/net/ethernet/marvell/sk*
12325
12326 MARVELL LIBERTAS WIRELESS DRIVER
12327 L:      [email protected]
12328 S:      Orphan
12329 F:      drivers/net/wireless/marvell/libertas/
12330
12331 MARVELL MACCHIATOBIN SUPPORT
12332 M:      Russell King <[email protected]>
12333 L:      [email protected] (moderated for non-subscribers)
12334 S:      Maintained
12335 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12336
12337 MARVELL MV643XX ETHERNET DRIVER
12338 M:      Sebastian Hesselbarth <[email protected]>
12339 L:      [email protected]
12340 S:      Maintained
12341 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12342 F:      include/linux/mv643xx.h
12343
12344 MARVELL MV88X3310 PHY DRIVER
12345 M:      Russell King <[email protected]>
12346 M:      Marek Behún <[email protected]>
12347 L:      [email protected]
12348 S:      Maintained
12349 F:      drivers/net/phy/marvell10g.c
12350
12351 MARVELL MVEBU THERMAL DRIVER
12352 M:      Miquel Raynal <[email protected]>
12353 S:      Maintained
12354 F:      drivers/thermal/armada_thermal.c
12355
12356 MARVELL MVNETA ETHERNET DRIVER
12357 M:      Thomas Petazzoni <[email protected]>
12358 L:      [email protected]
12359 S:      Maintained
12360 F:      drivers/net/ethernet/marvell/mvneta.*
12361
12362 MARVELL MVPP2 ETHERNET DRIVER
12363 M:      Marcin Wojtas <[email protected]>
12364 M:      Russell King <[email protected]>
12365 L:      [email protected]
12366 S:      Maintained
12367 F:      Documentation/devicetree/bindings/net/marvell,pp2.yaml
12368 F:      drivers/net/ethernet/marvell/mvpp2/
12369
12370 MARVELL MWIFIEX WIRELESS DRIVER
12371 M:      Amitkumar Karwar <[email protected]>
12372 M:      Ganapathi Bhat <[email protected]>
12373 M:      Sharvari Harisangam <[email protected]>
12374 M:      Xinming Hu <[email protected]>
12375 L:      [email protected]
12376 S:      Maintained
12377 F:      drivers/net/wireless/marvell/mwifiex/
12378
12379 MARVELL MWL8K WIRELESS DRIVER
12380 M:      Lennert Buytenhek <[email protected]>
12381 L:      [email protected]
12382 S:      Odd Fixes
12383 F:      drivers/net/wireless/marvell/mwl8k.c
12384
12385 MARVELL NAND CONTROLLER DRIVER
12386 M:      Miquel Raynal <[email protected]>
12387 L:      [email protected]
12388 S:      Maintained
12389 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12390 F:      drivers/mtd/nand/raw/marvell_nand.c
12391
12392 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12393 M:      Sunil Goutham <[email protected]>
12394 M:      Geetha sowjanya <[email protected]>
12395 M:      Subbaraya Sundeep <[email protected]>
12396 M:      hariprasad <[email protected]>
12397 L:      [email protected]
12398 S:      Supported
12399 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12400 F:      include/linux/soc/marvell/octeontx2/
12401
12402 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12403 M:      Sunil Goutham <[email protected]>
12404 M:      Linu Cherian <[email protected]>
12405 M:      Geetha sowjanya <[email protected]>
12406 M:      Jerin Jacob <[email protected]>
12407 M:      hariprasad <[email protected]>
12408 M:      Subbaraya Sundeep <[email protected]>
12409 L:      [email protected]
12410 S:      Supported
12411 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12412 F:      drivers/net/ethernet/marvell/octeontx2/af/
12413
12414 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12415 M:      Taras Chornyi <[email protected]>
12416 S:      Supported
12417 W:      https://github.com/Marvell-switching/switchdev-prestera
12418 F:      drivers/net/ethernet/marvell/prestera/
12419
12420 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12421 M:      Nicolas Pitre <[email protected]>
12422 S:      Odd Fixes
12423 F:      drivers/mmc/host/mvsdio.*
12424
12425 MARVELL USB MDIO CONTROLLER DRIVER
12426 M:      Tobias Waldekranz <[email protected]>
12427 L:      [email protected]
12428 S:      Maintained
12429 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12430 F:      drivers/net/mdio/mdio-mvusb.c
12431
12432 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12433 M:      Hu Ziji <[email protected]>
12434 L:      [email protected]
12435 S:      Supported
12436 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12437 F:      drivers/mmc/host/sdhci-xenon*
12438
12439 MARVELL OCTEON ENDPOINT DRIVER
12440 M:      Veerasenareddy Burru <[email protected]>
12441 M:      Abhijit Ayarekar <[email protected]>
12442 L:      [email protected]
12443 S:      Supported
12444 F:      drivers/net/ethernet/marvell/octeon_ep
12445
12446 MATROX FRAMEBUFFER DRIVER
12447 L:      [email protected]
12448 S:      Orphan
12449 F:      drivers/video/fbdev/matrox/matroxfb_*
12450 F:      include/uapi/linux/matroxfb.h
12451
12452 MAX15301 DRIVER
12453 M:      Daniel Nilsson <[email protected]>
12454 L:      [email protected]
12455 S:      Maintained
12456 F:      Documentation/hwmon/max15301.rst
12457 F:      drivers/hwmon/pmbus/max15301.c
12458
12459 MAX16065 HARDWARE MONITOR DRIVER
12460 M:      Guenter Roeck <[email protected]>
12461 L:      [email protected]
12462 S:      Maintained
12463 F:      Documentation/hwmon/max16065.rst
12464 F:      drivers/hwmon/max16065.c
12465
12466 MAX2175 SDR TUNER DRIVER
12467 M:      Ramesh Shanmugasundaram <[email protected]>
12468 L:      [email protected]
12469 S:      Maintained
12470 T:      git git://linuxtv.org/media_tree.git
12471 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12472 F:      Documentation/userspace-api/media/drivers/max2175.rst
12473 F:      drivers/media/i2c/max2175*
12474 F:      include/uapi/linux/max2175.h
12475
12476 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12477 L:      [email protected]
12478 S:      Orphan
12479 F:      Documentation/hwmon/max6650.rst
12480 F:      drivers/hwmon/max6650.c
12481
12482 MAX6697 HARDWARE MONITOR DRIVER
12483 M:      Guenter Roeck <[email protected]>
12484 L:      [email protected]
12485 S:      Maintained
12486 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12487 F:      Documentation/hwmon/max6697.rst
12488 F:      drivers/hwmon/max6697.c
12489 F:      include/linux/platform_data/max6697.h
12490
12491 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12492 M:      Jacopo Mondi <[email protected]>
12493 M:      Kieran Bingham <[email protected]>
12494 M:      Laurent Pinchart <[email protected]>
12495 M:      Niklas Söderlund <[email protected]>
12496 L:      [email protected]
12497 S:      Maintained
12498 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12499 F:      drivers/media/i2c/max9286.c
12500
12501 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12502 M:      Niklas Söderlund <[email protected]>
12503 L:      [email protected]
12504 S:      Maintained
12505 F:      drivers/staging/media/max96712/max96712.c
12506
12507 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12508 M:      Peter Rosin <[email protected]>
12509 L:      [email protected] (moderated for non-subscribers)
12510 S:      Maintained
12511 F:      Documentation/devicetree/bindings/sound/max9860.txt
12512 F:      sound/soc/codecs/max9860.*
12513
12514 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12515 M:      Andreas Klinger <[email protected]>
12516 L:      [email protected]
12517 S:      Maintained
12518 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12519 F:      drivers/iio/proximity/mb1232.c
12520
12521 MAXIM MAX11205 DRIVER
12522 M:      Ramona Bolboaca <[email protected]>
12523 L:      [email protected]
12524 S:      Supported
12525 W:      https://ez.analog.com/linux-software-drivers
12526 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12527 F:      drivers/iio/adc/max11205.c
12528
12529 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12530 R:      Iskren Chernev <[email protected]>
12531 R:      Krzysztof Kozlowski <[email protected]>
12532 R:      Marek Szyprowski <[email protected]>
12533 R:      Matheus Castello <[email protected]>
12534 L:      [email protected]
12535 S:      Maintained
12536 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12537 F:      drivers/power/supply/max17040_battery.c
12538
12539 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12540 R:      Hans de Goede <[email protected]>
12541 R:      Krzysztof Kozlowski <[email protected]>
12542 R:      Marek Szyprowski <[email protected]>
12543 R:      Sebastian Krzyszkowiak <[email protected]>
12544 R:      Purism Kernel Team <[email protected]>
12545 L:      [email protected]
12546 S:      Maintained
12547 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12548 F:      drivers/power/supply/max17042_battery.c
12549
12550 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12551 M:      Laurent Pinchart <[email protected]>
12552 L:      [email protected]
12553 S:      Maintained
12554 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12555 F:      drivers/regulator/max20086-regulator.c
12556
12557 MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
12558 M:      Rajat Khandelwal <[email protected]>
12559 L:      [email protected]
12560 S:      Maintained
12561 F:      drivers/iio/temperature/max30208.c
12562
12563 MAXIM MAX77650 PMIC MFD DRIVER
12564 M:      Bartosz Golaszewski <[email protected]>
12565 L:      [email protected]
12566 S:      Maintained
12567 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12568 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12569 F:      drivers/gpio/gpio-max77650.c
12570 F:      drivers/input/misc/max77650-onkey.c
12571 F:      drivers/leds/leds-max77650.c
12572 F:      drivers/mfd/max77650.c
12573 F:      drivers/power/supply/max77650-charger.c
12574 F:      drivers/regulator/max77650-regulator.c
12575 F:      include/linux/mfd/max77650.h
12576
12577 MAXIM MAX77714 PMIC MFD DRIVER
12578 M:      Luca Ceresoli <[email protected]>
12579 S:      Maintained
12580 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12581 F:      drivers/mfd/max77714.c
12582 F:      include/linux/mfd/max77714.h
12583
12584 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12585 M:      Javier Martinez Canillas <[email protected]>
12586 L:      [email protected]
12587 S:      Supported
12588 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12589 F:      drivers/regulator/max77802-regulator.c
12590 F:      include/dt-bindings/*/*max77802.h
12591
12592 MAXIM MAX77976 BATTERY CHARGER
12593 M:      Luca Ceresoli <[email protected]>
12594 S:      Supported
12595 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12596 F:      drivers/power/supply/max77976_charger.c
12597
12598 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12599 M:      Krzysztof Kozlowski <[email protected]>
12600 L:      [email protected]
12601 S:      Supported
12602 B:      mailto:[email protected]
12603 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12604 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12605 F:      drivers/power/supply/max14577_charger.c
12606 F:      drivers/power/supply/max77693_charger.c
12607
12608 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12609 M:      Chanwoo Choi <[email protected]>
12610 M:      Krzysztof Kozlowski <[email protected]>
12611 L:      [email protected]
12612 S:      Supported
12613 B:      mailto:[email protected]
12614 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12615 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12616 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12617 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12618 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12619 F:      drivers/*/*max77843.c
12620 F:      drivers/*/max14577*.c
12621 F:      drivers/*/max77686*.c
12622 F:      drivers/*/max77693*.c
12623 F:      drivers/clk/clk-max77686.c
12624 F:      drivers/extcon/extcon-max14577.c
12625 F:      drivers/extcon/extcon-max77693.c
12626 F:      drivers/rtc/rtc-max77686.c
12627 F:      include/linux/mfd/max14577*.h
12628 F:      include/linux/mfd/max77686*.h
12629 F:      include/linux/mfd/max77693*.h
12630
12631 MAXIRADIO FM RADIO RECEIVER DRIVER
12632 M:      Hans Verkuil <[email protected]>
12633 L:      [email protected]
12634 S:      Maintained
12635 W:      https://linuxtv.org
12636 T:      git git://linuxtv.org/media_tree.git
12637 F:      drivers/media/radio/radio-maxiradio*
12638
12639 MAXLINEAR ETHERNET PHY DRIVER
12640 M:      Xu Liang <[email protected]>
12641 L:      [email protected]
12642 S:      Supported
12643 F:      drivers/net/phy/mxl-gpy.c
12644
12645 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12646 R:      Yasushi SHOJI <[email protected]>
12647 L:      [email protected]
12648 S:      Maintained
12649 F:      drivers/net/can/usb/mcba_usb.c
12650
12651 MCAN MMIO DEVICE DRIVER
12652 M:      Chandrasekar Ramakrishnan <[email protected]>
12653 L:      [email protected]
12654 S:      Maintained
12655 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12656 F:      drivers/net/can/m_can/m_can.c
12657 F:      drivers/net/can/m_can/m_can.h
12658 F:      drivers/net/can/m_can/m_can_platform.c
12659
12660 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12661 M:      Rishi Gupta <[email protected]>
12662 L:      [email protected]
12663 L:      [email protected]
12664 S:      Maintained
12665 F:      drivers/hid/hid-mcp2221.c
12666
12667 MCP251XFD SPI-CAN NETWORK DRIVER
12668 M:      Marc Kleine-Budde <[email protected]>
12669 M:      Manivannan Sadhasivam <[email protected]>
12670 R:      Thomas Kopp <[email protected]>
12671 L:      [email protected]
12672 S:      Maintained
12673 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12674 F:      drivers/net/can/spi/mcp251xfd/
12675
12676 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12677 M:      Peter Rosin <[email protected]>
12678 L:      [email protected]
12679 S:      Maintained
12680 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12681 F:      drivers/iio/potentiometer/mcp4018.c
12682 F:      drivers/iio/potentiometer/mcp4531.c
12683
12684 MCR20A IEEE-802.15.4 RADIO DRIVER
12685 M:      Stefan Schmidt <[email protected]>
12686 L:      [email protected]
12687 S:      Odd Fixes
12688 W:      https://github.com/xueliu/mcr20a-linux
12689 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12690 F:      drivers/net/ieee802154/mcr20a.c
12691 F:      drivers/net/ieee802154/mcr20a.h
12692
12693 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12694 M:      William Breathitt Gray <[email protected]>
12695 L:      [email protected]
12696 S:      Maintained
12697 F:      drivers/iio/dac/cio-dac.c
12698
12699 MEDIA CONTROLLER FRAMEWORK
12700 M:      Sakari Ailus <[email protected]>
12701 M:      Laurent Pinchart <[email protected]>
12702 L:      [email protected]
12703 S:      Supported
12704 W:      https://www.linuxtv.org
12705 T:      git git://linuxtv.org/media_tree.git
12706 F:      drivers/media/mc/
12707 F:      include/media/media-*.h
12708 F:      include/uapi/linux/media.h
12709
12710 MEDIA DRIVER FOR FREESCALE IMX PXP
12711 M:      Philipp Zabel <[email protected]>
12712 L:      [email protected]
12713 S:      Maintained
12714 T:      git git://linuxtv.org/media_tree.git
12715 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12716
12717 MEDIA DRIVERS FOR ASCOT2E
12718 M:      Sergey Kozlov <[email protected]>
12719 M:      Abylay Ospan <[email protected]>
12720 L:      [email protected]
12721 S:      Supported
12722 W:      https://linuxtv.org
12723 W:      http://netup.tv/
12724 T:      git git://linuxtv.org/media_tree.git
12725 F:      drivers/media/dvb-frontends/ascot2e*
12726
12727 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12728 M:      Jasmin Jessich <[email protected]>
12729 L:      [email protected]
12730 S:      Maintained
12731 W:      https://linuxtv.org
12732 T:      git git://linuxtv.org/media_tree.git
12733 F:      drivers/media/dvb-frontends/cxd2099*
12734
12735 MEDIA DRIVERS FOR CXD2841ER
12736 M:      Sergey Kozlov <[email protected]>
12737 M:      Abylay Ospan <[email protected]>
12738 L:      [email protected]
12739 S:      Supported
12740 W:      https://linuxtv.org
12741 W:      http://netup.tv/
12742 T:      git git://linuxtv.org/media_tree.git
12743 F:      drivers/media/dvb-frontends/cxd2841er*
12744
12745 MEDIA DRIVERS FOR CXD2880
12746 M:      Yasunari Takiguchi <[email protected]>
12747 L:      [email protected]
12748 S:      Supported
12749 W:      http://linuxtv.org/
12750 T:      git git://linuxtv.org/media_tree.git
12751 F:      drivers/media/dvb-frontends/cxd2880/*
12752 F:      drivers/media/spi/cxd2880*
12753
12754 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12755 L:      [email protected]
12756 S:      Orphan
12757 W:      https://linuxtv.org
12758 T:      git git://linuxtv.org/media_tree.git
12759 F:      drivers/media/pci/ddbridge/*
12760
12761 MEDIA DRIVERS FOR FREESCALE IMX
12762 M:      Steve Longerbeam <[email protected]>
12763 M:      Philipp Zabel <[email protected]>
12764 L:      [email protected]
12765 S:      Maintained
12766 T:      git git://linuxtv.org/media_tree.git
12767 F:      Documentation/admin-guide/media/imx.rst
12768 F:      Documentation/devicetree/bindings/media/imx.txt
12769 F:      drivers/staging/media/imx/
12770 F:      include/linux/imx-media.h
12771 F:      include/media/imx.h
12772
12773 MEDIA DRIVERS FOR FREESCALE IMX7
12774 M:      Rui Miguel Silva <[email protected]>
12775 M:      Laurent Pinchart <[email protected]>
12776 L:      [email protected]
12777 S:      Maintained
12778 T:      git git://linuxtv.org/media_tree.git
12779 F:      Documentation/admin-guide/media/imx7.rst
12780 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12781 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12782 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12783 F:      drivers/media/platform/nxp/imx7-media-csi.c
12784
12785 MEDIA DRIVERS FOR HELENE
12786 M:      Abylay Ospan <[email protected]>
12787 L:      [email protected]
12788 S:      Supported
12789 W:      https://linuxtv.org
12790 W:      http://netup.tv/
12791 T:      git git://linuxtv.org/media_tree.git
12792 F:      drivers/media/dvb-frontends/helene*
12793
12794 MEDIA DRIVERS FOR HORUS3A
12795 M:      Sergey Kozlov <[email protected]>
12796 M:      Abylay Ospan <[email protected]>
12797 L:      [email protected]
12798 S:      Supported
12799 W:      https://linuxtv.org
12800 W:      http://netup.tv/
12801 T:      git git://linuxtv.org/media_tree.git
12802 F:      drivers/media/dvb-frontends/horus3a*
12803
12804 MEDIA DRIVERS FOR LNBH25
12805 M:      Sergey Kozlov <[email protected]>
12806 M:      Abylay Ospan <[email protected]>
12807 L:      [email protected]
12808 S:      Supported
12809 W:      https://linuxtv.org
12810 W:      http://netup.tv/
12811 T:      git git://linuxtv.org/media_tree.git
12812 F:      drivers/media/dvb-frontends/lnbh25*
12813
12814 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12815 L:      [email protected]
12816 S:      Orphan
12817 W:      https://linuxtv.org
12818 T:      git git://linuxtv.org/media_tree.git
12819 F:      drivers/media/dvb-frontends/mxl5xx*
12820
12821 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12822 M:      Sergey Kozlov <[email protected]>
12823 M:      Abylay Ospan <[email protected]>
12824 L:      [email protected]
12825 S:      Supported
12826 W:      https://linuxtv.org
12827 W:      http://netup.tv/
12828 T:      git git://linuxtv.org/media_tree.git
12829 F:      drivers/media/pci/netup_unidvb/*
12830
12831 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12832 M:      Dmitry Osipenko <[email protected]>
12833 L:      [email protected]
12834 L:      [email protected]
12835 S:      Maintained
12836 T:      git git://linuxtv.org/media_tree.git
12837 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12838 F:      drivers/media/platform/nvidia/tegra-vde/
12839
12840 MEDIA DRIVERS FOR RENESAS - CEU
12841 M:      Jacopo Mondi <[email protected]>
12842 L:      [email protected]
12843 L:      [email protected]
12844 S:      Supported
12845 T:      git git://linuxtv.org/media_tree.git
12846 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12847 F:      drivers/media/platform/renesas/renesas-ceu.c
12848 F:      include/media/drv-intf/renesas-ceu.h
12849
12850 MEDIA DRIVERS FOR RENESAS - DRIF
12851 M:      Fabrizio Castro <[email protected]>
12852 L:      [email protected]
12853 L:      [email protected]
12854 S:      Supported
12855 T:      git git://linuxtv.org/media_tree.git
12856 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12857 F:      drivers/media/platform/renesas/rcar_drif.c
12858
12859 MEDIA DRIVERS FOR RENESAS - FCP
12860 M:      Laurent Pinchart <[email protected]>
12861 L:      [email protected]
12862 L:      [email protected]
12863 S:      Supported
12864 T:      git git://linuxtv.org/media_tree.git
12865 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12866 F:      drivers/media/platform/renesas/rcar-fcp.c
12867 F:      include/media/rcar-fcp.h
12868
12869 MEDIA DRIVERS FOR RENESAS - FDP1
12870 M:      Kieran Bingham <[email protected]>
12871 L:      [email protected]
12872 L:      [email protected]
12873 S:      Supported
12874 T:      git git://linuxtv.org/media_tree.git
12875 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12876 F:      drivers/media/platform/renesas/rcar_fdp1.c
12877
12878 MEDIA DRIVERS FOR RENESAS - VIN
12879 M:      Niklas Söderlund <[email protected]>
12880 L:      [email protected]
12881 L:      [email protected]
12882 S:      Supported
12883 T:      git git://linuxtv.org/media_tree.git
12884 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12885 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12886 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12887 F:      drivers/media/platform/renesas/rcar-isp.c
12888 F:      drivers/media/platform/renesas/rcar-vin/
12889
12890 MEDIA DRIVERS FOR RENESAS - VSP1
12891 M:      Laurent Pinchart <[email protected]>
12892 M:      Kieran Bingham <[email protected]>
12893 L:      [email protected]
12894 L:      [email protected]
12895 S:      Supported
12896 T:      git git://linuxtv.org/media_tree.git
12897 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12898 F:      drivers/media/platform/renesas/vsp1/
12899
12900 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12901 L:      [email protected]
12902 S:      Orphan
12903 W:      https://linuxtv.org
12904 T:      git git://linuxtv.org/media_tree.git
12905 F:      drivers/media/dvb-frontends/stv0910*
12906
12907 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12908 L:      [email protected]
12909 S:      Orphan
12910 W:      https://linuxtv.org
12911 T:      git git://linuxtv.org/media_tree.git
12912 F:      drivers/media/dvb-frontends/stv6111*
12913
12914 MEDIA DRIVERS FOR STM32 - DCMI
12915 M:      Hugues Fruchet <[email protected]>
12916 L:      [email protected]
12917 S:      Supported
12918 T:      git git://linuxtv.org/media_tree.git
12919 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12920 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12921
12922 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12923 M:      Mauro Carvalho Chehab <[email protected]>
12924 L:      [email protected]
12925 S:      Maintained
12926 W:      https://linuxtv.org
12927 Q:      http://patchwork.kernel.org/project/linux-media/list/
12928 T:      git git://linuxtv.org/media_tree.git
12929 F:      Documentation/admin-guide/media/
12930 F:      Documentation/devicetree/bindings/media/
12931 F:      Documentation/driver-api/media/
12932 F:      Documentation/userspace-api/media/
12933 F:      drivers/media/
12934 F:      drivers/staging/media/
12935 F:      include/dt-bindings/media/
12936 F:      include/linux/platform_data/media/
12937 F:      include/media/
12938 F:      include/uapi/linux/dvb/
12939 F:      include/uapi/linux/ivtv*
12940 F:      include/uapi/linux/media.h
12941 F:      include/uapi/linux/meye.h
12942 F:      include/uapi/linux/uvcvideo.h
12943 F:      include/uapi/linux/v4l2-*
12944 F:      include/uapi/linux/videodev2.h
12945
12946 MEDIATEK BLUETOOTH DRIVER
12947 M:      Sean Wang <[email protected]>
12948 L:      [email protected]
12949 L:      [email protected] (moderated for non-subscribers)
12950 S:      Maintained
12951 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12952 F:      drivers/bluetooth/btmtkuart.c
12953
12954 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12955 M:      Sean Wang <[email protected]>
12956 L:      [email protected]
12957 S:      Maintained
12958 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12959 F:      drivers/power/reset/mt6323-poweroff.c
12960
12961 MEDIATEK CIR DRIVER
12962 M:      Sean Wang <[email protected]>
12963 S:      Maintained
12964 F:      drivers/media/rc/mtk-cir.c
12965
12966 MEDIATEK DMA DRIVER
12967 M:      Sean Wang <[email protected]>
12968 L:      [email protected]
12969 L:      [email protected] (moderated for non-subscribers)
12970 L:      [email protected] (moderated for non-subscribers)
12971 S:      Maintained
12972 F:      Documentation/devicetree/bindings/dma/mtk-*
12973 F:      drivers/dma/mediatek/
12974
12975 MEDIATEK ETHERNET DRIVER
12976 M:      Felix Fietkau <[email protected]>
12977 M:      John Crispin <[email protected]>
12978 M:      Sean Wang <[email protected]>
12979 M:      Mark Lee <[email protected]>
12980 M:      Lorenzo Bianconi <[email protected]>
12981 L:      [email protected]
12982 S:      Maintained
12983 F:      drivers/net/ethernet/mediatek/
12984
12985 MEDIATEK I2C CONTROLLER DRIVER
12986 M:      Qii Wang <[email protected]>
12987 L:      [email protected]
12988 S:      Maintained
12989 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12990 F:      drivers/i2c/busses/i2c-mt65xx.c
12991
12992 MEDIATEK IOMMU DRIVER
12993 M:      Yong Wu <[email protected]>
12994 L:      [email protected]
12995 L:      [email protected] (moderated for non-subscribers)
12996 S:      Supported
12997 F:      Documentation/devicetree/bindings/iommu/mediatek*
12998 F:      drivers/iommu/mtk_iommu*
12999 F:      include/dt-bindings/memory/mt*-port.h
13000
13001 MEDIATEK JPEG DRIVER
13002 M:      Bin Liu <[email protected]>
13003 S:      Supported
13004 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
13005 F:      drivers/media/platform/mediatek/jpeg/
13006
13007 MEDIATEK KEYPAD DRIVER
13008 M:      Mattijs Korpershoek <[email protected]>
13009 S:      Supported
13010 F:      Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
13011 F:      drivers/input/keyboard/mt6779-keypad.c
13012
13013 MEDIATEK MDP DRIVER
13014 M:      Minghsiu Tsai <[email protected]>
13015 M:      Houlong Wei <[email protected]>
13016 M:      Andrew-CT Chen <[email protected]>
13017 S:      Supported
13018 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
13019 F:      drivers/media/platform/mediatek/mdp/
13020 F:      drivers/media/platform/mediatek/vpu/
13021
13022 MEDIATEK MEDIA DRIVER
13023 M:      Tiffany Lin <[email protected]>
13024 M:      Andrew-CT Chen <[email protected]>
13025 M:      Yunfei Dong <[email protected]>
13026 S:      Supported
13027 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
13028 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
13029 F:      drivers/media/platform/mediatek/vcodec/
13030 F:      drivers/media/platform/mediatek/vpu/
13031
13032 MEDIATEK MMC/SD/SDIO DRIVER
13033 M:      Chaotian Jing <[email protected]>
13034 S:      Maintained
13035 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
13036 F:      drivers/mmc/host/mtk-sd.c
13037
13038 MEDIATEK MT76 WIRELESS LAN DRIVER
13039 M:      Felix Fietkau <[email protected]>
13040 M:      Lorenzo Bianconi <[email protected]>
13041 M:      Ryder Lee <[email protected]>
13042 R:      Shayne Chen <[email protected]>
13043 R:      Sean Wang <[email protected]>
13044 L:      [email protected]
13045 S:      Maintained
13046 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
13047 F:      drivers/net/wireless/mediatek/mt76/
13048
13049 MEDIATEK MT7601U WIRELESS LAN DRIVER
13050 M:      Jakub Kicinski <[email protected]>
13051 L:      [email protected]
13052 S:      Maintained
13053 F:      drivers/net/wireless/mediatek/mt7601u/
13054
13055 MEDIATEK MT7621 CLOCK DRIVER
13056 M:      Sergio Paracuellos <[email protected]>
13057 S:      Maintained
13058 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
13059 F:      drivers/clk/ralink/clk-mt7621.c
13060
13061 MEDIATEK MT7621/28/88 I2C DRIVER
13062 M:      Stefan Roese <[email protected]>
13063 L:      [email protected]
13064 S:      Maintained
13065 F:      Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
13066 F:      drivers/i2c/busses/i2c-mt7621.c
13067
13068 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
13069 M:      Sergio Paracuellos <[email protected]>
13070 S:      Maintained
13071 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
13072 F:      drivers/pci/controller/pcie-mt7621.c
13073
13074 MEDIATEK MT7621 PHY PCI DRIVER
13075 M:      Sergio Paracuellos <[email protected]>
13076 S:      Maintained
13077 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
13078 F:      drivers/phy/ralink/phy-mt7621-pci.c
13079
13080 MEDIATEK NAND CONTROLLER DRIVER
13081 L:      [email protected]
13082 S:      Orphan
13083 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
13084 F:      drivers/mtd/nand/raw/mtk_*
13085
13086 MEDIATEK PMIC LED DRIVER
13087 M:      Sean Wang <[email protected]>
13088 S:      Maintained
13089 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
13090 F:      drivers/leds/leds-mt6323.c
13091
13092 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
13093 M:      Sean Wang <[email protected]>
13094 S:      Maintained
13095 F:      drivers/char/hw_random/mtk-rng.c
13096
13097 MEDIATEK SMI DRIVER
13098 M:      Yong Wu <[email protected]>
13099 L:      [email protected] (moderated for non-subscribers)
13100 S:      Supported
13101 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
13102 F:      drivers/memory/mtk-smi.c
13103 F:      include/soc/mediatek/smi.h
13104
13105 MEDIATEK SWITCH DRIVER
13106 M:      Sean Wang <[email protected]>
13107 M:      Landen Chao <[email protected]>
13108 M:      DENG Qingfang <[email protected]>
13109 L:      [email protected]
13110 S:      Maintained
13111 F:      drivers/net/dsa/mt7530.*
13112 F:      net/dsa/tag_mtk.c
13113
13114 MEDIATEK T7XX 5G WWAN MODEM DRIVER
13115 M:      Chandrashekar Devegowda <[email protected]>
13116 M:      Intel Corporation <[email protected]>
13117 R:      Chiranjeevi Rapolu <[email protected]>
13118 R:      Liu Haijun <[email protected]>
13119 R:      M Chetan Kumar <[email protected]>
13120 R:      Ricardo Martinez <[email protected]>
13121 L:      [email protected]
13122 S:      Supported
13123 F:      drivers/net/wwan/t7xx/
13124
13125 MEDIATEK USB3 DRD IP DRIVER
13126 M:      Chunfeng Yun <[email protected]>
13127 L:      [email protected]
13128 L:      [email protected] (moderated for non-subscribers)
13129 L:      [email protected] (moderated for non-subscribers)
13130 S:      Maintained
13131 F:      Documentation/devicetree/bindings/usb/mediatek,*
13132 F:      drivers/usb/host/xhci-mtk*
13133 F:      drivers/usb/mtu3/
13134
13135 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
13136 M:      Peter Senna Tschudin <[email protected]>
13137 M:      Martin Donnelly <[email protected]>
13138 M:      Martyn Welch <[email protected]>
13139 S:      Maintained
13140 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
13141 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
13142
13143 MEGARAID SCSI/SAS DRIVERS
13144 M:      Kashyap Desai <[email protected]>
13145 M:      Sumit Saxena <[email protected]>
13146 M:      Shivasharan S <[email protected]>
13147 L:      [email protected]
13148 L:      [email protected]
13149 S:      Maintained
13150 W:      http://www.avagotech.com/support/
13151 F:      Documentation/scsi/megaraid.rst
13152 F:      drivers/scsi/megaraid.*
13153 F:      drivers/scsi/megaraid/
13154
13155 MELEXIS MLX90614 DRIVER
13156 M:      Crt Mori <[email protected]>
13157 L:      [email protected]
13158 S:      Supported
13159 W:      http://www.melexis.com
13160 F:      drivers/iio/temperature/mlx90614.c
13161
13162 MELEXIS MLX90632 DRIVER
13163 M:      Crt Mori <[email protected]>
13164 L:      [email protected]
13165 S:      Supported
13166 W:      http://www.melexis.com
13167 F:      drivers/iio/temperature/mlx90632.c
13168
13169 MELFAS MIP4 TOUCHSCREEN DRIVER
13170 M:      Sangwon Jee <[email protected]>
13171 S:      Supported
13172 W:      http://www.melfas.com
13173 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13174 F:      drivers/input/touchscreen/melfas_mip4.c
13175
13176 MELLANOX BLUEFIELD I2C DRIVER
13177 M:      Khalil Blaiech <[email protected]>
13178 M:      Asmaa Mnebhi <[email protected]>
13179 L:      [email protected]
13180 S:      Supported
13181 F:      drivers/i2c/busses/i2c-mlxbf.c
13182
13183 MELLANOX ETHERNET DRIVER (mlx4_en)
13184 M:      Tariq Toukan <[email protected]>
13185 L:      [email protected]
13186 S:      Supported
13187 W:      http://www.mellanox.com
13188 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13189 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13190
13191 MELLANOX ETHERNET DRIVER (mlx5e)
13192 M:      Saeed Mahameed <[email protected]>
13193 L:      [email protected]
13194 S:      Supported
13195 W:      http://www.mellanox.com
13196 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13197 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13198
13199 MELLANOX ETHERNET INNOVA DRIVERS
13200 R:      Boris Pismenny <[email protected]>
13201 L:      [email protected]
13202 S:      Supported
13203 W:      http://www.mellanox.com
13204 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13205 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13206 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13207 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13208
13209 MELLANOX ETHERNET SWITCH DRIVERS
13210 M:      Ido Schimmel <[email protected]>
13211 M:      Petr Machata <[email protected]>
13212 L:      [email protected]
13213 S:      Supported
13214 W:      http://www.mellanox.com
13215 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13216 F:      drivers/net/ethernet/mellanox/mlxsw/
13217 F:      tools/testing/selftests/drivers/net/mlxsw/
13218
13219 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13220 M:      [email protected]
13221 L:      [email protected]
13222 S:      Supported
13223 W:      http://www.mellanox.com
13224 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13225 F:      drivers/net/ethernet/mellanox/mlxfw/
13226
13227 MELLANOX HARDWARE PLATFORM SUPPORT
13228 M:      Hans de Goede <[email protected]>
13229 M:      Mark Gross <[email protected]>
13230 M:      Vadim Pasternak <[email protected]>
13231 L:      [email protected]
13232 S:      Supported
13233 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13234 F:      drivers/platform/mellanox/
13235 F:      include/linux/platform_data/mlxreg.h
13236
13237 MELLANOX MLX4 core VPI driver
13238 M:      Tariq Toukan <[email protected]>
13239 L:      [email protected]
13240 L:      [email protected]
13241 S:      Supported
13242 W:      http://www.mellanox.com
13243 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13244 F:      drivers/net/ethernet/mellanox/mlx4/
13245 F:      include/linux/mlx4/
13246
13247 MELLANOX MLX4 IB driver
13248 M:      Yishai Hadas <[email protected]>
13249 L:      [email protected]
13250 S:      Supported
13251 W:      http://www.mellanox.com
13252 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13253 F:      drivers/infiniband/hw/mlx4/
13254 F:      include/linux/mlx4/
13255 F:      include/uapi/rdma/mlx4-abi.h
13256
13257 MELLANOX MLX5 core VPI driver
13258 M:      Saeed Mahameed <[email protected]>
13259 M:      Leon Romanovsky <[email protected]>
13260 L:      [email protected]
13261 L:      [email protected]
13262 S:      Supported
13263 W:      http://www.mellanox.com
13264 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13265 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13266 F:      drivers/net/ethernet/mellanox/mlx5/core/
13267 F:      include/linux/mlx5/
13268
13269 MELLANOX MLX5 IB driver
13270 M:      Leon Romanovsky <[email protected]>
13271 L:      [email protected]
13272 S:      Supported
13273 W:      http://www.mellanox.com
13274 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13275 F:      drivers/infiniband/hw/mlx5/
13276 F:      include/linux/mlx5/
13277 F:      include/uapi/rdma/mlx5-abi.h
13278
13279 MELLANOX MLXCPLD I2C AND MUX DRIVER
13280 M:      Vadim Pasternak <[email protected]>
13281 M:      Michael Shych <[email protected]>
13282 L:      [email protected]
13283 S:      Supported
13284 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13285 F:      drivers/i2c/busses/i2c-mlxcpld.c
13286 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13287
13288 MELLANOX MLXCPLD LED DRIVER
13289 M:      Vadim Pasternak <[email protected]>
13290 L:      [email protected]
13291 S:      Supported
13292 F:      Documentation/leds/leds-mlxcpld.rst
13293 F:      drivers/leds/leds-mlxcpld.c
13294 F:      drivers/leds/leds-mlxreg.c
13295
13296 MELLANOX PLATFORM DRIVER
13297 M:      Vadim Pasternak <[email protected]>
13298 L:      [email protected]
13299 S:      Supported
13300 F:      drivers/platform/x86/mlx-platform.c
13301
13302 MEMBARRIER SUPPORT
13303 M:      Mathieu Desnoyers <[email protected]>
13304 M:      "Paul E. McKenney" <[email protected]>
13305 L:      [email protected]
13306 S:      Supported
13307 F:      arch/powerpc/include/asm/membarrier.h
13308 F:      include/uapi/linux/membarrier.h
13309 F:      kernel/sched/membarrier.c
13310
13311 MEMBLOCK
13312 M:      Mike Rapoport <[email protected]>
13313 L:      [email protected]
13314 S:      Maintained
13315 F:      Documentation/core-api/boot-time-mm.rst
13316 F:      include/linux/memblock.h
13317 F:      mm/memblock.c
13318 F:      tools/testing/memblock/
13319
13320 MEMORY CONTROLLER DRIVERS
13321 M:      Krzysztof Kozlowski <[email protected]>
13322 L:      [email protected]
13323 S:      Maintained
13324 B:      mailto:[email protected]
13325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13326 F:      Documentation/devicetree/bindings/memory-controllers/
13327 F:      drivers/memory/
13328 F:      include/dt-bindings/memory/
13329 F:      include/memory/
13330
13331 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13332 M:      Dmitry Osipenko <[email protected]>
13333 L:      [email protected]
13334 L:      [email protected]
13335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13336 S:      Maintained
13337 F:      drivers/devfreq/tegra30-devfreq.c
13338
13339 MEMORY MANAGEMENT
13340 M:      Andrew Morton <[email protected]>
13341 L:      [email protected]
13342 S:      Maintained
13343 W:      http://www.linux-mm.org
13344 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13345 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13346 F:      include/linux/gfp.h
13347 F:      include/linux/gfp_types.h
13348 F:      include/linux/memory_hotplug.h
13349 F:      include/linux/mm.h
13350 F:      include/linux/mmzone.h
13351 F:      include/linux/pagewalk.h
13352 F:      mm/
13353 F:      tools/testing/selftests/vm/
13354
13355 VMALLOC
13356 M:      Andrew Morton <[email protected]>
13357 R:      Uladzislau Rezki <[email protected]>
13358 R:      Christoph Hellwig <[email protected]>
13359 L:      [email protected]
13360 S:      Maintained
13361 W:      http://www.linux-mm.org
13362 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13363 F:      include/linux/vmalloc.h
13364 F:      mm/vmalloc.c
13365
13366 MEMORY HOT(UN)PLUG
13367 M:      David Hildenbrand <[email protected]>
13368 M:      Oscar Salvador <[email protected]>
13369 L:      [email protected]
13370 S:      Maintained
13371 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13372 F:      Documentation/core-api/memory-hotplug.rst
13373 F:      drivers/base/memory.c
13374 F:      include/linux/memory_hotplug.h
13375 F:      mm/memory_hotplug.c
13376 F:      tools/testing/selftests/memory-hotplug/
13377
13378 MEMORY TECHNOLOGY DEVICES (MTD)
13379 M:      Miquel Raynal <[email protected]>
13380 M:      Richard Weinberger <[email protected]>
13381 M:      Vignesh Raghavendra <[email protected]>
13382 L:      [email protected]
13383 S:      Maintained
13384 W:      http://www.linux-mtd.infradead.org/
13385 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13386 C:      irc://irc.oftc.net/mtd
13387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13389 F:      Documentation/devicetree/bindings/mtd/
13390 F:      drivers/mtd/
13391 F:      include/linux/mtd/
13392 F:      include/uapi/mtd/
13393
13394 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13395 M:      Dmitry Rokosov <[email protected]>
13396 L:      [email protected]
13397 S:      Maintained
13398 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13399 F:      drivers/iio/accel/msa311.c
13400
13401 MEN A21 WATCHDOG DRIVER
13402 M:      Johannes Thumshirn <[email protected]>
13403 L:      [email protected]
13404 S:      Maintained
13405 F:      drivers/watchdog/mena21_wdt.c
13406
13407 MEN CHAMELEON BUS (mcb)
13408 M:      Johannes Thumshirn <[email protected]>
13409 S:      Maintained
13410 F:      Documentation/driver-api/men-chameleon-bus.rst
13411 F:      drivers/mcb/
13412 F:      include/linux/mcb.h
13413
13414 MEN F21BMC (Board Management Controller)
13415 M:      Andreas Werner <[email protected]>
13416 S:      Supported
13417 F:      Documentation/hwmon/menf21bmc.rst
13418 F:      drivers/hwmon/menf21bmc_hwmon.c
13419 F:      drivers/leds/leds-menf21bmc.c
13420 F:      drivers/mfd/menf21bmc.c
13421 F:      drivers/watchdog/menf21bmc_wdt.c
13422
13423 MEN Z069 WATCHDOG DRIVER
13424 M:      Johannes Thumshirn <[email protected]>
13425 L:      [email protected]
13426 S:      Maintained
13427 F:      drivers/watchdog/menz69_wdt.c
13428
13429 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13430 M:      Neil Armstrong <[email protected]>
13431 L:      [email protected]
13432 L:      [email protected]
13433 S:      Supported
13434 W:      http://linux-meson.com/
13435 T:      git git://linuxtv.org/media_tree.git
13436 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
13437 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13438 F:      drivers/media/cec/platform/meson/ao-cec.c
13439
13440 MESON GE2D DRIVER FOR AMLOGIC SOCS
13441 M:      Neil Armstrong <[email protected]>
13442 L:      [email protected]
13443 L:      [email protected]
13444 S:      Supported
13445 T:      git git://linuxtv.org/media_tree.git
13446 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13447 F:      drivers/media/platform/amlogic/meson-ge2d/
13448
13449 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13450 M:      Liang Yang <[email protected]>
13451 L:      [email protected]
13452 S:      Maintained
13453 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
13454 F:      drivers/mtd/nand/raw/meson_*
13455
13456 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13457 M:      Neil Armstrong <[email protected]>
13458 L:      [email protected]
13459 L:      [email protected]
13460 S:      Supported
13461 T:      git git://linuxtv.org/media_tree.git
13462 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13463 F:      drivers/staging/media/meson/vdec/
13464
13465 METHODE UDPU SUPPORT
13466 M:      Vladimir Vid <[email protected]>
13467 S:      Maintained
13468 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13469
13470 MHI BUS
13471 M:      Manivannan Sadhasivam <[email protected]>
13472 L:      [email protected]
13473 L:      [email protected]
13474 S:      Maintained
13475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13476 F:      Documentation/ABI/stable/sysfs-bus-mhi
13477 F:      Documentation/mhi/
13478 F:      drivers/bus/mhi/
13479 F:      include/linux/mhi.h
13480
13481 MICROBLAZE ARCHITECTURE
13482 M:      Michal Simek <[email protected]>
13483 S:      Supported
13484 W:      http://www.monstr.eu/fdt/
13485 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13486 F:      arch/microblaze/
13487
13488 MICROCHIP AT91 DMA DRIVERS
13489 M:      Ludovic Desroches <[email protected]>
13490 M:      Tudor Ambarus <[email protected]>
13491 L:      [email protected] (moderated for non-subscribers)
13492 L:      [email protected]
13493 S:      Supported
13494 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13495 F:      drivers/dma/at_hdmac.c
13496 F:      drivers/dma/at_xdmac.c
13497 F:      include/dt-bindings/dma/at91.h
13498
13499 MICROCHIP AT91 SERIAL DRIVER
13500 M:      Richard Genoud <[email protected]>
13501 S:      Maintained
13502 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13503 F:      drivers/tty/serial/atmel_serial.c
13504 F:      drivers/tty/serial/atmel_serial.h
13505
13506 MICROCHIP AT91 USART MFD DRIVER
13507 M:      Radu Pirea <[email protected]>
13508 L:      [email protected]
13509 S:      Supported
13510 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13511 F:      drivers/mfd/at91-usart.c
13512 F:      include/dt-bindings/mfd/at91-usart.h
13513
13514 MICROCHIP AT91 USART SPI DRIVER
13515 M:      Radu Pirea <[email protected]>
13516 L:      [email protected]
13517 S:      Supported
13518 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13519 F:      drivers/spi/spi-at91-usart.c
13520
13521 MICROCHIP AUDIO ASOC DRIVERS
13522 M:      Codrin Ciubotariu <[email protected]>
13523 L:      [email protected] (moderated for non-subscribers)
13524 S:      Supported
13525 F:      sound/soc/atmel
13526
13527 MICROCHIP CSI2DC DRIVER
13528 M:      Eugen Hristev <[email protected]>
13529 L:      [email protected]
13530 S:      Supported
13531 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13532 F:      drivers/media/platform/microchip/microchip-csi2dc.c
13533
13534 MICROCHIP ECC DRIVER
13535 M:      Tudor Ambarus <[email protected]>
13536 L:      [email protected]
13537 S:      Maintained
13538 F:      drivers/crypto/atmel-ecc.*
13539
13540 MICROCHIP EIC DRIVER
13541 M:      Claudiu Beznea <[email protected]>
13542 L:      [email protected] (moderated for non-subscribers)
13543 S:      Supported
13544 F:      drivers/irqchip/irq-mchp-eic.c
13545
13546 MICROCHIP I2C DRIVER
13547 M:      Codrin Ciubotariu <[email protected]>
13548 L:      [email protected]
13549 S:      Supported
13550 F:      drivers/i2c/busses/i2c-at91-*.c
13551 F:      drivers/i2c/busses/i2c-at91.h
13552
13553 MICROCHIP ISC DRIVER
13554 M:      Eugen Hristev <[email protected]>
13555 L:      [email protected]
13556 S:      Supported
13557 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13558 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13559 F:      drivers/staging/media/deprecated/atmel/atmel-isc*
13560 F:      drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
13561 F:      drivers/media/platform/microchip/microchip-isc*
13562 F:      drivers/media/platform/microchip/microchip-sama*-isc*
13563 F:      include/linux/atmel-isc-media.h
13564
13565 MICROCHIP ISI DRIVER
13566 M:      Eugen Hristev <[email protected]>
13567 L:      [email protected]
13568 S:      Supported
13569 F:      drivers/media/platform/atmel/atmel-isi.c
13570 F:      drivers/media/platform/atmel/atmel-isi.h
13571
13572 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13573 M:      Woojung Huh <[email protected]>
13574 M:      [email protected]
13575 L:      [email protected]
13576 S:      Maintained
13577 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13578 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13579 F:      drivers/net/dsa/microchip/*
13580 F:      include/linux/dsa/ksz_common.h
13581 F:      include/linux/platform_data/microchip-ksz.h
13582 F:      net/dsa/tag_ksz.c
13583
13584 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13585 M:      Arun Ramadoss <[email protected]>
13586 R:      [email protected]
13587 L:      [email protected]
13588 S:      Maintained
13589 F:      drivers/net/phy/microchip_t1.c
13590
13591 MICROCHIP LAN743X ETHERNET DRIVER
13592 M:      Bryan Whitehead <[email protected]>
13593 M:      [email protected]
13594 L:      [email protected]
13595 S:      Maintained
13596 F:      drivers/net/ethernet/microchip/lan743x_*
13597
13598 MICROCHIP LAN966X ETHERNET DRIVER
13599 M:      Horatiu Vultur <[email protected]>
13600 M:      [email protected]
13601 L:      [email protected]
13602 S:      Maintained
13603 F:      drivers/net/ethernet/microchip/lan966x/*
13604
13605 MICROCHIP LCDFB DRIVER
13606 M:      Nicolas Ferre <[email protected]>
13607 L:      [email protected]
13608 S:      Maintained
13609 F:      drivers/video/fbdev/atmel_lcdfb.c
13610 F:      include/video/atmel_lcdc.h
13611
13612 MICROCHIP MCP16502 PMIC DRIVER
13613 M:      Claudiu Beznea <[email protected]>
13614 L:      [email protected] (moderated for non-subscribers)
13615 S:      Supported
13616 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13617 F:      drivers/regulator/mcp16502.c
13618
13619 MICROCHIP MCP3911 ADC DRIVER
13620 M:      Marcus Folkesson <[email protected]>
13621 M:      Kent Gustavsson <[email protected]>
13622 L:      [email protected]
13623 S:      Maintained
13624 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13625 F:      drivers/iio/adc/mcp3911.c
13626
13627 MICROCHIP MMC/SD/SDIO MCI DRIVER
13628 M:      Ludovic Desroches <[email protected]>
13629 S:      Maintained
13630 F:      drivers/mmc/host/atmel-mci.c
13631
13632 MICROCHIP NAND DRIVER
13633 M:      Tudor Ambarus <[email protected]>
13634 L:      [email protected]
13635 S:      Supported
13636 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13637 F:      drivers/mtd/nand/raw/atmel/*
13638
13639 MICROCHIP PCI1XXXX GP DRIVER
13640 M:      Kumaravel Thiagarajan <[email protected]>
13641 L:      [email protected]
13642 S:      Supported
13643 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13644 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13645 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13646
13647 MICROCHIP OTPC DRIVER
13648 M:      Claudiu Beznea <[email protected]>
13649 L:      [email protected] (moderated for non-subscribers)
13650 S:      Supported
13651 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13652 F:      drivers/nvmem/microchip-otpc.c
13653 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13654
13655 MICROCHIP PCI1XXXX I2C DRIVER
13656 M:      Tharun Kumar P <[email protected]>
13657 M:      Kumaravel Thiagarajan <[email protected]>
13658 M:      Microchip Linux Driver Support <[email protected]>
13659 L:      [email protected]
13660 S:      Maintained
13661 F:      drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13662
13663 MICROCHIP PWM DRIVER
13664 M:      Claudiu Beznea <[email protected]>
13665 L:      [email protected] (moderated for non-subscribers)
13666 L:      [email protected]
13667 S:      Supported
13668 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13669 F:      drivers/pwm/pwm-atmel.c
13670
13671 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13672 M:      Eugen Hristev <[email protected]>
13673 L:      [email protected]
13674 S:      Supported
13675 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13676 F:      drivers/iio/adc/at91-sama5d2_adc.c
13677 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13678
13679 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13680 M:      Claudiu Beznea <[email protected]>
13681 S:      Supported
13682 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13683
13684 MICROCHIP SPI DRIVER
13685 M:      Tudor Ambarus <[email protected]>
13686 S:      Supported
13687 F:      drivers/spi/spi-atmel.*
13688
13689 MICROCHIP SSC DRIVER
13690 M:      Codrin Ciubotariu <[email protected]>
13691 L:      [email protected] (moderated for non-subscribers)
13692 S:      Supported
13693 F:      drivers/misc/atmel-ssc.c
13694 F:      include/linux/atmel-ssc.h
13695
13696 MICROCHIP SOC DRIVERS
13697 M:      Conor Dooley <[email protected]>
13698 S:      Supported
13699 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
13700 F:      drivers/soc/microchip/
13701
13702 MICROCHIP USB251XB DRIVER
13703 M:      Richard Leitner <[email protected]>
13704 L:      [email protected]
13705 S:      Maintained
13706 F:      Documentation/devicetree/bindings/usb/usb251xb.yaml
13707 F:      drivers/usb/misc/usb251xb.c
13708
13709 MICROCHIP USBA UDC DRIVER
13710 M:      Cristian Birsan <[email protected]>
13711 L:      [email protected] (moderated for non-subscribers)
13712 S:      Supported
13713 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13714
13715 MICROCHIP WILC1000 WIFI DRIVER
13716 M:      Ajay Singh <[email protected]>
13717 M:      Claudiu Beznea <[email protected]>
13718 L:      [email protected]
13719 S:      Supported
13720 F:      drivers/net/wireless/microchip/wilc1000/
13721
13722 MICROSEMI MIPS SOCS
13723 M:      Alexandre Belloni <[email protected]>
13724 M:      [email protected]
13725 L:      [email protected]
13726 S:      Supported
13727 F:      Documentation/devicetree/bindings/mips/mscc.txt
13728 F:      Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
13729 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13730 F:      arch/mips/boot/dts/mscc/
13731 F:      arch/mips/configs/generic/board-ocelot.config
13732 F:      arch/mips/generic/board-ocelot.c
13733
13734 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13735 M:      Don Brace <[email protected]>
13736 L:      [email protected]
13737 L:      [email protected]
13738 S:      Supported
13739 F:      Documentation/scsi/smartpqi.rst
13740 F:      drivers/scsi/smartpqi/Kconfig
13741 F:      drivers/scsi/smartpqi/Makefile
13742 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13743 F:      include/linux/cciss*.h
13744 F:      include/uapi/linux/cciss*.h
13745
13746 MICROSOFT MANA RDMA DRIVER
13747 M:      Long Li <[email protected]>
13748 M:      Ajay Sharma <[email protected]>
13749 L:      [email protected]
13750 S:      Supported
13751 F:      drivers/infiniband/hw/mana/
13752 F:      include/net/mana
13753 F:      include/uapi/rdma/mana-abi.h
13754
13755 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13756 M:      Maximilian Luz <[email protected]>
13757 L:      [email protected]
13758 S:      Maintained
13759 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13760
13761 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13762 M:      Maximilian Luz <[email protected]>
13763 L:      [email protected]
13764 L:      [email protected]
13765 S:      Maintained
13766 F:      drivers/power/supply/surface_battery.c
13767 F:      drivers/power/supply/surface_charger.c
13768
13769 MICROSOFT SURFACE DTX DRIVER
13770 M:      Maximilian Luz <[email protected]>
13771 L:      [email protected]
13772 S:      Maintained
13773 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13774 F:      drivers/platform/surface/surface_dtx.c
13775 F:      include/uapi/linux/surface_aggregator/dtx.h
13776
13777 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13778 M:      Maximilian Luz <[email protected]>
13779 L:      [email protected]
13780 S:      Maintained
13781 F:      drivers/platform/surface/surface_gpe.c
13782
13783 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13784 M:      Hans de Goede <[email protected]>
13785 M:      Mark Gross <[email protected]>
13786 M:      Maximilian Luz <[email protected]>
13787 L:      [email protected]
13788 S:      Maintained
13789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13790 F:      drivers/platform/surface/
13791
13792 MICROSOFT SURFACE HID TRANSPORT DRIVER
13793 M:      Maximilian Luz <[email protected]>
13794 L:      [email protected]
13795 L:      [email protected]
13796 S:      Maintained
13797 F:      drivers/hid/surface-hid/
13798
13799 MICROSOFT SURFACE HOT-PLUG DRIVER
13800 M:      Maximilian Luz <[email protected]>
13801 L:      [email protected]
13802 S:      Maintained
13803 F:      drivers/platform/surface/surface_hotplug.c
13804
13805 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13806 M:      Maximilian Luz <[email protected]>
13807 L:      [email protected]
13808 S:      Maintained
13809 F:      drivers/platform/surface/surface_platform_profile.c
13810
13811 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13812 M:      Chen Yu <[email protected]>
13813 L:      [email protected]
13814 S:      Supported
13815 F:      drivers/platform/surface/surfacepro3_button.c
13816
13817 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13818 M:      Maximilian Luz <[email protected]>
13819 L:      [email protected]
13820 S:      Maintained
13821 W:      https://github.com/linux-surface/surface-aggregator-module
13822 C:      irc://irc.libera.chat/linux-surface
13823 F:      Documentation/driver-api/surface_aggregator/
13824 F:      drivers/platform/surface/aggregator/
13825 F:      drivers/platform/surface/surface_acpi_notify.c
13826 F:      drivers/platform/surface/surface_aggregator_cdev.c
13827 F:      drivers/platform/surface/surface_aggregator_registry.c
13828 F:      include/linux/surface_acpi_notify.h
13829 F:      include/linux/surface_aggregator/
13830 F:      include/uapi/linux/surface_aggregator/
13831
13832 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13833 M:      Maximilian Luz <[email protected]>
13834 L:      [email protected]
13835 S:      Maintained
13836 F:      drivers/platform/surface/surface_aggregator_hub.c
13837
13838 MICROTEK X6 SCANNER
13839 M:      Oliver Neukum <[email protected]>
13840 S:      Maintained
13841 F:      drivers/usb/image/microtek.*
13842
13843 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13844 M:      Luka Kovacic <[email protected]>
13845 M:      Luka Perkov <[email protected]>
13846 S:      Maintained
13847 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13848 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13849 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13850 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13851 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13852 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13853
13854 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13855 M:      Sakari Ailus <[email protected]>
13856 L:      [email protected]
13857 S:      Maintained
13858 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13859 F:      Documentation/driver-api/media/drivers/ccs/
13860 F:      Documentation/userspace-api/media/drivers/ccs.rst
13861 F:      drivers/media/i2c/ccs-pll.c
13862 F:      drivers/media/i2c/ccs-pll.h
13863 F:      drivers/media/i2c/ccs/
13864 F:      include/uapi/linux/ccs.h
13865 F:      include/uapi/linux/smiapp.h
13866
13867 MIPS
13868 M:      Thomas Bogendoerfer <[email protected]>
13869 L:      [email protected]
13870 S:      Maintained
13871 W:      http://www.linux-mips.org/
13872 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13874 F:      Documentation/devicetree/bindings/mips/
13875 F:      Documentation/mips/
13876 F:      arch/mips/
13877 F:      drivers/platform/mips/
13878 F:      include/dt-bindings/mips/
13879
13880 MIPS BOSTON DEVELOPMENT BOARD
13881 M:      Paul Burton <[email protected]>
13882 L:      [email protected]
13883 S:      Maintained
13884 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13885 F:      arch/mips/boot/dts/img/boston.dts
13886 F:      arch/mips/configs/generic/board-boston.config
13887 F:      drivers/clk/imgtec/clk-boston.c
13888 F:      include/dt-bindings/clock/boston-clock.h
13889
13890 MIPS CORE DRIVERS
13891 M:      Thomas Bogendoerfer <[email protected]>
13892 M:      Serge Semin <[email protected]>
13893 L:      [email protected]
13894 S:      Supported
13895 F:      drivers/bus/mips_cdmm.c
13896 F:      drivers/clocksource/mips-gic-timer.c
13897 F:      drivers/cpuidle/cpuidle-cps.c
13898 F:      drivers/irqchip/irq-mips-cpu.c
13899 F:      drivers/irqchip/irq-mips-gic.c
13900
13901 MIPS GENERIC PLATFORM
13902 M:      Paul Burton <[email protected]>
13903 L:      [email protected]
13904 S:      Supported
13905 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13906 F:      arch/mips/generic/
13907 F:      arch/mips/tools/generic-board-config.sh
13908
13909 MIPS RINT INSTRUCTION EMULATION
13910 M:      Aleksandar Markovic <[email protected]>
13911 L:      [email protected]
13912 S:      Supported
13913 F:      arch/mips/math-emu/dp_rint.c
13914 F:      arch/mips/math-emu/sp_rint.c
13915
13916 MIPS/LOONGSON1 ARCHITECTURE
13917 M:      Keguang Zhang <[email protected]>
13918 L:      [email protected]
13919 S:      Maintained
13920 F:      arch/mips/include/asm/mach-loongson32/
13921 F:      arch/mips/loongson32/
13922 F:      drivers/*/*/*loongson1*
13923 F:      drivers/*/*loongson1*
13924
13925 MIPS/LOONGSON2EF ARCHITECTURE
13926 M:      Jiaxun Yang <[email protected]>
13927 L:      [email protected]
13928 S:      Maintained
13929 F:      arch/mips/include/asm/mach-loongson2ef/
13930 F:      arch/mips/loongson2ef/
13931 F:      drivers/cpufreq/loongson2_cpufreq.c
13932
13933 MIPS/LOONGSON64 ARCHITECTURE
13934 M:      Huacai Chen <[email protected]>
13935 M:      Jiaxun Yang <[email protected]>
13936 L:      [email protected]
13937 S:      Maintained
13938 F:      arch/mips/include/asm/mach-loongson64/
13939 F:      arch/mips/loongson64/
13940 F:      drivers/irqchip/irq-loongson*
13941 F:      drivers/platform/mips/cpu_hwmon.c
13942
13943 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13944 M:      Hans Verkuil <[email protected]>
13945 L:      [email protected]
13946 S:      Odd Fixes
13947 W:      https://linuxtv.org
13948 T:      git git://linuxtv.org/media_tree.git
13949 F:      drivers/media/radio/radio-miropcm20*
13950
13951 MMP SUPPORT
13952 R:      Lubomir Rintel <[email protected]>
13953 L:      [email protected] (moderated for non-subscribers)
13954 S:      Odd Fixes
13955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13956 F:      arch/arm/boot/dts/mmp*
13957 F:      arch/arm/mach-mmp/
13958 F:      include/linux/soc/mmp/
13959
13960 MMP USB PHY DRIVERS
13961 R:      Lubomir Rintel <[email protected]>
13962 L:      [email protected] (moderated for non-subscribers)
13963 S:      Maintained
13964 F:      drivers/phy/marvell/phy-mmp3-usb.c
13965 F:      drivers/phy/marvell/phy-pxa-usb.c
13966
13967 MMU GATHER AND TLB INVALIDATION
13968 M:      Will Deacon <[email protected]>
13969 M:      "Aneesh Kumar K.V" <[email protected]>
13970 M:      Andrew Morton <[email protected]>
13971 M:      Nick Piggin <[email protected]>
13972 M:      Peter Zijlstra <[email protected]>
13973 L:      [email protected]
13974 L:      [email protected]
13975 S:      Maintained
13976 F:      arch/*/include/asm/tlb.h
13977 F:      include/asm-generic/tlb.h
13978 F:      mm/mmu_gather.c
13979
13980 MN88472 MEDIA DRIVER
13981 M:      Antti Palosaari <[email protected]>
13982 L:      [email protected]
13983 S:      Maintained
13984 W:      https://linuxtv.org
13985 W:      http://palosaari.fi/linux/
13986 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13987 F:      drivers/media/dvb-frontends/mn88472*
13988
13989 MN88473 MEDIA DRIVER
13990 M:      Antti Palosaari <[email protected]>
13991 L:      [email protected]
13992 S:      Maintained
13993 W:      https://linuxtv.org
13994 W:      http://palosaari.fi/linux/
13995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13996 F:      drivers/media/dvb-frontends/mn88473*
13997
13998 MODULE SUPPORT
13999 M:      Luis Chamberlain <[email protected]>
14000 L:      [email protected]
14001 L:      [email protected]
14002 S:      Maintained
14003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
14004 F:      include/linux/module.h
14005 F:      kernel/module/
14006 F:      scripts/module*
14007
14008 MONOLITHIC POWER SYSTEM PMIC DRIVER
14009 M:      Saravanan Sekar <[email protected]>
14010 S:      Maintained
14011 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
14012 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
14013 F:      drivers/iio/adc/mp2629_adc.c
14014 F:      drivers/mfd/mp2629.c
14015 F:      drivers/power/supply/mp2629_charger.c
14016 F:      drivers/regulator/mp5416.c
14017 F:      drivers/regulator/mpq7920.c
14018 F:      drivers/regulator/mpq7920.h
14019 F:      include/linux/mfd/mp2629.h
14020
14021 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
14022 S:      Orphan
14023 W:      http://popies.net/meye/
14024 F:      Documentation/userspace-api/media/drivers/meye*
14025 F:      drivers/staging/media/deprecated/meye/
14026 F:      include/uapi/linux/meye.h
14027
14028 MOTORCOMM PHY DRIVER
14029 M:      Peter Geis <[email protected]>
14030 M:      Frank <[email protected]>
14031 L:      [email protected]
14032 S:      Maintained
14033 F:      Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
14034 F:      drivers/net/phy/motorcomm.c
14035
14036 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
14037 M:      Jiri Slaby <[email protected]>
14038 S:      Maintained
14039 F:      Documentation/driver-api/tty/moxa-smartio.rst
14040 F:      drivers/tty/mxser.*
14041
14042 MR800 AVERMEDIA USB FM RADIO DRIVER
14043 M:      Alexey Klimov <[email protected]>
14044 L:      [email protected]
14045 S:      Maintained
14046 T:      git git://linuxtv.org/media_tree.git
14047 F:      drivers/media/radio/radio-mr800.c
14048
14049 MRF24J40 IEEE 802.15.4 RADIO DRIVER
14050 M:      Stefan Schmidt <[email protected]>
14051 L:      [email protected]
14052 S:      Odd Fixes
14053 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
14054 F:      drivers/net/ieee802154/mrf24j40.c
14055
14056 MSI LAPTOP SUPPORT
14057 M:      "Lee, Chun-Yi" <[email protected]>
14058 L:      [email protected]
14059 S:      Maintained
14060 F:      drivers/platform/x86/msi-laptop.c
14061
14062 MSI WMI SUPPORT
14063 L:      [email protected]
14064 S:      Orphan
14065 F:      drivers/platform/x86/msi-wmi.c
14066
14067 MSI001 MEDIA DRIVER
14068 M:      Antti Palosaari <[email protected]>
14069 L:      [email protected]
14070 S:      Maintained
14071 W:      https://linuxtv.org
14072 W:      http://palosaari.fi/linux/
14073 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14074 T:      git git://linuxtv.org/anttip/media_tree.git
14075 F:      drivers/media/tuners/msi001*
14076
14077 MSI2500 MEDIA DRIVER
14078 M:      Antti Palosaari <[email protected]>
14079 L:      [email protected]
14080 S:      Maintained
14081 W:      https://linuxtv.org
14082 W:      http://palosaari.fi/linux/
14083 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14084 T:      git git://linuxtv.org/anttip/media_tree.git
14085 F:      drivers/media/usb/msi2500/
14086
14087 MSTAR INTERRUPT CONTROLLER DRIVER
14088 M:      Mark-PK Tsai <[email protected]>
14089 M:      Daniel Palmer <[email protected]>
14090 S:      Maintained
14091 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
14092 F:      drivers/irqchip/irq-mst-intc.c
14093
14094 MSYSTEMS DISKONCHIP G3 MTD DRIVER
14095 M:      Robert Jarzmik <[email protected]>
14096 L:      [email protected]
14097 S:      Maintained
14098 F:      drivers/mtd/devices/docg3*
14099
14100 MT9M032 APTINA SENSOR DRIVER
14101 M:      Laurent Pinchart <[email protected]>
14102 L:      [email protected]
14103 S:      Maintained
14104 T:      git git://linuxtv.org/media_tree.git
14105 F:      drivers/media/i2c/mt9m032.c
14106 F:      include/media/i2c/mt9m032.h
14107
14108 MT9P031 APTINA CAMERA SENSOR
14109 M:      Laurent Pinchart <[email protected]>
14110 L:      [email protected]
14111 S:      Maintained
14112 T:      git git://linuxtv.org/media_tree.git
14113 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
14114 F:      drivers/media/i2c/mt9p031.c
14115 F:      include/media/i2c/mt9p031.h
14116
14117 MT9T001 APTINA CAMERA SENSOR
14118 M:      Laurent Pinchart <[email protected]>
14119 L:      [email protected]
14120 S:      Maintained
14121 T:      git git://linuxtv.org/media_tree.git
14122 F:      drivers/media/i2c/mt9t001.c
14123 F:      include/media/i2c/mt9t001.h
14124
14125 MT9T112 APTINA CAMERA SENSOR
14126 M:      Jacopo Mondi <[email protected]>
14127 L:      [email protected]
14128 S:      Odd Fixes
14129 T:      git git://linuxtv.org/media_tree.git
14130 F:      drivers/media/i2c/mt9t112.c
14131 F:      include/media/i2c/mt9t112.h
14132
14133 MT9V032 APTINA CAMERA SENSOR
14134 M:      Laurent Pinchart <[email protected]>
14135 L:      [email protected]
14136 S:      Maintained
14137 T:      git git://linuxtv.org/media_tree.git
14138 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
14139 F:      drivers/media/i2c/mt9v032.c
14140 F:      include/media/i2c/mt9v032.h
14141
14142 MT9V111 APTINA CAMERA SENSOR
14143 M:      Jacopo Mondi <[email protected]>
14144 L:      [email protected]
14145 S:      Maintained
14146 T:      git git://linuxtv.org/media_tree.git
14147 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
14148 F:      drivers/media/i2c/mt9v111.c
14149
14150 MULTIFUNCTION DEVICES (MFD)
14151 M:      Lee Jones <[email protected]>
14152 S:      Supported
14153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14154 F:      Documentation/devicetree/bindings/mfd/
14155 F:      drivers/mfd/
14156 F:      include/dt-bindings/mfd/
14157 F:      include/linux/mfd/
14158
14159 MULTIMEDIA CARD (MMC) ETC. OVER SPI
14160 S:      Orphan
14161 F:      drivers/mmc/host/mmc_spi.c
14162 F:      include/linux/spi/mmc_spi.h
14163
14164 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
14165 M:      Ulf Hansson <[email protected]>
14166 L:      [email protected]
14167 S:      Maintained
14168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14169 F:      Documentation/devicetree/bindings/mmc/
14170 F:      drivers/mmc/
14171 F:      include/linux/mmc/
14172 F:      include/uapi/linux/mmc/
14173
14174 MULTIPLEXER SUBSYSTEM
14175 M:      Peter Rosin <[email protected]>
14176 S:      Maintained
14177 F:      Documentation/ABI/testing/sysfs-class-mux*
14178 F:      Documentation/devicetree/bindings/mux/
14179 F:      drivers/mux/
14180 F:      include/dt-bindings/mux/
14181 F:      include/linux/mux/
14182
14183 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
14184 M:      Bin Liu <[email protected]>
14185 L:      [email protected]
14186 S:      Maintained
14187 F:      drivers/usb/musb/
14188
14189 MXL301RF MEDIA DRIVER
14190 M:      Akihiro Tsukada <[email protected]>
14191 L:      [email protected]
14192 S:      Odd Fixes
14193 F:      drivers/media/tuners/mxl301rf*
14194
14195 MXL5007T MEDIA DRIVER
14196 M:      Michael Krufky <[email protected]>
14197 L:      [email protected]
14198 S:      Maintained
14199 W:      https://linuxtv.org
14200 W:      http://github.com/mkrufky
14201 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14202 T:      git git://linuxtv.org/mkrufky/tuners.git
14203 F:      drivers/media/tuners/mxl5007t.*
14204
14205 MXSFB DRM DRIVER
14206 M:      Marek Vasut <[email protected]>
14207 M:      Stefan Agner <[email protected]>
14208 L:      [email protected]
14209 S:      Supported
14210 T:      git git://anongit.freedesktop.org/drm/drm-misc
14211 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
14212 F:      drivers/gpu/drm/mxsfb/
14213
14214 MYLEX DAC960 PCI RAID Controller
14215 M:      Hannes Reinecke <[email protected]>
14216 L:      [email protected]
14217 S:      Supported
14218 F:      drivers/scsi/myrb.*
14219 F:      drivers/scsi/myrs.*
14220
14221 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14222 M:      Chris Lee <[email protected]>
14223 L:      [email protected]
14224 S:      Supported
14225 W:      https://www.cspi.com/ethernet-products/support/downloads/
14226 F:      drivers/net/ethernet/myricom/myri10ge/
14227
14228 NAND FLASH SUBSYSTEM
14229 M:      Miquel Raynal <[email protected]>
14230 R:      Richard Weinberger <[email protected]>
14231 L:      [email protected]
14232 S:      Maintained
14233 W:      http://www.linux-mtd.infradead.org/
14234 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14235 C:      irc://irc.oftc.net/mtd
14236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14237 F:      drivers/mtd/nand/
14238 F:      include/linux/mtd/*nand*.h
14239
14240 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14241 M:      Daniel Mack <[email protected]>
14242 L:      [email protected] (moderated for non-subscribers)
14243 S:      Maintained
14244 W:      http://www.native-instruments.com
14245 F:      sound/usb/caiaq/
14246
14247 NATSEMI ETHERNET DRIVER (DP8381x)
14248 S:      Orphan
14249 F:      drivers/net/ethernet/natsemi/natsemi.c
14250
14251 NCR 5380 SCSI DRIVERS
14252 M:      Finn Thain <[email protected]>
14253 M:      Michael Schmitz <[email protected]>
14254 L:      [email protected]
14255 S:      Maintained
14256 F:      Documentation/scsi/g_NCR5380.rst
14257 F:      drivers/scsi/NCR5380.*
14258 F:      drivers/scsi/arm/cumana_1.c
14259 F:      drivers/scsi/arm/oak.c
14260 F:      drivers/scsi/atari_scsi.*
14261 F:      drivers/scsi/dmx3191d.c
14262 F:      drivers/scsi/g_NCR5380.*
14263 F:      drivers/scsi/mac_scsi.*
14264 F:      drivers/scsi/sun3_scsi.*
14265 F:      drivers/scsi/sun3_scsi_vme.c
14266
14267 NCSI LIBRARY
14268 M:      Samuel Mendoza-Jonas <[email protected]>
14269 S:      Maintained
14270 F:      net/ncsi/
14271
14272 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14273 M:      Guenter Roeck <[email protected]>
14274 L:      [email protected]
14275 S:      Maintained
14276 F:      Documentation/hwmon/nct6775.rst
14277 F:      drivers/hwmon/nct6775-core.c
14278 F:      drivers/hwmon/nct6775-platform.c
14279 F:      drivers/hwmon/nct6775.h
14280
14281 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14282 M:      Zev Weiss <[email protected]>
14283 L:      [email protected]
14284 S:      Maintained
14285 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14286 F:      drivers/hwmon/nct6775-i2c.c
14287
14288 NETDEVSIM
14289 M:      Jakub Kicinski <[email protected]>
14290 S:      Maintained
14291 F:      drivers/net/netdevsim/*
14292
14293 NETEM NETWORK EMULATOR
14294 M:      Stephen Hemminger <[email protected]>
14295 L:      [email protected]
14296 S:      Maintained
14297 F:      net/sched/sch_netem.c
14298
14299 NETERION 10GbE DRIVERS (s2io)
14300 M:      Jon Mason <[email protected]>
14301 L:      [email protected]
14302 S:      Supported
14303 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14304 F:      drivers/net/ethernet/neterion/
14305
14306 NETFILTER
14307 M:      Pablo Neira Ayuso <[email protected]>
14308 M:      Jozsef Kadlecsik <[email protected]>
14309 M:      Florian Westphal <[email protected]>
14310 L:      [email protected]
14311 L:      [email protected]
14312 S:      Maintained
14313 W:      http://www.netfilter.org/
14314 W:      http://www.iptables.org/
14315 W:      http://www.nftables.org/
14316 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14317 C:      irc://irc.libera.chat/netfilter
14318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14320 F:      include/linux/netfilter*
14321 F:      include/linux/netfilter/
14322 F:      include/net/netfilter/
14323 F:      include/uapi/linux/netfilter*
14324 F:      include/uapi/linux/netfilter/
14325 F:      net/*/netfilter.c
14326 F:      net/*/netfilter/
14327 F:      net/bridge/br_netfilter*.c
14328 F:      net/netfilter/
14329
14330 NETROM NETWORK LAYER
14331 M:      Ralf Baechle <[email protected]>
14332 L:      [email protected]
14333 S:      Maintained
14334 W:      http://www.linux-ax25.org/
14335 F:      include/net/netrom.h
14336 F:      include/uapi/linux/netrom.h
14337 F:      net/netrom/
14338
14339 NETRONIX EMBEDDED CONTROLLER
14340 M:      Jonathan Neuschäfer <[email protected]>
14341 S:      Maintained
14342 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14343 F:      drivers/mfd/ntxec.c
14344 F:      drivers/pwm/pwm-ntxec.c
14345 F:      drivers/rtc/rtc-ntxec.c
14346 F:      include/linux/mfd/ntxec.h
14347
14348 NETRONOME ETHERNET DRIVERS
14349 M:      Simon Horman <[email protected]>
14350 R:      Jakub Kicinski <[email protected]>
14351 L:      [email protected]
14352 S:      Maintained
14353 F:      drivers/net/ethernet/netronome/
14354
14355 NETWORK BLOCK DEVICE (NBD)
14356 M:      Josef Bacik <[email protected]>
14357 L:      [email protected]
14358 L:      [email protected]
14359 S:      Maintained
14360 F:      Documentation/admin-guide/blockdev/nbd.rst
14361 F:      drivers/block/nbd.c
14362 F:      include/trace/events/nbd.h
14363 F:      include/uapi/linux/nbd.h
14364
14365 NETWORK DROP MONITOR
14366 M:      Neil Horman <[email protected]>
14367 L:      [email protected]
14368 S:      Maintained
14369 W:      https://fedorahosted.org/dropwatch/
14370 F:      include/uapi/linux/net_dropmon.h
14371 F:      net/core/drop_monitor.c
14372
14373 NETWORKING DRIVERS
14374 M:      "David S. Miller" <[email protected]>
14375 M:      Eric Dumazet <[email protected]>
14376 M:      Jakub Kicinski <[email protected]>
14377 M:      Paolo Abeni <[email protected]>
14378 L:      [email protected]
14379 S:      Maintained
14380 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14383 F:      Documentation/devicetree/bindings/net/
14384 F:      drivers/connector/
14385 F:      drivers/net/
14386 F:      include/dt-bindings/net/
14387 F:      include/linux/etherdevice.h
14388 F:      include/linux/fcdevice.h
14389 F:      include/linux/fddidevice.h
14390 F:      include/linux/hippidevice.h
14391 F:      include/linux/if_*
14392 F:      include/linux/inetdevice.h
14393 F:      include/linux/netdevice.h
14394 F:      include/uapi/linux/if_*
14395 F:      include/uapi/linux/netdevice.h
14396
14397 NETWORKING DRIVERS (WIRELESS)
14398 M:      Kalle Valo <[email protected]>
14399 L:      [email protected]
14400 S:      Maintained
14401 W:      https://wireless.wiki.kernel.org/
14402 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14405 F:      Documentation/devicetree/bindings/net/wireless/
14406 F:      drivers/net/wireless/
14407
14408 NETWORKING [DSA]
14409 M:      Andrew Lunn <[email protected]>
14410 M:      Florian Fainelli <[email protected]>
14411 M:      Vladimir Oltean <[email protected]>
14412 S:      Maintained
14413 F:      Documentation/devicetree/bindings/net/dsa/
14414 F:      Documentation/devicetree/bindings/net/ethernet-switch-port.yaml
14415 F:      Documentation/devicetree/bindings/net/ethernet-switch.yaml
14416 F:      drivers/net/dsa/
14417 F:      include/linux/dsa/
14418 F:      include/linux/platform_data/dsa.h
14419 F:      include/net/dsa.h
14420 F:      net/dsa/
14421 F:      tools/testing/selftests/drivers/net/dsa/
14422
14423 NETWORKING [GENERAL]
14424 M:      "David S. Miller" <[email protected]>
14425 M:      Eric Dumazet <[email protected]>
14426 M:      Jakub Kicinski <[email protected]>
14427 M:      Paolo Abeni <[email protected]>
14428 L:      [email protected]
14429 S:      Maintained
14430 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14431 B:      mailto:[email protected]
14432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14434 F:      Documentation/core-api/netlink.rst
14435 F:      Documentation/networking/
14436 F:      Documentation/process/maintainer-netdev.rst
14437 F:      Documentation/userspace-api/netlink/
14438 F:      include/linux/in.h
14439 F:      include/linux/net.h
14440 F:      include/linux/netdevice.h
14441 F:      include/net/
14442 F:      include/uapi/linux/in.h
14443 F:      include/uapi/linux/net.h
14444 F:      include/uapi/linux/net_namespace.h
14445 F:      include/uapi/linux/netdevice.h
14446 F:      lib/net_utils.c
14447 F:      lib/random32.c
14448 F:      net/
14449 F:      tools/net/
14450 F:      tools/testing/selftests/net/
14451
14452 NETWORKING [IPSEC]
14453 M:      Steffen Klassert <[email protected]>
14454 M:      Herbert Xu <[email protected]>
14455 M:      "David S. Miller" <[email protected]>
14456 L:      [email protected]
14457 S:      Maintained
14458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14460 F:      include/net/xfrm.h
14461 F:      include/uapi/linux/xfrm.h
14462 F:      net/ipv4/ah4.c
14463 F:      net/ipv4/esp4*
14464 F:      net/ipv4/ip_vti.c
14465 F:      net/ipv4/ipcomp.c
14466 F:      net/ipv4/xfrm*
14467 F:      net/ipv6/ah6.c
14468 F:      net/ipv6/esp6*
14469 F:      net/ipv6/ip6_vti.c
14470 F:      net/ipv6/ipcomp6.c
14471 F:      net/ipv6/xfrm*
14472 F:      net/key/
14473 F:      net/xfrm/
14474 F:      tools/testing/selftests/net/ipsec.c
14475
14476 NETWORKING [IPv4/IPv6]
14477 M:      "David S. Miller" <[email protected]>
14478 M:      David Ahern <[email protected]>
14479 L:      [email protected]
14480 S:      Maintained
14481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14482 F:      arch/x86/net/*
14483 F:      include/linux/ip.h
14484 F:      include/linux/ipv6*
14485 F:      include/net/fib*
14486 F:      include/net/ip*
14487 F:      include/net/route.h
14488 F:      net/ipv4/
14489 F:      net/ipv6/
14490
14491 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14492 M:      Paul Moore <[email protected]>
14493 L:      [email protected]
14494 L:      [email protected]
14495 S:      Maintained
14496 W:      https://github.com/netlabel
14497 F:      Documentation/netlabel/
14498 F:      include/net/calipso.h
14499 F:      include/net/cipso_ipv4.h
14500 F:      include/net/netlabel.h
14501 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14502 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14503 F:      net/ipv4/cipso_ipv4.c
14504 F:      net/ipv6/calipso.c
14505 F:      net/netfilter/xt_CONNSECMARK.c
14506 F:      net/netfilter/xt_SECMARK.c
14507 F:      net/netlabel/
14508
14509 NETWORKING [MPTCP]
14510 M:      Matthieu Baerts <[email protected]>
14511 L:      [email protected]
14512 L:      [email protected]
14513 S:      Maintained
14514 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14515 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14516 F:      Documentation/networking/mptcp-sysctl.rst
14517 F:      include/net/mptcp.h
14518 F:      include/trace/events/mptcp.h
14519 F:      include/uapi/linux/mptcp.h
14520 F:      net/mptcp/
14521 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14522 F:      tools/testing/selftests/net/mptcp/
14523
14524 NETWORKING [TCP]
14525 M:      Eric Dumazet <[email protected]>
14526 L:      [email protected]
14527 S:      Maintained
14528 F:      include/linux/tcp.h
14529 F:      include/net/tcp.h
14530 F:      include/trace/events/tcp.h
14531 F:      include/uapi/linux/tcp.h
14532 F:      net/ipv4/syncookies.c
14533 F:      net/ipv4/tcp*.c
14534 F:      net/ipv6/syncookies.c
14535 F:      net/ipv6/tcp*.c
14536
14537 NETWORKING [TLS]
14538 M:      Boris Pismenny <[email protected]>
14539 M:      John Fastabend <[email protected]>
14540 M:      Jakub Kicinski <[email protected]>
14541 L:      [email protected]
14542 S:      Maintained
14543 F:      include/net/tls.h
14544 F:      include/uapi/linux/tls.h
14545 F:      net/tls/*
14546
14547 NETXEN (1/10) GbE SUPPORT
14548 M:      Manish Chopra <[email protected]>
14549 M:      Rahul Verma <[email protected]>
14550 M:      [email protected]
14551 L:      [email protected]
14552 S:      Supported
14553 F:      drivers/net/ethernet/qlogic/netxen/
14554
14555 NET_FAILOVER MODULE
14556 M:      Sridhar Samudrala <[email protected]>
14557 L:      [email protected]
14558 S:      Supported
14559 F:      Documentation/networking/net_failover.rst
14560 F:      drivers/net/net_failover.c
14561 F:      include/net/net_failover.h
14562
14563 NEXTHOP
14564 M:      David Ahern <[email protected]>
14565 L:      [email protected]
14566 S:      Maintained
14567 F:      include/net/netns/nexthop.h
14568 F:      include/net/nexthop.h
14569 F:      include/uapi/linux/nexthop.h
14570 F:      net/ipv4/nexthop.c
14571
14572 NFC SUBSYSTEM
14573 M:      Krzysztof Kozlowski <[email protected]>
14574 L:      [email protected] (subscribers-only)
14575 L:      [email protected]
14576 S:      Maintained
14577 B:      mailto:[email protected]
14578 F:      Documentation/devicetree/bindings/net/nfc/
14579 F:      drivers/nfc/
14580 F:      include/linux/platform_data/nfcmrvl.h
14581 F:      include/net/nfc/
14582 F:      include/uapi/linux/nfc.h
14583 F:      net/nfc/
14584
14585 NFC VIRTUAL NCI DEVICE DRIVER
14586 M:      Bongsu Jeon <[email protected]>
14587 L:      [email protected]
14588 L:      [email protected] (subscribers-only)
14589 S:      Supported
14590 F:      drivers/nfc/virtual_ncidev.c
14591 F:      tools/testing/selftests/nci/
14592
14593 NFS, SUNRPC, AND LOCKD CLIENTS
14594 M:      Trond Myklebust <[email protected]>
14595 M:      Anna Schumaker <[email protected]>
14596 L:      [email protected]
14597 S:      Maintained
14598 W:      http://client.linux-nfs.org
14599 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14600 F:      fs/lockd/
14601 F:      fs/nfs/
14602 F:      fs/nfs_common/
14603 F:      include/linux/lockd/
14604 F:      include/linux/nfs*
14605 F:      include/linux/sunrpc/
14606 F:      include/uapi/linux/nfs*
14607 F:      include/uapi/linux/sunrpc/
14608 F:      net/sunrpc/
14609 F:      Documentation/filesystems/nfs/
14610
14611 NILFS2 FILESYSTEM
14612 M:      Ryusuke Konishi <[email protected]>
14613 L:      [email protected]
14614 S:      Supported
14615 W:      https://nilfs.sourceforge.io/
14616 W:      https://nilfs.osdn.jp/
14617 T:      git https://github.com/konis/nilfs2.git
14618 F:      Documentation/filesystems/nilfs2.rst
14619 F:      fs/nilfs2/
14620 F:      include/trace/events/nilfs2.h
14621 F:      include/uapi/linux/nilfs2_api.h
14622 F:      include/uapi/linux/nilfs2_ondisk.h
14623
14624 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14625 M:      YOKOTA Hiroshi <[email protected]>
14626 S:      Maintained
14627 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14628 F:      Documentation/scsi/NinjaSCSI.rst
14629 F:      drivers/scsi/pcmcia/nsp_*
14630
14631 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14632 M:      GOTO Masanori <[email protected]>
14633 M:      YOKOTA Hiroshi <[email protected]>
14634 S:      Maintained
14635 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14636 F:      Documentation/scsi/NinjaSCSI.rst
14637 F:      drivers/scsi/nsp32*
14638
14639 NINTENDO HID DRIVER
14640 M:      Daniel J. Ogorchock <[email protected]>
14641 L:      [email protected]
14642 S:      Maintained
14643 F:      drivers/hid/hid-nintendo*
14644
14645 NIOS2 ARCHITECTURE
14646 M:      Dinh Nguyen <[email protected]>
14647 S:      Maintained
14648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14649 F:      arch/nios2/
14650
14651 NITRO ENCLAVES (NE)
14652 M:      Alexandru Ciobotaru <[email protected]>
14653 L:      [email protected]
14654 L:      The AWS Nitro Enclaves Team <[email protected]>
14655 S:      Supported
14656 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14657 F:      Documentation/virt/ne_overview.rst
14658 F:      drivers/virt/nitro_enclaves/
14659 F:      include/linux/nitro_enclaves.h
14660 F:      include/uapi/linux/nitro_enclaves.h
14661 F:      samples/nitro_enclaves/
14662
14663 NOHZ, DYNTICKS SUPPORT
14664 M:      Frederic Weisbecker <[email protected]>
14665 M:      Thomas Gleixner <[email protected]>
14666 M:      Ingo Molnar <[email protected]>
14667 L:      [email protected]
14668 S:      Maintained
14669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14670 F:      include/linux/sched/nohz.h
14671 F:      include/linux/tick.h
14672 F:      kernel/time/tick*.*
14673
14674 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14675 M:      Pavel Machek <[email protected]>
14676 M:      Sakari Ailus <[email protected]>
14677 L:      [email protected]
14678 S:      Maintained
14679 F:      drivers/media/i2c/ad5820.c
14680 F:      drivers/media/i2c/et8ek8
14681
14682 NOKIA N900 POWER SUPPLY DRIVERS
14683 R:      Pali Rohár <[email protected]>
14684 F:      drivers/power/supply/bq2415x_charger.c
14685 F:      drivers/power/supply/bq27xxx_battery.c
14686 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14687 F:      drivers/power/supply/isp1704_charger.c
14688 F:      drivers/power/supply/rx51_battery.c
14689 F:      include/linux/power/bq2415x_charger.h
14690 F:      include/linux/power/bq27xxx_battery.h
14691
14692 NOLIBC HEADER FILE
14693 M:      Willy Tarreau <[email protected]>
14694 S:      Maintained
14695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14696 F:      tools/include/nolibc/
14697 F:      tools/testing/selftests/nolibc/
14698
14699 NSDEPS
14700 M:      Matthias Maennich <[email protected]>
14701 S:      Maintained
14702 F:      Documentation/core-api/symbol-namespaces.rst
14703 F:      scripts/nsdeps
14704
14705 NTB AMD DRIVER
14706 M:      Sanjay R Mehta <[email protected]>
14707 M:      Shyam Sundar S K <[email protected]>
14708 L:      [email protected]
14709 S:      Supported
14710 F:      drivers/ntb/hw/amd/
14711
14712 NTB DRIVER CORE
14713 M:      Jon Mason <[email protected]>
14714 M:      Dave Jiang <[email protected]>
14715 M:      Allen Hubbe <[email protected]>
14716 L:      [email protected]
14717 S:      Supported
14718 W:      https://github.com/jonmason/ntb/wiki
14719 T:      git git://github.com/jonmason/ntb.git
14720 F:      drivers/net/ntb_netdev.c
14721 F:      drivers/ntb/
14722 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14723 F:      include/linux/ntb.h
14724 F:      include/linux/ntb_transport.h
14725 F:      tools/testing/selftests/ntb/
14726
14727 NTB IDT DRIVER
14728 M:      Serge Semin <[email protected]>
14729 L:      [email protected]
14730 S:      Supported
14731 F:      drivers/ntb/hw/idt/
14732
14733 NTB INTEL DRIVER
14734 M:      Dave Jiang <[email protected]>
14735 L:      [email protected]
14736 S:      Supported
14737 W:      https://github.com/davejiang/linux/wiki
14738 T:      git https://github.com/davejiang/linux.git
14739 F:      drivers/ntb/hw/intel/
14740
14741 NTFS FILESYSTEM
14742 M:      Anton Altaparmakov <[email protected]>
14743 L:      [email protected]
14744 S:      Supported
14745 W:      http://www.tuxera.com/
14746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14747 F:      Documentation/filesystems/ntfs.rst
14748 F:      fs/ntfs/
14749
14750 NTFS3 FILESYSTEM
14751 M:      Konstantin Komarov <[email protected]>
14752 L:      [email protected]
14753 S:      Supported
14754 W:      http://www.paragon-software.com/
14755 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14756 F:      Documentation/filesystems/ntfs3.rst
14757 F:      fs/ntfs3/
14758
14759 NUBUS SUBSYSTEM
14760 M:      Finn Thain <[email protected]>
14761 L:      [email protected]
14762 S:      Maintained
14763 F:      arch/*/include/asm/nubus.h
14764 F:      drivers/nubus/
14765 F:      include/linux/nubus.h
14766 F:      include/uapi/linux/nubus.h
14767
14768 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14769 M:      Antonino Daplas <[email protected]>
14770 L:      [email protected]
14771 S:      Maintained
14772 F:      drivers/video/fbdev/nvidia/
14773 F:      drivers/video/fbdev/riva/
14774
14775 NVIDIA WMI EC BACKLIGHT DRIVER
14776 M:      Daniel Dadap <[email protected]>
14777 L:      [email protected]
14778 S:      Supported
14779 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14780 F:      include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14781
14782 NVM EXPRESS DRIVER
14783 M:      Keith Busch <[email protected]>
14784 M:      Jens Axboe <[email protected]>
14785 M:      Christoph Hellwig <[email protected]>
14786 M:      Sagi Grimberg <[email protected]>
14787 L:      [email protected]
14788 S:      Supported
14789 W:      http://git.infradead.org/nvme.git
14790 T:      git://git.infradead.org/nvme.git
14791 F:      Documentation/nvme/
14792 F:      drivers/nvme/host/
14793 F:      drivers/nvme/common/
14794 F:      include/linux/nvme.h
14795 F:      include/linux/nvme-*.h
14796 F:      include/uapi/linux/nvme_ioctl.h
14797
14798 NVM EXPRESS FABRICS AUTHENTICATION
14799 M:      Hannes Reinecke <[email protected]>
14800 L:      [email protected]
14801 S:      Supported
14802 F:      drivers/nvme/host/auth.c
14803 F:      drivers/nvme/target/auth.c
14804 F:      drivers/nvme/target/fabrics-cmd-auth.c
14805 F:      include/linux/nvme-auth.h
14806
14807 NVM EXPRESS HARDWARE MONITORING SUPPORT
14808 M:      Guenter Roeck <[email protected]>
14809 L:      [email protected]
14810 S:      Supported
14811 F:      drivers/nvme/host/hwmon.c
14812
14813 NVM EXPRESS FC TRANSPORT DRIVERS
14814 M:      James Smart <[email protected]>
14815 L:      [email protected]
14816 S:      Supported
14817 F:      drivers/nvme/host/fc.c
14818 F:      drivers/nvme/target/fc.c
14819 F:      drivers/nvme/target/fcloop.c
14820 F:      include/linux/nvme-fc-driver.h
14821 F:      include/linux/nvme-fc.h
14822
14823 NVM EXPRESS TARGET DRIVER
14824 M:      Christoph Hellwig <[email protected]>
14825 M:      Sagi Grimberg <[email protected]>
14826 M:      Chaitanya Kulkarni <[email protected]>
14827 L:      [email protected]
14828 S:      Supported
14829 W:      http://git.infradead.org/nvme.git
14830 T:      git://git.infradead.org/nvme.git
14831 F:      drivers/nvme/target/
14832
14833 NVMEM FRAMEWORK
14834 M:      Srinivas Kandagatla <[email protected]>
14835 S:      Maintained
14836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14837 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14838 F:      Documentation/devicetree/bindings/nvmem/
14839 F:      drivers/nvmem/
14840 F:      include/linux/nvmem-consumer.h
14841 F:      include/linux/nvmem-provider.h
14842
14843 NXP C45 TJA11XX PHY DRIVER
14844 M:      Radu Pirea <[email protected]>
14845 L:      [email protected]
14846 S:      Maintained
14847 F:      drivers/net/phy/nxp-c45-tja11xx.c
14848
14849 NXP FSPI DRIVER
14850 M:      Han Xu <[email protected]>
14851 M:      Haibo Chen <[email protected]>
14852 R:      Yogesh Gaur <[email protected]>
14853 L:      [email protected]
14854 S:      Maintained
14855 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14856 F:      drivers/spi/spi-nxp-fspi.c
14857
14858 NXP FXAS21002C DRIVER
14859 M:      Rui Miguel Silva <[email protected]>
14860 L:      [email protected]
14861 S:      Maintained
14862 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14863 F:      drivers/iio/gyro/fxas21002c.h
14864 F:      drivers/iio/gyro/fxas21002c_core.c
14865 F:      drivers/iio/gyro/fxas21002c_i2c.c
14866 F:      drivers/iio/gyro/fxas21002c_spi.c
14867
14868 NXP i.MX CLOCK DRIVERS
14869 M:      Abel Vesa <[email protected]>
14870 L:      [email protected]
14871 L:      [email protected]
14872 S:      Maintained
14873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14874 F:      Documentation/devicetree/bindings/clock/imx*
14875 F:      drivers/clk/imx/
14876 F:      include/dt-bindings/clock/imx*
14877
14878 NXP i.MX 8MQ DCSS DRIVER
14879 M:      Laurentiu Palcu <[email protected]>
14880 R:      Lucas Stach <[email protected]>
14881 L:      [email protected]
14882 S:      Maintained
14883 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14884 F:      drivers/gpu/drm/imx/dcss/
14885
14886 NXP i.MX 8QXP ADC DRIVER
14887 M:      Cai Huoqing <[email protected]>
14888 M:      Haibo Chen <[email protected]>
14889 L:      [email protected]
14890 L:      [email protected]
14891 S:      Maintained
14892 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14893 F:      drivers/iio/adc/imx8qxp-adc.c
14894
14895 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14896 M:      Haibo Chen <[email protected]>
14897 L:      [email protected]
14898 L:      [email protected]
14899 S:      Maintained
14900 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14901 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14902 F:      drivers/iio/adc/imx7d_adc.c
14903 F:      drivers/iio/adc/vf610_adc.c
14904
14905 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14906 M:      Jagan Teki <[email protected]>
14907 S:      Maintained
14908 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14909 F:      drivers/regulator/pf8x00-regulator.c
14910
14911 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14912 M:      Krzysztof Kozlowski <[email protected]>
14913 L:      [email protected]
14914 S:      Maintained
14915 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14916 F:      drivers/extcon/extcon-ptn5150.c
14917
14918 NXP SGTL5000 DRIVER
14919 M:      Fabio Estevam <[email protected]>
14920 L:      [email protected] (moderated for non-subscribers)
14921 S:      Maintained
14922 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14923 F:      sound/soc/codecs/sgtl5000*
14924
14925 NXP SJA1105 ETHERNET SWITCH DRIVER
14926 M:      Vladimir Oltean <[email protected]>
14927 L:      [email protected]
14928 S:      Maintained
14929 F:      drivers/net/dsa/sja1105
14930 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14931
14932 NXP TDA998X DRM DRIVER
14933 M:      Russell King <[email protected]>
14934 S:      Maintained
14935 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14936 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14937 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14938 F:      include/drm/i2c/tda998x.h
14939 F:      include/dt-bindings/display/tda998x.h
14940 K:      "nxp,tda998x"
14941
14942 NXP TFA9879 DRIVER
14943 M:      Peter Rosin <[email protected]>
14944 L:      [email protected] (moderated for non-subscribers)
14945 S:      Maintained
14946 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14947 F:      sound/soc/codecs/tfa9879*
14948
14949 NXP/Goodix TFA989X (TFA1) DRIVER
14950 M:      Stephan Gerhold <[email protected]>
14951 L:      [email protected] (moderated for non-subscribers)
14952 S:      Maintained
14953 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14954 F:      sound/soc/codecs/tfa989x.c
14955
14956 NXP-NCI NFC DRIVER
14957 L:      [email protected] (subscribers-only)
14958 S:      Orphan
14959 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14960 F:      drivers/nfc/nxp-nci
14961
14962 NXP i.MX 8MP DW100 V4L2 DRIVER
14963 M:      Xavier Roumegue <[email protected]>
14964 L:      [email protected]
14965 S:      Maintained
14966 F:      Documentation/devicetree/bindings/media/nxp,dw100.yaml
14967 F:      Documentation/userspace-api/media/drivers/dw100.rst
14968 F:      drivers/media/platform/nxp/dw100/
14969 F:      include/uapi/linux/dw100.h
14970
14971 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14972 M:      Mirela Rabulea <[email protected]>
14973 R:      NXP Linux Team <[email protected]>
14974 L:      [email protected]
14975 S:      Maintained
14976 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14977 F:      drivers/media/platform/nxp/imx-jpeg
14978
14979 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14980 M:      Jonas Malaco <[email protected]>
14981 L:      [email protected]
14982 S:      Maintained
14983 F:      Documentation/hwmon/nzxt-kraken2.rst
14984 F:      drivers/hwmon/nzxt-kraken2.c
14985
14986 NZXT-SMART2 HARDWARE MONITORING DRIVER
14987 M:      Aleksandr Mezin <[email protected]>
14988 L:      [email protected]
14989 S:      Maintained
14990 F:      Documentation/hwmon/nzxt-smart2.rst
14991 F:      drivers/hwmon/nzxt-smart2.c
14992
14993 OBJAGG
14994 M:      Jiri Pirko <[email protected]>
14995 L:      [email protected]
14996 S:      Supported
14997 F:      include/linux/objagg.h
14998 F:      lib/objagg.c
14999 F:      lib/test_objagg.c
15000
15001 OBJTOOL
15002 M:      Josh Poimboeuf <[email protected]>
15003 M:      Peter Zijlstra <[email protected]>
15004 S:      Supported
15005 F:      tools/objtool/
15006 F:      include/linux/objtool.h
15007
15008 OCELOT ETHERNET SWITCH DRIVER
15009 M:      Vladimir Oltean <[email protected]>
15010 M:      Claudiu Manoil <[email protected]>
15011 M:      Alexandre Belloni <[email protected]>
15012 M:      [email protected]
15013 L:      [email protected]
15014 S:      Supported
15015 F:      drivers/net/dsa/ocelot/*
15016 F:      drivers/net/ethernet/mscc/
15017 F:      include/soc/mscc/ocelot*
15018 F:      net/dsa/tag_ocelot.c
15019 F:      net/dsa/tag_ocelot_8021q.c
15020 F:      tools/testing/selftests/drivers/net/ocelot/*
15021
15022 OCELOT EXTERNAL SWITCH CONTROL
15023 M:      Colin Foster <[email protected]>
15024 S:      Supported
15025 F:      Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
15026 F:      drivers/mfd/ocelot*
15027 F:      drivers/net/dsa/ocelot/ocelot_ext.c
15028 F:      include/linux/mfd/ocelot.h
15029
15030 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
15031 M:      Frederic Barrat <[email protected]>
15032 M:      Andrew Donnellan <[email protected]>
15033 L:      [email protected]
15034 S:      Supported
15035 F:      Documentation/userspace-api/accelerators/ocxl.rst
15036 F:      arch/powerpc/include/asm/pnv-ocxl.h
15037 F:      arch/powerpc/platforms/powernv/ocxl.c
15038 F:      drivers/misc/ocxl/
15039 F:      include/misc/ocxl*
15040 F:      include/uapi/misc/ocxl.h
15041
15042 OMAP AUDIO SUPPORT
15043 M:      Peter Ujfalusi <[email protected]>
15044 M:      Jarkko Nikula <[email protected]>
15045 L:      [email protected] (moderated for non-subscribers)
15046 L:      [email protected]
15047 S:      Maintained
15048 F:      sound/soc/ti/n810.c
15049 F:      sound/soc/ti/omap*
15050 F:      sound/soc/ti/rx51.c
15051 F:      sound/soc/ti/sdma-pcm.*
15052
15053 OMAP CLOCK FRAMEWORK SUPPORT
15054 M:      Paul Walmsley <[email protected]>
15055 L:      [email protected]
15056 S:      Maintained
15057 F:      arch/arm/*omap*/*clock*
15058
15059 OMAP DEVICE TREE SUPPORT
15060 M:      Benoît Cousson <[email protected]>
15061 M:      Tony Lindgren <[email protected]>
15062 L:      [email protected]
15063 L:      [email protected]
15064 S:      Maintained
15065 F:      arch/arm/boot/dts/*am3*
15066 F:      arch/arm/boot/dts/*am4*
15067 F:      arch/arm/boot/dts/*am5*
15068 F:      arch/arm/boot/dts/*dra7*
15069 F:      arch/arm/boot/dts/*omap*
15070 F:      arch/arm/boot/dts/logicpd-som-lv*
15071 F:      arch/arm/boot/dts/logicpd-torpedo*
15072
15073 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
15074 L:      [email protected]
15075 L:      [email protected]
15076 S:      Orphan
15077 F:      Documentation/arm/omap/dss.rst
15078 F:      drivers/video/fbdev/omap2/
15079
15080 OMAP FRAMEBUFFER SUPPORT
15081 L:      [email protected]
15082 L:      [email protected]
15083 S:      Orphan
15084 F:      drivers/video/fbdev/omap/
15085
15086 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
15087 M:      Roger Quadros <[email protected]>
15088 M:      Tony Lindgren <[email protected]>
15089 L:      [email protected]
15090 S:      Maintained
15091 F:      arch/arm/mach-omap2/*gpmc*
15092 F:      drivers/memory/omap-gpmc.c
15093
15094 OMAP GPIO DRIVER
15095 M:      Grygorii Strashko <[email protected]>
15096 M:      Santosh Shilimkar <[email protected]>
15097 M:      Kevin Hilman <[email protected]>
15098 L:      [email protected]
15099 S:      Maintained
15100 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
15101 F:      drivers/gpio/gpio-omap.c
15102
15103 OMAP HARDWARE SPINLOCK SUPPORT
15104 M:      Ohad Ben-Cohen <[email protected]>
15105 L:      [email protected]
15106 S:      Maintained
15107 F:      drivers/hwspinlock/omap_hwspinlock.c
15108
15109 OMAP HS MMC SUPPORT
15110 L:      [email protected]
15111 L:      [email protected]
15112 S:      Orphan
15113 F:      drivers/mmc/host/omap_hsmmc.c
15114
15115 OMAP HWMOD DATA
15116 M:      Paul Walmsley <[email protected]>
15117 L:      [email protected]
15118 S:      Maintained
15119 F:      arch/arm/mach-omap2/omap_hwmod*data*
15120
15121 OMAP HWMOD SUPPORT
15122 M:      Benoît Cousson <[email protected]>
15123 M:      Paul Walmsley <[email protected]>
15124 L:      [email protected]
15125 S:      Maintained
15126 F:      arch/arm/mach-omap2/omap_hwmod.*
15127
15128 OMAP I2C DRIVER
15129 M:      Vignesh R <[email protected]>
15130 L:      [email protected]
15131 L:      [email protected]
15132 S:      Maintained
15133 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
15134 F:      drivers/i2c/busses/i2c-omap.c
15135
15136 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
15137 M:      Laurent Pinchart <[email protected]>
15138 L:      [email protected]
15139 S:      Maintained
15140 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
15141 F:      drivers/media/platform/ti/omap3isp/
15142 F:      drivers/staging/media/omap4iss/
15143
15144 OMAP MMC SUPPORT
15145 M:      Aaro Koskinen <[email protected]>
15146 L:      [email protected]
15147 S:      Odd Fixes
15148 F:      drivers/mmc/host/omap.c
15149
15150 OMAP POWER MANAGEMENT SUPPORT
15151 M:      Kevin Hilman <[email protected]>
15152 L:      [email protected]
15153 S:      Maintained
15154 F:      arch/arm/*omap*/*pm*
15155 F:      drivers/cpufreq/omap-cpufreq.c
15156
15157 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
15158 M:      Paul Walmsley <[email protected]>
15159 L:      [email protected]
15160 S:      Maintained
15161 F:      arch/arm/mach-omap2/prm*
15162
15163 OMAP RANDOM NUMBER GENERATOR SUPPORT
15164 M:      Deepak Saxena <[email protected]>
15165 S:      Maintained
15166 F:      drivers/char/hw_random/omap-rng.c
15167
15168 OMAP USB SUPPORT
15169 L:      [email protected]
15170 L:      [email protected]
15171 S:      Orphan
15172 F:      arch/arm/*omap*/usb*
15173 F:      drivers/usb/*/*omap*
15174
15175 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
15176 M:      Mark Jackson <[email protected]>
15177 L:      [email protected]
15178 S:      Maintained
15179 F:      arch/arm/boot/dts/am335x-nano.dts
15180
15181 OMAP1 SUPPORT
15182 M:      Aaro Koskinen <[email protected]>
15183 M:      Janusz Krzysztofik <[email protected]>
15184 M:      Tony Lindgren <[email protected]>
15185 L:      [email protected]
15186 S:      Maintained
15187 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15189 F:      arch/arm/configs/omap1_defconfig
15190 F:      arch/arm/mach-omap1/
15191 F:      drivers/i2c/busses/i2c-omap.c
15192 F:      include/linux/platform_data/ams-delta-fiq.h
15193 F:      include/linux/platform_data/i2c-omap.h
15194
15195 OMAP2+ SUPPORT
15196 M:      Tony Lindgren <[email protected]>
15197 L:      [email protected]
15198 S:      Maintained
15199 W:      http://www.muru.com/linux/omap/
15200 W:      http://linux.omap.com/
15201 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15203 F:      arch/arm/configs/omap2plus_defconfig
15204 F:      arch/arm/mach-omap2/
15205 F:      drivers/bus/ti-sysc.c
15206 F:      drivers/i2c/busses/i2c-omap.c
15207 F:      drivers/irqchip/irq-omap-intc.c
15208 F:      drivers/mfd/*omap*.c
15209 F:      drivers/mfd/menelaus.c
15210 F:      drivers/mfd/palmas.c
15211 F:      drivers/mfd/tps65217.c
15212 F:      drivers/mfd/tps65218.c
15213 F:      drivers/mfd/tps65219.c
15214 F:      drivers/mfd/tps65910.c
15215 F:      drivers/mfd/twl-core.[ch]
15216 F:      drivers/mfd/twl4030*.c
15217 F:      drivers/mfd/twl6030*.c
15218 F:      drivers/mfd/twl6040*.c
15219 F:      drivers/regulator/palmas-regulator*.c
15220 F:      drivers/regulator/pbias-regulator.c
15221 F:      drivers/regulator/tps65217-regulator.c
15222 F:      drivers/regulator/tps65218-regulator.c
15223 F:      drivers/regulator/tps65219-regulator.c
15224 F:      drivers/regulator/tps65910-regulator.c
15225 F:      drivers/regulator/twl-regulator.c
15226 F:      drivers/regulator/twl6030-regulator.c
15227 F:      include/linux/platform_data/i2c-omap.h
15228 F:      include/linux/platform_data/ti-sysc.h
15229
15230 OMFS FILESYSTEM
15231 M:      Bob Copeland <[email protected]>
15232 L:      [email protected]
15233 S:      Maintained
15234 F:      Documentation/filesystems/omfs.rst
15235 F:      fs/omfs/
15236
15237 OMNIKEY CARDMAN 4000 DRIVER
15238 M:      Harald Welte <[email protected]>
15239 S:      Maintained
15240 F:      drivers/char/pcmcia/cm4000_cs.c
15241 F:      include/linux/cm4000_cs.h
15242 F:      include/uapi/linux/cm4000_cs.h
15243
15244 OMNIKEY CARDMAN 4040 DRIVER
15245 M:      Harald Welte <[email protected]>
15246 S:      Maintained
15247 F:      drivers/char/pcmcia/cm4040_cs.*
15248
15249 OMNIVISION OG01A1B SENSOR DRIVER
15250 M:      Shawn Tu <[email protected]>
15251 L:      [email protected]
15252 S:      Maintained
15253 F:      drivers/media/i2c/og01a1b.c
15254
15255 OMNIVISION OV02A10 SENSOR DRIVER
15256 M:      Dongchun Zhu <[email protected]>
15257 L:      [email protected]
15258 S:      Maintained
15259 T:      git git://linuxtv.org/media_tree.git
15260 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15261 F:      drivers/media/i2c/ov02a10.c
15262
15263 OMNIVISION OV08D10 SENSOR DRIVER
15264 M:      Jimmy Su <[email protected]>
15265 L:      [email protected]
15266 S:      Maintained
15267 T:      git git://linuxtv.org/media_tree.git
15268 F:      drivers/media/i2c/ov08d10.c
15269
15270 OMNIVISION OV08X40 SENSOR DRIVER
15271 M:      Jason Chen <[email protected]>
15272 L:      [email protected]
15273 S:      Maintained
15274 T:      git git://linuxtv.org/media_tree.git
15275 F:      drivers/media/i2c/ov08x40.c
15276
15277 OMNIVISION OV13858 SENSOR DRIVER
15278 M:      Sakari Ailus <[email protected]>
15279 L:      [email protected]
15280 S:      Maintained
15281 T:      git git://linuxtv.org/media_tree.git
15282 F:      drivers/media/i2c/ov13858.c
15283
15284 OMNIVISION OV13B10 SENSOR DRIVER
15285 M:      Arec Kao <[email protected]>
15286 L:      [email protected]
15287 S:      Maintained
15288 T:      git git://linuxtv.org/media_tree.git
15289 F:      drivers/media/i2c/ov13b10.c
15290
15291 OMNIVISION OV2680 SENSOR DRIVER
15292 M:      Rui Miguel Silva <[email protected]>
15293 L:      [email protected]
15294 S:      Maintained
15295 T:      git git://linuxtv.org/media_tree.git
15296 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15297 F:      drivers/media/i2c/ov2680.c
15298
15299 OMNIVISION OV2685 SENSOR DRIVER
15300 M:      Shunqian Zheng <[email protected]>
15301 L:      [email protected]
15302 S:      Maintained
15303 T:      git git://linuxtv.org/media_tree.git
15304 F:      drivers/media/i2c/ov2685.c
15305
15306 OMNIVISION OV2740 SENSOR DRIVER
15307 M:      Tianshu Qiu <[email protected]>
15308 R:      Shawn Tu <[email protected]>
15309 R:      Bingbu Cao <[email protected]>
15310 L:      [email protected]
15311 S:      Maintained
15312 T:      git git://linuxtv.org/media_tree.git
15313 F:      drivers/media/i2c/ov2740.c
15314
15315 OMNIVISION OV4689 SENSOR DRIVER
15316 M:      Mikhail Rudenko <[email protected]>
15317 L:      [email protected]
15318 S:      Maintained
15319 T:      git git://linuxtv.org/media_tree.git
15320 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
15321 F:      drivers/media/i2c/ov5647.c
15322
15323 OMNIVISION OV5640 SENSOR DRIVER
15324 M:      Steve Longerbeam <[email protected]>
15325 L:      [email protected]
15326 S:      Maintained
15327 T:      git git://linuxtv.org/media_tree.git
15328 F:      drivers/media/i2c/ov5640.c
15329
15330 OMNIVISION OV5647 SENSOR DRIVER
15331 M:      Dave Stevenson <[email protected]>
15332 M:      Jacopo Mondi <[email protected]>
15333 L:      [email protected]
15334 S:      Maintained
15335 T:      git git://linuxtv.org/media_tree.git
15336 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15337 F:      drivers/media/i2c/ov5647.c
15338
15339 OMNIVISION OV5670 SENSOR DRIVER
15340 M:      Chiranjeevi Rapolu <[email protected]>
15341 L:      [email protected]
15342 S:      Maintained
15343 T:      git git://linuxtv.org/media_tree.git
15344 F:      drivers/media/i2c/ov5670.c
15345
15346 OMNIVISION OV5675 SENSOR DRIVER
15347 M:      Shawn Tu <[email protected]>
15348 L:      [email protected]
15349 S:      Maintained
15350 T:      git git://linuxtv.org/media_tree.git
15351 F:      drivers/media/i2c/ov5675.c
15352
15353 OMNIVISION OV5693 SENSOR DRIVER
15354 M:      Daniel Scally <[email protected]>
15355 L:      [email protected]
15356 S:      Maintained
15357 T:      git git://linuxtv.org/media_tree.git
15358 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15359 F:      drivers/media/i2c/ov5693.c
15360
15361 OMNIVISION OV5695 SENSOR DRIVER
15362 M:      Shunqian Zheng <[email protected]>
15363 L:      [email protected]
15364 S:      Maintained
15365 T:      git git://linuxtv.org/media_tree.git
15366 F:      drivers/media/i2c/ov5695.c
15367
15368 OMNIVISION OV7670 SENSOR DRIVER
15369 L:      [email protected]
15370 S:      Orphan
15371 T:      git git://linuxtv.org/media_tree.git
15372 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15373 F:      drivers/media/i2c/ov7670.c
15374
15375 OMNIVISION OV772x SENSOR DRIVER
15376 M:      Jacopo Mondi <[email protected]>
15377 L:      [email protected]
15378 S:      Odd fixes
15379 T:      git git://linuxtv.org/media_tree.git
15380 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15381 F:      drivers/media/i2c/ov772x.c
15382 F:      include/media/i2c/ov772x.h
15383
15384 OMNIVISION OV7740 SENSOR DRIVER
15385 M:      Wenyou Yang <[email protected]>
15386 L:      [email protected]
15387 S:      Maintained
15388 T:      git git://linuxtv.org/media_tree.git
15389 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15390 F:      drivers/media/i2c/ov7740.c
15391
15392 OMNIVISION OV8856 SENSOR DRIVER
15393 M:      Dongchun Zhu <[email protected]>
15394 L:      [email protected]
15395 S:      Maintained
15396 T:      git git://linuxtv.org/media_tree.git
15397 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15398 F:      drivers/media/i2c/ov8856.c
15399
15400 OMNIVISION OV9282 SENSOR DRIVER
15401 M:      Paul J. Murphy <[email protected]>
15402 M:      Daniele Alessandrelli <[email protected]>
15403 L:      [email protected]
15404 S:      Maintained
15405 T:      git git://linuxtv.org/media_tree.git
15406 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15407 F:      drivers/media/i2c/ov9282.c
15408
15409 OMNIVISION OV9640 SENSOR DRIVER
15410 M:      Petr Cvek <[email protected]>
15411 L:      [email protected]
15412 S:      Maintained
15413 F:      drivers/media/i2c/ov9640.*
15414
15415 OMNIVISION OV9650 SENSOR DRIVER
15416 M:      Sakari Ailus <[email protected]>
15417 R:      Akinobu Mita <[email protected]>
15418 R:      Sylwester Nawrocki <[email protected]>
15419 L:      [email protected]
15420 S:      Maintained
15421 T:      git git://linuxtv.org/media_tree.git
15422 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15423 F:      drivers/media/i2c/ov9650.c
15424
15425 OMNIVISION OV9734 SENSOR DRIVER
15426 M:      Tianshu Qiu <[email protected]>
15427 R:      Bingbu Cao <[email protected]>
15428 L:      [email protected]
15429 S:      Maintained
15430 T:      git git://linuxtv.org/media_tree.git
15431 F:      drivers/media/i2c/ov9734.c
15432
15433 ONBOARD USB HUB DRIVER
15434 M:      Matthias Kaehlcke <[email protected]>
15435 L:      [email protected]
15436 S:      Maintained
15437 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15438 F:      drivers/usb/misc/onboard_usb_hub.c
15439
15440 ONENAND FLASH DRIVER
15441 M:      Kyungmin Park <[email protected]>
15442 L:      [email protected]
15443 S:      Maintained
15444 F:      drivers/mtd/nand/onenand/
15445 F:      include/linux/mtd/onenand*.h
15446
15447 ONEXPLAYER FAN DRIVER
15448 M:      Joaquín Ignacio Aramendía <[email protected]>
15449 L:      [email protected]
15450 S:      Maintained
15451 F:      drivers/hwmon/oxp-sensors.c
15452
15453 ONION OMEGA2+ BOARD
15454 M:      Harvey Hunt <[email protected]>
15455 L:      [email protected]
15456 S:      Maintained
15457 F:      arch/mips/boot/dts/ralink/omega2p.dts
15458
15459 ONSEMI ETHERNET PHY DRIVERS
15460 M:      Piergiorgio Beruto <[email protected]>
15461 L:      [email protected]
15462 S:      Supported
15463 W:      http://www.onsemi.com
15464 F:      drivers/net/phy/ncn*
15465
15466 OP-TEE DRIVER
15467 M:      Jens Wiklander <[email protected]>
15468 L:      [email protected]
15469 S:      Maintained
15470 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15471 F:      drivers/tee/optee/
15472
15473 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15474 M:      Sumit Garg <[email protected]>
15475 L:      [email protected]
15476 S:      Maintained
15477 F:      drivers/char/hw_random/optee-rng.c
15478
15479 OP-TEE RTC DRIVER
15480 M:      Clément Léger <[email protected]>
15481 L:      [email protected]
15482 S:      Maintained
15483 F:      drivers/rtc/rtc-optee.c
15484
15485 OPA-VNIC DRIVER
15486 M:      Dennis Dalessandro <[email protected]>
15487 L:      [email protected]
15488 S:      Supported
15489 F:      drivers/infiniband/ulp/opa_vnic
15490
15491 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15492 M:      Rob Herring <[email protected]>
15493 M:      Frank Rowand <[email protected]>
15494 L:      [email protected]
15495 S:      Maintained
15496 C:      irc://irc.libera.chat/devicetree
15497 W:      http://www.devicetree.org/
15498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15499 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15500 F:      drivers/of/
15501 F:      include/linux/of*.h
15502 F:      scripts/dtc/
15503 K:      of_overlay_notifier_
15504 K:      of_overlay_fdt_apply
15505 K:      of_overlay_remove
15506
15507 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15508 M:      Rob Herring <[email protected]>
15509 M:      Krzysztof Kozlowski <[email protected]>
15510 L:      [email protected]
15511 S:      Maintained
15512 C:      irc://irc.libera.chat/devicetree
15513 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15515 F:      Documentation/devicetree/
15516 F:      arch/*/boot/dts/
15517 F:      include/dt-bindings/
15518
15519 OPENCOMPUTE PTP CLOCK DRIVER
15520 M:      Jonathan Lemon <[email protected]>
15521 M:      Vadim Fedorenko <[email protected]>
15522 L:      [email protected]
15523 S:      Maintained
15524 F:      drivers/ptp/ptp_ocp.c
15525
15526 OPENCORES I2C BUS DRIVER
15527 M:      Peter Korsgaard <[email protected]>
15528 M:      Andrew Lunn <[email protected]>
15529 L:      [email protected]
15530 S:      Maintained
15531 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15532 F:      Documentation/i2c/busses/i2c-ocores.rst
15533 F:      drivers/i2c/busses/i2c-ocores.c
15534 F:      include/linux/platform_data/i2c-ocores.h
15535
15536 OPENRISC ARCHITECTURE
15537 M:      Jonas Bonn <[email protected]>
15538 M:      Stefan Kristiansson <[email protected]>
15539 M:      Stafford Horne <[email protected]>
15540 L:      [email protected]
15541 S:      Maintained
15542 W:      http://openrisc.io
15543 T:      git https://github.com/openrisc/linux.git
15544 F:      Documentation/devicetree/bindings/openrisc/
15545 F:      Documentation/openrisc/
15546 F:      arch/openrisc/
15547 F:      drivers/irqchip/irq-ompic.c
15548 F:      drivers/irqchip/irq-or1k-*
15549
15550 OPENVSWITCH
15551 M:      Pravin B Shelar <[email protected]>
15552 L:      [email protected]
15553 L:      [email protected]
15554 S:      Maintained
15555 W:      http://openvswitch.org
15556 F:      include/uapi/linux/openvswitch.h
15557 F:      net/openvswitch/
15558 F:      tools/testing/selftests/net/openvswitch/
15559
15560 OPERATING PERFORMANCE POINTS (OPP)
15561 M:      Viresh Kumar <[email protected]>
15562 M:      Nishanth Menon <[email protected]>
15563 M:      Stephen Boyd <[email protected]>
15564 L:      [email protected]
15565 S:      Maintained
15566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15567 F:      Documentation/devicetree/bindings/opp/
15568 F:      Documentation/power/opp.rst
15569 F:      drivers/opp/
15570 F:      include/linux/pm_opp.h
15571
15572 OPL4 DRIVER
15573 M:      Clemens Ladisch <[email protected]>
15574 L:      [email protected] (moderated for non-subscribers)
15575 S:      Maintained
15576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15577 F:      sound/drivers/opl4/
15578
15579 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15580 M:      Mark Fasheh <[email protected]>
15581 M:      Joel Becker <[email protected]>
15582 M:      Joseph Qi <[email protected]>
15583 L:      [email protected] (moderated for non-subscribers)
15584 S:      Supported
15585 W:      http://ocfs2.wiki.kernel.org
15586 F:      Documentation/filesystems/dlmfs.rst
15587 F:      Documentation/filesystems/ocfs2.rst
15588 F:      fs/ocfs2/
15589
15590 ORANGEFS FILESYSTEM
15591 M:      Mike Marshall <[email protected]>
15592 R:      Martin Brandenburg <[email protected]>
15593 L:      [email protected]
15594 S:      Supported
15595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15596 F:      Documentation/filesystems/orangefs.rst
15597 F:      fs/orangefs/
15598
15599 ORINOCO DRIVER
15600 L:      [email protected]
15601 S:      Orphan
15602 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15603 W:      http://www.nongnu.org/orinoco/
15604 F:      drivers/net/wireless/intersil/orinoco/
15605
15606 OV2659 OMNIVISION SENSOR DRIVER
15607 M:      "Lad, Prabhakar" <[email protected]>
15608 L:      [email protected]
15609 S:      Maintained
15610 W:      https://linuxtv.org
15611 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15612 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15613 F:      drivers/media/i2c/ov2659.c
15614 F:      include/media/i2c/ov2659.h
15615
15616 OVERLAY FILESYSTEM
15617 M:      Miklos Szeredi <[email protected]>
15618 L:      [email protected]
15619 S:      Supported
15620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15621 F:      Documentation/filesystems/overlayfs.rst
15622 F:      fs/overlayfs/
15623
15624 P54 WIRELESS DRIVER
15625 M:      Christian Lamparter <[email protected]>
15626 L:      [email protected]
15627 S:      Maintained
15628 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15629 F:      drivers/net/wireless/intersil/p54/
15630
15631 PACKET SOCKETS
15632 M:      Willem de Bruijn <[email protected]>
15633 S:      Maintained
15634 F:      include/uapi/linux/if_packet.h
15635 F:      net/packet/af_packet.c
15636
15637 PACKING
15638 M:      Vladimir Oltean <[email protected]>
15639 L:      [email protected]
15640 S:      Supported
15641 F:      Documentation/core-api/packing.rst
15642 F:      include/linux/packing.h
15643 F:      lib/packing.c
15644
15645 PADATA PARALLEL EXECUTION MECHANISM
15646 M:      Steffen Klassert <[email protected]>
15647 M:      Daniel Jordan <[email protected]>
15648 L:      [email protected]
15649 L:      [email protected]
15650 S:      Maintained
15651 F:      Documentation/core-api/padata.rst
15652 F:      include/linux/padata.h
15653 F:      kernel/padata.c
15654
15655 PAGE CACHE
15656 M:      Matthew Wilcox (Oracle) <[email protected]>
15657 L:      [email protected]
15658 S:      Supported
15659 T:      git git://git.infradead.org/users/willy/pagecache.git
15660 F:      Documentation/filesystems/locking.rst
15661 F:      Documentation/filesystems/vfs.rst
15662 F:      include/linux/pagemap.h
15663 F:      mm/filemap.c
15664 F:      mm/page-writeback.c
15665 F:      mm/readahead.c
15666 F:      mm/truncate.c
15667
15668 PAGE POOL
15669 M:      Jesper Dangaard Brouer <[email protected]>
15670 M:      Ilias Apalodimas <[email protected]>
15671 L:      [email protected]
15672 S:      Supported
15673 F:      Documentation/networking/page_pool.rst
15674 F:      include/net/page_pool.h
15675 F:      include/trace/events/page_pool.h
15676 F:      net/core/page_pool.c
15677
15678 PAGE TABLE CHECK
15679 M:      Pasha Tatashin <[email protected]>
15680 M:      Andrew Morton <[email protected]>
15681 L:      [email protected]
15682 S:      Maintained
15683 F:      Documentation/mm/page_table_check.rst
15684 F:      include/linux/page_table_check.h
15685 F:      mm/page_table_check.c
15686
15687 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15688 M:      Kenneth Chan <[email protected]>
15689 L:      [email protected]
15690 S:      Maintained
15691 F:      drivers/platform/x86/panasonic-laptop.c
15692
15693 PARALLAX PING IIO SENSOR DRIVER
15694 M:      Andreas Klinger <[email protected]>
15695 L:      [email protected]
15696 S:      Maintained
15697 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15698 F:      drivers/iio/proximity/ping.c
15699
15700 PARALLEL LCD/KEYPAD PANEL DRIVER
15701 M:      Willy Tarreau <[email protected]>
15702 M:      Ksenija Stanojevic <[email protected]>
15703 S:      Odd Fixes
15704 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15705 F:      drivers/auxdisplay/panel.c
15706
15707 PARALLEL PORT SUBSYSTEM
15708 M:      Sudip Mukherjee <[email protected]>
15709 M:      Sudip Mukherjee <[email protected]>
15710 L:      [email protected] (subscribers-only)
15711 S:      Maintained
15712 F:      Documentation/driver-api/parport*.rst
15713 F:      drivers/char/ppdev.c
15714 F:      drivers/parport/
15715 F:      include/linux/parport*.h
15716 F:      include/uapi/linux/ppdev.h
15717
15718 PARAVIRT_OPS INTERFACE
15719 M:      Juergen Gross <[email protected]>
15720 M:      Srivatsa S. Bhat (VMware) <[email protected]>
15721 R:      Alexey Makhalov <[email protected]>
15722 R:      VMware PV-Drivers Reviewers <[email protected]>
15723 L:      [email protected]
15724 L:      [email protected]
15725 S:      Supported
15726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15727 F:      Documentation/virt/paravirt_ops.rst
15728 F:      arch/*/include/asm/paravirt*.h
15729 F:      arch/*/kernel/paravirt*
15730 F:      include/linux/hypervisor.h
15731
15732 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15733 M:      Tim Waugh <[email protected]>
15734 L:      [email protected] (subscribers-only)
15735 S:      Maintained
15736 F:      Documentation/admin-guide/blockdev/paride.rst
15737 F:      drivers/block/paride/
15738
15739 PARISC ARCHITECTURE
15740 M:      "James E.J. Bottomley" <[email protected]>
15741 M:      Helge Deller <[email protected]>
15742 L:      [email protected]
15743 S:      Maintained
15744 W:      https://parisc.wiki.kernel.org
15745 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15748 F:      Documentation/parisc/
15749 F:      arch/parisc/
15750 F:      drivers/char/agp/parisc-agp.c
15751 F:      drivers/input/misc/hp_sdc_rtc.c
15752 F:      drivers/input/serio/gscps2.c
15753 F:      drivers/input/serio/hp_sdc*
15754 F:      drivers/parisc/
15755 F:      drivers/parport/parport_gsc.*
15756 F:      drivers/tty/serial/8250/8250_parisc.c
15757 F:      drivers/video/console/sti*
15758 F:      drivers/video/fbdev/sti*
15759 F:      drivers/video/logo/logo_parisc*
15760 F:      include/linux/hp_sdc.h
15761
15762 PARMAN
15763 M:      Jiri Pirko <[email protected]>
15764 L:      [email protected]
15765 S:      Supported
15766 F:      include/linux/parman.h
15767 F:      lib/parman.c
15768 F:      lib/test_parman.c
15769
15770 PC ENGINES APU BOARD DRIVER
15771 M:      Enrico Weigelt, metux IT consult <[email protected]>
15772 S:      Maintained
15773 F:      drivers/platform/x86/pcengines-apuv2.c
15774
15775 PC87360 HARDWARE MONITORING DRIVER
15776 M:      Jim Cromie <[email protected]>
15777 L:      [email protected]
15778 S:      Maintained
15779 F:      Documentation/hwmon/pc87360.rst
15780 F:      drivers/hwmon/pc87360.c
15781
15782 PC8736x GPIO DRIVER
15783 M:      Jim Cromie <[email protected]>
15784 S:      Maintained
15785 F:      drivers/char/pc8736x_gpio.c
15786
15787 PC87427 HARDWARE MONITORING DRIVER
15788 M:      Jean Delvare <[email protected]>
15789 L:      [email protected]
15790 S:      Maintained
15791 F:      Documentation/hwmon/pc87427.rst
15792 F:      drivers/hwmon/pc87427.c
15793
15794 PCA9532 LED DRIVER
15795 M:      Riku Voipio <[email protected]>
15796 S:      Maintained
15797 F:      drivers/leds/leds-pca9532.c
15798 F:      include/linux/leds-pca9532.h
15799
15800 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15801 M:      Guenter Roeck <[email protected]>
15802 L:      [email protected]
15803 S:      Maintained
15804 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15805
15806 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15807 M:      Khalid Aziz <[email protected]>
15808 S:      Maintained
15809 F:      drivers/firmware/pcdp.*
15810
15811 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15812 M:      Thomas Petazzoni <[email protected]>
15813 M:      Pali Rohár <[email protected]>
15814 L:      [email protected]
15815 L:      [email protected] (moderated for non-subscribers)
15816 S:      Maintained
15817 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15818 F:      drivers/pci/controller/pci-aardvark.c
15819
15820 PCI DRIVER FOR ALTERA PCIE IP
15821 M:      Joyce Ooi <[email protected]>
15822 L:      [email protected]
15823 S:      Supported
15824 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15825 F:      drivers/pci/controller/pcie-altera.c
15826
15827 PCI DRIVER FOR APPLIEDMICRO XGENE
15828 M:      Toan Le <[email protected]>
15829 L:      [email protected]
15830 L:      [email protected] (moderated for non-subscribers)
15831 S:      Maintained
15832 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15833 F:      drivers/pci/controller/pci-xgene.c
15834
15835 PCI DRIVER FOR ARM VERSATILE PLATFORM
15836 M:      Rob Herring <[email protected]>
15837 L:      [email protected]
15838 L:      [email protected] (moderated for non-subscribers)
15839 S:      Maintained
15840 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15841 F:      drivers/pci/controller/pci-versatile.c
15842
15843 PCI DRIVER FOR ARMADA 8K
15844 M:      Thomas Petazzoni <[email protected]>
15845 L:      [email protected]
15846 L:      [email protected] (moderated for non-subscribers)
15847 S:      Maintained
15848 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15849 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15850
15851 PCI DRIVER FOR CADENCE PCIE IP
15852 M:      Tom Joseph <[email protected]>
15853 L:      [email protected]
15854 S:      Maintained
15855 F:      Documentation/devicetree/bindings/pci/cdns,*
15856 F:      drivers/pci/controller/cadence/
15857
15858 PCI DRIVER FOR FREESCALE LAYERSCAPE
15859 M:      Minghuan Lian <[email protected]>
15860 M:      Mingkai Hu <[email protected]>
15861 M:      Roy Zang <[email protected]>
15862 L:      [email protected]
15863 L:      [email protected]
15864 L:      [email protected] (moderated for non-subscribers)
15865 S:      Maintained
15866 F:      drivers/pci/controller/dwc/*layerscape*
15867
15868 PCI DRIVER FOR GENERIC OF HOSTS
15869 M:      Will Deacon <[email protected]>
15870 L:      [email protected]
15871 L:      [email protected] (moderated for non-subscribers)
15872 S:      Maintained
15873 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15874 F:      drivers/pci/controller/pci-host-common.c
15875 F:      drivers/pci/controller/pci-host-generic.c
15876
15877 PCI DRIVER FOR IMX6
15878 M:      Richard Zhu <[email protected]>
15879 M:      Lucas Stach <[email protected]>
15880 L:      [email protected]
15881 L:      [email protected] (moderated for non-subscribers)
15882 S:      Maintained
15883 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15884 F:      drivers/pci/controller/dwc/*imx6*
15885
15886 PCI DRIVER FOR FU740
15887 M:      Paul Walmsley <[email protected]>
15888 M:      Greentime Hu <[email protected]>
15889 L:      [email protected]
15890 S:      Maintained
15891 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15892 F:      drivers/pci/controller/dwc/pcie-fu740.c
15893
15894 PCI DRIVER FOR INTEL IXP4XX
15895 M:      Linus Walleij <[email protected]>
15896 S:      Maintained
15897 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15898 F:      drivers/pci/controller/pci-ixp4xx.c
15899
15900 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15901 M:      Nirmal Patel <[email protected]>
15902 R:      Jonathan Derrick <[email protected]>
15903 L:      [email protected]
15904 S:      Supported
15905 F:      drivers/pci/controller/vmd.c
15906
15907 PCI DRIVER FOR MICROSEMI SWITCHTEC
15908 M:      Kurt Schwemmer <[email protected]>
15909 M:      Logan Gunthorpe <[email protected]>
15910 L:      [email protected]
15911 S:      Maintained
15912 F:      Documentation/ABI/testing/sysfs-class-switchtec
15913 F:      Documentation/driver-api/switchtec.rst
15914 F:      drivers/ntb/hw/mscc/
15915 F:      drivers/pci/switch/switchtec*
15916 F:      include/linux/switchtec.h
15917 F:      include/uapi/linux/switchtec_ioctl.h
15918
15919 PCI DRIVER FOR MOBIVEIL PCIE IP
15920 M:      Karthikeyan Mitran <[email protected]>
15921 M:      Hou Zhiqiang <[email protected]>
15922 L:      [email protected]
15923 S:      Supported
15924 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15925 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15926
15927 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15928 M:      Thomas Petazzoni <[email protected]>
15929 M:      Pali Rohár <[email protected]>
15930 L:      [email protected]
15931 L:      [email protected] (moderated for non-subscribers)
15932 S:      Maintained
15933 F:      drivers/pci/controller/*mvebu*
15934
15935 PCI DRIVER FOR NVIDIA TEGRA
15936 M:      Thierry Reding <[email protected]>
15937 L:      [email protected]
15938 L:      [email protected]
15939 S:      Supported
15940 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15941 F:      drivers/pci/controller/pci-tegra.c
15942
15943 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15944 M:      Hou Zhiqiang <[email protected]>
15945 L:      [email protected]
15946 L:      [email protected] (moderated for non-subscribers)
15947 S:      Maintained
15948 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15949 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15950
15951 PCI DRIVER FOR RENESAS R-CAR
15952 M:      Marek Vasut <[email protected]>
15953 M:      Yoshihiro Shimoda <[email protected]>
15954 L:      [email protected]
15955 L:      [email protected]
15956 S:      Maintained
15957 F:      Documentation/devicetree/bindings/pci/*rcar*
15958 F:      drivers/pci/controller/*rcar*
15959
15960 PCI DRIVER FOR SAMSUNG EXYNOS
15961 M:      Jingoo Han <[email protected]>
15962 L:      [email protected]
15963 L:      [email protected] (moderated for non-subscribers)
15964 L:      [email protected]
15965 S:      Maintained
15966 F:      drivers/pci/controller/dwc/pci-exynos.c
15967
15968 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15969 M:      Jingoo Han <[email protected]>
15970 M:      Gustavo Pimentel <[email protected]>
15971 L:      [email protected]
15972 S:      Maintained
15973 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15974 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15975 F:      drivers/pci/controller/dwc/*designware*
15976
15977 PCI DRIVER FOR TI DRA7XX/J721E
15978 M:      Vignesh Raghavendra <[email protected]>
15979 L:      [email protected]
15980 L:      [email protected]
15981 L:      [email protected] (moderated for non-subscribers)
15982 S:      Supported
15983 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15984 F:      drivers/pci/controller/cadence/pci-j721e.c
15985 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15986
15987 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15988 M:      Linus Walleij <[email protected]>
15989 L:      [email protected]
15990 S:      Maintained
15991 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15992 F:      drivers/pci/controller/pci-v3-semi.c
15993
15994 PCI ENDPOINT SUBSYSTEM
15995 M:      Lorenzo Pieralisi <[email protected]>
15996 M:      Krzysztof Wilczyński <[email protected]>
15997 R:      Manivannan Sadhasivam <[email protected]>
15998 R:      Kishon Vijay Abraham I <[email protected]>
15999 L:      [email protected]
16000 S:      Supported
16001 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16002 B:      https://bugzilla.kernel.org
16003 C:      irc://irc.oftc.net/linux-pci
16004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16005 F:      Documentation/PCI/endpoint/*
16006 F:      Documentation/misc-devices/pci-endpoint-test.rst
16007 F:      drivers/misc/pci_endpoint_test.c
16008 F:      drivers/pci/endpoint/
16009 F:      tools/pci/
16010
16011 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
16012 M:      Mahesh J Salgaonkar <[email protected]>
16013 R:      Oliver O'Halloran <[email protected]>
16014 L:      [email protected]
16015 S:      Supported
16016 F:      Documentation/PCI/pci-error-recovery.rst
16017 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
16018 F:      arch/powerpc/include/*/eeh*.h
16019 F:      arch/powerpc/kernel/eeh*.c
16020 F:      arch/powerpc/platforms/*/eeh*.c
16021 F:      drivers/pci/pcie/aer.c
16022 F:      drivers/pci/pcie/dpc.c
16023 F:      drivers/pci/pcie/err.c
16024
16025 PCI ERROR RECOVERY
16026 M:      Linas Vepstas <[email protected]>
16027 L:      [email protected]
16028 S:      Supported
16029 F:      Documentation/PCI/pci-error-recovery.rst
16030
16031 PCI PEER-TO-PEER DMA (P2PDMA)
16032 M:      Bjorn Helgaas <[email protected]>
16033 M:      Logan Gunthorpe <[email protected]>
16034 L:      [email protected]
16035 S:      Supported
16036 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16037 B:      https://bugzilla.kernel.org
16038 C:      irc://irc.oftc.net/linux-pci
16039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16040 F:      Documentation/driver-api/pci/p2pdma.rst
16041 F:      drivers/pci/p2pdma.c
16042 F:      include/linux/pci-p2pdma.h
16043
16044 PCI MSI DRIVER FOR ALTERA MSI IP
16045 M:      Joyce Ooi <[email protected]>
16046 L:      [email protected]
16047 S:      Supported
16048 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
16049 F:      drivers/pci/controller/pcie-altera-msi.c
16050
16051 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
16052 M:      Toan Le <[email protected]>
16053 L:      [email protected]
16054 L:      [email protected] (moderated for non-subscribers)
16055 S:      Maintained
16056 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
16057 F:      drivers/pci/controller/pci-xgene-msi.c
16058
16059 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
16060 M:      Lorenzo Pieralisi <[email protected]>
16061 M:      Krzysztof Wilczyński <[email protected]>
16062 R:      Rob Herring <[email protected]>
16063 L:      [email protected]
16064 S:      Supported
16065 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16066 B:      https://bugzilla.kernel.org
16067 C:      irc://irc.oftc.net/linux-pci
16068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16069 F:      Documentation/devicetree/bindings/pci/
16070 F:      drivers/pci/controller/
16071 F:      drivers/pci/pci-bridge-emul.c
16072 F:      drivers/pci/pci-bridge-emul.h
16073
16074 PCI SUBSYSTEM
16075 M:      Bjorn Helgaas <[email protected]>
16076 L:      [email protected]
16077 S:      Supported
16078 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16079 B:      https://bugzilla.kernel.org
16080 C:      irc://irc.oftc.net/linux-pci
16081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16082 F:      Documentation/PCI/
16083 F:      Documentation/devicetree/bindings/pci/
16084 F:      arch/x86/kernel/early-quirks.c
16085 F:      arch/x86/kernel/quirks.c
16086 F:      arch/x86/pci/
16087 F:      drivers/acpi/pci*
16088 F:      drivers/pci/
16089 F:      include/asm-generic/pci*
16090 F:      include/linux/of_pci.h
16091 F:      include/linux/pci*
16092 F:      include/uapi/linux/pci*
16093 F:      lib/pci*
16094
16095 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
16096 M:      Jonathan Chocron <[email protected]>
16097 L:      [email protected]
16098 S:      Maintained
16099 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
16100 F:      drivers/pci/controller/dwc/pcie-al.c
16101
16102 PCIE DRIVER FOR AMLOGIC MESON
16103 M:      Yue Wang <[email protected]>
16104 L:      [email protected]
16105 L:      [email protected]
16106 S:      Maintained
16107 F:      drivers/pci/controller/dwc/pci-meson.c
16108
16109 PCIE DRIVER FOR AXIS ARTPEC
16110 M:      Jesper Nilsson <[email protected]>
16111 L:      [email protected]
16112 L:      [email protected]
16113 S:      Maintained
16114 F:      Documentation/devicetree/bindings/pci/axis,artpec*
16115 F:      drivers/pci/controller/dwc/*artpec*
16116
16117 PCIE DRIVER FOR CAVIUM THUNDERX
16118 M:      Robert Richter <[email protected]>
16119 L:      [email protected]
16120 L:      [email protected] (moderated for non-subscribers)
16121 S:      Odd Fixes
16122 F:      drivers/pci/controller/pci-thunder-*
16123
16124 PCIE DRIVER FOR HISILICON
16125 M:      Zhou Wang <[email protected]>
16126 L:      [email protected]
16127 S:      Maintained
16128 F:      drivers/pci/controller/dwc/pcie-hisi.c
16129
16130 PCIE DRIVER FOR HISILICON KIRIN
16131 M:      Xiaowei Song <[email protected]>
16132 M:      Binghui Wang <[email protected]>
16133 L:      [email protected]
16134 S:      Maintained
16135 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
16136 F:      drivers/pci/controller/dwc/pcie-kirin.c
16137
16138 PCIE DRIVER FOR HISILICON STB
16139 M:      Shawn Guo <[email protected]>
16140 L:      [email protected]
16141 S:      Maintained
16142 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
16143 F:      drivers/pci/controller/dwc/pcie-histb.c
16144
16145 PCIE DRIVER FOR INTEL KEEM BAY
16146 M:      Srikanth Thokala <[email protected]>
16147 L:      [email protected]
16148 S:      Supported
16149 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
16150 F:      drivers/pci/controller/dwc/pcie-keembay.c
16151
16152 PCIE DRIVER FOR INTEL LGM GW SOC
16153 M:      Rahul Tanwar <[email protected]>
16154 L:      [email protected]
16155 S:      Maintained
16156 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
16157 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
16158
16159 PCIE DRIVER FOR MEDIATEK
16160 M:      Ryder Lee <[email protected]>
16161 M:      Jianjun Wang <[email protected]>
16162 L:      [email protected]
16163 L:      [email protected] (moderated for non-subscribers)
16164 S:      Supported
16165 F:      Documentation/devicetree/bindings/pci/mediatek*
16166 F:      drivers/pci/controller/*mediatek*
16167
16168 PCIE DRIVER FOR MICROCHIP
16169 M:      Daire McNamara <[email protected]>
16170 L:      [email protected]
16171 S:      Supported
16172 F:      Documentation/devicetree/bindings/pci/microchip*
16173 F:      drivers/pci/controller/*microchip*
16174
16175 PCIE DRIVER FOR QUALCOMM MSM
16176 M:      Manivannan Sadhasivam <[email protected]>
16177 L:      [email protected]
16178 L:      [email protected]
16179 S:      Maintained
16180 F:      drivers/pci/controller/dwc/pcie-qcom.c
16181
16182 PCIE ENDPOINT DRIVER FOR QUALCOMM
16183 M:      Manivannan Sadhasivam <[email protected]>
16184 L:      [email protected]
16185 L:      [email protected]
16186 S:      Maintained
16187 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
16188 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
16189
16190 PCIE DRIVER FOR ROCKCHIP
16191 M:      Shawn Lin <[email protected]>
16192 L:      [email protected]
16193 L:      [email protected]
16194 S:      Maintained
16195 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
16196 F:      drivers/pci/controller/pcie-rockchip*
16197
16198 PCIE DRIVER FOR SOCIONEXT UNIPHIER
16199 M:      Kunihiko Hayashi <[email protected]>
16200 L:      [email protected]
16201 S:      Maintained
16202 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
16203 F:      drivers/pci/controller/dwc/pcie-uniphier*
16204
16205 PCIE DRIVER FOR ST SPEAR13XX
16206 M:      Pratyush Anand <[email protected]>
16207 L:      [email protected]
16208 S:      Maintained
16209 F:      drivers/pci/controller/dwc/*spear*
16210
16211 PCI DRIVER FOR XILINX VERSAL CPM
16212 M:      Bharat Kumar Gogada <[email protected]>
16213 M:      Michal Simek <[email protected]>
16214 L:      [email protected]
16215 S:      Maintained
16216 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
16217 F:      drivers/pci/controller/pcie-xilinx-cpm.c
16218
16219 PCMCIA SUBSYSTEM
16220 M:      Dominik Brodowski <[email protected]>
16221 S:      Odd Fixes
16222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
16223 F:      Documentation/pcmcia/
16224 F:      drivers/pcmcia/
16225 F:      include/pcmcia/
16226 F:      tools/pcmcia/
16227
16228 PCNET32 NETWORK DRIVER
16229 M:      Don Fry <[email protected]>
16230 L:      [email protected]
16231 S:      Maintained
16232 F:      drivers/net/ethernet/amd/pcnet32.c
16233
16234 PCRYPT PARALLEL CRYPTO ENGINE
16235 M:      Steffen Klassert <[email protected]>
16236 L:      [email protected]
16237 S:      Maintained
16238 F:      crypto/pcrypt.c
16239 F:      include/crypto/pcrypt.h
16240
16241 PEAQ WMI HOTKEYS DRIVER
16242 M:      Hans de Goede <[email protected]>
16243 L:      [email protected]
16244 S:      Maintained
16245 F:      drivers/platform/x86/peaq-wmi.c
16246
16247 PECI HARDWARE MONITORING DRIVERS
16248 M:      Iwona Winiarska <[email protected]>
16249 L:      [email protected]
16250 S:      Supported
16251 F:      Documentation/hwmon/peci-cputemp.rst
16252 F:      Documentation/hwmon/peci-dimmtemp.rst
16253 F:      drivers/hwmon/peci/
16254
16255 PECI SUBSYSTEM
16256 M:      Iwona Winiarska <[email protected]>
16257 L:      [email protected] (moderated for non-subscribers)
16258 S:      Supported
16259 F:      Documentation/devicetree/bindings/peci/
16260 F:      Documentation/peci/
16261 F:      drivers/peci/
16262 F:      include/linux/peci-cpu.h
16263 F:      include/linux/peci.h
16264
16265 PENSANDO ETHERNET DRIVERS
16266 M:      Shannon Nelson <[email protected]>
16267 M:      Brett Creeley <[email protected]>
16268 M:      [email protected]
16269 L:      [email protected]
16270 S:      Supported
16271 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
16272 F:      drivers/net/ethernet/pensando/
16273
16274 PER-CPU MEMORY ALLOCATOR
16275 M:      Dennis Zhou <[email protected]>
16276 M:      Tejun Heo <[email protected]>
16277 M:      Christoph Lameter <[email protected]>
16278 L:      [email protected]
16279 S:      Maintained
16280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16281 F:      arch/*/include/asm/percpu.h
16282 F:      include/linux/percpu*.h
16283 F:      lib/percpu*.c
16284 F:      mm/percpu*.c
16285
16286 PER-TASK DELAY ACCOUNTING
16287 M:      Balbir Singh <[email protected]>
16288 S:      Maintained
16289 F:      include/linux/delayacct.h
16290 F:      kernel/delayacct.c
16291
16292 PERFORMANCE EVENTS SUBSYSTEM
16293 M:      Peter Zijlstra <[email protected]>
16294 M:      Ingo Molnar <[email protected]>
16295 M:      Arnaldo Carvalho de Melo <[email protected]>
16296 R:      Mark Rutland <[email protected]>
16297 R:      Alexander Shishkin <[email protected]>
16298 R:      Jiri Olsa <[email protected]>
16299 R:      Namhyung Kim <[email protected]>
16300 L:      [email protected]
16301 L:      [email protected]
16302 S:      Supported
16303 W:      https://perf.wiki.kernel.org/
16304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16305 F:      arch/*/events/*
16306 F:      arch/*/events/*/*
16307 F:      arch/*/include/asm/perf_event.h
16308 F:      arch/*/kernel/*/*/perf_event*.c
16309 F:      arch/*/kernel/*/perf_event*.c
16310 F:      arch/*/kernel/perf_callchain.c
16311 F:      arch/*/kernel/perf_event*.c
16312 F:      include/linux/perf_event.h
16313 F:      include/uapi/linux/perf_event.h
16314 F:      kernel/events/*
16315 F:      tools/lib/perf/
16316 F:      tools/perf/
16317
16318 PERFORMANCE EVENTS TOOLING ARM64
16319 R:      John Garry <[email protected]>
16320 R:      Will Deacon <[email protected]>
16321 R:      James Clark <[email protected]>
16322 R:      Mike Leach <[email protected]>
16323 R:      Leo Yan <[email protected]>
16324 L:      [email protected] (moderated for non-subscribers)
16325 S:      Supported
16326 F:      tools/build/feature/test-libopencsd.c
16327 F:      tools/perf/arch/arm*/
16328 F:      tools/perf/pmu-events/arch/arm64/
16329 F:      tools/perf/util/arm-spe*
16330 F:      tools/perf/util/cs-etm*
16331
16332 PERSONALITY HANDLING
16333 M:      Christoph Hellwig <[email protected]>
16334 L:      [email protected]
16335 S:      Maintained
16336 F:      include/linux/personality.h
16337 F:      include/uapi/linux/personality.h
16338
16339 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16340 M:      Marcus Folkesson <[email protected]>
16341 L:      [email protected]
16342 S:      Maintained
16343 F:      Documentation/input/devices/pxrc.rst
16344 F:      drivers/input/joystick/pxrc.c
16345
16346 PHONET PROTOCOL
16347 M:      Remi Denis-Courmont <[email protected]>
16348 S:      Supported
16349 F:      Documentation/networking/phonet.rst
16350 F:      include/linux/phonet.h
16351 F:      include/net/phonet/
16352 F:      include/uapi/linux/phonet.h
16353 F:      net/phonet/
16354
16355 PHRAM MTD DRIVER
16356 M:      Joern Engel <[email protected]>
16357 L:      [email protected]
16358 S:      Maintained
16359 F:      drivers/mtd/devices/phram.c
16360
16361 PICOLCD HID DRIVER
16362 M:      Bruno Prémont <[email protected]>
16363 L:      [email protected]
16364 S:      Maintained
16365 F:      drivers/hid/hid-picolcd*
16366
16367 PIDFD API
16368 M:      Christian Brauner <[email protected]>
16369 L:      [email protected]
16370 S:      Maintained
16371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16372 F:      samples/pidfd/
16373 F:      tools/testing/selftests/clone3/
16374 F:      tools/testing/selftests/pid_namespace/
16375 F:      tools/testing/selftests/pidfd/
16376 K:      (?i)pidfd
16377 K:      (?i)clone3
16378 K:      \b(clone_args|kernel_clone_args)\b
16379
16380 PIN CONTROL SUBSYSTEM
16381 M:      Linus Walleij <[email protected]>
16382 L:      [email protected]
16383 S:      Maintained
16384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16385 F:      Documentation/devicetree/bindings/pinctrl/
16386 F:      Documentation/driver-api/pin-control.rst
16387 F:      drivers/pinctrl/
16388 F:      include/dt-bindings/pinctrl/
16389 F:      include/linux/pinctrl/
16390
16391 PIN CONTROLLER - AMD
16392 M:      Basavaraj Natikar <[email protected]>
16393 M:      Shyam Sundar S K <[email protected]>
16394 S:      Maintained
16395 F:      drivers/pinctrl/pinctrl-amd.c
16396
16397 PIN CONTROLLER - FREESCALE
16398 M:      Dong Aisheng <[email protected]>
16399 M:      Fabio Estevam <[email protected]>
16400 M:      Shawn Guo <[email protected]>
16401 M:      Jacky Bai <[email protected]>
16402 R:      Pengutronix Kernel Team <[email protected]>
16403 L:      [email protected]
16404 S:      Maintained
16405 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16406 F:      drivers/pinctrl/freescale/
16407
16408 PIN CONTROLLER - INTEL
16409 M:      Mika Westerberg <[email protected]>
16410 M:      Andy Shevchenko <[email protected]>
16411 S:      Supported
16412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16413 F:      drivers/pinctrl/intel/
16414
16415 PIN CONTROLLER - KEEMBAY
16416 M:      Lakshmi Sowjanya D <[email protected]>
16417 S:      Supported
16418 F:      drivers/pinctrl/pinctrl-keembay*
16419
16420 PIN CONTROLLER - MEDIATEK
16421 M:      Sean Wang <[email protected]>
16422 L:      [email protected] (moderated for non-subscribers)
16423 S:      Maintained
16424 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16425 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
16426 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16427 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16428 F:      drivers/pinctrl/mediatek/
16429
16430 PIN CONTROLLER - MICROCHIP AT91
16431 M:      Ludovic Desroches <[email protected]>
16432 L:      [email protected] (moderated for non-subscribers)
16433 L:      [email protected]
16434 S:      Supported
16435 F:      drivers/gpio/gpio-sama5d2-piobu.c
16436 F:      drivers/pinctrl/pinctrl-at91*
16437
16438 PIN CONTROLLER - QUALCOMM
16439 M:      Bjorn Andersson <[email protected]>
16440 L:      [email protected]
16441 S:      Maintained
16442 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16443 F:      drivers/pinctrl/qcom/
16444
16445 PIN CONTROLLER - RENESAS
16446 M:      Geert Uytterhoeven <[email protected]>
16447 L:      [email protected]
16448 S:      Supported
16449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16450 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16451 F:      drivers/pinctrl/renesas/
16452
16453 PIN CONTROLLER - SAMSUNG
16454 M:      Tomasz Figa <[email protected]>
16455 M:      Krzysztof Kozlowski <[email protected]>
16456 M:      Sylwester Nawrocki <[email protected]>
16457 R:      Alim Akhtar <[email protected]>
16458 L:      [email protected] (moderated for non-subscribers)
16459 L:      [email protected]
16460 S:      Maintained
16461 C:      irc://irc.libera.chat/linux-exynos
16462 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16463 B:      mailto:[email protected]
16464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16465 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16466 F:      drivers/pinctrl/samsung/
16467 F:      include/dt-bindings/pinctrl/samsung.h
16468
16469 PIN CONTROLLER - SINGLE
16470 M:      Tony Lindgren <[email protected]>
16471 M:      Haojian Zhuang <[email protected]>
16472 L:      [email protected] (moderated for non-subscribers)
16473 L:      [email protected]
16474 S:      Maintained
16475 F:      drivers/pinctrl/pinctrl-single.c
16476
16477 PIN CONTROLLER - THUNDERBAY
16478 M:      Lakshmi Sowjanya D <[email protected]>
16479 S:      Supported
16480 F:      drivers/pinctrl/pinctrl-thunderbay.c
16481
16482 PIN CONTROLLER - SUNPLUS / TIBBO
16483 M:      Dvorkin Dmitry <[email protected]>
16484 M:      Wells Lu <[email protected]>
16485 L:      [email protected] (moderated for non-subscribers)
16486 S:      Maintained
16487 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16488 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16489 F:      drivers/pinctrl/sunplus/
16490 F:      include/dt-bindings/pinctrl/sppctl*.h
16491
16492 PINE64 PINEPHONE KEYBOARD DRIVER
16493 M:      Samuel Holland <[email protected]>
16494 S:      Supported
16495 F:      Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
16496 F:      drivers/input/keyboard/pinephone-keyboard.c
16497
16498 PKTCDVD DRIVER
16499 M:      [email protected]
16500 S:      Orphan
16501 F:      drivers/block/pktcdvd.c
16502 F:      include/linux/pktcdvd.h
16503 F:      include/uapi/linux/pktcdvd.h
16504
16505 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16506 M:      Tomasz Duszynski <[email protected]>
16507 S:      Maintained
16508 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16509 F:      drivers/iio/chemical/pms7003.c
16510
16511 PLCA RECONCILIATION SUBLAYER (IEEE802.3 Clause 148)
16512 M:      Piergiorgio Beruto <[email protected]>
16513 L:      [email protected]
16514 S:      Maintained
16515 F:      drivers/net/phy/mdio-open-alliance.h
16516 F:      net/ethtool/plca.c
16517
16518 PLDMFW LIBRARY
16519 M:      Jacob Keller <[email protected]>
16520 S:      Maintained
16521 F:      Documentation/driver-api/pldmfw/
16522 F:      include/linux/pldmfw.h
16523 F:      lib/pldmfw/
16524
16525 PLX DMA DRIVER
16526 M:      Logan Gunthorpe <[email protected]>
16527 S:      Maintained
16528 F:      drivers/dma/plx_dma.c
16529
16530 PM6764TR DRIVER
16531 M:      Charles Hsu     <[email protected]>
16532 L:      [email protected]
16533 S:      Maintained
16534 F:      Documentation/hwmon/pm6764tr.rst
16535 F:      drivers/hwmon/pmbus/pm6764tr.c
16536
16537 PM-GRAPH UTILITY
16538 M:      "Todd E Brandt" <[email protected]>
16539 L:      [email protected]
16540 S:      Supported
16541 W:      https://01.org/pm-graph
16542 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16543 T:      git git://github.com/intel/pm-graph
16544 F:      tools/power/pm-graph
16545
16546 PMBUS HARDWARE MONITORING DRIVERS
16547 M:      Guenter Roeck <[email protected]>
16548 L:      [email protected]
16549 S:      Maintained
16550 W:      http://hwmon.wiki.kernel.org/
16551 W:      http://www.roeck-us.net/linux/drivers/
16552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16553 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16554 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16555 F:      Documentation/hwmon/adm1275.rst
16556 F:      Documentation/hwmon/ibm-cffps.rst
16557 F:      Documentation/hwmon/ir35221.rst
16558 F:      Documentation/hwmon/lm25066.rst
16559 F:      Documentation/hwmon/ltc2978.rst
16560 F:      Documentation/hwmon/ltc3815.rst
16561 F:      Documentation/hwmon/max16064.rst
16562 F:      Documentation/hwmon/max20751.rst
16563 F:      Documentation/hwmon/max31785.rst
16564 F:      Documentation/hwmon/max34440.rst
16565 F:      Documentation/hwmon/max8688.rst
16566 F:      Documentation/hwmon/pmbus-core.rst
16567 F:      Documentation/hwmon/pmbus.rst
16568 F:      Documentation/hwmon/tps40422.rst
16569 F:      Documentation/hwmon/ucd9000.rst
16570 F:      Documentation/hwmon/ucd9200.rst
16571 F:      Documentation/hwmon/zl6100.rst
16572 F:      drivers/hwmon/pmbus/
16573 F:      include/linux/pmbus.h
16574
16575 PMC SIERRA MaxRAID DRIVER
16576 L:      [email protected]
16577 S:      Orphan
16578 W:      http://www.pmc-sierra.com/
16579 F:      drivers/scsi/pmcraid.*
16580
16581 PMC SIERRA PM8001 DRIVER
16582 M:      Jack Wang <[email protected]>
16583 L:      [email protected]
16584 S:      Supported
16585 F:      drivers/scsi/pm8001/
16586
16587 PNI RM3100 IIO DRIVER
16588 M:      Song Qiang <[email protected]>
16589 L:      [email protected]
16590 S:      Maintained
16591 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16592 F:      drivers/iio/magnetometer/rm3100*
16593
16594 PNP SUPPORT
16595 M:      "Rafael J. Wysocki" <[email protected]>
16596 L:      [email protected]
16597 S:      Maintained
16598 F:      drivers/pnp/
16599 F:      include/linux/pnp.h
16600
16601 POSIX CLOCKS and TIMERS
16602 M:      Thomas Gleixner <[email protected]>
16603 L:      [email protected]
16604 S:      Maintained
16605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16606 F:      fs/timerfd.c
16607 F:      include/linux/time_namespace.h
16608 F:      include/linux/timer*
16609 F:      kernel/time/*timer*
16610 F:      kernel/time/namespace.c
16611
16612 POWER MANAGEMENT CORE
16613 M:      "Rafael J. Wysocki" <[email protected]>
16614 L:      [email protected]
16615 S:      Supported
16616 B:      https://bugzilla.kernel.org
16617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16618 F:      drivers/base/power/
16619 F:      drivers/powercap/
16620 F:      include/linux/intel_rapl.h
16621 F:      include/linux/pm.h
16622 F:      include/linux/pm_*
16623 F:      include/linux/powercap.h
16624 F:      kernel/configs/nopm.config
16625
16626 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16627 M:      Daniel Lezcano <[email protected]>
16628 L:      [email protected]
16629 S:      Supported
16630 B:      https://bugzilla.kernel.org
16631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16632 F:      drivers/powercap/dtpm*
16633 F:      include/linux/dtpm.h
16634
16635 POWER STATE COORDINATION INTERFACE (PSCI)
16636 M:      Mark Rutland <[email protected]>
16637 M:      Lorenzo Pieralisi <[email protected]>
16638 L:      [email protected] (moderated for non-subscribers)
16639 S:      Maintained
16640 F:      drivers/firmware/psci/
16641 F:      include/linux/psci.h
16642 F:      include/uapi/linux/psci.h
16643
16644 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16645 M:      Sebastian Reichel <[email protected]>
16646 L:      [email protected]
16647 S:      Maintained
16648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16649 F:      Documentation/ABI/testing/sysfs-class-power
16650 F:      Documentation/devicetree/bindings/power/supply/
16651 F:      drivers/power/supply/
16652 F:      include/linux/power/
16653 F:      include/linux/power_supply.h
16654
16655 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16656 M:      Suraj Jitindar Singh <[email protected]>
16657 L:      [email protected]
16658 S:      Maintained
16659 F:      drivers/char/powernv-op-panel.c
16660
16661 PPP OVER ATM (RFC 2364)
16662 M:      Mitchell Blank Jr <[email protected]>
16663 S:      Maintained
16664 F:      include/uapi/linux/atmppp.h
16665 F:      net/atm/pppoatm.c
16666
16667 PPP OVER ETHERNET
16668 M:      Michal Ostrowski <[email protected]>
16669 S:      Maintained
16670 F:      drivers/net/ppp/pppoe.c
16671 F:      drivers/net/ppp/pppox.c
16672
16673 PPP OVER L2TP
16674 M:      James Chapman <[email protected]>
16675 S:      Maintained
16676 F:      include/linux/if_pppol2tp.h
16677 F:      include/uapi/linux/if_pppol2tp.h
16678 F:      net/l2tp/l2tp_ppp.c
16679
16680 PPP PROTOCOL DRIVERS AND COMPRESSORS
16681 M:      Paul Mackerras <[email protected]>
16682 L:      [email protected]
16683 S:      Maintained
16684 F:      drivers/net/ppp/ppp_*
16685
16686 PPS SUPPORT
16687 M:      Rodolfo Giometti <[email protected]>
16688 L:      [email protected] (subscribers-only)
16689 S:      Maintained
16690 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16691 F:      Documentation/ABI/testing/sysfs-pps
16692 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16693 F:      Documentation/driver-api/pps.rst
16694 F:      drivers/pps/
16695 F:      include/linux/pps*.h
16696 F:      include/uapi/linux/pps.h
16697
16698 PPTP DRIVER
16699 M:      Dmitry Kozlov <[email protected]>
16700 L:      [email protected]
16701 S:      Maintained
16702 W:      http://sourceforge.net/projects/accel-pptp
16703 F:      drivers/net/ppp/pptp.c
16704
16705 PRESSURE STALL INFORMATION (PSI)
16706 M:      Johannes Weiner <[email protected]>
16707 M:      Suren Baghdasaryan <[email protected]>
16708 S:      Maintained
16709 F:      include/linux/psi*
16710 F:      kernel/sched/psi.c
16711
16712 PRINTK
16713 M:      Petr Mladek <[email protected]>
16714 M:      Sergey Senozhatsky <[email protected]>
16715 R:      Steven Rostedt <[email protected]>
16716 R:      John Ogness <[email protected]>
16717 S:      Maintained
16718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16719 F:      include/linux/printk.h
16720 F:      kernel/printk/
16721
16722 PRINTK INDEXING
16723 R:      Chris Down <[email protected]>
16724 S:      Maintained
16725 F:      Documentation/core-api/printk-index.rst
16726 F:      kernel/printk/index.c
16727 K:      printk_index
16728
16729 PROC FILESYSTEM
16730 L:      [email protected]
16731 L:      [email protected]
16732 S:      Maintained
16733 F:      Documentation/filesystems/proc.rst
16734 F:      fs/proc/
16735 F:      include/linux/proc_fs.h
16736 F:      tools/testing/selftests/proc/
16737
16738 PROC SYSCTL
16739 M:      Luis Chamberlain <[email protected]>
16740 M:      Kees Cook <[email protected]>
16741 M:      Iurii Zaikin <[email protected]>
16742 L:      [email protected]
16743 L:      [email protected]
16744 S:      Maintained
16745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16746 F:      fs/proc/proc_sysctl.c
16747 F:      include/linux/sysctl.h
16748 F:      kernel/sysctl-test.c
16749 F:      kernel/sysctl.c
16750 F:      tools/testing/selftests/sysctl/
16751
16752 PS3 NETWORK SUPPORT
16753 M:      Geoff Levand <[email protected]>
16754 L:      [email protected]
16755 L:      [email protected]
16756 S:      Maintained
16757 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16758
16759 PS3 PLATFORM SUPPORT
16760 M:      Geoff Levand <[email protected]>
16761 L:      [email protected]
16762 S:      Maintained
16763 F:      arch/powerpc/boot/ps3*
16764 F:      arch/powerpc/include/asm/lv1call.h
16765 F:      arch/powerpc/include/asm/ps3*.h
16766 F:      arch/powerpc/platforms/ps3/
16767 F:      drivers/*/ps3*
16768 F:      drivers/ps3/
16769 F:      drivers/rtc/rtc-ps3.c
16770 F:      drivers/usb/host/*ps3.c
16771 F:      sound/ppc/snd_ps3*
16772
16773 PS3VRAM DRIVER
16774 M:      Jim Paris <[email protected]>
16775 M:      Geoff Levand <[email protected]>
16776 L:      [email protected]
16777 S:      Maintained
16778 F:      drivers/block/ps3vram.c
16779
16780 PSAMPLE PACKET SAMPLING SUPPORT
16781 M:      Yotam Gigi <[email protected]>
16782 S:      Maintained
16783 F:      include/net/psample.h
16784 F:      include/uapi/linux/psample.h
16785 F:      net/psample
16786
16787 PSTORE FILESYSTEM
16788 M:      Kees Cook <[email protected]>
16789 R:      Tony Luck <[email protected]>
16790 R:      Guilherme G. Piccoli <[email protected]>
16791 L:      [email protected]
16792 S:      Supported
16793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16794 F:      Documentation/admin-guide/ramoops.rst
16795 F:      Documentation/admin-guide/pstore-blk.rst
16796 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16797 F:      drivers/acpi/apei/erst.c
16798 F:      drivers/firmware/efi/efi-pstore.c
16799 F:      fs/pstore/
16800 F:      include/linux/pstore*
16801 K:      \b(pstore|ramoops)
16802
16803 PTP HARDWARE CLOCK SUPPORT
16804 M:      Richard Cochran <[email protected]>
16805 L:      [email protected]
16806 S:      Maintained
16807 W:      http://linuxptp.sourceforge.net/
16808 F:      Documentation/ABI/testing/sysfs-ptp
16809 F:      Documentation/driver-api/ptp.rst
16810 F:      drivers/net/phy/dp83640*
16811 F:      drivers/ptp/*
16812 F:      include/linux/ptp_cl*
16813 K:      (?:\b|_)ptp(?:\b|_)
16814
16815 PTP VIRTUAL CLOCK SUPPORT
16816 M:      Yangbo Lu <[email protected]>
16817 L:      [email protected]
16818 S:      Maintained
16819 F:      drivers/ptp/ptp_vclock.c
16820 F:      net/ethtool/phc_vclocks.c
16821
16822 PTRACE SUPPORT
16823 M:      Oleg Nesterov <[email protected]>
16824 S:      Maintained
16825 F:      arch/*/*/ptrace*.c
16826 F:      arch/*/include/asm/ptrace*.h
16827 F:      arch/*/ptrace*.c
16828 F:      include/asm-generic/syscall.h
16829 F:      include/linux/ptrace.h
16830 F:      include/linux/regset.h
16831 F:      include/uapi/linux/ptrace.h
16832 F:      kernel/ptrace.c
16833
16834 PULSE8-CEC DRIVER
16835 M:      Hans Verkuil <[email protected]>
16836 L:      [email protected]
16837 S:      Maintained
16838 T:      git git://linuxtv.org/media_tree.git
16839 F:      drivers/media/cec/usb/pulse8/
16840
16841 PURELIFI PLFXLC DRIVER
16842 M:      Srinivasan Raju <[email protected]>
16843 L:      [email protected]
16844 S:      Supported
16845 F:      drivers/net/wireless/purelifi/plfxlc/
16846
16847 PVRUSB2 VIDEO4LINUX DRIVER
16848 M:      Mike Isely <[email protected]>
16849 L:      [email protected]       (subscribers-only)
16850 L:      [email protected]
16851 S:      Maintained
16852 W:      http://www.isely.net/pvrusb2/
16853 T:      git git://linuxtv.org/media_tree.git
16854 F:      Documentation/driver-api/media/drivers/pvrusb2*
16855 F:      drivers/media/usb/pvrusb2/
16856
16857 PWC WEBCAM DRIVER
16858 M:      Hans Verkuil <[email protected]>
16859 L:      [email protected]
16860 S:      Odd Fixes
16861 T:      git git://linuxtv.org/media_tree.git
16862 F:      drivers/media/usb/pwc/*
16863 F:      include/trace/events/pwc.h
16864
16865 PWM IR Transmitter
16866 M:      Sean Young <[email protected]>
16867 L:      [email protected]
16868 S:      Maintained
16869 F:      Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
16870 F:      drivers/media/rc/pwm-ir-tx.c
16871
16872 PWM SUBSYSTEM
16873 M:      Thierry Reding <[email protected]>
16874 R:      Uwe Kleine-König <[email protected]>
16875 L:      [email protected]
16876 S:      Maintained
16877 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16879 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
16880 F:      Documentation/devicetree/bindings/pwm/
16881 F:      Documentation/driver-api/pwm.rst
16882 F:      drivers/gpio/gpio-mvebu.c
16883 F:      drivers/pwm/
16884 F:      drivers/video/backlight/pwm_bl.c
16885 F:      include/dt-bindings/pwm/
16886 F:      include/linux/pwm.h
16887 F:      include/linux/pwm_backlight.h
16888 K:      pwm_(config|apply_state|ops)
16889
16890 PXA GPIO DRIVER
16891 M:      Robert Jarzmik <[email protected]>
16892 L:      [email protected]
16893 S:      Maintained
16894 F:      drivers/gpio/gpio-pxa.c
16895
16896 PXA MMCI DRIVER
16897 S:      Orphan
16898
16899 PXA RTC DRIVER
16900 M:      Robert Jarzmik <[email protected]>
16901 L:      [email protected]
16902 S:      Maintained
16903
16904 PXA2xx/PXA3xx SUPPORT
16905 M:      Daniel Mack <[email protected]>
16906 M:      Haojian Zhuang <[email protected]>
16907 M:      Robert Jarzmik <[email protected]>
16908 L:      [email protected] (moderated for non-subscribers)
16909 S:      Maintained
16910 T:      git git://github.com/hzhuang1/linux.git
16911 T:      git git://github.com/rjarzmik/linux.git
16912 F:      arch/arm/boot/dts/pxa*
16913 F:      arch/arm/mach-pxa/
16914 F:      drivers/dma/pxa*
16915 F:      drivers/pcmcia/pxa2xx*
16916 F:      drivers/pinctrl/pxa/
16917 F:      drivers/spi/spi-pxa2xx*
16918 F:      drivers/usb/gadget/udc/pxa2*
16919 F:      include/sound/pxa2xx-lib.h
16920 F:      sound/arm/pxa*
16921 F:      sound/soc/pxa/
16922
16923 QAT DRIVER
16924 M:      Giovanni Cabiddu <[email protected]>
16925 L:      [email protected]
16926 S:      Supported
16927 F:      drivers/crypto/qat/
16928
16929 QCOM AUDIO (ASoC) DRIVERS
16930 M:      Srinivas Kandagatla <[email protected]>
16931 M:      Banajit Goswami <[email protected]>
16932 L:      [email protected] (moderated for non-subscribers)
16933 S:      Supported
16934 F:      Documentation/devicetree/bindings/soc/qcom/qcom,apr*
16935 F:      Documentation/devicetree/bindings/sound/qcom,*
16936 F:      drivers/soc/qcom/apr.c
16937 F:      include/dt-bindings/sound/qcom,wcd9335.h
16938 F:      sound/soc/codecs/lpass-rx-macro.*
16939 F:      sound/soc/codecs/lpass-tx-macro.*
16940 F:      sound/soc/codecs/lpass-va-macro.c
16941 F:      sound/soc/codecs/lpass-wsa-macro.*
16942 F:      sound/soc/codecs/msm8916-wcd-analog.c
16943 F:      sound/soc/codecs/msm8916-wcd-digital.c
16944 F:      sound/soc/codecs/wcd9335.*
16945 F:      sound/soc/codecs/wcd934x.c
16946 F:      sound/soc/codecs/wcd-clsh-v2.*
16947 F:      sound/soc/codecs/wcd-mbhc-v2.*
16948 F:      sound/soc/codecs/wsa881x.c
16949 F:      sound/soc/codecs/wsa883x.c
16950 F:      sound/soc/qcom/
16951
16952 QCOM EMBEDDED USB DEBUGGER (EUD)
16953 M:      Souradeep Chowdhury <[email protected]>
16954 L:      [email protected]
16955 S:      Maintained
16956 F:      Documentation/ABI/testing/sysfs-driver-eud
16957 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16958 F:      drivers/usb/misc/qcom_eud.c
16959
16960 QCOM IPA DRIVER
16961 M:      Alex Elder <[email protected]>
16962 L:      [email protected]
16963 S:      Supported
16964 F:      drivers/net/ipa/
16965
16966 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16967 M:      Gabriel Somlo <[email protected]>
16968 M:      "Michael S. Tsirkin" <[email protected]>
16969 L:      [email protected]
16970 S:      Maintained
16971 F:      drivers/firmware/qemu_fw_cfg.c
16972 F:      include/uapi/linux/qemu_fw_cfg.h
16973
16974 QIB DRIVER
16975 M:      Dennis Dalessandro <[email protected]>
16976 L:      [email protected]
16977 S:      Supported
16978 F:      drivers/infiniband/hw/qib/
16979
16980 QLOGIC QL41xxx FCOE DRIVER
16981 M:      Saurav Kashyap <[email protected]>
16982 M:      Javed Hasan <[email protected]>
16983 M:      [email protected]
16984 L:      [email protected]
16985 S:      Supported
16986 F:      drivers/scsi/qedf/
16987
16988 QLOGIC QL41xxx ISCSI DRIVER
16989 M:      Nilesh Javali <[email protected]>
16990 M:      Manish Rangankar <[email protected]>
16991 M:      [email protected]
16992 L:      [email protected]
16993 S:      Supported
16994 F:      drivers/scsi/qedi/
16995
16996 QLOGIC QL4xxx ETHERNET DRIVER
16997 M:      Ariel Elior <[email protected]>
16998 M:      Manish Chopra <[email protected]>
16999 L:      [email protected]
17000 S:      Supported
17001 F:      drivers/net/ethernet/qlogic/qed/
17002 F:      drivers/net/ethernet/qlogic/qede/
17003 F:      include/linux/qed/
17004
17005 QLOGIC QL4xxx RDMA DRIVER
17006 M:      Michal Kalderon <[email protected]>
17007 M:      Ariel Elior <[email protected]>
17008 L:      [email protected]
17009 S:      Supported
17010 F:      drivers/infiniband/hw/qedr/
17011 F:      include/uapi/rdma/qedr-abi.h
17012
17013 QLOGIC QLA1280 SCSI DRIVER
17014 M:      Michael Reed <[email protected]>
17015 L:      [email protected]
17016 S:      Maintained
17017 F:      drivers/scsi/qla1280.[ch]
17018
17019 QLOGIC QLA2XXX FC-SCSI DRIVER
17020 M:      Nilesh Javali <[email protected]>
17021 M:      [email protected]
17022 L:      [email protected]
17023 S:      Supported
17024 F:      drivers/scsi/qla2xxx/
17025
17026 QLOGIC QLA3XXX NETWORK DRIVER
17027 M:      [email protected]
17028 L:      [email protected]
17029 S:      Supported
17030 F:      drivers/net/ethernet/qlogic/qla3xxx.*
17031
17032 QLOGIC QLA4XXX iSCSI DRIVER
17033 M:      Nilesh Javali <[email protected]>
17034 M:      Manish Rangankar <[email protected]>
17035 M:      [email protected]
17036 L:      [email protected]
17037 S:      Supported
17038 F:      drivers/scsi/qla4xxx/
17039
17040 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
17041 M:      Shahed Shaikh <[email protected]>
17042 M:      Manish Chopra <[email protected]>
17043 M:      [email protected]
17044 L:      [email protected]
17045 S:      Supported
17046 F:      drivers/net/ethernet/qlogic/qlcnic/
17047
17048 QLOGIC QLGE 10Gb ETHERNET DRIVER
17049 M:      Manish Chopra <[email protected]>
17050 M:      [email protected]
17051 M:      Coiby Xu <[email protected]>
17052 L:      [email protected]
17053 S:      Supported
17054 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
17055 F:      drivers/staging/qlge/
17056
17057 QM1D1B0004 MEDIA DRIVER
17058 M:      Akihiro Tsukada <[email protected]>
17059 L:      [email protected]
17060 S:      Odd Fixes
17061 F:      drivers/media/tuners/qm1d1b0004*
17062
17063 QM1D1C0042 MEDIA DRIVER
17064 M:      Akihiro Tsukada <[email protected]>
17065 L:      [email protected]
17066 S:      Odd Fixes
17067 F:      drivers/media/tuners/qm1d1c0042*
17068
17069 QNX4 FILESYSTEM
17070 M:      Anders Larsen <[email protected]>
17071 S:      Maintained
17072 W:      http://www.alarsen.net/linux/qnx4fs/
17073 F:      fs/qnx4/
17074 F:      include/uapi/linux/qnx4_fs.h
17075 F:      include/uapi/linux/qnxtypes.h
17076
17077 QORIQ DPAA2 FSL-MC BUS DRIVER
17078 M:      Stuart Yoder <[email protected]>
17079 M:      Laurentiu Tudor <[email protected]>
17080 L:      [email protected]
17081 S:      Maintained
17082 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
17083 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
17084 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
17085 F:      drivers/bus/fsl-mc/
17086 F:      include/uapi/linux/fsl_mc.h
17087
17088 QT1010 MEDIA DRIVER
17089 M:      Antti Palosaari <[email protected]>
17090 L:      [email protected]
17091 S:      Maintained
17092 W:      https://linuxtv.org
17093 W:      http://palosaari.fi/linux/
17094 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17095 T:      git git://linuxtv.org/anttip/media_tree.git
17096 F:      drivers/media/tuners/qt1010*
17097
17098 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
17099 M:      Kalle Valo <[email protected]>
17100 L:      [email protected]
17101 S:      Supported
17102 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
17103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17104 F:      drivers/net/wireless/ath/ath10k/
17105 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
17106
17107 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
17108 M:      Kalle Valo <[email protected]>
17109 L:      [email protected]
17110 S:      Supported
17111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17112 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
17113 F:      drivers/net/wireless/ath/ath11k/
17114
17115 QUALCOMM ATH12K WIRELESS DRIVER
17116 M:      Kalle Valo <[email protected]>
17117 L:      [email protected]
17118 S:      Supported
17119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17120 F:      drivers/net/wireless/ath/ath12k/
17121
17122 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
17123 M:      Toke Høiland-Jørgensen <[email protected]>
17124 L:      [email protected]
17125 S:      Maintained
17126 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
17127 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
17128 F:      drivers/net/wireless/ath/ath9k/
17129
17130 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
17131 M:      Stephan Gerhold <[email protected]>
17132 L:      [email protected]
17133 L:      [email protected]
17134 S:      Maintained
17135 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
17136 F:      drivers/net/wwan/qcom_bam_dmux.c
17137
17138 QUALCOMM CAMERA SUBSYSTEM DRIVER
17139 M:      Robert Foss <[email protected]>
17140 M:      Todor Tomov <[email protected]>
17141 L:      [email protected]
17142 S:      Maintained
17143 F:      Documentation/admin-guide/media/qcom_camss.rst
17144 F:      Documentation/devicetree/bindings/media/*camss*
17145 F:      drivers/media/platform/qcom/camss/
17146
17147 QUALCOMM CLOCK DRIVERS
17148 M:      Bjorn Andersson <[email protected]>
17149 L:      [email protected]
17150 S:      Supported
17151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
17152 F:      Documentation/devicetree/bindings/clock/qcom,*
17153 F:      drivers/clk/qcom/
17154 F:      include/dt-bindings/clock/qcom,*
17155
17156 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
17157 M:      Niklas Cassel <[email protected]>
17158 L:      [email protected]
17159 L:      [email protected]
17160 S:      Maintained
17161 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
17162 F:      drivers/soc/qcom/cpr.c
17163
17164 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
17165 M:      Ilia Lin <[email protected]>
17166 L:      [email protected]
17167 S:      Maintained
17168 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
17169 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
17170 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
17171
17172 QUALCOMM CRYPTO DRIVERS
17173 M:      Thara Gopinath <[email protected]>
17174 L:      [email protected]
17175 L:      [email protected]
17176 S:      Maintained
17177 F:      drivers/crypto/qce/
17178
17179 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
17180 M:      Timur Tabi <[email protected]>
17181 L:      [email protected]
17182 S:      Maintained
17183 F:      drivers/net/ethernet/qualcomm/emac/
17184
17185 QUALCOMM ETHQOS ETHERNET DRIVER
17186 M:      Vinod Koul <[email protected]>
17187 R:      Bhupesh Sharma <[email protected]>
17188 L:      [email protected]
17189 S:      Maintained
17190 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
17191 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
17192
17193 QUALCOMM FASTRPC DRIVER
17194 M:      Srinivas Kandagatla <[email protected]>
17195 M:      Amol Maheshwari <[email protected]>
17196 L:      [email protected]
17197 S:      Maintained
17198 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
17199 F:      drivers/misc/fastrpc.c
17200 F:      include/uapi/misc/fastrpc.h
17201
17202 QUALCOMM HEXAGON ARCHITECTURE
17203 M:      Brian Cain <[email protected]>
17204 L:      [email protected]
17205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
17206 S:      Supported
17207 F:      arch/hexagon/
17208
17209 QUALCOMM HIDMA DRIVER
17210 M:      Sinan Kaya <[email protected]>
17211 L:      [email protected] (moderated for non-subscribers)
17212 L:      [email protected]
17213 L:      [email protected]
17214 S:      Supported
17215 F:      drivers/dma/qcom/hidma*
17216
17217 QUALCOMM I2C CCI DRIVER
17218 M:      Loic Poulain <[email protected]>
17219 M:      Robert Foss <[email protected]>
17220 L:      [email protected]
17221 L:      [email protected]
17222 S:      Maintained
17223 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
17224 F:      drivers/i2c/busses/i2c-qcom-cci.c
17225
17226 QUALCOMM INTERCONNECT BWMON DRIVER
17227 M:      Krzysztof Kozlowski <[email protected]>
17228 L:      [email protected]
17229 S:      Maintained
17230 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
17231 F:      drivers/soc/qcom/icc-bwmon.c
17232
17233 QUALCOMM IOMMU
17234 M:      Rob Clark <[email protected]>
17235 L:      [email protected]
17236 L:      [email protected]
17237 S:      Maintained
17238 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
17239
17240 QUALCOMM IPC ROUTER (QRTR) DRIVER
17241 M:      Manivannan Sadhasivam <[email protected]>
17242 L:      [email protected]
17243 S:      Maintained
17244 F:      include/trace/events/qrtr.h
17245 F:      include/uapi/linux/qrtr.h
17246 F:      net/qrtr/
17247
17248 QUALCOMM IPCC MAILBOX DRIVER
17249 M:      Manivannan Sadhasivam <[email protected]>
17250 L:      [email protected]
17251 S:      Supported
17252 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
17253 F:      drivers/mailbox/qcom-ipcc.c
17254 F:      include/dt-bindings/mailbox/qcom-ipcc.h
17255
17256 QUALCOMM IPQ4019 USB PHY DRIVER
17257 M:      Robert Marko <[email protected]>
17258 M:      Luka Perkov <[email protected]>
17259 L:      [email protected]
17260 S:      Maintained
17261 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
17262 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
17263
17264 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
17265 M:      Robert Marko <[email protected]>
17266 M:      Luka Perkov <[email protected]>
17267 L:      [email protected]
17268 S:      Maintained
17269 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
17270 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
17271
17272 QUALCOMM NAND CONTROLLER DRIVER
17273 M:      Manivannan Sadhasivam <[email protected]>
17274 L:      [email protected]
17275 L:      [email protected]
17276 S:      Maintained
17277 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
17278 F:      drivers/mtd/nand/raw/qcom_nandc.c
17279
17280 QUALCOMM RMNET DRIVER
17281 M:      Subash Abhinov Kasiviswanathan <[email protected]>
17282 M:      Sean Tranchetti <[email protected]>
17283 L:      [email protected]
17284 S:      Maintained
17285 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
17286 F:      drivers/net/ethernet/qualcomm/rmnet/
17287 F:      include/linux/if_rmnet.h
17288
17289 QUALCOMM TSENS THERMAL DRIVER
17290 M:      Amit Kucheria <[email protected]>
17291 M:      Thara Gopinath <[email protected]>
17292 L:      [email protected]
17293 L:      [email protected]
17294 S:      Maintained
17295 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17296 F:      drivers/thermal/qcom/
17297
17298 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17299 M:      Stanimir Varbanov <[email protected]>
17300 M:      Vikash Garodia <[email protected]>
17301 L:      [email protected]
17302 L:      [email protected]
17303 S:      Maintained
17304 T:      git git://linuxtv.org/media_tree.git
17305 F:      Documentation/devicetree/bindings/media/*venus*
17306 F:      drivers/media/platform/qcom/venus/
17307
17308 QUALCOMM WCN36XX WIRELESS DRIVER
17309 M:      Loic Poulain <[email protected]>
17310 L:      [email protected]
17311 S:      Supported
17312 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17313 F:      drivers/net/wireless/ath/wcn36xx/
17314
17315 QUANTENNA QTNFMAC WIRELESS DRIVER
17316 M:      Igor Mitsyanko <[email protected]>
17317 R:      Sergey Matyukevich <[email protected]>
17318 L:      [email protected]
17319 S:      Maintained
17320 F:      drivers/net/wireless/quantenna
17321
17322 RADEON and AMDGPU DRM DRIVERS
17323 M:      Alex Deucher <[email protected]>
17324 M:      Christian König <[email protected]>
17325 M:      Pan, Xinhui <[email protected]>
17326 L:      [email protected]
17327 S:      Supported
17328 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17329 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17330 C:      irc://irc.oftc.net/radeon
17331 F:      Documentation/gpu/amdgpu/
17332 F:      drivers/gpu/drm/amd/
17333 F:      drivers/gpu/drm/radeon/
17334 F:      include/uapi/drm/amdgpu_drm.h
17335 F:      include/uapi/drm/radeon_drm.h
17336
17337 RADEON FRAMEBUFFER DISPLAY DRIVER
17338 M:      Benjamin Herrenschmidt <[email protected]>
17339 L:      [email protected]
17340 S:      Maintained
17341 F:      drivers/video/fbdev/aty/radeon*
17342 F:      include/uapi/linux/radeonfb.h
17343
17344 RADIOSHARK RADIO DRIVER
17345 M:      Hans Verkuil <[email protected]>
17346 L:      [email protected]
17347 S:      Maintained
17348 T:      git git://linuxtv.org/media_tree.git
17349 F:      drivers/media/radio/radio-shark.c
17350
17351 RADIOSHARK2 RADIO DRIVER
17352 M:      Hans Verkuil <[email protected]>
17353 L:      [email protected]
17354 S:      Maintained
17355 T:      git git://linuxtv.org/media_tree.git
17356 F:      drivers/media/radio/radio-shark2.c
17357 F:      drivers/media/radio/radio-tea5777.c
17358
17359 RADOS BLOCK DEVICE (RBD)
17360 M:      Ilya Dryomov <[email protected]>
17361 R:      Dongsheng Yang <[email protected]>
17362 L:      [email protected]
17363 S:      Supported
17364 W:      http://ceph.com/
17365 T:      git https://github.com/ceph/ceph-client.git
17366 F:      Documentation/ABI/testing/sysfs-bus-rbd
17367 F:      drivers/block/rbd.c
17368 F:      drivers/block/rbd_types.h
17369
17370 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17371 M:      Paul Mackerras <[email protected]>
17372 L:      [email protected]
17373 S:      Maintained
17374 F:      drivers/video/fbdev/aty/aty128fb.c
17375
17376 RAINSHADOW-CEC DRIVER
17377 M:      Hans Verkuil <[email protected]>
17378 L:      [email protected]
17379 S:      Maintained
17380 T:      git git://linuxtv.org/media_tree.git
17381 F:      drivers/media/cec/usb/rainshadow/
17382
17383 RALINK MIPS ARCHITECTURE
17384 M:      John Crispin <[email protected]>
17385 L:      [email protected]
17386 S:      Maintained
17387 F:      arch/mips/ralink
17388
17389 RALINK MT7621 MIPS ARCHITECTURE
17390 M:      Arınç ÜNAL <[email protected]>
17391 M:      Sergio Paracuellos <[email protected]>
17392 L:      [email protected]
17393 S:      Maintained
17394 F:      arch/mips/boot/dts/ralink/mt7621*
17395
17396 RALINK PINCTRL DRIVER
17397 M:      Arınç ÜNAL <[email protected]>
17398 M:      Sergio Paracuellos <[email protected]>
17399 L:      [email protected]
17400 S:      Maintained
17401 F:      drivers/pinctrl/ralink/
17402
17403 RALINK RT2X00 WIRELESS LAN DRIVER
17404 M:      Stanislaw Gruszka <[email protected]>
17405 M:      Helmut Schaa <[email protected]>
17406 L:      [email protected]
17407 S:      Maintained
17408 F:      drivers/net/wireless/ralink/rt2x00/
17409
17410 RAMDISK RAM BLOCK DEVICE DRIVER
17411 M:      Jens Axboe <[email protected]>
17412 S:      Maintained
17413 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17414 F:      drivers/block/brd.c
17415
17416 RANCHU VIRTUAL BOARD FOR MIPS
17417 M:      Miodrag Dinic <[email protected]>
17418 L:      [email protected]
17419 S:      Supported
17420 F:      arch/mips/configs/generic/board-ranchu.config
17421 F:      arch/mips/generic/board-ranchu.c
17422
17423 RANDOM NUMBER DRIVER
17424 M:      "Theodore Ts'o" <[email protected]>
17425 M:      Jason A. Donenfeld <[email protected]>
17426 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17427 S:      Maintained
17428 F:      drivers/char/random.c
17429 F:      drivers/virt/vmgenid.c
17430
17431 RAPIDIO SUBSYSTEM
17432 M:      Matt Porter <[email protected]>
17433 M:      Alexandre Bounine <[email protected]>
17434 S:      Maintained
17435 F:      drivers/rapidio/
17436
17437 RAS INFRASTRUCTURE
17438 M:      Tony Luck <[email protected]>
17439 M:      Borislav Petkov <[email protected]>
17440 L:      [email protected]
17441 S:      Maintained
17442 F:      Documentation/admin-guide/ras.rst
17443 F:      drivers/ras/
17444 F:      include/linux/ras.h
17445 F:      include/ras/ras_event.h
17446
17447 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17448 L:      [email protected]
17449 S:      Orphan
17450 F:      drivers/net/wireless/ray*
17451
17452 RC-CORE / LIRC FRAMEWORK
17453 M:      Sean Young <[email protected]>
17454 L:      [email protected]
17455 S:      Maintained
17456 W:      http://linuxtv.org
17457 T:      git git://linuxtv.org/media_tree.git
17458 F:      Documentation/driver-api/media/rc-core.rst
17459 F:      Documentation/userspace-api/media/rc/
17460 F:      drivers/media/rc/
17461 F:      include/media/rc-map.h
17462 F:      include/media/rc-core.h
17463 F:      include/uapi/linux/lirc.h
17464
17465 RCMM REMOTE CONTROLS DECODER
17466 M:      Patrick Lerda <[email protected]>
17467 S:      Maintained
17468 F:      drivers/media/rc/ir-rcmm-decoder.c
17469
17470 RCUTORTURE TEST FRAMEWORK
17471 M:      "Paul E. McKenney" <[email protected]>
17472 M:      Josh Triplett <[email protected]>
17473 R:      Steven Rostedt <[email protected]>
17474 R:      Mathieu Desnoyers <[email protected]>
17475 R:      Lai Jiangshan <[email protected]>
17476 L:      [email protected]
17477 S:      Supported
17478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17479 F:      tools/testing/selftests/rcutorture
17480
17481 RDACM20 Camera Sensor
17482 M:      Jacopo Mondi <[email protected]>
17483 M:      Kieran Bingham <[email protected]>
17484 M:      Laurent Pinchart <[email protected]>
17485 M:      Niklas Söderlund <[email protected]>
17486 L:      [email protected]
17487 S:      Maintained
17488 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17489 F:      drivers/media/i2c/max9271.c
17490 F:      drivers/media/i2c/max9271.h
17491 F:      drivers/media/i2c/rdacm20.c
17492
17493 RDACM21 Camera Sensor
17494 M:      Jacopo Mondi <[email protected]>
17495 M:      Kieran Bingham <[email protected]>
17496 M:      Laurent Pinchart <[email protected]>
17497 M:      Niklas Söderlund <[email protected]>
17498 L:      [email protected]
17499 S:      Maintained
17500 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17501 F:      drivers/media/i2c/max9271.c
17502 F:      drivers/media/i2c/max9271.h
17503 F:      drivers/media/i2c/rdacm21.c
17504
17505 RDC R-321X SoC
17506 M:      Florian Fainelli <[email protected]>
17507 S:      Maintained
17508
17509 RDC R6040 FAST ETHERNET DRIVER
17510 M:      Florian Fainelli <[email protected]>
17511 L:      [email protected]
17512 S:      Maintained
17513 F:      drivers/net/ethernet/rdc/r6040.c
17514
17515 RDMAVT - RDMA verbs software
17516 M:      Dennis Dalessandro <[email protected]>
17517 L:      [email protected]
17518 S:      Supported
17519 F:      drivers/infiniband/sw/rdmavt
17520
17521 RDS - RELIABLE DATAGRAM SOCKETS
17522 M:      Santosh Shilimkar <[email protected]>
17523 L:      [email protected]
17524 L:      [email protected]
17525 L:      [email protected] (moderated for non-subscribers)
17526 S:      Supported
17527 W:      https://oss.oracle.com/projects/rds/
17528 F:      Documentation/networking/rds.rst
17529 F:      net/rds/
17530
17531 RDT - RESOURCE ALLOCATION
17532 M:      Fenghua Yu <[email protected]>
17533 M:      Reinette Chatre <[email protected]>
17534 L:      [email protected]
17535 S:      Supported
17536 F:      Documentation/x86/resctrl*
17537 F:      arch/x86/include/asm/resctrl.h
17538 F:      arch/x86/kernel/cpu/resctrl/
17539 F:      tools/testing/selftests/resctrl/
17540
17541 READ-COPY UPDATE (RCU)
17542 M:      "Paul E. McKenney" <[email protected]>
17543 M:      Frederic Weisbecker <[email protected]> (kernel/rcu/tree_nocb.h)
17544 M:      Neeraj Upadhyay <[email protected]> (kernel/rcu/tasks.h)
17545 M:      Josh Triplett <[email protected]>
17546 R:      Steven Rostedt <[email protected]>
17547 R:      Mathieu Desnoyers <[email protected]>
17548 R:      Lai Jiangshan <[email protected]>
17549 R:      Joel Fernandes <[email protected]>
17550 L:      [email protected]
17551 S:      Supported
17552 W:      http://www.rdrop.com/users/paulmck/RCU/
17553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17554 F:      Documentation/RCU/
17555 F:      include/linux/rcu*
17556 F:      kernel/rcu/
17557 X:      Documentation/RCU/torture.rst
17558 X:      include/linux/srcu*.h
17559 X:      kernel/rcu/srcu*.c
17560
17561 REAL TIME CLOCK (RTC) SUBSYSTEM
17562 M:      Alessandro Zummo <[email protected]>
17563 M:      Alexandre Belloni <[email protected]>
17564 L:      [email protected]
17565 S:      Maintained
17566 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17568 F:      Documentation/admin-guide/rtc.rst
17569 F:      Documentation/devicetree/bindings/rtc/
17570 F:      drivers/rtc/
17571 F:      include/linux/platform_data/rtc-*
17572 F:      include/linux/rtc.h
17573 F:      include/linux/rtc/
17574 F:      include/uapi/linux/rtc.h
17575 F:      tools/testing/selftests/rtc/
17576
17577 REALTEK AUDIO CODECS
17578 M:      Oder Chiou <[email protected]>
17579 S:      Maintained
17580 F:      include/sound/rt*.h
17581 F:      sound/soc/codecs/rt*
17582
17583 REALTEK OTTO WATCHDOG
17584 M:      Sander Vanheule <[email protected]>
17585 L:      [email protected]
17586 S:      Maintained
17587 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17588 F:      drivers/watchdog/realtek_otto_wdt.c
17589
17590 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17591 M:      Linus Walleij <[email protected]>
17592 M:      Alvin Šipraga <[email protected]>
17593 S:      Maintained
17594 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17595 F:      drivers/net/dsa/realtek/*
17596
17597 REALTEK WIRELESS DRIVER (rtlwifi family)
17598 M:      Ping-Ke Shih <[email protected]>
17599 L:      [email protected]
17600 S:      Maintained
17601 W:      https://wireless.wiki.kernel.org/
17602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17603 F:      drivers/net/wireless/realtek/rtlwifi/
17604
17605 REALTEK WIRELESS DRIVER (rtw88)
17606 M:      Yan-Hsuan Chuang <[email protected]>
17607 L:      [email protected]
17608 S:      Maintained
17609 F:      drivers/net/wireless/realtek/rtw88/
17610
17611 REALTEK WIRELESS DRIVER (rtw89)
17612 M:      Ping-Ke Shih <[email protected]>
17613 L:      [email protected]
17614 S:      Maintained
17615 F:      drivers/net/wireless/realtek/rtw89/
17616
17617 REDPINE WIRELESS DRIVER
17618 L:      [email protected]
17619 S:      Orphan
17620 F:      drivers/net/wireless/rsi/
17621
17622 REGISTER MAP ABSTRACTION
17623 M:      Mark Brown <[email protected]>
17624 L:      [email protected]
17625 S:      Supported
17626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17627 F:      Documentation/devicetree/bindings/regmap/
17628 F:      drivers/base/regmap/
17629 F:      include/linux/regmap.h
17630
17631 REISERFS FILE SYSTEM
17632 L:      [email protected]
17633 S:      Supported
17634 F:      fs/reiserfs/
17635
17636 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17637 M:      Bjorn Andersson <[email protected]>
17638 M:      Mathieu Poirier <[email protected]>
17639 L:      [email protected]
17640 S:      Maintained
17641 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17642 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17643 F:      Documentation/devicetree/bindings/remoteproc/
17644 F:      Documentation/staging/remoteproc.rst
17645 F:      drivers/remoteproc/
17646 F:      include/linux/remoteproc.h
17647 F:      include/linux/remoteproc/
17648
17649 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17650 M:      Bjorn Andersson <[email protected]>
17651 M:      Mathieu Poirier <[email protected]>
17652 L:      [email protected]
17653 S:      Maintained
17654 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17655 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17656 F:      Documentation/staging/rpmsg.rst
17657 F:      drivers/rpmsg/
17658 F:      include/linux/rpmsg.h
17659 F:      include/linux/rpmsg/
17660 F:      include/uapi/linux/rpmsg.h
17661 F:      samples/rpmsg/
17662
17663 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17664 M:      Stephan Gerhold <[email protected]>
17665 L:      [email protected]
17666 L:      [email protected]
17667 S:      Maintained
17668 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17669
17670 RENESAS CLOCK DRIVERS
17671 M:      Geert Uytterhoeven <[email protected]>
17672 L:      [email protected]
17673 S:      Supported
17674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17675 F:      Documentation/devicetree/bindings/clock/renesas,*
17676 F:      drivers/clk/renesas/
17677
17678 RENESAS EMEV2 I2C DRIVER
17679 M:      Wolfram Sang <[email protected]>
17680 L:      [email protected]
17681 S:      Supported
17682 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17683 F:      drivers/i2c/busses/i2c-emev2.c
17684
17685 RENESAS ETHERNET DRIVERS
17686 R:      Sergey Shtylyov <[email protected]>
17687 L:      [email protected]
17688 L:      [email protected]
17689 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17690 F:      drivers/net/ethernet/renesas/
17691 F:      include/linux/sh_eth.h
17692
17693 RENESAS R-CAR GYROADC DRIVER
17694 M:      Marek Vasut <[email protected]>
17695 L:      [email protected]
17696 S:      Supported
17697 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17698 F:      drivers/iio/adc/rcar-gyroadc.c
17699
17700 RENESAS R-CAR I2C DRIVERS
17701 M:      Wolfram Sang <[email protected]>
17702 L:      [email protected]
17703 S:      Supported
17704 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17705 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17706 F:      drivers/i2c/busses/i2c-rcar.c
17707 F:      drivers/i2c/busses/i2c-sh_mobile.c
17708
17709 RENESAS R-CAR SATA DRIVER
17710 R:      Sergey Shtylyov <[email protected]>
17711 S:      Supported
17712 L:      [email protected]
17713 L:      [email protected]
17714 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17715 F:      drivers/ata/sata_rcar.c
17716
17717 RENESAS R-CAR THERMAL DRIVERS
17718 M:      Niklas Söderlund <[email protected]>
17719 L:      [email protected]
17720 S:      Supported
17721 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17722 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17723 F:      drivers/thermal/rcar_gen3_thermal.c
17724 F:      drivers/thermal/rcar_thermal.c
17725
17726 RENESAS RIIC DRIVER
17727 M:      Chris Brandt <[email protected]>
17728 L:      [email protected]
17729 S:      Supported
17730 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17731 F:      drivers/i2c/busses/i2c-riic.c
17732
17733 RENESAS USB PHY DRIVER
17734 M:      Yoshihiro Shimoda <[email protected]>
17735 L:      [email protected]
17736 S:      Maintained
17737 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17738
17739 RENESAS RZ/G2L A/D DRIVER
17740 M:      Lad Prabhakar <[email protected]>
17741 L:      [email protected]
17742 L:      [email protected]
17743 S:      Supported
17744 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17745 F:      drivers/iio/adc/rzg2l_adc.c
17746
17747 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17748 M:      Clément Léger <[email protected]>
17749 L:      [email protected]
17750 L:      [email protected]
17751 S:      Maintained
17752 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17753 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17754 F:      drivers/net/dsa/rzn1_a5psw*
17755 F:      drivers/net/pcs/pcs-rzn1-miic.c
17756 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17757 F:      include/linux/pcs-rzn1-miic.h
17758 F:      net/dsa/tag_rzn1_a5psw.c
17759
17760 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17761 M:      Miquel Raynal <[email protected]>
17762 L:      [email protected]
17763 L:      [email protected]
17764 S:      Maintained
17765 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17766 F:      drivers/rtc/rtc-rzn1.c
17767
17768 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17769 M:      Miquel Raynal <[email protected]>
17770 L:      [email protected]
17771 L:      [email protected]
17772 S:      Maintained
17773 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17774 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17775
17776 RENESAS VERSACLOCK 7 CLOCK DRIVER
17777 M:      Alex Helms <[email protected]>
17778 S:      Maintained
17779 F:      Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
17780 F:      drivers/clk/clk-versaclock7.c
17781
17782 RESET CONTROLLER FRAMEWORK
17783 M:      Philipp Zabel <[email protected]>
17784 S:      Maintained
17785 T:      git git://git.pengutronix.de/git/pza/linux
17786 F:      Documentation/devicetree/bindings/reset/
17787 F:      Documentation/driver-api/reset.rst
17788 F:      drivers/reset/
17789 F:      include/dt-bindings/reset/
17790 F:      include/linux/reset-controller.h
17791 F:      include/linux/reset.h
17792 F:      include/linux/reset/
17793 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17794
17795 RESTARTABLE SEQUENCES SUPPORT
17796 M:      Mathieu Desnoyers <[email protected]>
17797 M:      Peter Zijlstra <[email protected]>
17798 M:      "Paul E. McKenney" <[email protected]>
17799 M:      Boqun Feng <[email protected]>
17800 L:      [email protected]
17801 S:      Supported
17802 F:      include/trace/events/rseq.h
17803 F:      include/uapi/linux/rseq.h
17804 F:      kernel/rseq.c
17805 F:      tools/testing/selftests/rseq/
17806
17807 RFKILL
17808 M:      Johannes Berg <[email protected]>
17809 L:      [email protected]
17810 S:      Maintained
17811 W:      https://wireless.wiki.kernel.org/
17812 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17815 F:      Documentation/ABI/stable/sysfs-class-rfkill
17816 F:      Documentation/driver-api/rfkill.rst
17817 F:      include/linux/rfkill.h
17818 F:      include/uapi/linux/rfkill.h
17819 F:      net/rfkill/
17820
17821 RHASHTABLE
17822 M:      Thomas Graf <[email protected]>
17823 M:      Herbert Xu <[email protected]>
17824 L:      [email protected]
17825 S:      Maintained
17826 F:      include/linux/rhashtable-types.h
17827 F:      include/linux/rhashtable.h
17828 F:      lib/rhashtable.c
17829 F:      lib/test_rhashtable.c
17830
17831 RICOH R5C592 MEMORYSTICK DRIVER
17832 M:      Maxim Levitsky <[email protected]>
17833 S:      Maintained
17834 F:      drivers/memstick/host/r592.*
17835
17836 RICOH SMARTMEDIA/XD DRIVER
17837 M:      Maxim Levitsky <[email protected]>
17838 S:      Maintained
17839 F:      drivers/mtd/nand/raw/r852.c
17840 F:      drivers/mtd/nand/raw/r852.h
17841
17842 RISC-V PMU DRIVERS
17843 M:      Atish Patra <[email protected]>
17844 R:      Anup Patel <[email protected]>
17845 L:      [email protected]
17846 S:      Supported
17847 F:      drivers/perf/riscv_pmu.c
17848 F:      drivers/perf/riscv_pmu_legacy.c
17849 F:      drivers/perf/riscv_pmu_sbi.c
17850
17851 RISC-V ARCHITECTURE
17852 M:      Paul Walmsley <[email protected]>
17853 M:      Palmer Dabbelt <[email protected]>
17854 M:      Albert Ou <[email protected]>
17855 L:      [email protected]
17856 S:      Supported
17857 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17858 C:      irc://irc.libera.chat/riscv
17859 P:      Documentation/riscv/patch-acceptance.rst
17860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17861 F:      arch/riscv/
17862 N:      riscv
17863 K:      riscv
17864
17865 RISC-V MICROCHIP FPGA SUPPORT
17866 M:      Conor Dooley <[email protected]>
17867 M:      Daire McNamara <[email protected]>
17868 L:      [email protected]
17869 S:      Supported
17870 F:      Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
17871 F:      Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
17872 F:      Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
17873 F:      Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
17874 F:      Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
17875 F:      Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
17876 F:      Documentation/devicetree/bindings/riscv/microchip.yaml
17877 F:      Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
17878 F:      Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
17879 F:      Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
17880 F:      arch/riscv/boot/dts/microchip/
17881 F:      drivers/char/hw_random/mpfs-rng.c
17882 F:      drivers/clk/microchip/clk-mpfs.c
17883 F:      drivers/i2c/busses/i2c-microchip-corei2c.c
17884 F:      drivers/mailbox/mailbox-mpfs.c
17885 F:      drivers/pci/controller/pcie-microchip-host.c
17886 F:      drivers/reset/reset-mpfs.c
17887 F:      drivers/rtc/rtc-mpfs.c
17888 F:      drivers/soc/microchip/mpfs-sys-controller.c
17889 F:      drivers/spi/spi-microchip-core-qspi.c
17890 F:      drivers/spi/spi-microchip-core.c
17891 F:      drivers/usb/musb/mpfs.c
17892 F:      include/soc/microchip/mpfs.h
17893
17894 RISC-V MISC SOC SUPPORT
17895 M:      Conor Dooley <[email protected]>
17896 L:      [email protected]
17897 S:      Maintained
17898 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17899 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
17900 F:      Documentation/devicetree/bindings/riscv/
17901 F:      arch/riscv/boot/dts/
17902
17903 RNBD BLOCK DRIVERS
17904 M:      Md. Haris Iqbal <[email protected]>
17905 M:      Jack Wang <[email protected]>
17906 L:      [email protected]
17907 S:      Maintained
17908 F:      drivers/block/rnbd/
17909
17910 ROCCAT DRIVERS
17911 M:      Stefan Achatz <[email protected]>
17912 S:      Maintained
17913 W:      http://sourceforge.net/projects/roccat/
17914 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17915 F:      drivers/hid/hid-roccat*
17916 F:      include/linux/hid-roccat*
17917
17918 ROCKCHIP CRYPTO DRIVERS
17919 M:      Corentin Labbe <[email protected]>
17920 L:      [email protected]
17921 S:      Maintained
17922 F:      Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
17923 F:      drivers/crypto/rockchip/
17924
17925 ROCKCHIP I2S TDM DRIVER
17926 M:      Nicolas Frattaroli <[email protected]>
17927 L:      [email protected]
17928 S:      Maintained
17929 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17930 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17931
17932 ROCKCHIP ISP V1 DRIVER
17933 M:      Dafna Hirschfeld <[email protected]>
17934 L:      [email protected]
17935 L:      [email protected]
17936 S:      Maintained
17937 F:      Documentation/admin-guide/media/rkisp1.rst
17938 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17939 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17940 F:      drivers/media/platform/rockchip/rkisp1
17941 F:      include/uapi/linux/rkisp1-config.h
17942
17943 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17944 M:      Jacob Chen <[email protected]>
17945 M:      Ezequiel Garcia <[email protected]>
17946 L:      [email protected]
17947 L:      [email protected]
17948 S:      Maintained
17949 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17950 F:      drivers/media/platform/rockchip/rga/
17951
17952 ROCKCHIP VIDEO DECODER DRIVER
17953 M:      Ezequiel Garcia <[email protected]>
17954 L:      [email protected]
17955 L:      [email protected]
17956 S:      Maintained
17957 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17958 F:      drivers/staging/media/rkvdec/
17959
17960 ROCKER DRIVER
17961 M:      Jiri Pirko <[email protected]>
17962 L:      [email protected]
17963 S:      Supported
17964 F:      drivers/net/ethernet/rocker/
17965
17966 ROCKETPORT EXPRESS/INFINITY DRIVER
17967 M:      Kevin Cernekee <[email protected]>
17968 L:      [email protected]
17969 S:      Odd Fixes
17970 F:      drivers/tty/serial/rp2.*
17971
17972 ROHM BD99954 CHARGER IC
17973 M:      Matti Vaittinen <[email protected]>
17974 S:      Supported
17975 F:      drivers/power/supply/bd99954-charger.c
17976 F:      drivers/power/supply/bd99954-charger.h
17977
17978 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17979 M:      Tomasz Duszynski <[email protected]>
17980 S:      Maintained
17981 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17982 F:      drivers/iio/light/bh1750.c
17983
17984 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17985 M:      Marek Vasut <[email protected]>
17986 L:      [email protected]
17987 L:      [email protected]
17988 S:      Supported
17989 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17990 F:      drivers/gpio/gpio-bd9571mwv.c
17991 F:      drivers/mfd/bd9571mwv.c
17992 F:      drivers/regulator/bd9571mwv-regulator.c
17993 F:      include/linux/mfd/bd9571mwv.h
17994
17995 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17996 M:      Matti Vaittinen <[email protected]>
17997 S:      Supported
17998 F:      drivers/clk/clk-bd718x7.c
17999 F:      drivers/gpio/gpio-bd71815.c
18000 F:      drivers/gpio/gpio-bd71828.c
18001 F:      drivers/mfd/rohm-bd71828.c
18002 F:      drivers/mfd/rohm-bd718x7.c
18003 F:      drivers/mfd/rohm-bd9576.c
18004 F:      drivers/regulator/bd71815-regulator.c
18005 F:      drivers/regulator/bd71828-regulator.c
18006 F:      drivers/regulator/bd718x7-regulator.c
18007 F:      drivers/regulator/bd9576-regulator.c
18008 F:      drivers/regulator/rohm-regulator.c
18009 F:      drivers/rtc/rtc-bd70528.c
18010 F:      drivers/watchdog/bd9576_wdt.c
18011 F:      include/linux/mfd/rohm-bd71815.h
18012 F:      include/linux/mfd/rohm-bd71828.h
18013 F:      include/linux/mfd/rohm-bd718x7.h
18014 F:      include/linux/mfd/rohm-bd957x.h
18015 F:      include/linux/mfd/rohm-generic.h
18016 F:      include/linux/mfd/rohm-shared.h
18017
18018 ROSE NETWORK LAYER
18019 M:      Ralf Baechle <[email protected]>
18020 L:      [email protected]
18021 S:      Maintained
18022 W:      http://www.linux-ax25.org/
18023 F:      include/net/rose.h
18024 F:      include/uapi/linux/rose.h
18025 F:      net/rose/
18026
18027 ROTATION DRIVER FOR ALLWINNER A83T
18028 M:      Jernej Skrabec <[email protected]>
18029 L:      [email protected]
18030 S:      Maintained
18031 T:      git git://linuxtv.org/media_tree.git
18032 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
18033 F:      drivers/media/platform/sunxi/sun8i-rotate/
18034
18035 RPMSG TTY DRIVER
18036 M:      Arnaud Pouliquen <[email protected]>
18037 L:      [email protected]
18038 S:      Maintained
18039 F:      drivers/tty/rpmsg_tty.c
18040
18041 RTL2830 MEDIA DRIVER
18042 M:      Antti Palosaari <[email protected]>
18043 L:      [email protected]
18044 S:      Maintained
18045 W:      https://linuxtv.org
18046 W:      http://palosaari.fi/linux/
18047 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18048 T:      git git://linuxtv.org/anttip/media_tree.git
18049 F:      drivers/media/dvb-frontends/rtl2830*
18050
18051 RTL2832 MEDIA DRIVER
18052 M:      Antti Palosaari <[email protected]>
18053 L:      [email protected]
18054 S:      Maintained
18055 W:      https://linuxtv.org
18056 W:      http://palosaari.fi/linux/
18057 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18058 T:      git git://linuxtv.org/anttip/media_tree.git
18059 F:      drivers/media/dvb-frontends/rtl2832*
18060
18061 RTL2832_SDR MEDIA DRIVER
18062 M:      Antti Palosaari <[email protected]>
18063 L:      [email protected]
18064 S:      Maintained
18065 W:      https://linuxtv.org
18066 W:      http://palosaari.fi/linux/
18067 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18068 T:      git git://linuxtv.org/anttip/media_tree.git
18069 F:      drivers/media/dvb-frontends/rtl2832_sdr*
18070
18071 RTL8180 WIRELESS DRIVER
18072 L:      [email protected]
18073 S:      Orphan
18074 W:      https://wireless.wiki.kernel.org/
18075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18076 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
18077
18078 RTL8187 WIRELESS DRIVER
18079 M:      Herton Ronaldo Krzesinski <[email protected]>
18080 M:      Hin-Tak Leung <[email protected]>
18081 M:      Larry Finger <[email protected]>
18082 L:      [email protected]
18083 S:      Maintained
18084 W:      https://wireless.wiki.kernel.org/
18085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18086 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
18087
18088 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
18089 M:      Jes Sorensen <[email protected]>
18090 L:      [email protected]
18091 S:      Maintained
18092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
18093 F:      drivers/net/wireless/realtek/rtl8xxxu/
18094
18095 RTRS TRANSPORT DRIVERS
18096 M:      Md. Haris Iqbal <[email protected]>
18097 M:      Jack Wang <[email protected]>
18098 L:      [email protected]
18099 S:      Maintained
18100 F:      drivers/infiniband/ulp/rtrs/
18101
18102 RUNTIME VERIFICATION (RV)
18103 M:      Daniel Bristot de Oliveira <[email protected]>
18104 M:      Steven Rostedt <[email protected]>
18105 L:      [email protected]
18106 S:      Maintained
18107 F:      Documentation/trace/rv/
18108 F:      include/linux/rv.h
18109 F:      include/rv/
18110 F:      kernel/trace/rv/
18111 F:      tools/verification/
18112
18113 RUST
18114 M:      Miguel Ojeda <[email protected]>
18115 M:      Alex Gaynor <[email protected]>
18116 M:      Wedson Almeida Filho <[email protected]>
18117 R:      Boqun Feng <[email protected]>
18118 R:      Gary Guo <[email protected]>
18119 R:      Björn Roy Baron <[email protected]>
18120 L:      [email protected]
18121 S:      Supported
18122 W:      https://github.com/Rust-for-Linux/linux
18123 B:      https://github.com/Rust-for-Linux/linux/issues
18124 C:      zulip://rust-for-linux.zulipchat.com
18125 T:      git https://github.com/Rust-for-Linux/linux.git rust-next
18126 F:      Documentation/rust/
18127 F:      rust/
18128 F:      samples/rust/
18129 F:      scripts/*rust*
18130 K:      \b(?i:rust)\b
18131
18132 RXRPC SOCKETS (AF_RXRPC)
18133 M:      David Howells <[email protected]>
18134 M:      Marc Dionne <[email protected]>
18135 L:      [email protected]
18136 S:      Supported
18137 W:      https://www.infradead.org/~dhowells/kafs/
18138 F:      Documentation/networking/rxrpc.rst
18139 F:      include/keys/rxrpc-type.h
18140 F:      include/net/af_rxrpc.h
18141 F:      include/trace/events/rxrpc.h
18142 F:      include/uapi/linux/rxrpc.h
18143 F:      net/rxrpc/
18144
18145 S3 SAVAGE FRAMEBUFFER DRIVER
18146 M:      Antonino Daplas <[email protected]>
18147 L:      [email protected]
18148 S:      Maintained
18149 F:      drivers/video/fbdev/savage/
18150
18151 S390 ARCHITECTURE
18152 M:      Heiko Carstens <[email protected]>
18153 M:      Vasily Gorbik <[email protected]>
18154 M:      Alexander Gordeev <[email protected]>
18155 R:      Christian Borntraeger <[email protected]>
18156 R:      Sven Schnelle <[email protected]>
18157 L:      [email protected]
18158 S:      Supported
18159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18160 F:      Documentation/driver-api/s390-drivers.rst
18161 F:      Documentation/s390/
18162 F:      arch/s390/
18163 F:      drivers/s390/
18164 F:      drivers/watchdog/diag288_wdt.c
18165
18166 S390 COMMON I/O LAYER
18167 M:      Vineeth Vijayan <[email protected]>
18168 M:      Peter Oberparleiter <[email protected]>
18169 L:      [email protected]
18170 S:      Supported
18171 F:      drivers/s390/cio/
18172
18173 S390 DASD DRIVER
18174 M:      Stefan Haberland <[email protected]>
18175 M:      Jan Hoeppner <[email protected]>
18176 L:      [email protected]
18177 S:      Supported
18178 F:      block/partitions/ibm.c
18179 F:      drivers/s390/block/dasd*
18180 F:      include/linux/dasd_mod.h
18181
18182 S390 IOMMU (PCI)
18183 M:      Matthew Rosato <[email protected]>
18184 M:      Gerald Schaefer <[email protected]>
18185 L:      [email protected]
18186 S:      Supported
18187 F:      drivers/iommu/s390-iommu.c
18188
18189 S390 IUCV NETWORK LAYER
18190 M:      Alexandra Winter <[email protected]>
18191 M:      Wenjia Zhang <[email protected]>
18192 L:      [email protected]
18193 L:      [email protected]
18194 S:      Supported
18195 F:      drivers/s390/net/*iucv*
18196 F:      include/net/iucv/
18197 F:      net/iucv/
18198
18199 S390 NETWORK DRIVERS
18200 M:      Alexandra Winter <[email protected]>
18201 M:      Wenjia Zhang <[email protected]>
18202 L:      [email protected]
18203 L:      [email protected]
18204 S:      Supported
18205 F:      drivers/s390/net/
18206
18207 S390 MM
18208 M:      Alexander Gordeev <[email protected]>
18209 M:      Gerald Schaefer <[email protected]>
18210 L:      [email protected]
18211 S:      Supported
18212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18213 F:      arch/s390/include/asm/pgtable.h
18214 F:      arch/s390/mm
18215
18216 S390 PCI SUBSYSTEM
18217 M:      Niklas Schnelle <[email protected]>
18218 M:      Gerald Schaefer <[email protected]>
18219 L:      [email protected]
18220 S:      Supported
18221 F:      arch/s390/pci/
18222 F:      drivers/pci/hotplug/s390_pci_hpc.c
18223 F:      Documentation/s390/pci.rst
18224
18225 S390 SCM DRIVER
18226 M:      Vineeth Vijayan <[email protected]>
18227 L:      [email protected]
18228 S:      Supported
18229 F:      drivers/s390/block/scm*
18230 F:      drivers/s390/cio/scm.c
18231
18232 S390 VFIO AP DRIVER
18233 M:      Tony Krowiak <[email protected]>
18234 M:      Halil Pasic <[email protected]>
18235 M:      Jason Herne <[email protected]>
18236 L:      [email protected]
18237 S:      Supported
18238 F:      Documentation/s390/vfio-ap*
18239 F:      drivers/s390/crypto/vfio_ap*
18240
18241 S390 VFIO-CCW DRIVER
18242 M:      Eric Farman <[email protected]>
18243 M:      Matthew Rosato <[email protected]>
18244 R:      Halil Pasic <[email protected]>
18245 L:      [email protected]
18246 L:      [email protected]
18247 S:      Supported
18248 F:      Documentation/s390/vfio-ccw.rst
18249 F:      drivers/s390/cio/vfio_ccw*
18250 F:      include/uapi/linux/vfio_ccw.h
18251
18252 S390 VFIO-PCI DRIVER
18253 M:      Matthew Rosato <[email protected]>
18254 M:      Eric Farman <[email protected]>
18255 L:      [email protected]
18256 L:      [email protected]
18257 S:      Supported
18258 F:      arch/s390/kvm/pci*
18259 F:      drivers/vfio/pci/vfio_pci_zdev.c
18260 F:      include/uapi/linux/vfio_zdev.h
18261
18262 S390 ZCRYPT DRIVER
18263 M:      Harald Freudenberger <[email protected]>
18264 L:      [email protected]
18265 S:      Supported
18266 F:      drivers/s390/crypto/
18267
18268 S390 ZFCP DRIVER
18269 M:      Steffen Maier <[email protected]>
18270 M:      Benjamin Block <[email protected]>
18271 L:      [email protected]
18272 S:      Supported
18273 F:      drivers/s390/scsi/zfcp_*
18274
18275 SAA6588 RDS RECEIVER DRIVER
18276 M:      Hans Verkuil <[email protected]>
18277 L:      [email protected]
18278 S:      Odd Fixes
18279 W:      https://linuxtv.org
18280 T:      git git://linuxtv.org/media_tree.git
18281 F:      drivers/media/i2c/saa6588*
18282
18283 SAA7134 VIDEO4LINUX DRIVER
18284 M:      Mauro Carvalho Chehab <[email protected]>
18285 L:      [email protected]
18286 S:      Odd fixes
18287 W:      https://linuxtv.org
18288 T:      git git://linuxtv.org/media_tree.git
18289 F:      Documentation/driver-api/media/drivers/saa7134*
18290 F:      drivers/media/pci/saa7134/
18291
18292 SAA7146 VIDEO4LINUX-2 DRIVER
18293 M:      Hans Verkuil <[email protected]>
18294 L:      [email protected]
18295 S:      Maintained
18296 T:      git git://linuxtv.org/media_tree.git
18297 F:      drivers/staging/media/deprecated/saa7146/
18298
18299 SAFESETID SECURITY MODULE
18300 M:      Micah Morton <[email protected]>
18301 S:      Supported
18302 F:      Documentation/admin-guide/LSM/SafeSetID.rst
18303 F:      security/safesetid/
18304
18305 SAMSUNG AUDIO (ASoC) DRIVERS
18306 M:      Krzysztof Kozlowski <[email protected]>
18307 M:      Sylwester Nawrocki <[email protected]>
18308 L:      [email protected] (moderated for non-subscribers)
18309 S:      Supported
18310 B:      mailto:[email protected]
18311 F:      Documentation/devicetree/bindings/sound/samsung*
18312 F:      sound/soc/samsung/
18313
18314 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18315 M:      Krzysztof Kozlowski <[email protected]>
18316 L:      [email protected]
18317 L:      [email protected]
18318 S:      Maintained
18319 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18320 F:      drivers/crypto/exynos-rng.c
18321
18322 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18323 M:      Łukasz Stelmach <[email protected]>
18324 L:      [email protected]
18325 S:      Maintained
18326 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18327 F:      drivers/char/hw_random/exynos-trng.c
18328
18329 SAMSUNG FRAMEBUFFER DRIVER
18330 M:      Jingoo Han <[email protected]>
18331 L:      [email protected]
18332 S:      Maintained
18333 F:      drivers/video/fbdev/s3c-fb.c
18334
18335 SAMSUNG INTERCONNECT DRIVERS
18336 M:      Sylwester Nawrocki <[email protected]>
18337 M:      Artur Świgoń <[email protected]>
18338 L:      [email protected]
18339 L:      [email protected]
18340 S:      Supported
18341 F:      drivers/interconnect/samsung/
18342
18343 SAMSUNG LAPTOP DRIVER
18344 M:      Corentin Chary <[email protected]>
18345 L:      [email protected]
18346 S:      Maintained
18347 F:      drivers/platform/x86/samsung-laptop.c
18348
18349 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18350 M:      Krzysztof Kozlowski <[email protected]>
18351 L:      [email protected]
18352 L:      [email protected]
18353 S:      Supported
18354 B:      mailto:[email protected]
18355 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18356 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18357 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18358 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18359 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18360 F:      drivers/clk/clk-s2mps11.c
18361 F:      drivers/mfd/sec*.c
18362 F:      drivers/regulator/s2m*.c
18363 F:      drivers/regulator/s5m*.c
18364 F:      drivers/rtc/rtc-s5m.c
18365 F:      include/linux/mfd/samsung/
18366
18367 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18368 M:      Sylwester Nawrocki <[email protected]>
18369 L:      [email protected]
18370 L:      [email protected]
18371 S:      Maintained
18372 F:      drivers/media/platform/samsung/s3c-camif/
18373 F:      include/media/drv-intf/s3c_camif.h
18374
18375 SAMSUNG S3FWRN5 NFC DRIVER
18376 M:      Krzysztof Kozlowski <[email protected]>
18377 L:      [email protected] (subscribers-only)
18378 S:      Maintained
18379 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18380 F:      drivers/nfc/s3fwrn5
18381
18382 SAMSUNG S5C73M3 CAMERA DRIVER
18383 M:      Sylwester Nawrocki <[email protected]>
18384 M:      Andrzej Hajda <[email protected]>
18385 L:      [email protected]
18386 S:      Supported
18387 F:      drivers/media/i2c/s5c73m3/*
18388
18389 SAMSUNG S5K5BAF CAMERA DRIVER
18390 M:      Sylwester Nawrocki <[email protected]>
18391 M:      Andrzej Hajda <[email protected]>
18392 L:      [email protected]
18393 S:      Supported
18394 F:      drivers/media/i2c/s5k5baf.c
18395
18396 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18397 M:      Krzysztof Kozlowski <[email protected]>
18398 M:      Vladimir Zapolskiy <[email protected]>
18399 L:      [email protected]
18400 L:      [email protected]
18401 S:      Maintained
18402 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18403 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18404 F:      drivers/crypto/s5p-sss.c
18405
18406 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18407 M:      Sylwester Nawrocki <[email protected]>
18408 L:      [email protected]
18409 S:      Supported
18410 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18411 F:      drivers/media/platform/samsung/exynos4-is/
18412
18413 SAMSUNG SOC CLOCK DRIVERS
18414 M:      Krzysztof Kozlowski <[email protected]>
18415 M:      Sylwester Nawrocki <[email protected]>
18416 M:      Tomasz Figa <[email protected]>
18417 M:      Chanwoo Choi <[email protected]>
18418 R:      Alim Akhtar <[email protected]>
18419 L:      [email protected]
18420 S:      Supported
18421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
18422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18423 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18424 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18425 F:      drivers/clk/samsung/
18426 F:      include/dt-bindings/clock/exynos*.h
18427 F:      include/dt-bindings/clock/s5p*.h
18428 F:      include/dt-bindings/clock/samsung,*.h
18429 F:      include/linux/clk/samsung.h
18430
18431 SAMSUNG SPI DRIVERS
18432 M:      Krzysztof Kozlowski <[email protected]>
18433 M:      Andi Shyti <[email protected]>
18434 L:      [email protected]
18435 L:      [email protected]
18436 S:      Maintained
18437 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18438 F:      drivers/spi/spi-s3c*
18439 F:      include/linux/platform_data/spi-s3c64xx.h
18440
18441 SAMSUNG SXGBE DRIVERS
18442 M:      Byungho An <[email protected]>
18443 L:      [email protected]
18444 S:      Supported
18445 F:      drivers/net/ethernet/samsung/sxgbe/
18446
18447 SAMSUNG THERMAL DRIVER
18448 M:      Bartlomiej Zolnierkiewicz <[email protected]>
18449 M:      Krzysztof Kozlowski <[email protected]>
18450 L:      [email protected]
18451 L:      [email protected]
18452 S:      Maintained
18453 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18454 F:      drivers/thermal/samsung/
18455
18456 SAMSUNG USB2 PHY DRIVER
18457 M:      Sylwester Nawrocki <[email protected]>
18458 L:      [email protected]
18459 S:      Supported
18460 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18461 F:      Documentation/driver-api/phy/samsung-usb2.rst
18462 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18463 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18464 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18465 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18466 F:      drivers/phy/samsung/phy-samsung-usb2.c
18467 F:      drivers/phy/samsung/phy-samsung-usb2.h
18468
18469 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18470 M:      Paul Barker <[email protected]>
18471 R:      Marc Murphy <[email protected]>
18472 S:      Supported
18473 F:      arch/arm/boot/dts/am335x-sancloud*
18474
18475 SC1200 WDT DRIVER
18476 M:      Zwane Mwaikambo <[email protected]>
18477 S:      Maintained
18478 F:      drivers/watchdog/sc1200wdt.c
18479
18480 SCHEDULER
18481 M:      Ingo Molnar <[email protected]>
18482 M:      Peter Zijlstra <[email protected]>
18483 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
18484 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
18485 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
18486 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
18487 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
18488 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
18489 R:      Daniel Bristot de Oliveira <[email protected]> (SCHED_DEADLINE)
18490 R:      Valentin Schneider <[email protected]> (TOPOLOGY)
18491 L:      [email protected]
18492 S:      Maintained
18493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18494 F:      include/linux/preempt.h
18495 F:      include/linux/sched.h
18496 F:      include/linux/wait.h
18497 F:      include/uapi/linux/sched.h
18498 F:      kernel/sched/
18499
18500 SCR24X CHIP CARD INTERFACE DRIVER
18501 M:      Lubomir Rintel <[email protected]>
18502 S:      Supported
18503 F:      drivers/char/pcmcia/scr24x_cs.c
18504
18505 SCSI RDMA PROTOCOL (SRP) INITIATOR
18506 M:      Bart Van Assche <[email protected]>
18507 L:      [email protected]
18508 S:      Supported
18509 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18510 F:      drivers/infiniband/ulp/srp/
18511 F:      include/scsi/srp.h
18512
18513 SCSI RDMA PROTOCOL (SRP) TARGET
18514 M:      Bart Van Assche <[email protected]>
18515 L:      [email protected]
18516 L:      [email protected]
18517 S:      Supported
18518 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18519 F:      drivers/infiniband/ulp/srpt/
18520
18521 SCSI SG DRIVER
18522 M:      Doug Gilbert <[email protected]>
18523 L:      [email protected]
18524 S:      Maintained
18525 W:      http://sg.danny.cz/sg
18526 F:      Documentation/scsi/scsi-generic.rst
18527 F:      drivers/scsi/sg.c
18528 F:      include/scsi/sg.h
18529
18530 SCSI SUBSYSTEM
18531 M:      "James E.J. Bottomley" <[email protected]>
18532 M:      "Martin K. Petersen" <[email protected]>
18533 L:      [email protected]
18534 S:      Maintained
18535 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18538 F:      Documentation/devicetree/bindings/scsi/
18539 F:      drivers/scsi/
18540 F:      drivers/ufs/
18541 F:      include/scsi/
18542
18543 SCSI TAPE DRIVER
18544 M:      Kai Mäkisara <[email protected]>
18545 L:      [email protected]
18546 S:      Maintained
18547 F:      Documentation/scsi/st.rst
18548 F:      drivers/scsi/st.*
18549 F:      drivers/scsi/st_*.h
18550
18551 SCSI TARGET CORE USER DRIVER
18552 M:      Bodo Stroesser <[email protected]>
18553 L:      [email protected]
18554 L:      [email protected]
18555 S:      Supported
18556 F:      Documentation/target/tcmu-design.rst
18557 F:      drivers/target/target_core_user.c
18558 F:      include/uapi/linux/target_core_user.h
18559
18560 SCSI TARGET SUBSYSTEM
18561 M:      "Martin K. Petersen" <[email protected]>
18562 L:      [email protected]
18563 L:      [email protected]
18564 S:      Supported
18565 W:      http://www.linux-iscsi.org
18566 Q:      https://patchwork.kernel.org/project/target-devel/list/
18567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18568 F:      Documentation/target/
18569 F:      drivers/target/
18570 F:      include/target/
18571
18572 SCTP PROTOCOL
18573 M:      Neil Horman <[email protected]>
18574 M:      Marcelo Ricardo Leitner <[email protected]>
18575 M:      Xin Long <[email protected]>
18576 L:      [email protected]
18577 S:      Maintained
18578 W:      http://lksctp.sourceforge.net
18579 F:      Documentation/networking/sctp.rst
18580 F:      include/linux/sctp.h
18581 F:      include/net/sctp/
18582 F:      include/uapi/linux/sctp.h
18583 F:      net/sctp/
18584
18585 SCx200 CPU SUPPORT
18586 M:      Jim Cromie <[email protected]>
18587 S:      Odd Fixes
18588 F:      Documentation/i2c/busses/scx200_acb.rst
18589 F:      arch/x86/platform/scx200/
18590 F:      drivers/i2c/busses/scx200*
18591 F:      drivers/mtd/maps/scx200_docflash.c
18592 F:      drivers/watchdog/scx200_wdt.c
18593 F:      include/linux/scx200.h
18594
18595 SCx200 GPIO DRIVER
18596 M:      Jim Cromie <[email protected]>
18597 S:      Maintained
18598 F:      drivers/char/scx200_gpio.c
18599 F:      include/linux/scx200_gpio.h
18600
18601 SCx200 HRT CLOCKSOURCE DRIVER
18602 M:      Jim Cromie <[email protected]>
18603 S:      Maintained
18604 F:      drivers/clocksource/scx200_hrt.c
18605
18606 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18607 M:      Sascha Sommer <[email protected]>
18608 L:      [email protected] (subscribers-only)
18609 S:      Maintained
18610 F:      drivers/mmc/host/sdricoh_cs.c
18611
18612 SECO BOARDS CEC DRIVER
18613 M:      Ettore Chimenti <[email protected]>
18614 S:      Maintained
18615 F:      drivers/media/cec/platform/seco/seco-cec.c
18616 F:      drivers/media/cec/platform/seco/seco-cec.h
18617
18618 SECURE COMPUTING
18619 M:      Kees Cook <[email protected]>
18620 R:      Andy Lutomirski <[email protected]>
18621 R:      Will Drewry <[email protected]>
18622 S:      Supported
18623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18624 F:      Documentation/userspace-api/seccomp_filter.rst
18625 F:      include/linux/seccomp.h
18626 F:      include/uapi/linux/seccomp.h
18627 F:      kernel/seccomp.c
18628 F:      tools/testing/selftests/kselftest_harness.h
18629 F:      tools/testing/selftests/seccomp/*
18630 K:      \bsecure_computing
18631 K:      \bTIF_SECCOMP\b
18632
18633 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18634 M:      Kamal Dasu <[email protected]>
18635 M:      Al Cooper <[email protected]>
18636 R:      Broadcom internal kernel review list <[email protected]>
18637 L:      [email protected]
18638 S:      Maintained
18639 F:      drivers/mmc/host/sdhci-brcmstb*
18640
18641 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18642 M:      Adrian Hunter <[email protected]>
18643 L:      [email protected]
18644 S:      Supported
18645 F:      Documentation/devicetree/bindings/mmc/sdhci-common.yaml
18646 F:      drivers/mmc/host/sdhci*
18647
18648 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18649 M:      Eugen Hristev <[email protected]>
18650 L:      [email protected]
18651 S:      Supported
18652 F:      drivers/mmc/host/sdhci-of-at91.c
18653
18654 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18655 M:      Ben Dooks <[email protected]>
18656 M:      Jaehoon Chung <[email protected]>
18657 L:      [email protected]
18658 S:      Maintained
18659 F:      drivers/mmc/host/sdhci-s3c*
18660
18661 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18662 M:      Viresh Kumar <[email protected]>
18663 L:      [email protected]
18664 S:      Maintained
18665 F:      drivers/mmc/host/sdhci-spear.c
18666
18667 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18668 M:      Vignesh Raghavendra <[email protected]>
18669 L:      [email protected]
18670 S:      Maintained
18671 F:      drivers/mmc/host/sdhci-omap.c
18672
18673 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18674 M:      Haibo Chen <[email protected]>
18675 L:      [email protected]
18676 L:      [email protected]
18677 S:      Maintained
18678 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18679
18680 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18681 M:      Jonathan Derrick <[email protected]>
18682 L:      [email protected]
18683 S:      Supported
18684 F:      block/opal_proto.h
18685 F:      block/sed*
18686 F:      include/linux/sed*
18687 F:      include/uapi/linux/sed*
18688
18689 SECURITY CONTACT
18690 M:      Security Officers <[email protected]>
18691 S:      Supported
18692 F:      Documentation/admin-guide/security-bugs.rst
18693
18694 SECURITY SUBSYSTEM
18695 M:      Paul Moore <[email protected]>
18696 M:      James Morris <[email protected]>
18697 M:      "Serge E. Hallyn" <[email protected]>
18698 L:      [email protected] (suggested Cc:)
18699 S:      Supported
18700 W:      http://kernsec.org/
18701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18702 F:      security/
18703 X:      security/selinux/
18704
18705 SELINUX SECURITY MODULE
18706 M:      Paul Moore <[email protected]>
18707 M:      Stephen Smalley <[email protected]>
18708 M:      Eric Paris <[email protected]>
18709 L:      [email protected]
18710 S:      Supported
18711 W:      https://selinuxproject.org
18712 W:      https://github.com/SELinuxProject
18713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18714 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18715 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
18716 F:      Documentation/admin-guide/LSM/SELinux.rst
18717 F:      include/trace/events/avc.h
18718 F:      include/uapi/linux/selinux_netlink.h
18719 F:      scripts/selinux/
18720 F:      security/selinux/
18721
18722 SENSABLE PHANTOM
18723 M:      Jiri Slaby <[email protected]>
18724 S:      Maintained
18725 F:      drivers/misc/phantom.c
18726 F:      include/uapi/linux/phantom.h
18727
18728 SENSEAIR SUNRISE 006-0-0007
18729 M:      Jacopo Mondi <[email protected]>
18730 S:      Maintained
18731 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18732 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18733 F:      drivers/iio/chemical/sunrise_co2.c
18734
18735 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18736 M:      Tomasz Duszynski <[email protected]>
18737 S:      Maintained
18738 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18739 F:      drivers/iio/chemical/scd30.h
18740 F:      drivers/iio/chemical/scd30_core.c
18741 F:      drivers/iio/chemical/scd30_i2c.c
18742 F:      drivers/iio/chemical/scd30_serial.c
18743
18744 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18745 M:      Roan van Dijk <[email protected]>
18746 S:      Maintained
18747 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18748 F:      drivers/iio/chemical/scd4x.c
18749
18750 SENSIRION SGP40 GAS SENSOR DRIVER
18751 M:      Andreas Klinger <[email protected]>
18752 S:      Maintained
18753 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18754 F:      drivers/iio/chemical/sgp40.c
18755
18756 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18757 M:      Tomasz Duszynski <[email protected]>
18758 S:      Maintained
18759 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18760 F:      drivers/iio/chemical/sps30.c
18761 F:      drivers/iio/chemical/sps30_i2c.c
18762 F:      drivers/iio/chemical/sps30_serial.c
18763
18764 SERIAL DEVICE BUS
18765 M:      Rob Herring <[email protected]>
18766 L:      [email protected]
18767 S:      Maintained
18768 F:      Documentation/devicetree/bindings/serial/serial.yaml
18769 F:      drivers/tty/serdev/
18770 F:      include/linux/serdev.h
18771
18772 SERIAL DRIVERS
18773 M:      Greg Kroah-Hartman <[email protected]>
18774 L:      [email protected]
18775 S:      Maintained
18776 F:      Documentation/devicetree/bindings/serial/
18777 F:      drivers/tty/serial/
18778
18779 SERIAL IR RECEIVER
18780 M:      Sean Young <[email protected]>
18781 L:      [email protected]
18782 S:      Maintained
18783 F:      drivers/media/rc/serial_ir.c
18784
18785 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18786 M:      Srinivas Kandagatla <[email protected]>
18787 L:      [email protected] (moderated for non-subscribers)
18788 S:      Maintained
18789 F:      Documentation/devicetree/bindings/slimbus/
18790 F:      drivers/slimbus/
18791 F:      include/linux/slimbus.h
18792
18793 SFC NETWORK DRIVER
18794 M:      Edward Cree <[email protected]>
18795 M:      Martin Habets <[email protected]>
18796 L:      [email protected]
18797 S:      Supported
18798 F:      Documentation/networking/devlink/sfc.rst
18799 F:      drivers/net/ethernet/sfc/
18800
18801 SFF/SFP/SFP+ MODULE SUPPORT
18802 M:      Russell King <[email protected]>
18803 L:      [email protected]
18804 S:      Maintained
18805 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
18806 F:      drivers/net/phy/phylink.c
18807 F:      drivers/net/phy/sfp*
18808 F:      include/linux/mdio/mdio-i2c.h
18809 F:      include/linux/phylink.h
18810 F:      include/linux/sfp.h
18811 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)
18812
18813 SGI GRU DRIVER
18814 M:      Dimitri Sivanich <[email protected]>
18815 S:      Maintained
18816 F:      drivers/misc/sgi-gru/
18817
18818 SGI XP/XPC/XPNET DRIVER
18819 M:      Robin Holt <[email protected]>
18820 M:      Steve Wahl <[email protected]>
18821 R:      Mike Travis <[email protected]>
18822 S:      Maintained
18823 F:      drivers/misc/sgi-xp/
18824
18825 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18826 M:      Karsten Graul <[email protected]>
18827 M:      Wenjia Zhang <[email protected]>
18828 M:      Jan Karcher <[email protected]>
18829 L:      [email protected]
18830 S:      Supported
18831 F:      net/smc/
18832
18833 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18834 M:      Linus Walleij <[email protected]>
18835 L:      [email protected]
18836 S:      Maintained
18837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18838 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18839 F:      drivers/iio/light/gp2ap002.c
18840
18841 SHARP RJ54N1CB0C SENSOR DRIVER
18842 M:      Jacopo Mondi <[email protected]>
18843 L:      [email protected]
18844 S:      Odd fixes
18845 T:      git git://linuxtv.org/media_tree.git
18846 F:      drivers/media/i2c/rj54n1cb0c.c
18847 F:      include/media/i2c/rj54n1cb0c.h
18848
18849 SH_VOU V4L2 OUTPUT DRIVER
18850 L:      [email protected]
18851 S:      Orphan
18852 F:      drivers/media/platform/renesas/sh_vou.c
18853 F:      include/media/drv-intf/sh_vou.h
18854
18855 SI2157 MEDIA DRIVER
18856 M:      Antti Palosaari <[email protected]>
18857 L:      [email protected]
18858 S:      Maintained
18859 W:      https://linuxtv.org
18860 W:      http://palosaari.fi/linux/
18861 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18862 T:      git git://linuxtv.org/anttip/media_tree.git
18863 F:      drivers/media/tuners/si2157*
18864
18865 SI2165 MEDIA DRIVER
18866 M:      Matthias Schwarzott <[email protected]>
18867 L:      [email protected]
18868 S:      Maintained
18869 W:      https://linuxtv.org
18870 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18871 F:      drivers/media/dvb-frontends/si2165*
18872
18873 SI2168 MEDIA DRIVER
18874 M:      Antti Palosaari <[email protected]>
18875 L:      [email protected]
18876 S:      Maintained
18877 W:      https://linuxtv.org
18878 W:      http://palosaari.fi/linux/
18879 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18880 T:      git git://linuxtv.org/anttip/media_tree.git
18881 F:      drivers/media/dvb-frontends/si2168*
18882
18883 SI470X FM RADIO RECEIVER I2C DRIVER
18884 M:      Hans Verkuil <[email protected]>
18885 L:      [email protected]
18886 S:      Odd Fixes
18887 W:      https://linuxtv.org
18888 T:      git git://linuxtv.org/media_tree.git
18889 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18890
18891 SI470X FM RADIO RECEIVER USB DRIVER
18892 M:      Hans Verkuil <[email protected]>
18893 L:      [email protected]
18894 S:      Maintained
18895 W:      https://linuxtv.org
18896 T:      git git://linuxtv.org/media_tree.git
18897 F:      drivers/media/radio/si470x/radio-si470x-common.c
18898 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18899 F:      drivers/media/radio/si470x/radio-si470x.h
18900
18901 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18902 M:      Eduardo Valentin <[email protected]>
18903 L:      [email protected]
18904 S:      Odd Fixes
18905 W:      https://linuxtv.org
18906 T:      git git://linuxtv.org/media_tree.git
18907 F:      drivers/media/radio/si4713/si4713.?
18908
18909 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18910 M:      Eduardo Valentin <[email protected]>
18911 L:      [email protected]
18912 S:      Odd Fixes
18913 W:      https://linuxtv.org
18914 T:      git git://linuxtv.org/media_tree.git
18915 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18916
18917 SI4713 FM RADIO TRANSMITTER USB DRIVER
18918 M:      Hans Verkuil <[email protected]>
18919 L:      [email protected]
18920 S:      Maintained
18921 W:      https://linuxtv.org
18922 T:      git git://linuxtv.org/media_tree.git
18923 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18924
18925 SIANO DVB DRIVER
18926 M:      Mauro Carvalho Chehab <[email protected]>
18927 L:      [email protected]
18928 S:      Odd fixes
18929 W:      https://linuxtv.org
18930 T:      git git://linuxtv.org/media_tree.git
18931 F:      drivers/media/common/siano/
18932 F:      drivers/media/mmc/siano/
18933 F:      drivers/media/usb/siano/
18934 F:      drivers/media/usb/siano/
18935
18936 SIFIVE DRIVERS
18937 M:      Palmer Dabbelt <[email protected]>
18938 M:      Paul Walmsley <[email protected]>
18939 L:      [email protected]
18940 S:      Supported
18941 N:      sifive
18942 K:      [^@]sifive
18943
18944 SIFIVE FU540 SYSTEM-ON-CHIP
18945 M:      Paul Walmsley <[email protected]>
18946 M:      Palmer Dabbelt <[email protected]>
18947 L:      [email protected]
18948 S:      Supported
18949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18950 N:      fu540
18951 K:      fu540
18952
18953 SIFIVE PDMA DRIVER
18954 M:      Green Wan <[email protected]>
18955 S:      Maintained
18956 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18957 F:      drivers/dma/sf-pdma/
18958
18959 SIFIVE SOC DRIVERS
18960 M:      Conor Dooley <[email protected]>
18961 L:      [email protected]
18962 S:      Maintained
18963 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
18964 F:      drivers/soc/sifive/
18965
18966 SILEAD TOUCHSCREEN DRIVER
18967 M:      Hans de Goede <[email protected]>
18968 L:      [email protected]
18969 L:      [email protected]
18970 S:      Maintained
18971 F:      drivers/input/touchscreen/silead.c
18972 F:      drivers/platform/x86/touchscreen_dmi.c
18973
18974 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18975 M:      Jérôme Pouiller <[email protected]>
18976 S:      Supported
18977 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18978 F:      drivers/net/wireless/silabs/wfx/
18979
18980 SILICON MOTION SM712 FRAME BUFFER DRIVER
18981 M:      Sudip Mukherjee <[email protected]>
18982 M:      Teddy Wang <[email protected]>
18983 M:      Sudip Mukherjee <[email protected]>
18984 L:      [email protected]
18985 S:      Maintained
18986 F:      Documentation/fb/sm712fb.rst
18987 F:      drivers/video/fbdev/sm712*
18988
18989 SILVACO I3C DUAL-ROLE MASTER
18990 M:      Miquel Raynal <[email protected]>
18991 M:      Conor Culhane <[email protected]>
18992 L:      [email protected] (moderated for non-subscribers)
18993 S:      Maintained
18994 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18995 F:      drivers/i3c/master/svc-i3c-master.c
18996
18997 SIMPLEFB FB DRIVER
18998 M:      Hans de Goede <[email protected]>
18999 L:      [email protected]
19000 S:      Maintained
19001 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
19002 F:      drivers/video/fbdev/simplefb.c
19003 F:      include/linux/platform_data/simplefb.h
19004
19005 SIMTEC EB110ATX (Chalice CATS)
19006 M:      Simtec Linux Team <[email protected]>
19007 S:      Supported
19008 W:      http://www.simtec.co.uk/products/EB110ATX/
19009
19010 SIOX
19011 M:      Thorsten Scherer <[email protected]>
19012 M:      Uwe Kleine-König <[email protected]>
19013 R:      Pengutronix Kernel Team <[email protected]>
19014 S:      Supported
19015 F:      drivers/gpio/gpio-siox.c
19016 F:      drivers/siox/*
19017 F:      include/trace/events/siox.h
19018
19019 SIPHASH PRF ROUTINES
19020 M:      Jason A. Donenfeld <[email protected]>
19021 S:      Maintained
19022 F:      include/linux/siphash.h
19023 F:      lib/siphash.c
19024 F:      lib/siphash_kunit.c
19025
19026 SIS 190 ETHERNET DRIVER
19027 M:      Francois Romieu <[email protected]>
19028 L:      [email protected]
19029 S:      Maintained
19030 F:      drivers/net/ethernet/sis/sis190.c
19031
19032 SIS 900/7016 FAST ETHERNET DRIVER
19033 M:      Daniele Venzano <[email protected]>
19034 L:      [email protected]
19035 S:      Maintained
19036 W:      http://www.brownhat.org/sis900.html
19037 F:      drivers/net/ethernet/sis/sis900.*
19038
19039 SIS FRAMEBUFFER DRIVER
19040 M:      Thomas Winischhofer <[email protected]>
19041 S:      Maintained
19042 W:      http://www.winischhofer.net/linuxsisvga.shtml
19043 F:      Documentation/fb/sisfb.rst
19044 F:      drivers/video/fbdev/sis/
19045 F:      include/video/sisfb.h
19046
19047 SIS I2C TOUCHSCREEN DRIVER
19048 M:      Mika Penttilä <[email protected]>
19049 L:      [email protected]
19050 S:      Maintained
19051 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
19052 F:      drivers/input/touchscreen/sis_i2c.c
19053
19054 SIS USB2VGA DRIVER
19055 M:      Thomas Winischhofer <[email protected]>
19056 S:      Maintained
19057 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
19058 F:      drivers/usb/misc/sisusbvga/
19059
19060 SL28 CPLD MFD DRIVER
19061 M:      Michael Walle <[email protected]>
19062 S:      Maintained
19063 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
19064 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
19065 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
19066 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
19067 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
19068 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
19069 F:      drivers/gpio/gpio-sl28cpld.c
19070 F:      drivers/hwmon/sl28cpld-hwmon.c
19071 F:      drivers/irqchip/irq-sl28cpld.c
19072 F:      drivers/pwm/pwm-sl28cpld.c
19073 F:      drivers/watchdog/sl28cpld_wdt.c
19074
19075 SLAB ALLOCATOR
19076 M:      Christoph Lameter <[email protected]>
19077 M:      Pekka Enberg <[email protected]>
19078 M:      David Rientjes <[email protected]>
19079 M:      Joonsoo Kim <[email protected]>
19080 M:      Andrew Morton <[email protected]>
19081 M:      Vlastimil Babka <[email protected]>
19082 R:      Roman Gushchin <[email protected]>
19083 R:      Hyeonggon Yoo <[email protected]>
19084 L:      [email protected]
19085 S:      Maintained
19086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
19087 F:      include/linux/sl?b*.h
19088 F:      mm/sl?b*
19089
19090 SLCAN CAN NETWORK DRIVER
19091 M:      Dario Binacchi <[email protected]>
19092 L:      [email protected]
19093 S:      Maintained
19094 F:      drivers/net/can/slcan/
19095
19096 SLEEPABLE READ-COPY UPDATE (SRCU)
19097 M:      Lai Jiangshan <[email protected]>
19098 M:      "Paul E. McKenney" <[email protected]>
19099 M:      Josh Triplett <[email protected]>
19100 R:      Steven Rostedt <[email protected]>
19101 R:      Mathieu Desnoyers <[email protected]>
19102 L:      [email protected]
19103 S:      Supported
19104 W:      http://www.rdrop.com/users/paulmck/RCU/
19105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19106 F:      include/linux/srcu*.h
19107 F:      kernel/rcu/srcu*.c
19108
19109 SMACK SECURITY MODULE
19110 M:      Casey Schaufler <[email protected]>
19111 L:      [email protected]
19112 S:      Maintained
19113 W:      http://schaufler-ca.com
19114 T:      git git://github.com/cschaufler/smack-next
19115 F:      Documentation/admin-guide/LSM/Smack.rst
19116 F:      security/smack/
19117
19118 SMC91x ETHERNET DRIVER
19119 M:      Nicolas Pitre <[email protected]>
19120 S:      Odd Fixes
19121 F:      drivers/net/ethernet/smsc/smc91x.*
19122
19123 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
19124 M:      Mark Rutland <[email protected]>
19125 M:      Lorenzo Pieralisi <[email protected]>
19126 M:      Sudeep Holla <[email protected]>
19127 L:      [email protected] (moderated for non-subscribers)
19128 S:      Maintained
19129 F:      drivers/firmware/smccc/
19130 F:      include/linux/arm-smccc.h
19131
19132 SMM665 HARDWARE MONITOR DRIVER
19133 M:      Guenter Roeck <[email protected]>
19134 L:      [email protected]
19135 S:      Maintained
19136 F:      Documentation/hwmon/smm665.rst
19137 F:      drivers/hwmon/smm665.c
19138
19139 SMSC EMC2103 HARDWARE MONITOR DRIVER
19140 M:      Steve Glendinning <[email protected]>
19141 L:      [email protected]
19142 S:      Maintained
19143 F:      Documentation/hwmon/emc2103.rst
19144 F:      drivers/hwmon/emc2103.c
19145
19146 SMSC SCH5627 HARDWARE MONITOR DRIVER
19147 M:      Hans de Goede <[email protected]>
19148 L:      [email protected]
19149 S:      Supported
19150 F:      Documentation/hwmon/sch5627.rst
19151 F:      drivers/hwmon/sch5627.c
19152
19153 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
19154 M:      Steve Glendinning <[email protected]>
19155 L:      [email protected]
19156 S:      Maintained
19157 F:      drivers/video/fbdev/smscufx.c
19158
19159 SMSC47B397 HARDWARE MONITOR DRIVER
19160 M:      Jean Delvare <[email protected]>
19161 L:      [email protected]
19162 S:      Maintained
19163 F:      Documentation/hwmon/smsc47b397.rst
19164 F:      drivers/hwmon/smsc47b397.c
19165
19166 SMSC911x ETHERNET DRIVER
19167 M:      Steve Glendinning <[email protected]>
19168 L:      [email protected]
19169 S:      Maintained
19170 F:      drivers/net/ethernet/smsc/smsc911x.*
19171 F:      include/linux/smsc911x.h
19172
19173 SMSC9420 PCI ETHERNET DRIVER
19174 M:      Steve Glendinning <[email protected]>
19175 L:      [email protected]
19176 S:      Maintained
19177 F:      drivers/net/ethernet/smsc/smsc9420.*
19178
19179 SOCIONEXT (SNI) AVE NETWORK DRIVER
19180 M:      Kunihiko Hayashi <[email protected]>
19181 L:      [email protected]
19182 S:      Maintained
19183 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
19184 F:      drivers/net/ethernet/socionext/sni_ave.c
19185
19186 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
19187 M:      Jassi Brar <[email protected]>
19188 M:      Ilias Apalodimas <[email protected]>
19189 L:      [email protected]
19190 S:      Maintained
19191 F:      Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
19192 F:      drivers/net/ethernet/socionext/netsec.c
19193
19194 SOCIONEXT (SNI) Synquacer SPI DRIVER
19195 M:      Masahisa Kojima <[email protected]>
19196 M:      Jassi Brar <[email protected]>
19197 L:      [email protected]
19198 S:      Maintained
19199 F:      Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
19200 F:      drivers/spi/spi-synquacer.c
19201
19202 SOCIONEXT SYNQUACER I2C DRIVER
19203 M:      Ard Biesheuvel <[email protected]>
19204 L:      [email protected]
19205 S:      Maintained
19206 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
19207 F:      drivers/i2c/busses/i2c-synquacer.c
19208
19209 SOCIONEXT UNIPHIER SOUND DRIVER
19210 L:      [email protected] (moderated for non-subscribers)
19211 S:      Orphan
19212 F:      sound/soc/uniphier/
19213
19214 SOCKET TIMESTAMPING
19215 M:      Willem de Bruijn <[email protected]>
19216 S:      Maintained
19217 F:      Documentation/networking/timestamping.rst
19218 F:      include/uapi/linux/net_tstamp.h
19219 F:      tools/testing/selftests/net/so_txtime.c
19220
19221 SOEKRIS NET48XX LED SUPPORT
19222 M:      Chris Boot <[email protected]>
19223 S:      Maintained
19224 F:      drivers/leds/leds-net48xx.c
19225
19226 SOFT-IWARP DRIVER (siw)
19227 M:      Bernard Metzler <[email protected]>
19228 L:      [email protected]
19229 S:      Supported
19230 F:      drivers/infiniband/sw/siw/
19231 F:      include/uapi/rdma/siw-abi.h
19232
19233 SOFT-ROCE DRIVER (rxe)
19234 M:      Zhu Yanjun <[email protected]>
19235 L:      [email protected]
19236 S:      Supported
19237 F:      drivers/infiniband/sw/rxe/
19238 F:      include/uapi/rdma/rdma_user_rxe.h
19239
19240 SOFTLOGIC 6x10 MPEG CODEC
19241 M:      Bluecherry Maintainers <[email protected]>
19242 M:      Anton Sviridenko <[email protected]>
19243 M:      Andrey Utkin <[email protected]>
19244 M:      Ismael Luceno <[email protected]>
19245 L:      [email protected]
19246 S:      Supported
19247 F:      drivers/media/pci/solo6x10/
19248
19249 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
19250 M:      James Morse <[email protected]>
19251 L:      [email protected] (moderated for non-subscribers)
19252 S:      Maintained
19253 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
19254 F:      drivers/firmware/arm_sdei.c
19255 F:      include/linux/arm_sdei.h
19256 F:      include/uapi/linux/arm_sdei.h
19257
19258 SOFTWARE NODES AND DEVICE PROPERTIES
19259 R:      Andy Shevchenko <[email protected]>
19260 R:      Daniel Scally <[email protected]>
19261 R:      Heikki Krogerus <[email protected]>
19262 R:      Sakari Ailus <[email protected]>
19263 L:      [email protected]
19264 S:      Maintained
19265 F:      drivers/base/property.c
19266 F:      drivers/base/swnode.c
19267 F:      include/linux/fwnode.h
19268 F:      include/linux/property.h
19269
19270 SOFTWARE RAID (Multiple Disks) SUPPORT
19271 M:      Song Liu <[email protected]>
19272 L:      [email protected]
19273 S:      Supported
19274 Q:      https://patchwork.kernel.org/project/linux-raid/list/
19275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
19276 F:      drivers/md/Kconfig
19277 F:      drivers/md/Makefile
19278 F:      drivers/md/md*
19279 F:      drivers/md/raid*
19280 F:      include/linux/raid/
19281 F:      include/uapi/linux/raid/
19282
19283 SOLIDRUN CLEARFOG SUPPORT
19284 M:      Russell King <[email protected]>
19285 S:      Maintained
19286 F:      arch/arm/boot/dts/armada-388-clearfog*
19287 F:      arch/arm/boot/dts/armada-38x-solidrun-*
19288
19289 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
19290 M:      Russell King <[email protected]>
19291 S:      Maintained
19292 F:      arch/arm/boot/dts/imx6*-cubox-i*
19293 F:      arch/arm/boot/dts/imx6*-hummingboard*
19294 F:      arch/arm/boot/dts/imx6*-sr-*
19295
19296 SONIC NETWORK DRIVER
19297 M:      Thomas Bogendoerfer <[email protected]>
19298 L:      [email protected]
19299 S:      Maintained
19300 F:      drivers/net/ethernet/natsemi/sonic.*
19301
19302 SONICS SILICON BACKPLANE DRIVER (SSB)
19303 M:      Michael Buesch <[email protected]>
19304 L:      [email protected]
19305 S:      Maintained
19306 F:      drivers/ssb/
19307 F:      include/linux/ssb/
19308
19309 SONY IMX208 SENSOR DRIVER
19310 M:      Sakari Ailus <[email protected]>
19311 L:      [email protected]
19312 S:      Maintained
19313 T:      git git://linuxtv.org/media_tree.git
19314 F:      drivers/media/i2c/imx208.c
19315
19316 SONY IMX214 SENSOR DRIVER
19317 M:      Ricardo Ribalda <[email protected]>
19318 L:      [email protected]
19319 S:      Maintained
19320 T:      git git://linuxtv.org/media_tree.git
19321 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19322 F:      drivers/media/i2c/imx214.c
19323
19324 SONY IMX219 SENSOR DRIVER
19325 M:      Dave Stevenson <[email protected]>
19326 L:      [email protected]
19327 S:      Maintained
19328 T:      git git://linuxtv.org/media_tree.git
19329 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
19330 F:      drivers/media/i2c/imx219.c
19331
19332 SONY IMX258 SENSOR DRIVER
19333 M:      Sakari Ailus <[email protected]>
19334 L:      [email protected]
19335 S:      Maintained
19336 T:      git git://linuxtv.org/media_tree.git
19337 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
19338 F:      drivers/media/i2c/imx258.c
19339
19340 SONY IMX274 SENSOR DRIVER
19341 M:      Leon Luo <[email protected]>
19342 L:      [email protected]
19343 S:      Maintained
19344 T:      git git://linuxtv.org/media_tree.git
19345 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19346 F:      drivers/media/i2c/imx274.c
19347
19348 SONY IMX290 SENSOR DRIVER
19349 M:      Manivannan Sadhasivam <[email protected]>
19350 L:      [email protected]
19351 S:      Maintained
19352 T:      git git://linuxtv.org/media_tree.git
19353 F:      Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
19354 F:      drivers/media/i2c/imx290.c
19355
19356 SONY IMX319 SENSOR DRIVER
19357 M:      Bingbu Cao <[email protected]>
19358 L:      [email protected]
19359 S:      Maintained
19360 T:      git git://linuxtv.org/media_tree.git
19361 F:      drivers/media/i2c/imx319.c
19362
19363 SONY IMX334 SENSOR DRIVER
19364 M:      Paul J. Murphy <[email protected]>
19365 M:      Daniele Alessandrelli <[email protected]>
19366 L:      [email protected]
19367 S:      Maintained
19368 T:      git git://linuxtv.org/media_tree.git
19369 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19370 F:      drivers/media/i2c/imx334.c
19371
19372 SONY IMX335 SENSOR DRIVER
19373 M:      Paul J. Murphy <[email protected]>
19374 M:      Daniele Alessandrelli <[email protected]>
19375 L:      [email protected]
19376 S:      Maintained
19377 T:      git git://linuxtv.org/media_tree.git
19378 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19379 F:      drivers/media/i2c/imx335.c
19380
19381 SONY IMX355 SENSOR DRIVER
19382 M:      Tianshu Qiu <[email protected]>
19383 L:      [email protected]
19384 S:      Maintained
19385 T:      git git://linuxtv.org/media_tree.git
19386 F:      drivers/media/i2c/imx355.c
19387
19388 SONY IMX412 SENSOR DRIVER
19389 M:      Paul J. Murphy <[email protected]>
19390 M:      Daniele Alessandrelli <[email protected]>
19391 L:      [email protected]
19392 S:      Maintained
19393 T:      git git://linuxtv.org/media_tree.git
19394 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19395 F:      drivers/media/i2c/imx412.c
19396
19397 SONY MEMORYSTICK SUBSYSTEM
19398 M:      Maxim Levitsky <[email protected]>
19399 M:      Alex Dubov <[email protected]>
19400 M:      Ulf Hansson <[email protected]>
19401 L:      [email protected]
19402 S:      Maintained
19403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19404 F:      drivers/memstick/
19405 F:      include/linux/memstick.h
19406
19407 SONY VAIO CONTROL DEVICE DRIVER
19408 M:      Mattia Dongili <[email protected]>
19409 L:      [email protected]
19410 S:      Maintained
19411 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19412 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19413 F:      drivers/char/sonypi.c
19414 F:      drivers/platform/x86/sony-laptop.c
19415 F:      include/linux/sony-laptop.h
19416
19417 SOUND
19418 M:      Jaroslav Kysela <[email protected]>
19419 M:      Takashi Iwai <[email protected]>
19420 L:      [email protected] (moderated for non-subscribers)
19421 S:      Maintained
19422 W:      http://www.alsa-project.org/
19423 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19425 F:      Documentation/sound/
19426 F:      include/sound/
19427 F:      include/uapi/sound/
19428 F:      sound/
19429 F:      tools/testing/selftests/alsa
19430
19431 SOUND - COMPRESSED AUDIO
19432 M:      Vinod Koul <[email protected]>
19433 L:      [email protected] (moderated for non-subscribers)
19434 S:      Supported
19435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19436 F:      Documentation/sound/designs/compress-offload.rst
19437 F:      include/sound/compress_driver.h
19438 F:      include/uapi/sound/compress_*
19439 F:      sound/core/compress_offload.c
19440 F:      sound/soc/soc-compress.c
19441
19442 SOUND - DMAENGINE HELPERS
19443 M:      Lars-Peter Clausen <[email protected]>
19444 S:      Supported
19445 F:      include/sound/dmaengine_pcm.h
19446 F:      sound/core/pcm_dmaengine.c
19447 F:      sound/soc/soc-generic-dmaengine-pcm.c
19448
19449 SOUND - ALSA SELFTESTS
19450 M:      Mark Brown <[email protected]>
19451 L:      [email protected] (moderated for non-subscribers)
19452 L:      [email protected]
19453 S:      Supported
19454 F:      tools/testing/selftests/alsa
19455
19456 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19457 M:      Liam Girdwood <[email protected]>
19458 M:      Mark Brown <[email protected]>
19459 L:      [email protected] (moderated for non-subscribers)
19460 S:      Supported
19461 W:      http://alsa-project.org/main/index.php/ASoC
19462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19463 F:      Documentation/devicetree/bindings/sound/
19464 F:      Documentation/sound/soc/
19465 F:      include/dt-bindings/sound/
19466 F:      include/sound/soc*
19467 F:      sound/soc/
19468
19469 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19470 M:      Pierre-Louis Bossart <[email protected]>
19471 M:      Liam Girdwood <[email protected]>
19472 M:      Peter Ujfalusi <[email protected]>
19473 M:      Bard Liao <[email protected]>
19474 M:      Ranjani Sridharan <[email protected]>
19475 R:      Kai Vehmanen <[email protected]>
19476 M:      Daniel Baluta <[email protected]>
19477 L:      [email protected] (moderated for non-subscribers)
19478 S:      Supported
19479 W:      https://github.com/thesofproject/linux/
19480 F:      sound/soc/sof/
19481
19482 SOUNDWIRE SUBSYSTEM
19483 M:      Vinod Koul <[email protected]>
19484 M:      Bard Liao <[email protected]>
19485 R:      Pierre-Louis Bossart <[email protected]>
19486 R:      Sanyog Kale <[email protected]>
19487 L:      [email protected] (moderated for non-subscribers)
19488 S:      Supported
19489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19490 F:      Documentation/driver-api/soundwire/
19491 F:      drivers/soundwire/
19492 F:      include/linux/soundwire/
19493
19494 SP2 MEDIA DRIVER
19495 M:      Olli Salonen <[email protected]>
19496 L:      [email protected]
19497 S:      Maintained
19498 W:      https://linuxtv.org
19499 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19500 F:      drivers/media/dvb-frontends/sp2*
19501
19502 SPANISH DOCUMENTATION
19503 M:      Carlos Bilbao <[email protected]>
19504 S:      Maintained
19505 F:      Documentation/translations/sp_SP/
19506
19507 SPARC + UltraSPARC (sparc/sparc64)
19508 M:      "David S. Miller" <[email protected]>
19509 L:      [email protected]
19510 S:      Maintained
19511 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19514 F:      arch/sparc/
19515 F:      drivers/sbus/
19516
19517 SPARC SERIAL DRIVERS
19518 M:      "David S. Miller" <[email protected]>
19519 L:      [email protected]
19520 S:      Maintained
19521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19523 F:      drivers/tty/serial/suncore.c
19524 F:      drivers/tty/serial/sunhv.c
19525 F:      drivers/tty/serial/sunsab.c
19526 F:      drivers/tty/serial/sunsab.h
19527 F:      drivers/tty/serial/sunsu.c
19528 F:      drivers/tty/serial/sunzilog.c
19529 F:      drivers/tty/serial/sunzilog.h
19530 F:      drivers/tty/vcc.c
19531 F:      include/linux/sunserialcore.h
19532
19533 SPARSE CHECKER
19534 M:      "Luc Van Oostenryck" <[email protected]>
19535 L:      [email protected]
19536 S:      Maintained
19537 W:      https://sparse.docs.kernel.org/
19538 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19539 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19540 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19541 F:      include/linux/compiler.h
19542
19543 SPEAKUP CONSOLE SPEECH DRIVER
19544 M:      William Hubbs <[email protected]>
19545 M:      Chris Brannon <[email protected]>
19546 M:      Kirk Reiser <[email protected]>
19547 M:      Samuel Thibault <[email protected]>
19548 L:      [email protected]
19549 S:      Odd Fixes
19550 W:      http://www.linux-speakup.org/
19551 W:      https://github.com/linux-speakup/speakup
19552 B:      https://github.com/linux-speakup/speakup/issues
19553 F:      drivers/accessibility/speakup/
19554
19555 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19556 M:      Viresh Kumar <[email protected]>
19557 M:      Shiraz Hashim <[email protected]>
19558 M:      [email protected]
19559 L:      [email protected] (moderated for non-subscribers)
19560 S:      Maintained
19561 W:      http://www.st.com/spear
19562 F:      arch/arm/boot/dts/spear*
19563 F:      arch/arm/mach-spear/
19564 F:      drivers/clk/spear/
19565 F:      drivers/pinctrl/spear/
19566
19567 SPI NOR SUBSYSTEM
19568 M:      Tudor Ambarus <[email protected]>
19569 M:      Pratyush Yadav <[email protected]>
19570 R:      Michael Walle <[email protected]>
19571 L:      [email protected]
19572 S:      Maintained
19573 W:      http://www.linux-mtd.infradead.org/
19574 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19575 C:      irc://irc.oftc.net/mtd
19576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19577 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19578 F:      drivers/mtd/spi-nor/
19579 F:      include/linux/mtd/spi-nor.h
19580
19581 SPI SUBSYSTEM
19582 M:      Mark Brown <[email protected]>
19583 L:      [email protected]
19584 S:      Maintained
19585 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19587 F:      Documentation/devicetree/bindings/spi/
19588 F:      Documentation/spi/
19589 F:      drivers/spi/
19590 F:      include/linux/spi/
19591 F:      include/uapi/linux/spi/
19592 F:      tools/spi/
19593
19594 SPIDERNET NETWORK DRIVER for CELL
19595 M:      Ishizaki Kou <[email protected]>
19596 M:      Geoff Levand <[email protected]>
19597 L:      [email protected]
19598 L:      [email protected]
19599 S:      Maintained
19600 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19601 F:      drivers/net/ethernet/toshiba/spider_net*
19602
19603 SPMI SUBSYSTEM
19604 M:      Stephen Boyd <[email protected]>
19605 L:      [email protected]
19606 S:      Maintained
19607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19608 F:      Documentation/devicetree/bindings/spmi/
19609 F:      drivers/spmi/
19610 F:      include/dt-bindings/spmi/spmi.h
19611 F:      include/linux/spmi.h
19612 F:      include/trace/events/spmi.h
19613
19614 SPU FILE SYSTEM
19615 M:      Jeremy Kerr <[email protected]>
19616 L:      [email protected]
19617 S:      Supported
19618 W:      http://www.ibm.com/developerworks/power/cell/
19619 F:      Documentation/filesystems/spufs/spufs.rst
19620 F:      arch/powerpc/platforms/cell/spufs/
19621
19622 SQUASHFS FILE SYSTEM
19623 M:      Phillip Lougher <[email protected]>
19624 L:      [email protected] (subscribers-only)
19625 S:      Maintained
19626 W:      http://squashfs.org.uk
19627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19628 F:      Documentation/filesystems/squashfs.rst
19629 F:      fs/squashfs/
19630
19631 SRM (Alpha) environment access
19632 M:      Jan-Benedict Glaw <[email protected]>
19633 S:      Maintained
19634 F:      arch/alpha/kernel/srm_env.c
19635
19636 ST LSM6DSx IMU IIO DRIVER
19637 M:      Lorenzo Bianconi <[email protected]>
19638 L:      [email protected]
19639 S:      Maintained
19640 W:      http://www.st.com/
19641 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19642 F:      drivers/iio/imu/st_lsm6dsx/
19643
19644 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19645 M:      Benjamin Mugnier <[email protected]>
19646 M:      Sylvain Petinot <[email protected]>
19647 L:      [email protected]
19648 S:      Maintained
19649 T:      git git://linuxtv.org/media_tree.git
19650 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
19651 F:      drivers/media/i2c/st-mipid02.c
19652
19653 ST STM32 I2C/SMBUS DRIVER
19654 M:      Pierre-Yves MORDRET <[email protected]>
19655 M:      Alain Volmat <[email protected]>
19656 L:      [email protected]
19657 S:      Maintained
19658 F:      drivers/i2c/busses/i2c-stm32*
19659
19660 ST STM32 SPI DRIVER
19661 M:      Alain Volmat <[email protected]>
19662 L:      [email protected]
19663 S:      Maintained
19664 F:      drivers/spi/spi-stm32.c
19665
19666 ST STPDDC60 DRIVER
19667 M:      Daniel Nilsson <[email protected]>
19668 L:      [email protected]
19669 S:      Maintained
19670 F:      Documentation/hwmon/stpddc60.rst
19671 F:      drivers/hwmon/pmbus/stpddc60.c
19672
19673 ST VGXY61 DRIVER
19674 M:      Benjamin Mugnier <[email protected]>
19675 M:      Sylvain Petinot <[email protected]>
19676 L:      [email protected]
19677 S:      Maintained
19678 T:      git git://linuxtv.org/media_tree.git
19679 F:      Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
19680 F:      Documentation/userspace-api/media/drivers/st-vgxy61.rst
19681 F:      drivers/media/i2c/st-vgxy61.c
19682
19683 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19684 M:      Song Qiang <[email protected]>
19685 L:      [email protected]
19686 S:      Maintained
19687 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19688 F:      drivers/iio/proximity/vl53l0x-i2c.c
19689
19690 STABLE BRANCH
19691 M:      Greg Kroah-Hartman <[email protected]>
19692 M:      Sasha Levin <[email protected]>
19693 L:      [email protected]
19694 S:      Supported
19695 F:      Documentation/process/stable-kernel-rules.rst
19696
19697 STAGING - ATOMISP DRIVER
19698 M:      Hans de Goede <[email protected]>
19699 M:      Mauro Carvalho Chehab <[email protected]>
19700 R:      Sakari Ailus <[email protected]>
19701 L:      [email protected]
19702 S:      Maintained
19703 F:      drivers/staging/media/atomisp/
19704
19705 STAGING - FIELDBUS SUBSYSTEM
19706 M:      Sven Van Asbroeck <[email protected]>
19707 S:      Maintained
19708 F:      drivers/staging/fieldbus/*
19709 F:      drivers/staging/fieldbus/Documentation/
19710
19711 STAGING - HMS ANYBUS-S BUS
19712 M:      Sven Van Asbroeck <[email protected]>
19713 S:      Maintained
19714 F:      drivers/staging/fieldbus/anybuss/
19715
19716 STAGING - INDUSTRIAL IO
19717 M:      Jonathan Cameron <[email protected]>
19718 L:      [email protected]
19719 S:      Odd Fixes
19720 F:      Documentation/devicetree/bindings/staging/iio/
19721 F:      drivers/staging/iio/
19722
19723 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19724 M:      Marc Dietrich <[email protected]>
19725 L:      [email protected] (moderated for non-subscribers)
19726 L:      [email protected]
19727 S:      Maintained
19728 F:      drivers/staging/nvec/
19729
19730 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19731 M:      Jens Frederich <[email protected]>
19732 M:      Jon Nettleton <[email protected]>
19733 S:      Maintained
19734 W:      http://wiki.laptop.org/go/DCON
19735 F:      drivers/staging/olpc_dcon/
19736
19737 STAGING - REALTEK RTL8188EU DRIVERS
19738 M:      Larry Finger <[email protected]>
19739 M:      Phillip Potter <[email protected]>
19740 R:      Pavel Skripkin <[email protected]>
19741 S:      Supported
19742 F:      drivers/staging/r8188eu/
19743
19744 STAGING - REALTEK RTL8712U DRIVERS
19745 M:      Larry Finger <[email protected]>
19746 M:      Florian Schilhabel <[email protected]>.
19747 S:      Odd Fixes
19748 F:      drivers/staging/rtl8712/
19749
19750 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19751 M:      Michael Hennerich <[email protected]>
19752 L:      [email protected]
19753 S:      Supported
19754 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19755 F:      drivers/staging/fbtft/fb_seps525.c
19756
19757 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19758 M:      Sudip Mukherjee <[email protected]>
19759 M:      Teddy Wang <[email protected]>
19760 M:      Sudip Mukherjee <[email protected]>
19761 L:      [email protected]
19762 S:      Maintained
19763 F:      drivers/staging/sm750fb/
19764
19765 STAGING - VIA VT665X DRIVERS
19766 M:      Forest Bond <[email protected]>
19767 S:      Odd Fixes
19768 F:      drivers/staging/vt665?/
19769
19770 STAGING SUBSYSTEM
19771 M:      Greg Kroah-Hartman <[email protected]>
19772 L:      [email protected]
19773 S:      Supported
19774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19775 F:      drivers/staging/
19776
19777 STARFIRE/DURALAN NETWORK DRIVER
19778 M:      Ion Badulescu <[email protected]>
19779 S:      Odd Fixes
19780 F:      drivers/net/ethernet/adaptec/starfire*
19781
19782 STARFIVE DEVICETREES
19783 M:      Emil Renner Berthing <[email protected]>
19784 S:      Maintained
19785 F:      arch/riscv/boot/dts/starfive/
19786
19787 STARFIVE JH7100 CLOCK DRIVERS
19788 M:      Emil Renner Berthing <[email protected]>
19789 S:      Maintained
19790 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19791 F:      drivers/clk/starfive/clk-starfive-jh7100*
19792 F:      include/dt-bindings/clock/starfive-jh7100*.h
19793
19794 STARFIVE JH7100 PINCTRL DRIVER
19795 M:      Emil Renner Berthing <[email protected]>
19796 L:      [email protected]
19797 S:      Maintained
19798 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
19799 F:      drivers/pinctrl/starfive/
19800 F:      include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
19801
19802 STARFIVE JH7100 RESET CONTROLLER DRIVER
19803 M:      Emil Renner Berthing <[email protected]>
19804 S:      Maintained
19805 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19806 F:      drivers/reset/reset-starfive-jh7100.c
19807 F:      include/dt-bindings/reset/starfive-jh7100.h
19808
19809 STARFIVE TRNG DRIVER
19810 M:      Jia Jie Ho <[email protected]>
19811 S:      Supported
19812 F:      Documentation/devicetree/bindings/rng/starfive*
19813 F:      drivers/char/hw_random/jh7110-trng.c
19814
19815 STATIC BRANCH/CALL
19816 M:      Peter Zijlstra <[email protected]>
19817 M:      Josh Poimboeuf <[email protected]>
19818 M:      Jason Baron <[email protected]>
19819 R:      Steven Rostedt <[email protected]>
19820 R:      Ard Biesheuvel <[email protected]>
19821 S:      Supported
19822 F:      arch/*/include/asm/jump_label*.h
19823 F:      arch/*/include/asm/static_call*.h
19824 F:      arch/*/kernel/jump_label.c
19825 F:      arch/*/kernel/static_call.c
19826 F:      include/linux/jump_label*.h
19827 F:      include/linux/static_call*.h
19828 F:      kernel/jump_label.c
19829 F:      kernel/static_call.c
19830
19831 STI AUDIO (ASoC) DRIVERS
19832 M:      Arnaud Pouliquen <[email protected]>
19833 L:      [email protected] (moderated for non-subscribers)
19834 S:      Maintained
19835 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19836 F:      sound/soc/sti/
19837
19838 STI CEC DRIVER
19839 M:      Alain Volmat <[email protected]>
19840 S:      Maintained
19841 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19842 F:      drivers/media/cec/platform/sti/
19843
19844 STK1160 USB VIDEO CAPTURE DRIVER
19845 M:      Ezequiel Garcia <[email protected]>
19846 L:      [email protected]
19847 S:      Maintained
19848 T:      git git://linuxtv.org/media_tree.git
19849 F:      drivers/media/usb/stk1160/
19850
19851 STM32 AUDIO (ASoC) DRIVERS
19852 M:      Olivier Moysan <[email protected]>
19853 M:      Arnaud Pouliquen <[email protected]>
19854 L:      [email protected] (moderated for non-subscribers)
19855 S:      Maintained
19856 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19857 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19858 F:      sound/soc/stm/
19859
19860 STM32 TIMER/LPTIMER DRIVERS
19861 M:      Fabrice Gasnier <[email protected]>
19862 S:      Maintained
19863 F:      Documentation/ABI/testing/*timer-stm32
19864 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19865 F:      drivers/*/stm32-*timer*
19866 F:      drivers/pwm/pwm-stm32*
19867 F:      include/linux/*/stm32-*tim*
19868
19869 STMMAC ETHERNET DRIVER
19870 M:      Giuseppe Cavallaro <[email protected]>
19871 M:      Alexandre Torgue <[email protected]>
19872 M:      Jose Abreu <[email protected]>
19873 L:      [email protected]
19874 S:      Supported
19875 W:      http://www.stlinux.com
19876 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19877 F:      drivers/net/ethernet/stmicro/stmmac/
19878
19879 SUN3/3X
19880 M:      Sam Creasey <[email protected]>
19881 S:      Maintained
19882 W:      http://sammy.net/sun3/
19883 F:      arch/m68k/include/asm/sun3*
19884 F:      arch/m68k/kernel/*sun3*
19885 F:      arch/m68k/sun3*/
19886 F:      drivers/net/ethernet/i825xx/sun3*
19887
19888 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19889 M:      Hans de Goede <[email protected]>
19890 L:      [email protected]
19891 S:      Maintained
19892 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19893 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19894
19895 SUNDANCE NETWORK DRIVER
19896 M:      Denis Kirjanov <[email protected]>
19897 L:      [email protected]
19898 S:      Maintained
19899 F:      drivers/net/ethernet/dlink/sundance.c
19900
19901 SUN HAPPY MEAL ETHERNET DRIVER
19902 M:      Sean Anderson <[email protected]>
19903 S:      Maintained
19904 F:      drivers/net/ethernet/sun/sunhme.*
19905
19906 SUNPLUS ETHERNET DRIVER
19907 M:      Wells Lu <[email protected]>
19908 L:      [email protected]
19909 S:      Maintained
19910 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19911 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19912 F:      drivers/net/ethernet/sunplus/
19913
19914 SUNPLUS MMC DRIVER
19915 M:      Tony Huang <[email protected]>
19916 M:      Li-hao Kuo <[email protected]>
19917 S:      Maintained
19918 F:      Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
19919 F:      drivers/mmc/host/sunplus-mmc.c
19920
19921 SUNPLUS OCOTP DRIVER
19922 M:      Vincent Shih <[email protected]>
19923 S:      Maintained
19924 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19925 F:      drivers/nvmem/sunplus-ocotp.c
19926
19927 SUNPLUS USB2 PHY DRIVER
19928 M:      Vincent Shih <[email protected]>
19929 L:      [email protected]
19930 S:      Maintained
19931 F:      Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
19932 F:      drivers/phy/sunplus/Kconfig
19933 F:      drivers/phy/sunplus/Makefile
19934 F:      drivers/phy/sunplus/phy-sunplus-usb2.c
19935
19936 SUNPLUS PWM DRIVER
19937 M:      Hammer Hsieh <[email protected]>
19938 S:      Maintained
19939 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19940 F:      drivers/pwm/pwm-sunplus.c
19941
19942 SUNPLUS RTC DRIVER
19943 M:      Vincent Shih <[email protected]>
19944 L:      [email protected]
19945 S:      Maintained
19946 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19947 F:      drivers/rtc/rtc-sunplus.c
19948
19949 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19950 M:      Li-hao Kuo <[email protected]>
19951 L:      [email protected]
19952 S:      Maintained
19953 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19954 F:      drivers/spi/spi-sunplus-sp7021.c
19955
19956 SUNPLUS UART DRIVER
19957 M:      Hammer Hsieh <[email protected]>
19958 S:      Maintained
19959 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19960 F:      drivers/tty/serial/sunplus-uart.c
19961
19962 SUNPLUS WATCHDOG DRIVER
19963 M:      Xiantao Hu <[email protected]>
19964 L:      [email protected]
19965 S:      Maintained
19966 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19967 F:      drivers/watchdog/sunplus_wdt.c
19968
19969 SUPERH
19970 M:      Yoshinori Sato <[email protected]>
19971 M:      Rich Felker <[email protected]>
19972 M:      John Paul Adrian Glaubitz <[email protected]>
19973 L:      [email protected]
19974 S:      Maintained
19975 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19976 F:      Documentation/sh/
19977 F:      arch/sh/
19978 F:      drivers/sh/
19979
19980 SUSPEND TO RAM
19981 M:      "Rafael J. Wysocki" <[email protected]>
19982 M:      Len Brown <[email protected]>
19983 M:      Pavel Machek <[email protected]>
19984 L:      [email protected]
19985 S:      Supported
19986 B:      https://bugzilla.kernel.org
19987 F:      Documentation/power/
19988 F:      arch/x86/kernel/acpi/sleep*
19989 F:      arch/x86/kernel/acpi/wakeup*
19990 F:      drivers/base/power/
19991 F:      include/linux/freezer.h
19992 F:      include/linux/pm.h
19993 F:      include/linux/suspend.h
19994 F:      kernel/power/
19995
19996 SVGA HANDLING
19997 M:      Martin Mares <[email protected]>
19998 L:      [email protected]
19999 S:      Maintained
20000 F:      Documentation/admin-guide/svga.rst
20001 F:      arch/x86/boot/video*
20002
20003 SWITCHDEV
20004 M:      Jiri Pirko <[email protected]>
20005 M:      Ivan Vecera <[email protected]>
20006 L:      [email protected]
20007 S:      Supported
20008 F:      include/net/switchdev.h
20009 F:      net/switchdev/
20010
20011 SY8106A REGULATOR DRIVER
20012 M:      Icenowy Zheng <[email protected]>
20013 S:      Maintained
20014 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
20015 F:      drivers/regulator/sy8106a-regulator.c
20016
20017 SYNC FILE FRAMEWORK
20018 M:      Sumit Semwal <[email protected]>
20019 R:      Gustavo Padovan <[email protected]>
20020 L:      [email protected]
20021 L:      [email protected]
20022 S:      Maintained
20023 T:      git git://anongit.freedesktop.org/drm/drm-misc
20024 F:      Documentation/driver-api/sync_file.rst
20025 F:      drivers/dma-buf/dma-fence*
20026 F:      drivers/dma-buf/sw_sync.c
20027 F:      drivers/dma-buf/sync_*
20028 F:      include/linux/sync_file.h
20029 F:      include/uapi/linux/sync_file.h
20030
20031 SYNOPSYS ARC ARCHITECTURE
20032 M:      Vineet Gupta <[email protected]>
20033 L:      [email protected]
20034 S:      Supported
20035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
20036 F:      Documentation/arc/
20037 F:      Documentation/devicetree/bindings/arc/*
20038 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
20039 F:      arch/arc/
20040 F:      drivers/clocksource/arc_timer.c
20041 F:      drivers/tty/serial/arc_uart.c
20042
20043 SYNOPSYS ARC HSDK SDP pll clock driver
20044 M:      Eugeniy Paltsev <[email protected]>
20045 S:      Supported
20046 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
20047 F:      drivers/clk/clk-hsdk-pll.c
20048
20049 SYNOPSYS ARC SDP clock driver
20050 M:      Eugeniy Paltsev <[email protected]>
20051 S:      Supported
20052 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
20053 F:      drivers/clk/axs10x/*
20054
20055 SYNOPSYS ARC SDP platform support
20056 M:      Alexey Brodkin <[email protected]>
20057 S:      Supported
20058 F:      Documentation/devicetree/bindings/arc/axs10*
20059 F:      arch/arc/boot/dts/ax*
20060 F:      arch/arc/plat-axs10x
20061
20062 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
20063 M:      Eugeniy Paltsev <[email protected]>
20064 S:      Supported
20065 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
20066 F:      drivers/reset/reset-axs10x.c
20067
20068 SYNOPSYS CREG GPIO DRIVER
20069 M:      Eugeniy Paltsev <[email protected]>
20070 S:      Maintained
20071 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
20072 F:      drivers/gpio/gpio-creg-snps.c
20073
20074 SYNOPSYS DESIGNWARE 8250 UART DRIVER
20075 M:      Ilpo Järvinen <[email protected]>
20076 R:      Andy Shevchenko <[email protected]>
20077 S:      Supported
20078 F:      drivers/tty/serial/8250/8250_dw.c
20079 F:      drivers/tty/serial/8250/8250_dwlib.*
20080 F:      drivers/tty/serial/8250/8250_lpss.c
20081
20082 SYNOPSYS DESIGNWARE APB GPIO DRIVER
20083 M:      Hoan Tran <[email protected]>
20084 M:      Serge Semin <[email protected]>
20085 L:      [email protected]
20086 S:      Maintained
20087 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
20088 F:      drivers/gpio/gpio-dwapb.c
20089
20090 SYNOPSYS DESIGNWARE APB SSI DRIVER
20091 M:      Serge Semin <[email protected]>
20092 L:      [email protected]
20093 S:      Supported
20094 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
20095 F:      drivers/spi/spi-dw*
20096
20097 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
20098 M:      Eugeniy Paltsev <[email protected]>
20099 S:      Maintained
20100 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
20101 F:      drivers/dma/dw-axi-dmac/
20102
20103 SYNOPSYS DESIGNWARE DMAC DRIVER
20104 M:      Viresh Kumar <[email protected]>
20105 R:      Andy Shevchenko <[email protected]>
20106 S:      Maintained
20107 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
20108 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
20109 F:      drivers/dma/dw/
20110 F:      include/dt-bindings/dma/dw-dmac.h
20111 F:      include/linux/dma/dw.h
20112 F:      include/linux/platform_data/dma-dw.h
20113
20114 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
20115 M:      Jose Abreu <[email protected]>
20116 L:      [email protected]
20117 S:      Supported
20118 F:      drivers/net/ethernet/synopsys/
20119
20120 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
20121 M:      Jose Abreu <[email protected]>
20122 L:      [email protected]
20123 S:      Supported
20124 F:      drivers/net/pcs/pcs-xpcs.c
20125 F:      drivers/net/pcs/pcs-xpcs.h
20126 F:      include/linux/pcs/pcs-xpcs.h
20127
20128 SYNOPSYS DESIGNWARE I2C DRIVER
20129 M:      Jarkko Nikula <[email protected]>
20130 R:      Andy Shevchenko <[email protected]>
20131 R:      Mika Westerberg <[email protected]>
20132 R:      Jan Dabros <[email protected]>
20133 L:      [email protected]
20134 S:      Supported
20135 F:      drivers/i2c/busses/i2c-designware-*
20136
20137 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
20138 M:      Jaehoon Chung <[email protected]>
20139 L:      [email protected]
20140 S:      Maintained
20141 F:      drivers/mmc/host/dw_mmc*
20142
20143 SYNOPSYS HSDK RESET CONTROLLER DRIVER
20144 M:      Eugeniy Paltsev <[email protected]>
20145 S:      Supported
20146 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
20147 F:      drivers/reset/reset-hsdk.c
20148 F:      include/dt-bindings/reset/snps,hsdk-reset.h
20149
20150 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
20151 M:      Prabu Thangamuthu <[email protected]>
20152 M:      Manjunath M B <[email protected]>
20153 L:      [email protected]
20154 S:      Maintained
20155 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
20156
20157 SYSTEM CONFIGURATION (SYSCON)
20158 M:      Lee Jones <[email protected]>
20159 M:      Arnd Bergmann <[email protected]>
20160 S:      Supported
20161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
20162 F:      drivers/mfd/syscon.c
20163
20164 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
20165 M:      Sudeep Holla <[email protected]>
20166 R:      Cristian Marussi <[email protected]>
20167 L:      [email protected] (moderated for non-subscribers)
20168 S:      Maintained
20169 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
20170 F:      drivers/clk/clk-sc[mp]i.c
20171 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
20172 F:      drivers/firmware/arm_scmi/
20173 F:      drivers/firmware/arm_scpi.c
20174 F:      drivers/powercap/arm_scmi_powercap.c
20175 F:      drivers/regulator/scmi-regulator.c
20176 F:      drivers/reset/reset-scmi.c
20177 F:      include/linux/sc[mp]i_protocol.h
20178 F:      include/trace/events/scmi.h
20179 F:      include/uapi/linux/virtio_scmi.h
20180
20181 SYSTEM RESET/SHUTDOWN DRIVERS
20182 M:      Sebastian Reichel <[email protected]>
20183 L:      [email protected]
20184 S:      Maintained
20185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
20186 F:      Documentation/devicetree/bindings/power/reset/
20187 F:      drivers/power/reset/
20188
20189 SYSTEM TRACE MODULE CLASS
20190 M:      Alexander Shishkin <[email protected]>
20191 S:      Maintained
20192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
20193 F:      Documentation/trace/stm.rst
20194 F:      drivers/hwtracing/stm/
20195 F:      include/linux/stm.h
20196 F:      include/uapi/linux/stm.h
20197
20198 SYSTEM76 ACPI DRIVER
20199 M:      Jeremy Soller <[email protected]>
20200 M:      System76 Product Development <[email protected]>
20201 L:      [email protected]
20202 S:      Maintained
20203 F:      drivers/platform/x86/system76_acpi.c
20204
20205 SYSV FILESYSTEM
20206 S:      Orphan
20207 F:      Documentation/filesystems/sysv-fs.rst
20208 F:      fs/sysv/
20209 F:      include/linux/sysv_fs.h
20210
20211 TASKSTATS STATISTICS INTERFACE
20212 M:      Balbir Singh <[email protected]>
20213 S:      Maintained
20214 F:      Documentation/accounting/taskstats*
20215 F:      include/linux/taskstats*
20216 F:      kernel/taskstats.c
20217
20218 TC subsystem
20219 M:      Jamal Hadi Salim <[email protected]>
20220 M:      Cong Wang <[email protected]>
20221 M:      Jiri Pirko <[email protected]>
20222 L:      [email protected]
20223 S:      Maintained
20224 F:      include/net/pkt_cls.h
20225 F:      include/net/pkt_sched.h
20226 F:      include/net/tc_act/
20227 F:      include/uapi/linux/pkt_cls.h
20228 F:      include/uapi/linux/pkt_sched.h
20229 F:      include/uapi/linux/tc_act/
20230 F:      include/uapi/linux/tc_ematch/
20231 F:      net/sched/
20232 F:      tools/testing/selftests/tc-testing
20233
20234 TC90522 MEDIA DRIVER
20235 M:      Akihiro Tsukada <[email protected]>
20236 L:      [email protected]
20237 S:      Odd Fixes
20238 F:      drivers/media/dvb-frontends/tc90522*
20239
20240 TCP LOW PRIORITY MODULE
20241 M:      "Wong Hoi Sing, Edison" <[email protected]>
20242 M:      "Hung Hing Lun, Mike" <[email protected]>
20243 S:      Maintained
20244 W:      http://tcp-lp-mod.sourceforge.net/
20245 F:      net/ipv4/tcp_lp.c
20246
20247 TDA10071 MEDIA DRIVER
20248 M:      Antti Palosaari <[email protected]>
20249 L:      [email protected]
20250 S:      Maintained
20251 W:      https://linuxtv.org
20252 W:      http://palosaari.fi/linux/
20253 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20254 T:      git git://linuxtv.org/anttip/media_tree.git
20255 F:      drivers/media/dvb-frontends/tda10071*
20256
20257 TDA18212 MEDIA DRIVER
20258 M:      Antti Palosaari <[email protected]>
20259 L:      [email protected]
20260 S:      Maintained
20261 W:      https://linuxtv.org
20262 W:      http://palosaari.fi/linux/
20263 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20264 T:      git git://linuxtv.org/anttip/media_tree.git
20265 F:      drivers/media/tuners/tda18212*
20266
20267 TDA18218 MEDIA DRIVER
20268 M:      Antti Palosaari <[email protected]>
20269 L:      [email protected]
20270 S:      Maintained
20271 W:      https://linuxtv.org
20272 W:      http://palosaari.fi/linux/
20273 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20274 T:      git git://linuxtv.org/anttip/media_tree.git
20275 F:      drivers/media/tuners/tda18218*
20276
20277 TDA18250 MEDIA DRIVER
20278 M:      Olli Salonen <[email protected]>
20279 L:      [email protected]
20280 S:      Maintained
20281 W:      https://linuxtv.org
20282 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20283 T:      git git://linuxtv.org/media_tree.git
20284 F:      drivers/media/tuners/tda18250*
20285
20286 TDA18271 MEDIA DRIVER
20287 M:      Michael Krufky <[email protected]>
20288 L:      [email protected]
20289 S:      Maintained
20290 W:      https://linuxtv.org
20291 W:      http://github.com/mkrufky
20292 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20293 T:      git git://linuxtv.org/mkrufky/tuners.git
20294 F:      drivers/media/tuners/tda18271*
20295
20296 TDA1997x MEDIA DRIVER
20297 M:      Tim Harvey <[email protected]>
20298 L:      [email protected]
20299 S:      Maintained
20300 W:      https://linuxtv.org
20301 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20302 F:      drivers/media/i2c/tda1997x.*
20303
20304 TDA827x MEDIA DRIVER
20305 M:      Michael Krufky <[email protected]>
20306 L:      [email protected]
20307 S:      Maintained
20308 W:      https://linuxtv.org
20309 W:      http://github.com/mkrufky
20310 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20311 T:      git git://linuxtv.org/mkrufky/tuners.git
20312 F:      drivers/media/tuners/tda8290.*
20313
20314 TDA8290 MEDIA DRIVER
20315 M:      Michael Krufky <[email protected]>
20316 L:      [email protected]
20317 S:      Maintained
20318 W:      https://linuxtv.org
20319 W:      http://github.com/mkrufky
20320 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20321 T:      git git://linuxtv.org/mkrufky/tuners.git
20322 F:      drivers/media/tuners/tda8290.*
20323
20324 TDA9840 MEDIA DRIVER
20325 M:      Hans Verkuil <[email protected]>
20326 L:      [email protected]
20327 S:      Maintained
20328 W:      https://linuxtv.org
20329 T:      git git://linuxtv.org/media_tree.git
20330 F:      drivers/media/i2c/tda9840*
20331
20332 TEA5761 TUNER DRIVER
20333 M:      Mauro Carvalho Chehab <[email protected]>
20334 L:      [email protected]
20335 S:      Odd fixes
20336 W:      https://linuxtv.org
20337 T:      git git://linuxtv.org/media_tree.git
20338 F:      drivers/media/tuners/tea5761.*
20339
20340 TEA5767 TUNER DRIVER
20341 M:      Mauro Carvalho Chehab <[email protected]>
20342 L:      [email protected]
20343 S:      Maintained
20344 W:      https://linuxtv.org
20345 T:      git git://linuxtv.org/media_tree.git
20346 F:      drivers/media/tuners/tea5767.*
20347
20348 TEA6415C MEDIA DRIVER
20349 M:      Hans Verkuil <[email protected]>
20350 L:      [email protected]
20351 S:      Maintained
20352 W:      https://linuxtv.org
20353 T:      git git://linuxtv.org/media_tree.git
20354 F:      drivers/media/i2c/tea6415c*
20355
20356 TEA6420 MEDIA DRIVER
20357 M:      Hans Verkuil <[email protected]>
20358 L:      [email protected]
20359 S:      Maintained
20360 W:      https://linuxtv.org
20361 T:      git git://linuxtv.org/media_tree.git
20362 F:      drivers/media/i2c/tea6420*
20363
20364 TEAM DRIVER
20365 M:      Jiri Pirko <[email protected]>
20366 L:      [email protected]
20367 S:      Supported
20368 F:      drivers/net/team/
20369 F:      include/linux/if_team.h
20370 F:      include/uapi/linux/if_team.h
20371 F:      tools/testing/selftests/drivers/net/team/
20372
20373 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20374 M:      "Savoir-faire Linux Inc." <[email protected]>
20375 S:      Maintained
20376 F:      arch/x86/platform/ts5500/
20377
20378 TECHNOTREND USB IR RECEIVER
20379 M:      Sean Young <[email protected]>
20380 L:      [email protected]
20381 S:      Maintained
20382 F:      drivers/media/rc/ttusbir.c
20383
20384 TECHWELL TW9910 VIDEO DECODER
20385 L:      [email protected]
20386 S:      Orphan
20387 F:      drivers/media/i2c/tw9910.c
20388 F:      include/media/i2c/tw9910.h
20389
20390 TEE SUBSYSTEM
20391 M:      Jens Wiklander <[email protected]>
20392 R:      Sumit Garg <[email protected]>
20393 L:      [email protected]
20394 S:      Maintained
20395 F:      Documentation/staging/tee.rst
20396 F:      drivers/tee/
20397 F:      include/linux/tee_drv.h
20398 F:      include/uapi/linux/tee.h
20399
20400 TEGRA ARCHITECTURE SUPPORT
20401 M:      Thierry Reding <[email protected]>
20402 M:      Jonathan Hunter <[email protected]>
20403 L:      [email protected]
20404 S:      Supported
20405 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
20406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20407 N:      [^a-z]tegra
20408
20409 TEGRA CLOCK DRIVER
20410 M:      Peter De Schrijver <[email protected]>
20411 M:      Prashant Gaikwad <[email protected]>
20412 S:      Supported
20413 F:      drivers/clk/tegra/
20414
20415 TEGRA DMA DRIVERS
20416 M:      Laxman Dewangan <[email protected]>
20417 M:      Jon Hunter <[email protected]>
20418 S:      Supported
20419 F:      drivers/dma/tegra*
20420
20421 TEGRA I2C DRIVER
20422 M:      Laxman Dewangan <[email protected]>
20423 R:      Dmitry Osipenko <[email protected]>
20424 S:      Supported
20425 F:      drivers/i2c/busses/i2c-tegra.c
20426
20427 TEGRA IOMMU DRIVERS
20428 M:      Thierry Reding <[email protected]>
20429 R:      Krishna Reddy <[email protected]>
20430 L:      [email protected]
20431 S:      Supported
20432 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20433 F:      drivers/iommu/tegra*
20434
20435 TEGRA KBC DRIVER
20436 M:      Laxman Dewangan <[email protected]>
20437 S:      Supported
20438 F:      drivers/input/keyboard/tegra-kbc.c
20439
20440 TEGRA NAND DRIVER
20441 M:      Stefan Agner <[email protected]>
20442 M:      Lucas Stach <[email protected]>
20443 S:      Maintained
20444 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20445 F:      drivers/mtd/nand/raw/tegra_nand.c
20446
20447 TEGRA PWM DRIVER
20448 M:      Thierry Reding <[email protected]>
20449 S:      Supported
20450 F:      drivers/pwm/pwm-tegra.c
20451
20452 TEGRA SERIAL DRIVER
20453 M:      Laxman Dewangan <[email protected]>
20454 S:      Supported
20455 F:      drivers/tty/serial/serial-tegra.c
20456
20457 TEGRA SPI DRIVER
20458 M:      Laxman Dewangan <[email protected]>
20459 S:      Supported
20460 F:      drivers/spi/spi-tegra*
20461
20462 TEGRA QUAD SPI DRIVER
20463 M:      Thierry Reding <[email protected]>
20464 M:      Jonathan Hunter <[email protected]>
20465 M:      Sowjanya Komatineni <[email protected]>
20466 L:      [email protected]
20467 S:      Maintained
20468 F:      drivers/spi/spi-tegra210-quad.c
20469
20470 TEGRA VIDEO DRIVER
20471 M:      Thierry Reding <[email protected]>
20472 M:      Jonathan Hunter <[email protected]>
20473 M:      Sowjanya Komatineni <[email protected]>
20474 L:      [email protected]
20475 L:      [email protected]
20476 S:      Maintained
20477 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20478 F:      drivers/staging/media/tegra-video/
20479
20480 TEGRA XUSB PADCTL DRIVER
20481 M:      JC Kuo <[email protected]>
20482 S:      Supported
20483 F:      drivers/phy/tegra/xusb*
20484
20485 TEHUTI ETHERNET DRIVER
20486 M:      Andy Gospodarek <[email protected]>
20487 L:      [email protected]
20488 S:      Supported
20489 F:      drivers/net/ethernet/tehuti/*
20490
20491 TELECOM CLOCK DRIVER FOR MCPL0010
20492 M:      Mark Gross <[email protected]>
20493 S:      Supported
20494 F:      drivers/char/tlclk.c
20495
20496 TEMPO SEMICONDUCTOR DRIVERS
20497 M:      Steven Eckhoff <[email protected]>
20498 S:      Maintained
20499 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20500 F:      sound/soc/codecs/tscs*.c
20501 F:      sound/soc/codecs/tscs*.h
20502
20503 TENSILICA XTENSA PORT (xtensa)
20504 M:      Chris Zankel <[email protected]>
20505 M:      Max Filippov <[email protected]>
20506 L:      [email protected]
20507 S:      Maintained
20508 T:      git https://github.com/jcmvbkbc/linux-xtensa.git
20509 F:      arch/xtensa/
20510 F:      drivers/irqchip/irq-xtensa-*
20511
20512 TEXAS INSTRUMENTS ASoC DRIVERS
20513 M:      Peter Ujfalusi <[email protected]>
20514 L:      [email protected] (moderated for non-subscribers)
20515 S:      Maintained
20516 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20517 F:      sound/soc/ti/
20518
20519 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20520 M:      Ricardo Ribalda <[email protected]>
20521 L:      [email protected]
20522 S:      Supported
20523 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20524 F:      drivers/iio/dac/ti-dac7612.c
20525
20526 TEXAS INSTRUMENTS DMA DRIVERS
20527 M:      Peter Ujfalusi <[email protected]>
20528 L:      [email protected]
20529 S:      Maintained
20530 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20531 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20532 F:      Documentation/devicetree/bindings/dma/ti/
20533 F:      drivers/dma/ti/
20534 X:      drivers/dma/ti/cppi41.c
20535 F:      include/linux/dma/k3-udma-glue.h
20536 F:      include/linux/dma/ti-cppi5.h
20537 F:      include/linux/dma/k3-psil.h
20538
20539 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20540 M:      Nishanth Menon <[email protected]>
20541 M:      Tero Kristo <[email protected]>
20542 M:      Santosh Shilimkar <[email protected]>
20543 L:      [email protected] (moderated for non-subscribers)
20544 S:      Maintained
20545 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20546 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20547 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20548 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20549 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20550 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20551 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20552 F:      drivers/clk/keystone/sci-clk.c
20553 F:      drivers/firmware/ti_sci*
20554 F:      drivers/irqchip/irq-ti-sci-inta.c
20555 F:      drivers/irqchip/irq-ti-sci-intr.c
20556 F:      drivers/reset/reset-ti-sci.c
20557 F:      drivers/soc/ti/ti_sci_inta_msi.c
20558 F:      drivers/soc/ti/ti_sci_pm_domains.c
20559 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20560 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20561 F:      include/linux/soc/ti/ti_sci_protocol.h
20562
20563 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20564 M:      Robert Marko <[email protected]>
20565 M:      Luka Perkov <[email protected]>
20566 L:      [email protected]
20567 S:      Maintained
20568 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20569 F:      Documentation/hwmon/tps23861.rst
20570 F:      drivers/hwmon/tps23861.c
20571
20572 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20573 M:      Puranjay Mohan <[email protected]>
20574 L:      [email protected]
20575 S:      Supported
20576 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20577 F:      drivers/iio/temperature/tmp117.c
20578
20579 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20580 M:      Hans Verkuil <[email protected]>
20581 L:      [email protected]
20582 S:      Maintained
20583 W:      https://linuxtv.org
20584 T:      git git://linuxtv.org/media_tree.git
20585 F:      drivers/media/radio/radio-raremono.c
20586
20587 THERMAL
20588 M:      Rafael J. Wysocki <[email protected]>
20589 M:      Daniel Lezcano <[email protected]>
20590 R:      Amit Kucheria <[email protected]>
20591 R:      Zhang Rui <[email protected]>
20592 L:      [email protected]
20593 S:      Supported
20594 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20596 F:      Documentation/ABI/testing/sysfs-class-thermal
20597 F:      Documentation/admin-guide/thermal/
20598 F:      Documentation/devicetree/bindings/thermal/
20599 F:      Documentation/driver-api/thermal/
20600 F:      drivers/thermal/
20601 F:      include/dt-bindings/thermal/
20602 F:      include/linux/cpu_cooling.h
20603 F:      include/linux/thermal.h
20604 F:      include/uapi/linux/thermal.h
20605 F:      tools/lib/thermal/
20606 F:      tools/thermal/
20607
20608 THERMAL DRIVER FOR AMLOGIC SOCS
20609 M:      Guillaume La Roque <[email protected]>
20610 L:      [email protected]
20611 L:      [email protected]
20612 S:      Supported
20613 W:      http://linux-meson.com/
20614 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20615 F:      drivers/thermal/amlogic_thermal.c
20616
20617 THERMAL/CPU_COOLING
20618 M:      Amit Daniel Kachhap <[email protected]>
20619 M:      Daniel Lezcano <[email protected]>
20620 M:      Viresh Kumar <[email protected]>
20621 R:      Lukasz Luba <[email protected]>
20622 L:      [email protected]
20623 S:      Supported
20624 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20625 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20626 F:      drivers/thermal/cpufreq_cooling.c
20627 F:      drivers/thermal/cpuidle_cooling.c
20628 F:      include/linux/cpu_cooling.h
20629
20630 THERMAL/POWER_ALLOCATOR
20631 M:      Lukasz Luba <[email protected]>
20632 L:      [email protected]
20633 S:      Maintained
20634 F:      Documentation/driver-api/thermal/power_allocator.rst
20635 F:      drivers/thermal/gov_power_allocator.c
20636 F:      include/trace/events/thermal_power_allocator.h
20637
20638 THINKPAD ACPI EXTRAS DRIVER
20639 M:      Henrique de Moraes Holschuh <[email protected]>
20640 L:      [email protected]
20641 L:      [email protected]
20642 S:      Maintained
20643 W:      http://ibm-acpi.sourceforge.net
20644 W:      http://thinkwiki.org/wiki/Ibm-acpi
20645 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20646 F:      drivers/platform/x86/thinkpad_acpi.c
20647
20648 THINKPAD LMI DRIVER
20649 M:      Mark Pearson <[email protected]>
20650 L:      [email protected]
20651 S:      Maintained
20652 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20653 F:      drivers/platform/x86/think-lmi.?
20654
20655 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20656 M:      Isaac Hazan <[email protected]>
20657 L:      [email protected]
20658 S:      Maintained
20659 F:      drivers/thunderbolt/dma_test.c
20660
20661 THUNDERBOLT DRIVER
20662 M:      Andreas Noever <[email protected]>
20663 M:      Michael Jamet <[email protected]>
20664 M:      Mika Westerberg <[email protected]>
20665 M:      Yehezkel Bernat <[email protected]>
20666 L:      [email protected]
20667 S:      Maintained
20668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20669 F:      Documentation/admin-guide/thunderbolt.rst
20670 F:      drivers/thunderbolt/
20671 F:      include/linux/thunderbolt.h
20672
20673 THUNDERBOLT NETWORK DRIVER
20674 M:      Michael Jamet <[email protected]>
20675 M:      Mika Westerberg <[email protected]>
20676 M:      Yehezkel Bernat <[email protected]>
20677 L:      [email protected]
20678 S:      Maintained
20679 F:      drivers/net/thunderbolt/
20680
20681 THUNDERX GPIO DRIVER
20682 M:      Robert Richter <[email protected]>
20683 S:      Odd Fixes
20684 F:      drivers/gpio/gpio-thunderx.c
20685
20686 TI AM437X VPFE DRIVER
20687 M:      "Lad, Prabhakar" <[email protected]>
20688 L:      [email protected]
20689 S:      Maintained
20690 W:      https://linuxtv.org
20691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20692 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20693 F:      drivers/media/platform/ti/am437x/
20694
20695 TI BANDGAP AND THERMAL DRIVER
20696 M:      Eduardo Valentin <[email protected]>
20697 M:      Keerthy <[email protected]>
20698 L:      [email protected]
20699 L:      [email protected]
20700 S:      Maintained
20701 F:      drivers/thermal/ti-soc-thermal/
20702
20703 TI BQ27XXX POWER SUPPLY DRIVER
20704 F:      drivers/power/supply/bq27xxx_battery.c
20705 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20706 F:      include/linux/power/bq27xxx_battery.h
20707
20708 TI CDCE706 CLOCK DRIVER
20709 M:      Max Filippov <[email protected]>
20710 S:      Maintained
20711 F:      drivers/clk/clk-cdce706.c
20712
20713 TI CLOCK DRIVER
20714 M:      Tero Kristo <[email protected]>
20715 L:      [email protected]
20716 S:      Odd Fixes
20717 F:      drivers/clk/ti/
20718 F:      include/linux/clk/ti.h
20719
20720 TI DAVINCI MACHINE SUPPORT
20721 M:      Sekhar Nori <[email protected]>
20722 R:      Bartosz Golaszewski <[email protected]>
20723 L:      [email protected] (moderated for non-subscribers)
20724 S:      Supported
20725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
20726 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20727 F:      arch/arm/boot/dts/da850*
20728 F:      arch/arm/mach-davinci/
20729 F:      drivers/i2c/busses/i2c-davinci.c
20730
20731 TI DAVINCI SERIES CLOCK DRIVER
20732 M:      David Lechner <[email protected]>
20733 R:      Sekhar Nori <[email protected]>
20734 S:      Maintained
20735 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20736 F:      drivers/clk/davinci/
20737 F:      include/linux/clk/davinci.h
20738
20739 TI DAVINCI SERIES GPIO DRIVER
20740 M:      Keerthy <[email protected]>
20741 L:      [email protected]
20742 S:      Maintained
20743 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20744 F:      drivers/gpio/gpio-davinci.c
20745
20746 TI DAVINCI SERIES MEDIA DRIVER
20747 M:      "Lad, Prabhakar" <[email protected]>
20748 L:      [email protected]
20749 S:      Maintained
20750 W:      https://linuxtv.org
20751 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20752 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20753 F:      drivers/media/platform/ti/davinci/
20754 F:      include/media/davinci/
20755
20756 TI ENHANCED CAPTURE (eCAP) DRIVER
20757 M:      Vignesh Raghavendra <[email protected]>
20758 R:      Julien Panis <[email protected]>
20759 L:      [email protected]
20760 L:      [email protected]
20761 S:      Maintained
20762 F:      Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
20763 F:      drivers/counter/ti-ecap-capture.c
20764
20765 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20766 R:      David Lechner <[email protected]>
20767 L:      [email protected]
20768 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
20769 F:      drivers/counter/ti-eqep.c
20770
20771 TI ETHERNET SWITCH DRIVER (CPSW)
20772 R:      Grygorii Strashko <[email protected]>
20773 L:      [email protected]
20774 L:      [email protected]
20775 S:      Maintained
20776 F:      drivers/net/ethernet/ti/cpsw*
20777 F:      drivers/net/ethernet/ti/davinci*
20778
20779 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20780 M:      Alex Dubov <[email protected]>
20781 S:      Maintained
20782 W:      http://tifmxx.berlios.de/
20783 F:      drivers/memstick/host/tifm_ms.c
20784 F:      drivers/misc/tifm*
20785 F:      drivers/mmc/host/tifm_sd.c
20786 F:      include/linux/tifm.h
20787
20788 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20789 M:      Nishanth Menon <[email protected]>
20790 M:      Santosh Shilimkar <[email protected]>
20791 L:      [email protected]
20792 L:      [email protected] (moderated for non-subscribers)
20793 S:      Maintained
20794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20795 F:      drivers/soc/ti/*
20796
20797 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20798 M:      M R Swami Reddy <[email protected]>
20799 M:      Vishwas A Deshpande <[email protected]>
20800 L:      [email protected] (moderated for non-subscribers)
20801 S:      Maintained
20802 F:      sound/soc/codecs/isabelle*
20803 F:      sound/soc/codecs/lm49453*
20804
20805 TI PCM3060 ASoC CODEC DRIVER
20806 M:      Kirill Marinushkin <[email protected]>
20807 L:      [email protected] (moderated for non-subscribers)
20808 S:      Maintained
20809 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
20810 F:      sound/soc/codecs/pcm3060*
20811
20812 TI TAS571X FAMILY ASoC CODEC DRIVER
20813 M:      Kevin Cernekee <[email protected]>
20814 L:      [email protected] (moderated for non-subscribers)
20815 S:      Odd Fixes
20816 F:      sound/soc/codecs/tas571x*
20817
20818 TI TRF7970A NFC DRIVER
20819 M:      Mark Greer <[email protected]>
20820 L:      [email protected]
20821 L:      [email protected] (subscribers-only)
20822 S:      Supported
20823 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20824 F:      drivers/nfc/trf7970a.c
20825
20826 TI TSC2046 ADC DRIVER
20827 M:      Oleksij Rempel <[email protected]>
20828 R:      [email protected]
20829 L:      [email protected]
20830 S:      Maintained
20831 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20832 F:      drivers/iio/adc/ti-tsc2046.c
20833
20834 TI TWL4030 SERIES SOC CODEC DRIVER
20835 M:      Peter Ujfalusi <[email protected]>
20836 L:      [email protected] (moderated for non-subscribers)
20837 S:      Maintained
20838 F:      sound/soc/codecs/twl4030*
20839
20840 TI VPE/CAL DRIVERS
20841 M:      Benoit Parrot <[email protected]>
20842 L:      [email protected]
20843 S:      Maintained
20844 W:      http://linuxtv.org/
20845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20846 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20847 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20848 F:      drivers/media/platform/ti/cal/
20849 F:      drivers/media/platform/ti/vpe/
20850
20851 TI WILINK WIRELESS DRIVERS
20852 L:      [email protected]
20853 S:      Orphan
20854 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20855 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20857 F:      drivers/net/wireless/ti/
20858
20859 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20860 M:      John Stultz <[email protected]>
20861 M:      Thomas Gleixner <[email protected]>
20862 R:      Stephen Boyd <[email protected]>
20863 L:      [email protected]
20864 S:      Supported
20865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20866 F:      include/linux/clocksource.h
20867 F:      include/linux/time.h
20868 F:      include/linux/timex.h
20869 F:      include/uapi/linux/time.h
20870 F:      include/uapi/linux/timex.h
20871 F:      kernel/time/alarmtimer.c
20872 F:      kernel/time/clocksource.c
20873 F:      kernel/time/ntp.c
20874 F:      kernel/time/time*.c
20875 F:      tools/testing/selftests/timers/
20876
20877 TIPC NETWORK LAYER
20878 M:      Jon Maloy <[email protected]>
20879 M:      Ying Xue <[email protected]>
20880 L:      [email protected] (core kernel code)
20881 L:      [email protected] (user apps, general discussion)
20882 S:      Maintained
20883 W:      http://tipc.sourceforge.net/
20884 F:      include/uapi/linux/tipc*.h
20885 F:      net/tipc/
20886
20887 TLAN NETWORK DRIVER
20888 M:      Samuel Chessman <[email protected]>
20889 L:      [email protected] (subscribers-only)
20890 S:      Maintained
20891 W:      http://sourceforge.net/projects/tlan/
20892 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20893 F:      drivers/net/ethernet/ti/tlan.*
20894
20895 TM6000 VIDEO4LINUX DRIVER
20896 M:      Mauro Carvalho Chehab <[email protected]>
20897 L:      [email protected]
20898 S:      Odd fixes
20899 W:      https://linuxtv.org
20900 T:      git git://linuxtv.org/media_tree.git
20901 F:      Documentation/admin-guide/media/tm6000*
20902 F:      drivers/staging/media/deprecated/tm6000/
20903
20904 TMIO/SDHI MMC DRIVER
20905 M:      Wolfram Sang <[email protected]>
20906 L:      [email protected]
20907 L:      [email protected]
20908 S:      Supported
20909 F:      drivers/mmc/host/renesas_sdhi*
20910 F:      drivers/mmc/host/tmio_mmc*
20911 F:      include/linux/mfd/tmio.h
20912
20913 TMP401 HARDWARE MONITOR DRIVER
20914 M:      Guenter Roeck <[email protected]>
20915 L:      [email protected]
20916 S:      Maintained
20917 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20918 F:      Documentation/hwmon/tmp401.rst
20919 F:      drivers/hwmon/tmp401.c
20920
20921 TMP464 HARDWARE MONITOR DRIVER
20922 M:      Agathe Porte <[email protected]>
20923 M:      Guenter Roeck <[email protected]>
20924 L:      [email protected]
20925 S:      Maintained
20926 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20927 F:      Documentation/hwmon/tmp464.rst
20928 F:      drivers/hwmon/tmp464.c
20929
20930 TMP513 HARDWARE MONITOR DRIVER
20931 M:      Eric Tremblay <[email protected]>
20932 L:      [email protected]
20933 S:      Maintained
20934 F:      Documentation/hwmon/tmp513.rst
20935 F:      drivers/hwmon/tmp513.c
20936
20937 TMPFS (SHMEM FILESYSTEM)
20938 M:      Hugh Dickins <[email protected]>
20939 L:      [email protected]
20940 S:      Maintained
20941 F:      include/linux/shmem_fs.h
20942 F:      mm/shmem.c
20943
20944 TOMOYO SECURITY MODULE
20945 M:      Kentaro Takeda <[email protected]>
20946 M:      Tetsuo Handa <[email protected]>
20947 L:      [email protected] (subscribers-only, for developers in English)
20948 L:      [email protected] (subscribers-only, for users in English)
20949 L:      [email protected] (subscribers-only, for developers in Japanese)
20950 L:      [email protected] (subscribers-only, for users in Japanese)
20951 S:      Maintained
20952 W:      https://tomoyo.osdn.jp/
20953 F:      security/tomoyo/
20954
20955 TOPSTAR LAPTOP EXTRAS DRIVER
20956 M:      Herton Ronaldo Krzesinski <[email protected]>
20957 L:      [email protected]
20958 S:      Maintained
20959 F:      drivers/platform/x86/topstar-laptop.c
20960
20961 TORTURE-TEST MODULES
20962 M:      Davidlohr Bueso <[email protected]>
20963 M:      "Paul E. McKenney" <[email protected]>
20964 M:      Josh Triplett <[email protected]>
20965 L:      [email protected]
20966 S:      Supported
20967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20968 F:      Documentation/RCU/torture.rst
20969 F:      kernel/locking/locktorture.c
20970 F:      kernel/rcu/rcuscale.c
20971 F:      kernel/rcu/rcutorture.c
20972 F:      kernel/rcu/refscale.c
20973 F:      kernel/torture.c
20974
20975 TOSHIBA ACPI EXTRAS DRIVER
20976 M:      Azael Avalos <[email protected]>
20977 L:      [email protected]
20978 S:      Maintained
20979 F:      drivers/platform/x86/toshiba_acpi.c
20980
20981 TOSHIBA BLUETOOTH DRIVER
20982 M:      Azael Avalos <[email protected]>
20983 L:      [email protected]
20984 S:      Maintained
20985 F:      drivers/platform/x86/toshiba_bluetooth.c
20986
20987 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20988 M:      Azael Avalos <[email protected]>
20989 L:      [email protected]
20990 S:      Maintained
20991 F:      drivers/platform/x86/toshiba_haps.c
20992
20993 TOSHIBA SMM DRIVER
20994 M:      Jonathan Buzzard <[email protected]>
20995 S:      Maintained
20996 W:      http://www.buzzard.org.uk/toshiba/
20997 F:      drivers/char/toshiba.c
20998 F:      include/linux/toshiba.h
20999 F:      include/uapi/linux/toshiba.h
21000
21001 TOSHIBA TC358743 DRIVER
21002 M:      Hans Verkuil <[email protected]>
21003 L:      [email protected]
21004 S:      Maintained
21005 F:      Documentation/devicetree/bindings/media/i2c/tc358743.txt
21006 F:      drivers/media/i2c/tc358743*
21007 F:      include/media/i2c/tc358743.h
21008
21009 TOSHIBA WMI HOTKEYS DRIVER
21010 M:      Azael Avalos <[email protected]>
21011 L:      [email protected]
21012 S:      Maintained
21013 F:      drivers/platform/x86/toshiba-wmi.c
21014
21015 TPM DEVICE DRIVER
21016 M:      Peter Huewe <[email protected]>
21017 M:      Jarkko Sakkinen <[email protected]>
21018 R:      Jason Gunthorpe <[email protected]>
21019 L:      [email protected]
21020 S:      Maintained
21021 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
21022 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
21023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
21024 F:      drivers/char/tpm/
21025
21026 TPS546D24 DRIVER
21027 M:      Duke Du <[email protected]>
21028 L:      [email protected]
21029 S:      Maintained
21030 F:      Documentation/hwmon/tps546d24.rst
21031 F:      drivers/hwmon/pmbus/tps546d24.c
21032
21033 TRACING
21034 M:      Steven Rostedt <[email protected]>
21035 M:      Masami Hiramatsu <[email protected]>
21036 L:      [email protected]
21037 L:      [email protected]
21038 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
21039 S:      Maintained
21040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
21041 F:      Documentation/trace/*
21042 F:      fs/tracefs/
21043 F:      include/linux/trace*.h
21044 F:      include/trace/
21045 F:      kernel/trace/
21046 F:      scripts/tracing/
21047 F:      tools/testing/selftests/ftrace/
21048
21049 TRACING MMIO ACCESSES (MMIOTRACE)
21050 M:      Steven Rostedt <[email protected]>
21051 M:      Masami Hiramatsu <[email protected]>
21052 R:      Karol Herbst <[email protected]>
21053 R:      Pekka Paalanen <[email protected]>
21054 L:      [email protected]
21055 L:      [email protected]
21056 S:      Maintained
21057 F:      arch/x86/mm/kmmio.c
21058 F:      arch/x86/mm/mmio-mod.c
21059 F:      arch/x86/mm/testmmiotrace.c
21060 F:      include/linux/mmiotrace.h
21061 F:      kernel/trace/trace_mmiotrace.c
21062
21063 TRACING OS NOISE / LATENCY TRACERS
21064 M:      Steven Rostedt <[email protected]>
21065 M:      Daniel Bristot de Oliveira <[email protected]>
21066 S:      Maintained
21067 F:      kernel/trace/trace_osnoise.c
21068 F:      include/trace/events/osnoise.h
21069 F:      kernel/trace/trace_hwlat.c
21070 F:      kernel/trace/trace_irqsoff.c
21071 F:      kernel/trace/trace_sched_wakeup.c
21072 F:      Documentation/trace/osnoise-tracer.rst
21073 F:      Documentation/trace/timerlat-tracer.rst
21074 F:      Documentation/trace/hwlat_detector.rst
21075 F:      arch/*/kernel/trace.c
21076
21077 Real-time Linux Analysis (RTLA) tools
21078 M:      Daniel Bristot de Oliveira <[email protected]>
21079 M:      Steven Rostedt <[email protected]>
21080 L:      [email protected]
21081 S:      Maintained
21082 F:      Documentation/tools/rtla/
21083 F:      tools/tracing/rtla/
21084
21085 TRADITIONAL CHINESE DOCUMENTATION
21086 M:      Hu Haowen <[email protected]>
21087 L:      [email protected] (moderated for non-subscribers)
21088 S:      Maintained
21089 W:      https://github.com/srcres258/linux-doc
21090 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
21091 F:      Documentation/translations/zh_TW/
21092
21093 TTY LAYER
21094 M:      Greg Kroah-Hartman <[email protected]>
21095 M:      Jiri Slaby <[email protected]>
21096 S:      Supported
21097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
21098 F:      Documentation/driver-api/serial/
21099 F:      drivers/tty/
21100 F:      drivers/tty/serial/serial_core.c
21101 F:      include/linux/selection.h
21102 F:      include/linux/serial.h
21103 F:      include/linux/serial_core.h
21104 F:      include/linux/sysrq.h
21105 F:      include/linux/tty*.h
21106 F:      include/linux/vt.h
21107 F:      include/linux/vt_*.h
21108 F:      include/uapi/linux/serial.h
21109 F:      include/uapi/linux/serial_core.h
21110 F:      include/uapi/linux/tty.h
21111
21112 TUA9001 MEDIA DRIVER
21113 M:      Antti Palosaari <[email protected]>
21114 L:      [email protected]
21115 S:      Maintained
21116 W:      https://linuxtv.org
21117 W:      http://palosaari.fi/linux/
21118 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21119 T:      git git://linuxtv.org/anttip/media_tree.git
21120 F:      drivers/media/tuners/tua9001*
21121
21122 TULIP NETWORK DRIVERS
21123 L:      [email protected]
21124 L:      [email protected]
21125 S:      Orphan
21126 F:      drivers/net/ethernet/dec/tulip/
21127
21128 TUN/TAP driver
21129 M:      Maxim Krasnyansky <[email protected]>
21130 S:      Maintained
21131 W:      http://vtun.sourceforge.net/tun
21132 F:      Documentation/networking/tuntap.rst
21133 F:      arch/um/os-Linux/drivers/
21134
21135 TURBOCHANNEL SUBSYSTEM
21136 M:      "Maciej W. Rozycki" <[email protected]>
21137 M:      Ralf Baechle <[email protected]>
21138 L:      [email protected]
21139 S:      Maintained
21140 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
21141 F:      drivers/tc/
21142 F:      include/linux/tc.h
21143
21144 TURBOSTAT UTILITY
21145 M:      "Len Brown" <[email protected]>
21146 L:      [email protected]
21147 S:      Supported
21148 Q:      https://patchwork.kernel.org/project/linux-pm/list/
21149 B:      https://bugzilla.kernel.org
21150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
21151 F:      tools/power/x86/turbostat/
21152
21153 TW5864 VIDEO4LINUX DRIVER
21154 M:      Bluecherry Maintainers <[email protected]>
21155 M:      Anton Sviridenko <[email protected]>
21156 M:      Andrey Utkin <[email protected]>
21157 M:      Andrey Utkin <[email protected]>
21158 L:      [email protected]
21159 S:      Supported
21160 F:      drivers/media/pci/tw5864/
21161
21162 TW68 VIDEO4LINUX DRIVER
21163 M:      Hans Verkuil <[email protected]>
21164 L:      [email protected]
21165 S:      Odd Fixes
21166 W:      https://linuxtv.org
21167 T:      git git://linuxtv.org/media_tree.git
21168 F:      drivers/media/pci/tw68/
21169
21170 TW686X VIDEO4LINUX DRIVER
21171 M:      Ezequiel Garcia <[email protected]>
21172 L:      [email protected]
21173 S:      Maintained
21174 W:      http://linuxtv.org
21175 T:      git git://linuxtv.org/media_tree.git
21176 F:      drivers/media/pci/tw686x/
21177
21178 U-BOOT ENVIRONMENT VARIABLES
21179 M:      Rafał Miłecki <[email protected]>
21180 S:      Maintained
21181 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
21182 F:      drivers/nvmem/u-boot-env.c
21183
21184 UACCE ACCELERATOR FRAMEWORK
21185 M:      Zhangfei Gao <[email protected]>
21186 M:      Zhou Wang <[email protected]>
21187 L:      [email protected]
21188 L:      [email protected]
21189 S:      Maintained
21190 F:      Documentation/ABI/testing/sysfs-driver-uacce
21191 F:      Documentation/misc-devices/uacce.rst
21192 F:      drivers/misc/uacce/
21193 F:      include/linux/uacce.h
21194 F:      include/uapi/misc/uacce/
21195
21196 UBI FILE SYSTEM (UBIFS)
21197 M:      Richard Weinberger <[email protected]>
21198 L:      [email protected]
21199 S:      Supported
21200 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
21201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21203 F:      Documentation/ABI/testing/sysfs-fs-ubifs
21204 F:      Documentation/filesystems/ubifs-authentication.rst
21205 F:      Documentation/filesystems/ubifs.rst
21206 F:      fs/ubifs/
21207
21208 UBLK USERSPACE BLOCK DRIVER
21209 M:      Ming Lei <[email protected]>
21210 L:      [email protected]
21211 S:      Maintained
21212 F:      Documentation/block/ublk.rst
21213 F:      drivers/block/ublk_drv.c
21214 F:      include/uapi/linux/ublk_cmd.h
21215
21216 UCLINUX (M68KNOMMU AND COLDFIRE)
21217 M:      Greg Ungerer <[email protected]>
21218 L:      [email protected]
21219 L:      [email protected]  (subscribers-only)
21220 S:      Maintained
21221 W:      http://www.linux-m68k.org/
21222 W:      http://www.uclinux.org/
21223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
21224 F:      arch/m68k/*/*_no.*
21225 F:      arch/m68k/68*/
21226 F:      arch/m68k/coldfire/
21227 F:      arch/m68k/include/asm/*_no.*
21228
21229 UDF FILESYSTEM
21230 M:      Jan Kara <[email protected]>
21231 S:      Maintained
21232 F:      Documentation/filesystems/udf.rst
21233 F:      fs/udf/
21234
21235 UDRAW TABLET
21236 M:      Bastien Nocera <[email protected]>
21237 L:      [email protected]
21238 S:      Maintained
21239 F:      drivers/hid/hid-udraw-ps3.c
21240
21241 UFS FILESYSTEM
21242 M:      Evgeniy Dushistov <[email protected]>
21243 S:      Maintained
21244 F:      Documentation/admin-guide/ufs.rst
21245 F:      fs/ufs/
21246
21247 UHID USERSPACE HID IO DRIVER
21248 M:      David Rheinsberg <[email protected]>
21249 L:      [email protected]
21250 S:      Maintained
21251 F:      drivers/hid/uhid.c
21252 F:      include/uapi/linux/uhid.h
21253
21254 ULPI BUS
21255 M:      Heikki Krogerus <[email protected]>
21256 L:      [email protected]
21257 S:      Maintained
21258 F:      drivers/usb/common/ulpi.c
21259 F:      include/linux/ulpi/
21260
21261 UNICODE SUBSYSTEM
21262 M:      Gabriel Krisman Bertazi <[email protected]>
21263 L:      [email protected]
21264 S:      Supported
21265 F:      fs/unicode/
21266
21267 UNIFDEF
21268 M:      Tony Finch <[email protected]>
21269 S:      Maintained
21270 W:      http://dotat.at/prog/unifdef
21271 F:      scripts/unifdef.c
21272
21273 UNIFORM CDROM DRIVER
21274 M:      Phillip Potter <[email protected]>
21275 S:      Maintained
21276 F:      Documentation/cdrom/
21277 F:      drivers/cdrom/cdrom.c
21278 F:      include/linux/cdrom.h
21279 F:      include/uapi/linux/cdrom.h
21280
21281 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
21282 R:      Alim Akhtar <[email protected]>
21283 R:      Avri Altman <[email protected]>
21284 R:      Bart Van Assche <[email protected]>
21285 L:      [email protected]
21286 S:      Supported
21287 F:      Documentation/devicetree/bindings/ufs/
21288 F:      Documentation/scsi/ufs.rst
21289 F:      drivers/ufs/core/
21290
21291 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
21292 M:      Pedro Sousa <[email protected]>
21293 L:      [email protected]
21294 S:      Supported
21295 F:      drivers/ufs/host/*dwc*
21296
21297 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
21298 M:      Stanley Chu <[email protected]>
21299 L:      [email protected]
21300 L:      [email protected] (moderated for non-subscribers)
21301 S:      Maintained
21302 F:      drivers/ufs/host/ufs-mediatek*
21303
21304 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
21305 M:      Yoshihiro Shimoda <[email protected]>
21306 L:      [email protected]
21307 L:      [email protected]
21308 S:      Maintained
21309 F:      drivers/ufs/host/ufs-renesas.c
21310
21311 UNSORTED BLOCK IMAGES (UBI)
21312 M:      Richard Weinberger <[email protected]>
21313 L:      [email protected]
21314 S:      Supported
21315 W:      http://www.linux-mtd.infradead.org/
21316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21318 F:      drivers/mtd/ubi/
21319 F:      include/linux/mtd/ubi.h
21320 F:      include/uapi/mtd/ubi-user.h
21321
21322 USB "USBNET" DRIVER FRAMEWORK
21323 M:      Oliver Neukum <[email protected]>
21324 L:      [email protected]
21325 S:      Maintained
21326 W:      http://www.linux-usb.org/usbnet
21327 F:      drivers/net/usb/usbnet.c
21328 F:      include/linux/usb/usbnet.h
21329
21330 USB ACM DRIVER
21331 M:      Oliver Neukum <[email protected]>
21332 L:      [email protected]
21333 S:      Maintained
21334 F:      Documentation/usb/acm.rst
21335 F:      drivers/usb/class/cdc-acm.*
21336
21337 USB APPLE MFI FASTCHARGE DRIVER
21338 M:      Bastien Nocera <[email protected]>
21339 L:      [email protected]
21340 S:      Maintained
21341 F:      drivers/usb/misc/apple-mfi-fastcharge.c
21342
21343 USB AR5523 WIRELESS DRIVER
21344 M:      Pontus Fuchs <[email protected]>
21345 L:      [email protected]
21346 S:      Maintained
21347 F:      drivers/net/wireless/ath/ar5523/
21348
21349 USB ATTACHED SCSI
21350 M:      Oliver Neukum <[email protected]>
21351 L:      [email protected]
21352 L:      [email protected]
21353 S:      Maintained
21354 F:      drivers/usb/storage/uas.c
21355
21356 USB CDC ETHERNET DRIVER
21357 M:      Oliver Neukum <[email protected]>
21358 L:      [email protected]
21359 S:      Maintained
21360 F:      drivers/net/usb/cdc_*.c
21361 F:      include/uapi/linux/usb/cdc.h
21362
21363 USB CHAOSKEY DRIVER
21364 M:      Keith Packard <[email protected]>
21365 L:      [email protected]
21366 S:      Maintained
21367 F:      drivers/usb/misc/chaoskey.c
21368
21369 USB CYPRESS C67X00 DRIVER
21370 L:      [email protected]
21371 S:      Orphan
21372 F:      drivers/usb/c67x00/
21373
21374 USB DAVICOM DM9601 DRIVER
21375 M:      Peter Korsgaard <[email protected]>
21376 L:      [email protected]
21377 S:      Maintained
21378 W:      http://www.linux-usb.org/usbnet
21379 F:      drivers/net/usb/dm9601.c
21380
21381 USB EHCI DRIVER
21382 M:      Alan Stern <[email protected]>
21383 L:      [email protected]
21384 S:      Maintained
21385 F:      Documentation/usb/ehci.rst
21386 F:      drivers/usb/host/ehci*
21387
21388 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21389 M:      Jiri Kosina <[email protected]>
21390 M:      Benjamin Tissoires <[email protected]>
21391 L:      [email protected]
21392 S:      Maintained
21393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21394 F:      Documentation/hid/hiddev.rst
21395 F:      drivers/hid/usbhid/
21396
21397 USB INTEL XHCI ROLE MUX DRIVER
21398 M:      Hans de Goede <[email protected]>
21399 L:      [email protected]
21400 S:      Maintained
21401 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
21402
21403 USB IP DRIVER FOR HISILICON KIRIN 960
21404 M:      Yu Chen <[email protected]>
21405 M:      Binghui Wang <[email protected]>
21406 L:      [email protected]
21407 S:      Maintained
21408 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21409 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
21410
21411 USB IP DRIVER FOR HISILICON KIRIN 970
21412 M:      Mauro Carvalho Chehab <[email protected]>
21413 L:      [email protected]
21414 S:      Maintained
21415 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21416 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
21417
21418 USB ISP116X DRIVER
21419 M:      Olav Kongas <[email protected]>
21420 L:      [email protected]
21421 S:      Maintained
21422 F:      drivers/usb/host/isp116x*
21423 F:      include/linux/usb/isp116x.h
21424
21425 USB ISP1760 DRIVER
21426 M:      Rui Miguel Silva <[email protected]>
21427 L:      [email protected]
21428 S:      Maintained
21429 F:      drivers/usb/isp1760/*
21430 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21431
21432 USB LAN78XX ETHERNET DRIVER
21433 M:      Woojung Huh <[email protected]>
21434 M:      [email protected]
21435 L:      [email protected]
21436 S:      Maintained
21437 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21438 F:      drivers/net/usb/lan78xx.*
21439 F:      include/dt-bindings/net/microchip-lan78xx.h
21440
21441 USB MASS STORAGE DRIVER
21442 M:      Alan Stern <[email protected]>
21443 L:      [email protected]
21444 L:      [email protected]
21445 S:      Maintained
21446 F:      drivers/usb/storage/
21447
21448 USB MIDI DRIVER
21449 M:      Clemens Ladisch <[email protected]>
21450 L:      [email protected] (moderated for non-subscribers)
21451 S:      Maintained
21452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21453 F:      sound/usb/midi.*
21454
21455 USB NETWORKING DRIVERS
21456 L:      [email protected]
21457 S:      Odd Fixes
21458 F:      drivers/net/usb/
21459
21460 USB OHCI DRIVER
21461 M:      Alan Stern <[email protected]>
21462 L:      [email protected]
21463 S:      Maintained
21464 F:      Documentation/usb/ohci.rst
21465 F:      drivers/usb/host/ohci*
21466
21467 USB OTG FSM (Finite State Machine)
21468 M:      Peter Chen <[email protected]>
21469 L:      [email protected]
21470 S:      Maintained
21471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21472 F:      drivers/usb/common/usb-otg-fsm.c
21473
21474 USB OVER IP DRIVER
21475 M:      Valentina Manea <[email protected]>
21476 M:      Shuah Khan <[email protected]>
21477 M:      Shuah Khan <[email protected]>
21478 L:      [email protected]
21479 S:      Maintained
21480 F:      Documentation/usb/usbip_protocol.rst
21481 F:      drivers/usb/usbip/
21482 F:      tools/testing/selftests/drivers/usb/usbip/
21483 F:      tools/usb/usbip/
21484
21485 USB PEGASUS DRIVER
21486 M:      Petko Manolov <[email protected]>
21487 L:      [email protected]
21488 L:      [email protected]
21489 S:      Maintained
21490 W:      https://github.com/petkan/pegasus
21491 T:      git https://github.com/petkan/pegasus.git
21492 F:      drivers/net/usb/pegasus.*
21493
21494 USB PRINTER DRIVER (usblp)
21495 M:      Pete Zaitcev <[email protected]>
21496 L:      [email protected]
21497 S:      Supported
21498 F:      drivers/usb/class/usblp.c
21499
21500 USB RAW GADGET DRIVER
21501 R:      Andrey Konovalov <[email protected]>
21502 L:      [email protected]
21503 S:      Maintained
21504 F:      Documentation/usb/raw-gadget.rst
21505 F:      drivers/usb/gadget/legacy/raw_gadget.c
21506 F:      include/uapi/linux/usb/raw_gadget.h
21507
21508 USB QMI WWAN NETWORK DRIVER
21509 M:      Bjørn Mork <[email protected]>
21510 L:      [email protected]
21511 S:      Maintained
21512 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21513 F:      drivers/net/usb/qmi_wwan.c
21514
21515 USB RTL8150 DRIVER
21516 M:      Petko Manolov <[email protected]>
21517 L:      [email protected]
21518 L:      [email protected]
21519 S:      Maintained
21520 W:      https://github.com/petkan/rtl8150
21521 T:      git https://github.com/petkan/rtl8150.git
21522 F:      drivers/net/usb/rtl8150.c
21523
21524 USB SERIAL SUBSYSTEM
21525 M:      Johan Hovold <[email protected]>
21526 L:      [email protected]
21527 S:      Maintained
21528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21529 F:      Documentation/usb/usb-serial.rst
21530 F:      drivers/usb/serial/
21531 F:      include/linux/usb/serial.h
21532
21533 USB SMSC75XX ETHERNET DRIVER
21534 M:      Steve Glendinning <[email protected]>
21535 L:      [email protected]
21536 S:      Maintained
21537 F:      drivers/net/usb/smsc75xx.*
21538
21539 USB SMSC95XX ETHERNET DRIVER
21540 M:      Steve Glendinning <[email protected]>
21541 M:      [email protected]
21542 L:      [email protected]
21543 S:      Maintained
21544 F:      drivers/net/usb/smsc95xx.*
21545
21546 USB SUBSYSTEM
21547 M:      Greg Kroah-Hartman <[email protected]>
21548 L:      [email protected]
21549 S:      Supported
21550 W:      http://www.linux-usb.org
21551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21552 F:      Documentation/devicetree/bindings/usb/
21553 F:      Documentation/usb/
21554 F:      drivers/usb/
21555 F:      include/dt-bindings/usb/
21556 F:      include/linux/usb.h
21557 F:      include/linux/usb/
21558
21559 USB TYPEC BUS FOR ALTERNATE MODES
21560 M:      Heikki Krogerus <[email protected]>
21561 L:      [email protected]
21562 S:      Maintained
21563 F:      Documentation/ABI/testing/sysfs-bus-typec
21564 F:      Documentation/driver-api/usb/typec_bus.rst
21565 F:      drivers/usb/typec/altmodes/
21566 F:      include/linux/usb/typec_altmode.h
21567
21568 USB TYPEC CLASS
21569 M:      Heikki Krogerus <[email protected]>
21570 L:      [email protected]
21571 S:      Maintained
21572 F:      Documentation/ABI/testing/sysfs-class-typec
21573 F:      Documentation/driver-api/usb/typec.rst
21574 F:      drivers/usb/typec/
21575 F:      include/linux/usb/typec.h
21576
21577 USB TYPEC INTEL PMC MUX DRIVER
21578 M:      Heikki Krogerus <[email protected]>
21579 L:      [email protected]
21580 S:      Maintained
21581 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21582 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21583
21584 USB TYPEC PI3USB30532 MUX DRIVER
21585 M:      Hans de Goede <[email protected]>
21586 L:      [email protected]
21587 S:      Maintained
21588 F:      drivers/usb/typec/mux/pi3usb30532.c
21589
21590 USB TYPEC PORT CONTROLLER DRIVERS
21591 M:      Guenter Roeck <[email protected]>
21592 L:      [email protected]
21593 S:      Maintained
21594 F:      drivers/usb/typec/tcpm/
21595
21596 USB UHCI DRIVER
21597 M:      Alan Stern <[email protected]>
21598 L:      [email protected]
21599 S:      Maintained
21600 F:      drivers/usb/host/uhci*
21601
21602 USB VIDEO CLASS
21603 M:      Laurent Pinchart <[email protected]>
21604 L:      [email protected]
21605 S:      Maintained
21606 W:      http://www.ideasonboard.org/uvc/
21607 T:      git git://linuxtv.org/media_tree.git
21608 F:      drivers/media/usb/uvc/
21609 F:      include/uapi/linux/uvcvideo.h
21610
21611 USB WEBCAM GADGET
21612 M:      Laurent Pinchart <[email protected]>
21613 M:      Daniel Scally <[email protected]>
21614 L:      [email protected]
21615 S:      Maintained
21616 F:      drivers/usb/gadget/function/*uvc*
21617 F:      drivers/usb/gadget/legacy/webcam.c
21618 F:      include/uapi/linux/usb/g_uvc.h
21619
21620 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21621 M:      Jussi Kivilinna <[email protected]>
21622 L:      [email protected]
21623 S:      Maintained
21624 F:      drivers/net/wireless/rndis_wlan.c
21625
21626 USB XHCI DRIVER
21627 M:      Mathias Nyman <[email protected]>
21628 L:      [email protected]
21629 S:      Supported
21630 F:      drivers/usb/host/pci-quirks*
21631 F:      drivers/usb/host/xhci*
21632
21633 USB ZD1201 DRIVER
21634 L:      [email protected]
21635 S:      Orphan
21636 W:      http://linux-lc100020.sourceforge.net
21637 F:      drivers/net/wireless/zydas/zd1201.*
21638
21639 USB ZR364XX DRIVER
21640 M:      Antoine Jacquet <[email protected]>
21641 L:      [email protected]
21642 L:      [email protected]
21643 S:      Maintained
21644 W:      http://royale.zerezo.com/zr364xx/
21645 T:      git git://linuxtv.org/media_tree.git
21646 F:      Documentation/admin-guide/media/zr364xx*
21647 F:      drivers/staging/media/deprecated/zr364xx/
21648
21649 USER DATAGRAM PROTOCOL (UDP)
21650 M:      Willem de Bruijn <[email protected]>
21651 S:      Maintained
21652 F:      include/linux/udp.h
21653 F:      net/ipv4/udp.c
21654 F:      net/ipv6/udp.c
21655
21656 USER-MODE LINUX (UML)
21657 M:      Richard Weinberger <[email protected]>
21658 M:      Anton Ivanov <[email protected]>
21659 M:      Johannes Berg <[email protected]>
21660 L:      [email protected]
21661 S:      Maintained
21662 W:      http://user-mode-linux.sourceforge.net
21663 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21666 F:      Documentation/virt/uml/
21667 F:      arch/um/
21668 F:      arch/x86/um/
21669 F:      fs/hostfs/
21670
21671 USERSPACE COPYIN/COPYOUT (UIOVEC)
21672 M:      Alexander Viro <[email protected]>
21673 S:      Maintained
21674 F:      include/linux/uio.h
21675 F:      lib/iov_iter.c
21676
21677 USERSPACE DMA BUFFER DRIVER
21678 M:      Gerd Hoffmann <[email protected]>
21679 L:      [email protected]
21680 S:      Maintained
21681 T:      git git://anongit.freedesktop.org/drm/drm-misc
21682 F:      drivers/dma-buf/udmabuf.c
21683 F:      include/uapi/linux/udmabuf.h
21684
21685 USERSPACE I/O (UIO)
21686 M:      Greg Kroah-Hartman <[email protected]>
21687 S:      Maintained
21688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21689 F:      Documentation/driver-api/uio-howto.rst
21690 F:      drivers/uio/
21691 F:      include/linux/uio_driver.h
21692
21693 UTIL-LINUX PACKAGE
21694 M:      Karel Zak <[email protected]>
21695 L:      [email protected]
21696 S:      Maintained
21697 W:      http://en.wikipedia.org/wiki/Util-linux
21698 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21699
21700 UUID HELPERS
21701 R:      Andy Shevchenko <[email protected]>
21702 L:      [email protected]
21703 S:      Maintained
21704 F:      include/linux/uuid.h
21705 F:      include/uapi/linux/uuid.h
21706 F:      lib/test_uuid.c
21707 F:      lib/uuid.c
21708
21709 UV SYSFS DRIVER
21710 M:      Justin Ernst <[email protected]>
21711 L:      [email protected]
21712 S:      Maintained
21713 F:      drivers/platform/x86/uv_sysfs.c
21714
21715 UVESAFB DRIVER
21716 M:      Michal Januszewski <[email protected]>
21717 L:      [email protected]
21718 S:      Maintained
21719 W:      https://github.com/mjanusz/v86d
21720 F:      Documentation/fb/uvesafb.rst
21721 F:      drivers/video/fbdev/uvesafb.*
21722
21723 Ux500 CLOCK DRIVERS
21724 M:      Ulf Hansson <[email protected]>
21725 L:      [email protected]
21726 L:      [email protected] (moderated for non-subscribers)
21727 S:      Maintained
21728 F:      drivers/clk/ux500/
21729
21730 VF610 NAND DRIVER
21731 M:      Stefan Agner <[email protected]>
21732 L:      [email protected]
21733 S:      Supported
21734 F:      drivers/mtd/nand/raw/vf610_nfc.c
21735
21736 VFAT/FAT/MSDOS FILESYSTEM
21737 M:      OGAWA Hirofumi <[email protected]>
21738 S:      Maintained
21739 F:      Documentation/filesystems/vfat.rst
21740 F:      fs/fat/
21741 F:      tools/testing/selftests/filesystems/fat/
21742
21743 VFIO DRIVER
21744 M:      Alex Williamson <[email protected]>
21745 R:      Cornelia Huck <[email protected]>
21746 L:      [email protected]
21747 S:      Maintained
21748 T:      git https://github.com/awilliam/linux-vfio.git
21749 F:      Documentation/ABI/testing/sysfs-devices-vfio-dev
21750 F:      Documentation/driver-api/vfio.rst
21751 F:      drivers/vfio/
21752 F:      include/linux/vfio.h
21753 F:      include/linux/vfio_pci_core.h
21754 F:      include/uapi/linux/vfio.h
21755
21756 VFIO FSL-MC DRIVER
21757 M:      Diana Craciun <[email protected]>
21758 L:      [email protected]
21759 S:      Maintained
21760 F:      drivers/vfio/fsl-mc/
21761
21762 VFIO HISILICON PCI DRIVER
21763 M:      Longfang Liu <[email protected]>
21764 M:      Shameer Kolothum <[email protected]>
21765 L:      [email protected]
21766 S:      Maintained
21767 F:      drivers/vfio/pci/hisilicon/
21768
21769 VFIO MEDIATED DEVICE DRIVERS
21770 M:      Kirti Wankhede <[email protected]>
21771 L:      [email protected]
21772 S:      Maintained
21773 F:      Documentation/driver-api/vfio-mediated-device.rst
21774 F:      drivers/vfio/mdev/
21775 F:      include/linux/mdev.h
21776 F:      samples/vfio-mdev/
21777
21778 VFIO PCI DEVICE SPECIFIC DRIVERS
21779 R:      Jason Gunthorpe <[email protected]>
21780 R:      Yishai Hadas <[email protected]>
21781 R:      Shameer Kolothum <[email protected]>
21782 R:      Kevin Tian <[email protected]>
21783 L:      [email protected]
21784 S:      Maintained
21785 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21786 F:      drivers/vfio/pci/*/
21787
21788 VFIO PLATFORM DRIVER
21789 M:      Eric Auger <[email protected]>
21790 L:      [email protected]
21791 S:      Maintained
21792 F:      drivers/vfio/platform/
21793
21794 VFIO MLX5 PCI DRIVER
21795 M:      Yishai Hadas <[email protected]>
21796 L:      [email protected]
21797 S:      Maintained
21798 F:      drivers/vfio/pci/mlx5/
21799
21800 VGA_SWITCHEROO
21801 R:      Lukas Wunner <[email protected]>
21802 S:      Maintained
21803 T:      git git://anongit.freedesktop.org/drm/drm-misc
21804 F:      Documentation/gpu/vga-switcheroo.rst
21805 F:      drivers/gpu/vga/vga_switcheroo.c
21806 F:      include/linux/vga_switcheroo.h
21807
21808 VIA RHINE NETWORK DRIVER
21809 S:      Maintained
21810 M:      Kevin Brace <[email protected]>
21811 F:      drivers/net/ethernet/via/via-rhine.c
21812
21813 VIA SD/MMC CARD CONTROLLER DRIVER
21814 M:      Bruce Chang <[email protected]>
21815 M:      Harald Welte <[email protected]>
21816 S:      Maintained
21817 F:      drivers/mmc/host/via-sdmmc.c
21818
21819 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21820 M:      Florian Tobias Schandinat <[email protected]>
21821 L:      [email protected]
21822 S:      Maintained
21823 F:      drivers/video/fbdev/via/
21824 F:      include/linux/via-core.h
21825 F:      include/linux/via-gpio.h
21826 F:      include/linux/via_i2c.h
21827
21828 VIA VELOCITY NETWORK DRIVER
21829 M:      Francois Romieu <[email protected]>
21830 L:      [email protected]
21831 S:      Maintained
21832 F:      drivers/net/ethernet/via/via-velocity.*
21833
21834 VICODEC VIRTUAL CODEC DRIVER
21835 M:      Hans Verkuil <[email protected]>
21836 L:      [email protected]
21837 S:      Maintained
21838 W:      https://linuxtv.org
21839 T:      git git://linuxtv.org/media_tree.git
21840 F:      drivers/media/test-drivers/vicodec/*
21841
21842 VIDEO I2C POLLING DRIVER
21843 M:      Matt Ranostay <[email protected]>
21844 L:      [email protected]
21845 S:      Maintained
21846 F:      drivers/media/i2c/video-i2c.c
21847
21848 VIDEO MULTIPLEXER DRIVER
21849 M:      Philipp Zabel <[email protected]>
21850 L:      [email protected]
21851 S:      Maintained
21852 F:      drivers/media/platform/video-mux.c
21853
21854 VIDEOBUF2 FRAMEWORK
21855 M:      Tomasz Figa <[email protected]>
21856 M:      Marek Szyprowski <[email protected]>
21857 L:      [email protected]
21858 S:      Maintained
21859 F:      drivers/media/common/videobuf2/*
21860 F:      include/media/videobuf2-*
21861
21862 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21863 M:      Shuah Khan <[email protected]>
21864 R:      Kieran Bingham <[email protected]>
21865 L:      [email protected]
21866 S:      Maintained
21867 W:      https://linuxtv.org
21868 T:      git git://linuxtv.org/media_tree.git
21869 F:      drivers/media/test-drivers/vimc/*
21870
21871 VIRT LIB
21872 M:      Alex Williamson <[email protected]>
21873 M:      Paolo Bonzini <[email protected]>
21874 L:      [email protected]
21875 S:      Supported
21876 F:      virt/lib/
21877
21878 VIRTIO AND VHOST VSOCK DRIVER
21879 M:      Stefan Hajnoczi <[email protected]>
21880 M:      Stefano Garzarella <[email protected]>
21881 L:      [email protected]
21882 L:      [email protected]
21883 L:      [email protected]
21884 S:      Maintained
21885 F:      drivers/vhost/vsock.c
21886 F:      include/linux/virtio_vsock.h
21887 F:      include/uapi/linux/virtio_vsock.h
21888 F:      net/vmw_vsock/virtio_transport.c
21889 F:      net/vmw_vsock/virtio_transport_common.c
21890
21891 VIRTIO BLOCK AND SCSI DRIVERS
21892 M:      "Michael S. Tsirkin" <[email protected]>
21893 M:      Jason Wang <[email protected]>
21894 R:      Paolo Bonzini <[email protected]>
21895 R:      Stefan Hajnoczi <[email protected]>
21896 L:      [email protected]
21897 S:      Maintained
21898 F:      drivers/block/virtio_blk.c
21899 F:      drivers/scsi/virtio_scsi.c
21900 F:      drivers/vhost/scsi.c
21901 F:      include/uapi/linux/virtio_blk.h
21902 F:      include/uapi/linux/virtio_scsi.h
21903
21904 VIRTIO CONSOLE DRIVER
21905 M:      Amit Shah <[email protected]>
21906 L:      [email protected]
21907 S:      Maintained
21908 F:      drivers/char/virtio_console.c
21909 F:      include/linux/virtio_console.h
21910 F:      include/uapi/linux/virtio_console.h
21911
21912 VIRTIO CORE AND NET DRIVERS
21913 M:      "Michael S. Tsirkin" <[email protected]>
21914 M:      Jason Wang <[email protected]>
21915 L:      [email protected]
21916 S:      Maintained
21917 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21918 F:      Documentation/ABI/testing/sysfs-class-vduse
21919 F:      Documentation/devicetree/bindings/virtio/
21920 F:      drivers/block/virtio_blk.c
21921 F:      drivers/crypto/virtio/
21922 F:      drivers/net/virtio_net.c
21923 F:      drivers/vdpa/
21924 F:      drivers/virtio/
21925 F:      include/linux/vdpa.h
21926 F:      include/linux/virtio*.h
21927 F:      include/uapi/linux/virtio_*.h
21928 F:      tools/virtio/
21929
21930 VISL VIRTUAL STATELESS DECODER DRIVER
21931 M:      Daniel Almeida <[email protected]>
21932 L:      [email protected]
21933 S:      Supported
21934 F:      drivers/media/test-drivers/visl
21935
21936 IFCVF VIRTIO DATA PATH ACCELERATOR
21937 R:      Zhu Lingshan <[email protected]>
21938 F:      drivers/vdpa/ifcvf/
21939
21940 VIRTIO BALLOON
21941 M:      "Michael S. Tsirkin" <[email protected]>
21942 M:      David Hildenbrand <[email protected]>
21943 L:      [email protected]
21944 S:      Maintained
21945 F:      drivers/virtio/virtio_balloon.c
21946 F:      include/uapi/linux/virtio_balloon.h
21947 F:      include/linux/balloon_compaction.h
21948 F:      mm/balloon_compaction.c
21949
21950 VIRTIO CRYPTO DRIVER
21951 M:      Gonglei <[email protected]>
21952 L:      [email protected]
21953 L:      [email protected]
21954 S:      Maintained
21955 F:      drivers/crypto/virtio/
21956 F:      include/uapi/linux/virtio_crypto.h
21957
21958 VIRTIO DRIVERS FOR S390
21959 M:      Cornelia Huck <[email protected]>
21960 M:      Halil Pasic <[email protected]>
21961 M:      Eric Farman <[email protected]>
21962 L:      [email protected]
21963 L:      [email protected]
21964 L:      [email protected]
21965 S:      Supported
21966 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21967 F:      drivers/s390/virtio/
21968
21969 VIRTIO FILE SYSTEM
21970 M:      Vivek Goyal <[email protected]>
21971 M:      Stefan Hajnoczi <[email protected]>
21972 M:      Miklos Szeredi <[email protected]>
21973 L:      [email protected]
21974 L:      [email protected]
21975 S:      Supported
21976 W:      https://virtio-fs.gitlab.io/
21977 F:      Documentation/filesystems/virtiofs.rst
21978 F:      fs/fuse/virtio_fs.c
21979 F:      include/uapi/linux/virtio_fs.h
21980
21981 VIRTIO GPIO DRIVER
21982 M:      Enrico Weigelt, metux IT consult <[email protected]>
21983 M:      Viresh Kumar <[email protected]>
21984 L:      [email protected]
21985 L:      [email protected]
21986 S:      Maintained
21987 F:      drivers/gpio/gpio-virtio.c
21988 F:      include/uapi/linux/virtio_gpio.h
21989
21990 VIRTIO GPU DRIVER
21991 M:      David Airlie <[email protected]>
21992 M:      Gerd Hoffmann <[email protected]>
21993 R:      Gurchetan Singh <[email protected]>
21994 R:      Chia-I Wu <[email protected]>
21995 L:      [email protected]
21996 L:      [email protected]
21997 S:      Maintained
21998 T:      git git://anongit.freedesktop.org/drm/drm-misc
21999 F:      drivers/gpu/drm/virtio/
22000 F:      include/uapi/linux/virtio_gpu.h
22001
22002 VIRTIO HOST (VHOST)
22003 M:      "Michael S. Tsirkin" <[email protected]>
22004 M:      Jason Wang <[email protected]>
22005 L:      [email protected]
22006 L:      [email protected]
22007 L:      [email protected]
22008 S:      Maintained
22009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
22010 F:      drivers/vhost/
22011 F:      include/linux/vhost_iotlb.h
22012 F:      include/uapi/linux/vhost.h
22013
22014 VIRTIO INPUT DRIVER
22015 M:      Gerd Hoffmann <[email protected]>
22016 S:      Maintained
22017 F:      drivers/virtio/virtio_input.c
22018 F:      include/uapi/linux/virtio_input.h
22019
22020 VIRTIO IOMMU DRIVER
22021 M:      Jean-Philippe Brucker <[email protected]>
22022 L:      [email protected]
22023 S:      Maintained
22024 F:      drivers/iommu/virtio-iommu.c
22025 F:      include/uapi/linux/virtio_iommu.h
22026
22027 VIRTIO MEM DRIVER
22028 M:      David Hildenbrand <[email protected]>
22029 L:      [email protected]
22030 S:      Maintained
22031 W:      https://virtio-mem.gitlab.io/
22032 F:      drivers/virtio/virtio_mem.c
22033 F:      include/uapi/linux/virtio_mem.h
22034
22035 VIRTIO SOUND DRIVER
22036 M:      Anton Yakovlev <[email protected]>
22037 M:      "Michael S. Tsirkin" <[email protected]>
22038 L:      [email protected]
22039 L:      [email protected] (moderated for non-subscribers)
22040 S:      Maintained
22041 F:      include/uapi/linux/virtio_snd.h
22042 F:      sound/virtio/*
22043
22044 VIRTIO I2C DRIVER
22045 M:      Conghui Chen <[email protected]>
22046 M:      Viresh Kumar <[email protected]>
22047 L:      [email protected]
22048 L:      [email protected]
22049 S:      Maintained
22050 F:      drivers/i2c/busses/i2c-virtio.c
22051 F:      include/uapi/linux/virtio_i2c.h
22052
22053 VIRTIO PMEM DRIVER
22054 M:      Pankaj Gupta <[email protected]>
22055 L:      [email protected]
22056 S:      Maintained
22057 F:      drivers/nvdimm/virtio_pmem.c
22058 F:      drivers/nvdimm/nd_virtio.c
22059
22060 VIRTUAL BOX GUEST DEVICE DRIVER
22061 M:      Hans de Goede <[email protected]>
22062 M:      Arnd Bergmann <[email protected]>
22063 M:      Greg Kroah-Hartman <[email protected]>
22064 S:      Maintained
22065 F:      drivers/virt/vboxguest/
22066 F:      include/linux/vbox_utils.h
22067 F:      include/uapi/linux/vbox*.h
22068
22069 VIRTUAL BOX SHARED FOLDER VFS DRIVER
22070 M:      Hans de Goede <[email protected]>
22071 L:      [email protected]
22072 S:      Maintained
22073 F:      fs/vboxsf/*
22074
22075 VIRTUAL SERIO DEVICE DRIVER
22076 M:      Stephen Chandler Paul <[email protected]>
22077 S:      Maintained
22078 F:      drivers/input/serio/userio.c
22079 F:      include/uapi/linux/userio.h
22080
22081 VIVID VIRTUAL VIDEO DRIVER
22082 M:      Hans Verkuil <[email protected]>
22083 L:      [email protected]
22084 S:      Maintained
22085 W:      https://linuxtv.org
22086 T:      git git://linuxtv.org/media_tree.git
22087 F:      drivers/media/test-drivers/vivid/*
22088
22089 VIDTV VIRTUAL DIGITAL TV DRIVER
22090 M:      Daniel W. S. Almeida <[email protected]>
22091 L:      [email protected]
22092 S:      Maintained
22093 W:      https://linuxtv.org
22094 T:      git git://linuxtv.org/media_tree.git
22095 F:      drivers/media/test-drivers/vidtv/*
22096
22097 VLYNQ BUS
22098 M:      Florian Fainelli <[email protected]>
22099 L:      [email protected] (subscribers-only)
22100 S:      Maintained
22101 F:      drivers/vlynq/vlynq.c
22102 F:      include/linux/vlynq.h
22103
22104 VME SUBSYSTEM
22105 M:      Martyn Welch <[email protected]>
22106 M:      Manohar Vanga <[email protected]>
22107 M:      Greg Kroah-Hartman <[email protected]>
22108 L:      [email protected]
22109 S:      Odd fixes
22110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22111 F:      Documentation/driver-api/vme.rst
22112 F:      drivers/staging/vme_user/
22113
22114 VM SOCKETS (AF_VSOCK)
22115 M:      Stefano Garzarella <[email protected]>
22116 L:      [email protected]
22117 L:      [email protected]
22118 S:      Maintained
22119 F:      drivers/net/vsockmon.c
22120 F:      include/net/af_vsock.h
22121 F:      include/uapi/linux/vm_sockets.h
22122 F:      include/uapi/linux/vm_sockets_diag.h
22123 F:      include/uapi/linux/vsockmon.h
22124 F:      net/vmw_vsock/
22125 F:      tools/testing/vsock/
22126
22127 VMWARE BALLOON DRIVER
22128 M:      Nadav Amit <[email protected]>
22129 R:      VMware PV-Drivers Reviewers <[email protected]>
22130 L:      [email protected]
22131 S:      Supported
22132 F:      drivers/misc/vmw_balloon.c
22133
22134 VMWARE HYPERVISOR INTERFACE
22135 M:      Srivatsa S. Bhat (VMware) <[email protected]>
22136 M:      Alexey Makhalov <[email protected]>
22137 R:      VMware PV-Drivers Reviewers <[email protected]>
22138 L:      [email protected]
22139 L:      [email protected]
22140 S:      Supported
22141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
22142 F:      arch/x86/include/asm/vmware.h
22143 F:      arch/x86/kernel/cpu/vmware.c
22144
22145 VMWARE PVRDMA DRIVER
22146 M:      Bryan Tan <[email protected]>
22147 M:      Vishnu Dasa <[email protected]>
22148 R:      VMware PV-Drivers Reviewers <[email protected]>
22149 L:      [email protected]
22150 S:      Supported
22151 F:      drivers/infiniband/hw/vmw_pvrdma/
22152
22153 VMWARE PVSCSI DRIVER
22154 M:      Vishal Bhakta <[email protected]>
22155 R:      VMware PV-Drivers Reviewers <[email protected]>
22156 L:      [email protected]
22157 S:      Supported
22158 F:      drivers/scsi/vmw_pvscsi.c
22159 F:      drivers/scsi/vmw_pvscsi.h
22160
22161 VMWARE VIRTUAL PTP CLOCK DRIVER
22162 M:      Srivatsa S. Bhat (VMware) <[email protected]>
22163 M:      Deep Shah <[email protected]>
22164 R:      Alexey Makhalov <[email protected]>
22165 R:      VMware PV-Drivers Reviewers <[email protected]>
22166 L:      [email protected]
22167 S:      Supported
22168 F:      drivers/ptp/ptp_vmw.c
22169
22170 VMWARE VMCI DRIVER
22171 M:      Bryan Tan <[email protected]>
22172 M:      Vishnu Dasa <[email protected]>
22173 R:      VMware PV-Drivers Reviewers <[email protected]>
22174 L:      [email protected]
22175 S:      Supported
22176 F:      drivers/misc/vmw_vmci/
22177 F:      include/linux/vmw_vmci*
22178
22179 VMWARE VMMOUSE SUBDRIVER
22180 M:      Zack Rusin <[email protected]>
22181 R:      VMware Graphics Reviewers <[email protected]>
22182 R:      VMware PV-Drivers Reviewers <[email protected]>
22183 L:      [email protected]
22184 S:      Supported
22185 F:      drivers/input/mouse/vmmouse.c
22186 F:      drivers/input/mouse/vmmouse.h
22187
22188 VMWARE VMXNET3 ETHERNET DRIVER
22189 M:      Ronak Doshi <[email protected]>
22190 R:      VMware PV-Drivers Reviewers <[email protected]>
22191 L:      [email protected]
22192 S:      Supported
22193 F:      drivers/net/vmxnet3/
22194
22195 VMWARE VSOCK VMCI TRANSPORT DRIVER
22196 M:      Bryan Tan <[email protected]>
22197 M:      Vishnu Dasa <[email protected]>
22198 R:      VMware PV-Drivers Reviewers <[email protected]>
22199 L:      [email protected]
22200 S:      Supported
22201 F:      net/vmw_vsock/vmci_transport*
22202
22203 VOCORE VOCORE2 BOARD
22204 M:      Harvey Hunt <[email protected]>
22205 L:      [email protected]
22206 S:      Maintained
22207 F:      arch/mips/boot/dts/ralink/vocore2.dts
22208
22209 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
22210 M:      Liam Girdwood <[email protected]>
22211 M:      Mark Brown <[email protected]>
22212 L:      [email protected]
22213 S:      Supported
22214 W:      http://www.slimlogic.co.uk/?p=48
22215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
22216 F:      Documentation/devicetree/bindings/regulator/
22217 F:      Documentation/power/regulator/
22218 F:      drivers/regulator/
22219 F:      include/dt-bindings/regulator/
22220 F:      include/linux/regulator/
22221 K:      regulator_get_optional
22222
22223 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
22224 R:      Matti Vaittinen <[email protected]>
22225 F:      drivers/regulator/irq_helpers.c
22226
22227 VRF
22228 M:      David Ahern <[email protected]>
22229 L:      [email protected]
22230 S:      Maintained
22231 F:      Documentation/networking/vrf.rst
22232 F:      drivers/net/vrf.c
22233
22234 VSPRINTF
22235 M:      Petr Mladek <[email protected]>
22236 M:      Steven Rostedt <[email protected]>
22237 M:      Sergey Senozhatsky <[email protected]>
22238 R:      Andy Shevchenko <[email protected]>
22239 R:      Rasmus Villemoes <[email protected]>
22240 S:      Maintained
22241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
22242 F:      Documentation/core-api/printk-formats.rst
22243 F:      lib/test_printf.c
22244 F:      lib/test_scanf.c
22245 F:      lib/vsprintf.c
22246
22247 VT1211 HARDWARE MONITOR DRIVER
22248 M:      Juerg Haefliger <[email protected]>
22249 L:      [email protected]
22250 S:      Maintained
22251 F:      Documentation/hwmon/vt1211.rst
22252 F:      drivers/hwmon/vt1211.c
22253
22254 VT8231 HARDWARE MONITOR DRIVER
22255 M:      Roger Lucas <[email protected]>
22256 L:      [email protected]
22257 S:      Maintained
22258 F:      drivers/hwmon/vt8231.c
22259
22260 VUB300 USB to SDIO/SD/MMC bridge chip
22261 L:      [email protected]
22262 S:      Orphan
22263 F:      drivers/mmc/host/vub300.c
22264
22265 W1 DALLAS'S 1-WIRE BUS
22266 M:      Evgeniy Polyakov <[email protected]>
22267 S:      Maintained
22268 F:      Documentation/devicetree/bindings/w1/
22269 F:      Documentation/w1/
22270 F:      drivers/w1/
22271 F:      include/linux/w1.h
22272
22273 W83791D HARDWARE MONITORING DRIVER
22274 M:      Marc Hulsman <[email protected]>
22275 L:      [email protected]
22276 S:      Maintained
22277 F:      Documentation/hwmon/w83791d.rst
22278 F:      drivers/hwmon/w83791d.c
22279
22280 W83793 HARDWARE MONITORING DRIVER
22281 M:      Rudolf Marek <[email protected]>
22282 L:      [email protected]
22283 S:      Maintained
22284 F:      Documentation/hwmon/w83793.rst
22285 F:      drivers/hwmon/w83793.c
22286
22287 W83795 HARDWARE MONITORING DRIVER
22288 M:      Jean Delvare <[email protected]>
22289 L:      [email protected]
22290 S:      Maintained
22291 F:      drivers/hwmon/w83795.c
22292
22293 W83L51xD SD/MMC CARD INTERFACE DRIVER
22294 M:      Pierre Ossman <[email protected]>
22295 S:      Maintained
22296 F:      drivers/mmc/host/wbsd.*
22297
22298 WACOM PROTOCOL 4 SERIAL TABLETS
22299 M:      Julian Squires <[email protected]>
22300 M:      Hans de Goede <[email protected]>
22301 L:      [email protected]
22302 S:      Maintained
22303 F:      drivers/input/tablet/wacom_serial4.c
22304
22305 WANGXUN ETHERNET DRIVER
22306 M:      Jiawen Wu <[email protected]>
22307 M:      Mengyuan Lou <[email protected]>
22308 W:      https://www.net-swift.com
22309 L:      [email protected]
22310 S:      Maintained
22311 F:      Documentation/networking/device_drivers/ethernet/wangxun/*
22312 F:      drivers/net/ethernet/wangxun/
22313
22314 WATCHDOG DEVICE DRIVERS
22315 M:      Wim Van Sebroeck <[email protected]>
22316 M:      Guenter Roeck <[email protected]>
22317 L:      [email protected]
22318 S:      Maintained
22319 W:      http://www.linux-watchdog.org/
22320 T:      git git://www.linux-watchdog.org/linux-watchdog.git
22321 F:      Documentation/devicetree/bindings/watchdog/
22322 F:      Documentation/watchdog/
22323 F:      drivers/watchdog/
22324 F:      include/linux/watchdog.h
22325 F:      include/uapi/linux/watchdog.h
22326 F:      include/trace/events/watchdog.h
22327
22328 WHISKEYCOVE PMIC GPIO DRIVER
22329 M:      Kuppuswamy Sathyanarayanan <[email protected]>
22330 L:      [email protected]
22331 S:      Maintained
22332 F:      drivers/gpio/gpio-wcove.c
22333
22334 WHWAVE RTC DRIVER
22335 M:      Dianlong Li <[email protected]>
22336 L:      [email protected]
22337 S:      Maintained
22338 F:      drivers/rtc/rtc-sd3078.c
22339
22340 WIIMOTE HID DRIVER
22341 M:      David Rheinsberg <[email protected]>
22342 L:      [email protected]
22343 S:      Maintained
22344 F:      drivers/hid/hid-wiimote*
22345
22346 WILOCITY WIL6210 WIRELESS DRIVER
22347 L:      [email protected]
22348 S:      Orphan
22349 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
22350 F:      drivers/net/wireless/ath/wil6210/
22351
22352 WINBOND CIR DRIVER
22353 M:      David Härdeman <[email protected]>
22354 S:      Maintained
22355 F:      drivers/media/rc/winbond-cir.c
22356
22357 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
22358 M:      William Breathitt Gray <[email protected]>
22359 L:      [email protected]
22360 S:      Maintained
22361 F:      drivers/watchdog/ebc-c384_wdt.c
22362
22363 WINSYSTEMS WS16C48 GPIO DRIVER
22364 M:      William Breathitt Gray <[email protected]>
22365 L:      [email protected]
22366 S:      Maintained
22367 F:      drivers/gpio/gpio-ws16c48.c
22368
22369 WIREGUARD SECURE NETWORK TUNNEL
22370 M:      Jason A. Donenfeld <[email protected]>
22371 L:      [email protected]
22372 L:      [email protected]
22373 S:      Maintained
22374 F:      drivers/net/wireguard/
22375 F:      tools/testing/selftests/wireguard/
22376
22377 WISTRON LAPTOP BUTTON DRIVER
22378 M:      Miloslav Trmac <[email protected]>
22379 S:      Maintained
22380 F:      drivers/input/misc/wistron_btns.c
22381
22382 WL3501 WIRELESS PCMCIA CARD DRIVER
22383 L:      [email protected]
22384 S:      Odd fixes
22385 F:      drivers/net/wireless/wl3501*
22386
22387 WOLFSON MICROELECTRONICS DRIVERS
22388 L:      [email protected]
22389 S:      Supported
22390 W:      https://github.com/CirrusLogic/linux-drivers/wiki
22391 T:      git https://github.com/CirrusLogic/linux-drivers.git
22392 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22393 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22394 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
22395 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22396 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
22397 F:      Documentation/devicetree/bindings/sound/wm*
22398 F:      Documentation/hwmon/wm83??.rst
22399 F:      arch/arm/mach-s3c/mach-crag6410*
22400 F:      drivers/clk/clk-wm83*.c
22401 F:      drivers/gpio/gpio-*wm*.c
22402 F:      drivers/gpio/gpio-arizona.c
22403 F:      drivers/hwmon/wm83??-hwmon.c
22404 F:      drivers/input/misc/wm831x-on.c
22405 F:      drivers/input/touchscreen/wm831x-ts.c
22406 F:      drivers/input/touchscreen/wm97*.c
22407 F:      drivers/leds/leds-wm83*.c
22408 F:      drivers/mfd/arizona*
22409 F:      drivers/mfd/cs47l24*
22410 F:      drivers/mfd/wm*.c
22411 F:      drivers/power/supply/wm83*.c
22412 F:      drivers/regulator/arizona*
22413 F:      drivers/regulator/wm8*.c
22414 F:      drivers/rtc/rtc-wm83*.c
22415 F:      drivers/video/backlight/wm83*_bl.c
22416 F:      drivers/watchdog/wm83*_wdt.c
22417 F:      include/linux/mfd/arizona/
22418 F:      include/linux/mfd/wm831x/
22419 F:      include/linux/mfd/wm8350/
22420 F:      include/linux/mfd/wm8400*
22421 F:      include/linux/regulator/arizona*
22422 F:      include/linux/wm97xx.h
22423 F:      include/sound/wm????.h
22424 F:      sound/soc/codecs/arizona*
22425 F:      sound/soc/codecs/cs47l24*
22426 F:      sound/soc/codecs/wm*
22427
22428 WORKQUEUE
22429 M:      Tejun Heo <[email protected]>
22430 R:      Lai Jiangshan <[email protected]>
22431 S:      Maintained
22432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22433 F:      Documentation/core-api/workqueue.rst
22434 F:      include/linux/workqueue.h
22435 F:      kernel/workqueue.c
22436
22437 WWAN DRIVERS
22438 M:      Loic Poulain <[email protected]>
22439 M:      Sergey Ryazanov <[email protected]>
22440 R:      Johannes Berg <[email protected]>
22441 L:      [email protected]
22442 S:      Maintained
22443 F:      drivers/net/wwan/
22444 F:      include/linux/wwan.h
22445 F:      include/uapi/linux/wwan.h
22446
22447 X-POWERS AXP288 PMIC DRIVERS
22448 M:      Hans de Goede <[email protected]>
22449 S:      Maintained
22450 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22451 N:      axp288
22452
22453 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22454 M:      Chen-Yu Tsai <[email protected]>
22455 L:      [email protected]
22456 S:      Maintained
22457 N:      axp[128]
22458
22459 X.25 STACK
22460 M:      Martin Schiller <[email protected]>
22461 L:      [email protected]
22462 S:      Maintained
22463 F:      Documentation/networking/lapb-module.rst
22464 F:      Documentation/networking/x25*
22465 F:      drivers/net/wan/hdlc_x25.c
22466 F:      drivers/net/wan/lapbether.c
22467 F:      include/*/lapb.h
22468 F:      include/net/x25*
22469 F:      include/uapi/linux/x25.h
22470 F:      net/lapb/
22471 F:      net/x25/
22472
22473 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22474 M:      Thomas Gleixner <[email protected]>
22475 M:      Ingo Molnar <[email protected]>
22476 M:      Borislav Petkov <[email protected]>
22477 M:      Dave Hansen <[email protected]>
22478 M:      [email protected]
22479 R:      "H. Peter Anvin" <[email protected]>
22480 L:      [email protected]
22481 S:      Maintained
22482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22483 F:      Documentation/devicetree/bindings/x86/
22484 F:      Documentation/x86/
22485 F:      arch/x86/
22486
22487 X86 ENTRY CODE
22488 M:      Andy Lutomirski <[email protected]>
22489 L:      [email protected]
22490 S:      Maintained
22491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22492 F:      arch/x86/entry/
22493
22494 X86 MCE INFRASTRUCTURE
22495 M:      Tony Luck <[email protected]>
22496 M:      Borislav Petkov <[email protected]>
22497 L:      [email protected]
22498 S:      Maintained
22499 F:      Documentation/ABI/testing/sysfs-mce
22500 F:      Documentation/x86/x86_64/machinecheck.rst
22501 F:      arch/x86/kernel/cpu/mce/*
22502
22503 X86 MICROCODE UPDATE SUPPORT
22504 M:      Borislav Petkov <[email protected]>
22505 S:      Maintained
22506 F:      arch/x86/kernel/cpu/microcode/*
22507
22508 X86 MM
22509 M:      Dave Hansen <[email protected]>
22510 M:      Andy Lutomirski <[email protected]>
22511 M:      Peter Zijlstra <[email protected]>
22512 L:      [email protected]
22513 S:      Maintained
22514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22515 F:      arch/x86/mm/
22516
22517 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22518 M:      Hans de Goede <[email protected]>
22519 L:      [email protected]
22520 S:      Maintained
22521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22522 F:      drivers/platform/x86/x86-android-tablets.c
22523
22524 X86 PLATFORM DRIVERS
22525 M:      Hans de Goede <[email protected]>
22526 M:      Mark Gross <[email protected]>
22527 L:      [email protected]
22528 S:      Maintained
22529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22530 F:      drivers/platform/olpc/
22531 F:      drivers/platform/x86/
22532 F:      include/linux/platform_data/x86/
22533
22534 X86 PLATFORM DRIVERS - ARCH
22535 R:      Darren Hart <[email protected]>
22536 R:      Andy Shevchenko <[email protected]>
22537 L:      [email protected]
22538 L:      [email protected]
22539 S:      Maintained
22540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22541 F:      arch/x86/platform
22542
22543 X86 PLATFORM UV HPE SUPERDOME FLEX
22544 M:      Steve Wahl <[email protected]>
22545 R:      Mike Travis <[email protected]>
22546 R:      Dimitri Sivanich <[email protected]>
22547 R:      Russ Anderson <[email protected]>
22548 S:      Supported
22549 F:      arch/x86/include/asm/uv/
22550 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22551 F:      arch/x86/platform/uv/
22552
22553 X86 STACK UNWINDING
22554 M:      Josh Poimboeuf <[email protected]>
22555 M:      Peter Zijlstra <[email protected]>
22556 S:      Supported
22557 F:      arch/x86/include/asm/unwind*.h
22558 F:      arch/x86/kernel/dumpstack.c
22559 F:      arch/x86/kernel/stacktrace.c
22560 F:      arch/x86/kernel/unwind_*.c
22561
22562 X86 VDSO
22563 M:      Andy Lutomirski <[email protected]>
22564 L:      [email protected]
22565 S:      Maintained
22566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22567 F:      arch/x86/entry/vdso/
22568
22569 XARRAY
22570 M:      Matthew Wilcox <[email protected]>
22571 L:      [email protected]
22572 S:      Supported
22573 F:      Documentation/core-api/xarray.rst
22574 F:      include/linux/idr.h
22575 F:      include/linux/xarray.h
22576 F:      lib/idr.c
22577 F:      lib/xarray.c
22578 F:      tools/testing/radix-tree
22579
22580 XBOX DVD IR REMOTE
22581 M:      Benjamin Valentin <[email protected]>
22582 S:      Maintained
22583 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22584 F:      drivers/media/rc/xbox_remote.c
22585
22586 XC2028/3028 TUNER DRIVER
22587 M:      Mauro Carvalho Chehab <[email protected]>
22588 L:      [email protected]
22589 S:      Maintained
22590 W:      https://linuxtv.org
22591 T:      git git://linuxtv.org/media_tree.git
22592 F:      drivers/media/tuners/xc2028.*
22593
22594 XDP (eXpress Data Path)
22595 M:      Alexei Starovoitov <[email protected]>
22596 M:      Daniel Borkmann <[email protected]>
22597 M:      David S. Miller <[email protected]>
22598 M:      Jakub Kicinski <[email protected]>
22599 M:      Jesper Dangaard Brouer <[email protected]>
22600 M:      John Fastabend <[email protected]>
22601 L:      [email protected]
22602 L:      [email protected]
22603 S:      Supported
22604 F:      include/net/xdp.h
22605 F:      include/net/xdp_priv.h
22606 F:      include/trace/events/xdp.h
22607 F:      kernel/bpf/cpumap.c
22608 F:      kernel/bpf/devmap.c
22609 F:      net/core/xdp.c
22610 F:      samples/bpf/xdp*
22611 F:      tools/testing/selftests/bpf/*xdp*
22612 F:      tools/testing/selftests/bpf/*/*xdp*
22613 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22614 F:      drivers/net/ethernet/*/*/*xdp*
22615 K:      (?:\b|_)xdp(?:\b|_)
22616
22617 XDP SOCKETS (AF_XDP)
22618 M:      Björn Töpel <[email protected]>
22619 M:      Magnus Karlsson <[email protected]>
22620 M:      Maciej Fijalkowski <[email protected]>
22621 R:      Jonathan Lemon <[email protected]>
22622 L:      [email protected]
22623 L:      [email protected]
22624 S:      Maintained
22625 F:      Documentation/networking/af_xdp.rst
22626 F:      include/net/xdp_sock*
22627 F:      include/net/xsk_buff_pool.h
22628 F:      include/uapi/linux/if_xdp.h
22629 F:      include/uapi/linux/xdp_diag.h
22630 F:      include/net/netns/xdp.h
22631 F:      net/xdp/
22632 F:      tools/testing/selftests/bpf/*xsk*
22633
22634 XEN BLOCK SUBSYSTEM
22635 M:      Roger Pau Monné <[email protected]>
22636 L:      [email protected] (moderated for non-subscribers)
22637 S:      Supported
22638 F:      drivers/block/xen*
22639 F:      drivers/block/xen-blkback/*
22640
22641 XEN HYPERVISOR ARM
22642 M:      Stefano Stabellini <[email protected]>
22643 L:      [email protected] (moderated for non-subscribers)
22644 S:      Maintained
22645 F:      arch/arm/include/asm/xen/
22646 F:      arch/arm/xen/
22647
22648 XEN HYPERVISOR ARM64
22649 M:      Stefano Stabellini <[email protected]>
22650 L:      [email protected] (moderated for non-subscribers)
22651 S:      Maintained
22652 F:      arch/arm64/include/asm/xen/
22653 F:      arch/arm64/xen/
22654
22655 XEN HYPERVISOR INTERFACE
22656 M:      Juergen Gross <[email protected]>
22657 M:      Stefano Stabellini <[email protected]>
22658 R:      Oleksandr Tyshchenko <[email protected]>
22659 L:      [email protected] (moderated for non-subscribers)
22660 S:      Supported
22661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22662 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22663 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22664 F:      drivers/*/xen-*front.c
22665 F:      drivers/xen/
22666 F:      include/uapi/xen/
22667 F:      include/xen/
22668 F:      kernel/configs/xen.config
22669
22670 XEN HYPERVISOR X86
22671 M:      Juergen Gross <[email protected]>
22672 R:      Boris Ostrovsky <[email protected]>
22673 L:      [email protected] (moderated for non-subscribers)
22674 S:      Supported
22675 F:      arch/x86/configs/xen.config
22676 F:      arch/x86/include/asm/pvclock-abi.h
22677 F:      arch/x86/include/asm/xen/
22678 F:      arch/x86/platform/pvh/
22679 F:      arch/x86/xen/
22680
22681 XEN NETWORK BACKEND DRIVER
22682 M:      Wei Liu <[email protected]>
22683 M:      Paul Durrant <[email protected]>
22684 L:      [email protected] (moderated for non-subscribers)
22685 L:      [email protected]
22686 S:      Supported
22687 F:      drivers/net/xen-netback/*
22688
22689 XEN PCI SUBSYSTEM
22690 M:      Juergen Gross <[email protected]>
22691 L:      [email protected] (moderated for non-subscribers)
22692 S:      Supported
22693 F:      arch/x86/pci/*xen*
22694 F:      drivers/pci/*xen*
22695
22696 XEN PVSCSI DRIVERS
22697 M:      Juergen Gross <[email protected]>
22698 L:      [email protected] (moderated for non-subscribers)
22699 L:      [email protected]
22700 S:      Supported
22701 F:      drivers/scsi/xen-scsifront.c
22702 F:      drivers/xen/xen-scsiback.c
22703 F:      include/xen/interface/io/vscsiif.h
22704
22705 XEN PVUSB DRIVER
22706 M:      Juergen Gross <[email protected]>
22707 L:      [email protected] (moderated for non-subscribers)
22708 L:      [email protected]
22709 S:      Supported
22710 F:      drivers/usb/host/xen*
22711 F:      include/xen/interface/io/usbif.h
22712
22713 XEN SOUND FRONTEND DRIVER
22714 M:      Oleksandr Andrushchenko <[email protected]>
22715 L:      [email protected] (moderated for non-subscribers)
22716 L:      [email protected] (moderated for non-subscribers)
22717 S:      Supported
22718 F:      sound/xen/*
22719
22720 XEN SWIOTLB SUBSYSTEM
22721 M:      Juergen Gross <[email protected]>
22722 M:      Stefano Stabellini <[email protected]>
22723 L:      [email protected] (moderated for non-subscribers)
22724 L:      [email protected]
22725 S:      Supported
22726 F:      arch/*/include/asm/xen/swiotlb-xen.h
22727 F:      drivers/xen/swiotlb-xen.c
22728 F:      include/xen/arm/swiotlb-xen.h
22729 F:      include/xen/swiotlb-xen.h
22730
22731 XFS FILESYSTEM
22732 C:      irc://irc.oftc.net/xfs
22733 M:      Darrick J. Wong <[email protected]>
22734 L:      [email protected]
22735 S:      Supported
22736 W:      http://xfs.org/
22737 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22738 F:      Documentation/ABI/testing/sysfs-fs-xfs
22739 F:      Documentation/admin-guide/xfs.rst
22740 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
22741 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
22742 F:      fs/xfs/
22743 F:      include/uapi/linux/dqblk_xfs.h
22744 F:      include/uapi/linux/fsmap.h
22745
22746 XILINX AMS DRIVER
22747 M:      Anand Ashok Dumbre <[email protected]>
22748 L:      [email protected]
22749 S:      Maintained
22750 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22751 F:      drivers/iio/adc/xilinx-ams.c
22752
22753 XILINX AXI ETHERNET DRIVER
22754 M:      Radhey Shyam Pandey <[email protected]>
22755 S:      Maintained
22756 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
22757
22758 XILINX CAN DRIVER
22759 M:      Appana Durga Kedareswara rao <[email protected]>
22760 R:      Naga Sureshkumar Relli <[email protected]>
22761 L:      [email protected]
22762 S:      Maintained
22763 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22764 F:      drivers/net/can/xilinx_can.c
22765
22766 XILINX GPIO DRIVER
22767 M:      Shubhrajyoti Datta <[email protected]>
22768 R:      Srinivas Neeli <[email protected]>
22769 R:      Michal Simek <[email protected]>
22770 S:      Maintained
22771 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
22772 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22773 F:      drivers/gpio/gpio-xilinx.c
22774 F:      drivers/gpio/gpio-zynq.c
22775
22776 XILINX SD-FEC IP CORES
22777 M:      Derek Kiernan <[email protected]>
22778 M:      Dragan Cvetic <[email protected]>
22779 S:      Maintained
22780 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22781 F:      Documentation/misc-devices/xilinx_sdfec.rst
22782 F:      drivers/misc/Kconfig
22783 F:      drivers/misc/Makefile
22784 F:      drivers/misc/xilinx_sdfec.c
22785 F:      include/uapi/misc/xilinx_sdfec.h
22786
22787 XILINX PWM DRIVER
22788 M:      Sean Anderson <[email protected]>
22789 S:      Maintained
22790 F:      drivers/pwm/pwm-xilinx.c
22791 F:      include/clocksource/timer-xilinx.h
22792
22793 XILINX UARTLITE SERIAL DRIVER
22794 M:      Peter Korsgaard <[email protected]>
22795 L:      [email protected]
22796 S:      Maintained
22797 F:      drivers/tty/serial/uartlite.c
22798
22799 XILINX VIDEO IP CORES
22800 M:      Hyun Kwon <[email protected]>
22801 M:      Laurent Pinchart <[email protected]>
22802 L:      [email protected]
22803 S:      Supported
22804 T:      git git://linuxtv.org/media_tree.git
22805 F:      Documentation/devicetree/bindings/media/xilinx/
22806 F:      drivers/media/platform/xilinx/
22807 F:      include/uapi/linux/xilinx-v4l2-controls.h
22808
22809 XILINX ZYNQMP DPDMA DRIVER
22810 M:      Hyun Kwon <[email protected]>
22811 M:      Laurent Pinchart <[email protected]>
22812 L:      [email protected]
22813 S:      Supported
22814 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22815 F:      drivers/dma/xilinx/xilinx_dpdma.c
22816 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22817
22818 XILINX ZYNQMP OCM EDAC DRIVER
22819 M:      Shubhrajyoti Datta <[email protected]>
22820 M:      Sai Krishna Potthuri <[email protected]>
22821 S:      Maintained
22822 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynqmp-ocmc-1.0.yaml
22823 F:      drivers/edac/zynqmp_edac.c
22824
22825 XILINX ZYNQMP PSGTR PHY DRIVER
22826 M:      Anurag Kumar Vulisha <[email protected]>
22827 M:      Laurent Pinchart <[email protected]>
22828 L:      [email protected]
22829 S:      Supported
22830 T:      git https://github.com/Xilinx/linux-xlnx.git
22831 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22832 F:      drivers/phy/xilinx/phy-zynqmp.c
22833
22834 XILINX ZYNQMP SHA3 DRIVER
22835 M:      Harsha <[email protected]>
22836 S:      Maintained
22837 F:      drivers/crypto/xilinx/zynqmp-sha.c
22838
22839 XILINX EVENT MANAGEMENT DRIVER
22840 M:      Abhyuday Godhasara <[email protected]>
22841 S:      Maintained
22842 F:      drivers/soc/xilinx/xlnx_event_manager.c
22843 F:      include/linux/firmware/xlnx-event-manager.h
22844
22845 XILLYBUS DRIVER
22846 M:      Eli Billauer <[email protected]>
22847 L:      [email protected]
22848 S:      Supported
22849 F:      drivers/char/xillybus/
22850
22851 XLP9XX I2C DRIVER
22852 M:      George Cherian <[email protected]>
22853 L:      [email protected]
22854 S:      Supported
22855 W:      http://www.marvell.com
22856 F:      drivers/i2c/busses/i2c-xlp9xx.c
22857
22858 XRA1403 GPIO EXPANDER
22859 M:      Nandor Han <[email protected]>
22860 M:      Semi Malinen <[email protected]>
22861 L:      [email protected]
22862 S:      Maintained
22863 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
22864 F:      drivers/gpio/gpio-xra1403.c
22865
22866 XTENSA XTFPGA PLATFORM SUPPORT
22867 M:      Max Filippov <[email protected]>
22868 L:      [email protected]
22869 S:      Maintained
22870 F:      drivers/spi/spi-xtensa-xtfpga.c
22871 F:      sound/soc/xtensa/xtfpga-i2s.c
22872
22873 YAM DRIVER FOR AX.25
22874 M:      Jean-Paul Roubelat <[email protected]>
22875 L:      [email protected]
22876 S:      Maintained
22877 F:      drivers/net/hamradio/yam*
22878 F:      include/linux/yam.h
22879
22880 YAMA SECURITY MODULE
22881 M:      Kees Cook <[email protected]>
22882 S:      Supported
22883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
22884 F:      Documentation/admin-guide/LSM/Yama.rst
22885 F:      security/yama/
22886
22887 YEALINK PHONE DRIVER
22888 M:      Henk Vergonet <[email protected]>
22889 L:      [email protected]
22890 S:      Maintained
22891 F:      Documentation/input/devices/yealink.rst
22892 F:      drivers/input/misc/yealink.*
22893
22894 Z8530 DRIVER FOR AX.25
22895 M:      Joerg Reuter <[email protected]>
22896 L:      [email protected]
22897 S:      Maintained
22898 W:      http://yaina.de/jreuter/
22899 W:      http://www.qsl.net/dl1bke/
22900 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
22901 F:      drivers/net/hamradio/*scc.c
22902 F:      drivers/net/hamradio/z8530.h
22903
22904 ZBUD COMPRESSED PAGE ALLOCATOR
22905 M:      Seth Jennings <[email protected]>
22906 M:      Dan Streetman <[email protected]>
22907 L:      [email protected]
22908 S:      Maintained
22909 F:      mm/zbud.c
22910
22911 Z3FOLD COMPRESSED PAGE ALLOCATOR
22912 M:      Vitaly Wool <[email protected]>
22913 R:      Miaohe Lin <[email protected]>
22914 L:      [email protected]
22915 S:      Maintained
22916 F:      mm/z3fold.c
22917
22918 ZD1211RW WIRELESS DRIVER
22919 M:      Ulrich Kunitz <[email protected]>
22920 L:      [email protected]
22921 L:      [email protected] (subscribers-only)
22922 S:      Maintained
22923 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22924 F:      drivers/net/wireless/zydas/zd1211rw/
22925
22926 ZD1301 MEDIA DRIVER
22927 M:      Antti Palosaari <[email protected]>
22928 L:      [email protected]
22929 S:      Maintained
22930 W:      https://linuxtv.org/
22931 W:      http://palosaari.fi/linux/
22932 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22933 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22934
22935 ZD1301_DEMOD MEDIA DRIVER
22936 M:      Antti Palosaari <[email protected]>
22937 L:      [email protected]
22938 S:      Maintained
22939 W:      https://linuxtv.org/
22940 W:      http://palosaari.fi/linux/
22941 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22942 F:      drivers/media/dvb-frontends/zd1301_demod*
22943
22944 ZHAOXIN PROCESSOR SUPPORT
22945 M:      Tony W Wang-oc <[email protected]>
22946 L:      [email protected]
22947 S:      Maintained
22948 F:      arch/x86/kernel/cpu/zhaoxin.c
22949
22950 ZONEFS FILESYSTEM
22951 M:      Damien Le Moal <[email protected]>
22952 M:      Naohiro Aota <[email protected]>
22953 R:      Johannes Thumshirn <[email protected]>
22954 L:      [email protected]
22955 S:      Maintained
22956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22957 F:      Documentation/filesystems/zonefs.rst
22958 F:      fs/zonefs/
22959
22960 ZPOOL COMPRESSED PAGE STORAGE API
22961 M:      Dan Streetman <[email protected]>
22962 L:      [email protected]
22963 S:      Maintained
22964 F:      include/linux/zpool.h
22965 F:      mm/zpool.c
22966
22967 ZR36067 VIDEO FOR LINUX DRIVER
22968 M:      Corentin Labbe <[email protected]>
22969 L:      [email protected]
22970 L:      [email protected]
22971 S:      Maintained
22972 W:      http://mjpeg.sourceforge.net/driver-zoran/
22973 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22974 F:      Documentation/driver-api/media/drivers/zoran.rst
22975 F:      drivers/media/pci/zoran/
22976
22977 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22978 M:      Minchan Kim <[email protected]>
22979 M:      Sergey Senozhatsky <[email protected]>
22980 L:      [email protected]
22981 S:      Maintained
22982 F:      Documentation/admin-guide/blockdev/zram.rst
22983 F:      drivers/block/zram/
22984
22985 ZS DECSTATION Z85C30 SERIAL DRIVER
22986 M:      "Maciej W. Rozycki" <[email protected]>
22987 S:      Maintained
22988 F:      drivers/tty/serial/zs.*
22989
22990 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
22991 M:      Minchan Kim <[email protected]>
22992 M:      Sergey Senozhatsky <[email protected]>
22993 L:      [email protected]
22994 S:      Maintained
22995 F:      Documentation/mm/zsmalloc.rst
22996 F:      include/linux/zsmalloc.h
22997 F:      mm/zsmalloc.c
22998
22999 ZSTD
23000 M:      Nick Terrell <[email protected]>
23001 S:      Maintained
23002 B:      https://github.com/facebook/zstd/issues
23003 T:      git https://github.com/terrelln/linux.git
23004 F:      include/linux/zstd*
23005 F:      lib/zstd/
23006 F:      lib/decompress_unzstd.c
23007 F:      crypto/zstd.c
23008 N:      zstd
23009 K:      zstd
23010
23011 ZSWAP COMPRESSED SWAP CACHING
23012 M:      Seth Jennings <[email protected]>
23013 M:      Dan Streetman <[email protected]>
23014 M:      Vitaly Wool <[email protected]>
23015 L:      [email protected]
23016 S:      Maintained
23017 F:      mm/zswap.c
23018
23019 THE REST
23020 M:      Linus Torvalds <[email protected]>
23021 L:      [email protected]
23022 S:      Buried alive in reporters
23023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
23024 F:      *
23025 F:      */
This page took 1.344855 seconds and 4 git commands to generate.