]> Git Repo - linux.git/blob - MAINTAINERS
mm,memory_hotplug: allocate memmap from the added memory range
[linux.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: [email protected], especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <[email protected]>
148 L:      [email protected]
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <[email protected]>
155 L:      [email protected]
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <[email protected]>
161 L:      [email protected]
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <[email protected]>
168 L:      [email protected]
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <[email protected]>
174 M:      Jukka Rissanen <[email protected]>
175 L:      [email protected]
176 L:      [email protected]
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <[email protected]>
184 L:      [email protected]
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <[email protected]>
190 L:      [email protected]
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <[email protected]>
207 M:      [email protected]
208 L:      [email protected]
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <[email protected]>
214 L:      [email protected]
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      [email protected]
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <[email protected]>
227 M:      Latchesar Ionkov <[email protected]>
228 M:      Dominique Martinet <[email protected]>
229 L:      [email protected]
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <[email protected]>
244 L:      [email protected]
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <[email protected]>
254 L:      [email protected]
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      [email protected]
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264 X:      include/uapi/
265 X:      arch/*/include/uapi/
266
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M:      Hans de Goede <[email protected]>
269 L:      [email protected]
270 S:      Maintained
271 F:      drivers/hwmon/abituguru.c
272
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M:      Alistair John Strachan <[email protected]>
275 L:      [email protected]
276 S:      Maintained
277 F:      drivers/hwmon/abituguru3.c
278
279 ACCES 104-DIO-48E GPIO DRIVER
280 M:      William Breathitt Gray <[email protected]>
281 L:      [email protected]
282 S:      Maintained
283 F:      drivers/gpio/gpio-104-dio-48e.c
284
285 ACCES 104-IDI-48 GPIO DRIVER
286 M:      "William Breathitt Gray" <[email protected]>
287 L:      [email protected]
288 S:      Maintained
289 F:      drivers/gpio/gpio-104-idi-48.c
290
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M:      "William Breathitt Gray" <[email protected]>
293 L:      [email protected]
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-idio-16.c
296
297 ACCES 104-QUAD-8 DRIVER
298 M:      William Breathitt Gray <[email protected]>
299 M:      Syed Nayyar Waris <[email protected]>
300 L:      [email protected]
301 S:      Maintained
302 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
303 F:      drivers/counter/104-quad-8.c
304
305 ACCES PCI-IDIO-16 GPIO DRIVER
306 M:      William Breathitt Gray <[email protected]>
307 L:      [email protected]
308 S:      Maintained
309 F:      drivers/gpio/gpio-pci-idio-16.c
310
311 ACCES PCIe-IDIO-24 GPIO DRIVER
312 M:      William Breathitt Gray <[email protected]>
313 L:      [email protected]
314 S:      Maintained
315 F:      drivers/gpio/gpio-pcie-idio-24.c
316
317 ACENIC DRIVER
318 M:      Jes Sorensen <[email protected]>
319 L:      [email protected]
320 S:      Maintained
321 F:      drivers/net/ethernet/alteon/acenic*
322
323 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
324 M:      Peter Kaestle <[email protected]>
325 L:      [email protected]
326 S:      Maintained
327 W:      http://piie.net/?section=acerhdf
328 F:      drivers/platform/x86/acerhdf.c
329
330 ACER WMI LAPTOP EXTRAS
331 M:      "Lee, Chun-Yi" <[email protected]>
332 L:      [email protected]
333 S:      Maintained
334 F:      drivers/platform/x86/acer-wmi.c
335
336 ACPI
337 M:      "Rafael J. Wysocki" <[email protected]>
338 M:      Len Brown <[email protected]>
339 L:      [email protected]
340 S:      Supported
341 W:      https://01.org/linux-acpi
342 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
343 B:      https://bugzilla.kernel.org
344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
345 F:      Documentation/ABI/testing/configfs-acpi
346 F:      Documentation/ABI/testing/sysfs-bus-acpi
347 F:      Documentation/firmware-guide/acpi/
348 F:      drivers/acpi/
349 F:      drivers/pci/*/*acpi*
350 F:      drivers/pci/*acpi*
351 F:      drivers/pnp/pnpacpi/
352 F:      include/acpi/
353 F:      include/linux/acpi.h
354 F:      include/linux/fwnode.h
355 F:      tools/power/acpi/
356
357 ACPI APEI
358 M:      "Rafael J. Wysocki" <[email protected]>
359 M:      Len Brown <[email protected]>
360 R:      James Morse <[email protected]>
361 R:      Tony Luck <[email protected]>
362 R:      Borislav Petkov <[email protected]>
363 L:      [email protected]
364 F:      drivers/acpi/apei/
365
366 ACPI COMPONENT ARCHITECTURE (ACPICA)
367 M:      Robert Moore <[email protected]>
368 M:      Erik Kaneda <[email protected]>
369 M:      "Rafael J. Wysocki" <[email protected]>
370 L:      [email protected]
371 L:      [email protected]
372 S:      Supported
373 W:      https://acpica.org/
374 W:      https://github.com/acpica/acpica/
375 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
376 B:      https://bugzilla.kernel.org
377 B:      https://bugs.acpica.org
378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
379 F:      drivers/acpi/acpica/
380 F:      include/acpi/
381 F:      tools/power/acpi/
382
383 ACPI FAN DRIVER
384 M:      Zhang Rui <[email protected]>
385 L:      [email protected]
386 S:      Supported
387 W:      https://01.org/linux-acpi
388 B:      https://bugzilla.kernel.org
389 F:      drivers/acpi/fan.c
390
391 ACPI FOR ARM64 (ACPI/arm64)
392 M:      Lorenzo Pieralisi <[email protected]>
393 M:      Hanjun Guo <[email protected]>
394 M:      Sudeep Holla <[email protected]>
395 L:      [email protected]
396 L:      [email protected] (moderated for non-subscribers)
397 S:      Maintained
398 F:      drivers/acpi/arm64
399
400 ACPI I2C MULTI INSTANTIATE DRIVER
401 M:      Hans de Goede <[email protected]>
402 L:      [email protected]
403 S:      Maintained
404 F:      drivers/platform/x86/i2c-multi-instantiate.c
405
406 ACPI PMIC DRIVERS
407 M:      "Rafael J. Wysocki" <[email protected]>
408 M:      Len Brown <[email protected]>
409 R:      Andy Shevchenko <[email protected]>
410 R:      Mika Westerberg <[email protected]>
411 L:      [email protected]
412 S:      Supported
413 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
414 B:      https://bugzilla.kernel.org
415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
416 F:      drivers/acpi/pmic/
417
418 ACPI THERMAL DRIVER
419 M:      Zhang Rui <[email protected]>
420 L:      [email protected]
421 S:      Supported
422 W:      https://01.org/linux-acpi
423 B:      https://bugzilla.kernel.org
424 F:      drivers/acpi/*thermal*
425
426 ACPI VIDEO DRIVER
427 M:      Zhang Rui <[email protected]>
428 L:      [email protected]
429 S:      Supported
430 W:      https://01.org/linux-acpi
431 B:      https://bugzilla.kernel.org
432 F:      drivers/acpi/acpi_video.c
433
434 ACPI WMI DRIVER
435 L:      [email protected]
436 S:      Orphan
437 F:      drivers/platform/x86/wmi.c
438 F:      include/uapi/linux/wmi.h
439
440 ACRN HYPERVISOR SERVICE MODULE
441 M:      Shuo Liu <[email protected]>
442 L:      [email protected] (subscribers-only)
443 S:      Supported
444 W:      https://projectacrn.org
445 F:      Documentation/virt/acrn/
446 F:      drivers/virt/acrn/
447 F:      include/uapi/linux/acrn.h
448
449 AD1889 ALSA SOUND DRIVER
450 L:      [email protected]
451 S:      Maintained
452 W:      https://parisc.wiki.kernel.org/index.php/AD1889
453 F:      sound/pci/ad1889.*
454
455 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
456 M:      Michael Hennerich <[email protected]>
457 S:      Supported
458 W:      http://wiki.analog.com/AD5254
459 W:      http://ez.analog.com/community/linux-device-drivers
460 F:      drivers/misc/ad525x_dpot.c
461
462 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
463 M:      Michael Hennerich <[email protected]>
464 S:      Supported
465 W:      http://wiki.analog.com/AD5398
466 W:      http://ez.analog.com/community/linux-device-drivers
467 F:      drivers/regulator/ad5398.c
468
469 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
470 M:      Michael Hennerich <[email protected]>
471 S:      Supported
472 W:      http://wiki.analog.com/AD7142
473 W:      http://ez.analog.com/community/linux-device-drivers
474 F:      drivers/input/misc/ad714x.c
475
476 AD7877 TOUCHSCREEN DRIVER
477 M:      Michael Hennerich <[email protected]>
478 S:      Supported
479 W:      http://wiki.analog.com/AD7877
480 W:      http://ez.analog.com/community/linux-device-drivers
481 F:      drivers/input/touchscreen/ad7877.c
482
483 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
484 M:      Michael Hennerich <[email protected]>
485 S:      Supported
486 W:      http://wiki.analog.com/AD7879
487 W:      http://ez.analog.com/community/linux-device-drivers
488 F:      drivers/input/touchscreen/ad7879.c
489
490 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
491 M:      Jiri Kosina <[email protected]>
492 S:      Maintained
493
494 ADF7242 IEEE 802.15.4 RADIO DRIVER
495 M:      Michael Hennerich <[email protected]>
496 L:      [email protected]
497 S:      Supported
498 W:      https://wiki.analog.com/ADF7242
499 W:      http://ez.analog.com/community/linux-device-drivers
500 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
501 F:      drivers/net/ieee802154/adf7242.c
502
503 ADM1025 HARDWARE MONITOR DRIVER
504 M:      Jean Delvare <[email protected]>
505 L:      [email protected]
506 S:      Maintained
507 F:      Documentation/hwmon/adm1025.rst
508 F:      drivers/hwmon/adm1025.c
509
510 ADM1029 HARDWARE MONITOR DRIVER
511 M:      Corentin Labbe <[email protected]>
512 L:      [email protected]
513 S:      Maintained
514 F:      drivers/hwmon/adm1029.c
515
516 ADM8211 WIRELESS DRIVER
517 L:      [email protected]
518 S:      Orphan
519 W:      https://wireless.wiki.kernel.org/
520 F:      drivers/net/wireless/admtek/adm8211.*
521
522 ADP1653 FLASH CONTROLLER DRIVER
523 M:      Sakari Ailus <[email protected]>
524 L:      [email protected]
525 S:      Maintained
526 F:      drivers/media/i2c/adp1653.c
527 F:      include/media/i2c/adp1653.h
528
529 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
530 M:      Michael Hennerich <[email protected]>
531 S:      Supported
532 W:      http://wiki.analog.com/ADP5520
533 W:      http://ez.analog.com/community/linux-device-drivers
534 F:      drivers/gpio/gpio-adp5520.c
535 F:      drivers/input/keyboard/adp5520-keys.c
536 F:      drivers/leds/leds-adp5520.c
537 F:      drivers/mfd/adp5520.c
538 F:      drivers/video/backlight/adp5520_bl.c
539
540 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
541 M:      Michael Hennerich <[email protected]>
542 S:      Supported
543 W:      http://wiki.analog.com/ADP5588
544 W:      http://ez.analog.com/community/linux-device-drivers
545 F:      drivers/gpio/gpio-adp5588.c
546 F:      drivers/input/keyboard/adp5588-keys.c
547
548 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
549 M:      Michael Hennerich <[email protected]>
550 S:      Supported
551 W:      http://wiki.analog.com/ADP8860
552 W:      http://ez.analog.com/community/linux-device-drivers
553 F:      drivers/video/backlight/adp8860_bl.c
554
555 ADT746X FAN DRIVER
556 M:      Colin Leroy <[email protected]>
557 S:      Maintained
558 F:      drivers/macintosh/therm_adt746x.c
559
560 ADT7475 HARDWARE MONITOR DRIVER
561 M:      Jean Delvare <[email protected]>
562 L:      [email protected]
563 S:      Maintained
564 F:      Documentation/hwmon/adt7475.rst
565 F:      drivers/hwmon/adt7475.c
566
567 ADVANSYS SCSI DRIVER
568 M:      Matthew Wilcox <[email protected]>
569 M:      Hannes Reinecke <[email protected]>
570 L:      [email protected]
571 S:      Maintained
572 F:      Documentation/scsi/advansys.rst
573 F:      drivers/scsi/advansys.c
574
575 ADVANTECH SWBTN DRIVER
576 M:      Andrea Ho <[email protected]>
577 L:      [email protected]
578 S:      Maintained
579 F:      drivers/platform/x86/adv_swbutton.c
580
581 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
582 M:      Michael Hennerich <[email protected]>
583 S:      Supported
584 W:      http://wiki.analog.com/ADXL345
585 W:      http://ez.analog.com/community/linux-device-drivers
586 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
587 F:      drivers/input/misc/adxl34x.c
588
589 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
590 M:      Michael Hennerich <[email protected]>
591 S:      Supported
592 W:      http://ez.analog.com/community/linux-device-drivers
593 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
594 F:      drivers/iio/accel/adxl372.c
595 F:      drivers/iio/accel/adxl372_i2c.c
596 F:      drivers/iio/accel/adxl372_spi.c
597
598 AF9013 MEDIA DRIVER
599 M:      Antti Palosaari <[email protected]>
600 L:      [email protected]
601 S:      Maintained
602 W:      https://linuxtv.org
603 W:      http://palosaari.fi/linux/
604 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
605 T:      git git://linuxtv.org/anttip/media_tree.git
606 F:      drivers/media/dvb-frontends/af9013*
607
608 AF9033 MEDIA DRIVER
609 M:      Antti Palosaari <[email protected]>
610 L:      [email protected]
611 S:      Maintained
612 W:      https://linuxtv.org
613 W:      http://palosaari.fi/linux/
614 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
615 T:      git git://linuxtv.org/anttip/media_tree.git
616 F:      drivers/media/dvb-frontends/af9033*
617
618 AFFS FILE SYSTEM
619 M:      David Sterba <[email protected]>
620 L:      [email protected]
621 S:      Odd Fixes
622 F:      Documentation/filesystems/affs.rst
623 F:      fs/affs/
624
625 AFS FILESYSTEM
626 M:      David Howells <[email protected]>
627 L:      [email protected]
628 S:      Supported
629 W:      https://www.infradead.org/~dhowells/kafs/
630 F:      Documentation/filesystems/afs.rst
631 F:      fs/afs/
632 F:      include/trace/events/afs.h
633
634 AGPGART DRIVER
635 M:      David Airlie <[email protected]>
636 S:      Maintained
637 T:      git git://anongit.freedesktop.org/drm/drm
638 F:      drivers/char/agp/
639 F:      include/linux/agp*
640 F:      include/uapi/linux/agp*
641
642 AHA152X SCSI DRIVER
643 M:      "Juergen E. Fischer" <[email protected]>
644 L:      [email protected]
645 S:      Maintained
646 F:      drivers/scsi/aha152x*
647 F:      drivers/scsi/pcmcia/aha152x*
648
649 AIC7XXX / AIC79XX SCSI DRIVER
650 M:      Hannes Reinecke <[email protected]>
651 L:      [email protected]
652 S:      Maintained
653 F:      drivers/scsi/aic7xxx/
654
655 AIMSLAB FM RADIO RECEIVER DRIVER
656 M:      Hans Verkuil <[email protected]>
657 L:      [email protected]
658 S:      Maintained
659 W:      https://linuxtv.org
660 T:      git git://linuxtv.org/media_tree.git
661 F:      drivers/media/radio/radio-aimslab*
662
663 AIO
664 M:      Benjamin LaHaise <[email protected]>
665 L:      [email protected]
666 S:      Supported
667 F:      fs/aio.c
668 F:      include/linux/*aio*.h
669
670 AIRSPY MEDIA DRIVER
671 M:      Antti Palosaari <[email protected]>
672 L:      [email protected]
673 S:      Maintained
674 W:      https://linuxtv.org
675 W:      http://palosaari.fi/linux/
676 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
677 T:      git git://linuxtv.org/anttip/media_tree.git
678 F:      drivers/media/usb/airspy/
679
680 ALACRITECH GIGABIT ETHERNET DRIVER
681 M:      Lino Sanfilippo <[email protected]>
682 S:      Maintained
683 F:      drivers/net/ethernet/alacritech/*
684
685 ALCATEL SPEEDTOUCH USB DRIVER
686 M:      Duncan Sands <[email protected]>
687 L:      [email protected]
688 S:      Maintained
689 W:      http://www.linux-usb.org/SpeedTouch/
690 F:      drivers/usb/atm/speedtch.c
691 F:      drivers/usb/atm/usbatm.c
692
693 ALCHEMY AU1XX0 MMC DRIVER
694 M:      Manuel Lauss <[email protected]>
695 S:      Maintained
696 F:      drivers/mmc/host/au1xmmc.c
697
698 ALI1563 I2C DRIVER
699 M:      Rudolf Marek <[email protected]>
700 L:      [email protected]
701 S:      Maintained
702 F:      Documentation/i2c/busses/i2c-ali1563.rst
703 F:      drivers/i2c/busses/i2c-ali1563.c
704
705 ALIENWARE WMI DRIVER
706 L:      [email protected]
707 S:      Maintained
708 F:      drivers/platform/x86/dell/alienware-wmi.c
709
710 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
711 M:      Tomislav Denis <[email protected]>
712 L:      [email protected]
713 S:      Maintained
714 W:      http://www.allsensors.com/
715 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
716 F:      drivers/iio/pressure/dlhl60d.c
717
718 ALLEGRO DVT VIDEO IP CORE DRIVER
719 M:      Michael Tretter <[email protected]>
720 R:      Pengutronix Kernel Team <[email protected]>
721 L:      [email protected]
722 S:      Maintained
723 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
724 F:      drivers/media/platform/allegro-dvt/
725
726 ALLWINNER A10 CSI DRIVER
727 M:      Maxime Ripard <[email protected]>
728 L:      [email protected]
729 S:      Maintained
730 T:      git git://linuxtv.org/media_tree.git
731 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
732 F:      drivers/media/platform/sunxi/sun4i-csi/
733
734 ALLWINNER CPUFREQ DRIVER
735 M:      Yangtao Li <[email protected]>
736 L:      [email protected]
737 S:      Maintained
738 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
739 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
740
741 ALLWINNER CRYPTO DRIVERS
742 M:      Corentin Labbe <[email protected]>
743 L:      [email protected]
744 S:      Maintained
745 F:      drivers/crypto/allwinner/
746
747 ALLWINNER THERMAL DRIVER
748 M:      Vasily Khoruzhick <[email protected]>
749 M:      Yangtao Li <[email protected]>
750 L:      [email protected]
751 S:      Maintained
752 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
753 F:      drivers/thermal/sun8i_thermal.c
754
755 ALLWINNER VPU DRIVER
756 M:      Maxime Ripard <[email protected]>
757 M:      Paul Kocialkowski <[email protected]>
758 L:      [email protected]
759 S:      Maintained
760 F:      drivers/staging/media/sunxi/cedrus/
761
762 ALPHA PORT
763 M:      Richard Henderson <[email protected]>
764 M:      Ivan Kokshaysky <[email protected]>
765 M:      Matt Turner <[email protected]>
766 L:      [email protected]
767 S:      Odd Fixes
768 F:      arch/alpha/
769
770 ALPS PS/2 TOUCHPAD DRIVER
771 R:      Pali Rohár <[email protected]>
772 F:      drivers/input/mouse/alps.*
773
774 ALTERA I2C CONTROLLER DRIVER
775 M:      Thor Thayer <[email protected]>
776 S:      Maintained
777 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
778 F:      drivers/i2c/busses/i2c-altera.c
779
780 ALTERA MAILBOX DRIVER
781 M:      Ley Foon Tan <[email protected]>
782 S:      Maintained
783 F:      drivers/mailbox/mailbox-altera.c
784
785 ALTERA PIO DRIVER
786 M:      Joyce Ooi <[email protected]>
787 L:      [email protected]
788 S:      Maintained
789 F:      drivers/gpio/gpio-altera.c
790
791 ALTERA SYSTEM MANAGER DRIVER
792 M:      Thor Thayer <[email protected]>
793 S:      Maintained
794 F:      drivers/mfd/altera-sysmgr.c
795 F:      include/linux/mfd/altera-sysmgr.h
796
797 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
798 M:      Thor Thayer <[email protected]>
799 S:      Maintained
800 F:      drivers/gpio/gpio-altera-a10sr.c
801 F:      drivers/mfd/altera-a10sr.c
802 F:      drivers/reset/reset-a10sr.c
803 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
804 F:      include/linux/mfd/altera-a10sr.h
805
806 ALTERA TRIPLE SPEED ETHERNET DRIVER
807 M:      Joyce Ooi <[email protected]>
808 L:      [email protected]
809 S:      Maintained
810 F:      drivers/net/ethernet/altera/
811
812 ALTERA UART/JTAG UART SERIAL DRIVERS
813 M:      Tobias Klauser <[email protected]>
814 L:      [email protected]
815 S:      Maintained
816 F:      drivers/tty/serial/altera_jtaguart.c
817 F:      drivers/tty/serial/altera_uart.c
818 F:      include/linux/altera_jtaguart.h
819 F:      include/linux/altera_uart.h
820
821 AMAZON ANNAPURNA LABS FIC DRIVER
822 M:      Talel Shenhar <[email protected]>
823 S:      Maintained
824 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
825 F:      drivers/irqchip/irq-al-fic.c
826
827 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
828 M:      Talel Shenhar <[email protected]>
829 M:      Talel Shenhar <[email protected]>
830 S:      Maintained
831 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
832 F:      drivers/edac/al_mc_edac.c
833
834 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
835 M:      Talel Shenhar <[email protected]>
836 S:      Maintained
837 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
838 F:      drivers/thermal/thermal_mmio.c
839
840 AMAZON ETHERNET DRIVERS
841 M:      Netanel Belgazal <[email protected]>
842 M:      Arthur Kiyanovski <[email protected]>
843 R:      Guy Tzalik <[email protected]>
844 R:      Saeed Bishara <[email protected]>
845 L:      [email protected]
846 S:      Supported
847 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
848 F:      drivers/net/ethernet/amazon/
849
850 AMAZON RDMA EFA DRIVER
851 M:      Gal Pressman <[email protected]>
852 R:      Yossi Leybovich <[email protected]>
853 L:      [email protected]
854 S:      Supported
855 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
856 F:      drivers/infiniband/hw/efa/
857 F:      include/uapi/rdma/efa-abi.h
858
859 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
860 M:      Tom Lendacky <[email protected]>
861 M:      John Allen <[email protected]>
862 L:      [email protected]
863 S:      Supported
864 F:      drivers/crypto/ccp/
865 F:      include/linux/ccp.h
866
867 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
868 M:      Brijesh Singh <[email protected]>
869 M:      Tom Lendacky <[email protected]>
870 L:      [email protected]
871 S:      Supported
872 F:      drivers/crypto/ccp/sev*
873 F:      include/uapi/linux/psp-sev.h
874
875 AMD DISPLAY CORE
876 M:      Harry Wentland <[email protected]>
877 M:      Leo Li <[email protected]>
878 L:      [email protected]
879 S:      Supported
880 T:      git git://people.freedesktop.org/~agd5f/linux
881 F:      drivers/gpu/drm/amd/display/
882
883 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
884 M:      Huang Rui <[email protected]>
885 L:      [email protected]
886 S:      Supported
887 F:      Documentation/hwmon/fam15h_power.rst
888 F:      drivers/hwmon/fam15h_power.c
889
890 AMD FCH GPIO DRIVER
891 M:      Enrico Weigelt, metux IT consult <[email protected]>
892 L:      [email protected]
893 S:      Maintained
894 F:      drivers/gpio/gpio-amd-fch.c
895 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
896
897 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
898 L:      [email protected] (moderated for non-subscribers)
899 S:      Orphan
900 F:      drivers/usb/gadget/udc/amd5536udc.*
901
902 AMD GEODE PROCESSOR/CHIPSET SUPPORT
903 M:      Andres Salomon <[email protected]>
904 L:      [email protected] (moderated for non-subscribers)
905 S:      Supported
906 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
907 F:      arch/x86/include/asm/geode.h
908 F:      drivers/char/hw_random/geode-rng.c
909 F:      drivers/crypto/geode*
910 F:      drivers/video/fbdev/geode/
911
912 AMD IOMMU (AMD-VI)
913 M:      Joerg Roedel <[email protected]>
914 L:      [email protected]
915 S:      Maintained
916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
917 F:      drivers/iommu/amd/
918 F:      include/linux/amd-iommu.h
919
920 AMD KFD
921 M:      Felix Kuehling <[email protected]>
922 L:      [email protected]
923 S:      Supported
924 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
925 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
926 F:      drivers/gpu/drm/amd/amdkfd/
927 F:      drivers/gpu/drm/amd/include/cik_structs.h
928 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
929 F:      drivers/gpu/drm/amd/include/v9_structs.h
930 F:      drivers/gpu/drm/amd/include/vi_structs.h
931 F:      include/uapi/linux/kfd_ioctl.h
932
933 AMD SPI DRIVER
934 M:      Sanjay R Mehta <[email protected]>
935 S:      Maintained
936 F:      drivers/spi/spi-amd.c
937
938 AMD MP2 I2C DRIVER
939 M:      Elie Morisse <[email protected]>
940 M:      Nehal Shah <[email protected]>
941 M:      Shyam Sundar S K <[email protected]>
942 L:      [email protected]
943 S:      Maintained
944 F:      drivers/i2c/busses/i2c-amd-mp2*
945
946 AMD PMC DRIVER
947 M:      Shyam Sundar S K <[email protected]>
948 L:      [email protected]
949 S:      Maintained
950 F:      drivers/platform/x86/amd-pmc.*
951
952 AMD POWERPLAY
953 M:      Evan Quan <[email protected]>
954 L:      [email protected]
955 S:      Supported
956 T:      git git://people.freedesktop.org/~agd5f/linux
957 F:      drivers/gpu/drm/amd/pm/powerplay/
958
959 AMD SEATTLE DEVICE TREE SUPPORT
960 M:      Brijesh Singh <[email protected]>
961 M:      Suravee Suthikulpanit <[email protected]>
962 M:      Tom Lendacky <[email protected]>
963 S:      Supported
964 F:      arch/arm64/boot/dts/amd/
965
966 AMD XGBE DRIVER
967 M:      Tom Lendacky <[email protected]>
968 L:      [email protected]
969 S:      Supported
970 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
971 F:      drivers/net/ethernet/amd/xgbe/
972
973 AMD SENSOR FUSION HUB DRIVER
974 M:      Nehal Shah <[email protected]>
975 M:      Sandeep Singh <[email protected]>
976 L:      [email protected]
977 S:      Maintained
978 F:      Documentation/hid/amd-sfh*
979 F:      drivers/hid/amd-sfh-hid/
980
981 AMS AS73211 DRIVER
982 M:      Christian Eggers <[email protected]>
983 L:      [email protected]
984 S:      Maintained
985 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
986 F:      drivers/iio/light/as73211.c
987
988 ANALOG DEVICES INC AD7192 DRIVER
989 M:      Alexandru Tachici <[email protected]>
990 L:      [email protected]
991 S:      Supported
992 W:      http://ez.analog.com/community/linux-device-drivers
993 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
994 F:      drivers/iio/adc/ad7192.c
995
996 ANALOG DEVICES INC AD7292 DRIVER
997 M:      Marcelo Schmitt <[email protected]>
998 L:      [email protected]
999 S:      Supported
1000 W:      http://ez.analog.com/community/linux-device-drivers
1001 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1002 F:      drivers/iio/adc/ad7292.c
1003
1004 ANALOG DEVICES INC AD7768-1 DRIVER
1005 M:      Michael Hennerich <[email protected]>
1006 L:      [email protected]
1007 S:      Supported
1008 W:      http://ez.analog.com/community/linux-device-drivers
1009 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1010 F:      drivers/iio/adc/ad7768-1.c
1011
1012 ANALOG DEVICES INC AD7780 DRIVER
1013 M:      Michael Hennerich <[email protected]>
1014 M:      Renato Lui Geh <[email protected]>
1015 L:      [email protected]
1016 S:      Supported
1017 W:      http://ez.analog.com/community/linux-device-drivers
1018 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1019 F:      drivers/iio/adc/ad7780.c
1020
1021 ANALOG DEVICES INC AD9389B DRIVER
1022 M:      Hans Verkuil <[email protected]>
1023 L:      [email protected]
1024 S:      Maintained
1025 F:      drivers/media/i2c/ad9389b*
1026
1027 ANALOG DEVICES INC ADGS1408 DRIVER
1028 M:      Mircea Caprioru <[email protected]>
1029 S:      Supported
1030 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1031 F:      drivers/mux/adgs1408.c
1032
1033 ANALOG DEVICES INC ADIN DRIVER
1034 M:      Michael Hennerich <[email protected]>
1035 L:      [email protected]
1036 S:      Supported
1037 W:      http://ez.analog.com/community/linux-device-drivers
1038 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1039 F:      drivers/net/phy/adin.c
1040
1041 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1042 M:      Nuno Sa <[email protected]>
1043 L:      [email protected]
1044 S:      Supported
1045 F:      drivers/iio/imu/adis.c
1046 F:      include/linux/iio/imu/adis.h
1047
1048 ANALOG DEVICES INC ADIS16460 DRIVER
1049 M:      Dragos Bogdan <[email protected]>
1050 L:      [email protected]
1051 S:      Supported
1052 W:      http://ez.analog.com/community/linux-device-drivers
1053 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1054 F:      drivers/iio/imu/adis16460.c
1055
1056 ANALOG DEVICES INC ADIS16475 DRIVER
1057 M:      Nuno Sa <[email protected]>
1058 L:      [email protected]
1059 W:      http://ez.analog.com/community/linux-device-drivers
1060 S:      Supported
1061 F:      drivers/iio/imu/adis16475.c
1062 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1063
1064 ANALOG DEVICES INC ADM1177 DRIVER
1065 M:      Michael Hennerich <[email protected]>
1066 L:      [email protected]
1067 S:      Supported
1068 W:      http://ez.analog.com/community/linux-device-drivers
1069 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1070 F:      drivers/hwmon/adm1177.c
1071
1072 ANALOG DEVICES INC ADP5061 DRIVER
1073 M:      Michael Hennerich <[email protected]>
1074 L:      [email protected]
1075 S:      Supported
1076 W:      http://ez.analog.com/community/linux-device-drivers
1077 F:      drivers/power/supply/adp5061.c
1078
1079 ANALOG DEVICES INC ADV7180 DRIVER
1080 M:      Lars-Peter Clausen <[email protected]>
1081 L:      [email protected]
1082 S:      Supported
1083 W:      http://ez.analog.com/community/linux-device-drivers
1084 F:      drivers/media/i2c/adv7180.c
1085 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1086
1087 ANALOG DEVICES INC ADV748X DRIVER
1088 M:      Kieran Bingham <[email protected]>
1089 L:      [email protected]
1090 S:      Maintained
1091 F:      drivers/media/i2c/adv748x/*
1092
1093 ANALOG DEVICES INC ADV7511 DRIVER
1094 M:      Hans Verkuil <[email protected]>
1095 L:      [email protected]
1096 S:      Maintained
1097 F:      drivers/media/i2c/adv7511*
1098
1099 ANALOG DEVICES INC ADV7604 DRIVER
1100 M:      Hans Verkuil <[email protected]>
1101 L:      [email protected]
1102 S:      Maintained
1103 F:      drivers/media/i2c/adv7604*
1104 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1105
1106 ANALOG DEVICES INC ADV7842 DRIVER
1107 M:      Hans Verkuil <[email protected]>
1108 L:      [email protected]
1109 S:      Maintained
1110 F:      drivers/media/i2c/adv7842*
1111
1112 ANALOG DEVICES INC ADXRS290 DRIVER
1113 M:      Nishant Malpani <[email protected]>
1114 L:      [email protected]
1115 S:      Supported
1116 F:      drivers/iio/gyro/adxrs290.c
1117 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1118
1119 ANALOG DEVICES INC ASOC CODEC DRIVERS
1120 M:      Lars-Peter Clausen <[email protected]>
1121 M:      Nuno Sá <[email protected]>
1122 L:      [email protected] (moderated for non-subscribers)
1123 S:      Supported
1124 W:      http://wiki.analog.com/
1125 W:      http://ez.analog.com/community/linux-device-drivers
1126 F:      sound/soc/codecs/ad1*
1127 F:      sound/soc/codecs/ad7*
1128 F:      sound/soc/codecs/adau*
1129 F:      sound/soc/codecs/adav*
1130 F:      sound/soc/codecs/sigmadsp.*
1131 F:      sound/soc/codecs/ssm*
1132
1133 ANALOG DEVICES INC DMA DRIVERS
1134 M:      Lars-Peter Clausen <[email protected]>
1135 S:      Supported
1136 W:      http://ez.analog.com/community/linux-device-drivers
1137 F:      drivers/dma/dma-axi-dmac.c
1138
1139 ANALOG DEVICES INC IIO DRIVERS
1140 M:      Lars-Peter Clausen <[email protected]>
1141 M:      Michael Hennerich <[email protected]>
1142 S:      Supported
1143 W:      http://wiki.analog.com/
1144 W:      http://ez.analog.com/community/linux-device-drivers
1145 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1146 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1147 F:      Documentation/devicetree/bindings/iio/*/adi,*
1148 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1149 F:      drivers/iio/*/ad*
1150 F:      drivers/iio/adc/ltc249*
1151 F:      drivers/iio/amplifiers/hmc425a.c
1152 F:      drivers/staging/iio/*/ad*
1153 X:      drivers/iio/*/adjd*
1154
1155 ANALOGBITS PLL LIBRARIES
1156 M:      Paul Walmsley <[email protected]>
1157 S:      Supported
1158 F:      drivers/clk/analogbits/*
1159 F:      include/linux/clk/analogbits*
1160
1161 ANDES ARCHITECTURE
1162 M:      Nick Hu <[email protected]>
1163 M:      Greentime Hu <[email protected]>
1164 M:      Vincent Chen <[email protected]>
1165 S:      Supported
1166 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1167 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1168 F:      Documentation/devicetree/bindings/nds32/
1169 F:      arch/nds32/
1170 N:      nds32
1171 K:      nds32
1172
1173 ANDROID CONFIG FRAGMENTS
1174 M:      Rob Herring <[email protected]>
1175 S:      Supported
1176 F:      kernel/configs/android*
1177
1178 ANDROID DRIVERS
1179 M:      Greg Kroah-Hartman <[email protected]>
1180 M:      Arve Hjønnevåg <[email protected]>
1181 M:      Todd Kjos <[email protected]>
1182 M:      Martijn Coenen <[email protected]>
1183 M:      Joel Fernandes <[email protected]>
1184 M:      Christian Brauner <[email protected]>
1185 M:      Hridya Valsaraju <[email protected]>
1186 M:      Suren Baghdasaryan <[email protected]>
1187 L:      [email protected]
1188 S:      Supported
1189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1190 F:      drivers/android/
1191 F:      drivers/staging/android/
1192
1193 ANDROID GOLDFISH PIC DRIVER
1194 M:      Miodrag Dinic <[email protected]>
1195 S:      Supported
1196 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1197 F:      drivers/irqchip/irq-goldfish-pic.c
1198
1199 ANDROID GOLDFISH RTC DRIVER
1200 M:      Jiaxun Yang <[email protected]>
1201 S:      Supported
1202 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1203 F:      drivers/rtc/rtc-goldfish.c
1204
1205 AOA (Apple Onboard Audio) ALSA DRIVER
1206 M:      Johannes Berg <[email protected]>
1207 L:      [email protected]
1208 L:      [email protected] (moderated for non-subscribers)
1209 S:      Maintained
1210 F:      sound/aoa/
1211
1212 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1213 M:      William Breathitt Gray <[email protected]>
1214 L:      [email protected]
1215 S:      Maintained
1216 F:      drivers/iio/adc/stx104.c
1217
1218 APM DRIVER
1219 M:      Jiri Kosina <[email protected]>
1220 S:      Odd fixes
1221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1222 F:      arch/x86/kernel/apm_32.c
1223 F:      drivers/char/apm-emulation.c
1224 F:      include/linux/apm_bios.h
1225 F:      include/uapi/linux/apm_bios.h
1226
1227 APPARMOR SECURITY MODULE
1228 M:      John Johansen <[email protected]>
1229 L:      [email protected] (subscribers-only, general discussion)
1230 S:      Supported
1231 W:      wiki.apparmor.net
1232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1233 F:      Documentation/admin-guide/LSM/apparmor.rst
1234 F:      security/apparmor/
1235
1236 APPLE BCM5974 MULTITOUCH DRIVER
1237 M:      Henrik Rydberg <[email protected]>
1238 L:      [email protected]
1239 S:      Odd fixes
1240 F:      drivers/input/mouse/bcm5974.c
1241
1242 APPLE SMC DRIVER
1243 M:      Henrik Rydberg <[email protected]>
1244 L:      [email protected]
1245 S:      Odd fixes
1246 F:      drivers/hwmon/applesmc.c
1247
1248 APPLETALK NETWORK LAYER
1249 L:      [email protected]
1250 S:      Odd fixes
1251 F:      drivers/net/appletalk/
1252 F:      include/linux/atalk.h
1253 F:      include/uapi/linux/atalk.h
1254 F:      net/appletalk/
1255
1256 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1257 M:      Khuong Dinh <[email protected]>
1258 S:      Supported
1259 F:      arch/arm64/boot/dts/apm/
1260
1261 APPLIED MICRO (APM) X-GENE SOC EDAC
1262 M:      Khuong Dinh <[email protected]>
1263 S:      Supported
1264 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1265 F:      drivers/edac/xgene_edac.c
1266
1267 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1268 M:      Iyappan Subramanian <[email protected]>
1269 M:      Keyur Chudgar <[email protected]>
1270 S:      Supported
1271 F:      drivers/net/ethernet/apm/xgene-v2/
1272
1273 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1274 M:      Iyappan Subramanian <[email protected]>
1275 M:      Keyur Chudgar <[email protected]>
1276 M:      Quan Nguyen <[email protected]>
1277 S:      Supported
1278 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1279 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1280 F:      drivers/net/ethernet/apm/xgene/
1281 F:      drivers/net/mdio/mdio-xgene.c
1282
1283 APPLIED MICRO (APM) X-GENE SOC PMU
1284 M:      Khuong Dinh <[email protected]>
1285 S:      Supported
1286 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1287 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1288 F:      drivers/perf/xgene_pmu.c
1289
1290 APTINA CAMERA SENSOR PLL
1291 M:      Laurent Pinchart <[email protected]>
1292 L:      [email protected]
1293 S:      Maintained
1294 F:      drivers/media/i2c/aptina-pll.*
1295
1296 AQUANTIA ETHERNET DRIVER (atlantic)
1297 M:      Igor Russkikh <[email protected]>
1298 L:      [email protected]
1299 S:      Supported
1300 W:      https://www.marvell.com/
1301 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1302 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1303 F:      drivers/net/ethernet/aquantia/atlantic/
1304
1305 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1306 M:      Egor Pomozov <[email protected]>
1307 L:      [email protected]
1308 S:      Supported
1309 W:      http://www.aquantia.com
1310 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1311
1312 ARASAN NAND CONTROLLER DRIVER
1313 M:      Naga Sureshkumar Relli <[email protected]>
1314 L:      [email protected]
1315 S:      Maintained
1316 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1317 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1318
1319 ARC FRAMEBUFFER DRIVER
1320 M:      Jaya Kumar <[email protected]>
1321 S:      Maintained
1322 F:      drivers/video/fbdev/arcfb.c
1323 F:      drivers/video/fbdev/core/fb_defio.c
1324
1325 ARC PGU DRM DRIVER
1326 M:      Alexey Brodkin <[email protected]>
1327 S:      Supported
1328 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1329 F:      drivers/gpu/drm/tiny/arcpgu.c
1330
1331 ARCNET NETWORK LAYER
1332 M:      Michael Grzeschik <[email protected]>
1333 L:      [email protected]
1334 S:      Maintained
1335 F:      drivers/net/arcnet/
1336 F:      include/uapi/linux/if_arcnet.h
1337
1338 ARM ARCHITECTED TIMER DRIVER
1339 M:      Mark Rutland <[email protected]>
1340 M:      Marc Zyngier <[email protected]>
1341 L:      [email protected] (moderated for non-subscribers)
1342 S:      Maintained
1343 F:      arch/arm/include/asm/arch_timer.h
1344 F:      arch/arm64/include/asm/arch_timer.h
1345 F:      drivers/clocksource/arm_arch_timer.c
1346
1347 ARM HDLCD DRM DRIVER
1348 M:      Liviu Dudau <[email protected]>
1349 S:      Supported
1350 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1351 F:      drivers/gpu/drm/arm/hdlcd_*
1352
1353 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1354 M:      Linus Walleij <[email protected]>
1355 L:      [email protected] (moderated for non-subscribers)
1356 S:      Maintained
1357 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1358 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1359 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1360 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1361 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1362 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1363 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1364 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1365 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1366 F:      arch/arm/boot/dts/arm-realview-*
1367 F:      arch/arm/boot/dts/integrator*
1368 F:      arch/arm/boot/dts/versatile*
1369 F:      arch/arm/mach-integrator/
1370 F:      arch/arm/mach-realview/
1371 F:      arch/arm/mach-versatile/
1372 F:      arch/arm/plat-versatile/
1373 F:      drivers/bus/arm-integrator-lm.c
1374 F:      drivers/clk/versatile/
1375 F:      drivers/i2c/busses/i2c-versatile.c
1376 F:      drivers/irqchip/irq-versatile-fpga.c
1377 F:      drivers/mtd/maps/physmap-versatile.*
1378 F:      drivers/power/reset/arm-versatile-reboot.c
1379 F:      drivers/soc/versatile/
1380
1381 ARM KOMEDA DRM-KMS DRIVER
1382 M:      James (Qian) Wang <[email protected]>
1383 M:      Liviu Dudau <[email protected]>
1384 M:      Mihail Atanassov <[email protected]>
1385 L:      Mali DP Maintainers <[email protected]>
1386 S:      Supported
1387 T:      git git://anongit.freedesktop.org/drm/drm-misc
1388 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1389 F:      Documentation/gpu/komeda-kms.rst
1390 F:      drivers/gpu/drm/arm/display/include/
1391 F:      drivers/gpu/drm/arm/display/komeda/
1392
1393 ARM MALI PANFROST DRM DRIVER
1394 M:      Rob Herring <[email protected]>
1395 M:      Tomeu Vizoso <[email protected]>
1396 R:      Steven Price <[email protected]>
1397 R:      Alyssa Rosenzweig <[email protected]>
1398 L:      [email protected]
1399 S:      Supported
1400 T:      git git://anongit.freedesktop.org/drm/drm-misc
1401 F:      drivers/gpu/drm/panfrost/
1402 F:      include/uapi/drm/panfrost_drm.h
1403
1404 ARM MALI-DP DRM DRIVER
1405 M:      Liviu Dudau <[email protected]>
1406 M:      Brian Starkey <[email protected]>
1407 L:      Mali DP Maintainers <[email protected]>
1408 S:      Supported
1409 T:      git git://anongit.freedesktop.org/drm/drm-misc
1410 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1411 F:      Documentation/gpu/afbc.rst
1412 F:      drivers/gpu/drm/arm/
1413
1414 ARM MFM AND FLOPPY DRIVERS
1415 M:      Ian Molton <[email protected]>
1416 S:      Maintained
1417 F:      arch/arm/include/asm/floppy.h
1418 F:      arch/arm/mach-rpc/floppydma.S
1419
1420 ARM PMU PROFILING AND DEBUGGING
1421 M:      Will Deacon <[email protected]>
1422 M:      Mark Rutland <[email protected]>
1423 L:      [email protected] (moderated for non-subscribers)
1424 S:      Maintained
1425 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1426 F:      Documentation/devicetree/bindings/perf/
1427 F:      arch/arm*/include/asm/hw_breakpoint.h
1428 F:      arch/arm*/include/asm/perf_event.h
1429 F:      arch/arm*/kernel/hw_breakpoint.c
1430 F:      arch/arm*/kernel/perf_*
1431 F:      drivers/perf/
1432 F:      include/linux/perf/arm_pmu.h
1433
1434 ARM PORT
1435 M:      Russell King <[email protected]>
1436 L:      [email protected] (moderated for non-subscribers)
1437 S:      Odd Fixes
1438 W:      http://www.armlinux.org.uk/
1439 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1440 F:      arch/arm/
1441 X:      arch/arm/boot/dts/
1442
1443 ARM PRIMECELL AACI PL041 DRIVER
1444 M:      Russell King <[email protected]>
1445 S:      Odd Fixes
1446 F:      sound/arm/aaci.*
1447
1448 ARM PRIMECELL BUS SUPPORT
1449 M:      Russell King <[email protected]>
1450 S:      Odd Fixes
1451 F:      drivers/amba/
1452 F:      include/linux/amba/bus.h
1453
1454 ARM PRIMECELL CLCD PL110 DRIVER
1455 M:      Russell King <[email protected]>
1456 S:      Odd Fixes
1457 F:      drivers/video/fbdev/amba-clcd.*
1458
1459 ARM PRIMECELL KMI PL050 DRIVER
1460 M:      Russell King <[email protected]>
1461 S:      Odd Fixes
1462 F:      drivers/input/serio/ambakmi.*
1463 F:      include/linux/amba/kmi.h
1464
1465 ARM PRIMECELL MMCI PL180/1 DRIVER
1466 M:      Russell King <[email protected]>
1467 S:      Odd Fixes
1468 F:      drivers/mmc/host/mmci.*
1469 F:      include/linux/amba/mmci.h
1470
1471 ARM PRIMECELL SSP PL022 SPI DRIVER
1472 M:      Linus Walleij <[email protected]>
1473 L:      [email protected] (moderated for non-subscribers)
1474 S:      Maintained
1475 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1476 F:      drivers/spi/spi-pl022.c
1477
1478 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1479 M:      Russell King <[email protected]>
1480 S:      Odd Fixes
1481 F:      drivers/tty/serial/amba-pl01*.c
1482 F:      include/linux/amba/serial.h
1483
1484 ARM PRIMECELL VIC PL190/PL192 DRIVER
1485 M:      Linus Walleij <[email protected]>
1486 L:      [email protected] (moderated for non-subscribers)
1487 S:      Maintained
1488 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1489 F:      drivers/irqchip/irq-vic.c
1490
1491 ARM SMC WATCHDOG DRIVER
1492 M:      Julius Werner <[email protected]>
1493 R:      Evan Benn <[email protected]>
1494 S:      Maintained
1495 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1496 F:      drivers/watchdog/arm_smc_wdt.c
1497
1498 ARM SMMU DRIVERS
1499 M:      Will Deacon <[email protected]>
1500 R:      Robin Murphy <[email protected]>
1501 L:      [email protected] (moderated for non-subscribers)
1502 S:      Maintained
1503 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1504 F:      drivers/iommu/arm/
1505 F:      drivers/iommu/io-pgtable-arm*
1506
1507 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1508 M:      Arnd Bergmann <[email protected]>
1509 M:      Olof Johansson <[email protected]>
1510 M:      [email protected]
1511 L:      [email protected] (moderated for non-subscribers)
1512 S:      Maintained
1513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1514 F:      arch/arm/boot/dts/Makefile
1515 F:      arch/arm64/boot/dts/Makefile
1516
1517 ARM SUB-ARCHITECTURES
1518 L:      [email protected] (moderated for non-subscribers)
1519 S:      Maintained
1520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1521 F:      arch/arm/mach-*/
1522 F:      arch/arm/plat-*/
1523
1524 ARM/ACTIONS SEMI ARCHITECTURE
1525 M:      Andreas Färber <[email protected]>
1526 M:      Manivannan Sadhasivam <[email protected]>
1527 L:      [email protected] (moderated for non-subscribers)
1528 L:      [email protected] (moderated for non-subscribers)
1529 S:      Maintained
1530 F:      Documentation/devicetree/bindings/arm/actions.yaml
1531 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1532 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1533 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1534 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1535 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1536 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1537 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1538 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1539 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1540 F:      arch/arm/boot/dts/owl-*
1541 F:      arch/arm/mach-actions/
1542 F:      arch/arm64/boot/dts/actions/
1543 F:      drivers/clk/actions/
1544 F:      drivers/clocksource/timer-owl*
1545 F:      drivers/dma/owl-dma.c
1546 F:      drivers/i2c/busses/i2c-owl.c
1547 F:      drivers/irqchip/irq-owl-sirq.c
1548 F:      drivers/mmc/host/owl-mmc.c
1549 F:      drivers/net/ethernet/actions/
1550 F:      drivers/pinctrl/actions/*
1551 F:      drivers/soc/actions/
1552 F:      include/dt-bindings/power/owl-*
1553 F:      include/dt-bindings/reset/actions,*
1554 F:      include/linux/soc/actions/
1555 N:      owl
1556
1557 ARM/ADS SPHERE MACHINE SUPPORT
1558 M:      Lennert Buytenhek <[email protected]>
1559 L:      [email protected] (moderated for non-subscribers)
1560 S:      Maintained
1561
1562 ARM/AFEB9260 MACHINE SUPPORT
1563 M:      Sergey Lapin <[email protected]>
1564 L:      [email protected] (moderated for non-subscribers)
1565 S:      Maintained
1566
1567 ARM/AJECO 1ARM MACHINE SUPPORT
1568 M:      Lennert Buytenhek <[email protected]>
1569 L:      [email protected] (moderated for non-subscribers)
1570 S:      Maintained
1571
1572 ARM/Allwinner SoC Clock Support
1573 M:      Emilio López <[email protected]>
1574 S:      Maintained
1575 F:      drivers/clk/sunxi/
1576
1577 ARM/Allwinner sunXi SoC support
1578 M:      Maxime Ripard <[email protected]>
1579 M:      Chen-Yu Tsai <[email protected]>
1580 R:      Jernej Skrabec <[email protected]>
1581 L:      [email protected] (moderated for non-subscribers)
1582 S:      Maintained
1583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1584 L:      [email protected]
1585 F:      arch/arm/mach-sunxi/
1586 F:      arch/arm64/boot/dts/allwinner/
1587 F:      drivers/clk/sunxi-ng/
1588 F:      drivers/pinctrl/sunxi/
1589 F:      drivers/soc/sunxi/
1590 N:      allwinner
1591 N:      sun[x456789]i
1592 N:      sun50i
1593
1594 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1595 M:      Neil Armstrong <[email protected]>
1596 M:      Jerome Brunet <[email protected]>
1597 L:      [email protected]
1598 S:      Maintained
1599 F:      Documentation/devicetree/bindings/clock/amlogic*
1600 F:      drivers/clk/meson/
1601 F:      include/dt-bindings/clock/gxbb*
1602 F:      include/dt-bindings/clock/meson*
1603
1604 ARM/Amlogic Meson SoC Crypto Drivers
1605 M:      Corentin Labbe <[email protected]>
1606 L:      [email protected]
1607 L:      [email protected]
1608 S:      Maintained
1609 F:      Documentation/devicetree/bindings/crypto/amlogic*
1610 F:      drivers/crypto/amlogic/
1611
1612 ARM/Amlogic Meson SoC Sound Drivers
1613 M:      Jerome Brunet <[email protected]>
1614 L:      [email protected] (moderated for non-subscribers)
1615 S:      Maintained
1616 F:      Documentation/devicetree/bindings/sound/amlogic*
1617 F:      sound/soc/meson/
1618
1619 ARM/Amlogic Meson SoC support
1620 M:      Kevin Hilman <[email protected]>
1621 R:      Neil Armstrong <[email protected]>
1622 R:      Jerome Brunet <[email protected]>
1623 R:      Martin Blumenstingl <[email protected]>
1624 L:      [email protected] (moderated for non-subscribers)
1625 L:      [email protected]
1626 S:      Maintained
1627 W:      http://linux-meson.com/
1628 F:      arch/arm/boot/dts/meson*
1629 F:      arch/arm/mach-meson/
1630 F:      arch/arm64/boot/dts/amlogic/
1631 F:      drivers/mmc/host/meson*
1632 F:      drivers/pinctrl/meson/
1633 F:      drivers/rtc/rtc-meson*
1634 F:      drivers/soc/amlogic/
1635 N:      meson
1636
1637 ARM/Annapurna Labs ALPINE ARCHITECTURE
1638 M:      Tsahee Zidenberg <[email protected]>
1639 M:      Antoine Tenart <[email protected]>
1640 L:      [email protected] (moderated for non-subscribers)
1641 S:      Maintained
1642 F:      arch/arm/boot/dts/alpine*
1643 F:      arch/arm/mach-alpine/
1644 F:      arch/arm64/boot/dts/amazon/
1645 F:      drivers/*/*alpine*
1646
1647 ARM/APPLE MACHINE SUPPORT
1648 M:      Hector Martin <[email protected]>
1649 L:      [email protected] (moderated for non-subscribers)
1650 S:      Maintained
1651 W:      https://asahilinux.org
1652 B:      https://github.com/AsahiLinux/linux/issues
1653 C:      irc://chat.freenode.net/asahi-dev
1654 T:      git https://github.com/AsahiLinux/linux.git
1655 F:      Documentation/devicetree/bindings/arm/apple.yaml
1656 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1657 F:      arch/arm64/boot/dts/apple/
1658 F:      drivers/irqchip/irq-apple-aic.c
1659 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1660
1661 ARM/ARTPEC MACHINE SUPPORT
1662 M:      Jesper Nilsson <[email protected]>
1663 M:      Lars Persson <[email protected]>
1664 L:      [email protected]
1665 S:      Maintained
1666 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1667 F:      arch/arm/boot/dts/artpec6*
1668 F:      arch/arm/mach-artpec
1669 F:      drivers/clk/axis
1670 F:      drivers/crypto/axis
1671 F:      drivers/mmc/host/usdhi6rol0.c
1672 F:      drivers/pinctrl/pinctrl-artpec*
1673
1674 ARM/ASPEED I2C DRIVER
1675 M:      Brendan Higgins <[email protected]>
1676 R:      Benjamin Herrenschmidt <[email protected]>
1677 R:      Joel Stanley <[email protected]>
1678 L:      [email protected]
1679 L:      [email protected] (moderated for non-subscribers)
1680 S:      Maintained
1681 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1682 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1683 F:      drivers/i2c/busses/i2c-aspeed.c
1684 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1685
1686 ARM/ASPEED MACHINE SUPPORT
1687 M:      Joel Stanley <[email protected]>
1688 R:      Andrew Jeffery <[email protected]>
1689 L:      [email protected] (moderated for non-subscribers)
1690 L:      [email protected] (moderated for non-subscribers)
1691 S:      Supported
1692 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1694 F:      arch/arm/boot/dts/aspeed-*
1695 F:      arch/arm/mach-aspeed/
1696 N:      aspeed
1697
1698 ARM/BITMAIN ARCHITECTURE
1699 M:      Manivannan Sadhasivam <[email protected]>
1700 L:      [email protected] (moderated for non-subscribers)
1701 S:      Maintained
1702 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1703 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1704 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1705 F:      arch/arm64/boot/dts/bitmain/
1706 F:      drivers/clk/clk-bm1880.c
1707 F:      drivers/pinctrl/pinctrl-bm1880.c
1708
1709 ARM/CALXEDA HIGHBANK ARCHITECTURE
1710 M:      Andre Przywara <[email protected]>
1711 L:      [email protected] (moderated for non-subscribers)
1712 S:      Maintained
1713 F:      arch/arm/boot/dts/ecx-*.dts*
1714 F:      arch/arm/boot/dts/highbank.dts
1715 F:      arch/arm/mach-highbank/
1716
1717 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1718 M:      Krzysztof Halasa <[email protected]>
1719 S:      Maintained
1720 F:      arch/arm/mach-cns3xxx/
1721
1722 ARM/CAVIUM THUNDER NETWORK DRIVER
1723 M:      Sunil Goutham <[email protected]>
1724 L:      [email protected] (moderated for non-subscribers)
1725 S:      Supported
1726 F:      drivers/net/ethernet/cavium/thunder/
1727
1728 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1729 M:      Lukasz Majewski <[email protected]>
1730 L:      [email protected] (moderated for non-subscribers)
1731 S:      Maintained
1732 F:      arch/arm/mach-ep93xx/ts72xx.c
1733
1734 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1735 M:      Alexander Shiyan <[email protected]>
1736 L:      [email protected] (moderated for non-subscribers)
1737 S:      Odd Fixes
1738 N:      clps711x
1739
1740 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1741 M:      Lennert Buytenhek <[email protected]>
1742 L:      [email protected] (moderated for non-subscribers)
1743 S:      Maintained
1744
1745 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1746 M:      Hartley Sweeten <[email protected]>
1747 M:      Alexander Sverdlin <[email protected]>
1748 L:      [email protected] (moderated for non-subscribers)
1749 S:      Maintained
1750 F:      arch/arm/mach-ep93xx/
1751 F:      arch/arm/mach-ep93xx/include/mach/
1752
1753 ARM/CLKDEV SUPPORT
1754 M:      Russell King <[email protected]>
1755 L:      [email protected] (moderated for non-subscribers)
1756 S:      Maintained
1757 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1758 F:      drivers/clk/clkdev.c
1759
1760 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1761 M:      Baruch Siach <[email protected]>
1762 L:      [email protected] (moderated for non-subscribers)
1763 S:      Maintained
1764 F:      arch/arm/boot/dts/cx92755*
1765 N:      digicolor
1766
1767 ARM/CONTEC MICRO9 MACHINE SUPPORT
1768 M:      Hubert Feurstein <[email protected]>
1769 S:      Maintained
1770 F:      arch/arm/mach-ep93xx/micro9.c
1771
1772 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1773 M:      Mathieu Poirier <[email protected]>
1774 M:      Suzuki K Poulose <[email protected]>
1775 R:      Mike Leach <[email protected]>
1776 R:      Leo Yan <[email protected]>
1777 L:      [email protected] (moderated for non-subscribers)
1778 L:      [email protected] (moderated for non-subscribers)
1779 S:      Maintained
1780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1781 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1782 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1783 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1784 F:      Documentation/devicetree/bindings/arm/coresight.txt
1785 F:      Documentation/trace/coresight/*
1786 F:      drivers/hwtracing/coresight/*
1787 F:      include/dt-bindings/arm/coresight-cti-dt.h
1788 F:      include/linux/coresight*
1789 F:      tools/perf/arch/arm/util/auxtrace.c
1790 F:      tools/perf/arch/arm/util/cs-etm.c
1791 F:      tools/perf/arch/arm/util/cs-etm.h
1792 F:      tools/perf/arch/arm/util/pmu.c
1793 F:      tools/perf/util/cs-etm-decoder/*
1794 F:      tools/perf/util/cs-etm.*
1795
1796 ARM/CORGI MACHINE SUPPORT
1797 M:      Richard Purdie <[email protected]>
1798 S:      Maintained
1799
1800 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1801 M:      Hans Ulli Kroll <[email protected]>
1802 M:      Linus Walleij <[email protected]>
1803 L:      [email protected] (moderated for non-subscribers)
1804 S:      Maintained
1805 T:      git git://github.com/ulli-kroll/linux.git
1806 F:      Documentation/devicetree/bindings/arm/gemini.txt
1807 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1808 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1809 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1810 F:      arch/arm/mach-gemini/
1811 F:      drivers/net/ethernet/cortina/
1812 F:      drivers/pinctrl/pinctrl-gemini.c
1813 F:      drivers/rtc/rtc-ftrtc010.c
1814
1815 ARM/CZ.NIC TURRIS SUPPORT
1816 M:      Marek Behun <[email protected]>
1817 S:      Maintained
1818 W:      https://www.turris.cz/
1819 F:      Documentation/ABI/testing/debugfs-moxtet
1820 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1821 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1822 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1823 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1824 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1825 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1826 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1827 F:      drivers/bus/moxtet.c
1828 F:      drivers/firmware/turris-mox-rwtm.c
1829 F:      drivers/leds/leds-turris-omnia.c
1830 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1831 F:      drivers/gpio/gpio-moxtet.c
1832 F:      drivers/watchdog/armada_37xx_wdt.c
1833 F:      include/dt-bindings/bus/moxtet.h
1834 F:      include/linux/armada-37xx-rwtm-mailbox.h
1835 F:      include/linux/moxtet.h
1836
1837 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1838 M:      Robert Jarzmik <[email protected]>
1839 L:      [email protected] (moderated for non-subscribers)
1840 S:      Maintained
1841 F:      arch/arm/mach-pxa/ezx.c
1842
1843 ARM/FARADAY FA526 PORT
1844 M:      Hans Ulli Kroll <[email protected]>
1845 L:      [email protected] (moderated for non-subscribers)
1846 S:      Maintained
1847 T:      git git://git.berlios.de/gemini-board
1848 F:      arch/arm/mm/*-fa*
1849
1850 ARM/FOOTBRIDGE ARCHITECTURE
1851 M:      Russell King <[email protected]>
1852 L:      [email protected] (moderated for non-subscribers)
1853 S:      Maintained
1854 W:      http://www.armlinux.org.uk/
1855 F:      arch/arm/include/asm/hardware/dec21285.h
1856 F:      arch/arm/mach-footbridge/
1857
1858 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1859 M:      Shawn Guo <[email protected]>
1860 M:      Sascha Hauer <[email protected]>
1861 R:      Pengutronix Kernel Team <[email protected]>
1862 R:      Fabio Estevam <[email protected]>
1863 R:      NXP Linux Team <[email protected]>
1864 L:      [email protected] (moderated for non-subscribers)
1865 S:      Maintained
1866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1867 X:      drivers/media/i2c/
1868 N:      imx
1869 N:      mxs
1870
1871 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1872 M:      Shawn Guo <[email protected]>
1873 M:      Li Yang <[email protected]>
1874 L:      [email protected] (moderated for non-subscribers)
1875 S:      Maintained
1876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1877 F:      arch/arm/boot/dts/ls1021a*
1878 F:      arch/arm64/boot/dts/freescale/fsl-*
1879 F:      arch/arm64/boot/dts/freescale/qoriq-*
1880
1881 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1882 M:      Shawn Guo <[email protected]>
1883 M:      Sascha Hauer <[email protected]>
1884 R:      Pengutronix Kernel Team <[email protected]>
1885 R:      Stefan Agner <[email protected]>
1886 L:      [email protected] (moderated for non-subscribers)
1887 S:      Maintained
1888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1889 F:      arch/arm/boot/dts/vf*
1890 F:      arch/arm/mach-imx/*vf610*
1891
1892 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1893 M:      Lennert Buytenhek <[email protected]>
1894 L:      [email protected] (moderated for non-subscribers)
1895 S:      Maintained
1896
1897 ARM/GUMSTIX MACHINE SUPPORT
1898 M:      Steve Sakoman <[email protected]>
1899 L:      [email protected] (moderated for non-subscribers)
1900 S:      Maintained
1901
1902 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1903 M:      Philipp Zabel <[email protected]>
1904 M:      Paul Parsons <[email protected]>
1905 L:      [email protected] (moderated for non-subscribers)
1906 S:      Maintained
1907 F:      arch/arm/mach-pxa/hx4700.c
1908 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1909 F:      sound/soc/pxa/hx4700.c
1910
1911 ARM/HISILICON SOC SUPPORT
1912 M:      Wei Xu <[email protected]>
1913 L:      [email protected] (moderated for non-subscribers)
1914 S:      Supported
1915 W:      http://www.hisilicon.com
1916 T:      git git://github.com/hisilicon/linux-hisi.git
1917 F:      arch/arm/boot/dts/hi3*
1918 F:      arch/arm/boot/dts/hip*
1919 F:      arch/arm/boot/dts/hisi*
1920 F:      arch/arm/mach-hisi/
1921 F:      arch/arm64/boot/dts/hisilicon/
1922
1923 ARM/HP JORNADA 7XX MACHINE SUPPORT
1924 M:      Kristoffer Ericson <[email protected]>
1925 S:      Maintained
1926 W:      www.jlime.com
1927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1928 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1929 F:      arch/arm/mach-sa1100/jornada720.c
1930
1931 ARM/IGEP MACHINE SUPPORT
1932 M:      Enric Balletbo i Serra <[email protected]>
1933 M:      Javier Martinez Canillas <[email protected]>
1934 L:      [email protected]
1935 L:      [email protected] (moderated for non-subscribers)
1936 S:      Maintained
1937 F:      arch/arm/boot/dts/omap3-igep*
1938
1939 ARM/INCOME PXA270 SUPPORT
1940 M:      Marek Vasut <[email protected]>
1941 L:      [email protected] (moderated for non-subscribers)
1942 S:      Maintained
1943 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1944
1945 ARM/INTEL IOP32X ARM ARCHITECTURE
1946 M:      Lennert Buytenhek <[email protected]>
1947 L:      [email protected] (moderated for non-subscribers)
1948 S:      Maintained
1949
1950 ARM/INTEL IQ81342EX MACHINE SUPPORT
1951 M:      Lennert Buytenhek <[email protected]>
1952 L:      [email protected] (moderated for non-subscribers)
1953 S:      Maintained
1954
1955 ARM/INTEL IXDP2850 MACHINE SUPPORT
1956 M:      Lennert Buytenhek <[email protected]>
1957 L:      [email protected] (moderated for non-subscribers)
1958 S:      Maintained
1959
1960 ARM/INTEL IXP4XX ARM ARCHITECTURE
1961 M:      Linus Walleij <[email protected]>
1962 M:      Imre Kaloz <[email protected]>
1963 M:      Krzysztof Halasa <[email protected]>
1964 L:      [email protected] (moderated for non-subscribers)
1965 S:      Maintained
1966 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1967 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1968 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1969 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1970 F:      arch/arm/mach-ixp4xx/
1971 F:      drivers/clocksource/timer-ixp4xx.c
1972 F:      drivers/gpio/gpio-ixp4xx.c
1973 F:      drivers/irqchip/irq-ixp4xx.c
1974 F:      include/linux/irqchip/irq-ixp4xx.h
1975 F:      include/linux/platform_data/timer-ixp4xx.h
1976
1977 ARM/INTEL KEEMBAY ARCHITECTURE
1978 M:      Paul J. Murphy <[email protected]>
1979 M:      Daniele Alessandrelli <[email protected]>
1980 S:      Maintained
1981 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1982 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1983 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1984
1985 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1986 M:      Jonathan Cameron <[email protected]>
1987 L:      [email protected] (moderated for non-subscribers)
1988 S:      Maintained
1989 F:      arch/arm/mach-pxa/stargate2.c
1990 F:      drivers/pcmcia/pxa2xx_stargate2.c
1991
1992 ARM/INTEL XSC3 (MANZANO) ARM CORE
1993 M:      Lennert Buytenhek <[email protected]>
1994 L:      [email protected] (moderated for non-subscribers)
1995 S:      Maintained
1996
1997 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1998 M:      Lennert Buytenhek <[email protected]>
1999 L:      [email protected] (moderated for non-subscribers)
2000 S:      Maintained
2001
2002 ARM/LG1K ARCHITECTURE
2003 M:      Chanho Min <[email protected]>
2004 L:      [email protected] (moderated for non-subscribers)
2005 S:      Maintained
2006 F:      arch/arm64/boot/dts/lg/
2007
2008 ARM/LOGICPD PXA270 MACHINE SUPPORT
2009 M:      Lennert Buytenhek <[email protected]>
2010 L:      [email protected] (moderated for non-subscribers)
2011 S:      Maintained
2012
2013 ARM/LPC18XX ARCHITECTURE
2014 M:      Vladimir Zapolskiy <[email protected]>
2015 L:      [email protected] (moderated for non-subscribers)
2016 S:      Maintained
2017 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2018 F:      arch/arm/boot/dts/lpc43*
2019 F:      drivers/i2c/busses/i2c-lpc2k.c
2020 F:      drivers/memory/pl172.c
2021 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2022 F:      drivers/rtc/rtc-lpc24xx.c
2023 N:      lpc18xx
2024
2025 ARM/LPC32XX SOC SUPPORT
2026 M:      Vladimir Zapolskiy <[email protected]>
2027 L:      [email protected] (moderated for non-subscribers)
2028 S:      Maintained
2029 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2030 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2031 F:      arch/arm/boot/dts/lpc32*
2032 F:      arch/arm/mach-lpc32xx/
2033 F:      drivers/i2c/busses/i2c-pnx.c
2034 F:      drivers/net/ethernet/nxp/lpc_eth.c
2035 F:      drivers/usb/host/ohci-nxp.c
2036 F:      drivers/watchdog/pnx4008_wdt.c
2037 N:      lpc32xx
2038
2039 ARM/MAGICIAN MACHINE SUPPORT
2040 M:      Philipp Zabel <[email protected]>
2041 S:      Maintained
2042
2043 ARM/Marvell Dove/MV78xx0/Orion SOC support
2044 M:      Andrew Lunn <[email protected]>
2045 M:      Sebastian Hesselbarth <[email protected]>
2046 M:      Gregory Clement <[email protected]>
2047 L:      [email protected] (moderated for non-subscribers)
2048 S:      Maintained
2049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2050 F:      Documentation/devicetree/bindings/soc/dove/
2051 F:      arch/arm/boot/dts/dove*
2052 F:      arch/arm/boot/dts/orion5x*
2053 F:      arch/arm/mach-dove/
2054 F:      arch/arm/mach-mv78xx0/
2055 F:      arch/arm/mach-orion5x/
2056 F:      arch/arm/plat-orion/
2057 F:      drivers/soc/dove/
2058
2059 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2060 M:      Andrew Lunn <[email protected]>
2061 M:      Gregory Clement <[email protected]>
2062 M:      Sebastian Hesselbarth <[email protected]>
2063 L:      [email protected] (moderated for non-subscribers)
2064 S:      Maintained
2065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2066 F:      arch/arm/boot/dts/armada*
2067 F:      arch/arm/boot/dts/kirkwood*
2068 F:      arch/arm/configs/mvebu_*_defconfig
2069 F:      arch/arm/mach-mvebu/
2070 F:      arch/arm64/boot/dts/marvell/armada*
2071 F:      arch/arm64/boot/dts/marvell/cn913*
2072 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2073 F:      drivers/cpufreq/armada-8k-cpufreq.c
2074 F:      drivers/cpufreq/mvebu-cpufreq.c
2075 F:      drivers/irqchip/irq-armada-370-xp.c
2076 F:      drivers/irqchip/irq-mvebu-*
2077 F:      drivers/pinctrl/mvebu/
2078 F:      drivers/rtc/rtc-armada38x.c
2079
2080 ARM/Mediatek RTC DRIVER
2081 M:      Eddie Huang <[email protected]>
2082 M:      Sean Wang <[email protected]>
2083 L:      [email protected] (moderated for non-subscribers)
2084 L:      [email protected] (moderated for non-subscribers)
2085 S:      Maintained
2086 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2087 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2088 F:      drivers/rtc/rtc-mt2712.c
2089 F:      drivers/rtc/rtc-mt6397.c
2090 F:      drivers/rtc/rtc-mt7622.c
2091
2092 ARM/Mediatek SoC support
2093 M:      Matthias Brugger <[email protected]>
2094 L:      [email protected] (moderated for non-subscribers)
2095 L:      [email protected] (moderated for non-subscribers)
2096 S:      Maintained
2097 W:      https://mtk.wiki.kernel.org/
2098 C:      irc://chat.freenode.net/linux-mediatek
2099 F:      arch/arm/boot/dts/mt6*
2100 F:      arch/arm/boot/dts/mt7*
2101 F:      arch/arm/boot/dts/mt8*
2102 F:      arch/arm/mach-mediatek/
2103 F:      arch/arm64/boot/dts/mediatek/
2104 F:      drivers/soc/mediatek/
2105 N:      mtk
2106 N:      mt[678]
2107 K:      mediatek
2108
2109 ARM/Mediatek USB3 PHY DRIVER
2110 M:      Chunfeng Yun <[email protected]>
2111 L:      [email protected] (moderated for non-subscribers)
2112 L:      [email protected] (moderated for non-subscribers)
2113 S:      Maintained
2114 F:      Documentation/devicetree/bindings/phy/mediatek,*
2115 F:      drivers/phy/mediatek/
2116
2117 ARM/Microchip (AT91) SoC support
2118 M:      Nicolas Ferre <[email protected]>
2119 M:      Alexandre Belloni <[email protected]>
2120 M:      Ludovic Desroches <[email protected]>
2121 L:      [email protected] (moderated for non-subscribers)
2122 S:      Supported
2123 W:      http://www.linux4sam.org
2124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2125 F:      arch/arm/boot/dts/at91*.dts
2126 F:      arch/arm/boot/dts/at91*.dtsi
2127 F:      arch/arm/boot/dts/sama*.dts
2128 F:      arch/arm/boot/dts/sama*.dtsi
2129 F:      arch/arm/include/debug/at91.S
2130 F:      arch/arm/mach-at91/
2131 F:      drivers/memory/atmel*
2132 F:      drivers/watchdog/sama5d4_wdt.c
2133 F:      include/soc/at91/
2134 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2135 X:      drivers/net/wireless/atmel/
2136 N:      at91
2137 N:      atmel
2138
2139 ARM/Microchip Sparx5 SoC support
2140 M:      Lars Povlsen <[email protected]>
2141 M:      Steen Hegelund <[email protected]>
2142 M:      [email protected]
2143 L:      [email protected] (moderated for non-subscribers)
2144 S:      Supported
2145 T:      git git://github.com/microchip-ung/linux-upstream.git
2146 F:      arch/arm64/boot/dts/microchip/
2147 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2148 N:      sparx5
2149
2150 Microchip Timer Counter Block (TCB) Capture Driver
2151 M:      Kamel Bouhara <[email protected]>
2152 L:      [email protected] (moderated for non-subscribers)
2153 L:      [email protected]
2154 S:      Maintained
2155 F:      drivers/counter/microchip-tcb-capture.c
2156
2157 ARM/MIOA701 MACHINE SUPPORT
2158 M:      Robert Jarzmik <[email protected]>
2159 L:      [email protected] (moderated for non-subscribers)
2160 S:      Maintained
2161 F:      arch/arm/mach-pxa/mioa701.c
2162
2163 ARM/MStar/Sigmastar Armv7 SoC support
2164 M:      Daniel Palmer <[email protected]>
2165 L:      [email protected] (moderated for non-subscribers)
2166 S:      Maintained
2167 W:      http://linux-chenxing.org/
2168 F:      Documentation/devicetree/bindings/arm/mstar/*
2169 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2170 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2171 F:      arch/arm/boot/dts/mstar-*
2172 F:      arch/arm/mach-mstar/
2173 F:      drivers/clk/mstar/
2174 F:      drivers/gpio/gpio-msc313.c
2175 F:      include/dt-bindings/clock/mstar-*
2176 F:      include/dt-bindings/gpio/msc313-gpio.h
2177
2178 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2179 M:      Michael Petchkovsky <[email protected]>
2180 S:      Maintained
2181
2182 ARM/NOMADIK/Ux500 ARCHITECTURES
2183 M:      Linus Walleij <[email protected]>
2184 L:      [email protected] (moderated for non-subscribers)
2185 S:      Maintained
2186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2187 F:      Documentation/devicetree/bindings/arm/ste-*
2188 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2189 F:      Documentation/devicetree/bindings/arm/ux500/
2190 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2191 F:      arch/arm/boot/dts/ste-*
2192 F:      arch/arm/mach-nomadik/
2193 F:      arch/arm/mach-ux500/
2194 F:      drivers/clk/clk-nomadik.c
2195 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2196 F:      drivers/dma/ste_dma40*
2197 F:      drivers/hwspinlock/u8500_hsem.c
2198 F:      drivers/i2c/busses/i2c-nomadik.c
2199 F:      drivers/iio/adc/ab8500-gpadc.c
2200 F:      drivers/mfd/ab8500*
2201 F:      drivers/mfd/abx500*
2202 F:      drivers/mfd/db8500*
2203 F:      drivers/mfd/dbx500*
2204 F:      drivers/pinctrl/nomadik/
2205 F:      drivers/rtc/rtc-ab8500.c
2206 F:      drivers/rtc/rtc-pl031.c
2207 F:      drivers/soc/ux500/
2208
2209 ARM/NUVOTON NPCM ARCHITECTURE
2210 M:      Avi Fishman <[email protected]>
2211 M:      Tomer Maimon <[email protected]>
2212 M:      Tali Perry <[email protected]>
2213 R:      Patrick Venture <[email protected]>
2214 R:      Nancy Yuen <[email protected]>
2215 R:      Benjamin Fair <[email protected]>
2216 L:      [email protected] (moderated for non-subscribers)
2217 S:      Supported
2218 F:      Documentation/devicetree/bindings/*/*/*npcm*
2219 F:      Documentation/devicetree/bindings/*/*npcm*
2220 F:      arch/arm/boot/dts/nuvoton-npcm*
2221 F:      arch/arm/mach-npcm/
2222 F:      drivers/*/*npcm*
2223 F:      drivers/*/*/*npcm*
2224 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2225
2226 ARM/NUVOTON WPCM450 ARCHITECTURE
2227 M:      Jonathan Neuschäfer <[email protected]>
2228 L:      [email protected] (moderated for non-subscribers)
2229 S:      Maintained
2230 F:      Documentation/devicetree/bindings/*/*wpcm*
2231 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2232 F:      arch/arm/mach-npcm/wpcm450.c
2233 F:      drivers/*/*wpcm*
2234
2235 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2236 L:      [email protected] (subscribers-only)
2237 S:      Orphan
2238 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2239 F:      arch/arm/mach-s3c/gta02.h
2240 F:      arch/arm/mach-s3c/mach-gta02.c
2241
2242 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2243 M:      Alexander Clouter <[email protected]>
2244 L:      [email protected] (moderated for non-subscribers)
2245 S:      Maintained
2246 W:      http://www.digriz.org.uk/ts78xx/kernel
2247 F:      arch/arm/mach-orion5x/ts78xx-*
2248
2249 ARM/OXNAS platform support
2250 M:      Neil Armstrong <[email protected]>
2251 L:      [email protected] (moderated for non-subscribers)
2252 L:      [email protected] (moderated for non-subscribers)
2253 S:      Maintained
2254 F:      arch/arm/boot/dts/ox8*.dts*
2255 F:      arch/arm/mach-oxnas/
2256 F:      drivers/power/reset/oxnas-restart.c
2257 N:      oxnas
2258
2259 ARM/PALM TREO SUPPORT
2260 M:      Tomas Cech <[email protected]>
2261 L:      [email protected]
2262 S:      Maintained
2263 W:      http://hackndev.com
2264 F:      arch/arm/mach-pxa/palmtreo.*
2265
2266 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2267 M:      Marek Vasut <[email protected]>
2268 L:      [email protected]
2269 S:      Maintained
2270 W:      http://hackndev.com
2271 F:      arch/arm/mach-pxa/include/mach/palmld.h
2272 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2273 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2274 F:      arch/arm/mach-pxa/palmld.c
2275 F:      arch/arm/mach-pxa/palmt5.*
2276 F:      arch/arm/mach-pxa/palmtc.c
2277 F:      arch/arm/mach-pxa/palmte2.*
2278 F:      arch/arm/mach-pxa/palmtx.c
2279
2280 ARM/PALMZ72 SUPPORT
2281 M:      Sergey Lapin <[email protected]>
2282 L:      [email protected]
2283 S:      Maintained
2284 W:      http://hackndev.com
2285 F:      arch/arm/mach-pxa/palmz72.*
2286
2287 ARM/PLEB SUPPORT
2288 M:      Peter Chubb <[email protected]>
2289 S:      Maintained
2290 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2291
2292 ARM/PT DIGITAL BOARD PORT
2293 M:      Stefan Eletzhofer <[email protected]>
2294 L:      [email protected] (moderated for non-subscribers)
2295 S:      Maintained
2296 W:      http://www.armlinux.org.uk/
2297
2298 ARM/QUALCOMM SUPPORT
2299 M:      Andy Gross <[email protected]>
2300 M:      Bjorn Andersson <[email protected]>
2301 L:      [email protected]
2302 S:      Maintained
2303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2304 F:      Documentation/devicetree/bindings/*/qcom*
2305 F:      Documentation/devicetree/bindings/soc/qcom/
2306 F:      arch/arm/boot/dts/qcom-*.dts
2307 F:      arch/arm/boot/dts/qcom-*.dtsi
2308 F:      arch/arm/mach-qcom/
2309 F:      arch/arm64/boot/dts/qcom/
2310 F:      drivers/*/*/qcom*
2311 F:      drivers/*/*/qcom/
2312 F:      drivers/*/pm8???-*
2313 F:      drivers/*/qcom*
2314 F:      drivers/*/qcom/
2315 F:      drivers/bluetooth/btqcomsmd.c
2316 F:      drivers/clocksource/timer-qcom.c
2317 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2318 F:      drivers/extcon/extcon-qcom*
2319 F:      drivers/i2c/busses/i2c-qcom-geni.c
2320 F:      drivers/i2c/busses/i2c-qup.c
2321 F:      drivers/iommu/msm*
2322 F:      drivers/mfd/ssbi.c
2323 F:      drivers/mmc/host/mmci_qcom*
2324 F:      drivers/mmc/host/sdhci-msm.c
2325 F:      drivers/pci/controller/dwc/pcie-qcom.c
2326 F:      drivers/phy/qualcomm/
2327 F:      drivers/power/*/msm*
2328 F:      drivers/reset/reset-qcom-*
2329 F:      drivers/scsi/ufs/ufs-qcom*
2330 F:      drivers/spi/spi-geni-qcom.c
2331 F:      drivers/spi/spi-qcom-qspi.c
2332 F:      drivers/spi/spi-qup.c
2333 F:      drivers/tty/serial/msm_serial.c
2334 F:      drivers/usb/dwc3/dwc3-qcom.c
2335 F:      include/dt-bindings/*/qcom*
2336 F:      include/linux/*/qcom*
2337 F:      include/linux/soc/qcom/
2338
2339 ARM/RADISYS ENP2611 MACHINE SUPPORT
2340 M:      Lennert Buytenhek <[email protected]>
2341 L:      [email protected] (moderated for non-subscribers)
2342 S:      Maintained
2343
2344 ARM/RDA MICRO ARCHITECTURE
2345 M:      Manivannan Sadhasivam <[email protected]>
2346 L:      [email protected] (moderated for non-subscribers)
2347 L:      [email protected] (moderated for non-subscribers)
2348 S:      Maintained
2349 F:      Documentation/devicetree/bindings/arm/rda.yaml
2350 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2351 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2352 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2353 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2354 F:      arch/arm/boot/dts/rda8810pl-*
2355 F:      drivers/clocksource/timer-rda.c
2356 F:      drivers/gpio/gpio-rda.c
2357 F:      drivers/irqchip/irq-rda-intc.c
2358 F:      drivers/tty/serial/rda-uart.c
2359
2360 ARM/REALTEK ARCHITECTURE
2361 M:      Andreas Färber <[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/arm/realtek.yaml
2366 F:      arch/arm/boot/dts/rtd*
2367 F:      arch/arm/mach-realtek/
2368 F:      arch/arm64/boot/dts/realtek/
2369
2370 ARM/RENESAS ARM64 ARCHITECTURE
2371 M:      Geert Uytterhoeven <[email protected]>
2372 M:      Magnus Damm <[email protected]>
2373 L:      [email protected]
2374 S:      Supported
2375 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2377 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2378 F:      arch/arm64/boot/dts/renesas/
2379 F:      drivers/soc/renesas/
2380 F:      include/linux/soc/renesas/
2381
2382 ARM/RISCPC ARCHITECTURE
2383 M:      Russell King <[email protected]>
2384 L:      [email protected] (moderated for non-subscribers)
2385 S:      Maintained
2386 W:      http://www.armlinux.org.uk/
2387 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2388 F:      arch/arm/include/asm/hardware/ioc.h
2389 F:      arch/arm/include/asm/hardware/iomd.h
2390 F:      arch/arm/include/asm/hardware/memc.h
2391 F:      arch/arm/mach-rpc/
2392 F:      drivers/net/ethernet/8390/etherh.c
2393 F:      drivers/net/ethernet/i825xx/ether1*
2394 F:      drivers/net/ethernet/seeq/ether3*
2395 F:      drivers/scsi/arm/
2396
2397 ARM/Rockchip SoC support
2398 M:      Heiko Stuebner <[email protected]>
2399 L:      [email protected] (moderated for non-subscribers)
2400 L:      [email protected]
2401 S:      Maintained
2402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2403 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2404 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2405 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2406 F:      arch/arm/boot/dts/rk3*
2407 F:      arch/arm/boot/dts/rv1108*
2408 F:      arch/arm/mach-rockchip/
2409 F:      drivers/*/*/*rockchip*
2410 F:      drivers/*/*rockchip*
2411 F:      drivers/clk/rockchip/
2412 F:      drivers/i2c/busses/i2c-rk3x.c
2413 F:      sound/soc/rockchip/
2414 N:      rockchip
2415
2416 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2417 M:      Krzysztof Kozlowski <[email protected]>
2418 L:      [email protected] (moderated for non-subscribers)
2419 L:      [email protected]
2420 S:      Maintained
2421 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2422 F:      Documentation/arm/samsung/
2423 F:      Documentation/devicetree/bindings/arm/samsung/
2424 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2425 F:      arch/arm/boot/dts/exynos*
2426 F:      arch/arm/boot/dts/s3c*
2427 F:      arch/arm/boot/dts/s5p*
2428 F:      arch/arm/mach-exynos*/
2429 F:      arch/arm/mach-s3c/
2430 F:      arch/arm/mach-s5p*/
2431 F:      arch/arm64/boot/dts/exynos/
2432 F:      drivers/*/*/*s3c24*
2433 F:      drivers/*/*s3c24*
2434 F:      drivers/*/*s3c64xx*
2435 F:      drivers/*/*s5pv210*
2436 F:      drivers/memory/samsung/
2437 F:      drivers/soc/samsung/
2438 F:      drivers/tty/serial/samsung*
2439 F:      include/linux/platform_data/*s3c*
2440 F:      include/linux/serial_s3c.h
2441 F:      include/linux/soc/samsung/
2442 N:      exynos
2443 N:      s3c2410
2444 N:      s3c64xx
2445 N:      s5pv210
2446
2447 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2448 M:      Andrzej Hajda <[email protected]>
2449 L:      [email protected]
2450 L:      [email protected]
2451 S:      Maintained
2452 F:      drivers/media/platform/s5p-g2d/
2453
2454 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2455 M:      Marek Szyprowski <[email protected]>
2456 L:      [email protected]
2457 L:      [email protected]
2458 S:      Maintained
2459 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2460 F:      drivers/media/cec/platform/s5p/
2461
2462 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2463 M:      Andrzej Pietrasiewicz <[email protected]>
2464 M:      Jacek Anaszewski <[email protected]>
2465 M:      Sylwester Nawrocki <[email protected]>
2466 L:      [email protected]
2467 L:      [email protected]
2468 S:      Maintained
2469 F:      drivers/media/platform/s5p-jpeg/
2470
2471 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2472 M:      Andrzej Hajda <[email protected]>
2473 L:      [email protected]
2474 L:      [email protected]
2475 S:      Maintained
2476 F:      drivers/media/platform/s5p-mfc/
2477
2478 ARM/SHMOBILE ARM ARCHITECTURE
2479 M:      Geert Uytterhoeven <[email protected]>
2480 M:      Magnus Damm <[email protected]>
2481 L:      [email protected]
2482 S:      Supported
2483 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2485 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2486 F:      arch/arm/boot/dts/emev2*
2487 F:      arch/arm/boot/dts/gr-peach*
2488 F:      arch/arm/boot/dts/iwg20d-q7*
2489 F:      arch/arm/boot/dts/r7s*
2490 F:      arch/arm/boot/dts/r8a*
2491 F:      arch/arm/boot/dts/r9a*
2492 F:      arch/arm/boot/dts/sh*
2493 F:      arch/arm/configs/shmobile_defconfig
2494 F:      arch/arm/include/debug/renesas-scif.S
2495 F:      arch/arm/mach-shmobile/
2496 F:      drivers/soc/renesas/
2497 F:      include/linux/soc/renesas/
2498
2499 ARM/SOCFPGA ARCHITECTURE
2500 M:      Dinh Nguyen <[email protected]>
2501 S:      Maintained
2502 W:      http://www.rocketboards.org
2503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2504 F:      arch/arm/boot/dts/socfpga*
2505 F:      arch/arm/configs/socfpga_defconfig
2506 F:      arch/arm/mach-socfpga/
2507 F:      arch/arm64/boot/dts/altera/
2508 F:      arch/arm64/boot/dts/intel/
2509
2510 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2511 M:      Dinh Nguyen <[email protected]>
2512 S:      Maintained
2513 F:      drivers/clk/socfpga/
2514
2515 ARM/SOCFPGA EDAC SUPPORT
2516 M:      Dinh Nguyen <[email protected]>
2517 S:      Maintained
2518 F:      drivers/edac/altera_edac.[ch]
2519
2520 ARM/SPREADTRUM SoC SUPPORT
2521 M:      Orson Zhai <[email protected]>
2522 M:      Baolin Wang <[email protected]>
2523 M:      Chunyan Zhang <[email protected]>
2524 S:      Maintained
2525 F:      arch/arm64/boot/dts/sprd
2526 N:      sprd
2527 N:      sc27xx
2528 N:      sc2731
2529
2530 ARM/STI ARCHITECTURE
2531 M:      Patrice Chotard <[email protected]>
2532 L:      [email protected] (moderated for non-subscribers)
2533 S:      Maintained
2534 W:      http://www.stlinux.com
2535 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2536 F:      arch/arm/boot/dts/sti*
2537 F:      arch/arm/mach-sti/
2538 F:      drivers/ata/ahci_st.c
2539 F:      drivers/char/hw_random/st-rng.c
2540 F:      drivers/clocksource/arm_global_timer.c
2541 F:      drivers/clocksource/clksrc_st_lpc.c
2542 F:      drivers/cpufreq/sti-cpufreq.c
2543 F:      drivers/dma/st_fdma*
2544 F:      drivers/i2c/busses/i2c-st.c
2545 F:      drivers/media/platform/sti/c8sectpfe/
2546 F:      drivers/media/rc/st_rc.c
2547 F:      drivers/mmc/host/sdhci-st.c
2548 F:      drivers/phy/st/phy-miphy28lp.c
2549 F:      drivers/phy/st/phy-stih407-usb.c
2550 F:      drivers/pinctrl/pinctrl-st.c
2551 F:      drivers/remoteproc/st_remoteproc.c
2552 F:      drivers/remoteproc/st_slim_rproc.c
2553 F:      drivers/reset/sti/
2554 F:      drivers/rtc/rtc-st-lpc.c
2555 F:      drivers/tty/serial/st-asc.c
2556 F:      drivers/usb/dwc3/dwc3-st.c
2557 F:      drivers/usb/host/ehci-st.c
2558 F:      drivers/usb/host/ohci-st.c
2559 F:      drivers/watchdog/st_lpc_wdt.c
2560 F:      include/linux/remoteproc/st_slim_rproc.h
2561
2562 ARM/STM32 ARCHITECTURE
2563 M:      Maxime Coquelin <[email protected]>
2564 M:      Alexandre Torgue <[email protected]>
2565 L:      [email protected] (moderated for non-subscribers)
2566 L:      [email protected] (moderated for non-subscribers)
2567 S:      Maintained
2568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2569 F:      arch/arm/boot/dts/stm32*
2570 F:      arch/arm/mach-stm32/
2571 F:      drivers/clocksource/armv7m_systick.c
2572 N:      stm32
2573 N:      stm
2574
2575 ARM/Synaptics SoC support
2576 M:      Jisheng Zhang <[email protected]>
2577 M:      Sebastian Hesselbarth <[email protected]>
2578 L:      [email protected] (moderated for non-subscribers)
2579 S:      Maintained
2580 F:      arch/arm/boot/dts/berlin*
2581 F:      arch/arm/mach-berlin/
2582 F:      arch/arm64/boot/dts/synaptics/
2583
2584 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2585 M:      Lennert Buytenhek <[email protected]>
2586 L:      [email protected] (moderated for non-subscribers)
2587 S:      Maintained
2588
2589 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2590 M:      Hans Verkuil <[email protected]>
2591 L:      [email protected]
2592 L:      [email protected]
2593 S:      Maintained
2594 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2595 F:      drivers/media/cec/platform/tegra/
2596
2597 ARM/TETON BGA MACHINE SUPPORT
2598 M:      "Mark F. Brown" <[email protected]>
2599 L:      [email protected] (moderated for non-subscribers)
2600 S:      Maintained
2601
2602 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2603 M:      Santosh Shilimkar <[email protected]>
2604 L:      [email protected]
2605 S:      Maintained
2606 F:      drivers/memory/*emif*
2607
2608 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2609 M:      Santosh Shilimkar <[email protected]>
2610 L:      [email protected] (moderated for non-subscribers)
2611 S:      Maintained
2612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2613 F:      arch/arm/boot/dts/keystone-*
2614 F:      arch/arm/mach-keystone/
2615
2616 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2617 M:      Santosh Shilimkar <[email protected]>
2618 L:      [email protected]
2619 S:      Maintained
2620 F:      drivers/clk/keystone/
2621
2622 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2623 M:      Santosh Shilimkar <[email protected]>
2624 L:      [email protected] (moderated for non-subscribers)
2625 L:      [email protected]
2626 S:      Maintained
2627 F:      drivers/clocksource/timer-keystone.c
2628
2629 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2630 M:      Santosh Shilimkar <[email protected]>
2631 L:      [email protected]
2632 S:      Maintained
2633 F:      drivers/power/reset/keystone-reset.c
2634
2635 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2636 M:      Nishanth Menon <[email protected]>
2637 M:      Tero Kristo <[email protected]>
2638 L:      [email protected] (moderated for non-subscribers)
2639 S:      Supported
2640 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2641 F:      arch/arm64/boot/dts/ti/Makefile
2642 F:      arch/arm64/boot/dts/ti/k3-*
2643 F:      include/dt-bindings/pinctrl/k3.h
2644
2645 ARM/THECUS N2100 MACHINE SUPPORT
2646 M:      Lennert Buytenhek <[email protected]>
2647 L:      [email protected] (moderated for non-subscribers)
2648 S:      Maintained
2649
2650 ARM/TOSA MACHINE SUPPORT
2651 M:      Dmitry Eremin-Solenikov <[email protected]>
2652 M:      Dirk Opfer <[email protected]>
2653 S:      Maintained
2654
2655 ARM/TOSHIBA VISCONTI ARCHITECTURE
2656 M:      Nobuhiro Iwamatsu <[email protected]>
2657 L:      [email protected] (moderated for non-subscribers)
2658 S:      Supported
2659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2660 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2661 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2662 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2663 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2664 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2665 F:      arch/arm64/boot/dts/toshiba/
2666 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2667 F:      drivers/gpio/gpio-visconti.c
2668 F:      drivers/pinctrl/visconti/
2669 F:      drivers/watchdog/visconti_wdt.c
2670 N:      visconti
2671
2672 ARM/UNIPHIER ARCHITECTURE
2673 M:      Kunihiko Hayashi <[email protected]>
2674 M:      Masami Hiramatsu <[email protected]>
2675 L:      [email protected] (moderated for non-subscribers)
2676 S:      Maintained
2677 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2678 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2679 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2680 F:      arch/arm/boot/dts/uniphier*
2681 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2682 F:      arch/arm/mach-uniphier/
2683 F:      arch/arm/mm/cache-uniphier.c
2684 F:      arch/arm64/boot/dts/socionext/uniphier*
2685 F:      drivers/bus/uniphier-system-bus.c
2686 F:      drivers/clk/uniphier/
2687 F:      drivers/dma/uniphier-mdmac.c
2688 F:      drivers/gpio/gpio-uniphier.c
2689 F:      drivers/i2c/busses/i2c-uniphier*
2690 F:      drivers/irqchip/irq-uniphier-aidet.c
2691 F:      drivers/mmc/host/uniphier-sd.c
2692 F:      drivers/pinctrl/uniphier/
2693 F:      drivers/reset/reset-uniphier.c
2694 F:      drivers/tty/serial/8250/8250_uniphier.c
2695 N:      uniphier
2696
2697 ARM/VERSATILE EXPRESS PLATFORM
2698 M:      Liviu Dudau <[email protected]>
2699 M:      Sudeep Holla <[email protected]>
2700 M:      Lorenzo Pieralisi <[email protected]>
2701 L:      [email protected] (moderated for non-subscribers)
2702 S:      Maintained
2703 F:      */*/*/vexpress*
2704 F:      */*/vexpress*
2705 F:      arch/arm/boot/dts/vexpress*
2706 F:      arch/arm/mach-vexpress/
2707 F:      arch/arm64/boot/dts/arm/
2708 F:      drivers/clk/versatile/clk-vexpress-osc.c
2709 F:      drivers/clocksource/timer-versatile.c
2710 N:      mps2
2711
2712 ARM/VFP SUPPORT
2713 M:      Russell King <[email protected]>
2714 L:      [email protected] (moderated for non-subscribers)
2715 S:      Maintained
2716 W:      http://www.armlinux.org.uk/
2717 F:      arch/arm/vfp/
2718
2719 ARM/VOIPAC PXA270 SUPPORT
2720 M:      Marek Vasut <[email protected]>
2721 L:      [email protected] (moderated for non-subscribers)
2722 S:      Maintained
2723 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2724 F:      arch/arm/mach-pxa/vpac270.c
2725
2726 ARM/VT8500 ARM ARCHITECTURE
2727 M:      Tony Prisk <[email protected]>
2728 L:      [email protected] (moderated for non-subscribers)
2729 S:      Maintained
2730 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2731 F:      arch/arm/mach-vt8500/
2732 F:      drivers/clocksource/timer-vt8500.c
2733 F:      drivers/i2c/busses/i2c-wmt.c
2734 F:      drivers/mmc/host/wmt-sdmmc.c
2735 F:      drivers/pwm/pwm-vt8500.c
2736 F:      drivers/rtc/rtc-vt8500.c
2737 F:      drivers/tty/serial/vt8500_serial.c
2738 F:      drivers/usb/host/ehci-platform.c
2739 F:      drivers/usb/host/uhci-platform.c
2740 F:      drivers/video/fbdev/vt8500lcdfb.*
2741 F:      drivers/video/fbdev/wm8505fb*
2742 F:      drivers/video/fbdev/wmt_ge_rops.*
2743
2744 ARM/ZIPIT Z2 SUPPORT
2745 M:      Marek Vasut <[email protected]>
2746 L:      [email protected] (moderated for non-subscribers)
2747 S:      Maintained
2748 F:      arch/arm/mach-pxa/include/mach/z2.h
2749 F:      arch/arm/mach-pxa/z2.c
2750
2751 ARM/ZYNQ ARCHITECTURE
2752 M:      Michal Simek <[email protected]>
2753 L:      [email protected] (moderated for non-subscribers)
2754 S:      Supported
2755 W:      http://wiki.xilinx.com
2756 T:      git https://github.com/Xilinx/linux-xlnx.git
2757 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2758 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2759 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2760 F:      arch/arm/mach-zynq/
2761 F:      drivers/clocksource/timer-cadence-ttc.c
2762 F:      drivers/cpuidle/cpuidle-zynq.c
2763 F:      drivers/edac/synopsys_edac.c
2764 F:      drivers/i2c/busses/i2c-cadence.c
2765 F:      drivers/i2c/busses/i2c-xiic.c
2766 F:      drivers/mmc/host/sdhci-of-arasan.c
2767 N:      zynq
2768 N:      xilinx
2769
2770 ARM64 PORT (AARCH64 ARCHITECTURE)
2771 M:      Catalin Marinas <[email protected]>
2772 M:      Will Deacon <[email protected]>
2773 L:      [email protected] (moderated for non-subscribers)
2774 S:      Maintained
2775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2776 F:      Documentation/arm64/
2777 F:      arch/arm64/
2778 F:      tools/testing/selftests/arm64/
2779 X:      arch/arm64/boot/dts/
2780
2781 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2782 M:      George McCollister <[email protected]>
2783 L:      [email protected]
2784 S:      Maintained
2785 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2786 F:      drivers/net/dsa/xrs700x/*
2787 F:      net/dsa/tag_xrs700x.c
2788
2789 AS3645A LED FLASH CONTROLLER DRIVER
2790 M:      Sakari Ailus <[email protected]>
2791 L:      [email protected]
2792 S:      Maintained
2793 F:      drivers/leds/leds-as3645a.c
2794
2795 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2796 M:      Tianshu Qiu <[email protected]>
2797 L:      [email protected]
2798 S:      Maintained
2799 T:      git git://linuxtv.org/media_tree.git
2800 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2801 F:      drivers/media/i2c/ak7375.c
2802
2803 ASAHI KASEI AK8974 DRIVER
2804 M:      Linus Walleij <[email protected]>
2805 L:      [email protected]
2806 S:      Supported
2807 W:      http://www.akm.com/
2808 F:      drivers/iio/magnetometer/ak8974.c
2809
2810 ASC7621 HARDWARE MONITOR DRIVER
2811 M:      George Joseph <[email protected]>
2812 L:      [email protected]
2813 S:      Maintained
2814 F:      Documentation/hwmon/asc7621.rst
2815 F:      drivers/hwmon/asc7621.c
2816
2817 ASPEED PINCTRL DRIVERS
2818 M:      Andrew Jeffery <[email protected]>
2819 L:      [email protected] (moderated for non-subscribers)
2820 L:      [email protected] (moderated for non-subscribers)
2821 L:      [email protected]
2822 S:      Maintained
2823 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2824 F:      drivers/pinctrl/aspeed/
2825
2826 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2827 M:      Eddie James <[email protected]>
2828 L:      [email protected] (moderated for non-subscribers)
2829 S:      Maintained
2830 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2831 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2832 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2833
2834 ASPEED SD/MMC DRIVER
2835 M:      Andrew Jeffery <[email protected]>
2836 L:      [email protected] (moderated for non-subscribers)
2837 L:      [email protected] (moderated for non-subscribers)
2838 L:      [email protected]
2839 S:      Maintained
2840 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2841 F:      drivers/mmc/host/sdhci-of-aspeed*
2842
2843 ASPEED VIDEO ENGINE DRIVER
2844 M:      Eddie James <[email protected]>
2845 L:      [email protected]
2846 L:      [email protected] (moderated for non-subscribers)
2847 S:      Maintained
2848 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2849 F:      drivers/media/platform/aspeed-video.c
2850
2851 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2852 M:      Corentin Chary <[email protected]>
2853 L:      [email protected]
2854 L:      [email protected]
2855 S:      Maintained
2856 W:      http://acpi4asus.sf.net
2857 F:      drivers/platform/x86/asus*.c
2858 F:      drivers/platform/x86/eeepc*.c
2859
2860 ASUS WIRELESS RADIO CONTROL DRIVER
2861 M:      João Paulo Rechi Vita <[email protected]>
2862 L:      [email protected]
2863 S:      Maintained
2864 F:      drivers/platform/x86/asus-wireless.c
2865
2866 ASYMMETRIC KEYS
2867 M:      David Howells <[email protected]>
2868 L:      [email protected]
2869 S:      Maintained
2870 F:      Documentation/crypto/asymmetric-keys.rst
2871 F:      crypto/asymmetric_keys/
2872 F:      include/crypto/pkcs7.h
2873 F:      include/crypto/public_key.h
2874 F:      include/linux/verification.h
2875
2876 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2877 R:      Dan Williams <[email protected]>
2878 S:      Odd fixes
2879 W:      http://sourceforge.net/projects/xscaleiop
2880 F:      Documentation/crypto/async-tx-api.rst
2881 F:      crypto/async_tx/
2882 F:      include/linux/async_tx.h
2883
2884 AT24 EEPROM DRIVER
2885 M:      Bartosz Golaszewski <[email protected]>
2886 L:      [email protected]
2887 S:      Maintained
2888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2889 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2890 F:      drivers/misc/eeprom/at24.c
2891
2892 ATA OVER ETHERNET (AOE) DRIVER
2893 M:      "Justin Sanders" <[email protected]>
2894 S:      Supported
2895 W:      http://www.openaoe.org/
2896 F:      Documentation/admin-guide/aoe/
2897 F:      drivers/block/aoe/
2898
2899 ATC260X PMIC MFD DRIVER
2900 M:      Manivannan Sadhasivam <[email protected]>
2901 M:      Cristian Ciocaltea <[email protected]>
2902 L:      [email protected]
2903 S:      Maintained
2904 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
2905 F:      drivers/input/misc/atc260x-onkey.c
2906 F:      drivers/mfd/atc260*
2907 F:      drivers/power/reset/atc260x-poweroff.c
2908 F:      drivers/regulator/atc260x-regulator.c
2909 F:      include/linux/mfd/atc260x/*
2910
2911 ATHEROS 71XX/9XXX GPIO DRIVER
2912 M:      Alban Bedel <[email protected]>
2913 S:      Maintained
2914 W:      https://github.com/AlbanBedel/linux
2915 T:      git git://github.com/AlbanBedel/linux
2916 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2917 F:      drivers/gpio/gpio-ath79.c
2918
2919 ATHEROS 71XX/9XXX USB PHY DRIVER
2920 M:      Alban Bedel <[email protected]>
2921 S:      Maintained
2922 W:      https://github.com/AlbanBedel/linux
2923 T:      git git://github.com/AlbanBedel/linux
2924 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2925 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2926
2927 ATHEROS ATH GENERIC UTILITIES
2928 M:      Kalle Valo <[email protected]>
2929 L:      [email protected]
2930 S:      Supported
2931 F:      drivers/net/wireless/ath/*
2932
2933 ATHEROS ATH5K WIRELESS DRIVER
2934 M:      Jiri Slaby <[email protected]>
2935 M:      Nick Kossifidis <[email protected]>
2936 M:      Luis Chamberlain <[email protected]>
2937 L:      [email protected]
2938 S:      Maintained
2939 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2940 F:      drivers/net/wireless/ath/ath5k/
2941
2942 ATHEROS ATH6KL WIRELESS DRIVER
2943 M:      Kalle Valo <[email protected]>
2944 L:      [email protected]
2945 S:      Supported
2946 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2948 F:      drivers/net/wireless/ath/ath6kl/
2949
2950 ATI_REMOTE2 DRIVER
2951 M:      Ville Syrjala <[email protected]>
2952 S:      Maintained
2953 F:      drivers/input/misc/ati_remote2.c
2954
2955 ATK0110 HWMON DRIVER
2956 M:      Luca Tettamanti <[email protected]>
2957 L:      [email protected]
2958 S:      Maintained
2959 F:      drivers/hwmon/asus_atk0110.c
2960
2961 ATLX ETHERNET DRIVERS
2962 M:      Chris Snook <[email protected]>
2963 L:      [email protected]
2964 S:      Maintained
2965 W:      http://sourceforge.net/projects/atl1
2966 W:      http://atl1.sourceforge.net
2967 F:      drivers/net/ethernet/atheros/
2968
2969 ATM
2970 M:      Chas Williams <[email protected]>
2971 L:      [email protected] (moderated for non-subscribers)
2972 L:      [email protected]
2973 S:      Maintained
2974 W:      http://linux-atm.sourceforge.net
2975 F:      drivers/atm/
2976 F:      include/linux/atm*
2977 F:      include/uapi/linux/atm*
2978
2979 ATMEL MACB ETHERNET DRIVER
2980 M:      Nicolas Ferre <[email protected]>
2981 M:      Claudiu Beznea <[email protected]>
2982 S:      Supported
2983 F:      drivers/net/ethernet/cadence/
2984
2985 ATMEL MAXTOUCH DRIVER
2986 M:      Nick Dyer <[email protected]>
2987 S:      Maintained
2988 T:      git git://github.com/ndyer/linux.git
2989 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
2990 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2991
2992 ATMEL WIRELESS DRIVER
2993 M:      Simon Kelley <[email protected]>
2994 L:      [email protected]
2995 S:      Maintained
2996 W:      http://www.thekelleys.org.uk/atmel
2997 W:      http://atmelwlandriver.sourceforge.net/
2998 F:      drivers/net/wireless/atmel/atmel*
2999
3000 ATOMIC INFRASTRUCTURE
3001 M:      Will Deacon <[email protected]>
3002 M:      Peter Zijlstra <[email protected]>
3003 R:      Boqun Feng <[email protected]>
3004 L:      [email protected]
3005 S:      Maintained
3006 F:      arch/*/include/asm/atomic*.h
3007 F:      include/*/atomic*.h
3008 F:      include/linux/refcount.h
3009 F:      Documentation/atomic_*.txt
3010 F:      scripts/atomic/
3011
3012 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3013 M:      Bradley Grove <[email protected]>
3014 L:      [email protected]
3015 S:      Supported
3016 W:      http://www.attotech.com
3017 F:      drivers/scsi/esas2r
3018
3019 ATUSB IEEE 802.15.4 RADIO DRIVER
3020 M:      Stefan Schmidt <[email protected]>
3021 L:      [email protected]
3022 S:      Maintained
3023 F:      drivers/net/ieee802154/at86rf230.h
3024 F:      drivers/net/ieee802154/atusb.c
3025 F:      drivers/net/ieee802154/atusb.h
3026
3027 AUDIT SUBSYSTEM
3028 M:      Paul Moore <[email protected]>
3029 M:      Eric Paris <[email protected]>
3030 L:      [email protected] (moderated for non-subscribers)
3031 S:      Supported
3032 W:      https://github.com/linux-audit
3033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3034 F:      include/asm-generic/audit_*.h
3035 F:      include/linux/audit.h
3036 F:      include/uapi/linux/audit.h
3037 F:      kernel/audit*
3038 F:      lib/*audit.c
3039
3040 AUXILIARY DISPLAY DRIVERS
3041 M:      Miguel Ojeda <[email protected]>
3042 S:      Maintained
3043 F:      drivers/auxdisplay/
3044 F:      include/linux/cfag12864b.h
3045
3046 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3047 M:      Andreas Klinger <[email protected]>
3048 L:      [email protected]
3049 S:      Maintained
3050 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3051 F:      drivers/iio/adc/hx711.c
3052
3053 AX.25 NETWORK LAYER
3054 M:      Ralf Baechle <[email protected]>
3055 L:      [email protected]
3056 S:      Maintained
3057 W:      http://www.linux-ax25.org/
3058 F:      include/net/ax25.h
3059 F:      include/uapi/linux/ax25.h
3060 F:      net/ax25/
3061
3062 AXENTIA ARM DEVICES
3063 M:      Peter Rosin <[email protected]>
3064 L:      [email protected] (moderated for non-subscribers)
3065 S:      Maintained
3066 F:      arch/arm/boot/dts/at91-linea.dtsi
3067 F:      arch/arm/boot/dts/at91-natte.dtsi
3068 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3069 F:      arch/arm/boot/dts/at91-tse850-3.dts
3070
3071 AXENTIA ASOC DRIVERS
3072 M:      Peter Rosin <[email protected]>
3073 L:      [email protected] (moderated for non-subscribers)
3074 S:      Maintained
3075 F:      Documentation/devicetree/bindings/sound/axentia,*
3076 F:      sound/soc/atmel/tse850-pcm5142.c
3077
3078 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3079 M:      Nuno Sá <[email protected]>
3080 L:      [email protected]
3081 S:      Supported
3082 W:      http://ez.analog.com/community/linux-device-drivers
3083 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3084 F:      drivers/hwmon/axi-fan-control.c
3085
3086 AXXIA I2C CONTROLLER
3087 M:      Krzysztof Adamski <[email protected]>
3088 L:      [email protected]
3089 S:      Maintained
3090 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3091 F:      drivers/i2c/busses/i2c-axxia.c
3092
3093 AZ6007 DVB DRIVER
3094 M:      Mauro Carvalho Chehab <[email protected]>
3095 L:      [email protected]
3096 S:      Maintained
3097 W:      https://linuxtv.org
3098 T:      git git://linuxtv.org/media_tree.git
3099 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3100
3101 AZTECH FM RADIO RECEIVER DRIVER
3102 M:      Hans Verkuil <[email protected]>
3103 L:      [email protected]
3104 S:      Maintained
3105 W:      https://linuxtv.org
3106 T:      git git://linuxtv.org/media_tree.git
3107 F:      drivers/media/radio/radio-aztech*
3108
3109 B43 WIRELESS DRIVER
3110 L:      [email protected]
3111 L:      [email protected]
3112 S:      Odd Fixes
3113 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3114 F:      drivers/net/wireless/broadcom/b43/
3115
3116 B43LEGACY WIRELESS DRIVER
3117 M:      Larry Finger <[email protected]>
3118 L:      [email protected]
3119 L:      [email protected]
3120 S:      Maintained
3121 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3122 F:      drivers/net/wireless/broadcom/b43legacy/
3123
3124 BACKLIGHT CLASS/SUBSYSTEM
3125 M:      Lee Jones <[email protected]>
3126 M:      Daniel Thompson <[email protected]>
3127 M:      Jingoo Han <[email protected]>
3128 L:      [email protected]
3129 S:      Maintained
3130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3131 F:      Documentation/ABI/stable/sysfs-class-backlight
3132 F:      Documentation/ABI/testing/sysfs-class-backlight
3133 F:      Documentation/devicetree/bindings/leds/backlight
3134 F:      drivers/video/backlight/
3135 F:      include/linux/backlight.h
3136 F:      include/linux/pwm_backlight.h
3137
3138 BATMAN ADVANCED
3139 M:      Marek Lindner <[email protected]>
3140 M:      Simon Wunderlich <[email protected]>
3141 M:      Antonio Quartulli <[email protected]>
3142 M:      Sven Eckelmann <[email protected]>
3143 L:      [email protected] (moderated for non-subscribers)
3144 S:      Maintained
3145 W:      https://www.open-mesh.org/
3146 Q:      https://patchwork.open-mesh.org/project/batman/list/
3147 B:      https://www.open-mesh.org/projects/batman-adv/issues
3148 C:      irc://chat.freenode.net/batman
3149 T:      git https://git.open-mesh.org/linux-merge.git
3150 F:      Documentation/networking/batman-adv.rst
3151 F:      include/uapi/linux/batadv_packet.h
3152 F:      include/uapi/linux/batman_adv.h
3153 F:      net/batman-adv/
3154
3155 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3156 M:      Thomas Sailer <[email protected]>
3157 L:      [email protected]
3158 S:      Maintained
3159 W:      http://www.baycom.org/~tom/ham/ham.html
3160 F:      drivers/net/hamradio/baycom*
3161
3162 BCACHE (BLOCK LAYER CACHE)
3163 M:      Coly Li <[email protected]>
3164 M:      Kent Overstreet <[email protected]>
3165 L:      [email protected]
3166 S:      Maintained
3167 W:      http://bcache.evilpiepirate.org
3168 C:      irc://irc.oftc.net/bcache
3169 F:      drivers/md/bcache/
3170
3171 BDISP ST MEDIA DRIVER
3172 M:      Fabien Dessenne <[email protected]>
3173 L:      [email protected]
3174 S:      Supported
3175 W:      https://linuxtv.org
3176 T:      git git://linuxtv.org/media_tree.git
3177 F:      drivers/media/platform/sti/bdisp
3178
3179 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3180 M:      Dariusz Marcinkiewicz <[email protected]>
3181 L:      [email protected]
3182 S:      Maintained
3183 F:      drivers/net/ethernet/ec_bhf.c
3184
3185 BEFS FILE SYSTEM
3186 M:      Luis de Bethencourt <[email protected]>
3187 M:      Salah Triki <[email protected]>
3188 S:      Maintained
3189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3190 F:      Documentation/filesystems/befs.rst
3191 F:      fs/befs/
3192
3193 BFQ I/O SCHEDULER
3194 M:      Paolo Valente <[email protected]>
3195 M:      Jens Axboe <[email protected]>
3196 L:      [email protected]
3197 S:      Maintained
3198 F:      Documentation/block/bfq-iosched.rst
3199 F:      block/bfq-*
3200
3201 BFS FILE SYSTEM
3202 M:      "Tigran A. Aivazian" <[email protected]>
3203 S:      Maintained
3204 F:      Documentation/filesystems/bfs.rst
3205 F:      fs/bfs/
3206 F:      include/uapi/linux/bfs_fs.h
3207
3208 BLINKM RGB LED DRIVER
3209 M:      Jan-Simon Moeller <[email protected]>
3210 S:      Maintained
3211 F:      drivers/leds/leds-blinkm.c
3212
3213 BLOCK LAYER
3214 M:      Jens Axboe <[email protected]>
3215 L:      [email protected]
3216 S:      Maintained
3217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3218 F:      block/
3219 F:      drivers/block/
3220 F:      fs/block_dev.c
3221 F:      include/linux/blk*
3222 F:      kernel/trace/blktrace.c
3223 F:      lib/sbitmap.c
3224
3225 BLOCK2MTD DRIVER
3226 M:      Joern Engel <[email protected]>
3227 L:      [email protected]
3228 S:      Maintained
3229 F:      drivers/mtd/devices/block2mtd.c
3230
3231 BLUETOOTH DRIVERS
3232 M:      Marcel Holtmann <[email protected]>
3233 M:      Johan Hedberg <[email protected]>
3234 M:      Luiz Augusto von Dentz <[email protected]>
3235 L:      [email protected]
3236 S:      Supported
3237 W:      http://www.bluez.org/
3238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3240 F:      drivers/bluetooth/
3241
3242 BLUETOOTH SUBSYSTEM
3243 M:      Marcel Holtmann <[email protected]>
3244 M:      Johan Hedberg <[email protected]>
3245 M:      Luiz Augusto von Dentz <[email protected]>
3246 L:      [email protected]
3247 S:      Supported
3248 W:      http://www.bluez.org/
3249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3251 F:      include/net/bluetooth/
3252 F:      net/bluetooth/
3253
3254 BONDING DRIVER
3255 M:      Jay Vosburgh <[email protected]>
3256 M:      Veaceslav Falico <[email protected]>
3257 M:      Andy Gospodarek <[email protected]>
3258 L:      [email protected]
3259 S:      Supported
3260 W:      http://sourceforge.net/projects/bonding/
3261 F:      drivers/net/bonding/
3262 F:      include/net/bonding.h
3263 F:      include/uapi/linux/if_bonding.h
3264
3265 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3266 M:      Dan Robertson <[email protected]>
3267 L:      [email protected]
3268 S:      Maintained
3269 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3270 F:      drivers/iio/accel/bma400*
3271
3272 BPF (Safe dynamic programs and tools)
3273 M:      Alexei Starovoitov <[email protected]>
3274 M:      Daniel Borkmann <[email protected]>
3275 M:      Andrii Nakryiko <[email protected]>
3276 R:      Martin KaFai Lau <[email protected]>
3277 R:      Song Liu <[email protected]>
3278 R:      Yonghong Song <[email protected]>
3279 R:      John Fastabend <[email protected]>
3280 R:      KP Singh <[email protected]>
3281 L:      [email protected]
3282 L:      [email protected]
3283 S:      Supported
3284 W:      https://bpf.io/
3285 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3288 F:      Documentation/bpf/
3289 F:      Documentation/networking/filter.rst
3290 F:      Documentation/userspace-api/ebpf/
3291 F:      arch/*/net/*
3292 F:      include/linux/bpf*
3293 F:      include/linux/filter.h
3294 F:      include/trace/events/xdp.h
3295 F:      include/uapi/linux/bpf*
3296 F:      include/uapi/linux/filter.h
3297 F:      kernel/bpf/
3298 F:      kernel/trace/bpf_trace.c
3299 F:      lib/test_bpf.c
3300 F:      net/bpf/
3301 F:      net/core/filter.c
3302 F:      net/sched/act_bpf.c
3303 F:      net/sched/cls_bpf.c
3304 F:      samples/bpf/
3305 F:      scripts/bpf_doc.py
3306 F:      tools/bpf/
3307 F:      tools/lib/bpf/
3308 F:      tools/testing/selftests/bpf/
3309 N:      bpf
3310 K:      bpf
3311
3312 BPF JIT for ARM
3313 M:      Shubham Bansal <[email protected]>
3314 L:      [email protected]
3315 L:      [email protected]
3316 S:      Maintained
3317 F:      arch/arm/net/
3318
3319 BPF JIT for ARM64
3320 M:      Daniel Borkmann <[email protected]>
3321 M:      Alexei Starovoitov <[email protected]>
3322 M:      Zi Shen Lim <[email protected]>
3323 L:      [email protected]
3324 L:      [email protected]
3325 S:      Supported
3326 F:      arch/arm64/net/
3327
3328 BPF JIT for MIPS (32-BIT AND 64-BIT)
3329 M:      Paul Burton <[email protected]>
3330 L:      [email protected]
3331 L:      [email protected]
3332 S:      Maintained
3333 F:      arch/mips/net/
3334
3335 BPF JIT for NFP NICs
3336 M:      Jakub Kicinski <[email protected]>
3337 L:      [email protected]
3338 L:      [email protected]
3339 S:      Supported
3340 F:      drivers/net/ethernet/netronome/nfp/bpf/
3341
3342 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3343 M:      Naveen N. Rao <[email protected]>
3344 M:      Sandipan Das <[email protected]>
3345 L:      [email protected]
3346 L:      [email protected]
3347 S:      Maintained
3348 F:      arch/powerpc/net/
3349
3350 BPF JIT for RISC-V (32-bit)
3351 M:      Luke Nelson <[email protected]>
3352 M:      Xi Wang <[email protected]>
3353 L:      [email protected]
3354 L:      [email protected]
3355 S:      Maintained
3356 F:      arch/riscv/net/
3357 X:      arch/riscv/net/bpf_jit_comp64.c
3358
3359 BPF JIT for RISC-V (64-bit)
3360 M:      Björn Töpel <[email protected]>
3361 L:      [email protected]
3362 L:      [email protected]
3363 S:      Maintained
3364 F:      arch/riscv/net/
3365 X:      arch/riscv/net/bpf_jit_comp32.c
3366
3367 BPF JIT for S390
3368 M:      Ilya Leoshkevich <[email protected]>
3369 M:      Heiko Carstens <[email protected]>
3370 M:      Vasily Gorbik <[email protected]>
3371 L:      [email protected]
3372 L:      [email protected]
3373 S:      Maintained
3374 F:      arch/s390/net/
3375 X:      arch/s390/net/pnet.c
3376
3377 BPF JIT for SPARC (32-BIT AND 64-BIT)
3378 M:      David S. Miller <[email protected]>
3379 L:      [email protected]
3380 L:      [email protected]
3381 S:      Maintained
3382 F:      arch/sparc/net/
3383
3384 BPF JIT for X86 32-BIT
3385 M:      Wang YanQing <[email protected]>
3386 L:      [email protected]
3387 L:      [email protected]
3388 S:      Maintained
3389 F:      arch/x86/net/bpf_jit_comp32.c
3390
3391 BPF JIT for X86 64-BIT
3392 M:      Alexei Starovoitov <[email protected]>
3393 M:      Daniel Borkmann <[email protected]>
3394 L:      [email protected]
3395 L:      [email protected]
3396 S:      Supported
3397 F:      arch/x86/net/
3398 X:      arch/x86/net/bpf_jit_comp32.c
3399
3400 BPF LSM (Security Audit and Enforcement using BPF)
3401 M:      KP Singh <[email protected]>
3402 R:      Florent Revest <[email protected]>
3403 R:      Brendan Jackman <[email protected]>
3404 L:      [email protected]
3405 S:      Maintained
3406 F:      Documentation/bpf/bpf_lsm.rst
3407 F:      include/linux/bpf_lsm.h
3408 F:      kernel/bpf/bpf_lsm.c
3409 F:      security/bpf/
3410
3411 BROADCOM B44 10/100 ETHERNET DRIVER
3412 M:      Michael Chan <[email protected]>
3413 L:      [email protected]
3414 S:      Supported
3415 F:      drivers/net/ethernet/broadcom/b44.*
3416
3417 BROADCOM B53 ETHERNET SWITCH DRIVER
3418 M:      Florian Fainelli <[email protected]>
3419 L:      [email protected]
3420 L:      [email protected] (subscribers-only)
3421 S:      Supported
3422 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3423 F:      drivers/net/dsa/b53/*
3424 F:      include/linux/dsa/brcm.h
3425 F:      include/linux/platform_data/b53.h
3426
3427 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3428 M:      Nicolas Saenz Julienne <[email protected]>
3429 L:      [email protected]
3430 L:      [email protected] (moderated for non-subscribers)
3431 L:      [email protected] (moderated for non-subscribers)
3432 S:      Maintained
3433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3434 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3435 F:      drivers/pci/controller/pcie-brcmstb.c
3436 F:      drivers/staging/vc04_services
3437 N:      bcm2711
3438 N:      bcm283*
3439
3440 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3441 M:      Florian Fainelli <[email protected]>
3442 M:      Ray Jui <[email protected]>
3443 M:      Scott Branden <[email protected]>
3444 M:      [email protected]
3445 S:      Maintained
3446 T:      git git://github.com/broadcom/mach-bcm
3447 F:      arch/arm/mach-bcm/
3448 N:      bcm281*
3449 N:      bcm113*
3450 N:      bcm216*
3451 N:      kona
3452
3453 BROADCOM BCM47XX MIPS ARCHITECTURE
3454 M:      Hauke Mehrtens <[email protected]>
3455 M:      Rafał Miłecki <[email protected]>
3456 L:      [email protected]
3457 S:      Maintained
3458 F:      Documentation/devicetree/bindings/mips/brcm/
3459 F:      arch/mips/bcm47xx/*
3460 F:      arch/mips/include/asm/mach-bcm47xx/*
3461
3462 BROADCOM BCM4908 ETHERNET DRIVER
3463 M:      Rafał Miłecki <[email protected]>
3464 M:      [email protected]
3465 L:      [email protected]
3466 S:      Maintained
3467 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3468 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3469 F:      drivers/net/ethernet/broadcom/unimac.h
3470
3471 BROADCOM BCM5301X ARM ARCHITECTURE
3472 M:      Hauke Mehrtens <[email protected]>
3473 M:      Rafał Miłecki <[email protected]>
3474 M:      [email protected]
3475 L:      [email protected]
3476 S:      Maintained
3477 F:      arch/arm/boot/dts/bcm470*
3478 F:      arch/arm/boot/dts/bcm5301*
3479 F:      arch/arm/boot/dts/bcm953012*
3480 F:      arch/arm/mach-bcm/bcm_5301x.c
3481
3482 BROADCOM BCM53573 ARM ARCHITECTURE
3483 M:      Rafał Miłecki <[email protected]>
3484 L:      [email protected]
3485 L:      [email protected]
3486 S:      Maintained
3487 F:      arch/arm/boot/dts/bcm47189*
3488 F:      arch/arm/boot/dts/bcm53573*
3489
3490 BROADCOM BCM63XX ARM ARCHITECTURE
3491 M:      Florian Fainelli <[email protected]>
3492 M:      [email protected]
3493 L:      [email protected] (moderated for non-subscribers)
3494 S:      Maintained
3495 T:      git git://github.com/broadcom/stblinux.git
3496 N:      bcm63xx
3497
3498 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3499 M:      Kevin Cernekee <[email protected]>
3500 L:      [email protected]
3501 S:      Maintained
3502 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3503
3504 BROADCOM BCM7XXX ARM ARCHITECTURE
3505 M:      Florian Fainelli <[email protected]>
3506 M:      [email protected]
3507 L:      [email protected] (moderated for non-subscribers)
3508 S:      Maintained
3509 T:      git git://github.com/broadcom/stblinux.git
3510 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3511 F:      arch/arm/boot/dts/bcm7*.dts*
3512 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3513 F:      arch/arm/mach-bcm/*brcmstb*
3514 F:      arch/arm/mm/cache-b15-rac.c
3515 F:      drivers/bus/brcmstb_gisb.c
3516 F:      drivers/pci/controller/pcie-brcmstb.c
3517 N:      brcmstb
3518
3519 BROADCOM BDC DRIVER
3520 M:      Al Cooper <[email protected]>
3521 L:      [email protected]
3522 L:      [email protected]
3523 S:      Maintained
3524 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3525 F:      drivers/usb/gadget/udc/bdc/
3526
3527 BROADCOM BMIPS CPUFREQ DRIVER
3528 M:      Markus Mayer <[email protected]>
3529 M:      [email protected]
3530 L:      [email protected]
3531 S:      Maintained
3532 F:      drivers/cpufreq/bmips-cpufreq.c
3533
3534 BROADCOM BMIPS MIPS ARCHITECTURE
3535 M:      Florian Fainelli <[email protected]>
3536 L:      [email protected]
3537 L:      [email protected]
3538 S:      Maintained
3539 T:      git git://github.com/broadcom/stblinux.git
3540 F:      arch/mips/bmips/*
3541 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3542 F:      arch/mips/include/asm/mach-bmips/*
3543 F:      arch/mips/kernel/*bmips*
3544 F:      drivers/soc/bcm/bcm63xx
3545 F:      drivers/irqchip/irq-bcm63*
3546 F:      drivers/irqchip/irq-bcm7*
3547 F:      drivers/irqchip/irq-brcmstb*
3548 F:      include/linux/bcm963xx_nvram.h
3549 F:      include/linux/bcm963xx_tag.h
3550
3551 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3552 M:      Rasesh Mody <[email protected]>
3553 M:      [email protected]
3554 L:      [email protected]
3555 S:      Supported
3556 F:      drivers/net/ethernet/broadcom/bnx2.*
3557 F:      drivers/net/ethernet/broadcom/bnx2_*
3558
3559 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3560 M:      Saurav Kashyap <[email protected]>
3561 M:      Javed Hasan <[email protected]>
3562 M:      [email protected]
3563 L:      [email protected]
3564 S:      Supported
3565 F:      drivers/scsi/bnx2fc/
3566
3567 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3568 M:      Nilesh Javali <[email protected]>
3569 M:      Manish Rangankar <[email protected]>
3570 M:      [email protected]
3571 L:      [email protected]
3572 S:      Supported
3573 F:      drivers/scsi/bnx2i/
3574
3575 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3576 M:      Ariel Elior <[email protected]>
3577 M:      Sudarsana Kalluru <[email protected]>
3578 M:      [email protected]
3579 L:      [email protected]
3580 S:      Supported
3581 F:      drivers/net/ethernet/broadcom/bnx2x/
3582
3583 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3584 M:      Michael Chan <[email protected]>
3585 L:      [email protected]
3586 S:      Supported
3587 F:      drivers/net/ethernet/broadcom/bnxt/
3588
3589 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3590 M:      Arend van Spriel <[email protected]>
3591 M:      Franky Lin <[email protected]>
3592 M:      Hante Meuleman <[email protected]>
3593 M:      Chi-hsien Lin <[email protected]>
3594 M:      Wright Feng <[email protected]>
3595 M:      Chung-hsien Hsu <[email protected]>
3596 L:      [email protected]
3597 L:      [email protected]
3598 L:      [email protected]
3599 S:      Supported
3600 F:      drivers/net/wireless/broadcom/brcm80211/
3601
3602 BROADCOM BRCMSTB GPIO DRIVER
3603 M:      Gregory Fong <[email protected]>
3604 L:      [email protected]
3605 S:      Supported
3606 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3607 F:      drivers/gpio/gpio-brcmstb.c
3608
3609 BROADCOM BRCMSTB I2C DRIVER
3610 M:      Kamal Dasu <[email protected]>
3611 L:      [email protected]
3612 L:      [email protected]
3613 S:      Supported
3614 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3615 F:      drivers/i2c/busses/i2c-brcmstb.c
3616
3617 BROADCOM BRCMSTB UART DRIVER
3618 M:      Al Cooper <[email protected]>
3619 L:      [email protected]
3620 L:      [email protected]
3621 S:      Maintained
3622 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3623 F:      drivers/tty/serial/8250/8250_bcm7271.c
3624
3625 BROADCOM BRCMSTB USB EHCI DRIVER
3626 M:      Al Cooper <[email protected]>
3627 L:      [email protected]
3628 L:      [email protected]
3629 S:      Maintained
3630 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3631 F:      drivers/usb/host/ehci-brcm.*
3632
3633 BROADCOM BRCMSTB USB PIN MAP DRIVER
3634 M:      Al Cooper <[email protected]>
3635 L:      [email protected]
3636 L:      [email protected]
3637 S:      Maintained
3638 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3639 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3640
3641 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3642 M:      Al Cooper <[email protected]>
3643 L:      [email protected]
3644 L:      [email protected]
3645 S:      Maintained
3646 F:      drivers/phy/broadcom/phy-brcm-usb*
3647
3648 BROADCOM ETHERNET PHY DRIVERS
3649 M:      Florian Fainelli <[email protected]>
3650 L:      [email protected]
3651 L:      [email protected]
3652 S:      Supported
3653 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3654 F:      drivers/net/phy/bcm*.[ch]
3655 F:      drivers/net/phy/broadcom.c
3656 F:      include/linux/brcmphy.h
3657
3658 BROADCOM GENET ETHERNET DRIVER
3659 M:      Doug Berger <[email protected]>
3660 M:      Florian Fainelli <[email protected]>
3661 L:      [email protected]
3662 L:      [email protected]
3663 S:      Supported
3664 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3665 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3666 F:      drivers/net/ethernet/broadcom/genet/
3667 F:      drivers/net/ethernet/broadcom/unimac.h
3668 F:      drivers/net/mdio/mdio-bcm-unimac.c
3669 F:      include/linux/platform_data/bcmgenet.h
3670 F:      include/linux/platform_data/mdio-bcm-unimac.h
3671
3672 BROADCOM IPROC ARM ARCHITECTURE
3673 M:      Ray Jui <[email protected]>
3674 M:      Scott Branden <[email protected]>
3675 M:      [email protected]
3676 L:      [email protected] (moderated for non-subscribers)
3677 S:      Maintained
3678 T:      git git://github.com/broadcom/cygnus-linux.git
3679 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3680 F:      arch/arm64/boot/dts/broadcom/stingray/*
3681 F:      drivers/clk/bcm/clk-ns*
3682 F:      drivers/clk/bcm/clk-sr*
3683 F:      drivers/pinctrl/bcm/pinctrl-ns*
3684 F:      include/dt-bindings/clock/bcm-sr*
3685 N:      iproc
3686 N:      cygnus
3687 N:      bcm[-_]nsp
3688 N:      bcm9113*
3689 N:      bcm9583*
3690 N:      bcm9585*
3691 N:      bcm9586*
3692 N:      bcm988312
3693 N:      bcm113*
3694 N:      bcm583*
3695 N:      bcm585*
3696 N:      bcm586*
3697 N:      bcm88312
3698 N:      hr2
3699 N:      stingray
3700
3701 BROADCOM IPROC GBIT ETHERNET DRIVER
3702 M:      Rafał Miłecki <[email protected]>
3703 M:      [email protected]
3704 L:      [email protected]
3705 S:      Maintained
3706 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3707 F:      drivers/net/ethernet/broadcom/bgmac*
3708 F:      drivers/net/ethernet/broadcom/unimac.h
3709
3710 BROADCOM KONA GPIO DRIVER
3711 M:      Ray Jui <[email protected]>
3712 L:      [email protected]
3713 S:      Supported
3714 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3715 F:      drivers/gpio/gpio-bcm-kona.c
3716
3717 BROADCOM NETXTREME-E ROCE DRIVER
3718 M:      Selvin Xavier <[email protected]>
3719 M:      Devesh Sharma <[email protected]>
3720 M:      Somnath Kotur <[email protected]>
3721 M:      Sriharsha Basavapatna <[email protected]>
3722 M:      Naresh Kumar PBS <[email protected]>
3723 L:      [email protected]
3724 S:      Supported
3725 W:      http://www.broadcom.com
3726 F:      drivers/infiniband/hw/bnxt_re/
3727 F:      include/uapi/rdma/bnxt_re-abi.h
3728
3729 BROADCOM NVRAM DRIVER
3730 M:      Rafał Miłecki <[email protected]>
3731 L:      [email protected]
3732 S:      Maintained
3733 F:      drivers/firmware/broadcom/*
3734
3735 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3736 M:      Rafał Miłecki <[email protected]>
3737 M:      Florian Fainelli <[email protected]>
3738 M:      [email protected]
3739 L:      [email protected]
3740 S:      Maintained
3741 T:      git git://github.com/broadcom/stblinux.git
3742 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3743 F:      include/dt-bindings/soc/bcm-pmb.h
3744
3745 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3746 M:      Rafał Miłecki <[email protected]>
3747 L:      [email protected]
3748 S:      Maintained
3749 F:      drivers/bcma/
3750 F:      include/linux/bcma/
3751
3752 BROADCOM SPI DRIVER
3753 M:      Kamal Dasu <[email protected]>
3754 M:      [email protected]
3755 S:      Maintained
3756 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3757 F:      drivers/spi/spi-bcm-qspi.*
3758 F:      drivers/spi/spi-brcmstb-qspi.c
3759 F:      drivers/spi/spi-iproc-qspi.c
3760
3761 BROADCOM STB AVS CPUFREQ DRIVER
3762 M:      Markus Mayer <[email protected]>
3763 M:      [email protected]
3764 L:      [email protected]
3765 S:      Maintained
3766 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3767 F:      drivers/cpufreq/brcmstb*
3768
3769 BROADCOM STB AVS TMON DRIVER
3770 M:      Markus Mayer <[email protected]>
3771 M:      [email protected]
3772 L:      [email protected]
3773 S:      Maintained
3774 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3775 F:      drivers/thermal/broadcom/brcmstb*
3776
3777 BROADCOM STB DPFE DRIVER
3778 M:      Markus Mayer <[email protected]>
3779 M:      [email protected]
3780 L:      [email protected] (moderated for non-subscribers)
3781 S:      Maintained
3782 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3783 F:      drivers/memory/brcmstb_dpfe.c
3784
3785 BROADCOM STB NAND FLASH DRIVER
3786 M:      Brian Norris <[email protected]>
3787 M:      Kamal Dasu <[email protected]>
3788 L:      [email protected]
3789 L:      [email protected]
3790 S:      Maintained
3791 F:      drivers/mtd/nand/raw/brcmnand/
3792
3793 BROADCOM SYSTEMPORT ETHERNET DRIVER
3794 M:      Florian Fainelli <[email protected]>
3795 L:      [email protected]
3796 L:      [email protected]
3797 S:      Supported
3798 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3799 F:      drivers/net/ethernet/broadcom/unimac.h
3800
3801 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3802 M:      Siva Reddy Kallam <[email protected]>
3803 M:      Prashant Sreedharan <[email protected]>
3804 M:      Michael Chan <[email protected]>
3805 L:      [email protected]
3806 S:      Supported
3807 F:      drivers/net/ethernet/broadcom/tg3.*
3808
3809 BROADCOM VK DRIVER
3810 M:      Scott Branden <[email protected]>
3811 L:      [email protected]
3812 S:      Supported
3813 F:      drivers/misc/bcm-vk/
3814 F:      include/uapi/linux/misc/bcm_vk.h
3815
3816 BROCADE BFA FC SCSI DRIVER
3817 M:      Anil Gurumurthy <[email protected]>
3818 M:      Sudarsana Kalluru <[email protected]>
3819 L:      [email protected]
3820 S:      Supported
3821 F:      drivers/scsi/bfa/
3822
3823 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3824 M:      Rasesh Mody <[email protected]>
3825 M:      Sudarsana Kalluru <[email protected]>
3826 M:      [email protected]
3827 L:      [email protected]
3828 S:      Supported
3829 F:      drivers/net/ethernet/brocade/bna/
3830
3831 BSG (block layer generic sg v4 driver)
3832 M:      FUJITA Tomonori <[email protected]>
3833 L:      [email protected]
3834 S:      Supported
3835 F:      block/bsg.c
3836 F:      include/linux/bsg.h
3837 F:      include/uapi/linux/bsg.h
3838
3839 BT87X AUDIO DRIVER
3840 M:      Clemens Ladisch <[email protected]>
3841 L:      [email protected] (moderated for non-subscribers)
3842 S:      Maintained
3843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3844 F:      Documentation/sound/cards/bt87x.rst
3845 F:      sound/pci/bt87x.c
3846
3847 BT8XXGPIO DRIVER
3848 M:      Michael Buesch <[email protected]>
3849 S:      Maintained
3850 W:      http://bu3sch.de/btgpio.php
3851 F:      drivers/gpio/gpio-bt8xx.c
3852
3853 BTRFS FILE SYSTEM
3854 M:      Chris Mason <[email protected]>
3855 M:      Josef Bacik <[email protected]>
3856 M:      David Sterba <[email protected]>
3857 L:      [email protected]
3858 S:      Maintained
3859 W:      http://btrfs.wiki.kernel.org/
3860 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3862 F:      Documentation/filesystems/btrfs.rst
3863 F:      fs/btrfs/
3864 F:      include/linux/btrfs*
3865 F:      include/uapi/linux/btrfs*
3866
3867 BTTV VIDEO4LINUX DRIVER
3868 M:      Mauro Carvalho Chehab <[email protected]>
3869 L:      [email protected]
3870 S:      Odd fixes
3871 W:      https://linuxtv.org
3872 T:      git git://linuxtv.org/media_tree.git
3873 F:      Documentation/driver-api/media/drivers/bttv*
3874 F:      drivers/media/pci/bt8xx/bttv*
3875
3876 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3877 M:      Chanwoo Choi <[email protected]>
3878 L:      [email protected]
3879 L:      [email protected]
3880 S:      Maintained
3881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3882 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3883 F:      drivers/devfreq/exynos-bus.c
3884
3885 BUSLOGIC SCSI DRIVER
3886 M:      Khalid Aziz <[email protected]>
3887 L:      [email protected]
3888 S:      Maintained
3889 F:      drivers/scsi/BusLogic.*
3890 F:      drivers/scsi/FlashPoint.*
3891
3892 C-MEDIA CMI8788 DRIVER
3893 M:      Clemens Ladisch <[email protected]>
3894 L:      [email protected] (moderated for non-subscribers)
3895 S:      Maintained
3896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3897 F:      sound/pci/oxygen/
3898
3899 C-SKY ARCHITECTURE
3900 M:      Guo Ren <[email protected]>
3901 L:      [email protected]
3902 S:      Supported
3903 T:      git https://github.com/c-sky/csky-linux.git
3904 F:      Documentation/devicetree/bindings/csky/
3905 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3906 F:      Documentation/devicetree/bindings/timer/csky,*
3907 F:      arch/csky/
3908 F:      drivers/clocksource/timer-gx6605s.c
3909 F:      drivers/clocksource/timer-mp-csky.c
3910 F:      drivers/irqchip/irq-csky-*
3911 N:      csky
3912 K:      csky
3913
3914 CA8210 IEEE-802.15.4 RADIO DRIVER
3915 M:      Harry Morris <[email protected]>
3916 L:      [email protected]
3917 S:      Maintained
3918 W:      https://github.com/Cascoda/ca8210-linux.git
3919 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3920 F:      drivers/net/ieee802154/ca8210.c
3921
3922 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
3923 M:      Damien Le Moal <[email protected]>
3924 L:      [email protected]
3925 L:      [email protected] (pinctrl driver)
3926 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
3927 F:      drivers/pinctrl/pinctrl-k210.c
3928
3929 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
3930 M:      Damien Le Moal <[email protected]>
3931 L:      [email protected]
3932 L:      [email protected]
3933 S:      Maintained
3934 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
3935 F:      drivers/reset/reset-k210.c
3936
3937 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
3938 M:      Damien Le Moal <[email protected]>
3939 L:      [email protected]
3940 S:      Maintained
3941 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
3942 F:      drivers/soc/canaan/
3943 F:      include/soc/canaan/
3944
3945 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3946 M:      David Howells <[email protected]>
3947 L:      [email protected] (moderated for non-subscribers)
3948 S:      Supported
3949 F:      Documentation/filesystems/caching/cachefiles.rst
3950 F:      fs/cachefiles/
3951
3952 CADENCE MIPI-CSI2 BRIDGES
3953 M:      Maxime Ripard <[email protected]>
3954 L:      [email protected]
3955 S:      Maintained
3956 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3957 F:      drivers/media/platform/cadence/cdns-csi2*
3958
3959 CADENCE NAND DRIVER
3960 L:      [email protected]
3961 S:      Orphan
3962 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3963 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3964
3965 CADENCE USB3 DRD IP DRIVER
3966 M:      Peter Chen <[email protected]>
3967 M:      Pawel Laszczak <[email protected]>
3968 R:      Roger Quadros <[email protected]>
3969 R:      Aswath Govindraju <[email protected]>
3970 L:      [email protected]
3971 S:      Maintained
3972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3973 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3974 F:      drivers/usb/cdns3/
3975 X:      drivers/usb/cdns3/cdnsp*
3976
3977 CADENCE USBSSP DRD IP DRIVER
3978 M:      Pawel Laszczak <[email protected]>
3979 L:      [email protected]
3980 S:      Maintained
3981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3982 F:      drivers/usb/cdns3/
3983 X:      drivers/usb/cdns3/cdns3*
3984
3985 CADET FM/AM RADIO RECEIVER DRIVER
3986 M:      Hans Verkuil <[email protected]>
3987 L:      [email protected]
3988 S:      Maintained
3989 W:      https://linuxtv.org
3990 T:      git git://linuxtv.org/media_tree.git
3991 F:      drivers/media/radio/radio-cadet*
3992
3993 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3994 L:      [email protected]
3995 S:      Orphan
3996 T:      git git://linuxtv.org/media_tree.git
3997 F:      Documentation/admin-guide/media/cafe_ccic*
3998 F:      drivers/media/platform/marvell-ccic/
3999
4000 CAIF NETWORK LAYER
4001 L:      [email protected]
4002 S:      Orphan
4003 F:      Documentation/networking/caif/
4004 F:      drivers/net/caif/
4005 F:      include/net/caif/
4006 F:      include/uapi/linux/caif/
4007 F:      net/caif/
4008
4009 CAKE QDISC
4010 M:      Toke Høiland-Jørgensen <[email protected]>
4011 L:      [email protected] (moderated for non-subscribers)
4012 S:      Maintained
4013 F:      net/sched/sch_cake.c
4014
4015 CAN NETWORK DRIVERS
4016 M:      Wolfgang Grandegger <[email protected]>
4017 M:      Marc Kleine-Budde <[email protected]>
4018 L:      [email protected]
4019 S:      Maintained
4020 W:      https://github.com/linux-can
4021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4023 F:      Documentation/devicetree/bindings/net/can/
4024 F:      drivers/net/can/
4025 F:      include/linux/can/bittiming.h
4026 F:      include/linux/can/dev.h
4027 F:      include/linux/can/led.h
4028 F:      include/linux/can/length.h
4029 F:      include/linux/can/platform/
4030 F:      include/linux/can/rx-offload.h
4031 F:      include/uapi/linux/can/error.h
4032 F:      include/uapi/linux/can/netlink.h
4033 F:      include/uapi/linux/can/vxcan.h
4034
4035 CAN NETWORK LAYER
4036 M:      Oliver Hartkopp <[email protected]>
4037 M:      Marc Kleine-Budde <[email protected]>
4038 L:      [email protected]
4039 S:      Maintained
4040 W:      https://github.com/linux-can
4041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4043 F:      Documentation/networking/can.rst
4044 F:      include/linux/can/can-ml.h
4045 F:      include/linux/can/core.h
4046 F:      include/linux/can/skb.h
4047 F:      include/net/netns/can.h
4048 F:      include/uapi/linux/can.h
4049 F:      include/uapi/linux/can/bcm.h
4050 F:      include/uapi/linux/can/gw.h
4051 F:      include/uapi/linux/can/isotp.h
4052 F:      include/uapi/linux/can/raw.h
4053 F:      net/can/
4054
4055 CAN-J1939 NETWORK LAYER
4056 M:      Robin van der Gracht <[email protected]>
4057 M:      Oleksij Rempel <[email protected]>
4058 R:      [email protected]
4059 L:      [email protected]
4060 S:      Maintained
4061 F:      Documentation/networking/j1939.rst
4062 F:      include/uapi/linux/can/j1939.h
4063 F:      net/can/j1939/
4064
4065 CAPABILITIES
4066 M:      Serge Hallyn <[email protected]>
4067 L:      [email protected]
4068 S:      Supported
4069 F:      include/linux/capability.h
4070 F:      include/uapi/linux/capability.h
4071 F:      kernel/capability.c
4072 F:      security/commoncap.c
4073
4074 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4075 M:      Kevin Tsai <[email protected]>
4076 S:      Maintained
4077 F:      drivers/iio/light/cm*
4078
4079 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4080 M:      Christian Lamparter <[email protected]>
4081 L:      [email protected]
4082 S:      Maintained
4083 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4084 F:      drivers/net/wireless/ath/carl9170/
4085
4086 CAVIUM I2C DRIVER
4087 M:      Robert Richter <[email protected]>
4088 S:      Odd Fixes
4089 W:      http://www.marvell.com
4090 F:      drivers/i2c/busses/i2c-octeon*
4091 F:      drivers/i2c/busses/i2c-thunderx*
4092
4093 CAVIUM LIQUIDIO NETWORK DRIVER
4094 M:      Derek Chickles <[email protected]>
4095 M:      Satanand Burla <[email protected]>
4096 M:      Felix Manlunas <[email protected]>
4097 L:      [email protected]
4098 S:      Supported
4099 W:      http://www.marvell.com
4100 F:      drivers/net/ethernet/cavium/liquidio/
4101
4102 CAVIUM MMC DRIVER
4103 M:      Robert Richter <[email protected]>
4104 S:      Odd Fixes
4105 W:      http://www.marvell.com
4106 F:      drivers/mmc/host/cavium*
4107
4108 CAVIUM OCTEON-TX CRYPTO DRIVER
4109 M:      George Cherian <[email protected]>
4110 L:      [email protected]
4111 S:      Supported
4112 W:      http://www.marvell.com
4113 F:      drivers/crypto/cavium/cpt/
4114
4115 CAVIUM THUNDERX2 ARM64 SOC
4116 M:      Robert Richter <[email protected]>
4117 L:      [email protected] (moderated for non-subscribers)
4118 S:      Odd Fixes
4119 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4120 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4121
4122 CC2520 IEEE-802.15.4 RADIO DRIVER
4123 M:      Varka Bhadram <[email protected]>
4124 L:      [email protected]
4125 S:      Maintained
4126 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4127 F:      drivers/net/ieee802154/cc2520.c
4128 F:      include/linux/spi/cc2520.h
4129
4130 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4131 M:      Gilad Ben-Yossef <[email protected]>
4132 L:      [email protected]
4133 S:      Supported
4134 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4135 F:      drivers/crypto/ccree/
4136
4137 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4138 M:      Hadar Gat <[email protected]>
4139 L:      [email protected]
4140 S:      Supported
4141 F:      drivers/char/hw_random/cctrng.c
4142 F:      drivers/char/hw_random/cctrng.h
4143 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4144 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4145
4146 CEC FRAMEWORK
4147 M:      Hans Verkuil <[email protected]>
4148 L:      [email protected]
4149 S:      Supported
4150 W:      http://linuxtv.org
4151 T:      git git://linuxtv.org/media_tree.git
4152 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4153 F:      Documentation/devicetree/bindings/media/cec.txt
4154 F:      Documentation/driver-api/media/cec-core.rst
4155 F:      Documentation/userspace-api/media/cec
4156 F:      drivers/media/cec/
4157 F:      drivers/media/rc/keymaps/rc-cec.c
4158 F:      include/media/cec-notifier.h
4159 F:      include/media/cec.h
4160 F:      include/uapi/linux/cec-funcs.h
4161 F:      include/uapi/linux/cec.h
4162
4163 CEC GPIO DRIVER
4164 M:      Hans Verkuil <[email protected]>
4165 L:      [email protected]
4166 S:      Supported
4167 W:      http://linuxtv.org
4168 T:      git git://linuxtv.org/media_tree.git
4169 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4170 F:      drivers/media/cec/platform/cec-gpio/
4171
4172 CELL BROADBAND ENGINE ARCHITECTURE
4173 M:      Arnd Bergmann <[email protected]>
4174 L:      [email protected]
4175 S:      Supported
4176 W:      http://www.ibm.com/developerworks/power/cell/
4177 F:      arch/powerpc/include/asm/cell*.h
4178 F:      arch/powerpc/include/asm/spu*.h
4179 F:      arch/powerpc/include/uapi/asm/spu*.h
4180 F:      arch/powerpc/platforms/cell/
4181
4182 CELLWISE CW2015 BATTERY DRIVER
4183 M:      Tobias Schrammm <[email protected]>
4184 S:      Maintained
4185 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4186 F:      drivers/power/supply/cw2015_battery.c
4187
4188 CEPH COMMON CODE (LIBCEPH)
4189 M:      Ilya Dryomov <[email protected]>
4190 M:      Jeff Layton <[email protected]>
4191 L:      [email protected]
4192 S:      Supported
4193 W:      http://ceph.com/
4194 T:      git git://github.com/ceph/ceph-client.git
4195 F:      include/linux/ceph/
4196 F:      include/linux/crush/
4197 F:      net/ceph/
4198
4199 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4200 M:      Jeff Layton <[email protected]>
4201 M:      Ilya Dryomov <[email protected]>
4202 L:      [email protected]
4203 S:      Supported
4204 W:      http://ceph.com/
4205 T:      git git://github.com/ceph/ceph-client.git
4206 F:      Documentation/filesystems/ceph.rst
4207 F:      fs/ceph/
4208
4209 CERTIFICATE HANDLING
4210 M:      David Howells <[email protected]>
4211 M:      David Woodhouse <[email protected]>
4212 L:      [email protected]
4213 S:      Maintained
4214 F:      Documentation/admin-guide/module-signing.rst
4215 F:      certs/
4216 F:      scripts/extract-cert.c
4217 F:      scripts/sign-file.c
4218
4219 CFAG12864B LCD DRIVER
4220 M:      Miguel Ojeda <[email protected]>
4221 S:      Maintained
4222 F:      drivers/auxdisplay/cfag12864b.c
4223 F:      include/linux/cfag12864b.h
4224
4225 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4226 M:      Miguel Ojeda <[email protected]>
4227 S:      Maintained
4228 F:      drivers/auxdisplay/cfag12864bfb.c
4229 F:      include/linux/cfag12864b.h
4230
4231 CHAR and MISC DRIVERS
4232 M:      Arnd Bergmann <[email protected]>
4233 M:      Greg Kroah-Hartman <[email protected]>
4234 S:      Supported
4235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4236 F:      drivers/char/
4237 F:      drivers/misc/
4238 F:      include/linux/miscdevice.h
4239 X:      drivers/char/agp/
4240 X:      drivers/char/hw_random/
4241 X:      drivers/char/ipmi/
4242 X:      drivers/char/random.c
4243 X:      drivers/char/tpm/
4244
4245 CHECKPATCH
4246 M:      Andy Whitcroft <[email protected]>
4247 M:      Joe Perches <[email protected]>
4248 R:      Dwaipayan Ray <[email protected]>
4249 R:      Lukas Bulwahn <[email protected]>
4250 S:      Maintained
4251 F:      scripts/checkpatch.pl
4252
4253 CHECKPATCH DOCUMENTATION
4254 M:      Dwaipayan Ray <[email protected]>
4255 M:      Lukas Bulwahn <[email protected]>
4256 R:      Joe Perches <[email protected]>
4257 S:      Maintained
4258 F:      Documentation/dev-tools/checkpatch.rst
4259
4260 CHINESE DOCUMENTATION
4261 M:      Alex Shi <[email protected]>
4262 S:      Maintained
4263 F:      Documentation/translations/zh_CN/
4264
4265 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4266 M:      Peter Chen <[email protected]>
4267 L:      [email protected]
4268 S:      Maintained
4269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4270 F:      drivers/usb/chipidea/
4271
4272 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4273 M:      Hans de Goede <[email protected]>
4274 L:      [email protected]
4275 S:      Maintained
4276 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4277 F:      drivers/input/touchscreen/chipone_icn8318.c
4278
4279 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4280 M:      Hans de Goede <[email protected]>
4281 L:      [email protected]
4282 S:      Maintained
4283 F:      drivers/input/touchscreen/chipone_icn8505.c
4284
4285 CHROME HARDWARE PLATFORM SUPPORT
4286 M:      Benson Leung <[email protected]>
4287 M:      Enric Balletbo i Serra <[email protected]>
4288 S:      Maintained
4289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4290 F:      drivers/platform/chrome/
4291
4292 CHROMEOS EC CODEC DRIVER
4293 M:      Cheng-Yi Chiang <[email protected]>
4294 R:      Enric Balletbo i Serra <[email protected]>
4295 R:      Guenter Roeck <[email protected]>
4296 S:      Maintained
4297 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4298 F:      sound/soc/codecs/cros_ec_codec.*
4299
4300 CHROMEOS EC SUBDRIVERS
4301 M:      Benson Leung <[email protected]>
4302 M:      Enric Balletbo i Serra <[email protected]>
4303 R:      Guenter Roeck <[email protected]>
4304 S:      Maintained
4305 F:      drivers/power/supply/cros_usbpd-charger.c
4306 N:      cros_ec
4307 N:      cros-ec
4308
4309 CHRONTEL CH7322 CEC DRIVER
4310 M:      Jeff Chase <[email protected]>
4311 L:      [email protected]
4312 S:      Maintained
4313 T:      git git://linuxtv.org/media_tree.git
4314 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4315 F:      drivers/media/cec/i2c/ch7322.c
4316
4317 CIRRUS LOGIC AUDIO CODEC DRIVERS
4318 M:      James Schulman <[email protected]>
4319 M:      David Rhodes <[email protected]>
4320 L:      [email protected] (moderated for non-subscribers)
4321 L:      [email protected]
4322 S:      Maintained
4323 F:      sound/soc/codecs/cs*
4324
4325 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4326 M:      Hartley Sweeten <[email protected]>
4327 L:      [email protected]
4328 S:      Maintained
4329 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4330
4331 CIRRUS LOGIC LOCHNAGAR DRIVER
4332 M:      Charles Keepax <[email protected]>
4333 M:      Richard Fitzgerald <[email protected]>
4334 L:      [email protected]
4335 S:      Supported
4336 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4337 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4338 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4339 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4340 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4341 F:      Documentation/hwmon/lochnagar.rst
4342 F:      drivers/clk/clk-lochnagar.c
4343 F:      drivers/hwmon/lochnagar-hwmon.c
4344 F:      drivers/mfd/lochnagar-i2c.c
4345 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4346 F:      drivers/regulator/lochnagar-regulator.c
4347 F:      include/dt-bindings/clk/lochnagar.h
4348 F:      include/dt-bindings/pinctrl/lochnagar.h
4349 F:      include/linux/mfd/lochnagar*
4350 F:      sound/soc/codecs/lochnagar-sc.c
4351
4352 CIRRUS LOGIC MADERA CODEC DRIVERS
4353 M:      Charles Keepax <[email protected]>
4354 M:      Richard Fitzgerald <[email protected]>
4355 L:      [email protected] (moderated for non-subscribers)
4356 L:      [email protected]
4357 S:      Supported
4358 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4359 T:      git https://github.com/CirrusLogic/linux-drivers.git
4360 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4361 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4362 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4363 F:      drivers/gpio/gpio-madera*
4364 F:      drivers/irqchip/irq-madera*
4365 F:      drivers/mfd/cs47l*
4366 F:      drivers/mfd/madera*
4367 F:      drivers/pinctrl/cirrus/*
4368 F:      include/dt-bindings/sound/madera*
4369 F:      include/linux/irqchip/irq-madera*
4370 F:      include/linux/mfd/madera/*
4371 F:      include/sound/madera*
4372 F:      sound/soc/codecs/cs47l*
4373 F:      sound/soc/codecs/madera*
4374
4375 CISCO FCOE HBA DRIVER
4376 M:      Satish Kharat <[email protected]>
4377 M:      Sesidhar Baddela <[email protected]>
4378 M:      Karan Tilak Kumar <[email protected]>
4379 L:      [email protected]
4380 S:      Supported
4381 F:      drivers/scsi/fnic/
4382
4383 CISCO SCSI HBA DRIVER
4384 M:      Karan Tilak Kumar <[email protected]>
4385 M:      Sesidhar Baddela <[email protected]>
4386 L:      [email protected]
4387 S:      Supported
4388 F:      drivers/scsi/snic/
4389
4390 CISCO VIC ETHERNET NIC DRIVER
4391 M:      Christian Benvenuti <[email protected]>
4392 M:      Govindarajulu Varadarajan <[email protected]>
4393 S:      Supported
4394 F:      drivers/net/ethernet/cisco/enic/
4395
4396 CISCO VIC LOW LATENCY NIC DRIVER
4397 M:      Christian Benvenuti <[email protected]>
4398 M:      Nelson Escobar <[email protected]>
4399 S:      Supported
4400 F:      drivers/infiniband/hw/usnic/
4401
4402 CLANG-FORMAT FILE
4403 M:      Miguel Ojeda <[email protected]>
4404 S:      Maintained
4405 F:      .clang-format
4406
4407 CLANG/LLVM BUILD SUPPORT
4408 M:      Nathan Chancellor <[email protected]>
4409 M:      Nick Desaulniers <[email protected]>
4410 L:      [email protected]
4411 S:      Supported
4412 W:      https://clangbuiltlinux.github.io/
4413 B:      https://github.com/ClangBuiltLinux/linux/issues
4414 C:      irc://chat.freenode.net/clangbuiltlinux
4415 F:      Documentation/kbuild/llvm.rst
4416 F:      include/linux/compiler-clang.h
4417 F:      scripts/clang-tools/
4418 K:      \b(?i:clang|llvm)\b
4419
4420 CLEANCACHE API
4421 M:      Konrad Rzeszutek Wilk <[email protected]>
4422 L:      [email protected]
4423 S:      Maintained
4424 F:      include/linux/cleancache.h
4425 F:      mm/cleancache.c
4426
4427 CLK API
4428 M:      Russell King <[email protected]>
4429 L:      [email protected]
4430 S:      Maintained
4431 F:      include/linux/clk.h
4432
4433 CLOCKSOURCE, CLOCKEVENT DRIVERS
4434 M:      Daniel Lezcano <[email protected]>
4435 M:      Thomas Gleixner <[email protected]>
4436 L:      [email protected]
4437 S:      Supported
4438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4439 F:      Documentation/devicetree/bindings/timer/
4440 F:      drivers/clocksource/
4441
4442 CMPC ACPI DRIVER
4443 M:      Thadeu Lima de Souza Cascardo <[email protected]>
4444 M:      Daniel Oliveira Nascimento <[email protected]>
4445 L:      [email protected]
4446 S:      Supported
4447 F:      drivers/platform/x86/classmate-laptop.c
4448
4449 COBALT MEDIA DRIVER
4450 M:      Hans Verkuil <[email protected]>
4451 L:      [email protected]
4452 S:      Supported
4453 W:      https://linuxtv.org
4454 T:      git git://linuxtv.org/media_tree.git
4455 F:      drivers/media/pci/cobalt/
4456
4457 COCCINELLE/Semantic Patches (SmPL)
4458 M:      Julia Lawall <[email protected]>
4459 M:      Gilles Muller <[email protected]>
4460 M:      Nicolas Palix <[email protected]>
4461 M:      Michal Marek <[email protected]>
4462 L:      [email protected] (moderated for non-subscribers)
4463 S:      Supported
4464 W:      http://coccinelle.lip6.fr/
4465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4466 F:      Documentation/dev-tools/coccinelle.rst
4467 F:      scripts/coccicheck
4468 F:      scripts/coccinelle/
4469
4470 CODA FILE SYSTEM
4471 M:      Jan Harkes <[email protected]>
4472 M:      [email protected]
4473 L:      [email protected]
4474 S:      Maintained
4475 W:      http://www.coda.cs.cmu.edu/
4476 F:      Documentation/filesystems/coda.rst
4477 F:      fs/coda/
4478 F:      include/linux/coda*.h
4479 F:      include/uapi/linux/coda*.h
4480
4481 CODA V4L2 MEM2MEM DRIVER
4482 M:      Philipp Zabel <[email protected]>
4483 L:      [email protected]
4484 S:      Maintained
4485 F:      Documentation/devicetree/bindings/media/coda.yaml
4486 F:      drivers/media/platform/coda/
4487
4488 CODE OF CONDUCT
4489 M:      Greg Kroah-Hartman <[email protected]>
4490 S:      Supported
4491 F:      Documentation/process/code-of-conduct-interpretation.rst
4492 F:      Documentation/process/code-of-conduct.rst
4493
4494 COMEDI DRIVERS
4495 M:      Ian Abbott <[email protected]>
4496 M:      H Hartley Sweeten <[email protected]>
4497 S:      Odd Fixes
4498 F:      drivers/comedi/
4499
4500 COMMON CLK FRAMEWORK
4501 M:      Michael Turquette <[email protected]>
4502 M:      Stephen Boyd <[email protected]>
4503 L:      [email protected]
4504 S:      Maintained
4505 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4507 F:      Documentation/devicetree/bindings/clock/
4508 F:      drivers/clk/
4509 F:      include/linux/clk-pr*
4510 F:      include/linux/clk/
4511 F:      include/linux/of_clk.h
4512 X:      drivers/clk/clkdev.c
4513
4514 COMMON INTERNET FILE SYSTEM (CIFS)
4515 M:      Steve French <[email protected]>
4516 L:      [email protected]
4517 L:      [email protected] (moderated for non-subscribers)
4518 S:      Supported
4519 W:      http://linux-cifs.samba.org/
4520 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4521 F:      Documentation/admin-guide/cifs/
4522 F:      fs/cifs/
4523
4524 COMPACTPCI HOTPLUG CORE
4525 M:      Scott Murray <[email protected]>
4526 L:      [email protected]
4527 S:      Maintained
4528 F:      drivers/pci/hotplug/cpci_hotplug*
4529
4530 COMPACTPCI HOTPLUG GENERIC DRIVER
4531 M:      Scott Murray <[email protected]>
4532 L:      [email protected]
4533 S:      Maintained
4534 F:      drivers/pci/hotplug/cpcihp_generic.c
4535
4536 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4537 M:      Scott Murray <[email protected]>
4538 L:      [email protected]
4539 S:      Maintained
4540 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4541
4542 COMPAL LAPTOP SUPPORT
4543 M:      Cezary Jackiewicz <[email protected]>
4544 L:      [email protected]
4545 S:      Maintained
4546 F:      drivers/platform/x86/compal-laptop.c
4547
4548 COMPILER ATTRIBUTES
4549 M:      Miguel Ojeda <[email protected]>
4550 S:      Maintained
4551 F:      include/linux/compiler_attributes.h
4552
4553 COMPUTE EXPRESS LINK (CXL)
4554 M:      Alison Schofield <[email protected]>
4555 M:      Vishal Verma <[email protected]>
4556 M:      Ira Weiny <[email protected]>
4557 M:      Ben Widawsky <[email protected]>
4558 M:      Dan Williams <[email protected]>
4559 L:      [email protected]
4560 S:      Maintained
4561 F:      drivers/cxl/
4562 F:      include/uapi/linux/cxl_mem.h
4563
4564 CONEXANT ACCESSRUNNER USB DRIVER
4565 L:      [email protected]
4566 S:      Orphan
4567 W:      http://accessrunner.sourceforge.net/
4568 F:      drivers/usb/atm/cxacru.c
4569
4570 CONFIGFS
4571 M:      Joel Becker <[email protected]>
4572 M:      Christoph Hellwig <[email protected]>
4573 S:      Supported
4574 T:      git git://git.infradead.org/users/hch/configfs.git
4575 F:      fs/configfs/
4576 F:      include/linux/configfs.h
4577 F:      samples/configfs/
4578
4579 CONSOLE SUBSYSTEM
4580 M:      Greg Kroah-Hartman <[email protected]>
4581 S:      Supported
4582 F:      drivers/video/console/
4583 F:      include/linux/console*
4584
4585 CONTROL GROUP (CGROUP)
4586 M:      Tejun Heo <[email protected]>
4587 M:      Zefan Li <[email protected]>
4588 M:      Johannes Weiner <[email protected]>
4589 L:      [email protected]
4590 S:      Maintained
4591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4592 F:      Documentation/admin-guide/cgroup-v1/
4593 F:      Documentation/admin-guide/cgroup-v2.rst
4594 F:      include/linux/cgroup*
4595 F:      kernel/cgroup/
4596
4597 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4598 M:      Tejun Heo <[email protected]>
4599 M:      Jens Axboe <[email protected]>
4600 L:      [email protected]
4601 L:      [email protected]
4602 T:      git git://git.kernel.dk/linux-block
4603 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4604 F:      block/bfq-cgroup.c
4605 F:      block/blk-cgroup.c
4606 F:      block/blk-iolatency.c
4607 F:      block/blk-throttle.c
4608 F:      include/linux/blk-cgroup.h
4609
4610 CONTROL GROUP - CPUSET
4611 M:      Zefan Li <[email protected]>
4612 L:      [email protected]
4613 S:      Maintained
4614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4615 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4616 F:      include/linux/cpuset.h
4617 F:      kernel/cgroup/cpuset.c
4618
4619 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4620 M:      Johannes Weiner <[email protected]>
4621 M:      Michal Hocko <[email protected]>
4622 M:      Vladimir Davydov <[email protected]>
4623 L:      [email protected]
4624 L:      [email protected]
4625 S:      Maintained
4626 F:      mm/memcontrol.c
4627 F:      mm/swap_cgroup.c
4628
4629 CORETEMP HARDWARE MONITORING DRIVER
4630 M:      Fenghua Yu <[email protected]>
4631 L:      [email protected]
4632 S:      Maintained
4633 F:      Documentation/hwmon/coretemp.rst
4634 F:      drivers/hwmon/coretemp.c
4635
4636 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4637 M:      Marius Zachmann <[email protected]>
4638 L:      [email protected]
4639 S:      Maintained
4640 F:      drivers/hwmon/corsair-cpro.c
4641
4642 CORSAIR-PSU HARDWARE MONITOR DRIVER
4643 M:      Wilken Gottwalt <[email protected]>
4644 L:      [email protected]
4645 S:      Maintained
4646 F:      Documentation/hwmon/corsair-psu.rst
4647 F:      drivers/hwmon/corsair-psu.c
4648
4649 COSA/SRP SYNC SERIAL DRIVER
4650 M:      Jan "Yenya" Kasprzak <[email protected]>
4651 S:      Maintained
4652 W:      http://www.fi.muni.cz/~kas/cosa/
4653 F:      drivers/net/wan/cosa*
4654
4655 COUNTER SUBSYSTEM
4656 M:      William Breathitt Gray <[email protected]>
4657 L:      [email protected]
4658 S:      Maintained
4659 F:      Documentation/ABI/testing/sysfs-bus-counter*
4660 F:      Documentation/driver-api/generic-counter.rst
4661 F:      drivers/counter/
4662 F:      include/linux/counter.h
4663 F:      include/linux/counter_enum.h
4664
4665 CPMAC ETHERNET DRIVER
4666 M:      Florian Fainelli <[email protected]>
4667 L:      [email protected]
4668 S:      Maintained
4669 F:      drivers/net/ethernet/ti/cpmac.c
4670
4671 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4672 M:      Viresh Kumar <[email protected]>
4673 M:      Sudeep Holla <[email protected]>
4674 L:      [email protected]
4675 S:      Maintained
4676 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4677 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4678
4679 CPU FREQUENCY SCALING FRAMEWORK
4680 M:      "Rafael J. Wysocki" <[email protected]>
4681 M:      Viresh Kumar <[email protected]>
4682 L:      [email protected]
4683 S:      Maintained
4684 B:      https://bugzilla.kernel.org
4685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4687 F:      Documentation/admin-guide/pm/cpufreq.rst
4688 F:      Documentation/admin-guide/pm/intel_pstate.rst
4689 F:      Documentation/cpu-freq/
4690 F:      Documentation/devicetree/bindings/cpufreq/
4691 F:      drivers/cpufreq/
4692 F:      include/linux/cpufreq.h
4693 F:      include/linux/sched/cpufreq.h
4694 F:      kernel/sched/cpufreq*.c
4695 F:      tools/testing/selftests/cpufreq/
4696
4697 CPU IDLE TIME MANAGEMENT FRAMEWORK
4698 M:      "Rafael J. Wysocki" <[email protected]>
4699 M:      Daniel Lezcano <[email protected]>
4700 L:      [email protected]
4701 S:      Maintained
4702 B:      https://bugzilla.kernel.org
4703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4704 F:      Documentation/admin-guide/pm/cpuidle.rst
4705 F:      Documentation/driver-api/pm/cpuidle.rst
4706 F:      drivers/cpuidle/
4707 F:      include/linux/cpuidle.h
4708
4709 CPU POWER MONITORING SUBSYSTEM
4710 M:      Thomas Renninger <[email protected]>
4711 M:      Shuah Khan <[email protected]>
4712 M:      Shuah Khan <[email protected]>
4713 L:      [email protected]
4714 S:      Maintained
4715 F:      tools/power/cpupower/
4716
4717 CPUID/MSR DRIVER
4718 M:      "H. Peter Anvin" <[email protected]>
4719 S:      Maintained
4720 F:      arch/x86/kernel/cpuid.c
4721 F:      arch/x86/kernel/msr.c
4722
4723 CPUIDLE DRIVER - ARM BIG LITTLE
4724 M:      Lorenzo Pieralisi <[email protected]>
4725 M:      Daniel Lezcano <[email protected]>
4726 L:      [email protected]
4727 L:      [email protected]
4728 S:      Maintained
4729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4730 F:      drivers/cpuidle/cpuidle-big_little.c
4731
4732 CPUIDLE DRIVER - ARM EXYNOS
4733 M:      Bartlomiej Zolnierkiewicz <[email protected]>
4734 M:      Daniel Lezcano <[email protected]>
4735 M:      Kukjin Kim <[email protected]>
4736 L:      [email protected]
4737 L:      [email protected]
4738 S:      Supported
4739 F:      arch/arm/mach-exynos/pm.c
4740 F:      drivers/cpuidle/cpuidle-exynos.c
4741 F:      include/linux/platform_data/cpuidle-exynos.h
4742
4743 CPUIDLE DRIVER - ARM PSCI
4744 M:      Lorenzo Pieralisi <[email protected]>
4745 M:      Sudeep Holla <[email protected]>
4746 L:      [email protected]
4747 L:      [email protected]
4748 S:      Supported
4749 F:      drivers/cpuidle/cpuidle-psci.c
4750
4751 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4752 M:      Ulf Hansson <[email protected]>
4753 L:      [email protected]
4754 L:      [email protected]
4755 S:      Supported
4756 F:      drivers/cpuidle/cpuidle-psci.h
4757 F:      drivers/cpuidle/cpuidle-psci-domain.c
4758
4759 CRAMFS FILESYSTEM
4760 M:      Nicolas Pitre <[email protected]>
4761 S:      Maintained
4762 F:      Documentation/filesystems/cramfs.rst
4763 F:      fs/cramfs/
4764
4765 CREATIVE SB0540
4766 M:      Bastien Nocera <[email protected]>
4767 L:      [email protected]
4768 S:      Maintained
4769 F:      drivers/hid/hid-creative-sb0540.c
4770
4771 CRYPTO API
4772 M:      Herbert Xu <[email protected]>
4773 M:      "David S. Miller" <[email protected]>
4774 L:      [email protected]
4775 S:      Maintained
4776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4778 F:      Documentation/crypto/
4779 F:      Documentation/devicetree/bindings/crypto/
4780 F:      arch/*/crypto/
4781 F:      crypto/
4782 F:      drivers/crypto/
4783 F:      include/crypto/
4784 F:      include/linux/crypto*
4785 F:      lib/crypto/
4786
4787 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4788 M:      Neil Horman <[email protected]>
4789 L:      [email protected]
4790 S:      Maintained
4791 F:      crypto/ansi_cprng.c
4792 F:      crypto/rng.c
4793
4794 CS3308 MEDIA DRIVER
4795 M:      Hans Verkuil <[email protected]>
4796 L:      [email protected]
4797 S:      Odd Fixes
4798 W:      http://linuxtv.org
4799 T:      git git://linuxtv.org/media_tree.git
4800 F:      drivers/media/i2c/cs3308.c
4801
4802 CS5535 Audio ALSA driver
4803 M:      Jaya Kumar <[email protected]>
4804 S:      Maintained
4805 F:      sound/pci/cs5535audio/
4806
4807 CSI DRIVERS FOR ALLWINNER V3s
4808 M:      Yong Deng <[email protected]>
4809 L:      [email protected]
4810 S:      Maintained
4811 T:      git git://linuxtv.org/media_tree.git
4812 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4813 F:      drivers/media/platform/sunxi/sun6i-csi/
4814
4815 CW1200 WLAN driver
4816 M:      Solomon Peachy <[email protected]>
4817 S:      Maintained
4818 F:      drivers/net/wireless/st/cw1200/
4819
4820 CX18 VIDEO4LINUX DRIVER
4821 M:      Andy Walls <[email protected]>
4822 L:      [email protected]
4823 S:      Maintained
4824 W:      https://linuxtv.org
4825 T:      git git://linuxtv.org/media_tree.git
4826 F:      drivers/media/pci/cx18/
4827 F:      include/uapi/linux/ivtv*
4828
4829 CX2341X MPEG ENCODER HELPER MODULE
4830 M:      Hans Verkuil <[email protected]>
4831 L:      [email protected]
4832 S:      Maintained
4833 W:      https://linuxtv.org
4834 T:      git git://linuxtv.org/media_tree.git
4835 F:      drivers/media/common/cx2341x*
4836 F:      include/media/drv-intf/cx2341x.h
4837
4838 CX24120 MEDIA DRIVER
4839 M:      Jemma Denson <[email protected]>
4840 M:      Patrick Boettcher <[email protected]>
4841 L:      [email protected]
4842 S:      Maintained
4843 W:      https://linuxtv.org
4844 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4845 F:      drivers/media/dvb-frontends/cx24120*
4846
4847 CX88 VIDEO4LINUX DRIVER
4848 M:      Mauro Carvalho Chehab <[email protected]>
4849 L:      [email protected]
4850 S:      Odd fixes
4851 W:      https://linuxtv.org
4852 T:      git git://linuxtv.org/media_tree.git
4853 F:      Documentation/driver-api/media/drivers/cx88*
4854 F:      drivers/media/pci/cx88/
4855
4856 CXD2820R MEDIA DRIVER
4857 M:      Antti Palosaari <[email protected]>
4858 L:      [email protected]
4859 S:      Maintained
4860 W:      https://linuxtv.org
4861 W:      http://palosaari.fi/linux/
4862 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4863 T:      git git://linuxtv.org/anttip/media_tree.git
4864 F:      drivers/media/dvb-frontends/cxd2820r*
4865
4866 CXGB3 ETHERNET DRIVER (CXGB3)
4867 M:      Raju Rangoju <[email protected]>
4868 L:      [email protected]
4869 S:      Supported
4870 W:      http://www.chelsio.com
4871 F:      drivers/net/ethernet/chelsio/cxgb3/
4872
4873 CXGB3 ISCSI DRIVER (CXGB3I)
4874 M:      Karen Xie <[email protected]>
4875 L:      [email protected]
4876 S:      Supported
4877 W:      http://www.chelsio.com
4878 F:      drivers/scsi/cxgbi/cxgb3i
4879
4880 CXGB4 CRYPTO DRIVER (chcr)
4881 M:      Ayush Sawal <[email protected]>
4882 M:      Vinay Kumar Yadav <[email protected]>
4883 M:      Rohit Maheshwari <[email protected]>
4884 L:      [email protected]
4885 S:      Supported
4886 W:      http://www.chelsio.com
4887 F:      drivers/crypto/chelsio
4888
4889 CXGB4 INLINE CRYPTO DRIVER
4890 M:      Ayush Sawal <[email protected]>
4891 M:      Vinay Kumar Yadav <[email protected]>
4892 M:      Rohit Maheshwari <[email protected]>
4893 L:      [email protected]
4894 S:      Supported
4895 W:      http://www.chelsio.com
4896 F:      drivers/net/ethernet/chelsio/inline_crypto/
4897
4898 CXGB4 ETHERNET DRIVER (CXGB4)
4899 M:      Raju Rangoju <[email protected]>
4900 L:      [email protected]
4901 S:      Supported
4902 W:      http://www.chelsio.com
4903 F:      drivers/net/ethernet/chelsio/cxgb4/
4904
4905 CXGB4 ISCSI DRIVER (CXGB4I)
4906 M:      Karen Xie <[email protected]>
4907 L:      [email protected]
4908 S:      Supported
4909 W:      http://www.chelsio.com
4910 F:      drivers/scsi/cxgbi/cxgb4i
4911
4912 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4913 M:      Potnuri Bharat Teja <[email protected]>
4914 L:      [email protected]
4915 S:      Supported
4916 W:      http://www.openfabrics.org
4917 F:      drivers/infiniband/hw/cxgb4/
4918 F:      include/uapi/rdma/cxgb4-abi.h
4919
4920 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4921 M:      Raju Rangoju <[email protected]>
4922 L:      [email protected]
4923 S:      Supported
4924 W:      http://www.chelsio.com
4925 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4926
4927 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4928 M:      Frederic Barrat <[email protected]>
4929 M:      Andrew Donnellan <[email protected]>
4930 L:      [email protected]
4931 S:      Supported
4932 F:      Documentation/ABI/testing/sysfs-class-cxl
4933 F:      Documentation/powerpc/cxl.rst
4934 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4935 F:      drivers/misc/cxl/
4936 F:      include/misc/cxl*
4937 F:      include/uapi/misc/cxl.h
4938
4939 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4940 M:      Manoj N. Kumar <[email protected]>
4941 M:      Matthew R. Ochs <[email protected]>
4942 M:      Uma Krishnan <[email protected]>
4943 L:      [email protected]
4944 S:      Supported
4945 F:      Documentation/powerpc/cxlflash.rst
4946 F:      drivers/scsi/cxlflash/
4947 F:      include/uapi/scsi/cxlflash_ioctl.h
4948
4949 CYBERPRO FB DRIVER
4950 M:      Russell King <[email protected]>
4951 L:      [email protected] (moderated for non-subscribers)
4952 S:      Maintained
4953 W:      http://www.armlinux.org.uk/
4954 F:      drivers/video/fbdev/cyber2000fb.*
4955
4956 CYCLADES PC300 DRIVER
4957 S:      Orphan
4958 F:      drivers/net/wan/pc300*
4959
4960 CYPRESS_FIRMWARE MEDIA DRIVER
4961 M:      Antti Palosaari <[email protected]>
4962 L:      [email protected]
4963 S:      Maintained
4964 W:      https://linuxtv.org
4965 W:      http://palosaari.fi/linux/
4966 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4967 T:      git git://linuxtv.org/anttip/media_tree.git
4968 F:      drivers/media/common/cypress_firmware*
4969
4970 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4971 M:      Linus Walleij <[email protected]>
4972 L:      [email protected]
4973 S:      Maintained
4974 F:      drivers/input/touchscreen/cy8ctma140.c
4975
4976 CYTTSP TOUCHSCREEN DRIVER
4977 M:      Ferruh Yigit <[email protected]>
4978 L:      [email protected]
4979 S:      Supported
4980 F:      drivers/input/touchscreen/cyttsp*
4981 F:      include/linux/input/cyttsp.h
4982
4983 D-LINK DIR-685 TOUCHKEYS DRIVER
4984 M:      Linus Walleij <[email protected]>
4985 L:      [email protected]
4986 S:      Supported
4987 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4988
4989 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4990 M:      Joshua Kinard <[email protected]>
4991 S:      Maintained
4992 F:      drivers/rtc/rtc-ds1685.c
4993 F:      include/linux/rtc/ds1685.h
4994
4995 DAMA SLAVE for AX.25
4996 M:      Joerg Reuter <[email protected]>
4997 L:      [email protected]
4998 S:      Maintained
4999 W:      http://yaina.de/jreuter/
5000 W:      http://www.qsl.net/dl1bke/
5001 F:      net/ax25/af_ax25.c
5002 F:      net/ax25/ax25_dev.c
5003 F:      net/ax25/ax25_ds_*
5004 F:      net/ax25/ax25_in.c
5005 F:      net/ax25/ax25_out.c
5006 F:      net/ax25/ax25_timer.c
5007 F:      net/ax25/sysctl_net_ax25.c
5008
5009 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5010 L:      [email protected]
5011 S:      Orphan
5012 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5013 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5014
5015 DC390/AM53C974 SCSI driver
5016 M:      Hannes Reinecke <[email protected]>
5017 L:      [email protected]
5018 S:      Maintained
5019 F:      drivers/scsi/am53c974.c
5020
5021 DC395x SCSI driver
5022 M:      Oliver Neukum <[email protected]>
5023 M:      Ali Akcaagac <[email protected]>
5024 M:      Jamie Lenehan <[email protected]>
5025 L:      [email protected]
5026 S:      Maintained
5027 W:      http://twibble.org/dist/dc395x/
5028 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5029 F:      Documentation/scsi/dc395x.rst
5030 F:      drivers/scsi/dc395x.*
5031
5032 DCCP PROTOCOL
5033 L:      [email protected]
5034 S:      Orphan
5035 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5036 F:      include/linux/dccp.h
5037 F:      include/linux/tfrc.h
5038 F:      include/uapi/linux/dccp.h
5039 F:      net/dccp/
5040
5041 DECnet NETWORK LAYER
5042 L:      [email protected]
5043 S:      Orphan
5044 W:      http://linux-decnet.sourceforge.net
5045 F:      Documentation/networking/decnet.rst
5046 F:      net/decnet/
5047
5048 DECSTATION PLATFORM SUPPORT
5049 M:      "Maciej W. Rozycki" <[email protected]>
5050 L:      [email protected]
5051 S:      Maintained
5052 W:      http://www.linux-mips.org/wiki/DECstation
5053 F:      arch/mips/dec/
5054 F:      arch/mips/include/asm/dec/
5055 F:      arch/mips/include/asm/mach-dec/
5056
5057 DEFXX FDDI NETWORK DRIVER
5058 M:      "Maciej W. Rozycki" <[email protected]>
5059 S:      Maintained
5060 F:      drivers/net/fddi/defxx.*
5061
5062 DEFZA FDDI NETWORK DRIVER
5063 M:      "Maciej W. Rozycki" <[email protected]>
5064 S:      Maintained
5065 F:      drivers/net/fddi/defza.*
5066
5067 DEINTERLACE DRIVERS FOR ALLWINNER H3
5068 M:      Jernej Skrabec <[email protected]>
5069 L:      [email protected]
5070 S:      Maintained
5071 T:      git git://linuxtv.org/media_tree.git
5072 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5073 F:      drivers/media/platform/sunxi/sun8i-di/
5074
5075 DELL LAPTOP DRIVER
5076 M:      Matthew Garrett <[email protected]>
5077 M:      Pali Rohár <[email protected]>
5078 L:      [email protected]
5079 S:      Maintained
5080 F:      drivers/platform/x86/dell/dell-laptop.c
5081
5082 DELL LAPTOP FREEFALL DRIVER
5083 M:      Pali Rohár <[email protected]>
5084 S:      Maintained
5085 F:      drivers/platform/x86/dell/dell-smo8800.c
5086
5087 DELL LAPTOP RBTN DRIVER
5088 M:      Pali Rohár <[email protected]>
5089 S:      Maintained
5090 F:      drivers/platform/x86/dell/dell-rbtn.*
5091
5092 DELL LAPTOP SMM DRIVER
5093 M:      Pali Rohár <[email protected]>
5094 S:      Maintained
5095 F:      drivers/hwmon/dell-smm-hwmon.c
5096 F:      include/uapi/linux/i8k.h
5097
5098 DELL REMOTE BIOS UPDATE DRIVER
5099 M:      Stuart Hayes <[email protected]>
5100 L:      [email protected]
5101 S:      Maintained
5102 F:      drivers/platform/x86/dell/dell_rbu.c
5103
5104 DELL SMBIOS DRIVER
5105 M:      Pali Rohár <[email protected]>
5106 L:      [email protected]
5107 L:      [email protected]
5108 S:      Maintained
5109 F:      drivers/platform/x86/dell/dell-smbios.*
5110
5111 DELL SMBIOS SMM DRIVER
5112 L:      [email protected]
5113 L:      [email protected]
5114 S:      Maintained
5115 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5116
5117 DELL SMBIOS WMI DRIVER
5118 L:      [email protected]
5119 L:      [email protected]
5120 S:      Maintained
5121 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5122 F:      tools/wmi/dell-smbios-example.c
5123
5124 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5125 M:      Stuart Hayes <[email protected]>
5126 L:      [email protected]
5127 S:      Maintained
5128 F:      Documentation/driver-api/dcdbas.rst
5129 F:      drivers/platform/x86/dell/dcdbas.*
5130
5131 DELL WMI DESCRIPTOR DRIVER
5132 L:      [email protected]
5133 S:      Maintained
5134 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5135
5136 DELL WMI SYSMAN DRIVER
5137 M:      Divya Bharathi <[email protected]>
5138 M:      Prasanth Ksr <[email protected]>
5139 L:      [email protected]
5140 L:      [email protected]
5141 S:      Maintained
5142 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5143 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5144
5145 DELL WMI NOTIFICATIONS DRIVER
5146 M:      Matthew Garrett <[email protected]>
5147 M:      Pali Rohár <[email protected]>
5148 S:      Maintained
5149 F:      drivers/platform/x86/dell/dell-wmi.c
5150
5151 DELTA ST MEDIA DRIVER
5152 M:      Hugues Fruchet <[email protected]>
5153 L:      [email protected]
5154 S:      Supported
5155 W:      https://linuxtv.org
5156 T:      git git://linuxtv.org/media_tree.git
5157 F:      drivers/media/platform/sti/delta
5158
5159 DENALI NAND DRIVER
5160 L:      [email protected]
5161 S:      Orphan
5162 F:      drivers/mtd/nand/raw/denali*
5163
5164 DESIGNWARE EDMA CORE IP DRIVER
5165 M:      Gustavo Pimentel <[email protected]>
5166 L:      [email protected]
5167 S:      Maintained
5168 F:      drivers/dma/dw-edma/
5169 F:      include/linux/dma/edma.h
5170
5171 DESIGNWARE XDATA IP DRIVER
5172 M:      Gustavo Pimentel <[email protected]>
5173 L:      [email protected]
5174 S:      Maintained
5175 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5176 F:      drivers/misc/dw-xdata-pcie.c
5177
5178 DESIGNWARE USB2 DRD IP DRIVER
5179 M:      Minas Harutyunyan <[email protected]>
5180 L:      [email protected]
5181 S:      Maintained
5182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5183 F:      drivers/usb/dwc2/
5184
5185 DESIGNWARE USB3 DRD IP DRIVER
5186 M:      Felipe Balbi <[email protected]>
5187 L:      [email protected]
5188 S:      Maintained
5189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5190 F:      drivers/usb/dwc3/
5191
5192 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5193 M:      Andreas Klinger <[email protected]>
5194 L:      [email protected]
5195 S:      Maintained
5196 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5197 F:      drivers/iio/proximity/srf*.c
5198
5199 DEVICE COREDUMP (DEV_COREDUMP)
5200 M:      Johannes Berg <[email protected]>
5201 L:      [email protected]
5202 S:      Maintained
5203 F:      drivers/base/devcoredump.c
5204 F:      include/linux/devcoredump.h
5205
5206 DEVICE DEPENDENCY HELPER SCRIPT
5207 M:      Saravana Kannan <[email protected]>
5208 L:      [email protected]
5209 S:      Maintained
5210 F:      scripts/dev-needs.sh
5211
5212 DEVICE DIRECT ACCESS (DAX)
5213 M:      Dan Williams <[email protected]>
5214 M:      Vishal Verma <[email protected]>
5215 M:      Dave Jiang <[email protected]>
5216 L:      [email protected]
5217 S:      Supported
5218 F:      drivers/dax/
5219
5220 DEVICE FREQUENCY (DEVFREQ)
5221 M:      MyungJoo Ham <[email protected]>
5222 M:      Kyungmin Park <[email protected]>
5223 M:      Chanwoo Choi <[email protected]>
5224 L:      [email protected]
5225 S:      Maintained
5226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5227 F:      Documentation/devicetree/bindings/devfreq/
5228 F:      drivers/devfreq/
5229 F:      include/linux/devfreq.h
5230 F:      include/trace/events/devfreq.h
5231
5232 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5233 M:      Chanwoo Choi <[email protected]>
5234 L:      [email protected]
5235 S:      Supported
5236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5237 F:      Documentation/devicetree/bindings/devfreq/event/
5238 F:      drivers/devfreq/devfreq-event.c
5239 F:      drivers/devfreq/event/
5240 F:      include/dt-bindings/pmu/exynos_ppmu.h
5241 F:      include/linux/devfreq-event.h
5242
5243 DEVICE NUMBER REGISTRY
5244 M:      Torben Mathiasen <[email protected]>
5245 S:      Maintained
5246 W:      http://lanana.org/docs/device-list/index.html
5247
5248 DEVICE RESOURCE MANAGEMENT HELPERS
5249 M:      Hans de Goede <[email protected]>
5250 R:      Matti Vaittinen <[email protected]>
5251 S:      Maintained
5252 F:      include/linux/devm-helpers.h
5253
5254 DEVICE-MAPPER  (LVM)
5255 M:      Alasdair Kergon <[email protected]>
5256 M:      Mike Snitzer <[email protected]>
5257 M:      [email protected]
5258 L:      [email protected]
5259 S:      Maintained
5260 W:      http://sources.redhat.com/dm
5261 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5263 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5264 F:      Documentation/admin-guide/device-mapper/
5265 F:      drivers/md/Kconfig
5266 F:      drivers/md/Makefile
5267 F:      drivers/md/dm*
5268 F:      drivers/md/persistent-data/
5269 F:      include/linux/device-mapper.h
5270 F:      include/linux/dm-*.h
5271 F:      include/uapi/linux/dm-*.h
5272
5273 DEVLINK
5274 M:      Jiri Pirko <[email protected]>
5275 L:      [email protected]
5276 S:      Supported
5277 F:      Documentation/networking/devlink
5278 F:      include/net/devlink.h
5279 F:      include/uapi/linux/devlink.h
5280 F:      net/core/devlink.c
5281
5282 DIALOG SEMICONDUCTOR DRIVERS
5283 M:      Support Opensource <[email protected]>
5284 S:      Supported
5285 W:      http://www.dialog-semiconductor.com/products
5286 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5287 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5288 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5289 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5290 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5291 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5292 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5293 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5294 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5295 F:      Documentation/hwmon/da90??.rst
5296 F:      drivers/gpio/gpio-da90??.c
5297 F:      drivers/hwmon/da90??-hwmon.c
5298 F:      drivers/iio/adc/da91??-*.c
5299 F:      drivers/input/misc/da72??.[ch]
5300 F:      drivers/input/misc/da90??_onkey.c
5301 F:      drivers/input/touchscreen/da9052_tsi.c
5302 F:      drivers/leds/leds-da90??.c
5303 F:      drivers/mfd/da903x.c
5304 F:      drivers/mfd/da90??-*.c
5305 F:      drivers/mfd/da91??-*.c
5306 F:      drivers/pinctrl/pinctrl-da90??.c
5307 F:      drivers/power/supply/da9052-battery.c
5308 F:      drivers/power/supply/da91??-*.c
5309 F:      drivers/regulator/da9???-regulator.[ch]
5310 F:      drivers/regulator/slg51000-regulator.[ch]
5311 F:      drivers/rtc/rtc-da90??.c
5312 F:      drivers/thermal/da90??-thermal.c
5313 F:      drivers/video/backlight/da90??_bl.c
5314 F:      drivers/watchdog/da90??_wdt.c
5315 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5316 F:      include/linux/mfd/da903x.h
5317 F:      include/linux/mfd/da9052/
5318 F:      include/linux/mfd/da9055/
5319 F:      include/linux/mfd/da9062/
5320 F:      include/linux/mfd/da9063/
5321 F:      include/linux/mfd/da9150/
5322 F:      include/linux/regulator/da9211.h
5323 F:      include/sound/da[79]*.h
5324 F:      sound/soc/codecs/da[79]*.[ch]
5325
5326 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5327 M:      William Breathitt Gray <[email protected]>
5328 L:      [email protected]
5329 S:      Maintained
5330 F:      drivers/gpio/gpio-gpio-mm.c
5331
5332 DIOLAN U2C-12 I2C DRIVER
5333 M:      Guenter Roeck <[email protected]>
5334 L:      [email protected]
5335 S:      Maintained
5336 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5337
5338 DIRECTORY NOTIFICATION (DNOTIFY)
5339 M:      Jan Kara <[email protected]>
5340 R:      Amir Goldstein <[email protected]>
5341 L:      [email protected]
5342 S:      Maintained
5343 F:      Documentation/filesystems/dnotify.rst
5344 F:      fs/notify/dnotify/
5345 F:      include/linux/dnotify.h
5346
5347 DISK GEOMETRY AND PARTITION HANDLING
5348 M:      Andries Brouwer <[email protected]>
5349 S:      Maintained
5350 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5351 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5352 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5353
5354 DISKQUOTA
5355 M:      Jan Kara <[email protected]>
5356 S:      Maintained
5357 F:      Documentation/filesystems/quota.rst
5358 F:      fs/quota/
5359 F:      include/linux/quota*.h
5360 F:      include/uapi/linux/quota*.h
5361
5362 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5363 M:      Bernie Thompson <[email protected]>
5364 L:      [email protected]
5365 S:      Maintained
5366 W:      http://plugable.com/category/projects/udlfb/
5367 F:      Documentation/fb/udlfb.rst
5368 F:      drivers/video/fbdev/udlfb.c
5369 F:      include/video/udlfb.h
5370
5371 DISTRIBUTED LOCK MANAGER (DLM)
5372 M:      Christine Caulfield <[email protected]>
5373 M:      David Teigland <[email protected]>
5374 L:      [email protected]
5375 S:      Supported
5376 W:      http://sources.redhat.com/cluster/
5377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5378 F:      fs/dlm/
5379
5380 DMA BUFFER SHARING FRAMEWORK
5381 M:      Sumit Semwal <[email protected]>
5382 M:      Christian König <[email protected]>
5383 L:      [email protected]
5384 L:      [email protected]
5385 L:      [email protected] (moderated for non-subscribers)
5386 S:      Maintained
5387 T:      git git://anongit.freedesktop.org/drm/drm-misc
5388 F:      Documentation/driver-api/dma-buf.rst
5389 F:      drivers/dma-buf/
5390 F:      include/linux/*fence.h
5391 F:      include/linux/dma-buf*
5392 F:      include/linux/dma-resv.h
5393 K:      \bdma_(?:buf|fence|resv)\b
5394
5395 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5396 M:      Vinod Koul <[email protected]>
5397 L:      [email protected]
5398 S:      Maintained
5399 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5401 F:      Documentation/devicetree/bindings/dma/
5402 F:      Documentation/driver-api/dmaengine/
5403 F:      drivers/dma/
5404 F:      include/linux/dma/
5405 F:      include/linux/dmaengine.h
5406 F:      include/linux/of_dma.h
5407
5408 DMA MAPPING HELPERS
5409 M:      Christoph Hellwig <[email protected]>
5410 M:      Marek Szyprowski <[email protected]>
5411 R:      Robin Murphy <[email protected]>
5412 L:      [email protected]
5413 S:      Supported
5414 W:      http://git.infradead.org/users/hch/dma-mapping.git
5415 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5416 F:      include/asm-generic/dma-mapping.h
5417 F:      include/linux/dma-direct.h
5418 F:      include/linux/dma-mapping.h
5419 F:      include/linux/dma-map-ops.h
5420 F:      kernel/dma/
5421
5422 DMA MAPPING BENCHMARK
5423 M:      Barry Song <[email protected]>
5424 L:      [email protected]
5425 F:      kernel/dma/map_benchmark.c
5426 F:      tools/testing/selftests/dma/
5427
5428 DMA-BUF HEAPS FRAMEWORK
5429 M:      Sumit Semwal <[email protected]>
5430 R:      Benjamin Gaignard <[email protected]>
5431 R:      Liam Mark <[email protected]>
5432 R:      Laura Abbott <[email protected]>
5433 R:      Brian Starkey <[email protected]>
5434 R:      John Stultz <[email protected]>
5435 L:      [email protected]
5436 L:      [email protected]
5437 L:      [email protected] (moderated for non-subscribers)
5438 S:      Maintained
5439 T:      git git://anongit.freedesktop.org/drm/drm-misc
5440 F:      drivers/dma-buf/dma-heap.c
5441 F:      drivers/dma-buf/heaps/*
5442 F:      include/linux/dma-heap.h
5443 F:      include/uapi/linux/dma-heap.h
5444
5445 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5446 M:      Lukasz Luba <[email protected]>
5447 L:      [email protected]
5448 L:      [email protected]
5449 S:      Maintained
5450 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5451 F:      drivers/memory/samsung/exynos5422-dmc.c
5452
5453 DME1737 HARDWARE MONITOR DRIVER
5454 M:      Juerg Haefliger <[email protected]>
5455 L:      [email protected]
5456 S:      Maintained
5457 F:      Documentation/hwmon/dme1737.rst
5458 F:      drivers/hwmon/dme1737.c
5459
5460 DMI/SMBIOS SUPPORT
5461 M:      Jean Delvare <[email protected]>
5462 S:      Maintained
5463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5464 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5465 F:      drivers/firmware/dmi-id.c
5466 F:      drivers/firmware/dmi_scan.c
5467 F:      include/linux/dmi.h
5468
5469 DOCUMENTATION
5470 M:      Jonathan Corbet <[email protected]>
5471 L:      [email protected]
5472 S:      Maintained
5473 P:      Documentation/doc-guide/maintainer-profile.rst
5474 T:      git git://git.lwn.net/linux.git docs-next
5475 F:      Documentation/
5476 F:      scripts/documentation-file-ref-check
5477 F:      scripts/kernel-doc
5478 F:      scripts/sphinx-pre-install
5479 X:      Documentation/ABI/
5480 X:      Documentation/admin-guide/media/
5481 X:      Documentation/devicetree/
5482 X:      Documentation/driver-api/media/
5483 X:      Documentation/firmware-guide/acpi/
5484 X:      Documentation/i2c/
5485 X:      Documentation/power/
5486 X:      Documentation/spi/
5487 X:      Documentation/userspace-api/media/
5488
5489 DOCUMENTATION REPORTING ISSUES
5490 M:      Thorsten Leemhuis <[email protected]>
5491 L:      [email protected]
5492 S:      Maintained
5493 F:      Documentation/admin-guide/reporting-issues.rst
5494
5495 DOCUMENTATION SCRIPTS
5496 M:      Mauro Carvalho Chehab <[email protected]>
5497 L:      [email protected]
5498 S:      Maintained
5499 F:      Documentation/sphinx/parse-headers.pl
5500 F:      scripts/documentation-file-ref-check
5501 F:      scripts/sphinx-pre-install
5502
5503 DOCUMENTATION/ITALIAN
5504 M:      Federico Vaga <[email protected]>
5505 L:      [email protected]
5506 S:      Maintained
5507 F:      Documentation/translations/it_IT
5508
5509 DONGWOON DW9714 LENS VOICE COIL DRIVER
5510 M:      Sakari Ailus <[email protected]>
5511 L:      [email protected]
5512 S:      Maintained
5513 T:      git git://linuxtv.org/media_tree.git
5514 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5515 F:      drivers/media/i2c/dw9714.c
5516
5517 DONGWOON DW9768 LENS VOICE COIL DRIVER
5518 M:      Dongchun Zhu <[email protected]>
5519 L:      [email protected]
5520 S:      Maintained
5521 T:      git git://linuxtv.org/media_tree.git
5522 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5523 F:      drivers/media/i2c/dw9768.c
5524
5525 DONGWOON DW9807 LENS VOICE COIL DRIVER
5526 M:      Sakari Ailus <[email protected]>
5527 L:      [email protected]
5528 S:      Maintained
5529 T:      git git://linuxtv.org/media_tree.git
5530 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5531 F:      drivers/media/i2c/dw9807-vcm.c
5532
5533 DOUBLETALK DRIVER
5534 M:      "James R. Van Zandt" <[email protected]>
5535 L:      [email protected]
5536 S:      Maintained
5537 F:      drivers/char/dtlk.c
5538 F:      include/linux/dtlk.h
5539
5540 DPAA2 DATAPATH I/O (DPIO) DRIVER
5541 M:      Roy Pledge <[email protected]>
5542 L:      [email protected]
5543 S:      Maintained
5544 F:      drivers/soc/fsl/dpio
5545
5546 DPAA2 ETHERNET DRIVER
5547 M:      Ioana Ciornei <[email protected]>
5548 M:      Ioana Radulescu <[email protected]>
5549 L:      [email protected]
5550 S:      Maintained
5551 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5552 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5553 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5554 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5555 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5556 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5557 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5558 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5559 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5560
5561 DPAA2 ETHERNET SWITCH DRIVER
5562 M:      Ioana Ciornei <[email protected]>
5563 L:      [email protected]
5564 S:      Maintained
5565 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5566 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5567
5568 DPT_I2O SCSI RAID DRIVER
5569 M:      Adaptec OEM Raid Solutions <[email protected]>
5570 L:      [email protected]
5571 S:      Maintained
5572 W:      http://www.adaptec.com/
5573 F:      drivers/scsi/dpt*
5574 F:      drivers/scsi/dpt/
5575
5576 DRBD DRIVER
5577 M:      Philipp Reisner <[email protected]>
5578 M:      Lars Ellenberg <[email protected]>
5579 L:      [email protected]
5580 S:      Supported
5581 W:      http://www.drbd.org
5582 T:      git git://git.linbit.com/linux-drbd.git
5583 T:      git git://git.linbit.com/drbd-8.4.git
5584 F:      Documentation/admin-guide/blockdev/
5585 F:      drivers/block/drbd/
5586 F:      lib/lru_cache.c
5587
5588 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5589 M:      Greg Kroah-Hartman <[email protected]>
5590 R:      "Rafael J. Wysocki" <[email protected]>
5591 S:      Supported
5592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5593 F:      Documentation/core-api/kobject.rst
5594 F:      drivers/base/
5595 F:      fs/debugfs/
5596 F:      fs/sysfs/
5597 F:      include/linux/debugfs.h
5598 F:      include/linux/kobj*
5599 F:      lib/kobj*
5600
5601 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5602 M:      Nishanth Menon <[email protected]>
5603 L:      [email protected]
5604 S:      Maintained
5605 F:      drivers/soc/ti/smartreflex.c
5606 F:      include/linux/power/smartreflex.h
5607
5608 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5609 M:      Maxime Ripard <[email protected]>
5610 M:      Chen-Yu Tsai <[email protected]>
5611 R:      Jernej Skrabec <[email protected]>
5612 L:      [email protected]
5613 S:      Supported
5614 T:      git git://anongit.freedesktop.org/drm/drm-misc
5615 F:      drivers/gpu/drm/sun4i/sun8i*
5616
5617 DRM DRIVER FOR ARM PL111 CLCD
5618 M:      Eric Anholt <[email protected]>
5619 S:      Supported
5620 T:      git git://anongit.freedesktop.org/drm/drm-misc
5621 F:      drivers/gpu/drm/pl111/
5622
5623 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5624 M:      Linus Walleij <[email protected]>
5625 S:      Maintained
5626 T:      git git://anongit.freedesktop.org/drm/drm-misc
5627 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5628 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5629
5630 DRM DRIVER FOR ASPEED BMC GFX
5631 M:      Joel Stanley <[email protected]>
5632 L:      [email protected] (moderated for non-subscribers)
5633 S:      Supported
5634 T:      git git://anongit.freedesktop.org/drm/drm-misc
5635 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5636 F:      drivers/gpu/drm/aspeed/
5637
5638 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5639 M:      Dave Airlie <[email protected]>
5640 R:      Thomas Zimmermann <[email protected]>
5641 L:      [email protected]
5642 S:      Supported
5643 T:      git git://anongit.freedesktop.org/drm/drm-misc
5644 F:      drivers/gpu/drm/ast/
5645
5646 DRM DRIVER FOR BOCHS VIRTUAL GPU
5647 M:      Gerd Hoffmann <[email protected]>
5648 L:      [email protected]
5649 S:      Maintained
5650 T:      git git://anongit.freedesktop.org/drm/drm-misc
5651 F:      drivers/gpu/drm/bochs/
5652
5653 DRM DRIVER FOR BOE HIMAX8279D PANELS
5654 M:      Jerry Han <[email protected]>
5655 S:      Maintained
5656 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5657 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5658
5659 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5660 M:      Jagan Teki <[email protected]>
5661 S:      Maintained
5662 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5663 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5664
5665 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5666 M:      Linus Walleij <[email protected]>
5667 S:      Maintained
5668 T:      git git://anongit.freedesktop.org/drm/drm-misc
5669 F:      drivers/gpu/drm/tve200/
5670
5671 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5672 M:      Icenowy Zheng <[email protected]>
5673 S:      Maintained
5674 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5675 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5676
5677 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5678 M:      Jagan Teki <[email protected]>
5679 S:      Maintained
5680 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5681 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5682
5683 DRM DRIVER FOR GENERIC USB DISPLAY
5684 M:      Noralf Trønnes <[email protected]>
5685 S:      Maintained
5686 W:      https://github.com/notro/gud/wiki
5687 T:      git git://anongit.freedesktop.org/drm/drm-misc
5688 F:      drivers/gpu/drm/gud/
5689 F:      include/drm/gud.h
5690
5691 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5692 M:      Hans de Goede <[email protected]>
5693 S:      Maintained
5694 T:      git git://anongit.freedesktop.org/drm/drm-misc
5695 F:      drivers/gpu/drm/tiny/gm12u320.c
5696
5697 DRM DRIVER FOR HX8357D PANELS
5698 M:      Eric Anholt <[email protected]>
5699 S:      Maintained
5700 T:      git git://anongit.freedesktop.org/drm/drm-misc
5701 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5702 F:      drivers/gpu/drm/tiny/hx8357d.c
5703
5704 DRM DRIVER FOR ILITEK ILI9225 PANELS
5705 M:      David Lechner <[email protected]>
5706 S:      Maintained
5707 T:      git git://anongit.freedesktop.org/drm/drm-misc
5708 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5709 F:      drivers/gpu/drm/tiny/ili9225.c
5710
5711 DRM DRIVER FOR ILITEK ILI9486 PANELS
5712 M:      Kamlesh Gurudasani <[email protected]>
5713 S:      Maintained
5714 T:      git git://anongit.freedesktop.org/drm/drm-misc
5715 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5716 F:      drivers/gpu/drm/tiny/ili9486.c
5717
5718 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5719 S:      Orphan / Obsolete
5720 F:      drivers/gpu/drm/i810/
5721 F:      include/uapi/drm/i810_drm.h
5722
5723 DRM DRIVER FOR LVDS PANELS
5724 M:      Laurent Pinchart <[email protected]>
5725 L:      [email protected]
5726 T:      git git://anongit.freedesktop.org/drm/drm-misc
5727 S:      Maintained
5728 F:      drivers/gpu/drm/panel/panel-lvds.c
5729 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5730
5731 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5732 M:      Guido Günther <[email protected]>
5733 R:      Purism Kernel Team <[email protected]>
5734 S:      Maintained
5735 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5736 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5737
5738 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5739 S:      Orphan / Obsolete
5740 F:      drivers/gpu/drm/mga/
5741 F:      include/uapi/drm/mga_drm.h
5742
5743 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5744 M:      Dave Airlie <[email protected]>
5745 R:      Thomas Zimmermann <[email protected]>
5746 L:      [email protected]
5747 S:      Supported
5748 T:      git git://anongit.freedesktop.org/drm/drm-misc
5749 F:      drivers/gpu/drm/mgag200/
5750
5751 DRM DRIVER FOR MI0283QT
5752 M:      Noralf Trønnes <[email protected]>
5753 S:      Maintained
5754 T:      git git://anongit.freedesktop.org/drm/drm-misc
5755 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5756 F:      drivers/gpu/drm/tiny/mi0283qt.c
5757
5758 DRM DRIVER FOR MSM ADRENO GPU
5759 M:      Rob Clark <[email protected]>
5760 M:      Sean Paul <[email protected]>
5761 L:      [email protected]
5762 L:      [email protected]
5763 L:      [email protected]
5764 S:      Maintained
5765 T:      git https://gitlab.freedesktop.org/drm/msm.git
5766 F:      Documentation/devicetree/bindings/display/msm/
5767 F:      drivers/gpu/drm/msm/
5768 F:      include/uapi/drm/msm_drm.h
5769
5770 DRM DRIVER FOR NOVATEK NT35510 PANELS
5771 M:      Linus Walleij <[email protected]>
5772 S:      Maintained
5773 T:      git git://anongit.freedesktop.org/drm/drm-misc
5774 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5775 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5776
5777 DRM DRIVER FOR NOVATEK NT36672A PANELS
5778 M:      Sumit Semwal <[email protected]>
5779 S:      Maintained
5780 T:      git git://anongit.freedesktop.org/drm/drm-misc
5781 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5782 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5783
5784 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5785 M:      Ben Skeggs <[email protected]>
5786 L:      [email protected]
5787 L:      [email protected]
5788 S:      Supported
5789 T:      git git://github.com/skeggsb/linux
5790 F:      drivers/gpu/drm/nouveau/
5791 F:      include/uapi/drm/nouveau_drm.h
5792
5793 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5794 M:      Stefan Mavrodiev <[email protected]>
5795 S:      Maintained
5796 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5797 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5798
5799 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5800 M:      Noralf Trønnes <[email protected]>
5801 S:      Maintained
5802 T:      git git://anongit.freedesktop.org/drm/drm-misc
5803 F:      Documentation/devicetree/bindings/display/repaper.txt
5804 F:      drivers/gpu/drm/tiny/repaper.c
5805
5806 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5807 M:      Dave Airlie <[email protected]>
5808 M:      Gerd Hoffmann <[email protected]>
5809 L:      [email protected]
5810 S:      Obsolete
5811 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5812 T:      git git://anongit.freedesktop.org/drm/drm-misc
5813 F:      drivers/gpu/drm/tiny/cirrus.c
5814
5815 DRM DRIVER FOR QXL VIRTUAL GPU
5816 M:      Dave Airlie <[email protected]>
5817 M:      Gerd Hoffmann <[email protected]>
5818 L:      [email protected]
5819 L:      [email protected]
5820 S:      Maintained
5821 T:      git git://anongit.freedesktop.org/drm/drm-misc
5822 F:      drivers/gpu/drm/qxl/
5823 F:      include/uapi/drm/qxl_drm.h
5824
5825 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5826 S:      Orphan / Obsolete
5827 F:      drivers/gpu/drm/r128/
5828 F:      include/uapi/drm/r128_drm.h
5829
5830 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5831 M:      Robert Chiras <[email protected]>
5832 S:      Maintained
5833 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5834 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5835
5836 DRM DRIVER FOR SITRONIX ST7703 PANELS
5837 M:      Guido Günther <[email protected]>
5838 R:      Purism Kernel Team <[email protected]>
5839 R:      Ondrej Jirman <[email protected]>
5840 S:      Maintained
5841 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5842 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5843
5844 DRM DRIVER FOR SAVAGE VIDEO CARDS
5845 S:      Orphan / Obsolete
5846 F:      drivers/gpu/drm/savage/
5847 F:      include/uapi/drm/savage_drm.h
5848
5849 DRM DRIVER FOR SIS VIDEO CARDS
5850 S:      Orphan / Obsolete
5851 F:      drivers/gpu/drm/sis/
5852 F:      include/uapi/drm/sis_drm.h
5853
5854 DRM DRIVER FOR SITRONIX ST7586 PANELS
5855 M:      David Lechner <[email protected]>
5856 S:      Maintained
5857 T:      git git://anongit.freedesktop.org/drm/drm-misc
5858 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5859 F:      drivers/gpu/drm/tiny/st7586.c
5860
5861 DRM DRIVER FOR SITRONIX ST7701 PANELS
5862 M:      Jagan Teki <[email protected]>
5863 S:      Maintained
5864 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5865 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5866
5867 DRM DRIVER FOR SITRONIX ST7735R PANELS
5868 M:      David Lechner <[email protected]>
5869 S:      Maintained
5870 T:      git git://anongit.freedesktop.org/drm/drm-misc
5871 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5872 F:      drivers/gpu/drm/tiny/st7735r.c
5873
5874 DRM DRIVER FOR SONY ACX424AKP PANELS
5875 M:      Linus Walleij <[email protected]>
5876 S:      Maintained
5877 T:      git git://anongit.freedesktop.org/drm/drm-misc
5878 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5879
5880 DRM DRIVER FOR ST-ERICSSON MCDE
5881 M:      Linus Walleij <[email protected]>
5882 S:      Maintained
5883 T:      git git://anongit.freedesktop.org/drm/drm-misc
5884 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
5885 F:      drivers/gpu/drm/mcde/
5886
5887 DRM DRIVER FOR TDFX VIDEO CARDS
5888 S:      Orphan / Obsolete
5889 F:      drivers/gpu/drm/tdfx/
5890
5891 DRM DRIVER FOR TPO TPG110 PANELS
5892 M:      Linus Walleij <[email protected]>
5893 S:      Maintained
5894 T:      git git://anongit.freedesktop.org/drm/drm-misc
5895 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5896 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5897
5898 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5899 M:      Dave Airlie <[email protected]>
5900 R:      Sean Paul <[email protected]>
5901 R:      Thomas Zimmermann <[email protected]>
5902 L:      [email protected]
5903 S:      Supported
5904 T:      git git://anongit.freedesktop.org/drm/drm-misc
5905 F:      drivers/gpu/drm/udl/
5906
5907 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5908 M:      Rodrigo Siqueira <[email protected]>
5909 M:      Melissa Wen <[email protected]>
5910 R:      Haneen Mohammed <[email protected]>
5911 R:      Daniel Vetter <[email protected]>
5912 L:      [email protected]
5913 S:      Maintained
5914 T:      git git://anongit.freedesktop.org/drm/drm-misc
5915 F:      Documentation/gpu/vkms.rst
5916 F:      drivers/gpu/drm/vkms/
5917
5918 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5919 M:      Hans de Goede <[email protected]>
5920 L:      [email protected]
5921 S:      Maintained
5922 T:      git git://anongit.freedesktop.org/drm/drm-misc
5923 F:      drivers/gpu/drm/vboxvideo/
5924
5925 DRM DRIVER FOR VMWARE VIRTUAL GPU
5926 M:      "VMware Graphics" <[email protected]>
5927 M:      Roland Scheidegger <[email protected]>
5928 M:      Zack Rusin <[email protected]>
5929 L:      [email protected]
5930 S:      Supported
5931 T:      git git://people.freedesktop.org/~sroland/linux
5932 F:      drivers/gpu/drm/vmwgfx/
5933 F:      include/uapi/drm/vmwgfx_drm.h
5934
5935 DRM DRIVERS
5936 M:      David Airlie <[email protected]>
5937 M:      Daniel Vetter <[email protected]>
5938 L:      [email protected]
5939 S:      Maintained
5940 B:      https://gitlab.freedesktop.org/drm
5941 C:      irc://chat.freenode.net/dri-devel
5942 T:      git git://anongit.freedesktop.org/drm/drm
5943 F:      Documentation/devicetree/bindings/display/
5944 F:      Documentation/devicetree/bindings/gpu/
5945 F:      Documentation/gpu/
5946 F:      drivers/gpu/drm/
5947 F:      drivers/gpu/vga/
5948 F:      include/drm/
5949 F:      include/linux/vga*
5950 F:      include/uapi/drm/
5951
5952 DRM DRIVERS AND MISC GPU PATCHES
5953 M:      Maarten Lankhorst <[email protected]>
5954 M:      Maxime Ripard <[email protected]>
5955 M:      Thomas Zimmermann <[email protected]>
5956 S:      Maintained
5957 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5958 T:      git git://anongit.freedesktop.org/drm/drm-misc
5959 F:      Documentation/gpu/
5960 F:      drivers/gpu/drm/*
5961 F:      drivers/gpu/vga/
5962 F:      include/drm/drm*
5963 F:      include/linux/vga*
5964 F:      include/uapi/drm/drm*
5965
5966 DRM DRIVERS FOR ALLWINNER A10
5967 M:      Maxime Ripard <[email protected]>
5968 M:      Chen-Yu Tsai <[email protected]>
5969 L:      [email protected]
5970 S:      Supported
5971 T:      git git://anongit.freedesktop.org/drm/drm-misc
5972 F:      Documentation/devicetree/bindings/display/allwinner*
5973 F:      drivers/gpu/drm/sun4i/
5974
5975 DRM DRIVERS FOR AMLOGIC SOCS
5976 M:      Neil Armstrong <[email protected]>
5977 L:      [email protected]
5978 L:      [email protected]
5979 S:      Supported
5980 W:      http://linux-meson.com/
5981 T:      git git://anongit.freedesktop.org/drm/drm-misc
5982 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5983 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5984 F:      Documentation/gpu/meson.rst
5985 F:      drivers/gpu/drm/meson/
5986
5987 DRM DRIVERS FOR ATMEL HLCDC
5988 M:      Sam Ravnborg <[email protected]>
5989 M:      Boris Brezillon <[email protected]>
5990 L:      [email protected]
5991 S:      Supported
5992 T:      git git://anongit.freedesktop.org/drm/drm-misc
5993 F:      Documentation/devicetree/bindings/display/atmel/
5994 F:      drivers/gpu/drm/atmel-hlcdc/
5995
5996 DRM DRIVERS FOR BRIDGE CHIPS
5997 M:      Andrzej Hajda <[email protected]>
5998 M:      Neil Armstrong <[email protected]>
5999 M:      Robert Foss <[email protected]>
6000 R:      Laurent Pinchart <[email protected]>
6001 R:      Jonas Karlman <[email protected]>
6002 R:      Jernej Skrabec <[email protected]>
6003 S:      Maintained
6004 T:      git git://anongit.freedesktop.org/drm/drm-misc
6005 F:      drivers/gpu/drm/bridge/
6006
6007 DRM DRIVERS FOR EXYNOS
6008 M:      Inki Dae <[email protected]>
6009 M:      Joonyoung Shim <[email protected]>
6010 M:      Seung-Woo Kim <[email protected]>
6011 M:      Kyungmin Park <[email protected]>
6012 L:      [email protected]
6013 S:      Supported
6014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6015 F:      Documentation/devicetree/bindings/display/exynos/
6016 F:      drivers/gpu/drm/exynos/
6017 F:      include/uapi/drm/exynos_drm.h
6018
6019 DRM DRIVERS FOR FREESCALE DCU
6020 M:      Stefan Agner <[email protected]>
6021 M:      Alison Wang <[email protected]>
6022 L:      [email protected]
6023 S:      Supported
6024 T:      git git://anongit.freedesktop.org/drm/drm-misc
6025 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6026 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6027 F:      drivers/gpu/drm/fsl-dcu/
6028
6029 DRM DRIVERS FOR FREESCALE IMX
6030 M:      Philipp Zabel <[email protected]>
6031 L:      [email protected]
6032 S:      Maintained
6033 F:      Documentation/devicetree/bindings/display/imx/
6034 F:      drivers/gpu/drm/imx/
6035 F:      drivers/gpu/ipu-v3/
6036
6037 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6038 M:      Patrik Jakobsson <[email protected]>
6039 L:      [email protected]
6040 S:      Maintained
6041 T:      git git://github.com/patjak/drm-gma500
6042 F:      drivers/gpu/drm/gma500/
6043
6044 DRM DRIVERS FOR HISILICON
6045 M:      Xinliang Liu <[email protected]>
6046 M:      Tian Tao  <[email protected]>
6047 R:      John Stultz <[email protected]>
6048 R:      Xinwei Kong <[email protected]>
6049 R:      Chen Feng <[email protected]>
6050 L:      [email protected]
6051 S:      Maintained
6052 T:      git git://anongit.freedesktop.org/drm/drm-misc
6053 F:      Documentation/devicetree/bindings/display/hisilicon/
6054 F:      drivers/gpu/drm/hisilicon/
6055
6056 DRM DRIVERS FOR LIMA
6057 M:      Qiang Yu <[email protected]>
6058 L:      [email protected]
6059 L:      [email protected] (moderated for non-subscribers)
6060 S:      Maintained
6061 T:      git git://anongit.freedesktop.org/drm/drm-misc
6062 F:      drivers/gpu/drm/lima/
6063 F:      include/uapi/drm/lima_drm.h
6064
6065 DRM DRIVERS FOR MEDIATEK
6066 M:      Chun-Kuang Hu <[email protected]>
6067 M:      Philipp Zabel <[email protected]>
6068 L:      [email protected]
6069 L:      [email protected] (moderated for non-subscribers)
6070 S:      Supported
6071 F:      Documentation/devicetree/bindings/display/mediatek/
6072 F:      drivers/gpu/drm/mediatek/
6073 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6074 F:      drivers/phy/mediatek/phy-mtk-mipi*
6075
6076 DRM DRIVERS FOR NVIDIA TEGRA
6077 M:      Thierry Reding <[email protected]>
6078 L:      [email protected]
6079 L:      [email protected]
6080 S:      Supported
6081 T:      git git://anongit.freedesktop.org/tegra/linux.git
6082 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6083 F:      drivers/gpu/drm/tegra/
6084 F:      drivers/gpu/host1x/
6085 F:      include/linux/host1x.h
6086 F:      include/uapi/drm/tegra_drm.h
6087
6088 DRM DRIVERS FOR RENESAS
6089 M:      Laurent Pinchart <[email protected]>
6090 M:      Kieran Bingham <[email protected]>
6091 L:      [email protected]
6092 L:      [email protected]
6093 S:      Supported
6094 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6095 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6096 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6097 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6098 F:      drivers/gpu/drm/rcar-du/
6099 F:      drivers/gpu/drm/shmobile/
6100 F:      include/linux/platform_data/shmob_drm.h
6101
6102 DRM DRIVERS FOR ROCKCHIP
6103 M:      Sandy Huang <[email protected]>
6104 M:      Heiko Stübner <[email protected]>
6105 L:      [email protected]
6106 S:      Maintained
6107 T:      git git://anongit.freedesktop.org/drm/drm-misc
6108 F:      Documentation/devicetree/bindings/display/rockchip/
6109 F:      drivers/gpu/drm/rockchip/
6110
6111 DRM DRIVERS FOR STI
6112 M:      Benjamin Gaignard <[email protected]>
6113 L:      [email protected]
6114 S:      Maintained
6115 T:      git git://anongit.freedesktop.org/drm/drm-misc
6116 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6117 F:      drivers/gpu/drm/sti
6118
6119 DRM DRIVERS FOR STM
6120 M:      Yannick Fertre <[email protected]>
6121 M:      Philippe Cornu <[email protected]>
6122 M:      Benjamin Gaignard <[email protected]>
6123 L:      [email protected]
6124 S:      Maintained
6125 T:      git git://anongit.freedesktop.org/drm/drm-misc
6126 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6127 F:      drivers/gpu/drm/stm
6128
6129 DRM DRIVERS FOR TI KEYSTONE
6130 M:      Jyri Sarha <[email protected]>
6131 M:      Tomi Valkeinen <[email protected]>
6132 L:      [email protected]
6133 S:      Maintained
6134 T:      git git://anongit.freedesktop.org/drm/drm-misc
6135 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6136 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6137 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6138 F:      drivers/gpu/drm/tidss/
6139
6140 DRM DRIVERS FOR TI LCDC
6141 M:      Jyri Sarha <[email protected]>
6142 R:      Tomi Valkeinen <[email protected]>
6143 L:      [email protected]
6144 S:      Maintained
6145 F:      Documentation/devicetree/bindings/display/tilcdc/
6146 F:      drivers/gpu/drm/tilcdc/
6147
6148 DRM DRIVERS FOR TI OMAP
6149 M:      Tomi Valkeinen <[email protected]>
6150 L:      [email protected]
6151 S:      Maintained
6152 F:      Documentation/devicetree/bindings/display/ti/
6153 F:      drivers/gpu/drm/omapdrm/
6154
6155 DRM DRIVERS FOR V3D
6156 M:      Eric Anholt <[email protected]>
6157 S:      Supported
6158 T:      git git://anongit.freedesktop.org/drm/drm-misc
6159 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6160 F:      drivers/gpu/drm/v3d/
6161 F:      include/uapi/drm/v3d_drm.h
6162
6163 DRM DRIVERS FOR VC4
6164 M:      Eric Anholt <[email protected]>
6165 M:      Maxime Ripard <[email protected]>
6166 S:      Supported
6167 T:      git git://github.com/anholt/linux
6168 T:      git git://anongit.freedesktop.org/drm/drm-misc
6169 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6170 F:      drivers/gpu/drm/vc4/
6171 F:      include/uapi/drm/vc4_drm.h
6172
6173 DRM DRIVERS FOR VIVANTE GPU IP
6174 M:      Lucas Stach <[email protected]>
6175 R:      Russell King <[email protected]>
6176 R:      Christian Gmeiner <[email protected]>
6177 L:      [email protected] (moderated for non-subscribers)
6178 L:      [email protected]
6179 S:      Maintained
6180 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6181 F:      drivers/gpu/drm/etnaviv/
6182 F:      include/uapi/drm/etnaviv_drm.h
6183
6184 DRM DRIVERS FOR XEN
6185 M:      Oleksandr Andrushchenko <[email protected]>
6186 L:      [email protected]
6187 L:      [email protected] (moderated for non-subscribers)
6188 S:      Supported
6189 T:      git git://anongit.freedesktop.org/drm/drm-misc
6190 F:      Documentation/gpu/xen-front.rst
6191 F:      drivers/gpu/drm/xen/
6192
6193 DRM DRIVERS FOR XILINX
6194 M:      Hyun Kwon <[email protected]>
6195 M:      Laurent Pinchart <[email protected]>
6196 L:      [email protected]
6197 S:      Maintained
6198 T:      git git://anongit.freedesktop.org/drm/drm-misc
6199 F:      Documentation/devicetree/bindings/display/xlnx/
6200 F:      drivers/gpu/drm/xlnx/
6201
6202 DRM PANEL DRIVERS
6203 M:      Thierry Reding <[email protected]>
6204 R:      Sam Ravnborg <[email protected]>
6205 L:      [email protected]
6206 S:      Maintained
6207 T:      git git://anongit.freedesktop.org/drm/drm-misc
6208 F:      Documentation/devicetree/bindings/display/panel/
6209 F:      drivers/gpu/drm/drm_panel.c
6210 F:      drivers/gpu/drm/panel/
6211 F:      include/drm/drm_panel.h
6212
6213 DRM TTM SUBSYSTEM
6214 M:      Christian Koenig <[email protected]>
6215 M:      Huang Rui <[email protected]>
6216 L:      [email protected]
6217 S:      Maintained
6218 T:      git git://people.freedesktop.org/~agd5f/linux
6219 F:      drivers/gpu/drm/ttm/
6220 F:      include/drm/ttm/
6221
6222 DSBR100 USB FM RADIO DRIVER
6223 M:      Alexey Klimov <[email protected]>
6224 L:      [email protected]
6225 S:      Maintained
6226 T:      git git://linuxtv.org/media_tree.git
6227 F:      drivers/media/radio/dsbr100.c
6228
6229 DT3155 MEDIA DRIVER
6230 M:      Hans Verkuil <[email protected]>
6231 L:      [email protected]
6232 S:      Odd Fixes
6233 W:      https://linuxtv.org
6234 T:      git git://linuxtv.org/media_tree.git
6235 F:      drivers/media/pci/dt3155/
6236
6237 DVB_USB_AF9015 MEDIA DRIVER
6238 M:      Antti Palosaari <[email protected]>
6239 L:      [email protected]
6240 S:      Maintained
6241 W:      https://linuxtv.org
6242 W:      http://palosaari.fi/linux/
6243 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6244 T:      git git://linuxtv.org/anttip/media_tree.git
6245 F:      drivers/media/usb/dvb-usb-v2/af9015*
6246
6247 DVB_USB_AF9035 MEDIA DRIVER
6248 M:      Antti Palosaari <[email protected]>
6249 L:      [email protected]
6250 S:      Maintained
6251 W:      https://linuxtv.org
6252 W:      http://palosaari.fi/linux/
6253 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6254 T:      git git://linuxtv.org/anttip/media_tree.git
6255 F:      drivers/media/usb/dvb-usb-v2/af9035*
6256
6257 DVB_USB_ANYSEE MEDIA DRIVER
6258 M:      Antti Palosaari <[email protected]>
6259 L:      [email protected]
6260 S:      Maintained
6261 W:      https://linuxtv.org
6262 W:      http://palosaari.fi/linux/
6263 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6264 T:      git git://linuxtv.org/anttip/media_tree.git
6265 F:      drivers/media/usb/dvb-usb-v2/anysee*
6266
6267 DVB_USB_AU6610 MEDIA DRIVER
6268 M:      Antti Palosaari <[email protected]>
6269 L:      [email protected]
6270 S:      Maintained
6271 W:      https://linuxtv.org
6272 W:      http://palosaari.fi/linux/
6273 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6274 T:      git git://linuxtv.org/anttip/media_tree.git
6275 F:      drivers/media/usb/dvb-usb-v2/au6610*
6276
6277 DVB_USB_CE6230 MEDIA DRIVER
6278 M:      Antti Palosaari <[email protected]>
6279 L:      [email protected]
6280 S:      Maintained
6281 W:      https://linuxtv.org
6282 W:      http://palosaari.fi/linux/
6283 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6284 T:      git git://linuxtv.org/anttip/media_tree.git
6285 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6286
6287 DVB_USB_CXUSB MEDIA DRIVER
6288 M:      Michael Krufky <[email protected]>
6289 L:      [email protected]
6290 S:      Maintained
6291 W:      https://linuxtv.org
6292 W:      http://github.com/mkrufky
6293 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6294 T:      git git://linuxtv.org/media_tree.git
6295 F:      drivers/media/usb/dvb-usb/cxusb*
6296
6297 DVB_USB_EC168 MEDIA DRIVER
6298 M:      Antti Palosaari <[email protected]>
6299 L:      [email protected]
6300 S:      Maintained
6301 W:      https://linuxtv.org
6302 W:      http://palosaari.fi/linux/
6303 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6304 T:      git git://linuxtv.org/anttip/media_tree.git
6305 F:      drivers/media/usb/dvb-usb-v2/ec168*
6306
6307 DVB_USB_GL861 MEDIA DRIVER
6308 M:      Antti Palosaari <[email protected]>
6309 L:      [email protected]
6310 S:      Maintained
6311 W:      https://linuxtv.org
6312 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6313 T:      git git://linuxtv.org/anttip/media_tree.git
6314 F:      drivers/media/usb/dvb-usb-v2/gl861*
6315
6316 DVB_USB_MXL111SF MEDIA DRIVER
6317 M:      Michael Krufky <[email protected]>
6318 L:      [email protected]
6319 S:      Maintained
6320 W:      https://linuxtv.org
6321 W:      http://github.com/mkrufky
6322 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6323 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6324 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6325
6326 DVB_USB_RTL28XXU MEDIA DRIVER
6327 M:      Antti Palosaari <[email protected]>
6328 L:      [email protected]
6329 S:      Maintained
6330 W:      https://linuxtv.org
6331 W:      http://palosaari.fi/linux/
6332 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6333 T:      git git://linuxtv.org/anttip/media_tree.git
6334 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6335
6336 DVB_USB_V2 MEDIA DRIVER
6337 M:      Antti Palosaari <[email protected]>
6338 L:      [email protected]
6339 S:      Maintained
6340 W:      https://linuxtv.org
6341 W:      http://palosaari.fi/linux/
6342 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6343 T:      git git://linuxtv.org/anttip/media_tree.git
6344 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6345 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6346
6347 DYNAMIC DEBUG
6348 M:      Jason Baron <[email protected]>
6349 S:      Maintained
6350 F:      include/linux/dynamic_debug.h
6351 F:      lib/dynamic_debug.c
6352
6353 DYNAMIC INTERRUPT MODERATION
6354 M:      Tal Gilboa <[email protected]>
6355 S:      Maintained
6356 F:      Documentation/networking/net_dim.rst
6357 F:      include/linux/dim.h
6358 F:      lib/dim/
6359
6360 DZ DECSTATION DZ11 SERIAL DRIVER
6361 M:      "Maciej W. Rozycki" <[email protected]>
6362 S:      Maintained
6363 F:      drivers/tty/serial/dz.*
6364
6365 E3X0 POWER BUTTON DRIVER
6366 M:      Moritz Fischer <[email protected]>
6367 L:      [email protected]
6368 S:      Supported
6369 W:      http://www.ettus.com
6370 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6371 F:      drivers/input/misc/e3x0-button.c
6372
6373 E4000 MEDIA DRIVER
6374 M:      Antti Palosaari <[email protected]>
6375 L:      [email protected]
6376 S:      Maintained
6377 W:      https://linuxtv.org
6378 W:      http://palosaari.fi/linux/
6379 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6380 T:      git git://linuxtv.org/anttip/media_tree.git
6381 F:      drivers/media/tuners/e4000*
6382
6383 EARTH_PT1 MEDIA DRIVER
6384 M:      Akihiro Tsukada <[email protected]>
6385 L:      [email protected]
6386 S:      Odd Fixes
6387 F:      drivers/media/pci/pt1/
6388
6389 EARTH_PT3 MEDIA DRIVER
6390 M:      Akihiro Tsukada <[email protected]>
6391 L:      [email protected]
6392 S:      Odd Fixes
6393 F:      drivers/media/pci/pt3/
6394
6395 EC100 MEDIA DRIVER
6396 M:      Antti Palosaari <[email protected]>
6397 L:      [email protected]
6398 S:      Maintained
6399 W:      https://linuxtv.org
6400 W:      http://palosaari.fi/linux/
6401 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6402 T:      git git://linuxtv.org/anttip/media_tree.git
6403 F:      drivers/media/dvb-frontends/ec100*
6404
6405 ECRYPT FILE SYSTEM
6406 M:      Tyler Hicks <[email protected]>
6407 L:      [email protected]
6408 S:      Odd Fixes
6409 W:      http://ecryptfs.org
6410 W:      https://launchpad.net/ecryptfs
6411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6412 F:      Documentation/filesystems/ecryptfs.rst
6413 F:      fs/ecryptfs/
6414
6415 EDAC-AMD64
6416 M:      Borislav Petkov <[email protected]>
6417 L:      [email protected]
6418 S:      Maintained
6419 F:      drivers/edac/amd64_edac*
6420
6421 EDAC-ARMADA
6422 M:      Jan Luebbe <[email protected]>
6423 L:      [email protected]
6424 S:      Maintained
6425 F:      drivers/edac/armada_xp_*
6426
6427 EDAC-AST2500
6428 M:      Stefan Schaeckeler <[email protected]>
6429 S:      Supported
6430 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6431 F:      drivers/edac/aspeed_edac.c
6432
6433 EDAC-BLUEFIELD
6434 M:      Shravan Kumar Ramani <[email protected]>
6435 S:      Supported
6436 F:      drivers/edac/bluefield_edac.c
6437
6438 EDAC-CALXEDA
6439 M:      Andre Przywara <[email protected]>
6440 L:      [email protected]
6441 S:      Maintained
6442 F:      drivers/edac/highbank*
6443
6444 EDAC-CAVIUM OCTEON
6445 M:      Ralf Baechle <[email protected]>
6446 L:      [email protected]
6447 L:      [email protected]
6448 S:      Supported
6449 F:      drivers/edac/octeon_edac*
6450
6451 EDAC-CAVIUM THUNDERX
6452 M:      Robert Richter <[email protected]>
6453 L:      [email protected]
6454 S:      Odd Fixes
6455 F:      drivers/edac/thunderx_edac*
6456
6457 EDAC-CORE
6458 M:      Borislav Petkov <[email protected]>
6459 M:      Mauro Carvalho Chehab <[email protected]>
6460 M:      Tony Luck <[email protected]>
6461 R:      James Morse <[email protected]>
6462 R:      Robert Richter <[email protected]>
6463 L:      [email protected]
6464 S:      Supported
6465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6466 F:      Documentation/admin-guide/ras.rst
6467 F:      Documentation/driver-api/edac.rst
6468 F:      drivers/edac/
6469 F:      include/linux/edac.h
6470
6471 EDAC-DMC520
6472 M:      Lei Wang <[email protected]>
6473 L:      [email protected]
6474 S:      Supported
6475 F:      drivers/edac/dmc520_edac.c
6476
6477 EDAC-E752X
6478 M:      Mark Gross <[email protected]>
6479 L:      [email protected]
6480 S:      Maintained
6481 F:      drivers/edac/e752x_edac.c
6482
6483 EDAC-E7XXX
6484 L:      [email protected]
6485 S:      Maintained
6486 F:      drivers/edac/e7xxx_edac.c
6487
6488 EDAC-FSL_DDR
6489 M:      York Sun <[email protected]>
6490 L:      [email protected]
6491 S:      Maintained
6492 F:      drivers/edac/fsl_ddr_edac.*
6493
6494 EDAC-GHES
6495 M:      Mauro Carvalho Chehab <[email protected]>
6496 L:      [email protected]
6497 S:      Maintained
6498 F:      drivers/edac/ghes_edac.c
6499
6500 EDAC-I10NM
6501 M:      Tony Luck <[email protected]>
6502 L:      [email protected]
6503 S:      Maintained
6504 F:      drivers/edac/i10nm_base.c
6505
6506 EDAC-I3000
6507 L:      [email protected]
6508 S:      Orphan
6509 F:      drivers/edac/i3000_edac.c
6510
6511 EDAC-I5000
6512 L:      [email protected]
6513 S:      Maintained
6514 F:      drivers/edac/i5000_edac.c
6515
6516 EDAC-I5400
6517 M:      Mauro Carvalho Chehab <[email protected]>
6518 L:      [email protected]
6519 S:      Maintained
6520 F:      drivers/edac/i5400_edac.c
6521
6522 EDAC-I7300
6523 M:      Mauro Carvalho Chehab <[email protected]>
6524 L:      [email protected]
6525 S:      Maintained
6526 F:      drivers/edac/i7300_edac.c
6527
6528 EDAC-I7CORE
6529 M:      Mauro Carvalho Chehab <[email protected]>
6530 L:      [email protected]
6531 S:      Maintained
6532 F:      drivers/edac/i7core_edac.c
6533
6534 EDAC-I82443BXGX
6535 M:      Tim Small <[email protected]>
6536 L:      [email protected]
6537 S:      Maintained
6538 F:      drivers/edac/i82443bxgx_edac.c
6539
6540 EDAC-I82975X
6541 M:      "Arvind R." <[email protected]>
6542 L:      [email protected]
6543 S:      Maintained
6544 F:      drivers/edac/i82975x_edac.c
6545
6546 EDAC-IE31200
6547 M:      Jason Baron <[email protected]>
6548 L:      [email protected]
6549 S:      Maintained
6550 F:      drivers/edac/ie31200_edac.c
6551
6552 EDAC-IGEN6
6553 M:      Tony Luck <[email protected]>
6554 R:      Qiuxu Zhuo <[email protected]>
6555 L:      [email protected]
6556 S:      Maintained
6557 F:      drivers/edac/igen6_edac.c
6558
6559 EDAC-MPC85XX
6560 M:      Johannes Thumshirn <[email protected]>
6561 L:      [email protected]
6562 S:      Maintained
6563 F:      drivers/edac/mpc85xx_edac.[ch]
6564
6565 EDAC-PASEMI
6566 M:      Egor Martovetsky <[email protected]>
6567 L:      [email protected]
6568 S:      Maintained
6569 F:      drivers/edac/pasemi_edac.c
6570
6571 EDAC-PND2
6572 M:      Tony Luck <[email protected]>
6573 L:      [email protected]
6574 S:      Maintained
6575 F:      drivers/edac/pnd2_edac.[ch]
6576
6577 EDAC-QCOM
6578 M:      Channagoud Kadabi <[email protected]>
6579 M:      Venkata Narendra Kumar Gutta <[email protected]>
6580 L:      [email protected]
6581 L:      [email protected]
6582 S:      Maintained
6583 F:      drivers/edac/qcom_edac.c
6584
6585 EDAC-R82600
6586 M:      Tim Small <[email protected]>
6587 L:      [email protected]
6588 S:      Maintained
6589 F:      drivers/edac/r82600_edac.c
6590
6591 EDAC-SBRIDGE
6592 M:      Tony Luck <[email protected]>
6593 R:      Qiuxu Zhuo <[email protected]>
6594 L:      [email protected]
6595 S:      Maintained
6596 F:      drivers/edac/sb_edac.c
6597
6598 EDAC-SIFIVE
6599 M:      Yash Shah <[email protected]>
6600 L:      [email protected]
6601 S:      Supported
6602 F:      drivers/edac/sifive_edac.c
6603
6604 EDAC-SKYLAKE
6605 M:      Tony Luck <[email protected]>
6606 L:      [email protected]
6607 S:      Maintained
6608 F:      drivers/edac/skx_*.[ch]
6609
6610 EDAC-TI
6611 M:      Tero Kristo <[email protected]>
6612 L:      [email protected]
6613 S:      Odd Fixes
6614 F:      drivers/edac/ti_edac.c
6615
6616 EDIROL UA-101/UA-1000 DRIVER
6617 M:      Clemens Ladisch <[email protected]>
6618 L:      [email protected] (moderated for non-subscribers)
6619 S:      Maintained
6620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6621 F:      sound/usb/misc/ua101.c
6622
6623 EFI TEST DRIVER
6624 M:      Ivan Hu <[email protected]>
6625 M:      Ard Biesheuvel <[email protected]>
6626 L:      [email protected]
6627 S:      Maintained
6628 F:      drivers/firmware/efi/test/
6629
6630 EFI VARIABLE FILESYSTEM
6631 M:      Matthew Garrett <[email protected]>
6632 M:      Jeremy Kerr <[email protected]>
6633 M:      Ard Biesheuvel <[email protected]>
6634 L:      [email protected]
6635 S:      Maintained
6636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6637 F:      fs/efivarfs/
6638
6639 EFIFB FRAMEBUFFER DRIVER
6640 M:      Peter Jones <[email protected]>
6641 L:      [email protected]
6642 S:      Maintained
6643 F:      drivers/video/fbdev/efifb.c
6644
6645 EFS FILESYSTEM
6646 S:      Orphan
6647 W:      http://aeschi.ch.eu.org/efs/
6648 F:      fs/efs/
6649
6650 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6651 M:      Douglas Miller <[email protected]>
6652 L:      [email protected]
6653 S:      Maintained
6654 F:      drivers/net/ethernet/ibm/ehea/
6655
6656 EM28XX VIDEO4LINUX DRIVER
6657 M:      Mauro Carvalho Chehab <[email protected]>
6658 L:      [email protected]
6659 S:      Maintained
6660 W:      https://linuxtv.org
6661 T:      git git://linuxtv.org/media_tree.git
6662 F:      Documentation/admin-guide/media/em28xx*
6663 F:      drivers/media/usb/em28xx/
6664
6665 EMBEDDED LINUX
6666 M:      Paul Gortmaker <[email protected]>
6667 M:      Matt Mackall <[email protected]>
6668 M:      David Woodhouse <[email protected]>
6669 L:      [email protected]
6670 S:      Maintained
6671
6672 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6673 M:      Adrian Hunter <[email protected]>
6674 M:      Ritesh Harjani <[email protected]>
6675 M:      Asutosh Das <[email protected]>
6676 L:      [email protected]
6677 S:      Maintained
6678 F:      drivers/mmc/host/cqhci*
6679
6680 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6681 M:      Subbu Seetharaman <[email protected]>
6682 M:      Ketan Mukadam <[email protected]>
6683 M:      Jitendra Bhivare <[email protected]>
6684 L:      [email protected]
6685 S:      Supported
6686 W:      http://www.broadcom.com
6687 F:      drivers/scsi/be2iscsi/
6688
6689 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6690 M:      Ajit Khaparde <[email protected]>
6691 M:      Sriharsha Basavapatna <[email protected]>
6692 M:      Somnath Kotur <[email protected]>
6693 L:      [email protected]
6694 S:      Supported
6695 W:      http://www.emulex.com
6696 F:      drivers/net/ethernet/emulex/benet/
6697
6698 EMULEX ONECONNECT ROCE DRIVER
6699 M:      Selvin Xavier <[email protected]>
6700 M:      Devesh Sharma <[email protected]>
6701 L:      [email protected]
6702 S:      Odd Fixes
6703 W:      http://www.broadcom.com
6704 F:      drivers/infiniband/hw/ocrdma/
6705 F:      include/uapi/rdma/ocrdma-abi.h
6706
6707 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6708 M:      James Smart <[email protected]>
6709 M:      Dick Kennedy <[email protected]>
6710 L:      [email protected]
6711 S:      Supported
6712 W:      http://www.broadcom.com
6713 F:      drivers/scsi/lpfc/
6714
6715 ENE CB710 FLASH CARD READER DRIVER
6716 M:      Michał Mirosław <[email protected]>
6717 S:      Maintained
6718 F:      drivers/misc/cb710/
6719 F:      drivers/mmc/host/cb710-mmc.*
6720 F:      include/linux/cb710.h
6721
6722 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6723 M:      Maxim Levitsky <[email protected]>
6724 S:      Maintained
6725 F:      drivers/media/rc/ene_ir.*
6726
6727 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6728 M:      Laurentiu Tudor <[email protected]>
6729 L:      [email protected]
6730 S:      Maintained
6731 F:      drivers/tty/ehv_bytechan.c
6732
6733 EPSON S1D13XXX FRAMEBUFFER DRIVER
6734 M:      Kristoffer Ericson <[email protected]>
6735 S:      Maintained
6736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6737 F:      drivers/video/fbdev/s1d13xxxfb.c
6738 F:      include/video/s1d13xxxfb.h
6739
6740 EROFS FILE SYSTEM
6741 M:      Gao Xiang <[email protected]>
6742 M:      Chao Yu <[email protected]>
6743 L:      [email protected]
6744 S:      Maintained
6745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6746 F:      Documentation/filesystems/erofs.rst
6747 F:      fs/erofs/
6748 F:      include/trace/events/erofs.h
6749
6750 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6751 M:      Jeff Layton <[email protected]>
6752 S:      Maintained
6753 F:      include/linux/errseq.h
6754 F:      lib/errseq.c
6755
6756 ET131X NETWORK DRIVER
6757 M:      Mark Einon <[email protected]>
6758 S:      Odd Fixes
6759 F:      drivers/net/ethernet/agere/
6760
6761 ETHERNET BRIDGE
6762 M:      Roopa Prabhu <[email protected]>
6763 M:      Nikolay Aleksandrov <[email protected]>
6764 L:      [email protected] (moderated for non-subscribers)
6765 L:      [email protected]
6766 S:      Maintained
6767 W:      http://www.linuxfoundation.org/en/Net:Bridge
6768 F:      include/linux/netfilter_bridge/
6769 F:      net/bridge/
6770
6771 ETHERNET PHY LIBRARY
6772 M:      Andrew Lunn <[email protected]>
6773 M:      Heiner Kallweit <[email protected]>
6774 R:      Russell King <[email protected]>
6775 L:      [email protected]
6776 S:      Maintained
6777 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6778 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6779 F:      Documentation/devicetree/bindings/net/mdio*
6780 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6781 F:      Documentation/networking/phy.rst
6782 F:      drivers/net/mdio/
6783 F:      drivers/net/mdio/of_mdio.c
6784 F:      drivers/net/pcs/
6785 F:      drivers/net/phy/
6786 F:      drivers/of/of_net.c
6787 F:      include/dt-bindings/net/qca-ar803x.h
6788 F:      include/linux/*mdio*.h
6789 F:      include/linux/mdio/*.h
6790 F:      include/linux/of_net.h
6791 F:      include/linux/phy.h
6792 F:      include/linux/phy_fixed.h
6793 F:      include/linux/platform_data/mdio-bcm-unimac.h
6794 F:      include/linux/platform_data/mdio-gpio.h
6795 F:      include/trace/events/mdio.h
6796 F:      include/uapi/linux/mdio.h
6797 F:      include/uapi/linux/mii.h
6798
6799 EXFAT FILE SYSTEM
6800 M:      Namjae Jeon <[email protected]>
6801 M:      Sungjong Seo <[email protected]>
6802 L:      [email protected]
6803 S:      Maintained
6804 F:      fs/exfat/
6805
6806 EXT2 FILE SYSTEM
6807 M:      Jan Kara <[email protected]>
6808 L:      [email protected]
6809 S:      Maintained
6810 F:      Documentation/filesystems/ext2.rst
6811 F:      fs/ext2/
6812 F:      include/linux/ext2*
6813
6814 EXT4 FILE SYSTEM
6815 M:      "Theodore Ts'o" <[email protected]>
6816 M:      Andreas Dilger <[email protected]>
6817 L:      [email protected]
6818 S:      Maintained
6819 W:      http://ext4.wiki.kernel.org
6820 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6822 F:      Documentation/filesystems/ext4/
6823 F:      fs/ext4/
6824 F:      include/trace/events/ext4.h
6825
6826 Extended Verification Module (EVM)
6827 M:      Mimi Zohar <[email protected]>
6828 L:      [email protected]
6829 S:      Supported
6830 F:      security/integrity/evm/
6831
6832 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6833 M:      Ard Biesheuvel <[email protected]>
6834 L:      [email protected]
6835 S:      Maintained
6836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6837 F:      Documentation/admin-guide/efi-stub.rst
6838 F:      arch/*/include/asm/efi.h
6839 F:      arch/*/kernel/efi.c
6840 F:      arch/arm/boot/compressed/efi-header.S
6841 F:      arch/arm64/kernel/efi-entry.S
6842 F:      arch/x86/platform/efi/
6843 F:      drivers/firmware/efi/
6844 F:      include/linux/efi*.h
6845
6846 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6847 M:      MyungJoo Ham <[email protected]>
6848 M:      Chanwoo Choi <[email protected]>
6849 L:      [email protected]
6850 S:      Maintained
6851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6852 F:      Documentation/devicetree/bindings/extcon/
6853 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6854 F:      drivers/extcon/
6855 F:      include/linux/extcon.h
6856 F:      include/linux/extcon/
6857
6858 EXTRA BOOT CONFIG
6859 M:      Masami Hiramatsu <[email protected]>
6860 S:      Maintained
6861 F:      Documentation/admin-guide/bootconfig.rst
6862 F:      fs/proc/bootconfig.c
6863 F:      include/linux/bootconfig.h
6864 F:      lib/bootconfig.c
6865 F:      tools/bootconfig/*
6866 F:      tools/bootconfig/scripts/*
6867
6868 EXYNOS DP DRIVER
6869 M:      Jingoo Han <[email protected]>
6870 L:      [email protected]
6871 S:      Maintained
6872 F:      drivers/gpu/drm/exynos/exynos_dp*
6873
6874 EXYNOS SYSMMU (IOMMU) driver
6875 M:      Marek Szyprowski <[email protected]>
6876 L:      [email protected]
6877 S:      Maintained
6878 F:      drivers/iommu/exynos-iommu.c
6879
6880 F2FS FILE SYSTEM
6881 M:      Jaegeuk Kim <[email protected]>
6882 M:      Chao Yu <[email protected]>
6883 L:      [email protected]
6884 S:      Maintained
6885 W:      https://f2fs.wiki.kernel.org/
6886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6887 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6888 F:      Documentation/filesystems/f2fs.rst
6889 F:      fs/f2fs/
6890 F:      include/linux/f2fs_fs.h
6891 F:      include/trace/events/f2fs.h
6892 F:      include/uapi/linux/f2fs.h
6893
6894 F71805F HARDWARE MONITORING DRIVER
6895 M:      Jean Delvare <[email protected]>
6896 L:      [email protected]
6897 S:      Maintained
6898 F:      Documentation/hwmon/f71805f.rst
6899 F:      drivers/hwmon/f71805f.c
6900
6901 FADDR2LINE
6902 M:      Josh Poimboeuf <[email protected]>
6903 S:      Maintained
6904 F:      scripts/faddr2line
6905
6906 FAILOVER MODULE
6907 M:      Sridhar Samudrala <[email protected]>
6908 L:      [email protected]
6909 S:      Supported
6910 F:      Documentation/networking/failover.rst
6911 F:      include/net/failover.h
6912 F:      net/core/failover.c
6913
6914 FANOTIFY
6915 M:      Jan Kara <[email protected]>
6916 R:      Amir Goldstein <[email protected]>
6917 L:      [email protected]
6918 S:      Maintained
6919 F:      fs/notify/fanotify/
6920 F:      include/linux/fanotify.h
6921 F:      include/uapi/linux/fanotify.h
6922
6923 FARSYNC SYNCHRONOUS DRIVER
6924 M:      Kevin Curtis <[email protected]>
6925 S:      Supported
6926 W:      http://www.farsite.co.uk/
6927 F:      drivers/net/wan/farsync.*
6928
6929 FAULT INJECTION SUPPORT
6930 M:      Akinobu Mita <[email protected]>
6931 S:      Supported
6932 F:      Documentation/fault-injection/
6933 F:      lib/fault-inject.c
6934
6935 FBTFT Framebuffer drivers
6936 L:      [email protected]
6937 L:      [email protected]
6938 S:      Orphan
6939 F:      drivers/staging/fbtft/
6940
6941 FC0011 TUNER DRIVER
6942 M:      Michael Buesch <[email protected]>
6943 L:      [email protected]
6944 S:      Maintained
6945 F:      drivers/media/tuners/fc0011.c
6946 F:      drivers/media/tuners/fc0011.h
6947
6948 FC2580 MEDIA DRIVER
6949 M:      Antti Palosaari <[email protected]>
6950 L:      [email protected]
6951 S:      Maintained
6952 W:      https://linuxtv.org
6953 W:      http://palosaari.fi/linux/
6954 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6955 T:      git git://linuxtv.org/anttip/media_tree.git
6956 F:      drivers/media/tuners/fc2580*
6957
6958 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6959 M:      Hannes Reinecke <[email protected]>
6960 L:      [email protected]
6961 S:      Supported
6962 W:      www.Open-FCoE.org
6963 F:      drivers/scsi/fcoe/
6964 F:      drivers/scsi/libfc/
6965 F:      include/scsi/fc/
6966 F:      include/scsi/libfc.h
6967 F:      include/scsi/libfcoe.h
6968 F:      include/uapi/scsi/fc/
6969
6970 FILE LOCKING (flock() and fcntl()/lockf())
6971 M:      Jeff Layton <[email protected]>
6972 M:      "J. Bruce Fields" <[email protected]>
6973 L:      [email protected]
6974 S:      Maintained
6975 F:      fs/fcntl.c
6976 F:      fs/locks.c
6977 F:      include/linux/fcntl.h
6978 F:      include/uapi/linux/fcntl.h
6979
6980 FILESYSTEM DIRECT ACCESS (DAX)
6981 M:      Dan Williams <[email protected]>
6982 R:      Matthew Wilcox <[email protected]>
6983 R:      Jan Kara <[email protected]>
6984 L:      [email protected]
6985 L:      [email protected]
6986 S:      Supported
6987 F:      fs/dax.c
6988 F:      include/linux/dax.h
6989 F:      include/trace/events/fs_dax.h
6990
6991 FILESYSTEMS (VFS and infrastructure)
6992 M:      Alexander Viro <[email protected]>
6993 L:      [email protected]
6994 S:      Maintained
6995 F:      fs/*
6996 F:      include/linux/fs.h
6997 F:      include/linux/fs_types.h
6998 F:      include/uapi/linux/fs.h
6999 F:      include/uapi/linux/openat2.h
7000 X:      fs/io-wq.c
7001 X:      fs/io-wq.h
7002 X:      fs/io_uring.c
7003
7004 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7005 M:      Riku Voipio <[email protected]>
7006 L:      [email protected]
7007 S:      Maintained
7008 F:      drivers/hwmon/f75375s.c
7009 F:      include/linux/f75375s.h
7010
7011 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7012 M:      Clemens Ladisch <[email protected]>
7013 M:      Takashi Sakamoto <[email protected]>
7014 L:      [email protected] (moderated for non-subscribers)
7015 S:      Maintained
7016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7017 F:      include/uapi/sound/firewire.h
7018 F:      sound/firewire/
7019
7020 FIREWIRE MEDIA DRIVERS (firedtv)
7021 M:      Stefan Richter <[email protected]>
7022 L:      [email protected]
7023 L:      [email protected]
7024 S:      Maintained
7025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7026 F:      drivers/media/firewire/
7027
7028 FIREWIRE SBP-2 TARGET
7029 M:      Chris Boot <[email protected]>
7030 L:      [email protected]
7031 L:      [email protected]
7032 L:      [email protected]
7033 S:      Maintained
7034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7035 F:      drivers/target/sbp/
7036
7037 FIREWIRE SUBSYSTEM
7038 M:      Stefan Richter <[email protected]>
7039 L:      [email protected]
7040 S:      Maintained
7041 W:      http://ieee1394.wiki.kernel.org/
7042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7043 F:      drivers/firewire/
7044 F:      include/linux/firewire.h
7045 F:      include/uapi/linux/firewire*.h
7046 F:      tools/firewire/
7047
7048 FIRMWARE LOADER (request_firmware)
7049 M:      Luis Chamberlain <[email protected]>
7050 L:      [email protected]
7051 S:      Maintained
7052 F:      Documentation/firmware_class/
7053 F:      drivers/base/firmware_loader/
7054 F:      include/linux/firmware.h
7055
7056 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7057 M:      Joshua Morris <[email protected]>
7058 M:      Philip Kelleher <[email protected]>
7059 S:      Maintained
7060 F:      drivers/block/rsxx/
7061
7062 FLEXTIMER FTM-QUADDEC DRIVER
7063 M:      Patrick Havelange <[email protected]>
7064 L:      [email protected]
7065 S:      Maintained
7066 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
7067 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7068 F:      drivers/counter/ftm-quaddec.c
7069
7070 FLOPPY DRIVER
7071 M:      Denis Efremov <[email protected]>
7072 L:      [email protected]
7073 S:      Odd Fixes
7074 F:      drivers/block/floppy.c
7075
7076 FLYSKY FSIA6B RC RECEIVER
7077 M:      Markus Koch <[email protected]>
7078 L:      [email protected]
7079 S:      Maintained
7080 F:      drivers/input/joystick/fsia6b.c
7081
7082 FORCEDETH GIGABIT ETHERNET DRIVER
7083 M:      Rain River <[email protected]>
7084 M:      Zhu Yanjun <[email protected]>
7085 L:      [email protected]
7086 S:      Maintained
7087 F:      drivers/net/ethernet/nvidia/*
7088
7089 FPGA DFL DRIVERS
7090 M:      Wu Hao <[email protected]>
7091 R:      Tom Rix <[email protected]>
7092 L:      [email protected]
7093 S:      Maintained
7094 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7095 F:      Documentation/fpga/dfl.rst
7096 F:      drivers/fpga/dfl*
7097 F:      drivers/uio/uio_dfl.c
7098 F:      include/linux/dfl.h
7099 F:      include/uapi/linux/fpga-dfl.h
7100
7101 FPGA MANAGER FRAMEWORK
7102 M:      Moritz Fischer <[email protected]>
7103 R:      Tom Rix <[email protected]>
7104 L:      [email protected]
7105 S:      Maintained
7106 W:      http://www.rocketboards.org
7107 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7109 F:      Documentation/devicetree/bindings/fpga/
7110 F:      Documentation/driver-api/fpga/
7111 F:      Documentation/fpga/
7112 F:      drivers/fpga/
7113 F:      include/linux/fpga/
7114
7115 FPU EMULATOR
7116 M:      Bill Metzenthen <[email protected]>
7117 S:      Maintained
7118 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7119 F:      arch/x86/math-emu/
7120
7121 FRAMEBUFFER LAYER
7122 L:      [email protected]
7123 L:      [email protected]
7124 S:      Orphan
7125 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7126 T:      git git://anongit.freedesktop.org/drm/drm-misc
7127 F:      Documentation/fb/
7128 F:      drivers/video/
7129 F:      include/linux/fb.h
7130 F:      include/uapi/linux/fb.h
7131 F:      include/uapi/video/
7132 F:      include/video/
7133
7134 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7135 M:      Horia Geantă <[email protected]>
7136 M:      Aymen Sghaier <[email protected]>
7137 L:      [email protected]
7138 S:      Maintained
7139 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7140 F:      drivers/crypto/caam/
7141
7142 FREESCALE COLDFIRE M5441X MMC DRIVER
7143 M:      Angelo Dureghello <[email protected]>
7144 L:      [email protected]
7145 S:      Maintained
7146 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7147 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7148
7149 FREESCALE DIU FRAMEBUFFER DRIVER
7150 M:      Timur Tabi <[email protected]>
7151 L:      [email protected]
7152 S:      Maintained
7153 F:      drivers/video/fbdev/fsl-diu-fb.*
7154
7155 FREESCALE DMA DRIVER
7156 M:      Li Yang <[email protected]>
7157 M:      Zhang Wei <[email protected]>
7158 L:      [email protected]
7159 S:      Maintained
7160 F:      drivers/dma/fsldma.*
7161
7162 FREESCALE DSPI DRIVER
7163 M:      Vladimir Oltean <[email protected]>
7164 L:      [email protected]
7165 S:      Maintained
7166 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7167 F:      drivers/spi/spi-fsl-dspi.c
7168 F:      include/linux/spi/spi-fsl-dspi.h
7169
7170 FREESCALE ENETC ETHERNET DRIVERS
7171 M:      Claudiu Manoil <[email protected]>
7172 L:      [email protected]
7173 S:      Maintained
7174 F:      drivers/net/ethernet/freescale/enetc/
7175
7176 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7177 M:      Claudiu Manoil <[email protected]>
7178 L:      [email protected]
7179 S:      Maintained
7180 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7181 F:      drivers/net/ethernet/freescale/gianfar*
7182
7183 FREESCALE GPMI NAND DRIVER
7184 M:      Han Xu <[email protected]>
7185 L:      [email protected]
7186 S:      Maintained
7187 F:      drivers/mtd/nand/raw/gpmi-nand/*
7188
7189 FREESCALE I2C CPM DRIVER
7190 M:      Jochen Friedrich <[email protected]>
7191 L:      [email protected]
7192 L:      [email protected]
7193 S:      Maintained
7194 F:      drivers/i2c/busses/i2c-cpm.c
7195
7196 FREESCALE IMX / MXC FEC DRIVER
7197 M:      Joakim Zhang <[email protected]>
7198 L:      [email protected]
7199 S:      Maintained
7200 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7201 F:      drivers/net/ethernet/freescale/fec.h
7202 F:      drivers/net/ethernet/freescale/fec_main.c
7203 F:      drivers/net/ethernet/freescale/fec_ptp.c
7204
7205 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7206 M:      Sascha Hauer <[email protected]>
7207 R:      Pengutronix Kernel Team <[email protected]>
7208 L:      [email protected]
7209 L:      [email protected] (moderated for non-subscribers)
7210 S:      Maintained
7211 F:      drivers/video/fbdev/imxfb.c
7212 F:      include/linux/platform_data/video-imxfb.h
7213
7214 FREESCALE IMX DDR PMU DRIVER
7215 M:      Frank Li <[email protected]>
7216 L:      [email protected]
7217 S:      Maintained
7218 F:      Documentation/admin-guide/perf/imx-ddr.rst
7219 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7220 F:      drivers/perf/fsl_imx8_ddr_perf.c
7221
7222 FREESCALE IMX I2C DRIVER
7223 M:      Oleksij Rempel <[email protected]>
7224 R:      Pengutronix Kernel Team <[email protected]>
7225 L:      [email protected]
7226 S:      Maintained
7227 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7228 F:      drivers/i2c/busses/i2c-imx.c
7229
7230 FREESCALE IMX LPI2C DRIVER
7231 M:      Dong Aisheng <[email protected]>
7232 L:      [email protected]
7233 L:      [email protected]
7234 S:      Maintained
7235 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7236 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7237
7238 FREESCALE QORIQ DPAA ETHERNET DRIVER
7239 M:      Madalin Bucur <[email protected]>
7240 L:      [email protected]
7241 S:      Maintained
7242 F:      drivers/net/ethernet/freescale/dpaa
7243
7244 FREESCALE QORIQ DPAA FMAN DRIVER
7245 M:      Madalin Bucur <[email protected]>
7246 L:      [email protected]
7247 S:      Maintained
7248 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7249 F:      drivers/net/ethernet/freescale/fman
7250
7251 FREESCALE QORIQ PTP CLOCK DRIVER
7252 M:      Yangbo Lu <[email protected]>
7253 L:      [email protected]
7254 S:      Maintained
7255 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7256 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7257 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7258 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7259 F:      drivers/ptp/ptp_qoriq.c
7260 F:      drivers/ptp/ptp_qoriq_debugfs.c
7261 F:      include/linux/fsl/ptp_qoriq.h
7262
7263 FREESCALE QUAD SPI DRIVER
7264 M:      Han Xu <[email protected]>
7265 L:      [email protected]
7266 S:      Maintained
7267 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7268 F:      drivers/spi/spi-fsl-qspi.c
7269
7270 FREESCALE QUICC ENGINE LIBRARY
7271 M:      Qiang Zhao <[email protected]>
7272 L:      [email protected]
7273 S:      Maintained
7274 F:      drivers/soc/fsl/qe/
7275 F:      include/soc/fsl/*qe*.h
7276 F:      include/soc/fsl/*ucc*.h
7277
7278 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7279 M:      Li Yang <[email protected]>
7280 L:      [email protected]
7281 L:      [email protected]
7282 S:      Maintained
7283 F:      drivers/net/ethernet/freescale/ucc_geth*
7284
7285 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7286 M:      Zhao Qiang <[email protected]>
7287 L:      [email protected]
7288 L:      [email protected]
7289 S:      Maintained
7290 F:      drivers/net/wan/fsl_ucc_hdlc*
7291
7292 FREESCALE QUICC ENGINE UCC UART DRIVER
7293 M:      Timur Tabi <[email protected]>
7294 L:      [email protected]
7295 S:      Maintained
7296 F:      drivers/tty/serial/ucc_uart.c
7297
7298 FREESCALE SOC DRIVERS
7299 M:      Li Yang <[email protected]>
7300 L:      [email protected]
7301 L:      [email protected]
7302 S:      Maintained
7303 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7304 F:      Documentation/devicetree/bindings/soc/fsl/
7305 F:      drivers/soc/fsl/
7306 F:      include/linux/fsl/
7307
7308 FREESCALE SOC FS_ENET DRIVER
7309 M:      Pantelis Antoniou <[email protected]>
7310 L:      [email protected]
7311 L:      [email protected]
7312 S:      Maintained
7313 F:      drivers/net/ethernet/freescale/fs_enet/
7314 F:      include/linux/fs_enet_pd.h
7315
7316 FREESCALE SOC SOUND DRIVERS
7317 M:      Timur Tabi <[email protected]>
7318 M:      Nicolin Chen <[email protected]>
7319 M:      Xiubo Li <[email protected]>
7320 R:      Fabio Estevam <[email protected]>
7321 R:      Shengjiu Wang <[email protected]>
7322 L:      [email protected] (moderated for non-subscribers)
7323 L:      [email protected]
7324 S:      Maintained
7325 F:      sound/soc/fsl/fsl*
7326 F:      sound/soc/fsl/imx*
7327 F:      sound/soc/fsl/mpc8610_hpcd.c
7328
7329 FREESCALE USB PERIPHERAL DRIVERS
7330 M:      Li Yang <[email protected]>
7331 L:      [email protected]
7332 L:      [email protected]
7333 S:      Maintained
7334 F:      drivers/usb/gadget/udc/fsl*
7335
7336 FREESCALE USB PHY DRIVER
7337 M:      Ran Wang <[email protected]>
7338 L:      [email protected]
7339 L:      [email protected]
7340 S:      Maintained
7341 F:      drivers/usb/phy/phy-fsl-usb*
7342
7343 FREEVXFS FILESYSTEM
7344 M:      Christoph Hellwig <[email protected]>
7345 S:      Maintained
7346 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7347 F:      fs/freevxfs/
7348
7349 FREEZER
7350 M:      "Rafael J. Wysocki" <[email protected]>
7351 M:      Pavel Machek <[email protected]>
7352 L:      [email protected]
7353 S:      Supported
7354 F:      Documentation/power/freezing-of-tasks.rst
7355 F:      include/linux/freezer.h
7356 F:      kernel/freezer.c
7357
7358 FRONTSWAP API
7359 M:      Konrad Rzeszutek Wilk <[email protected]>
7360 L:      [email protected]
7361 S:      Maintained
7362 F:      include/linux/frontswap.h
7363 F:      mm/frontswap.c
7364
7365 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7366 M:      David Howells <[email protected]>
7367 L:      [email protected] (moderated for non-subscribers)
7368 S:      Supported
7369 F:      Documentation/filesystems/caching/
7370 F:      fs/fscache/
7371 F:      include/linux/fscache*.h
7372
7373 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7374 M:      Theodore Y. Ts'o <[email protected]>
7375 M:      Jaegeuk Kim <[email protected]>
7376 M:      Eric Biggers <[email protected]>
7377 L:      [email protected]
7378 S:      Supported
7379 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7380 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7381 F:      Documentation/filesystems/fscrypt.rst
7382 F:      fs/crypto/
7383 F:      include/linux/fscrypt*.h
7384 F:      include/uapi/linux/fscrypt.h
7385
7386 FSI SUBSYSTEM
7387 M:      Jeremy Kerr <[email protected]>
7388 M:      Joel Stanley <[email protected]>
7389 R:      Alistar Popple <[email protected]>
7390 R:      Eddie James <[email protected]>
7391 L:      [email protected]
7392 S:      Supported
7393 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7395 F:      drivers/fsi/
7396 F:      include/linux/fsi*.h
7397 F:      include/trace/events/fsi*.h
7398
7399 FSI-ATTACHED I2C DRIVER
7400 M:      Eddie James <[email protected]>
7401 L:      [email protected]
7402 L:      [email protected] (moderated for non-subscribers)
7403 S:      Maintained
7404 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7405 F:      drivers/i2c/busses/i2c-fsi.c
7406
7407 FSI-ATTACHED SPI DRIVER
7408 M:      Eddie James <[email protected]>
7409 L:      [email protected]
7410 S:      Maintained
7411 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7412 F:      drivers/spi/spi-fsi.c
7413
7414 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7415 M:      Jan Kara <[email protected]>
7416 R:      Amir Goldstein <[email protected]>
7417 L:      [email protected]
7418 S:      Maintained
7419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7420 F:      fs/notify/
7421 F:      include/linux/fsnotify*.h
7422
7423 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7424 M:      Eric Biggers <[email protected]>
7425 M:      Theodore Y. Ts'o <[email protected]>
7426 L:      [email protected]
7427 S:      Supported
7428 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7429 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7430 F:      Documentation/filesystems/fsverity.rst
7431 F:      fs/verity/
7432 F:      include/linux/fsverity.h
7433 F:      include/uapi/linux/fsverity.h
7434
7435 FUJITSU LAPTOP EXTRAS
7436 M:      Jonathan Woithe <[email protected]>
7437 L:      [email protected]
7438 S:      Maintained
7439 F:      drivers/platform/x86/fujitsu-laptop.c
7440
7441 FUJITSU M-5MO LS CAMERA ISP DRIVER
7442 M:      Kyungmin Park <[email protected]>
7443 M:      Heungjun Kim <[email protected]>
7444 L:      [email protected]
7445 S:      Maintained
7446 F:      drivers/media/i2c/m5mols/
7447 F:      include/media/i2c/m5mols.h
7448
7449 FUJITSU TABLET EXTRAS
7450 M:      Robert Gerlach <[email protected]>
7451 L:      [email protected]
7452 S:      Maintained
7453 F:      drivers/platform/x86/fujitsu-tablet.c
7454
7455 FUSE: FILESYSTEM IN USERSPACE
7456 M:      Miklos Szeredi <[email protected]>
7457 L:      [email protected]
7458 S:      Maintained
7459 W:      https://github.com/libfuse/
7460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7461 F:      Documentation/filesystems/fuse.rst
7462 F:      fs/fuse/
7463 F:      include/uapi/linux/fuse.h
7464
7465 FUTEX SUBSYSTEM
7466 M:      Thomas Gleixner <[email protected]>
7467 M:      Ingo Molnar <[email protected]>
7468 R:      Peter Zijlstra <[email protected]>
7469 R:      Darren Hart <[email protected]>
7470 R:      Davidlohr Bueso <[email protected]>
7471 L:      [email protected]
7472 S:      Maintained
7473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7474 F:      Documentation/locking/*futex*
7475 F:      include/asm-generic/futex.h
7476 F:      include/linux/futex.h
7477 F:      include/uapi/linux/futex.h
7478 F:      kernel/futex.c
7479 F:      tools/perf/bench/futex*
7480 F:      tools/testing/selftests/futex/
7481
7482 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7483 M:      Tim Harvey <[email protected]>
7484 M:      Robert Jones <[email protected]>
7485 S:      Maintained
7486 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7487 F:      drivers/mfd/gateworks-gsc.c
7488 F:      include/linux/mfd/gsc.h
7489 F:      Documentation/hwmon/gsc-hwmon.rst
7490 F:      drivers/hwmon/gsc-hwmon.c
7491 F:      include/linux/platform_data/gsc_hwmon.h
7492
7493 GCC PLUGINS
7494 M:      Kees Cook <[email protected]>
7495 L:      [email protected]
7496 S:      Maintained
7497 F:      Documentation/kbuild/gcc-plugins.rst
7498 F:      scripts/Makefile.gcc-plugins
7499 F:      scripts/gcc-plugins/
7500
7501 GCOV BASED KERNEL PROFILING
7502 M:      Peter Oberparleiter <[email protected]>
7503 S:      Maintained
7504 F:      Documentation/dev-tools/gcov.rst
7505 F:      kernel/gcov/
7506
7507 GDB KERNEL DEBUGGING HELPER SCRIPTS
7508 M:      Jan Kiszka <[email protected]>
7509 M:      Kieran Bingham <[email protected]>
7510 S:      Supported
7511 F:      scripts/gdb/
7512
7513 GEMTEK FM RADIO RECEIVER DRIVER
7514 M:      Hans Verkuil <[email protected]>
7515 L:      [email protected]
7516 S:      Maintained
7517 W:      https://linuxtv.org
7518 T:      git git://linuxtv.org/media_tree.git
7519 F:      drivers/media/radio/radio-gemtek*
7520
7521 GENERIC ARCHITECTURE TOPOLOGY
7522 M:      Sudeep Holla <[email protected]>
7523 L:      [email protected]
7524 S:      Maintained
7525 F:      drivers/base/arch_topology.c
7526 F:      include/linux/arch_topology.h
7527
7528 GENERIC ENTRY CODE
7529 M:      Thomas Gleixner <[email protected]>
7530 M:      Peter Zijlstra <[email protected]>
7531 M:      Andy Lutomirski <[email protected]>
7532 L:      [email protected]
7533 S:      Maintained
7534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7535 F:      include/linux/entry-common.h
7536 F:      include/linux/entry-kvm.h
7537 F:      kernel/entry/
7538
7539 GENERIC GPIO I2C DRIVER
7540 M:      Wolfram Sang <[email protected]>
7541 S:      Supported
7542 F:      drivers/i2c/busses/i2c-gpio.c
7543 F:      include/linux/platform_data/i2c-gpio.h
7544
7545 GENERIC GPIO I2C MULTIPLEXER DRIVER
7546 M:      Peter Korsgaard <[email protected]>
7547 L:      [email protected]
7548 S:      Supported
7549 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7550 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7551 F:      include/linux/platform_data/i2c-mux-gpio.h
7552
7553 GENERIC HDLC (WAN) DRIVERS
7554 M:      Krzysztof Halasa <[email protected]>
7555 S:      Maintained
7556 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7557 F:      drivers/net/wan/c101.c
7558 F:      drivers/net/wan/hd6457*
7559 F:      drivers/net/wan/hdlc*
7560 F:      drivers/net/wan/n2.c
7561 F:      drivers/net/wan/pc300too.c
7562 F:      drivers/net/wan/pci200syn.c
7563 F:      drivers/net/wan/wanxl*
7564
7565 GENERIC INCLUDE/ASM HEADER FILES
7566 M:      Arnd Bergmann <[email protected]>
7567 L:      [email protected]
7568 S:      Maintained
7569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7570 F:      include/asm-generic/
7571 F:      include/uapi/asm-generic/
7572
7573 GENERIC PHY FRAMEWORK
7574 M:      Kishon Vijay Abraham I <[email protected]>
7575 M:      Vinod Koul <[email protected]>
7576 L:      [email protected]
7577 S:      Supported
7578 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7580 F:      Documentation/devicetree/bindings/phy/
7581 F:      drivers/phy/
7582 F:      include/linux/phy/
7583
7584 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7585 M:      Wolfram Sang <[email protected]>
7586 S:      Supported
7587 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7588
7589 GENERIC PM DOMAINS
7590 M:      "Rafael J. Wysocki" <[email protected]>
7591 M:      Kevin Hilman <[email protected]>
7592 M:      Ulf Hansson <[email protected]>
7593 L:      [email protected]
7594 S:      Supported
7595 F:      Documentation/devicetree/bindings/power/power?domain*
7596 F:      drivers/base/power/domain*.c
7597 F:      include/linux/pm_domain.h
7598
7599 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7600 M:      Eugen Hristev <[email protected]>
7601 L:      [email protected]
7602 S:      Maintained
7603 F:      drivers/input/touchscreen/resistive-adc-touch.c
7604
7605 GENERIC UIO DRIVER FOR PCI DEVICES
7606 M:      "Michael S. Tsirkin" <[email protected]>
7607 L:      [email protected]
7608 S:      Supported
7609 F:      drivers/uio/uio_pci_generic.c
7610
7611 GENERIC VDSO LIBRARY
7612 M:      Andy Lutomirski <[email protected]>
7613 M:      Thomas Gleixner <[email protected]>
7614 M:      Vincenzo Frascino <[email protected]>
7615 L:      [email protected]
7616 S:      Maintained
7617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7618 F:      include/asm-generic/vdso/vsyscall.h
7619 F:      include/vdso/
7620 F:      kernel/time/vsyscall.c
7621 F:      lib/vdso/
7622
7623 GENWQE (IBM Generic Workqueue Card)
7624 M:      Frank Haverkamp <[email protected]>
7625 S:      Supported
7626 F:      drivers/misc/genwqe/
7627
7628 GET_MAINTAINER SCRIPT
7629 M:      Joe Perches <[email protected]>
7630 S:      Maintained
7631 F:      scripts/get_maintainer.pl
7632
7633 GFS2 FILE SYSTEM
7634 M:      Bob Peterson <[email protected]>
7635 M:      Andreas Gruenbacher <[email protected]>
7636 L:      [email protected]
7637 S:      Supported
7638 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7640 F:      Documentation/filesystems/gfs2*
7641 F:      fs/gfs2/
7642 F:      include/uapi/linux/gfs2_ondisk.h
7643
7644 GIGABYTE WMI DRIVER
7645 M:      Thomas Weißschuh <[email protected]>
7646 L:      [email protected]
7647 S:      Maintained
7648 F:      drivers/platform/x86/gigabyte-wmi.c
7649
7650 GNSS SUBSYSTEM
7651 M:      Johan Hovold <[email protected]>
7652 S:      Maintained
7653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7654 F:      Documentation/ABI/testing/sysfs-class-gnss
7655 F:      Documentation/devicetree/bindings/gnss/
7656 F:      drivers/gnss/
7657 F:      include/linux/gnss.h
7658
7659 GO7007 MPEG CODEC
7660 M:      Hans Verkuil <[email protected]>
7661 L:      [email protected]
7662 S:      Maintained
7663 F:      drivers/media/usb/go7007/
7664
7665 GOODIX TOUCHSCREEN
7666 M:      Bastien Nocera <[email protected]>
7667 L:      [email protected]
7668 S:      Maintained
7669 F:      drivers/input/touchscreen/goodix.c
7670
7671 GOOGLE ETHERNET DRIVERS
7672 M:      Catherine Sullivan <[email protected]>
7673 R:      Sagi Shahar <[email protected]>
7674 R:      Jon Olson <[email protected]>
7675 L:      [email protected]
7676 S:      Supported
7677 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7678 F:      drivers/net/ethernet/google
7679
7680 GPD POCKET FAN DRIVER
7681 M:      Hans de Goede <[email protected]>
7682 L:      [email protected]
7683 S:      Maintained
7684 F:      drivers/platform/x86/gpd-pocket-fan.c
7685
7686 GPIO ACPI SUPPORT
7687 M:      Mika Westerberg <[email protected]>
7688 M:      Andy Shevchenko <[email protected]>
7689 L:      [email protected]
7690 L:      [email protected]
7691 S:      Maintained
7692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7693 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7694 F:      drivers/gpio/gpiolib-acpi.c
7695 F:      drivers/gpio/gpiolib-acpi.h
7696
7697 GPIO AGGREGATOR
7698 M:      Geert Uytterhoeven <[email protected]>
7699 L:      [email protected]
7700 S:      Supported
7701 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7702 F:      drivers/gpio/gpio-aggregator.c
7703
7704 GPIO IR Transmitter
7705 M:      Sean Young <[email protected]>
7706 L:      [email protected]
7707 S:      Maintained
7708 F:      drivers/media/rc/gpio-ir-tx.c
7709
7710 GPIO MOCKUP DRIVER
7711 M:      Bamvor Jian Zhang <[email protected]>
7712 L:      [email protected]
7713 S:      Maintained
7714 F:      drivers/gpio/gpio-mockup.c
7715 F:      tools/testing/selftests/gpio/
7716
7717 GPIO REGMAP
7718 R:      Michael Walle <[email protected]>
7719 S:      Maintained
7720 F:      drivers/gpio/gpio-regmap.c
7721 F:      include/linux/gpio/regmap.h
7722
7723 GPIO SUBSYSTEM
7724 M:      Linus Walleij <[email protected]>
7725 M:      Bartosz Golaszewski <[email protected]>
7726 L:      [email protected]
7727 S:      Maintained
7728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7729 F:      Documentation/ABI/obsolete/sysfs-gpio
7730 F:      Documentation/ABI/testing/gpio-cdev
7731 F:      Documentation/admin-guide/gpio/
7732 F:      Documentation/devicetree/bindings/gpio/
7733 F:      Documentation/driver-api/gpio/
7734 F:      drivers/gpio/
7735 F:      include/asm-generic/gpio.h
7736 F:      include/linux/gpio.h
7737 F:      include/linux/gpio/
7738 F:      include/linux/of_gpio.h
7739 F:      include/uapi/linux/gpio.h
7740 F:      tools/gpio/
7741
7742 GRE DEMULTIPLEXER DRIVER
7743 M:      Dmitry Kozlov <[email protected]>
7744 L:      [email protected]
7745 S:      Maintained
7746 F:      include/net/gre.h
7747 F:      net/ipv4/gre_demux.c
7748 F:      net/ipv4/gre_offload.c
7749
7750 GRETH 10/100/1G Ethernet MAC device driver
7751 M:      Andreas Larsson <[email protected]>
7752 L:      [email protected]
7753 S:      Maintained
7754 F:      drivers/net/ethernet/aeroflex/
7755
7756 GREYBUS AUDIO PROTOCOLS DRIVERS
7757 M:      Vaibhav Agarwal <[email protected]>
7758 M:      Mark Greer <[email protected]>
7759 S:      Maintained
7760 F:      drivers/staging/greybus/audio_apbridgea.c
7761 F:      drivers/staging/greybus/audio_apbridgea.h
7762 F:      drivers/staging/greybus/audio_codec.c
7763 F:      drivers/staging/greybus/audio_codec.h
7764 F:      drivers/staging/greybus/audio_gb.c
7765 F:      drivers/staging/greybus/audio_manager.c
7766 F:      drivers/staging/greybus/audio_manager.h
7767 F:      drivers/staging/greybus/audio_manager_module.c
7768 F:      drivers/staging/greybus/audio_manager_private.h
7769 F:      drivers/staging/greybus/audio_manager_sysfs.c
7770 F:      drivers/staging/greybus/audio_module.c
7771 F:      drivers/staging/greybus/audio_topology.c
7772
7773 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7774 M:      Viresh Kumar <[email protected]>
7775 S:      Maintained
7776 F:      drivers/staging/greybus/authentication.c
7777 F:      drivers/staging/greybus/bootrom.c
7778 F:      drivers/staging/greybus/firmware.h
7779 F:      drivers/staging/greybus/fw-core.c
7780 F:      drivers/staging/greybus/fw-download.c
7781 F:      drivers/staging/greybus/fw-management.c
7782 F:      drivers/staging/greybus/greybus_authentication.h
7783 F:      drivers/staging/greybus/greybus_firmware.h
7784 F:      drivers/staging/greybus/hid.c
7785 F:      drivers/staging/greybus/i2c.c
7786 F:      drivers/staging/greybus/spi.c
7787 F:      drivers/staging/greybus/spilib.c
7788 F:      drivers/staging/greybus/spilib.h
7789
7790 GREYBUS LOOPBACK DRIVER
7791 M:      Bryan O'Donoghue <[email protected]>
7792 S:      Maintained
7793 F:      drivers/staging/greybus/loopback.c
7794
7795 GREYBUS PLATFORM DRIVERS
7796 M:      Vaibhav Hiremath <[email protected]>
7797 S:      Maintained
7798 F:      drivers/staging/greybus/arche-apb-ctrl.c
7799 F:      drivers/staging/greybus/arche-platform.c
7800 F:      drivers/staging/greybus/arche_platform.h
7801
7802 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7803 M:      Rui Miguel Silva <[email protected]>
7804 S:      Maintained
7805 F:      drivers/staging/greybus/gpio.c
7806 F:      drivers/staging/greybus/light.c
7807 F:      drivers/staging/greybus/power_supply.c
7808 F:      drivers/staging/greybus/sdio.c
7809 F:      drivers/staging/greybus/spi.c
7810 F:      drivers/staging/greybus/spilib.c
7811
7812 GREYBUS SUBSYSTEM
7813 M:      Johan Hovold <[email protected]>
7814 M:      Alex Elder <[email protected]>
7815 M:      Greg Kroah-Hartman <[email protected]>
7816 L:      [email protected] (moderated for non-subscribers)
7817 S:      Maintained
7818 F:      drivers/greybus/
7819 F:      drivers/staging/greybus/
7820 F:      include/linux/greybus.h
7821 F:      include/linux/greybus/
7822
7823 GREYBUS UART PROTOCOLS DRIVERS
7824 M:      David Lin <[email protected]>
7825 S:      Maintained
7826 F:      drivers/staging/greybus/log.c
7827 F:      drivers/staging/greybus/uart.c
7828
7829 GS1662 VIDEO SERIALIZER
7830 M:      Charles-Antoine Couret <[email protected]>
7831 L:      [email protected]
7832 S:      Maintained
7833 T:      git git://linuxtv.org/media_tree.git
7834 F:      drivers/media/spi/gs1662.c
7835
7836 GSPCA FINEPIX SUBDRIVER
7837 M:      Frank Zago <[email protected]>
7838 L:      [email protected]
7839 S:      Maintained
7840 T:      git git://linuxtv.org/media_tree.git
7841 F:      drivers/media/usb/gspca/finepix.c
7842
7843 GSPCA GL860 SUBDRIVER
7844 M:      Olivier Lorin <[email protected]>
7845 L:      [email protected]
7846 S:      Maintained
7847 T:      git git://linuxtv.org/media_tree.git
7848 F:      drivers/media/usb/gspca/gl860/
7849
7850 GSPCA M5602 SUBDRIVER
7851 M:      Erik Andren <[email protected]>
7852 L:      [email protected]
7853 S:      Maintained
7854 T:      git git://linuxtv.org/media_tree.git
7855 F:      drivers/media/usb/gspca/m5602/
7856
7857 GSPCA PAC207 SONIXB SUBDRIVER
7858 M:      Hans Verkuil <[email protected]>
7859 L:      [email protected]
7860 S:      Odd Fixes
7861 T:      git git://linuxtv.org/media_tree.git
7862 F:      drivers/media/usb/gspca/pac207.c
7863
7864 GSPCA SN9C20X SUBDRIVER
7865 M:      Brian Johnson <[email protected]>
7866 L:      [email protected]
7867 S:      Maintained
7868 T:      git git://linuxtv.org/media_tree.git
7869 F:      drivers/media/usb/gspca/sn9c20x.c
7870
7871 GSPCA T613 SUBDRIVER
7872 M:      Leandro Costantino <[email protected]>
7873 L:      [email protected]
7874 S:      Maintained
7875 T:      git git://linuxtv.org/media_tree.git
7876 F:      drivers/media/usb/gspca/t613.c
7877
7878 GSPCA USB WEBCAM DRIVER
7879 M:      Hans Verkuil <[email protected]>
7880 L:      [email protected]
7881 S:      Odd Fixes
7882 T:      git git://linuxtv.org/media_tree.git
7883 F:      drivers/media/usb/gspca/
7884
7885 GTP (GPRS Tunneling Protocol)
7886 M:      Pablo Neira Ayuso <[email protected]>
7887 M:      Harald Welte <[email protected]>
7888 L:      [email protected]
7889 S:      Maintained
7890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7891 F:      drivers/net/gtp.c
7892
7893 GUID PARTITION TABLE (GPT)
7894 M:      Davidlohr Bueso <[email protected]>
7895 L:      [email protected]
7896 S:      Maintained
7897 F:      block/partitions/efi.*
7898
7899 H8/300 ARCHITECTURE
7900 M:      Yoshinori Sato <[email protected]>
7901 L:      [email protected] (moderated for non-subscribers)
7902 S:      Maintained
7903 W:      http://uclinux-h8.sourceforge.jp
7904 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7905 F:      arch/h8300/
7906 F:      drivers/clk/h8300/
7907 F:      drivers/clocksource/h8300_*.c
7908 F:      drivers/irqchip/irq-renesas-h8*.c
7909
7910 HABANALABS PCI DRIVER
7911 M:      Oded Gabbay <[email protected]>
7912 S:      Supported
7913 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
7914 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7915 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7916 F:      drivers/misc/habanalabs/
7917 F:      include/uapi/misc/habanalabs.h
7918
7919 HACKRF MEDIA DRIVER
7920 M:      Antti Palosaari <[email protected]>
7921 L:      [email protected]
7922 S:      Maintained
7923 W:      https://linuxtv.org
7924 W:      http://palosaari.fi/linux/
7925 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7926 T:      git git://linuxtv.org/anttip/media_tree.git
7927 F:      drivers/media/usb/hackrf/
7928
7929 HANTRO VPU CODEC DRIVER
7930 M:      Ezequiel Garcia <[email protected]>
7931 M:      Philipp Zabel <[email protected]>
7932 L:      [email protected]
7933 L:      [email protected]
7934 S:      Maintained
7935 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7936 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7937 F:      drivers/staging/media/hantro/
7938
7939 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7940 M:      Frank Seidel <[email protected]>
7941 L:      [email protected]
7942 S:      Maintained
7943 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7944 F:      drivers/platform/x86/hdaps.c
7945
7946 HARDWARE MONITORING
7947 M:      Jean Delvare <[email protected]>
7948 M:      Guenter Roeck <[email protected]>
7949 L:      [email protected]
7950 S:      Maintained
7951 W:      http://hwmon.wiki.kernel.org/
7952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7953 F:      Documentation/devicetree/bindings/hwmon/
7954 F:      Documentation/hwmon/
7955 F:      drivers/hwmon/
7956 F:      include/linux/hwmon*.h
7957 F:      include/trace/events/hwmon*.h
7958 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
7959
7960 HARDWARE RANDOM NUMBER GENERATOR CORE
7961 M:      Matt Mackall <[email protected]>
7962 M:      Herbert Xu <[email protected]>
7963 L:      [email protected]
7964 S:      Odd fixes
7965 F:      Documentation/admin-guide/hw_random.rst
7966 F:      Documentation/devicetree/bindings/rng/
7967 F:      drivers/char/hw_random/
7968 F:      include/linux/hw_random.h
7969
7970 HARDWARE SPINLOCK CORE
7971 M:      Ohad Ben-Cohen <[email protected]>
7972 M:      Bjorn Andersson <[email protected]>
7973 R:      Baolin Wang <[email protected]>
7974 L:      [email protected]
7975 S:      Maintained
7976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7977 F:      Documentation/devicetree/bindings/hwlock/
7978 F:      Documentation/locking/hwspinlock.rst
7979 F:      drivers/hwspinlock/
7980 F:      include/linux/hwspinlock.h
7981
7982 HARDWARE TRACING FACILITIES
7983 M:      Alexander Shishkin <[email protected]>
7984 S:      Maintained
7985 F:      drivers/hwtracing/
7986
7987 HARMONY SOUND DRIVER
7988 L:      [email protected]
7989 S:      Maintained
7990 F:      sound/parisc/harmony.*
7991
7992 HDPVR USB VIDEO ENCODER DRIVER
7993 M:      Hans Verkuil <[email protected]>
7994 L:      [email protected]
7995 S:      Odd Fixes
7996 W:      https://linuxtv.org
7997 T:      git git://linuxtv.org/media_tree.git
7998 F:      drivers/media/usb/hdpvr/
7999
8000 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8001 M:      Matt Hsiao <[email protected]>
8002 S:      Supported
8003 F:      drivers/misc/hpilo.[ch]
8004
8005 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8006 M:      Jerry Hoemann <[email protected]>
8007 S:      Supported
8008 F:      Documentation/watchdog/hpwdt.rst
8009 F:      drivers/watchdog/hpwdt.c
8010
8011 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8012 M:      Don Brace <[email protected]>
8013 L:      [email protected]
8014 L:      [email protected]
8015 S:      Supported
8016 F:      Documentation/scsi/hpsa.rst
8017 F:      drivers/scsi/hpsa*.[ch]
8018 F:      include/linux/cciss*.h
8019 F:      include/uapi/linux/cciss*.h
8020
8021 HFI1 DRIVER
8022 M:      Mike Marciniszyn <[email protected]>
8023 M:      Dennis Dalessandro <[email protected]>
8024 L:      [email protected]
8025 S:      Supported
8026 F:      drivers/infiniband/hw/hfi1
8027
8028 HFS FILESYSTEM
8029 L:      [email protected]
8030 S:      Orphan
8031 F:      Documentation/filesystems/hfs.rst
8032 F:      fs/hfs/
8033
8034 HFSPLUS FILESYSTEM
8035 L:      [email protected]
8036 S:      Orphan
8037 F:      Documentation/filesystems/hfsplus.rst
8038 F:      fs/hfsplus/
8039
8040 HGA FRAMEBUFFER DRIVER
8041 M:      Ferenc Bakonyi <[email protected]>
8042 L:      [email protected]
8043 S:      Maintained
8044 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8045 F:      drivers/video/fbdev/hgafb.c
8046
8047 HIBERNATION (aka Software Suspend, aka swsusp)
8048 M:      "Rafael J. Wysocki" <[email protected]>
8049 M:      Pavel Machek <[email protected]>
8050 L:      [email protected]
8051 S:      Supported
8052 B:      https://bugzilla.kernel.org
8053 F:      arch/*/include/asm/suspend*.h
8054 F:      arch/x86/power/
8055 F:      drivers/base/power/
8056 F:      include/linux/freezer.h
8057 F:      include/linux/pm.h
8058 F:      include/linux/suspend.h
8059 F:      kernel/power/
8060
8061 HID CORE LAYER
8062 M:      Jiri Kosina <[email protected]>
8063 M:      Benjamin Tissoires <[email protected]>
8064 L:      [email protected]
8065 S:      Maintained
8066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8067 F:      drivers/hid/
8068 F:      include/linux/hid*
8069 F:      include/uapi/linux/hid*
8070
8071 HID PLAYSTATION DRIVER
8072 M:      Roderick Colenbrander <[email protected]>
8073 L:      [email protected]
8074 S:      Supported
8075 F:      drivers/hid/hid-playstation.c
8076
8077 HID SENSOR HUB DRIVERS
8078 M:      Jiri Kosina <[email protected]>
8079 M:      Jonathan Cameron <[email protected]>
8080 M:      Srinivas Pandruvada <[email protected]>
8081 L:      [email protected]
8082 L:      [email protected]
8083 S:      Maintained
8084 F:      Documentation/hid/hid-sensor*
8085 F:      drivers/hid/hid-sensor-*
8086 F:      drivers/iio/*/hid-*
8087 F:      include/linux/hid-sensor-*
8088
8089 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8090 M:      Thomas Gleixner <[email protected]>
8091 L:      [email protected]
8092 S:      Maintained
8093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8094 F:      Documentation/timers/
8095 F:      include/linux/clockchips.h
8096 F:      include/linux/hrtimer.h
8097 F:      kernel/time/clockevents.c
8098 F:      kernel/time/hrtimer.c
8099 F:      kernel/time/timer_*.c
8100
8101 HIGH-SPEED SCC DRIVER FOR AX.25
8102 L:      [email protected]
8103 S:      Orphan
8104 F:      drivers/net/hamradio/dmascc.c
8105 F:      drivers/net/hamradio/scc.c
8106
8107 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8108 M:      HighPoint Linux Team <[email protected]>
8109 S:      Supported
8110 W:      http://www.highpoint-tech.com
8111 F:      Documentation/scsi/hptiop.rst
8112 F:      drivers/scsi/hptiop.c
8113
8114 HIPPI
8115 M:      Jes Sorensen <[email protected]>
8116 L:      [email protected]
8117 S:      Maintained
8118 F:      drivers/net/hippi/
8119 F:      include/linux/hippidevice.h
8120 F:      include/uapi/linux/if_hippi.h
8121 F:      net/802/hippi.c
8122
8123 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8124 M:      Kurt Kanzenbach <[email protected]>
8125 L:      [email protected]
8126 S:      Maintained
8127 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8128 F:      drivers/net/dsa/hirschmann/*
8129 F:      include/linux/platform_data/hirschmann-hellcreek.h
8130 F:      net/dsa/tag_hellcreek.c
8131
8132 HISILICON DMA DRIVER
8133 M:      Zhou Wang <[email protected]>
8134 L:      [email protected]
8135 S:      Maintained
8136 F:      drivers/dma/hisi_dma.c
8137
8138 HISILICON GPIO DRIVER
8139 M:      Luo Jiaxing <[email protected]>
8140 L:      [email protected]
8141 S:      Maintained
8142 F:      drivers/gpio/gpio-hisi.c
8143
8144 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8145 M:      Zaibo Xu <[email protected]>
8146 L:      [email protected]
8147 S:      Maintained
8148 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8149 F:      drivers/crypto/hisilicon/hpre/hpre.h
8150 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8151 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8152
8153 HISILICON LPC BUS DRIVER
8154 M:      [email protected]
8155 S:      Maintained
8156 W:      http://www.hisilicon.com
8157 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8158 F:      drivers/bus/hisi_lpc.c
8159
8160 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8161 M:      Yisen Zhuang <[email protected]>
8162 M:      Salil Mehta <[email protected]>
8163 L:      [email protected]
8164 S:      Maintained
8165 W:      http://www.hisilicon.com
8166 F:      drivers/net/ethernet/hisilicon/hns3/
8167
8168 HISILICON NETWORK SUBSYSTEM DRIVER
8169 M:      Yisen Zhuang <[email protected]>
8170 M:      Salil Mehta <[email protected]>
8171 L:      [email protected]
8172 S:      Maintained
8173 W:      http://www.hisilicon.com
8174 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8175 F:      drivers/net/ethernet/hisilicon/
8176
8177 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8178 M:      John Stultz <[email protected]>
8179 L:      [email protected]
8180 S:      Maintained
8181 F:      drivers/misc/hisi_hikey_usb.c
8182 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8183
8184 HISILICON PMU DRIVER
8185 M:      Shaokun Zhang <[email protected]>
8186 S:      Supported
8187 W:      http://www.hisilicon.com
8188 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8189 F:      drivers/perf/hisilicon
8190
8191 HISILICON QM AND ZIP Controller DRIVER
8192 M:      Zhou Wang <[email protected]>
8193 L:      [email protected]
8194 S:      Maintained
8195 F:      Documentation/ABI/testing/debugfs-hisi-zip
8196 F:      drivers/crypto/hisilicon/qm.c
8197 F:      drivers/crypto/hisilicon/qm.h
8198 F:      drivers/crypto/hisilicon/sgl.c
8199 F:      drivers/crypto/hisilicon/zip/
8200
8201 HISILICON ROCE DRIVER
8202 M:      Lijun Ou <[email protected]>
8203 M:      Wei Hu(Xavier) <[email protected]>
8204 M:      Weihang Li <[email protected]>
8205 L:      [email protected]
8206 S:      Maintained
8207 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8208 F:      drivers/infiniband/hw/hns/
8209
8210 HISILICON SAS Controller
8211 M:      John Garry <[email protected]>
8212 S:      Supported
8213 W:      http://www.hisilicon.com
8214 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8215 F:      drivers/scsi/hisi_sas/
8216
8217 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8218 M:      Zaibo Xu <[email protected]>
8219 L:      [email protected]
8220 S:      Maintained
8221 F:      Documentation/ABI/testing/debugfs-hisi-sec
8222 F:      drivers/crypto/hisilicon/sec2/sec.h
8223 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8224 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8225 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8226
8227 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8228 M:      Jay Fang <[email protected]>
8229 L:      [email protected]
8230 S:      Maintained
8231 W:      http://www.hisilicon.com
8232 F:      drivers/spi/spi-hisi-kunpeng.c
8233
8234 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8235 M:      Mauro Carvalho Chehab <[email protected]>
8236 S:      Maintained
8237 F:      drivers/staging/hikey9xx/
8238
8239 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8240 M:      Zaibo Xu <[email protected]>
8241 S:      Maintained
8242 F:      drivers/crypto/hisilicon/trng/trng.c
8243
8244 HISILICON V3XX SPI NOR FLASH Controller Driver
8245 M:      John Garry <[email protected]>
8246 S:      Maintained
8247 W:      http://www.hisilicon.com
8248 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8249
8250 HMM - Heterogeneous Memory Management
8251 M:      Jérôme Glisse <[email protected]>
8252 L:      [email protected]
8253 S:      Maintained
8254 F:      Documentation/vm/hmm.rst
8255 F:      include/linux/hmm*
8256 F:      lib/test_hmm*
8257 F:      mm/hmm*
8258 F:      tools/testing/selftests/vm/*hmm*
8259
8260 HOST AP DRIVER
8261 M:      Jouni Malinen <[email protected]>
8262 L:      [email protected]
8263 S:      Obsolete
8264 W:      http://w1.fi/hostap-driver.html
8265 F:      drivers/net/wireless/intersil/hostap/
8266
8267 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8268 L:      [email protected]
8269 S:      Orphan
8270 F:      drivers/platform/x86/tc1100-wmi.c
8271
8272 HPET:   High Precision Event Timers driver
8273 M:      Clemens Ladisch <[email protected]>
8274 S:      Maintained
8275 F:      Documentation/timers/hpet.rst
8276 F:      drivers/char/hpet.c
8277 F:      include/linux/hpet.h
8278 F:      include/uapi/linux/hpet.h
8279
8280 HPET:   x86
8281 S:      Orphan
8282 F:      arch/x86/include/asm/hpet.h
8283 F:      arch/x86/kernel/hpet.c
8284
8285 HPFS FILESYSTEM
8286 M:      Mikulas Patocka <[email protected]>
8287 S:      Maintained
8288 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8289 F:      fs/hpfs/
8290
8291 HSI SUBSYSTEM
8292 M:      Sebastian Reichel <[email protected]>
8293 S:      Maintained
8294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8295 F:      Documentation/ABI/testing/sysfs-bus-hsi
8296 F:      Documentation/driver-api/hsi.rst
8297 F:      drivers/hsi/
8298 F:      include/linux/hsi/
8299 F:      include/uapi/linux/hsi/
8300
8301 HSO 3G MODEM DRIVER
8302 L:      [email protected]
8303 S:      Orphan
8304 F:      drivers/net/usb/hso.c
8305
8306 HSR NETWORK PROTOCOL
8307 L:      [email protected]
8308 S:      Orphan
8309 F:      net/hsr/
8310
8311 HT16K33 LED CONTROLLER DRIVER
8312 M:      Robin van der Gracht <[email protected]>
8313 S:      Maintained
8314 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8315 F:      drivers/auxdisplay/ht16k33.c
8316
8317 HTCPEN TOUCHSCREEN DRIVER
8318 M:      Pau Oliva Fora <[email protected]>
8319 L:      [email protected]
8320 S:      Maintained
8321 F:      drivers/input/touchscreen/htcpen.c
8322
8323 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8324 M:      Lorenzo Bianconi <[email protected]>
8325 L:      [email protected]
8326 S:      Maintained
8327 W:      http://www.st.com/
8328 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8329 F:      drivers/iio/humidity/hts221*
8330
8331 HUAWEI ETHERNET DRIVER
8332 M:      Bin Luo <[email protected]>
8333 L:      [email protected]
8334 S:      Supported
8335 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8336 F:      drivers/net/ethernet/huawei/hinic/
8337
8338 HUGETLB FILESYSTEM
8339 M:      Mike Kravetz <[email protected]>
8340 L:      [email protected]
8341 S:      Maintained
8342 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8343 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8344 F:      Documentation/vm/hugetlbfs_reserv.rst
8345 F:      fs/hugetlbfs/
8346 F:      include/linux/hugetlb.h
8347 F:      mm/hugetlb.c
8348
8349 HVA ST MEDIA DRIVER
8350 M:      Jean-Christophe Trotin <[email protected]>
8351 L:      [email protected]
8352 S:      Supported
8353 W:      https://linuxtv.org
8354 T:      git git://linuxtv.org/media_tree.git
8355 F:      drivers/media/platform/sti/hva
8356
8357 HWPOISON MEMORY FAILURE HANDLING
8358 M:      Naoya Horiguchi <[email protected]>
8359 L:      [email protected]
8360 S:      Maintained
8361 F:      mm/hwpoison-inject.c
8362 F:      mm/memory-failure.c
8363
8364 HYGON PROCESSOR SUPPORT
8365 M:      Pu Wen <[email protected]>
8366 L:      [email protected]
8367 S:      Maintained
8368 F:      arch/x86/kernel/cpu/hygon.c
8369
8370 HYNIX HI556 SENSOR DRIVER
8371 M:      Shawn Tu <[email protected]>
8372 L:      [email protected]
8373 S:      Maintained
8374 T:      git git://linuxtv.org/media_tree.git
8375 F:      drivers/media/i2c/hi556.c
8376
8377 Hyper-V/Azure CORE AND DRIVERS
8378 M:      "K. Y. Srinivasan" <[email protected]>
8379 M:      Haiyang Zhang <[email protected]>
8380 M:      Stephen Hemminger <[email protected]>
8381 M:      Wei Liu <[email protected]>
8382 M:      Dexuan Cui <[email protected]>
8383 L:      [email protected]
8384 S:      Supported
8385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8386 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8387 F:      Documentation/ABI/testing/debugfs-hyperv
8388 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8389 F:      arch/x86/hyperv
8390 F:      arch/x86/include/asm/hyperv-tlfs.h
8391 F:      arch/x86/include/asm/mshyperv.h
8392 F:      arch/x86/include/asm/trace/hyperv.h
8393 F:      arch/x86/kernel/cpu/mshyperv.c
8394 F:      drivers/clocksource/hyperv_timer.c
8395 F:      drivers/hid/hid-hyperv.c
8396 F:      drivers/hv/
8397 F:      drivers/input/serio/hyperv-keyboard.c
8398 F:      drivers/iommu/hyperv-iommu.c
8399 F:      drivers/net/ethernet/microsoft/
8400 F:      drivers/net/hyperv/
8401 F:      drivers/pci/controller/pci-hyperv-intf.c
8402 F:      drivers/pci/controller/pci-hyperv.c
8403 F:      drivers/scsi/storvsc_drv.c
8404 F:      drivers/uio/uio_hv_generic.c
8405 F:      drivers/video/fbdev/hyperv_fb.c
8406 F:      include/asm-generic/hyperv-tlfs.h
8407 F:      include/asm-generic/mshyperv.h
8408 F:      include/clocksource/hyperv_timer.h
8409 F:      include/linux/hyperv.h
8410 F:      include/uapi/linux/hyperv.h
8411 F:      net/vmw_vsock/hyperv_transport.c
8412 F:      tools/hv/
8413
8414 HYPERBUS SUPPORT
8415 M:      Vignesh Raghavendra <[email protected]>
8416 L:      [email protected]
8417 S:      Supported
8418 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8419 C:      irc://irc.oftc.net/mtd
8420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8421 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8422 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8423 F:      drivers/mtd/hyperbus/
8424 F:      include/linux/mtd/hyperbus.h
8425
8426 HYPERVISOR VIRTUAL CONSOLE DRIVER
8427 L:      [email protected]
8428 S:      Odd Fixes
8429 F:      drivers/tty/hvc/
8430
8431 I2C ACPI SUPPORT
8432 M:      Mika Westerberg <[email protected]>
8433 L:      [email protected]
8434 L:      [email protected]
8435 S:      Maintained
8436 F:      drivers/i2c/i2c-core-acpi.c
8437
8438 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8439 M:      Ajay Gupta <[email protected]>
8440 L:      [email protected]
8441 S:      Maintained
8442 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8443 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8444
8445 I2C MUXES
8446 M:      Peter Rosin <[email protected]>
8447 L:      [email protected]
8448 S:      Maintained
8449 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8450 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8451 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8452 F:      Documentation/i2c/i2c-topology.rst
8453 F:      Documentation/i2c/muxes/
8454 F:      drivers/i2c/i2c-mux.c
8455 F:      drivers/i2c/muxes/
8456 F:      include/linux/i2c-mux.h
8457
8458 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8459 M:      Gregory CLEMENT <[email protected]>
8460 L:      [email protected]
8461 S:      Maintained
8462 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8463 F:      drivers/i2c/busses/i2c-mv64xxx.c
8464
8465 I2C OVER PARALLEL PORT
8466 M:      Jean Delvare <[email protected]>
8467 L:      [email protected]
8468 S:      Maintained
8469 F:      Documentation/i2c/busses/i2c-parport.rst
8470 F:      drivers/i2c/busses/i2c-parport.c
8471
8472 I2C SUBSYSTEM
8473 M:      Wolfram Sang <[email protected]>
8474 L:      [email protected]
8475 S:      Maintained
8476 W:      https://i2c.wiki.kernel.org/
8477 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8479 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8480 F:      Documentation/i2c/
8481 F:      drivers/i2c/*
8482 F:      include/linux/i2c-dev.h
8483 F:      include/linux/i2c-smbus.h
8484 F:      include/linux/i2c.h
8485 F:      include/uapi/linux/i2c-*.h
8486 F:      include/uapi/linux/i2c.h
8487
8488 I2C SUBSYSTEM HOST DRIVERS
8489 L:      [email protected]
8490 S:      Odd Fixes
8491 W:      https://i2c.wiki.kernel.org/
8492 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8494 F:      Documentation/devicetree/bindings/i2c/
8495 F:      drivers/i2c/algos/
8496 F:      drivers/i2c/busses/
8497
8498 I2C-TAOS-EVM DRIVER
8499 M:      Jean Delvare <[email protected]>
8500 L:      [email protected]
8501 S:      Maintained
8502 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8503 F:      drivers/i2c/busses/i2c-taos-evm.c
8504
8505 I2C-TINY-USB DRIVER
8506 M:      Till Harbaum <[email protected]>
8507 L:      [email protected]
8508 S:      Maintained
8509 W:      http://www.harbaum.org/till/i2c_tiny_usb
8510 F:      drivers/i2c/busses/i2c-tiny-usb.c
8511
8512 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8513 M:      Jean Delvare <[email protected]>
8514 L:      [email protected]
8515 S:      Maintained
8516 F:      Documentation/i2c/busses/i2c-ali1535.rst
8517 F:      Documentation/i2c/busses/i2c-ali1563.rst
8518 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8519 F:      Documentation/i2c/busses/i2c-amd756.rst
8520 F:      Documentation/i2c/busses/i2c-amd8111.rst
8521 F:      Documentation/i2c/busses/i2c-i801.rst
8522 F:      Documentation/i2c/busses/i2c-nforce2.rst
8523 F:      Documentation/i2c/busses/i2c-piix4.rst
8524 F:      Documentation/i2c/busses/i2c-sis5595.rst
8525 F:      Documentation/i2c/busses/i2c-sis630.rst
8526 F:      Documentation/i2c/busses/i2c-sis96x.rst
8527 F:      Documentation/i2c/busses/i2c-via.rst
8528 F:      Documentation/i2c/busses/i2c-viapro.rst
8529 F:      drivers/i2c/busses/i2c-ali1535.c
8530 F:      drivers/i2c/busses/i2c-ali1563.c
8531 F:      drivers/i2c/busses/i2c-ali15x3.c
8532 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8533 F:      drivers/i2c/busses/i2c-amd756.c
8534 F:      drivers/i2c/busses/i2c-amd8111.c
8535 F:      drivers/i2c/busses/i2c-i801.c
8536 F:      drivers/i2c/busses/i2c-isch.c
8537 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8538 F:      drivers/i2c/busses/i2c-nforce2.c
8539 F:      drivers/i2c/busses/i2c-piix4.c
8540 F:      drivers/i2c/busses/i2c-sis5595.c
8541 F:      drivers/i2c/busses/i2c-sis630.c
8542 F:      drivers/i2c/busses/i2c-sis96x.c
8543 F:      drivers/i2c/busses/i2c-via.c
8544 F:      drivers/i2c/busses/i2c-viapro.c
8545
8546 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8547 M:      Hans de Goede <[email protected]>
8548 L:      [email protected]
8549 S:      Maintained
8550 F:      drivers/i2c/busses/i2c-cht-wc.c
8551
8552 I2C/SMBUS ISMT DRIVER
8553 M:      Seth Heasley <[email protected]>
8554 M:      Neil Horman <[email protected]>
8555 L:      [email protected]
8556 F:      Documentation/i2c/busses/i2c-ismt.rst
8557 F:      drivers/i2c/busses/i2c-ismt.c
8558
8559 I2C/SMBUS STUB DRIVER
8560 M:      Jean Delvare <[email protected]>
8561 L:      [email protected]
8562 S:      Maintained
8563 F:      drivers/i2c/i2c-stub.c
8564
8565 I3C DRIVER FOR CADENCE I3C MASTER IP
8566 M:      Przemysław Gaj <[email protected]>
8567 S:      Maintained
8568 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8569 F:      drivers/i3c/master/i3c-master-cdns.c
8570
8571 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8572 M:      Vitor Soares <[email protected]>
8573 S:      Maintained
8574 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8575 F:      drivers/i3c/master/dw*
8576
8577 I3C SUBSYSTEM
8578 M:      Alexandre Belloni <[email protected]>
8579 L:      [email protected] (moderated for non-subscribers)
8580 S:      Maintained
8581 C:      irc://chat.freenode.net/linux-i3c
8582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8583 F:      Documentation/ABI/testing/sysfs-bus-i3c
8584 F:      Documentation/devicetree/bindings/i3c/
8585 F:      Documentation/driver-api/i3c
8586 F:      drivers/i3c/
8587 F:      include/linux/i3c/
8588
8589 IA64 (Itanium) PLATFORM
8590 L:      [email protected]
8591 S:      Orphan
8592 F:      Documentation/ia64/
8593 F:      arch/ia64/
8594
8595 IBM Power 842 compression accelerator
8596 M:      Haren Myneni <[email protected]>
8597 S:      Supported
8598 F:      crypto/842.c
8599 F:      drivers/crypto/nx/Kconfig
8600 F:      drivers/crypto/nx/Makefile
8601 F:      drivers/crypto/nx/nx-842*
8602 F:      include/linux/sw842.h
8603 F:      lib/842/
8604
8605 IBM Power in-Nest Crypto Acceleration
8606 M:      Breno Leitão <[email protected]>
8607 M:      Nayna Jain <[email protected]>
8608 M:      Paulo Flabiano Smorigo <[email protected]>
8609 L:      [email protected]
8610 S:      Supported
8611 F:      drivers/crypto/nx/Kconfig
8612 F:      drivers/crypto/nx/Makefile
8613 F:      drivers/crypto/nx/nx-aes*
8614 F:      drivers/crypto/nx/nx-sha*
8615 F:      drivers/crypto/nx/nx.*
8616 F:      drivers/crypto/nx/nx_csbcpb.h
8617 F:      drivers/crypto/nx/nx_debugfs.c
8618
8619 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8620 M:      Tyrel Datwyler <[email protected]>
8621 L:      [email protected]
8622 L:      [email protected]
8623 S:      Supported
8624 F:      drivers/pci/hotplug/rpadlpar*
8625
8626 IBM Power Linux RAID adapter
8627 M:      Brian King <[email protected]>
8628 S:      Supported
8629 F:      drivers/scsi/ipr.*
8630
8631 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8632 M:      Tyrel Datwyler <[email protected]>
8633 L:      [email protected]
8634 L:      [email protected]
8635 S:      Supported
8636 F:      drivers/pci/hotplug/rpaphp*
8637
8638 IBM Power SRIOV Virtual NIC Device Driver
8639 M:      Dany Madden <[email protected]>
8640 M:      Sukadev Bhattiprolu <[email protected]>
8641 R:      Thomas Falcon <[email protected]>
8642 L:      [email protected]
8643 S:      Supported
8644 F:      drivers/net/ethernet/ibm/ibmvnic.*
8645
8646 IBM Power Virtual Accelerator Switchboard
8647 M:      Sukadev Bhattiprolu <[email protected]>
8648 L:      [email protected]
8649 S:      Supported
8650 F:      arch/powerpc/include/asm/vas.h
8651 F:      arch/powerpc/platforms/powernv/copy-paste.h
8652 F:      arch/powerpc/platforms/powernv/vas*
8653
8654 IBM Power Virtual Ethernet Device Driver
8655 M:      Cristobal Forno <[email protected]>
8656 L:      [email protected]
8657 S:      Supported
8658 F:      drivers/net/ethernet/ibm/ibmveth.*
8659
8660 IBM Power Virtual FC Device Drivers
8661 M:      Tyrel Datwyler <[email protected]>
8662 L:      [email protected]
8663 S:      Supported
8664 F:      drivers/scsi/ibmvscsi/ibmvfc*
8665
8666 IBM Power Virtual Management Channel Driver
8667 M:      Brad Warrum <[email protected]>
8668 M:      Ritu Agarwal <[email protected]>
8669 S:      Supported
8670 F:      drivers/misc/ibmvmc.*
8671
8672 IBM Power Virtual SCSI Device Drivers
8673 M:      Tyrel Datwyler <[email protected]>
8674 L:      [email protected]
8675 S:      Supported
8676 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8677 F:      include/scsi/viosrp.h
8678
8679 IBM Power Virtual SCSI Device Target Driver
8680 M:      Michael Cyr <[email protected]>
8681 L:      [email protected]
8682 L:      [email protected]
8683 S:      Supported
8684 F:      drivers/scsi/ibmvscsi_tgt/
8685
8686 IBM Power VMX Cryptographic instructions
8687 M:      Breno Leitão <[email protected]>
8688 M:      Nayna Jain <[email protected]>
8689 M:      Paulo Flabiano Smorigo <[email protected]>
8690 L:      [email protected]
8691 S:      Supported
8692 F:      drivers/crypto/vmx/Kconfig
8693 F:      drivers/crypto/vmx/Makefile
8694 F:      drivers/crypto/vmx/aes*
8695 F:      drivers/crypto/vmx/ghash*
8696 F:      drivers/crypto/vmx/ppc-xlate.pl
8697 F:      drivers/crypto/vmx/vmx.c
8698
8699 IBM ServeRAID RAID DRIVER
8700 S:      Orphan
8701 F:      drivers/scsi/ips.*
8702
8703 ICH LPC AND GPIO DRIVER
8704 M:      Peter Tyser <[email protected]>
8705 S:      Maintained
8706 F:      drivers/gpio/gpio-ich.c
8707 F:      drivers/mfd/lpc_ich.c
8708
8709 ICY I2C DRIVER
8710 M:      Max Staudt <[email protected]>
8711 L:      [email protected]
8712 S:      Maintained
8713 F:      drivers/i2c/busses/i2c-icy.c
8714
8715 IDE SUBSYSTEM
8716 M:      "David S. Miller" <[email protected]>
8717 L:      [email protected]
8718 S:      Maintained
8719 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8721 F:      Documentation/ide/
8722 F:      drivers/ide/
8723 F:      include/linux/ide.h
8724
8725 IDE/ATAPI DRIVERS
8726 L:      [email protected]
8727 S:      Orphan
8728 F:      Documentation/cdrom/ide-cd.rst
8729 F:      drivers/ide/ide-cd*
8730
8731 IDEAPAD LAPTOP EXTRAS DRIVER
8732 M:      Ike Panhc <[email protected]>
8733 L:      [email protected]
8734 S:      Maintained
8735 W:      http://launchpad.net/ideapad-laptop
8736 F:      drivers/platform/x86/ideapad-laptop.c
8737
8738 IDEAPAD LAPTOP SLIDEBAR DRIVER
8739 M:      Andrey Moiseev <[email protected]>
8740 L:      [email protected]
8741 S:      Maintained
8742 W:      https://github.com/o2genum/ideapad-slidebar
8743 F:      drivers/input/misc/ideapad_slidebar.c
8744
8745 IDT VersaClock 5 CLOCK DRIVER
8746 M:      Luca Ceresoli <[email protected]>
8747 S:      Maintained
8748 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8749 F:      drivers/clk/clk-versaclock5.c
8750
8751 IEEE 802.15.4 SUBSYSTEM
8752 M:      Alexander Aring <[email protected]>
8753 M:      Stefan Schmidt <[email protected]>
8754 L:      [email protected]
8755 S:      Maintained
8756 W:      https://linux-wpan.org/
8757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8759 F:      Documentation/networking/ieee802154.rst
8760 F:      drivers/net/ieee802154/
8761 F:      include/linux/ieee802154.h
8762 F:      include/linux/nl802154.h
8763 F:      include/net/af_ieee802154.h
8764 F:      include/net/cfg802154.h
8765 F:      include/net/ieee802154_netdev.h
8766 F:      include/net/mac802154.h
8767 F:      include/net/nl802154.h
8768 F:      net/ieee802154/
8769 F:      net/mac802154/
8770
8771 IFE PROTOCOL
8772 M:      Yotam Gigi <[email protected]>
8773 M:      Jamal Hadi Salim <[email protected]>
8774 F:      include/net/ife.h
8775 F:      include/uapi/linux/ife.h
8776 F:      net/ife
8777
8778 IGORPLUG-USB IR RECEIVER
8779 M:      Sean Young <[email protected]>
8780 L:      [email protected]
8781 S:      Maintained
8782 F:      drivers/media/rc/igorplugusb.c
8783
8784 IGUANAWORKS USB IR TRANSCEIVER
8785 M:      Sean Young <[email protected]>
8786 L:      [email protected]
8787 S:      Maintained
8788 F:      drivers/media/rc/iguanair.c
8789
8790 IIO DIGITAL POTENTIOMETER DAC
8791 M:      Peter Rosin <[email protected]>
8792 L:      [email protected]
8793 S:      Maintained
8794 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8795 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
8796 F:      drivers/iio/dac/dpot-dac.c
8797
8798 IIO ENVELOPE DETECTOR
8799 M:      Peter Rosin <[email protected]>
8800 L:      [email protected]
8801 S:      Maintained
8802 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8803 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
8804 F:      drivers/iio/adc/envelope-detector.c
8805
8806 IIO MULTIPLEXER
8807 M:      Peter Rosin <[email protected]>
8808 L:      [email protected]
8809 S:      Maintained
8810 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8811 F:      drivers/iio/multiplexer/iio-mux.c
8812
8813 IIO SCMI BASED DRIVER
8814 M:      Jyoti Bhayana <[email protected]>
8815 L:      [email protected]
8816 S:      Maintained
8817 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
8818
8819 IIO SUBSYSTEM AND DRIVERS
8820 M:      Jonathan Cameron <[email protected]>
8821 R:      Lars-Peter Clausen <[email protected]>
8822 L:      [email protected]
8823 S:      Maintained
8824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8825 F:      Documentation/ABI/testing/configfs-iio*
8826 F:      Documentation/ABI/testing/sysfs-bus-iio*
8827 F:      Documentation/devicetree/bindings/iio/
8828 F:      drivers/iio/
8829 F:      drivers/staging/iio/
8830 F:      include/linux/iio/
8831 F:      tools/iio/
8832
8833 IIO UNIT CONVERTER
8834 M:      Peter Rosin <[email protected]>
8835 L:      [email protected]
8836 S:      Maintained
8837 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
8838 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
8839 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
8840 F:      drivers/iio/afe/iio-rescale.c
8841
8842 IKANOS/ADI EAGLE ADSL USB DRIVER
8843 M:      Matthieu Castet <[email protected]>
8844 M:      Stanislaw Gruszka <[email protected]>
8845 S:      Maintained
8846 F:      drivers/usb/atm/ueagle-atm.c
8847
8848 IMGTEC ASCII LCD DRIVER
8849 M:      Paul Burton <[email protected]>
8850 S:      Maintained
8851 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8852 F:      drivers/auxdisplay/img-ascii-lcd.c
8853
8854 IMGTEC IR DECODER DRIVER
8855 S:      Orphan
8856 F:      drivers/media/rc/img-ir/
8857
8858 IMON SOUNDGRAPH USB IR RECEIVER
8859 M:      Sean Young <[email protected]>
8860 L:      [email protected]
8861 S:      Maintained
8862 F:      drivers/media/rc/imon.c
8863 F:      drivers/media/rc/imon_raw.c
8864
8865 IMS TWINTURBO FRAMEBUFFER DRIVER
8866 L:      [email protected]
8867 S:      Orphan
8868 F:      drivers/video/fbdev/imsttfb.c
8869
8870 INA209 HARDWARE MONITOR DRIVER
8871 M:      Guenter Roeck <[email protected]>
8872 L:      [email protected]
8873 S:      Maintained
8874 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
8875 F:      Documentation/hwmon/ina209.rst
8876 F:      drivers/hwmon/ina209.c
8877
8878 INA2XX HARDWARE MONITOR DRIVER
8879 M:      Guenter Roeck <[email protected]>
8880 L:      [email protected]
8881 S:      Maintained
8882 F:      Documentation/hwmon/ina2xx.rst
8883 F:      drivers/hwmon/ina2xx.c
8884 F:      include/linux/platform_data/ina2xx.h
8885
8886 INDUSTRY PACK SUBSYSTEM (IPACK)
8887 M:      Samuel Iglesias Gonsalvez <[email protected]>
8888 M:      Jens Taprogge <[email protected]>
8889 M:      Greg Kroah-Hartman <[email protected]>
8890 L:      [email protected]
8891 S:      Maintained
8892 W:      http://industrypack.sourceforge.net
8893 F:      drivers/ipack/
8894
8895 INFINEON DPS310 Driver
8896 M:      Eddie James <[email protected]>
8897 L:      [email protected]
8898 S:      Maintained
8899 F:      drivers/iio/pressure/dps310.c
8900
8901 INFINIBAND SUBSYSTEM
8902 M:      Doug Ledford <[email protected]>
8903 M:      Jason Gunthorpe <[email protected]>
8904 L:      [email protected]
8905 S:      Supported
8906 W:      https://github.com/linux-rdma/rdma-core
8907 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8909 F:      Documentation/devicetree/bindings/infiniband/
8910 F:      Documentation/infiniband/
8911 F:      drivers/infiniband/
8912 F:      include/rdma/
8913 F:      include/trace/events/ib_mad.h
8914 F:      include/trace/events/ib_umad.h
8915 F:      include/uapi/linux/if_infiniband.h
8916 F:      include/uapi/rdma/
8917 F:      samples/bpf/ibumad_kern.c
8918 F:      samples/bpf/ibumad_user.c
8919
8920 INGENIC JZ4780 NAND DRIVER
8921 M:      Harvey Hunt <[email protected]>
8922 L:      [email protected]
8923 L:      [email protected]
8924 S:      Maintained
8925 F:      drivers/mtd/nand/raw/ingenic/
8926
8927 INGENIC JZ47xx SoCs
8928 M:      Paul Cercueil <[email protected]>
8929 L:      [email protected]
8930 S:      Maintained
8931 F:      arch/mips/boot/dts/ingenic/
8932 F:      arch/mips/generic/board-ingenic.c
8933 F:      arch/mips/include/asm/mach-ingenic/
8934 F:      arch/mips/ingenic/Kconfig
8935 F:      drivers/clk/ingenic/
8936 F:      drivers/dma/dma-jz4780.c
8937 F:      drivers/gpu/drm/ingenic/
8938 F:      drivers/i2c/busses/i2c-jz4780.c
8939 F:      drivers/iio/adc/ingenic-adc.c
8940 F:      drivers/irqchip/irq-ingenic.c
8941 F:      drivers/memory/jz4780-nemc.c
8942 F:      drivers/mmc/host/jz4740_mmc.c
8943 F:      drivers/mtd/nand/raw/ingenic/
8944 F:      drivers/pinctrl/pinctrl-ingenic.c
8945 F:      drivers/power/supply/ingenic-battery.c
8946 F:      drivers/pwm/pwm-jz4740.c
8947 F:      drivers/remoteproc/ingenic_rproc.c
8948 F:      drivers/rtc/rtc-jz4740.c
8949 F:      drivers/tty/serial/8250/8250_ingenic.c
8950 F:      drivers/usb/musb/jz4740.c
8951 F:      drivers/watchdog/jz4740_wdt.c
8952 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8953 F:      include/linux/mfd/ingenic-tcu.h
8954 F:      sound/soc/codecs/jz47*
8955 F:      sound/soc/jz4740/
8956
8957 INOTIFY
8958 M:      Jan Kara <[email protected]>
8959 R:      Amir Goldstein <[email protected]>
8960 L:      [email protected]
8961 S:      Maintained
8962 F:      Documentation/filesystems/inotify.rst
8963 F:      fs/notify/inotify/
8964 F:      include/linux/inotify.h
8965 F:      include/uapi/linux/inotify.h
8966
8967 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8968 M:      Dmitry Torokhov <[email protected]>
8969 L:      [email protected]
8970 S:      Maintained
8971 Q:      http://patchwork.kernel.org/project/linux-input/list/
8972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8973 F:      Documentation/devicetree/bindings/input/
8974 F:      Documentation/devicetree/bindings/serio/
8975 F:      Documentation/input/
8976 F:      drivers/input/
8977 F:      include/linux/input.h
8978 F:      include/linux/input/
8979 F:      include/uapi/linux/input-event-codes.h
8980 F:      include/uapi/linux/input.h
8981
8982 INPUT MULTITOUCH (MT) PROTOCOL
8983 M:      Henrik Rydberg <[email protected]>
8984 L:      [email protected]
8985 S:      Odd fixes
8986 F:      Documentation/input/multi-touch-protocol.rst
8987 F:      drivers/input/input-mt.c
8988 K:      \b(ABS|SYN)_MT_
8989
8990 INSIDE SECURE CRYPTO DRIVER
8991 M:      Antoine Tenart <[email protected]>
8992 L:      [email protected]
8993 S:      Maintained
8994 F:      drivers/crypto/inside-secure/
8995
8996 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8997 M:      Mimi Zohar <[email protected]>
8998 M:      Dmitry Kasatkin <[email protected]>
8999 L:      [email protected]
9000 S:      Supported
9001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9002 F:      security/integrity/ima/
9003
9004 INTEL 810/815 FRAMEBUFFER DRIVER
9005 M:      Antonino Daplas <[email protected]>
9006 L:      [email protected]
9007 S:      Maintained
9008 F:      drivers/video/fbdev/i810/
9009
9010 INTEL ASoC DRIVERS
9011 M:      Cezary Rojewski <[email protected]>
9012 M:      Pierre-Louis Bossart <[email protected]>
9013 M:      Liam Girdwood <[email protected]>
9014 M:      Jie Yang <[email protected]>
9015 L:      [email protected] (moderated for non-subscribers)
9016 S:      Supported
9017 F:      sound/soc/intel/
9018
9019 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9020 M:      Hans de Goede <[email protected]>
9021 L:      [email protected]
9022 S:      Maintained
9023 F:      drivers/platform/x86/intel_atomisp2_pm.c
9024
9025 INTEL ATOMISP2 LED DRIVER
9026 M:      Hans de Goede <[email protected]>
9027 L:      [email protected]
9028 S:      Maintained
9029 F:      drivers/platform/x86/intel_atomisp2_led.c
9030
9031 INTEL BROXTON PMC DRIVER
9032 M:      Mika Westerberg <[email protected]>
9033 M:      Zha Qipeng <[email protected]>
9034 S:      Maintained
9035 F:      drivers/mfd/intel_pmc_bxt.c
9036 F:      include/linux/mfd/intel_pmc_bxt.h
9037
9038 INTEL C600 SERIES SAS CONTROLLER DRIVER
9039 M:      Artur Paszkiewicz <[email protected]>
9040 L:      [email protected]
9041 S:      Supported
9042 T:      git git://git.code.sf.net/p/intel-sas/isci
9043 F:      drivers/scsi/isci/
9044
9045 INTEL CPU family model numbers
9046 M:      Tony Luck <[email protected]>
9047 M:      [email protected]
9048 L:      [email protected]
9049 S:      Supported
9050 F:      arch/x86/include/asm/intel-family.h
9051
9052 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9053 M:      Jani Nikula <[email protected]>
9054 M:      Joonas Lahtinen <[email protected]>
9055 M:      Rodrigo Vivi <[email protected]>
9056 L:      [email protected]
9057 S:      Supported
9058 W:      https://01.org/linuxgraphics/
9059 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9060 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9061 C:      irc://chat.freenode.net/intel-gfx
9062 T:      git git://anongit.freedesktop.org/drm-intel
9063 F:      Documentation/gpu/i915.rst
9064 F:      drivers/gpu/drm/i915/
9065 F:      include/drm/i915*
9066 F:      include/uapi/drm/i915_drm.h
9067
9068 INTEL ETHERNET DRIVERS
9069 M:      Jesse Brandeburg <[email protected]>
9070 M:      Tony Nguyen <[email protected]>
9071 L:      [email protected] (moderated for non-subscribers)
9072 S:      Supported
9073 W:      http://www.intel.com/support/feedback.htm
9074 W:      http://e1000.sourceforge.net/
9075 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9078 F:      Documentation/networking/device_drivers/ethernet/intel/
9079 F:      drivers/net/ethernet/intel/
9080 F:      drivers/net/ethernet/intel/*/
9081 F:      include/linux/avf/virtchnl.h
9082
9083 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9084 M:      Maik Broemme <[email protected]>
9085 L:      [email protected]
9086 S:      Maintained
9087 F:      Documentation/fb/intelfb.rst
9088 F:      drivers/video/fbdev/intelfb/
9089
9090 INTEL GPIO DRIVERS
9091 M:      Andy Shevchenko <[email protected]>
9092 L:      [email protected]
9093 S:      Maintained
9094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9095 F:      drivers/gpio/gpio-ich.c
9096 F:      drivers/gpio/gpio-merrifield.c
9097 F:      drivers/gpio/gpio-ml-ioh.c
9098 F:      drivers/gpio/gpio-pch.c
9099 F:      drivers/gpio/gpio-sch.c
9100 F:      drivers/gpio/gpio-sodaville.c
9101
9102 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9103 M:      Zhenyu Wang <[email protected]>
9104 M:      Zhi Wang <[email protected]>
9105 L:      [email protected]
9106 L:      [email protected]
9107 S:      Supported
9108 W:      https://01.org/igvt-g
9109 T:      git https://github.com/intel/gvt-linux.git
9110 F:      drivers/gpu/drm/i915/gvt/
9111
9112 INTEL HID EVENT DRIVER
9113 M:      Alex Hung <[email protected]>
9114 L:      [email protected]
9115 S:      Maintained
9116 F:      drivers/platform/x86/intel-hid.c
9117
9118 INTEL I/OAT DMA DRIVER
9119 M:      Dave Jiang <[email protected]>
9120 R:      Dan Williams <[email protected]>
9121 L:      [email protected]
9122 S:      Supported
9123 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9124 F:      drivers/dma/ioat*
9125
9126 INTEL IADX DRIVER
9127 M:      Dave Jiang <[email protected]>
9128 L:      [email protected]
9129 S:      Supported
9130 F:      drivers/dma/idxd/*
9131 F:      include/uapi/linux/idxd.h
9132
9133 INTEL IDLE DRIVER
9134 M:      Jacob Pan <[email protected]>
9135 M:      Len Brown <[email protected]>
9136 L:      [email protected]
9137 S:      Supported
9138 B:      https://bugzilla.kernel.org
9139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9140 F:      drivers/idle/intel_idle.c
9141
9142 INTEL INTEGRATED SENSOR HUB DRIVER
9143 M:      Srinivas Pandruvada <[email protected]>
9144 M:      Jiri Kosina <[email protected]>
9145 L:      [email protected]
9146 S:      Maintained
9147 F:      drivers/hid/intel-ish-hid/
9148
9149 INTEL IOMMU (VT-d)
9150 M:      David Woodhouse <[email protected]>
9151 M:      Lu Baolu <[email protected]>
9152 L:      [email protected]
9153 S:      Supported
9154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9155 F:      drivers/iommu/intel/
9156 F:      include/linux/intel-iommu.h
9157 F:      include/linux/intel-svm.h
9158
9159 INTEL IOP-ADMA DMA DRIVER
9160 R:      Dan Williams <[email protected]>
9161 S:      Odd fixes
9162 F:      drivers/dma/iop-adma.c
9163
9164 INTEL IPU3 CSI-2 CIO2 DRIVER
9165 M:      Yong Zhi <[email protected]>
9166 M:      Sakari Ailus <[email protected]>
9167 M:      Bingbu Cao <[email protected]>
9168 M:      Dan Scally <[email protected]>
9169 R:      Tianshu Qiu <[email protected]>
9170 L:      [email protected]
9171 S:      Maintained
9172 T:      git git://linuxtv.org/media_tree.git
9173 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9174 F:      drivers/media/pci/intel/ipu3/
9175
9176 INTEL IPU3 CSI-2 IMGU DRIVER
9177 M:      Sakari Ailus <[email protected]>
9178 R:      Bingbu Cao <[email protected]>
9179 R:      Tianshu Qiu <[email protected]>
9180 L:      [email protected]
9181 S:      Maintained
9182 F:      Documentation/admin-guide/media/ipu3.rst
9183 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9184 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9185 F:      drivers/staging/media/ipu3/
9186
9187 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9188 M:      Krzysztof Halasa <[email protected]>
9189 S:      Maintained
9190 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9191 F:      drivers/net/wan/ixp4xx_hss.c
9192 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9193 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9194 F:      include/linux/soc/ixp4xx/npe.h
9195 F:      include/linux/soc/ixp4xx/qmgr.h
9196
9197 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9198 M:      Deepak Saxena <[email protected]>
9199 S:      Maintained
9200 F:      drivers/char/hw_random/ixp4xx-rng.c
9201
9202 INTEL KEEM BAY DRM DRIVER
9203 M:      Anitha Chrisanthus <[email protected]>
9204 M:      Edmund Dea <[email protected]>
9205 S:      Maintained
9206 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9207 F:      drivers/gpu/drm/kmb/
9208
9209 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9210 M:      Daniele Alessandrelli <[email protected]>
9211 S:      Maintained
9212 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9213 F:      drivers/crypto/keembay/Kconfig
9214 F:      drivers/crypto/keembay/Makefile
9215 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9216 F:      drivers/crypto/keembay/ocs-aes.c
9217 F:      drivers/crypto/keembay/ocs-aes.h
9218
9219 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9220 M:      Daniele Alessandrelli <[email protected]>
9221 M:      Declan Murphy <[email protected]>
9222 S:      Maintained
9223 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9224 F:      drivers/crypto/keembay/Kconfig
9225 F:      drivers/crypto/keembay/Makefile
9226 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9227 F:      drivers/crypto/keembay/ocs-hcu.c
9228 F:      drivers/crypto/keembay/ocs-hcu.h
9229
9230 INTEL MANAGEMENT ENGINE (mei)
9231 M:      Tomas Winkler <[email protected]>
9232 L:      [email protected]
9233 S:      Supported
9234 F:      Documentation/driver-api/mei/*
9235 F:      drivers/misc/mei/
9236 F:      drivers/watchdog/mei_wdt.c
9237 F:      include/linux/mei_cl_bus.h
9238 F:      include/uapi/linux/mei.h
9239 F:      samples/mei/*
9240
9241 INTEL MAX 10 BMC MFD DRIVER
9242 M:      Xu Yilun <[email protected]>
9243 R:      Tom Rix <[email protected]>
9244 S:      Maintained
9245 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9246 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9247 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9248 F:      drivers/mfd/intel-m10-bmc.c
9249 F:      include/linux/mfd/intel-m10-bmc.h
9250
9251 INTEL MAX 10 BMC MFD DRIVER
9252 M:      Xu Yilun <[email protected]>
9253 R:      Tom Rix <[email protected]>
9254 S:      Maintained
9255 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9256 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9257 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9258 F:      drivers/mfd/intel-m10-bmc.c
9259 F:      include/linux/mfd/intel-m10-bmc.h
9260
9261 INTEL MENLOW THERMAL DRIVER
9262 M:      Sujith Thomas <[email protected]>
9263 L:      [email protected]
9264 S:      Supported
9265 W:      https://01.org/linux-acpi
9266 F:      drivers/platform/x86/intel_menlow.c
9267
9268 INTEL P-Unit IPC DRIVER
9269 M:      Zha Qipeng <[email protected]>
9270 L:      [email protected]
9271 S:      Maintained
9272 F:      arch/x86/include/asm/intel_punit_ipc.h
9273 F:      drivers/platform/x86/intel_punit_ipc.c
9274
9275 INTEL PMC CORE DRIVER
9276 M:      Rajneesh Bhardwaj <[email protected]>
9277 M:      David E Box <[email protected]>
9278 L:      [email protected]
9279 S:      Maintained
9280 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9281 F:      drivers/platform/x86/intel_pmc_core*
9282
9283 INTEL PMIC GPIO DRIVERS
9284 M:      Andy Shevchenko <[email protected]>
9285 S:      Maintained
9286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9287 F:      drivers/gpio/gpio-*cove.c
9288
9289 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9290 M:      Andy Shevchenko <[email protected]>
9291 S:      Maintained
9292 F:      drivers/mfd/intel_soc_pmic*
9293 F:      include/linux/mfd/intel_soc_pmic*
9294
9295 INTEL PMT DRIVER
9296 M:      "David E. Box" <[email protected]>
9297 S:      Maintained
9298 F:      drivers/mfd/intel_pmt.c
9299 F:      drivers/platform/x86/intel_pmt_*
9300
9301 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9302 M:      Stanislav Yakovlev <[email protected]>
9303 L:      [email protected]
9304 S:      Maintained
9305 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9306 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9307 F:      drivers/net/wireless/intel/ipw2x00/
9308
9309 INTEL PSTATE DRIVER
9310 M:      Srinivas Pandruvada <[email protected]>
9311 M:      Len Brown <[email protected]>
9312 L:      [email protected]
9313 S:      Supported
9314 F:      drivers/cpufreq/intel_pstate.c
9315
9316 INTEL RDMA RNIC DRIVER
9317 M:      Faisal Latif <[email protected]>
9318 M:      Shiraz Saleem <[email protected]>
9319 L:      [email protected]
9320 S:      Supported
9321 F:      drivers/infiniband/hw/i40iw/
9322 F:      include/uapi/rdma/i40iw-abi.h
9323
9324 INTEL SCU DRIVERS
9325 M:      Mika Westerberg <[email protected]>
9326 S:      Maintained
9327 F:      arch/x86/include/asm/intel_scu_ipc.h
9328 F:      drivers/platform/x86/intel_scu_*
9329
9330 INTEL SPEED SELECT TECHNOLOGY
9331 M:      Srinivas Pandruvada <[email protected]>
9332 L:      [email protected]
9333 S:      Maintained
9334 F:      drivers/platform/x86/intel_speed_select_if/
9335 F:      include/uapi/linux/isst_if.h
9336 F:      tools/power/x86/intel-speed-select/
9337
9338 INTEL STRATIX10 FIRMWARE DRIVERS
9339 M:      Richard Gong <[email protected]>
9340 L:      [email protected]
9341 S:      Maintained
9342 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9343 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9344 F:      drivers/firmware/stratix10-rsu.c
9345 F:      drivers/firmware/stratix10-svc.c
9346 F:      include/linux/firmware/intel/stratix10-smc.h
9347 F:      include/linux/firmware/intel/stratix10-svc-client.h
9348
9349 INTEL TELEMETRY DRIVER
9350 M:      Rajneesh Bhardwaj <[email protected]>
9351 M:      "David E. Box" <[email protected]>
9352 L:      [email protected]
9353 S:      Maintained
9354 F:      arch/x86/include/asm/intel_telemetry.h
9355 F:      drivers/platform/x86/intel_telemetry*
9356
9357 INTEL UNCORE FREQUENCY CONTROL
9358 M:      Srinivas Pandruvada <[email protected]>
9359 L:      [email protected]
9360 S:      Maintained
9361 F:      drivers/platform/x86/intel-uncore-frequency.c
9362
9363 INTEL VIRTUAL BUTTON DRIVER
9364 M:      AceLan Kao <[email protected]>
9365 L:      [email protected]
9366 S:      Maintained
9367 F:      drivers/platform/x86/intel-vbtn.c
9368
9369 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9370 M:      Stanislaw Gruszka <[email protected]>
9371 L:      [email protected]
9372 S:      Supported
9373 F:      drivers/net/wireless/intel/iwlegacy/
9374
9375 INTEL WIRELESS WIFI LINK (iwlwifi)
9376 M:      Luca Coelho <[email protected]>
9377 L:      [email protected]
9378 S:      Supported
9379 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9381 F:      drivers/net/wireless/intel/iwlwifi/
9382
9383 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9384 M:      Jithu Joseph <[email protected]>
9385 R:      Maurice Ma <[email protected]>
9386 S:      Maintained
9387 W:      https://slimbootloader.github.io/security/firmware-update.html
9388 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9389
9390 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9391 L:      [email protected]
9392 S:      Maintained
9393 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9394
9395 INTEL(R) TRACE HUB
9396 M:      Alexander Shishkin <[email protected]>
9397 S:      Supported
9398 F:      Documentation/trace/intel_th.rst
9399 F:      drivers/hwtracing/intel_th/
9400 F:      include/linux/intel_th.h
9401
9402 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9403 M:      Ning Sun <[email protected]>
9404 L:      [email protected]
9405 S:      Supported
9406 W:      http://tboot.sourceforge.net
9407 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9408 F:      Documentation/x86/intel_txt.rst
9409 F:      arch/x86/kernel/tboot.c
9410 F:      include/linux/tboot.h
9411
9412 INTEL SGX
9413 M:      Jarkko Sakkinen <[email protected]>
9414 R:      Dave Hansen <[email protected]>
9415 L:      [email protected]
9416 S:      Supported
9417 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9419 F:      Documentation/x86/sgx.rst
9420 F:      arch/x86/entry/vdso/vsgx.S
9421 F:      arch/x86/include/asm/sgx.h
9422 F:      arch/x86/include/uapi/asm/sgx.h
9423 F:      arch/x86/kernel/cpu/sgx/*
9424 F:      tools/testing/selftests/sgx/*
9425 K:      \bSGX_
9426
9427 INTERCONNECT API
9428 M:      Georgi Djakov <[email protected]>
9429 L:      [email protected]
9430 S:      Maintained
9431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9432 F:      Documentation/devicetree/bindings/interconnect/
9433 F:      Documentation/driver-api/interconnect.rst
9434 F:      drivers/interconnect/
9435 F:      include/dt-bindings/interconnect/
9436 F:      include/linux/interconnect-provider.h
9437 F:      include/linux/interconnect.h
9438
9439 INTERRUPT COUNTER DRIVER
9440 M:      Oleksij Rempel <[email protected]>
9441 R:      Pengutronix Kernel Team <[email protected]>
9442 L:      [email protected]
9443 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9444 F:      drivers/counter/interrupt-cnt.c
9445
9446 INVENSENSE ICM-426xx IMU DRIVER
9447 M:      Jean-Baptiste Maneyrol <[email protected]>
9448 L:      [email protected]
9449 S:      Maintained
9450 W:      https://invensense.tdk.com/
9451 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9452 F:      drivers/iio/imu/inv_icm42600/
9453
9454 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9455 M:      Linus Walleij <[email protected]>
9456 L:      [email protected]
9457 S:      Maintained
9458 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9459 F:      drivers/iio/gyro/mpu3050*
9460
9461 IOC3 ETHERNET DRIVER
9462 M:      Ralf Baechle <[email protected]>
9463 L:      [email protected]
9464 S:      Maintained
9465 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9466
9467 IOMAP FILESYSTEM LIBRARY
9468 M:      Christoph Hellwig <[email protected]>
9469 M:      Darrick J. Wong <[email protected]>
9470 M:      [email protected]
9471 M:      [email protected]
9472 L:      [email protected]
9473 L:      [email protected]
9474 S:      Supported
9475 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9476 F:      fs/iomap/
9477 F:      include/linux/iomap.h
9478
9479 IOMMU DRIVERS
9480 M:      Joerg Roedel <[email protected]>
9481 M:      Will Deacon <[email protected]>
9482 L:      [email protected]
9483 S:      Maintained
9484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9485 F:      Documentation/devicetree/bindings/iommu/
9486 F:      Documentation/userspace-api/iommu.rst
9487 F:      drivers/iommu/
9488 F:      include/linux/iommu.h
9489 F:      include/linux/iova.h
9490 F:      include/linux/of_iommu.h
9491 F:      include/uapi/linux/iommu.h
9492
9493 IO_URING
9494 M:      Jens Axboe <[email protected]>
9495 R:      Pavel Begunkov <[email protected]>
9496 L:      [email protected]
9497 S:      Maintained
9498 T:      git git://git.kernel.dk/linux-block
9499 T:      git git://git.kernel.dk/liburing
9500 F:      fs/io-wq.c
9501 F:      fs/io-wq.h
9502 F:      fs/io_uring.c
9503 F:      include/linux/io_uring.h
9504 F:      include/uapi/linux/io_uring.h
9505
9506 IPMI SUBSYSTEM
9507 M:      Corey Minyard <[email protected]>
9508 L:      [email protected] (moderated for non-subscribers)
9509 S:      Supported
9510 W:      http://openipmi.sourceforge.net/
9511 F:      Documentation/driver-api/ipmi.rst
9512 F:      Documentation/devicetree/bindings/ipmi/
9513 F:      drivers/char/ipmi/
9514 F:      include/linux/ipmi*
9515 F:      include/uapi/linux/ipmi*
9516
9517 IPS SCSI RAID DRIVER
9518 M:      Adaptec OEM Raid Solutions <[email protected]>
9519 L:      [email protected]
9520 S:      Maintained
9521 W:      http://www.adaptec.com/
9522 F:      drivers/scsi/ips*
9523
9524 IPVS
9525 M:      Simon Horman <[email protected]>
9526 M:      Julian Anastasov <[email protected]>
9527 L:      [email protected]
9528 L:      [email protected]
9529 S:      Maintained
9530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9532 F:      Documentation/networking/ipvs-sysctl.rst
9533 F:      include/net/ip_vs.h
9534 F:      include/uapi/linux/ip_vs.h
9535 F:      net/netfilter/ipvs/
9536
9537 IPWIRELESS DRIVER
9538 M:      Jiri Kosina <[email protected]>
9539 M:      David Sterba <[email protected]>
9540 S:      Odd Fixes
9541 F:      drivers/tty/ipwireless/
9542
9543 IPX NETWORK LAYER
9544 L:      [email protected]
9545 S:      Obsolete
9546 F:      include/uapi/linux/ipx.h
9547
9548 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9549 M:      Marc Zyngier <[email protected]>
9550 S:      Maintained
9551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9552 F:      Documentation/core-api/irq/irq-domain.rst
9553 F:      include/linux/irqdomain.h
9554 F:      kernel/irq/irqdomain.c
9555 F:      kernel/irq/msi.c
9556
9557 IRQ SUBSYSTEM
9558 M:      Thomas Gleixner <[email protected]>
9559 L:      [email protected]
9560 S:      Maintained
9561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9562 F:      kernel/irq/
9563
9564 IRQCHIP DRIVERS
9565 M:      Thomas Gleixner <[email protected]>
9566 M:      Marc Zyngier <[email protected]>
9567 L:      [email protected]
9568 S:      Maintained
9569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9570 F:      Documentation/devicetree/bindings/interrupt-controller/
9571 F:      drivers/irqchip/
9572
9573 ISA
9574 M:      William Breathitt Gray <[email protected]>
9575 S:      Maintained
9576 F:      Documentation/driver-api/isa.rst
9577 F:      drivers/base/isa.c
9578 F:      include/linux/isa.h
9579
9580 ISA RADIO MODULE
9581 M:      Hans Verkuil <[email protected]>
9582 L:      [email protected]
9583 S:      Maintained
9584 W:      https://linuxtv.org
9585 T:      git git://linuxtv.org/media_tree.git
9586 F:      drivers/media/radio/radio-isa*
9587
9588 ISAPNP
9589 M:      Jaroslav Kysela <[email protected]>
9590 S:      Maintained
9591 F:      Documentation/driver-api/isapnp.rst
9592 F:      drivers/pnp/isapnp/
9593 F:      include/linux/isapnp.h
9594
9595 ISCSI
9596 M:      Lee Duncan <[email protected]>
9597 M:      Chris Leech <[email protected]>
9598 L:      [email protected]
9599 L:      [email protected]
9600 S:      Maintained
9601 W:      www.open-iscsi.com
9602 F:      drivers/scsi/*iscsi*
9603 F:      include/scsi/*iscsi*
9604
9605 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9606 M:      Peter Jones <[email protected]>
9607 M:      Konrad Rzeszutek Wilk <[email protected]>
9608 S:      Maintained
9609 F:      drivers/firmware/iscsi_ibft*
9610
9611 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9612 M:      Sagi Grimberg <[email protected]>
9613 M:      Max Gurtovoy <[email protected]>
9614 L:      [email protected]
9615 S:      Supported
9616 W:      http://www.openfabrics.org
9617 W:      www.open-iscsi.org
9618 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9619 F:      drivers/infiniband/ulp/iser/
9620
9621 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9622 M:      Sagi Grimberg <[email protected]>
9623 L:      [email protected]
9624 L:      [email protected]
9625 S:      Supported
9626 W:      http://www.linux-iscsi.org
9627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9628 F:      drivers/infiniband/ulp/isert
9629
9630 ISDN/CMTP OVER BLUETOOTH
9631 M:      Karsten Keil <[email protected]>
9632 L:      [email protected] (subscribers-only)
9633 L:      [email protected]
9634 S:      Odd Fixes
9635 W:      http://www.isdn4linux.de
9636 F:      Documentation/isdn/
9637 F:      drivers/isdn/capi/
9638 F:      include/linux/isdn/
9639 F:      include/uapi/linux/isdn/
9640 F:      net/bluetooth/cmtp/
9641
9642 ISDN/mISDN SUBSYSTEM
9643 M:      Karsten Keil <[email protected]>
9644 L:      [email protected] (subscribers-only)
9645 L:      [email protected]
9646 S:      Maintained
9647 W:      http://www.isdn4linux.de
9648 F:      drivers/isdn/Kconfig
9649 F:      drivers/isdn/Makefile
9650 F:      drivers/isdn/hardware/
9651 F:      drivers/isdn/mISDN/
9652
9653 IT87 HARDWARE MONITORING DRIVER
9654 M:      Jean Delvare <[email protected]>
9655 L:      [email protected]
9656 S:      Maintained
9657 F:      Documentation/hwmon/it87.rst
9658 F:      drivers/hwmon/it87.c
9659
9660 IT913X MEDIA DRIVER
9661 M:      Antti Palosaari <[email protected]>
9662 L:      [email protected]
9663 S:      Maintained
9664 W:      https://linuxtv.org
9665 W:      http://palosaari.fi/linux/
9666 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9667 T:      git git://linuxtv.org/anttip/media_tree.git
9668 F:      drivers/media/tuners/it913x*
9669
9670 IVTV VIDEO4LINUX DRIVER
9671 M:      Andy Walls <[email protected]>
9672 L:      [email protected]
9673 S:      Maintained
9674 W:      https://linuxtv.org
9675 T:      git git://linuxtv.org/media_tree.git
9676 F:      Documentation/admin-guide/media/ivtv*
9677 F:      drivers/media/pci/ivtv/
9678 F:      include/uapi/linux/ivtv*
9679
9680 IX2505V MEDIA DRIVER
9681 M:      Malcolm Priestley <[email protected]>
9682 L:      [email protected]
9683 S:      Maintained
9684 W:      https://linuxtv.org
9685 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9686 F:      drivers/media/dvb-frontends/ix2505v*
9687
9688 JAILHOUSE HYPERVISOR INTERFACE
9689 M:      Jan Kiszka <[email protected]>
9690 L:      [email protected]
9691 S:      Maintained
9692 F:      arch/x86/include/asm/jailhouse_para.h
9693 F:      arch/x86/kernel/jailhouse.c
9694
9695 JC42.4 TEMPERATURE SENSOR DRIVER
9696 M:      Guenter Roeck <[email protected]>
9697 L:      [email protected]
9698 S:      Maintained
9699 F:      Documentation/hwmon/jc42.rst
9700 F:      drivers/hwmon/jc42.c
9701
9702 JFS FILESYSTEM
9703 M:      Dave Kleikamp <[email protected]>
9704 L:      [email protected]
9705 S:      Maintained
9706 W:      http://jfs.sourceforge.net/
9707 T:      git git://github.com/kleikamp/linux-shaggy.git
9708 F:      Documentation/admin-guide/jfs.rst
9709 F:      fs/jfs/
9710
9711 JME NETWORK DRIVER
9712 M:      Guo-Fu Tseng <[email protected]>
9713 L:      [email protected]
9714 S:      Maintained
9715 F:      drivers/net/ethernet/jme.*
9716
9717 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9718 M:      David Woodhouse <[email protected]>
9719 M:      Richard Weinberger <[email protected]>
9720 L:      [email protected]
9721 S:      Odd Fixes
9722 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9723 T:      git git://git.infradead.org/ubifs-2.6.git
9724 F:      fs/jffs2/
9725 F:      include/uapi/linux/jffs2.h
9726
9727 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9728 M:      "Theodore Ts'o" <[email protected]>
9729 M:      Jan Kara <[email protected]>
9730 L:      [email protected]
9731 S:      Maintained
9732 F:      fs/jbd2/
9733 F:      include/linux/jbd2.h
9734
9735 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9736 M:      Mikhail Ulyanov <[email protected]>
9737 L:      [email protected]
9738 S:      Maintained
9739 F:      drivers/media/platform/rcar_jpu.c
9740
9741 JSM Neo PCI based serial card
9742 L:      [email protected]
9743 S:      Orphan
9744 F:      drivers/tty/serial/jsm/
9745
9746 K10TEMP HARDWARE MONITORING DRIVER
9747 M:      Clemens Ladisch <[email protected]>
9748 L:      [email protected]
9749 S:      Maintained
9750 F:      Documentation/hwmon/k10temp.rst
9751 F:      drivers/hwmon/k10temp.c
9752
9753 K8TEMP HARDWARE MONITORING DRIVER
9754 M:      Rudolf Marek <[email protected]>
9755 L:      [email protected]
9756 S:      Maintained
9757 F:      Documentation/hwmon/k8temp.rst
9758 F:      drivers/hwmon/k8temp.c
9759
9760 KASAN
9761 M:      Andrey Ryabinin <[email protected]>
9762 R:      Alexander Potapenko <[email protected]>
9763 R:      Andrey Konovalov <[email protected]>
9764 R:      Dmitry Vyukov <[email protected]>
9765 L:      [email protected]
9766 S:      Maintained
9767 F:      Documentation/dev-tools/kasan.rst
9768 F:      arch/*/include/asm/*kasan.h
9769 F:      arch/*/mm/kasan_init*
9770 F:      include/linux/kasan*.h
9771 F:      lib/Kconfig.kasan
9772 F:      lib/test_kasan*.c
9773 F:      mm/kasan/
9774 F:      scripts/Makefile.kasan
9775
9776 KCONFIG
9777 M:      Masahiro Yamada <[email protected]>
9778 L:      [email protected]
9779 S:      Maintained
9780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9781 F:      Documentation/kbuild/kconfig*
9782 F:      scripts/Kconfig.include
9783 F:      scripts/kconfig/
9784
9785 KCOV
9786 R:      Dmitry Vyukov <[email protected]>
9787 R:      Andrey Konovalov <[email protected]>
9788 L:      [email protected]
9789 S:      Maintained
9790 F:      Documentation/dev-tools/kcov.rst
9791 F:      include/linux/kcov.h
9792 F:      include/uapi/linux/kcov.h
9793 F:      kernel/kcov.c
9794 F:      scripts/Makefile.kcov
9795
9796 KCSAN
9797 M:      Marco Elver <[email protected]>
9798 R:      Dmitry Vyukov <[email protected]>
9799 L:      [email protected]
9800 S:      Maintained
9801 F:      Documentation/dev-tools/kcsan.rst
9802 F:      include/linux/kcsan*.h
9803 F:      kernel/kcsan/
9804 F:      lib/Kconfig.kcsan
9805 F:      scripts/Makefile.kcsan
9806
9807 KDUMP
9808 M:      Dave Young <[email protected]>
9809 M:      Baoquan He <[email protected]>
9810 R:      Vivek Goyal <[email protected]>
9811 L:      [email protected]
9812 S:      Maintained
9813 W:      http://lse.sourceforge.net/kdump/
9814 F:      Documentation/admin-guide/kdump/
9815 F:      fs/proc/vmcore.c
9816 F:      include/linux/crash_core.h
9817 F:      include/linux/crash_dump.h
9818 F:      include/uapi/linux/vmcore.h
9819 F:      kernel/crash_*.c
9820
9821 KEENE FM RADIO TRANSMITTER DRIVER
9822 M:      Hans Verkuil <[email protected]>
9823 L:      [email protected]
9824 S:      Maintained
9825 W:      https://linuxtv.org
9826 T:      git git://linuxtv.org/media_tree.git
9827 F:      drivers/media/radio/radio-keene*
9828
9829 KERNEL AUTOMOUNTER
9830 M:      Ian Kent <[email protected]>
9831 L:      [email protected]
9832 S:      Maintained
9833 F:      fs/autofs/
9834
9835 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9836 M:      Masahiro Yamada <[email protected]>
9837 M:      Michal Marek <[email protected]>
9838 L:      [email protected]
9839 S:      Maintained
9840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9841 F:      Documentation/kbuild/
9842 F:      Makefile
9843 F:      scripts/*vmlinux*
9844 F:      scripts/Kbuild*
9845 F:      scripts/Makefile*
9846 F:      scripts/basic/
9847 F:      scripts/dummy-tools/
9848 F:      scripts/mk*
9849 F:      scripts/mod/
9850 F:      scripts/package/
9851
9852 KERNEL JANITORS
9853 L:      [email protected]
9854 S:      Odd Fixes
9855 W:      http://kernelnewbies.org/KernelJanitors
9856
9857 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9858 M:      "J. Bruce Fields" <[email protected]>
9859 M:      Chuck Lever <[email protected]>
9860 L:      [email protected]
9861 S:      Supported
9862 W:      http://nfs.sourceforge.net/
9863 T:      git git://linux-nfs.org/~bfields/linux.git
9864 F:      fs/lockd/
9865 F:      fs/nfs_common/
9866 F:      fs/nfsd/
9867 F:      include/linux/lockd/
9868 F:      include/linux/sunrpc/
9869 F:      include/uapi/linux/nfsd/
9870 F:      include/uapi/linux/sunrpc/
9871 F:      net/sunrpc/
9872 F:      Documentation/filesystems/nfs/
9873
9874 KERNEL REGRESSIONS
9875 M:      Thorsten Leemhuis <[email protected]>
9876 L:      [email protected]
9877 S:      Supported
9878
9879 KERNEL SELFTEST FRAMEWORK
9880 M:      Shuah Khan <[email protected]>
9881 M:      Shuah Khan <[email protected]>
9882 L:      [email protected]
9883 S:      Maintained
9884 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9886 F:      Documentation/dev-tools/kselftest*
9887 F:      tools/testing/selftests/
9888
9889 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9890 M:      Brendan Higgins <[email protected]>
9891 L:      [email protected]
9892 L:      [email protected]
9893 S:      Maintained
9894 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9895 F:      Documentation/dev-tools/kunit/
9896 F:      include/kunit/
9897 F:      lib/kunit/
9898 F:      tools/testing/kunit/
9899
9900 KERNEL USERMODE HELPER
9901 M:      Luis Chamberlain <[email protected]>
9902 L:      [email protected]
9903 S:      Maintained
9904 F:      include/linux/umh.h
9905 F:      kernel/umh.c
9906
9907 KERNEL VIRTUAL MACHINE (KVM)
9908 M:      Paolo Bonzini <[email protected]>
9909 L:      [email protected]
9910 S:      Supported
9911 W:      http://www.linux-kvm.org
9912 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9913 F:      Documentation/virt/kvm/
9914 F:      include/asm-generic/kvm*
9915 F:      include/kvm/iodev.h
9916 F:      include/linux/kvm*
9917 F:      include/trace/events/kvm.h
9918 F:      include/uapi/asm-generic/kvm*
9919 F:      include/uapi/linux/kvm*
9920 F:      tools/kvm/
9921 F:      tools/testing/selftests/kvm/
9922 F:      virt/kvm/*
9923
9924 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9925 M:      Marc Zyngier <[email protected]>
9926 R:      James Morse <[email protected]>
9927 R:      Julien Thierry <[email protected]>
9928 R:      Suzuki K Poulose <[email protected]>
9929 L:      [email protected] (moderated for non-subscribers)
9930 L:      [email protected]
9931 S:      Maintained
9932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9933 F:      arch/arm64/include/asm/kvm*
9934 F:      arch/arm64/include/uapi/asm/kvm*
9935 F:      arch/arm64/kvm/
9936 F:      include/kvm/arm_*
9937
9938 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9939 M:      Huacai Chen <[email protected]>
9940 M:      Aleksandar Markovic <[email protected]>
9941 L:      [email protected]
9942 L:      [email protected]
9943 S:      Maintained
9944 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9945 F:      arch/mips/include/asm/kvm*
9946 F:      arch/mips/include/uapi/asm/kvm*
9947 F:      arch/mips/kvm/
9948
9949 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9950 M:      Paul Mackerras <[email protected]>
9951 L:      [email protected]
9952 S:      Supported
9953 W:      http://www.linux-kvm.org/
9954 T:      git git://github.com/agraf/linux-2.6.git
9955 F:      arch/powerpc/include/asm/kvm*
9956 F:      arch/powerpc/include/uapi/asm/kvm*
9957 F:      arch/powerpc/kernel/kvm*
9958 F:      arch/powerpc/kvm/
9959
9960 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9961 M:      Christian Borntraeger <[email protected]>
9962 M:      Janosch Frank <[email protected]>
9963 R:      David Hildenbrand <[email protected]>
9964 R:      Cornelia Huck <[email protected]>
9965 R:      Claudio Imbrenda <[email protected]>
9966 L:      [email protected]
9967 S:      Supported
9968 W:      http://www.ibm.com/developerworks/linux/linux390/
9969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9970 F:      Documentation/virt/kvm/s390*
9971 F:      arch/s390/include/asm/gmap.h
9972 F:      arch/s390/include/asm/kvm*
9973 F:      arch/s390/include/uapi/asm/kvm*
9974 F:      arch/s390/kernel/uv.c
9975 F:      arch/s390/kvm/
9976 F:      arch/s390/mm/gmap.c
9977 F:      tools/testing/selftests/kvm/*/s390x/
9978 F:      tools/testing/selftests/kvm/s390x/
9979
9980 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9981 M:      Paolo Bonzini <[email protected]>
9982 R:      Sean Christopherson <[email protected]>
9983 R:      Vitaly Kuznetsov <[email protected]>
9984 R:      Wanpeng Li <[email protected]>
9985 R:      Jim Mattson <[email protected]>
9986 R:      Joerg Roedel <[email protected]>
9987 L:      [email protected]
9988 S:      Supported
9989 W:      http://www.linux-kvm.org
9990 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9991 F:      arch/x86/include/asm/kvm*
9992 F:      arch/x86/include/asm/pvclock-abi.h
9993 F:      arch/x86/include/asm/svm.h
9994 F:      arch/x86/include/asm/vmx*.h
9995 F:      arch/x86/include/uapi/asm/kvm*
9996 F:      arch/x86/include/uapi/asm/svm.h
9997 F:      arch/x86/include/uapi/asm/vmx.h
9998 F:      arch/x86/kernel/kvm.c
9999 F:      arch/x86/kernel/kvmclock.c
10000 F:      arch/x86/kvm/
10001 F:      arch/x86/kvm/*/
10002
10003 KERNFS
10004 M:      Greg Kroah-Hartman <[email protected]>
10005 M:      Tejun Heo <[email protected]>
10006 S:      Supported
10007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10008 F:      fs/kernfs/
10009 F:      include/linux/kernfs.h
10010
10011 KEXEC
10012 M:      Eric Biederman <[email protected]>
10013 L:      [email protected]
10014 S:      Maintained
10015 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10016 F:      include/linux/kexec.h
10017 F:      include/uapi/linux/kexec.h
10018 F:      kernel/kexec*
10019
10020 KEYS-ENCRYPTED
10021 M:      Mimi Zohar <[email protected]>
10022 L:      [email protected]
10023 L:      [email protected]
10024 S:      Supported
10025 F:      Documentation/security/keys/trusted-encrypted.rst
10026 F:      include/keys/encrypted-type.h
10027 F:      security/keys/encrypted-keys/
10028
10029 KEYS-TRUSTED
10030 M:      James Bottomley <[email protected]>
10031 M:      Jarkko Sakkinen <[email protected]>
10032 M:      Mimi Zohar <[email protected]>
10033 L:      [email protected]
10034 L:      [email protected]
10035 S:      Supported
10036 F:      Documentation/security/keys/trusted-encrypted.rst
10037 F:      include/keys/trusted-type.h
10038 F:      include/keys/trusted_tpm.h
10039 F:      security/keys/trusted-keys/
10040
10041 KEYS-TRUSTED-TEE
10042 M:      Sumit Garg <[email protected]>
10043 L:      [email protected]
10044 L:      [email protected]
10045 S:      Supported
10046 F:      include/keys/trusted_tee.h
10047 F:      security/keys/trusted-keys/trusted_tee.c
10048
10049 KEYS/KEYRINGS
10050 M:      David Howells <[email protected]>
10051 M:      Jarkko Sakkinen <[email protected]>
10052 L:      [email protected]
10053 S:      Maintained
10054 F:      Documentation/security/keys/core.rst
10055 F:      include/keys/
10056 F:      include/linux/key-type.h
10057 F:      include/linux/key.h
10058 F:      include/linux/keyctl.h
10059 F:      include/uapi/linux/keyctl.h
10060 F:      security/keys/
10061
10062 KFENCE
10063 M:      Alexander Potapenko <[email protected]>
10064 M:      Marco Elver <[email protected]>
10065 R:      Dmitry Vyukov <[email protected]>
10066 L:      [email protected]
10067 S:      Maintained
10068 F:      Documentation/dev-tools/kfence.rst
10069 F:      arch/*/include/asm/kfence.h
10070 F:      include/linux/kfence.h
10071 F:      lib/Kconfig.kfence
10072 F:      mm/kfence/
10073
10074 KFIFO
10075 M:      Stefani Seibold <[email protected]>
10076 S:      Maintained
10077 F:      include/linux/kfifo.h
10078 F:      lib/kfifo.c
10079 F:      samples/kfifo/
10080
10081 KGDB / KDB /debug_core
10082 M:      Jason Wessel <[email protected]>
10083 M:      Daniel Thompson <[email protected]>
10084 R:      Douglas Anderson <[email protected]>
10085 L:      [email protected]
10086 S:      Maintained
10087 W:      http://kgdb.wiki.kernel.org/
10088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10089 F:      Documentation/dev-tools/kgdb.rst
10090 F:      drivers/misc/kgdbts.c
10091 F:      drivers/tty/serial/kgdboc.c
10092 F:      include/linux/kdb.h
10093 F:      include/linux/kgdb.h
10094 F:      kernel/debug/
10095
10096 KHADAS MCU MFD DRIVER
10097 M:      Neil Armstrong <[email protected]>
10098 L:      [email protected]
10099 S:      Maintained
10100 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10101 F:      drivers/mfd/khadas-mcu.c
10102 F:      include/linux/mfd/khadas-mcu.h
10103 F:      drivers/thermal/khadas_mcu_fan.c
10104
10105 KMEMLEAK
10106 M:      Catalin Marinas <[email protected]>
10107 S:      Maintained
10108 F:      Documentation/dev-tools/kmemleak.rst
10109 F:      include/linux/kmemleak.h
10110 F:      mm/kmemleak.c
10111 F:      samples/kmemleak/kmemleak-test.c
10112
10113 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10114 M:      Luis Chamberlain <[email protected]>
10115 L:      [email protected]
10116 S:      Maintained
10117 F:      include/linux/kmod.h
10118 F:      kernel/kmod.c
10119 F:      lib/test_kmod.c
10120 F:      tools/testing/selftests/kmod/
10121
10122 KPROBES
10123 M:      Naveen N. Rao <[email protected]>
10124 M:      Anil S Keshavamurthy <[email protected]>
10125 M:      "David S. Miller" <[email protected]>
10126 M:      Masami Hiramatsu <[email protected]>
10127 S:      Maintained
10128 F:      Documentation/trace/kprobes.rst
10129 F:      include/asm-generic/kprobes.h
10130 F:      include/linux/kprobes.h
10131 F:      kernel/kprobes.c
10132
10133 KS0108 LCD CONTROLLER DRIVER
10134 M:      Miguel Ojeda <[email protected]>
10135 S:      Maintained
10136 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10137 F:      drivers/auxdisplay/ks0108.c
10138 F:      include/linux/ks0108.h
10139
10140 KTD253 BACKLIGHT DRIVER
10141 M:      Linus Walleij <[email protected]>
10142 S:      Maintained
10143 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10144 F:      drivers/video/backlight/ktd253-backlight.c
10145
10146 L3MDEV
10147 M:      David Ahern <[email protected]>
10148 L:      [email protected]
10149 S:      Maintained
10150 F:      include/net/l3mdev.h
10151 F:      net/l3mdev
10152
10153 L7 BPF FRAMEWORK
10154 M:      John Fastabend <[email protected]>
10155 M:      Daniel Borkmann <[email protected]>
10156 M:      Jakub Sitnicki <[email protected]>
10157 M:      Lorenz Bauer <[email protected]>
10158 L:      [email protected]
10159 L:      [email protected]
10160 S:      Maintained
10161 F:      include/linux/skmsg.h
10162 F:      net/core/skmsg.c
10163 F:      net/core/sock_map.c
10164 F:      net/ipv4/tcp_bpf.c
10165 F:      net/ipv4/udp_bpf.c
10166
10167 LANTIQ / INTEL Ethernet drivers
10168 M:      Hauke Mehrtens <[email protected]>
10169 L:      [email protected]
10170 S:      Maintained
10171 F:      drivers/net/dsa/lantiq_gswip.c
10172 F:      drivers/net/dsa/lantiq_pce.h
10173 F:      drivers/net/ethernet/lantiq_xrx200.c
10174 F:      net/dsa/tag_gswip.c
10175
10176 LANTIQ MIPS ARCHITECTURE
10177 M:      John Crispin <[email protected]>
10178 L:      [email protected]
10179 S:      Maintained
10180 F:      arch/mips/lantiq
10181 F:      drivers/soc/lantiq
10182
10183 LASI 53c700 driver for PARISC
10184 M:      "James E.J. Bottomley" <[email protected]>
10185 L:      [email protected]
10186 S:      Maintained
10187 F:      Documentation/scsi/53c700.rst
10188 F:      drivers/scsi/53c700*
10189
10190 LEAKING_ADDRESSES
10191 M:      Tobin C. Harding <[email protected]>
10192 M:      Tycho Andersen <[email protected]>
10193 L:      [email protected]
10194 S:      Maintained
10195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10196 F:      scripts/leaking_addresses.pl
10197
10198 LED SUBSYSTEM
10199 M:      Pavel Machek <[email protected]>
10200 L:      [email protected]
10201 S:      Maintained
10202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10203 F:      Documentation/devicetree/bindings/leds/
10204 F:      drivers/leds/
10205 F:      include/linux/leds.h
10206
10207 LEGACY EEPROM DRIVER
10208 M:      Jean Delvare <[email protected]>
10209 S:      Maintained
10210 F:      Documentation/misc-devices/eeprom.rst
10211 F:      drivers/misc/eeprom/eeprom.c
10212
10213 LEGO MINDSTORMS EV3
10214 R:      David Lechner <[email protected]>
10215 S:      Maintained
10216 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10217 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10218 F:      drivers/power/supply/lego_ev3_battery.c
10219
10220 LEGO USB Tower driver
10221 M:      Juergen Stuber <[email protected]>
10222 L:      [email protected]
10223 S:      Maintained
10224 W:      http://legousb.sourceforge.net/
10225 F:      drivers/usb/misc/legousbtower.c
10226
10227 LG LAPTOP EXTRAS
10228 M:      Matan Ziv-Av <[email protected]>
10229 L:      [email protected]
10230 S:      Maintained
10231 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10232 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10233 F:      drivers/platform/x86/lg-laptop.c
10234
10235 LG2160 MEDIA DRIVER
10236 M:      Michael Krufky <[email protected]>
10237 L:      [email protected]
10238 S:      Maintained
10239 W:      https://linuxtv.org
10240 W:      http://github.com/mkrufky
10241 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10242 T:      git git://linuxtv.org/mkrufky/tuners.git
10243 F:      drivers/media/dvb-frontends/lg2160.*
10244
10245 LGDT3305 MEDIA DRIVER
10246 M:      Michael Krufky <[email protected]>
10247 L:      [email protected]
10248 S:      Maintained
10249 W:      https://linuxtv.org
10250 W:      http://github.com/mkrufky
10251 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10252 T:      git git://linuxtv.org/mkrufky/tuners.git
10253 F:      drivers/media/dvb-frontends/lgdt3305.*
10254
10255 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10256 M:      Viresh Kumar <[email protected]>
10257 L:      [email protected]
10258 S:      Maintained
10259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10260 F:      drivers/ata/pata_arasan_cf.c
10261 F:      include/linux/pata_arasan_cf_data.h
10262
10263 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10264 M:      Linus Walleij <[email protected]>
10265 L:      [email protected]
10266 S:      Maintained
10267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10268 F:      drivers/ata/pata_ftide010.c
10269 F:      drivers/ata/sata_gemini.c
10270 F:      drivers/ata/sata_gemini.h
10271
10272 LIBATA SATA AHCI PLATFORM devices support
10273 M:      Hans de Goede <[email protected]>
10274 M:      Jens Axboe <[email protected]>
10275 L:      [email protected]
10276 S:      Maintained
10277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10278 F:      drivers/ata/ahci_platform.c
10279 F:      drivers/ata/libahci_platform.c
10280 F:      include/linux/ahci_platform.h
10281
10282 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10283 M:      Mikael Pettersson <[email protected]>
10284 L:      [email protected]
10285 S:      Maintained
10286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10287 F:      drivers/ata/sata_promise.*
10288
10289 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10290 M:      Jens Axboe <[email protected]>
10291 L:      [email protected]
10292 S:      Maintained
10293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10294 F:      Documentation/devicetree/bindings/ata/
10295 F:      drivers/ata/
10296 F:      include/linux/ata.h
10297 F:      include/linux/libata.h
10298
10299 LIBLOCKDEP
10300 M:      Sasha Levin <[email protected]>
10301 S:      Maintained
10302 F:      tools/lib/lockdep/
10303
10304 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10305 M:      Dan Williams <[email protected]>
10306 M:      Vishal Verma <[email protected]>
10307 M:      Dave Jiang <[email protected]>
10308 L:      [email protected]
10309 S:      Supported
10310 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10311 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10312 F:      drivers/nvdimm/blk.c
10313 F:      drivers/nvdimm/region_devs.c
10314
10315 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10316 M:      Vishal Verma <[email protected]>
10317 M:      Dan Williams <[email protected]>
10318 M:      Dave Jiang <[email protected]>
10319 L:      [email protected]
10320 S:      Supported
10321 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10322 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10323 F:      drivers/nvdimm/btt*
10324
10325 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10326 M:      Dan Williams <[email protected]>
10327 M:      Vishal Verma <[email protected]>
10328 M:      Dave Jiang <[email protected]>
10329 L:      [email protected]
10330 S:      Supported
10331 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10332 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10333 F:      drivers/nvdimm/pmem*
10334
10335 LIBNVDIMM: DEVICETREE BINDINGS
10336 M:      Oliver O'Halloran <[email protected]>
10337 L:      [email protected]
10338 S:      Supported
10339 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10340 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10341 F:      drivers/nvdimm/of_pmem.c
10342
10343 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10344 M:      Dan Williams <[email protected]>
10345 M:      Vishal Verma <[email protected]>
10346 M:      Dave Jiang <[email protected]>
10347 M:      Ira Weiny <[email protected]>
10348 L:      [email protected]
10349 S:      Supported
10350 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10351 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10353 F:      drivers/acpi/nfit/*
10354 F:      drivers/nvdimm/*
10355 F:      include/linux/libnvdimm.h
10356 F:      include/linux/nd.h
10357 F:      include/uapi/linux/ndctl.h
10358 F:      tools/testing/nvdimm/
10359
10360 LICENSES and SPDX stuff
10361 M:      Thomas Gleixner <[email protected]>
10362 M:      Greg Kroah-Hartman <[email protected]>
10363 L:      [email protected]
10364 S:      Maintained
10365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10366 F:      COPYING
10367 F:      Documentation/process/license-rules.rst
10368 F:      LICENSES/
10369 F:      scripts/spdxcheck-test.sh
10370 F:      scripts/spdxcheck.py
10371
10372 LIGHTNVM PLATFORM SUPPORT
10373 M:      Matias Bjorling <[email protected]>
10374 L:      [email protected]
10375 S:      Maintained
10376 W:      http://github/OpenChannelSSD
10377 F:      drivers/lightnvm/
10378 F:      include/linux/lightnvm.h
10379 F:      include/uapi/linux/lightnvm.h
10380
10381 LINEAR RANGES HELPERS
10382 M:      Mark Brown <[email protected]>
10383 R:      Matti Vaittinen <[email protected]>
10384 F:      lib/linear_ranges.c
10385 F:      lib/test_linear_ranges.c
10386 F:      include/linux/linear_range.h
10387
10388 LINUX FOR POWER MACINTOSH
10389 M:      Benjamin Herrenschmidt <[email protected]>
10390 L:      [email protected]
10391 S:      Odd Fixes
10392 F:      arch/powerpc/platforms/powermac/
10393 F:      drivers/macintosh/
10394
10395 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10396 M:      Michael Ellerman <[email protected]>
10397 R:      Benjamin Herrenschmidt <[email protected]>
10398 R:      Paul Mackerras <[email protected]>
10399 L:      [email protected]
10400 S:      Supported
10401 W:      https://github.com/linuxppc/wiki/wiki
10402 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10404 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10405 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10406 F:      Documentation/devicetree/bindings/powerpc/
10407 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10408 F:      Documentation/powerpc/
10409 F:      arch/powerpc/
10410 F:      drivers/*/*/*pasemi*
10411 F:      drivers/*/*pasemi*
10412 F:      drivers/char/tpm/tpm_ibmvtpm*
10413 F:      drivers/crypto/nx/
10414 F:      drivers/crypto/vmx/
10415 F:      drivers/i2c/busses/i2c-opal.c
10416 F:      drivers/net/ethernet/ibm/ibmveth.*
10417 F:      drivers/net/ethernet/ibm/ibmvnic.*
10418 F:      drivers/pci/hotplug/pnv_php.c
10419 F:      drivers/pci/hotplug/rpa*
10420 F:      drivers/rtc/rtc-opal.c
10421 F:      drivers/scsi/ibmvscsi/
10422 F:      drivers/tty/hvc/hvc_opal.c
10423 F:      drivers/watchdog/wdrtas.c
10424 F:      tools/testing/selftests/powerpc
10425 N:      /pmac
10426 N:      powermac
10427 N:      powernv
10428 N:      [^a-z0-9]ps3
10429 N:      pseries
10430
10431 LINUX FOR POWERPC EMBEDDED MPC5XXX
10432 M:      Anatolij Gustschin <[email protected]>
10433 L:      [email protected]
10434 S:      Odd Fixes
10435 F:      arch/powerpc/platforms/512x/
10436 F:      arch/powerpc/platforms/52xx/
10437
10438 LINUX FOR POWERPC EMBEDDED PPC4XX
10439 L:      [email protected]
10440 S:      Orphan
10441 F:      arch/powerpc/platforms/40x/
10442 F:      arch/powerpc/platforms/44x/
10443
10444 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10445 M:      Scott Wood <[email protected]>
10446 L:      [email protected]
10447 S:      Odd fixes
10448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10449 F:      Documentation/devicetree/bindings/powerpc/fsl/
10450 F:      arch/powerpc/platforms/83xx/
10451 F:      arch/powerpc/platforms/85xx/
10452
10453 LINUX FOR POWERPC EMBEDDED PPC8XX
10454 M:      Christophe Leroy <[email protected]>
10455 L:      [email protected]
10456 S:      Maintained
10457 F:      arch/powerpc/platforms/8xx/
10458
10459 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10460 M:      Kees Cook <[email protected]>
10461 S:      Maintained
10462 F:      drivers/misc/lkdtm/*
10463 F:      tools/testing/selftests/lkdtm/*
10464
10465 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10466 M:      Alan Stern <[email protected]>
10467 M:      Andrea Parri <[email protected]>
10468 M:      Will Deacon <[email protected]>
10469 M:      Peter Zijlstra <[email protected]>
10470 M:      Boqun Feng <[email protected]>
10471 M:      Nicholas Piggin <[email protected]>
10472 M:      David Howells <[email protected]>
10473 M:      Jade Alglave <[email protected]>
10474 M:      Luc Maranget <[email protected]>
10475 M:      "Paul E. McKenney" <[email protected]>
10476 R:      Akira Yokosawa <[email protected]>
10477 R:      Daniel Lustig <[email protected]>
10478 R:      Joel Fernandes <[email protected]>
10479 L:      [email protected]
10480 L:      [email protected]
10481 S:      Supported
10482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10483 F:      Documentation/atomic_bitops.txt
10484 F:      Documentation/atomic_t.txt
10485 F:      Documentation/core-api/refcount-vs-atomic.rst
10486 F:      Documentation/litmus-tests/
10487 F:      Documentation/memory-barriers.txt
10488 F:      tools/memory-model/
10489
10490 LIS3LV02D ACCELEROMETER DRIVER
10491 M:      Eric Piel <[email protected]>
10492 S:      Maintained
10493 F:      Documentation/misc-devices/lis3lv02d.rst
10494 F:      drivers/misc/lis3lv02d/
10495 F:      drivers/platform/x86/hp_accel.c
10496
10497 LIST KUNIT TEST
10498 M:      David Gow <[email protected]>
10499 L:      [email protected]
10500 L:      [email protected]
10501 S:      Maintained
10502 F:      lib/list-test.c
10503
10504 LITEX PLATFORM
10505 M:      Karol Gugala <[email protected]>
10506 M:      Mateusz Holenko <[email protected]>
10507 S:      Maintained
10508 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10509 F:      arch/openrisc/boot/dts/or1klitex.dts
10510 F:      drivers/soc/litex/litex_soc_ctrl.c
10511 F:      drivers/tty/serial/liteuart.c
10512 F:      include/linux/litex.h
10513
10514 LIVE PATCHING
10515 M:      Josh Poimboeuf <[email protected]>
10516 M:      Jiri Kosina <[email protected]>
10517 M:      Miroslav Benes <[email protected]>
10518 M:      Petr Mladek <[email protected]>
10519 R:      Joe Lawrence <[email protected]>
10520 L:      [email protected]
10521 S:      Maintained
10522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10523 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10524 F:      Documentation/livepatch/
10525 F:      arch/powerpc/include/asm/livepatch.h
10526 F:      arch/s390/include/asm/livepatch.h
10527 F:      arch/x86/include/asm/livepatch.h
10528 F:      include/linux/livepatch.h
10529 F:      kernel/livepatch/
10530 F:      lib/livepatch/
10531 F:      samples/livepatch/
10532 F:      tools/testing/selftests/livepatch/
10533
10534 LLC (802.2)
10535 L:      [email protected]
10536 S:      Odd fixes
10537 F:      include/linux/llc.h
10538 F:      include/net/llc*
10539 F:      include/uapi/linux/llc.h
10540 F:      net/llc/
10541
10542 LM73 HARDWARE MONITOR DRIVER
10543 M:      Guillaume Ligneul <[email protected]>
10544 L:      [email protected]
10545 S:      Maintained
10546 F:      drivers/hwmon/lm73.c
10547
10548 LM78 HARDWARE MONITOR DRIVER
10549 M:      Jean Delvare <[email protected]>
10550 L:      [email protected]
10551 S:      Maintained
10552 F:      Documentation/hwmon/lm78.rst
10553 F:      drivers/hwmon/lm78.c
10554
10555 LM83 HARDWARE MONITOR DRIVER
10556 M:      Jean Delvare <[email protected]>
10557 L:      [email protected]
10558 S:      Maintained
10559 F:      Documentation/hwmon/lm83.rst
10560 F:      drivers/hwmon/lm83.c
10561
10562 LM90 HARDWARE MONITOR DRIVER
10563 M:      Jean Delvare <[email protected]>
10564 L:      [email protected]
10565 S:      Maintained
10566 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10567 F:      Documentation/hwmon/lm90.rst
10568 F:      drivers/hwmon/lm90.c
10569 F:      include/dt-bindings/thermal/lm90.h
10570
10571 LM95234 HARDWARE MONITOR DRIVER
10572 M:      Guenter Roeck <[email protected]>
10573 L:      [email protected]
10574 S:      Maintained
10575 F:      Documentation/hwmon/lm95234.rst
10576 F:      drivers/hwmon/lm95234.c
10577
10578 LME2510 MEDIA DRIVER
10579 M:      Malcolm Priestley <[email protected]>
10580 L:      [email protected]
10581 S:      Maintained
10582 W:      https://linuxtv.org
10583 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10584 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10585
10586 LOADPIN SECURITY MODULE
10587 M:      Kees Cook <[email protected]>
10588 S:      Supported
10589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10590 F:      Documentation/admin-guide/LSM/LoadPin.rst
10591 F:      security/loadpin/
10592
10593 LOCKING PRIMITIVES
10594 M:      Peter Zijlstra <[email protected]>
10595 M:      Ingo Molnar <[email protected]>
10596 M:      Will Deacon <[email protected]>
10597 R:      Waiman Long <[email protected]>
10598 R:      Boqun Feng <[email protected]> (LOCKDEP)
10599 L:      [email protected]
10600 S:      Maintained
10601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10602 F:      Documentation/locking/
10603 F:      arch/*/include/asm/spinlock*.h
10604 F:      include/linux/lockdep.h
10605 F:      include/linux/mutex*.h
10606 F:      include/linux/rwlock*.h
10607 F:      include/linux/rwsem*.h
10608 F:      include/linux/seqlock.h
10609 F:      include/linux/spinlock*.h
10610 F:      kernel/locking/
10611 F:      lib/locking*.[ch]
10612 X:      kernel/locking/locktorture.c
10613
10614 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10615 M:      "Richard Russon (FlatCap)" <[email protected]>
10616 L:      [email protected]
10617 S:      Maintained
10618 W:      http://www.linux-ntfs.org/content/view/19/37/
10619 F:      Documentation/admin-guide/ldm.rst
10620 F:      block/partitions/ldm.*
10621
10622 LOGITECH HID GAMING KEYBOARDS
10623 M:      Hans de Goede <[email protected]>
10624 L:      [email protected]
10625 S:      Maintained
10626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10627 F:      drivers/hid/hid-lg-g15.c
10628
10629 LONTIUM LT8912B MIPI TO HDMI BRIDGE
10630 M:      Adrien Grassein <[email protected]>
10631 S:      Maintained
10632 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
10633 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
10634
10635 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10636 M:      Sathya Prakash <[email protected]>
10637 M:      Sreekanth Reddy <[email protected]>
10638 M:      Suganath Prabu Subramani <[email protected]>
10639 L:      [email protected]
10640 L:      [email protected]
10641 S:      Supported
10642 W:      http://www.avagotech.com/support/
10643 F:      drivers/message/fusion/
10644 F:      drivers/scsi/mpt3sas/
10645
10646 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10647 M:      Matthew Wilcox <[email protected]>
10648 L:      [email protected]
10649 S:      Maintained
10650 F:      drivers/scsi/sym53c8xx_2/
10651
10652 LTC1660 DAC DRIVER
10653 M:      Marcus Folkesson <[email protected]>
10654 L:      [email protected]
10655 S:      Maintained
10656 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10657 F:      drivers/iio/dac/ltc1660.c
10658
10659 LTC2947 HARDWARE MONITOR DRIVER
10660 M:      Nuno Sá <[email protected]>
10661 L:      [email protected]
10662 S:      Supported
10663 W:      http://ez.analog.com/community/linux-device-drivers
10664 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10665 F:      drivers/hwmon/ltc2947-core.c
10666 F:      drivers/hwmon/ltc2947-i2c.c
10667 F:      drivers/hwmon/ltc2947-spi.c
10668 F:      drivers/hwmon/ltc2947.h
10669
10670 LTC2983 IIO TEMPERATURE DRIVER
10671 M:      Nuno Sá <[email protected]>
10672 L:      [email protected]
10673 S:      Supported
10674 W:      http://ez.analog.com/community/linux-device-drivers
10675 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10676 F:      drivers/iio/temperature/ltc2983.c
10677
10678 LTC4261 HARDWARE MONITOR DRIVER
10679 M:      Guenter Roeck <[email protected]>
10680 L:      [email protected]
10681 S:      Maintained
10682 F:      Documentation/hwmon/ltc4261.rst
10683 F:      drivers/hwmon/ltc4261.c
10684
10685 LTC4306 I2C MULTIPLEXER DRIVER
10686 M:      Michael Hennerich <[email protected]>
10687 L:      [email protected]
10688 S:      Supported
10689 W:      http://ez.analog.com/community/linux-device-drivers
10690 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10691 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10692
10693 LTP (Linux Test Project)
10694 M:      Mike Frysinger <[email protected]>
10695 M:      Cyril Hrubis <[email protected]>
10696 M:      Wanlong Gao <[email protected]>
10697 M:      Jan Stancek <[email protected]>
10698 M:      Stanislav Kholmanskikh <[email protected]>
10699 M:      Alexey Kodanev <[email protected]>
10700 L:      [email protected] (subscribers-only)
10701 S:      Maintained
10702 W:      http://linux-test-project.github.io/
10703 T:      git git://github.com/linux-test-project/ltp.git
10704
10705 LYNX PCS MODULE
10706 M:      Ioana Ciornei <[email protected]>
10707 L:      [email protected]
10708 S:      Supported
10709 F:      drivers/net/pcs/pcs-lynx.c
10710 F:      include/linux/pcs-lynx.h
10711
10712 M68K ARCHITECTURE
10713 M:      Geert Uytterhoeven <[email protected]>
10714 L:      [email protected]
10715 S:      Maintained
10716 W:      http://www.linux-m68k.org/
10717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10718 F:      arch/m68k/
10719 F:      drivers/zorro/
10720
10721 M68K ON APPLE MACINTOSH
10722 M:      Joshua Thompson <[email protected]>
10723 L:      [email protected]
10724 S:      Maintained
10725 W:      http://www.mac.linux-m68k.org/
10726 F:      arch/m68k/mac/
10727 F:      drivers/macintosh/adb-iop.c
10728 F:      drivers/macintosh/via-macii.c
10729
10730 M68K ON HP9000/300
10731 M:      Philip Blundell <[email protected]>
10732 S:      Maintained
10733 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10734 F:      arch/m68k/hp300/
10735
10736 M88DS3103 MEDIA DRIVER
10737 M:      Antti Palosaari <[email protected]>
10738 L:      [email protected]
10739 S:      Maintained
10740 W:      https://linuxtv.org
10741 W:      http://palosaari.fi/linux/
10742 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10743 T:      git git://linuxtv.org/anttip/media_tree.git
10744 F:      drivers/media/dvb-frontends/m88ds3103*
10745
10746 M88RS2000 MEDIA DRIVER
10747 M:      Malcolm Priestley <[email protected]>
10748 L:      [email protected]
10749 S:      Maintained
10750 W:      https://linuxtv.org
10751 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10752 F:      drivers/media/dvb-frontends/m88rs2000*
10753
10754 MA901 MASTERKIT USB FM RADIO DRIVER
10755 M:      Alexey Klimov <[email protected]>
10756 L:      [email protected]
10757 S:      Maintained
10758 T:      git git://linuxtv.org/media_tree.git
10759 F:      drivers/media/radio/radio-ma901.c
10760
10761 MAC80211
10762 M:      Johannes Berg <[email protected]>
10763 L:      [email protected]
10764 S:      Maintained
10765 W:      https://wireless.wiki.kernel.org/
10766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10768 F:      Documentation/networking/mac80211-injection.rst
10769 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10770 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10771 F:      include/net/mac80211.h
10772 F:      net/mac80211/
10773
10774 MAILBOX API
10775 M:      Jassi Brar <[email protected]>
10776 L:      [email protected]
10777 S:      Maintained
10778 F:      drivers/mailbox/
10779 F:      include/linux/mailbox_client.h
10780 F:      include/linux/mailbox_controller.h
10781 F:      Documentation/devicetree/bindings/mailbox/
10782
10783 MAILBOX ARM MHUv2
10784 M:      Viresh Kumar <[email protected]>
10785 M:      Tushar Khandelwal <[email protected]>
10786 L:      [email protected]
10787 S:      Maintained
10788 F:      drivers/mailbox/arm_mhuv2.c
10789 F:      include/linux/mailbox/arm_mhuv2_message.h
10790 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
10791
10792 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10793 M:      Michael Kerrisk <[email protected]>
10794 L:      [email protected]
10795 S:      Maintained
10796 W:      http://www.kernel.org/doc/man-pages
10797
10798 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10799 M:      Rahul Bedarkar <[email protected]>
10800 L:      [email protected]
10801 S:      Maintained
10802 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10803
10804 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10805 M:      Andrew Lunn <[email protected]>
10806 M:      Vivien Didelot <[email protected]>
10807 L:      [email protected]
10808 S:      Maintained
10809 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10810 F:      Documentation/networking/devlink/mv88e6xxx.rst
10811 F:      drivers/net/dsa/mv88e6xxx/
10812 F:      include/linux/platform_data/mv88e6xxx.h
10813
10814 MARVELL ARMADA 3700 PHY DRIVERS
10815 M:      Miquel Raynal <[email protected]>
10816 S:      Maintained
10817 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10818 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10819 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10820 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10821
10822 MARVELL ARMADA DRM SUPPORT
10823 M:      Russell King <[email protected]>
10824 S:      Maintained
10825 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10826 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10827 F:      Documentation/devicetree/bindings/display/armada/
10828 F:      drivers/gpu/drm/armada/
10829 F:      include/uapi/drm/armada_drm.h
10830
10831 MARVELL CRYPTO DRIVER
10832 M:      Boris Brezillon <[email protected]>
10833 M:      Arnaud Ebalard <[email protected]>
10834 M:      Srujana Challa <[email protected]>
10835 L:      [email protected]
10836 S:      Maintained
10837 F:      drivers/crypto/marvell/
10838 F:      include/linux/soc/marvell/octeontx2/
10839
10840 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10841 M:      Mirko Lindner <[email protected]>
10842 M:      Stephen Hemminger <[email protected]>
10843 L:      [email protected]
10844 S:      Maintained
10845 F:      drivers/net/ethernet/marvell/sk*
10846
10847 MARVELL LIBERTAS WIRELESS DRIVER
10848 L:      [email protected]
10849 S:      Orphan
10850 F:      drivers/net/wireless/marvell/libertas/
10851
10852 MARVELL MACCHIATOBIN SUPPORT
10853 M:      Russell King <[email protected]>
10854 L:      [email protected]
10855 S:      Maintained
10856 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10857
10858 MARVELL MV643XX ETHERNET DRIVER
10859 M:      Sebastian Hesselbarth <[email protected]>
10860 L:      [email protected]
10861 S:      Maintained
10862 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10863 F:      include/linux/mv643xx.h
10864
10865 MARVELL MV88X3310 PHY DRIVER
10866 M:      Russell King <[email protected]>
10867 M:      Marek Behun <[email protected]>
10868 L:      [email protected]
10869 S:      Maintained
10870 F:      drivers/net/phy/marvell10g.c
10871
10872 MARVELL MVEBU THERMAL DRIVER
10873 M:      Miquel Raynal <[email protected]>
10874 S:      Maintained
10875 F:      drivers/thermal/armada_thermal.c
10876
10877 MARVELL MVNETA ETHERNET DRIVER
10878 M:      Thomas Petazzoni <[email protected]>
10879 L:      [email protected]
10880 S:      Maintained
10881 F:      drivers/net/ethernet/marvell/mvneta.*
10882
10883 MARVELL MVPP2 ETHERNET DRIVER
10884 M:      Marcin Wojtas <[email protected]>
10885 M:      Russell King <[email protected]>
10886 L:      [email protected]
10887 S:      Maintained
10888 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
10889 F:      drivers/net/ethernet/marvell/mvpp2/
10890
10891 MARVELL MWIFIEX WIRELESS DRIVER
10892 M:      Amitkumar Karwar <[email protected]>
10893 M:      Ganapathi Bhat <[email protected]>
10894 M:      Sharvari Harisangam <[email protected]>
10895 M:      Xinming Hu <[email protected]>
10896 L:      [email protected]
10897 S:      Maintained
10898 F:      drivers/net/wireless/marvell/mwifiex/
10899
10900 MARVELL MWL8K WIRELESS DRIVER
10901 M:      Lennert Buytenhek <[email protected]>
10902 L:      [email protected]
10903 S:      Odd Fixes
10904 F:      drivers/net/wireless/marvell/mwl8k.c
10905
10906 MARVELL NAND CONTROLLER DRIVER
10907 M:      Miquel Raynal <[email protected]>
10908 L:      [email protected]
10909 S:      Maintained
10910 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10911 F:      drivers/mtd/nand/raw/marvell_nand.c
10912
10913 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10914 M:      Sunil Goutham <[email protected]>
10915 M:      Geetha sowjanya <[email protected]>
10916 M:      Subbaraya Sundeep <[email protected]>
10917 M:      hariprasad <[email protected]>
10918 L:      [email protected]
10919 S:      Supported
10920 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10921 F:      include/linux/soc/marvell/octeontx2/
10922
10923 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10924 M:      Sunil Goutham <[email protected]>
10925 M:      Linu Cherian <[email protected]>
10926 M:      Geetha sowjanya <[email protected]>
10927 M:      Jerin Jacob <[email protected]>
10928 M:      hariprasad <[email protected]>
10929 M:      Subbaraya Sundeep <[email protected]>
10930 L:      [email protected]
10931 S:      Supported
10932 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10933 F:      drivers/net/ethernet/marvell/octeontx2/af/
10934
10935 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10936 M:      Vadym Kochan <[email protected]>
10937 M:      Taras Chornyi <[email protected]>
10938 S:      Supported
10939 W:      https://github.com/Marvell-switching/switchdev-prestera
10940 F:      drivers/net/ethernet/marvell/prestera/
10941
10942 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10943 M:      Nicolas Pitre <[email protected]>
10944 S:      Odd Fixes
10945 F:      drivers/mmc/host/mvsdio.*
10946
10947 MARVELL USB MDIO CONTROLLER DRIVER
10948 M:      Tobias Waldekranz <[email protected]>
10949 L:      [email protected]
10950 S:      Maintained
10951 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10952 F:      drivers/net/mdio/mdio-mvusb.c
10953
10954 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10955 M:      Hu Ziji <[email protected]>
10956 L:      [email protected]
10957 S:      Supported
10958 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10959 F:      drivers/mmc/host/sdhci-xenon*
10960
10961 MATROX FRAMEBUFFER DRIVER
10962 L:      [email protected]
10963 S:      Orphan
10964 F:      drivers/video/fbdev/matrox/matroxfb_*
10965 F:      include/uapi/linux/matroxfb.h
10966
10967 MAX15301 DRIVER
10968 M:      Daniel Nilsson <[email protected]>
10969 L:      [email protected]
10970 S:      Maintained
10971 F:      Documentation/hwmon/max15301.rst
10972 F:      drivers/hwmon/pmbus/max15301.c
10973
10974 MAX16065 HARDWARE MONITOR DRIVER
10975 M:      Guenter Roeck <[email protected]>
10976 L:      [email protected]
10977 S:      Maintained
10978 F:      Documentation/hwmon/max16065.rst
10979 F:      drivers/hwmon/max16065.c
10980
10981 MAX2175 SDR TUNER DRIVER
10982 M:      Ramesh Shanmugasundaram <[email protected]>
10983 L:      [email protected]
10984 S:      Maintained
10985 T:      git git://linuxtv.org/media_tree.git
10986 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10987 F:      Documentation/userspace-api/media/drivers/max2175.rst
10988 F:      drivers/media/i2c/max2175*
10989 F:      include/uapi/linux/max2175.h
10990
10991 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10992 L:      [email protected]
10993 S:      Orphan
10994 F:      Documentation/hwmon/max6650.rst
10995 F:      drivers/hwmon/max6650.c
10996
10997 MAX6697 HARDWARE MONITOR DRIVER
10998 M:      Guenter Roeck <[email protected]>
10999 L:      [email protected]
11000 S:      Maintained
11001 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11002 F:      Documentation/hwmon/max6697.rst
11003 F:      drivers/hwmon/max6697.c
11004 F:      include/linux/platform_data/max6697.h
11005
11006 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11007 M:      Jacopo Mondi <[email protected]>
11008 M:      Kieran Bingham <[email protected]>
11009 M:      Laurent Pinchart <[email protected]>
11010 M:      Niklas Söderlund <[email protected]>
11011 L:      [email protected]
11012 S:      Maintained
11013 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11014 F:      drivers/media/i2c/max9286.c
11015
11016 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11017 M:      Peter Rosin <[email protected]>
11018 L:      [email protected] (moderated for non-subscribers)
11019 S:      Maintained
11020 F:      Documentation/devicetree/bindings/sound/max9860.txt
11021 F:      sound/soc/codecs/max9860.*
11022
11023 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11024 M:      Andreas Klinger <[email protected]>
11025 L:      [email protected]
11026 S:      Maintained
11027 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11028 F:      drivers/iio/proximity/mb1232.c
11029
11030 MAXIM MAX77650 PMIC MFD DRIVER
11031 M:      Bartosz Golaszewski <[email protected]>
11032 L:      [email protected]
11033 S:      Maintained
11034 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11035 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11036 F:      drivers/gpio/gpio-max77650.c
11037 F:      drivers/input/misc/max77650-onkey.c
11038 F:      drivers/leds/leds-max77650.c
11039 F:      drivers/mfd/max77650.c
11040 F:      drivers/power/supply/max77650-charger.c
11041 F:      drivers/regulator/max77650-regulator.c
11042 F:      include/linux/mfd/max77650.h
11043
11044 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11045 M:      Javier Martinez Canillas <[email protected]>
11046 L:      [email protected]
11047 S:      Supported
11048 F:      Documentation/devicetree/bindings/*/*max77802.txt
11049 F:      drivers/regulator/max77802-regulator.c
11050 F:      include/dt-bindings/*/*max77802.h
11051
11052 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11053 M:      Krzysztof Kozlowski <[email protected]>
11054 M:      Bartlomiej Zolnierkiewicz <[email protected]>
11055 L:      [email protected]
11056 S:      Supported
11057 F:      drivers/power/supply/max14577_charger.c
11058 F:      drivers/power/supply/max77693_charger.c
11059
11060 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11061 M:      Chanwoo Choi <[email protected]>
11062 M:      Krzysztof Kozlowski <[email protected]>
11063 M:      Bartlomiej Zolnierkiewicz <[email protected]>
11064 L:      [email protected]
11065 S:      Supported
11066 F:      Documentation/devicetree/bindings/*/max77686.txt
11067 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11068 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11069 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11070 F:      drivers/*/max14577*.c
11071 F:      drivers/*/max77686*.c
11072 F:      drivers/*/max77693*.c
11073 F:      drivers/clk/clk-max77686.c
11074 F:      drivers/extcon/extcon-max14577.c
11075 F:      drivers/extcon/extcon-max77693.c
11076 F:      drivers/rtc/rtc-max77686.c
11077 F:      include/linux/mfd/max14577*.h
11078 F:      include/linux/mfd/max77686*.h
11079 F:      include/linux/mfd/max77693*.h
11080
11081 MAXIRADIO FM RADIO RECEIVER DRIVER
11082 M:      Hans Verkuil <[email protected]>
11083 L:      [email protected]
11084 S:      Maintained
11085 W:      https://linuxtv.org
11086 T:      git git://linuxtv.org/media_tree.git
11087 F:      drivers/media/radio/radio-maxiradio*
11088
11089 MCAN MMIO DEVICE DRIVER
11090 M:      Chandrasekar Ramakrishnan <[email protected]>
11091 L:      [email protected]
11092 S:      Maintained
11093 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11094 F:      drivers/net/can/m_can/m_can.c
11095 F:      drivers/net/can/m_can/m_can.h
11096 F:      drivers/net/can/m_can/m_can_platform.c
11097
11098 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11099 M:      Rishi Gupta <[email protected]>
11100 L:      [email protected]
11101 L:      [email protected]
11102 S:      Maintained
11103 F:      drivers/hid/hid-mcp2221.c
11104
11105 MCP251XFD SPI-CAN NETWORK DRIVER
11106 M:      Marc Kleine-Budde <[email protected]>
11107 M:      Manivannan Sadhasivam <[email protected]>
11108 R:      Thomas Kopp <[email protected]>
11109 L:      [email protected]
11110 S:      Maintained
11111 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11112 F:      drivers/net/can/spi/mcp251xfd/
11113
11114 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11115 M:      Peter Rosin <[email protected]>
11116 L:      [email protected]
11117 S:      Maintained
11118 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11119 F:      drivers/iio/potentiometer/mcp4018.c
11120 F:      drivers/iio/potentiometer/mcp4531.c
11121
11122 MCR20A IEEE-802.15.4 RADIO DRIVER
11123 M:      Xue Liu <[email protected]>
11124 L:      [email protected]
11125 S:      Maintained
11126 W:      https://github.com/xueliu/mcr20a-linux
11127 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11128 F:      drivers/net/ieee802154/mcr20a.c
11129 F:      drivers/net/ieee802154/mcr20a.h
11130
11131 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11132 M:      William Breathitt Gray <[email protected]>
11133 L:      [email protected]
11134 S:      Maintained
11135 F:      drivers/iio/dac/cio-dac.c
11136
11137 MEDIA CONTROLLER FRAMEWORK
11138 M:      Sakari Ailus <[email protected]>
11139 M:      Laurent Pinchart <[email protected]>
11140 L:      [email protected]
11141 S:      Supported
11142 W:      https://www.linuxtv.org
11143 T:      git git://linuxtv.org/media_tree.git
11144 F:      drivers/media/mc/
11145 F:      include/media/media-*.h
11146 F:      include/uapi/linux/media.h
11147
11148 MEDIA DRIVER FOR FREESCALE IMX PXP
11149 M:      Philipp Zabel <[email protected]>
11150 L:      [email protected]
11151 S:      Maintained
11152 T:      git git://linuxtv.org/media_tree.git
11153 F:      drivers/media/platform/imx-pxp.[ch]
11154
11155 MEDIA DRIVERS FOR ASCOT2E
11156 M:      Sergey Kozlov <[email protected]>
11157 M:      Abylay Ospan <[email protected]>
11158 L:      [email protected]
11159 S:      Supported
11160 W:      https://linuxtv.org
11161 W:      http://netup.tv/
11162 T:      git git://linuxtv.org/media_tree.git
11163 F:      drivers/media/dvb-frontends/ascot2e*
11164
11165 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11166 M:      Jasmin Jessich <[email protected]>
11167 L:      [email protected]
11168 S:      Maintained
11169 W:      https://linuxtv.org
11170 T:      git git://linuxtv.org/media_tree.git
11171 F:      drivers/media/dvb-frontends/cxd2099*
11172
11173 MEDIA DRIVERS FOR CXD2841ER
11174 M:      Sergey Kozlov <[email protected]>
11175 M:      Abylay Ospan <[email protected]>
11176 L:      [email protected]
11177 S:      Supported
11178 W:      https://linuxtv.org
11179 W:      http://netup.tv/
11180 T:      git git://linuxtv.org/media_tree.git
11181 F:      drivers/media/dvb-frontends/cxd2841er*
11182
11183 MEDIA DRIVERS FOR CXD2880
11184 M:      Yasunari Takiguchi <[email protected]>
11185 L:      [email protected]
11186 S:      Supported
11187 W:      http://linuxtv.org/
11188 T:      git git://linuxtv.org/media_tree.git
11189 F:      drivers/media/dvb-frontends/cxd2880/*
11190 F:      drivers/media/spi/cxd2880*
11191
11192 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11193 L:      [email protected]
11194 S:      Orphan
11195 W:      https://linuxtv.org
11196 T:      git git://linuxtv.org/media_tree.git
11197 F:      drivers/media/pci/ddbridge/*
11198
11199 MEDIA DRIVERS FOR FREESCALE IMX
11200 M:      Steve Longerbeam <[email protected]>
11201 M:      Philipp Zabel <[email protected]>
11202 L:      [email protected]
11203 S:      Maintained
11204 T:      git git://linuxtv.org/media_tree.git
11205 F:      Documentation/admin-guide/media/imx.rst
11206 F:      Documentation/devicetree/bindings/media/imx.txt
11207 F:      drivers/staging/media/imx/
11208 F:      include/linux/imx-media.h
11209 F:      include/media/imx.h
11210
11211 MEDIA DRIVERS FOR FREESCALE IMX7
11212 M:      Rui Miguel Silva <[email protected]>
11213 L:      [email protected]
11214 S:      Maintained
11215 T:      git git://linuxtv.org/media_tree.git
11216 F:      Documentation/admin-guide/media/imx7.rst
11217 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11218 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11219 F:      drivers/staging/media/imx/imx7-media-csi.c
11220 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11221
11222 MEDIA DRIVERS FOR HELENE
11223 M:      Abylay Ospan <[email protected]>
11224 L:      [email protected]
11225 S:      Supported
11226 W:      https://linuxtv.org
11227 W:      http://netup.tv/
11228 T:      git git://linuxtv.org/media_tree.git
11229 F:      drivers/media/dvb-frontends/helene*
11230
11231 MEDIA DRIVERS FOR HORUS3A
11232 M:      Sergey Kozlov <[email protected]>
11233 M:      Abylay Ospan <[email protected]>
11234 L:      [email protected]
11235 S:      Supported
11236 W:      https://linuxtv.org
11237 W:      http://netup.tv/
11238 T:      git git://linuxtv.org/media_tree.git
11239 F:      drivers/media/dvb-frontends/horus3a*
11240
11241 MEDIA DRIVERS FOR LNBH25
11242 M:      Sergey Kozlov <[email protected]>
11243 M:      Abylay Ospan <[email protected]>
11244 L:      [email protected]
11245 S:      Supported
11246 W:      https://linuxtv.org
11247 W:      http://netup.tv/
11248 T:      git git://linuxtv.org/media_tree.git
11249 F:      drivers/media/dvb-frontends/lnbh25*
11250
11251 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11252 L:      [email protected]
11253 S:      Orphan
11254 W:      https://linuxtv.org
11255 T:      git git://linuxtv.org/media_tree.git
11256 F:      drivers/media/dvb-frontends/mxl5xx*
11257
11258 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11259 M:      Sergey Kozlov <[email protected]>
11260 M:      Abylay Ospan <[email protected]>
11261 L:      [email protected]
11262 S:      Supported
11263 W:      https://linuxtv.org
11264 W:      http://netup.tv/
11265 T:      git git://linuxtv.org/media_tree.git
11266 F:      drivers/media/pci/netup_unidvb/*
11267
11268 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11269 M:      Dmitry Osipenko <[email protected]>
11270 L:      [email protected]
11271 L:      [email protected]
11272 S:      Maintained
11273 T:      git git://linuxtv.org/media_tree.git
11274 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11275 F:      drivers/staging/media/tegra-vde/
11276
11277 MEDIA DRIVERS FOR RENESAS - CEU
11278 M:      Jacopo Mondi <[email protected]>
11279 L:      [email protected]
11280 L:      [email protected]
11281 S:      Supported
11282 T:      git git://linuxtv.org/media_tree.git
11283 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11284 F:      drivers/media/platform/renesas-ceu.c
11285 F:      include/media/drv-intf/renesas-ceu.h
11286
11287 MEDIA DRIVERS FOR RENESAS - DRIF
11288 M:      Fabrizio Castro <[email protected]>
11289 L:      [email protected]
11290 L:      [email protected]
11291 S:      Supported
11292 T:      git git://linuxtv.org/media_tree.git
11293 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11294 F:      drivers/media/platform/rcar_drif.c
11295
11296 MEDIA DRIVERS FOR RENESAS - FCP
11297 M:      Laurent Pinchart <[email protected]>
11298 L:      [email protected]
11299 L:      [email protected]
11300 S:      Supported
11301 T:      git git://linuxtv.org/media_tree.git
11302 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11303 F:      drivers/media/platform/rcar-fcp.c
11304 F:      include/media/rcar-fcp.h
11305
11306 MEDIA DRIVERS FOR RENESAS - FDP1
11307 M:      Kieran Bingham <[email protected]>
11308 L:      [email protected]
11309 L:      [email protected]
11310 S:      Supported
11311 T:      git git://linuxtv.org/media_tree.git
11312 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11313 F:      drivers/media/platform/rcar_fdp1.c
11314
11315 MEDIA DRIVERS FOR RENESAS - VIN
11316 M:      Niklas Söderlund <[email protected]>
11317 L:      [email protected]
11318 L:      [email protected]
11319 S:      Supported
11320 T:      git git://linuxtv.org/media_tree.git
11321 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11322 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11323 F:      drivers/media/platform/rcar-vin/
11324
11325 MEDIA DRIVERS FOR RENESAS - VSP1
11326 M:      Laurent Pinchart <[email protected]>
11327 M:      Kieran Bingham <[email protected]>
11328 L:      [email protected]
11329 L:      [email protected]
11330 S:      Supported
11331 T:      git git://linuxtv.org/media_tree.git
11332 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11333 F:      drivers/media/platform/vsp1/
11334
11335 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11336 L:      [email protected]
11337 S:      Orphan
11338 W:      https://linuxtv.org
11339 T:      git git://linuxtv.org/media_tree.git
11340 F:      drivers/media/dvb-frontends/stv0910*
11341
11342 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11343 L:      [email protected]
11344 S:      Orphan
11345 W:      https://linuxtv.org
11346 T:      git git://linuxtv.org/media_tree.git
11347 F:      drivers/media/dvb-frontends/stv6111*
11348
11349 MEDIA DRIVERS FOR STM32 - DCMI
11350 M:      Hugues Fruchet <[email protected]>
11351 L:      [email protected]
11352 S:      Supported
11353 T:      git git://linuxtv.org/media_tree.git
11354 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11355 F:      drivers/media/platform/stm32/stm32-dcmi.c
11356
11357 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11358 M:      Mauro Carvalho Chehab <[email protected]>
11359 L:      [email protected]
11360 S:      Maintained
11361 W:      https://linuxtv.org
11362 Q:      http://patchwork.kernel.org/project/linux-media/list/
11363 T:      git git://linuxtv.org/media_tree.git
11364 F:      Documentation/admin-guide/media/
11365 F:      Documentation/devicetree/bindings/media/
11366 F:      Documentation/driver-api/media/
11367 F:      Documentation/userspace-api/media/
11368 F:      drivers/media/
11369 F:      drivers/staging/media/
11370 F:      include/linux/platform_data/media/
11371 F:      include/media/
11372 F:      include/uapi/linux/dvb/
11373 F:      include/uapi/linux/ivtv*
11374 F:      include/uapi/linux/media.h
11375 F:      include/uapi/linux/meye.h
11376 F:      include/uapi/linux/uvcvideo.h
11377 F:      include/uapi/linux/v4l2-*
11378 F:      include/uapi/linux/videodev2.h
11379
11380 MEDIATEK BLUETOOTH DRIVER
11381 M:      Sean Wang <[email protected]>
11382 L:      [email protected]
11383 L:      [email protected] (moderated for non-subscribers)
11384 S:      Maintained
11385 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11386 F:      drivers/bluetooth/btmtkuart.c
11387
11388 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11389 M:      Sean Wang <[email protected]>
11390 L:      [email protected]
11391 S:      Maintained
11392 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11393 F:      drivers/power/reset/mt6323-poweroff.c
11394
11395 MEDIATEK CIR DRIVER
11396 M:      Sean Wang <[email protected]>
11397 S:      Maintained
11398 F:      drivers/media/rc/mtk-cir.c
11399
11400 MEDIATEK DMA DRIVER
11401 M:      Sean Wang <[email protected]>
11402 L:      [email protected]
11403 L:      [email protected] (moderated for non-subscribers)
11404 L:      [email protected] (moderated for non-subscribers)
11405 S:      Maintained
11406 F:      Documentation/devicetree/bindings/dma/mtk-*
11407 F:      drivers/dma/mediatek/
11408
11409 MEDIATEK ETHERNET DRIVER
11410 M:      Felix Fietkau <[email protected]>
11411 M:      John Crispin <[email protected]>
11412 M:      Sean Wang <[email protected]>
11413 M:      Mark Lee <[email protected]>
11414 L:      [email protected]
11415 S:      Maintained
11416 F:      drivers/net/ethernet/mediatek/
11417
11418 MEDIATEK I2C CONTROLLER DRIVER
11419 M:      Qii Wang <[email protected]>
11420 L:      [email protected]
11421 S:      Maintained
11422 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11423 F:      drivers/i2c/busses/i2c-mt65xx.c
11424
11425 MEDIATEK IOMMU DRIVER
11426 M:      Yong Wu <[email protected]>
11427 L:      [email protected]
11428 L:      [email protected] (moderated for non-subscribers)
11429 S:      Supported
11430 F:      Documentation/devicetree/bindings/iommu/mediatek*
11431 F:      drivers/iommu/mtk_iommu*
11432 F:      include/dt-bindings/memory/mt*-port.h
11433
11434 MEDIATEK JPEG DRIVER
11435 M:      Rick Chang <[email protected]>
11436 M:      Bin Liu <[email protected]>
11437 S:      Supported
11438 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11439 F:      drivers/media/platform/mtk-jpeg/
11440
11441 MEDIATEK MDP DRIVER
11442 M:      Minghsiu Tsai <[email protected]>
11443 M:      Houlong Wei <[email protected]>
11444 M:      Andrew-CT Chen <[email protected]>
11445 S:      Supported
11446 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11447 F:      drivers/media/platform/mtk-mdp/
11448 F:      drivers/media/platform/mtk-vpu/
11449
11450 MEDIATEK MEDIA DRIVER
11451 M:      Tiffany Lin <[email protected]>
11452 M:      Andrew-CT Chen <[email protected]>
11453 S:      Supported
11454 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11455 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11456 F:      drivers/media/platform/mtk-vcodec/
11457 F:      drivers/media/platform/mtk-vpu/
11458
11459 MEDIATEK MMC/SD/SDIO DRIVER
11460 M:      Chaotian Jing <[email protected]>
11461 S:      Maintained
11462 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11463 F:      drivers/mmc/host/mtk-sd.c
11464
11465 MEDIATEK MT76 WIRELESS LAN DRIVER
11466 M:      Felix Fietkau <[email protected]>
11467 M:      Lorenzo Bianconi <[email protected]>
11468 R:      Ryder Lee <[email protected]>
11469 L:      [email protected]
11470 S:      Maintained
11471 F:      drivers/net/wireless/mediatek/mt76/
11472
11473 MEDIATEK MT7601U WIRELESS LAN DRIVER
11474 M:      Jakub Kicinski <[email protected]>
11475 L:      [email protected]
11476 S:      Maintained
11477 F:      drivers/net/wireless/mediatek/mt7601u/
11478
11479 MEDIATEK MT7621 CLOCK DRIVER
11480 M:      Sergio Paracuellos <[email protected]>
11481 S:      Maintained
11482 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11483 F:      drivers/clk/ralink/clk-mt7621.c
11484
11485 MEDIATEK MT7621/28/88 I2C DRIVER
11486 M:      Stefan Roese <[email protected]>
11487 L:      [email protected]
11488 S:      Maintained
11489 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11490 F:      drivers/i2c/busses/i2c-mt7621.c
11491
11492 MEDIATEK MT7621 PHY PCI DRIVER
11493 M:      Sergio Paracuellos <[email protected]>
11494 S:      Maintained
11495 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11496 F:      drivers/phy/ralink/phy-mt7621-pci.c
11497
11498 MEDIATEK NAND CONTROLLER DRIVER
11499 L:      [email protected]
11500 S:      Orphan
11501 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11502 F:      drivers/mtd/nand/raw/mtk_*
11503
11504 MEDIATEK PMIC LED DRIVER
11505 M:      Sean Wang <[email protected]>
11506 S:      Maintained
11507 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11508 F:      drivers/leds/leds-mt6323.c
11509
11510 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11511 M:      Sean Wang <[email protected]>
11512 S:      Maintained
11513 F:      drivers/char/hw_random/mtk-rng.c
11514
11515 MEDIATEK SWITCH DRIVER
11516 M:      Sean Wang <[email protected]>
11517 M:      Landen Chao <[email protected]>
11518 L:      [email protected]
11519 S:      Maintained
11520 F:      drivers/net/dsa/mt7530.*
11521 F:      net/dsa/tag_mtk.c
11522
11523 MEDIATEK USB3 DRD IP DRIVER
11524 M:      Chunfeng Yun <[email protected]>
11525 L:      [email protected]
11526 L:      [email protected] (moderated for non-subscribers)
11527 L:      [email protected] (moderated for non-subscribers)
11528 S:      Maintained
11529 F:      Documentation/devicetree/bindings/usb/mediatek,*
11530 F:      drivers/usb/host/xhci-mtk*
11531 F:      drivers/usb/mtu3/
11532
11533 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11534 M:      Peter Senna Tschudin <[email protected]>
11535 M:      Martin Donnelly <[email protected]>
11536 M:      Martyn Welch <[email protected]>
11537 S:      Maintained
11538 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11539 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11540
11541 MEGARAID SCSI/SAS DRIVERS
11542 M:      Kashyap Desai <[email protected]>
11543 M:      Sumit Saxena <[email protected]>
11544 M:      Shivasharan S <[email protected]>
11545 L:      [email protected]
11546 L:      [email protected]
11547 S:      Maintained
11548 W:      http://www.avagotech.com/support/
11549 F:      Documentation/scsi/megaraid.rst
11550 F:      drivers/scsi/megaraid.*
11551 F:      drivers/scsi/megaraid/
11552
11553 MELEXIS MLX90614 DRIVER
11554 M:      Crt Mori <[email protected]>
11555 L:      [email protected]
11556 S:      Supported
11557 W:      http://www.melexis.com
11558 F:      drivers/iio/temperature/mlx90614.c
11559
11560 MELEXIS MLX90632 DRIVER
11561 M:      Crt Mori <[email protected]>
11562 L:      [email protected]
11563 S:      Supported
11564 W:      http://www.melexis.com
11565 F:      drivers/iio/temperature/mlx90632.c
11566
11567 MELFAS MIP4 TOUCHSCREEN DRIVER
11568 M:      Sangwon Jee <[email protected]>
11569 S:      Supported
11570 W:      http://www.melfas.com
11571 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11572 F:      drivers/input/touchscreen/melfas_mip4.c
11573
11574 MELLANOX BLUEFIELD I2C DRIVER
11575 M:      Khalil Blaiech <[email protected]>
11576 L:      [email protected]
11577 S:      Supported
11578 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11579 F:      drivers/i2c/busses/i2c-mlxbf.c
11580
11581 MELLANOX ETHERNET DRIVER (mlx4_en)
11582 M:      Tariq Toukan <[email protected]>
11583 L:      [email protected]
11584 S:      Supported
11585 W:      http://www.mellanox.com
11586 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11587 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11588
11589 MELLANOX ETHERNET DRIVER (mlx5e)
11590 M:      Saeed Mahameed <[email protected]>
11591 L:      [email protected]
11592 S:      Supported
11593 W:      http://www.mellanox.com
11594 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11595 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11596
11597 MELLANOX ETHERNET INNOVA DRIVERS
11598 R:      Boris Pismenny <[email protected]>
11599 L:      [email protected]
11600 S:      Supported
11601 W:      http://www.mellanox.com
11602 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11603 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11604 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11605 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11606 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11607
11608 MELLANOX ETHERNET SWITCH DRIVERS
11609 M:      Jiri Pirko <[email protected]>
11610 M:      Ido Schimmel <[email protected]>
11611 L:      [email protected]
11612 S:      Supported
11613 W:      http://www.mellanox.com
11614 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11615 F:      drivers/net/ethernet/mellanox/mlxsw/
11616 F:      tools/testing/selftests/drivers/net/mlxsw/
11617
11618 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11619 M:      [email protected]
11620 L:      [email protected]
11621 S:      Supported
11622 W:      http://www.mellanox.com
11623 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11624 F:      drivers/net/ethernet/mellanox/mlxfw/
11625
11626 MELLANOX HARDWARE PLATFORM SUPPORT
11627 M:      Hans de Goede <[email protected]>
11628 M:      Mark Gross <[email protected]>
11629 M:      Vadim Pasternak <[email protected]>
11630 L:      [email protected]
11631 S:      Supported
11632 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11633 F:      drivers/platform/mellanox/
11634 F:      include/linux/platform_data/mlxreg.h
11635
11636 MELLANOX MLX4 core VPI driver
11637 M:      Tariq Toukan <[email protected]>
11638 L:      [email protected]
11639 L:      [email protected]
11640 S:      Supported
11641 W:      http://www.mellanox.com
11642 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11643 F:      drivers/net/ethernet/mellanox/mlx4/
11644 F:      include/linux/mlx4/
11645
11646 MELLANOX MLX4 IB driver
11647 M:      Yishai Hadas <[email protected]>
11648 L:      [email protected]
11649 S:      Supported
11650 W:      http://www.mellanox.com
11651 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11652 F:      drivers/infiniband/hw/mlx4/
11653 F:      include/linux/mlx4/
11654 F:      include/uapi/rdma/mlx4-abi.h
11655
11656 MELLANOX MLX5 core VPI driver
11657 M:      Saeed Mahameed <[email protected]>
11658 M:      Leon Romanovsky <[email protected]>
11659 L:      [email protected]
11660 L:      [email protected]
11661 S:      Supported
11662 W:      http://www.mellanox.com
11663 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11664 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11665 F:      drivers/net/ethernet/mellanox/mlx5/core/
11666 F:      include/linux/mlx5/
11667
11668 MELLANOX MLX5 IB driver
11669 M:      Leon Romanovsky <[email protected]>
11670 L:      [email protected]
11671 S:      Supported
11672 W:      http://www.mellanox.com
11673 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11674 F:      drivers/infiniband/hw/mlx5/
11675 F:      include/linux/mlx5/
11676 F:      include/uapi/rdma/mlx5-abi.h
11677
11678 MELLANOX MLXCPLD I2C AND MUX DRIVER
11679 M:      Vadim Pasternak <[email protected]>
11680 M:      Michael Shych <[email protected]>
11681 L:      [email protected]
11682 S:      Supported
11683 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11684 F:      drivers/i2c/busses/i2c-mlxcpld.c
11685 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11686
11687 MELLANOX MLXCPLD LED DRIVER
11688 M:      Vadim Pasternak <[email protected]>
11689 L:      [email protected]
11690 S:      Supported
11691 F:      Documentation/leds/leds-mlxcpld.rst
11692 F:      drivers/leds/leds-mlxcpld.c
11693 F:      drivers/leds/leds-mlxreg.c
11694
11695 MELLANOX PLATFORM DRIVER
11696 M:      Vadim Pasternak <[email protected]>
11697 L:      [email protected]
11698 S:      Supported
11699 F:      drivers/platform/x86/mlx-platform.c
11700
11701 MEMBARRIER SUPPORT
11702 M:      Mathieu Desnoyers <[email protected]>
11703 M:      "Paul E. McKenney" <[email protected]>
11704 L:      [email protected]
11705 S:      Supported
11706 F:      arch/powerpc/include/asm/membarrier.h
11707 F:      include/uapi/linux/membarrier.h
11708 F:      kernel/sched/membarrier.c
11709
11710 MEMBLOCK
11711 M:      Mike Rapoport <[email protected]>
11712 L:      [email protected]
11713 S:      Maintained
11714 F:      Documentation/core-api/boot-time-mm.rst
11715 F:      include/linux/memblock.h
11716 F:      mm/memblock.c
11717
11718 MEMORY CONTROLLER DRIVERS
11719 M:      Krzysztof Kozlowski <[email protected]>
11720 L:      [email protected]
11721 S:      Maintained
11722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11723 F:      Documentation/devicetree/bindings/memory-controllers/
11724 F:      drivers/memory/
11725 F:      include/dt-bindings/memory/
11726
11727 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11728 M:      Dmitry Osipenko <[email protected]>
11729 L:      [email protected]
11730 L:      [email protected]
11731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11732 S:      Maintained
11733 F:      drivers/devfreq/tegra30-devfreq.c
11734
11735 MEMORY MANAGEMENT
11736 M:      Andrew Morton <[email protected]>
11737 L:      [email protected]
11738 S:      Maintained
11739 W:      http://www.linux-mm.org
11740 T:      quilt https://ozlabs.org/~akpm/mmotm/
11741 T:      quilt https://ozlabs.org/~akpm/mmots/
11742 T:      git git://github.com/hnaz/linux-mm.git
11743 F:      include/linux/gfp.h
11744 F:      include/linux/memory_hotplug.h
11745 F:      include/linux/mm.h
11746 F:      include/linux/mmzone.h
11747 F:      include/linux/pagewalk.h
11748 F:      include/linux/vmalloc.h
11749 F:      mm/
11750
11751 MEMORY TECHNOLOGY DEVICES (MTD)
11752 M:      Miquel Raynal <[email protected]>
11753 M:      Richard Weinberger <[email protected]>
11754 M:      Vignesh Raghavendra <[email protected]>
11755 L:      [email protected]
11756 S:      Maintained
11757 W:      http://www.linux-mtd.infradead.org/
11758 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11759 C:      irc://irc.oftc.net/mtd
11760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11762 F:      Documentation/devicetree/bindings/mtd/
11763 F:      drivers/mtd/
11764 F:      include/linux/mtd/
11765 F:      include/uapi/mtd/
11766
11767 MEN A21 WATCHDOG DRIVER
11768 M:      Johannes Thumshirn <[email protected]>
11769 L:      [email protected]
11770 S:      Maintained
11771 F:      drivers/watchdog/mena21_wdt.c
11772
11773 MEN CHAMELEON BUS (mcb)
11774 M:      Johannes Thumshirn <[email protected]>
11775 S:      Maintained
11776 F:      Documentation/driver-api/men-chameleon-bus.rst
11777 F:      drivers/mcb/
11778 F:      include/linux/mcb.h
11779
11780 MEN F21BMC (Board Management Controller)
11781 M:      Andreas Werner <[email protected]>
11782 S:      Supported
11783 F:      Documentation/hwmon/menf21bmc.rst
11784 F:      drivers/hwmon/menf21bmc_hwmon.c
11785 F:      drivers/leds/leds-menf21bmc.c
11786 F:      drivers/mfd/menf21bmc.c
11787 F:      drivers/watchdog/menf21bmc_wdt.c
11788
11789 MEN Z069 WATCHDOG DRIVER
11790 M:      Johannes Thumshirn <[email protected]>
11791 L:      [email protected]
11792 S:      Maintained
11793 F:      drivers/watchdog/menz69_wdt.c
11794
11795 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11796 M:      Neil Armstrong <[email protected]>
11797 L:      [email protected]
11798 L:      [email protected]
11799 S:      Supported
11800 W:      http://linux-meson.com/
11801 T:      git git://linuxtv.org/media_tree.git
11802 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11803 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11804 F:      drivers/media/cec/platform/meson/ao-cec.c
11805
11806 MESON GE2D DRIVER FOR AMLOGIC SOCS
11807 M:      Neil Armstrong <[email protected]>
11808 L:      [email protected]
11809 L:      [email protected]
11810 S:      Supported
11811 T:      git git://linuxtv.org/media_tree.git
11812 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11813 F:      drivers/media/platform/meson/ge2d/
11814
11815 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11816 M:      Liang Yang <[email protected]>
11817 L:      [email protected]
11818 S:      Maintained
11819 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11820 F:      drivers/mtd/nand/raw/meson_*
11821
11822 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11823 M:      Neil Armstrong <[email protected]>
11824 L:      [email protected]
11825 L:      [email protected]
11826 S:      Supported
11827 T:      git git://linuxtv.org/media_tree.git
11828 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11829 F:      drivers/staging/media/meson/vdec/
11830
11831 METHODE UDPU SUPPORT
11832 M:      Vladimir Vid <[email protected]>
11833 S:      Maintained
11834 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11835
11836 MHI BUS
11837 M:      Manivannan Sadhasivam <[email protected]>
11838 M:      Hemant Kumar <[email protected]>
11839 L:      [email protected]
11840 S:      Maintained
11841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11842 F:      Documentation/ABI/stable/sysfs-bus-mhi
11843 F:      Documentation/mhi/
11844 F:      drivers/bus/mhi/
11845 F:      include/linux/mhi.h
11846
11847 MICROBLAZE ARCHITECTURE
11848 M:      Michal Simek <[email protected]>
11849 S:      Supported
11850 W:      http://www.monstr.eu/fdt/
11851 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11852 F:      arch/microblaze/
11853
11854 MICROCHIP AT91 DMA DRIVERS
11855 M:      Ludovic Desroches <[email protected]>
11856 M:      Tudor Ambarus <[email protected]>
11857 L:      [email protected] (moderated for non-subscribers)
11858 L:      [email protected]
11859 S:      Supported
11860 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11861 F:      drivers/dma/at_hdmac.c
11862 F:      drivers/dma/at_hdmac_regs.h
11863 F:      drivers/dma/at_xdmac.c
11864 F:      include/dt-bindings/dma/at91.h
11865
11866 MICROCHIP AT91 SERIAL DRIVER
11867 M:      Richard Genoud <[email protected]>
11868 S:      Maintained
11869 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11870 F:      drivers/tty/serial/atmel_serial.c
11871 F:      drivers/tty/serial/atmel_serial.h
11872
11873 MICROCHIP AT91 USART MFD DRIVER
11874 M:      Radu Pirea <[email protected]>
11875 L:      [email protected]
11876 S:      Supported
11877 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11878 F:      drivers/mfd/at91-usart.c
11879 F:      include/dt-bindings/mfd/at91-usart.h
11880
11881 MICROCHIP AT91 USART SPI DRIVER
11882 M:      Radu Pirea <[email protected]>
11883 L:      [email protected]
11884 S:      Supported
11885 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11886 F:      drivers/spi/spi-at91-usart.c
11887
11888 MICROCHIP AUDIO ASOC DRIVERS
11889 M:      Codrin Ciubotariu <[email protected]>
11890 L:      [email protected] (moderated for non-subscribers)
11891 S:      Supported
11892 F:      sound/soc/atmel
11893
11894 MICROCHIP ECC DRIVER
11895 M:      Tudor Ambarus <[email protected]>
11896 L:      [email protected]
11897 S:      Maintained
11898 F:      drivers/crypto/atmel-ecc.*
11899
11900 MICROCHIP I2C DRIVER
11901 M:      Codrin Ciubotariu <[email protected]>
11902 L:      [email protected]
11903 S:      Supported
11904 F:      drivers/i2c/busses/i2c-at91-*.c
11905 F:      drivers/i2c/busses/i2c-at91.h
11906
11907 MICROCHIP ISC DRIVER
11908 M:      Eugen Hristev <[email protected]>
11909 L:      [email protected]
11910 S:      Supported
11911 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11912 F:      drivers/media/platform/atmel/atmel-isc-base.c
11913 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11914 F:      drivers/media/platform/atmel/atmel-isc.h
11915 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11916 F:      include/linux/atmel-isc-media.h
11917
11918 MICROCHIP ISI DRIVER
11919 M:      Eugen Hristev <[email protected]>
11920 L:      [email protected]
11921 S:      Supported
11922 F:      drivers/media/platform/atmel/atmel-isi.c
11923 F:      drivers/media/platform/atmel/atmel-isi.h
11924
11925 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11926 M:      Woojung Huh <[email protected]>
11927 M:      [email protected]
11928 L:      [email protected]
11929 S:      Maintained
11930 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
11931 F:      drivers/net/dsa/microchip/*
11932 F:      include/linux/platform_data/microchip-ksz.h
11933 F:      net/dsa/tag_ksz.c
11934
11935 MICROCHIP LAN743X ETHERNET DRIVER
11936 M:      Bryan Whitehead <[email protected]>
11937 M:      [email protected]
11938 L:      [email protected]
11939 S:      Maintained
11940 F:      drivers/net/ethernet/microchip/lan743x_*
11941
11942 MICROCHIP LCDFB DRIVER
11943 M:      Nicolas Ferre <[email protected]>
11944 L:      [email protected]
11945 S:      Maintained
11946 F:      drivers/video/fbdev/atmel_lcdfb.c
11947 F:      include/video/atmel_lcdc.h
11948
11949 MICROCHIP MCP16502 PMIC DRIVER
11950 M:      Claudiu Beznea <[email protected]>
11951 L:      [email protected] (moderated for non-subscribers)
11952 S:      Supported
11953 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11954 F:      drivers/regulator/mcp16502.c
11955
11956 MICROCHIP MCP3911 ADC DRIVER
11957 M:      Marcus Folkesson <[email protected]>
11958 M:      Kent Gustavsson <[email protected]>
11959 L:      [email protected]
11960 S:      Supported
11961 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11962 F:      drivers/iio/adc/mcp3911.c
11963
11964 MICROCHIP MMC/SD/SDIO MCI DRIVER
11965 M:      Ludovic Desroches <[email protected]>
11966 S:      Maintained
11967 F:      drivers/mmc/host/atmel-mci.c
11968
11969 MICROCHIP NAND DRIVER
11970 M:      Tudor Ambarus <[email protected]>
11971 L:      [email protected]
11972 S:      Supported
11973 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11974 F:      drivers/mtd/nand/raw/atmel/*
11975
11976 MICROCHIP PWM DRIVER
11977 M:      Claudiu Beznea <[email protected]>
11978 L:      [email protected] (moderated for non-subscribers)
11979 L:      [email protected]
11980 S:      Supported
11981 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11982 F:      drivers/pwm/pwm-atmel.c
11983
11984 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11985 M:      Eugen Hristev <[email protected]>
11986 L:      [email protected]
11987 S:      Supported
11988 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
11989 F:      drivers/iio/adc/at91-sama5d2_adc.c
11990 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11991
11992 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11993 M:      Claudiu Beznea <[email protected]>
11994 S:      Supported
11995 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11996
11997 MICROCHIP SPI DRIVER
11998 M:      Tudor Ambarus <[email protected]>
11999 S:      Supported
12000 F:      drivers/spi/spi-atmel.*
12001
12002 MICROCHIP SSC DRIVER
12003 M:      Codrin Ciubotariu <[email protected]>
12004 L:      [email protected] (moderated for non-subscribers)
12005 S:      Supported
12006 F:      drivers/misc/atmel-ssc.c
12007 F:      include/linux/atmel-ssc.h
12008
12009 MICROCHIP USB251XB DRIVER
12010 M:      Richard Leitner <[email protected]>
12011 L:      [email protected]
12012 S:      Maintained
12013 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12014 F:      drivers/usb/misc/usb251xb.c
12015
12016 MICROCHIP USBA UDC DRIVER
12017 M:      Cristian Birsan <[email protected]>
12018 L:      [email protected] (moderated for non-subscribers)
12019 S:      Supported
12020 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12021
12022 MICROCHIP WILC1000 WIFI DRIVER
12023 M:      Ajay Singh <[email protected]>
12024 M:      Claudiu Beznea <[email protected]>
12025 L:      [email protected]
12026 S:      Supported
12027 F:      drivers/net/wireless/microchip/wilc1000/
12028
12029 MICROSEMI MIPS SOCS
12030 M:      Alexandre Belloni <[email protected]>
12031 M:      [email protected]
12032 L:      [email protected]
12033 S:      Supported
12034 F:      Documentation/devicetree/bindings/mips/mscc.txt
12035 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12036 F:      arch/mips/boot/dts/mscc/
12037 F:      arch/mips/configs/generic/board-ocelot.config
12038 F:      arch/mips/generic/board-ocelot.c
12039
12040 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12041 M:      Don Brace <[email protected]>
12042 L:      [email protected]
12043 L:      [email protected]
12044 S:      Supported
12045 F:      Documentation/scsi/smartpqi.rst
12046 F:      drivers/scsi/smartpqi/Kconfig
12047 F:      drivers/scsi/smartpqi/Makefile
12048 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12049 F:      include/linux/cciss*.h
12050 F:      include/uapi/linux/cciss*.h
12051
12052 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12053 M:      Maximilian Luz <[email protected]>
12054 L:      [email protected]
12055 L:      [email protected]
12056 S:      Maintained
12057 F:      drivers/power/supply/surface_battery.c
12058 F:      drivers/power/supply/surface_charger.c
12059
12060 MICROSOFT SURFACE DTX DRIVER
12061 M:      Maximilian Luz <[email protected]>
12062 L:      [email protected]
12063 S:      Maintained
12064 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12065 F:      drivers/platform/surface/surface_dtx.c
12066 F:      include/uapi/linux/surface_aggregator/dtx.h
12067
12068 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12069 M:      Maximilian Luz <[email protected]>
12070 L:      [email protected]
12071 S:      Maintained
12072 F:      drivers/platform/surface/surface_gpe.c
12073
12074 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12075 M:      Hans de Goede <[email protected]>
12076 M:      Mark Gross <[email protected]>
12077 M:      Maximilian Luz <[email protected]>
12078 L:      [email protected]
12079 S:      Maintained
12080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12081 F:      drivers/platform/surface/
12082
12083 MICROSOFT SURFACE HOT-PLUG DRIVER
12084 M:      Maximilian Luz <[email protected]>
12085 L:      [email protected]
12086 S:      Maintained
12087 F:      drivers/platform/surface/surface_hotplug.c
12088
12089 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12090 M:      Maximilian Luz <[email protected]>
12091 L:      [email protected]
12092 S:      Maintained
12093 F:      drivers/platform/surface/surface_platform_profile.c
12094
12095 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12096 M:      Chen Yu <[email protected]>
12097 L:      [email protected]
12098 S:      Supported
12099 F:      drivers/platform/surface/surfacepro3_button.c
12100
12101 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12102 M:      Maximilian Luz <[email protected]>
12103 S:      Maintained
12104 W:      https://github.com/linux-surface/surface-aggregator-module
12105 C:      irc://chat.freenode.net/##linux-surface
12106 F:      Documentation/driver-api/surface_aggregator/
12107 F:      drivers/platform/surface/aggregator/
12108 F:      drivers/platform/surface/surface_acpi_notify.c
12109 F:      drivers/platform/surface/surface_aggregator_cdev.c
12110 F:      drivers/platform/surface/surface_aggregator_registry.c
12111 F:      include/linux/surface_acpi_notify.h
12112 F:      include/linux/surface_aggregator/
12113 F:      include/uapi/linux/surface_aggregator/
12114
12115 MICROTEK X6 SCANNER
12116 M:      Oliver Neukum <[email protected]>
12117 S:      Maintained
12118 F:      drivers/usb/image/microtek.*
12119
12120 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12121 M:      Luka Kovacic <[email protected]>
12122 M:      Luka Perkov <[email protected]>
12123 S:      Maintained
12124 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12125 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12126 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12127 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12128 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12129 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12130
12131 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12132 M:      Sakari Ailus <[email protected]>
12133 L:      [email protected]
12134 S:      Maintained
12135 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12136 F:      Documentation/driver-api/media/drivers/ccs/
12137 F:      Documentation/userspace-api/media/drivers/ccs.rst
12138 F:      drivers/media/i2c/ccs-pll.c
12139 F:      drivers/media/i2c/ccs-pll.h
12140 F:      drivers/media/i2c/ccs/
12141 F:      include/uapi/linux/ccs.h
12142 F:      include/uapi/linux/smiapp.h
12143
12144 MIPS
12145 M:      Thomas Bogendoerfer <[email protected]>
12146 L:      [email protected]
12147 S:      Maintained
12148 W:      http://www.linux-mips.org/
12149 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12151 F:      Documentation/devicetree/bindings/mips/
12152 F:      Documentation/mips/
12153 F:      arch/mips/
12154 F:      drivers/platform/mips/
12155
12156 MIPS BOSTON DEVELOPMENT BOARD
12157 M:      Paul Burton <[email protected]>
12158 L:      [email protected]
12159 S:      Maintained
12160 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12161 F:      arch/mips/boot/dts/img/boston.dts
12162 F:      arch/mips/configs/generic/board-boston.config
12163 F:      drivers/clk/imgtec/clk-boston.c
12164 F:      include/dt-bindings/clock/boston-clock.h
12165
12166 MIPS CORE DRIVERS
12167 M:      Thomas Bogendoerfer <[email protected]>
12168 M:      Serge Semin <[email protected]>
12169 L:      [email protected]
12170 S:      Supported
12171 F:      drivers/bus/mips_cdmm.c
12172 F:      drivers/clocksource/mips-gic-timer.c
12173 F:      drivers/cpuidle/cpuidle-cps.c
12174 F:      drivers/irqchip/irq-mips-cpu.c
12175 F:      drivers/irqchip/irq-mips-gic.c
12176
12177 MIPS GENERIC PLATFORM
12178 M:      Paul Burton <[email protected]>
12179 L:      [email protected]
12180 S:      Supported
12181 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12182 F:      arch/mips/generic/
12183 F:      arch/mips/tools/generic-board-config.sh
12184
12185 MIPS RINT INSTRUCTION EMULATION
12186 M:      Aleksandar Markovic <[email protected]>
12187 L:      [email protected]
12188 S:      Supported
12189 F:      arch/mips/math-emu/dp_rint.c
12190 F:      arch/mips/math-emu/sp_rint.c
12191
12192 MIPS/LOONGSON1 ARCHITECTURE
12193 M:      Keguang Zhang <[email protected]>
12194 L:      [email protected]
12195 S:      Maintained
12196 F:      arch/mips/include/asm/mach-loongson32/
12197 F:      arch/mips/loongson32/
12198 F:      drivers/*/*/*loongson1*
12199 F:      drivers/*/*loongson1*
12200
12201 MIPS/LOONGSON2EF ARCHITECTURE
12202 M:      Jiaxun Yang <[email protected]>
12203 L:      [email protected]
12204 S:      Maintained
12205 F:      arch/mips/include/asm/mach-loongson2ef/
12206 F:      arch/mips/loongson2ef/
12207 F:      drivers/cpufreq/loongson2_cpufreq.c
12208
12209 MIPS/LOONGSON64 ARCHITECTURE
12210 M:      Huacai Chen <[email protected]>
12211 M:      Jiaxun Yang <[email protected]>
12212 L:      [email protected]
12213 S:      Maintained
12214 F:      arch/mips/include/asm/mach-loongson64/
12215 F:      arch/mips/loongson64/
12216 F:      drivers/irqchip/irq-loongson*
12217 F:      drivers/platform/mips/cpu_hwmon.c
12218
12219 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12220 M:      Hans Verkuil <[email protected]>
12221 L:      [email protected]
12222 S:      Odd Fixes
12223 W:      https://linuxtv.org
12224 T:      git git://linuxtv.org/media_tree.git
12225 F:      drivers/media/radio/radio-miropcm20*
12226
12227 MMP SUPPORT
12228 R:      Lubomir Rintel <[email protected]>
12229 L:      [email protected] (moderated for non-subscribers)
12230 S:      Odd Fixes
12231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12232 F:      arch/arm/boot/dts/mmp*
12233 F:      arch/arm/mach-mmp/
12234 F:      include/linux/soc/mmp/
12235
12236 MMP USB PHY DRIVERS
12237 R:      Lubomir Rintel <[email protected]>
12238 L:      [email protected] (moderated for non-subscribers)
12239 S:      Maintained
12240 F:      drivers/phy/marvell/phy-mmp3-usb.c
12241 F:      drivers/phy/marvell/phy-pxa-usb.c
12242
12243 MMU GATHER AND TLB INVALIDATION
12244 M:      Will Deacon <[email protected]>
12245 M:      "Aneesh Kumar K.V" <[email protected]>
12246 M:      Andrew Morton <[email protected]>
12247 M:      Nick Piggin <[email protected]>
12248 M:      Peter Zijlstra <[email protected]>
12249 L:      [email protected]
12250 L:      [email protected]
12251 S:      Maintained
12252 F:      arch/*/include/asm/tlb.h
12253 F:      include/asm-generic/tlb.h
12254 F:      mm/mmu_gather.c
12255
12256 MN88472 MEDIA DRIVER
12257 M:      Antti Palosaari <[email protected]>
12258 L:      [email protected]
12259 S:      Maintained
12260 W:      https://linuxtv.org
12261 W:      http://palosaari.fi/linux/
12262 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12263 F:      drivers/media/dvb-frontends/mn88472*
12264
12265 MN88473 MEDIA DRIVER
12266 M:      Antti Palosaari <[email protected]>
12267 L:      [email protected]
12268 S:      Maintained
12269 W:      https://linuxtv.org
12270 W:      http://palosaari.fi/linux/
12271 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12272 F:      drivers/media/dvb-frontends/mn88473*
12273
12274 MODULE SUPPORT
12275 M:      Jessica Yu <[email protected]>
12276 S:      Maintained
12277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12278 F:      include/linux/module.h
12279 F:      kernel/module.c
12280
12281 MONOLITHIC POWER SYSTEM PMIC DRIVER
12282 M:      Saravanan Sekar <[email protected]>
12283 S:      Maintained
12284 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12285 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12286 F:      drivers/iio/adc/mp2629_adc.c
12287 F:      drivers/mfd/mp2629.c
12288 F:      drivers/power/supply/mp2629_charger.c
12289 F:      drivers/regulator/mp5416.c
12290 F:      drivers/regulator/mpq7920.c
12291 F:      drivers/regulator/mpq7920.h
12292 F:      include/linux/mfd/mp2629.h
12293
12294 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12295 S:      Orphan
12296 W:      http://popies.net/meye/
12297 F:      Documentation/userspace-api/media/drivers/meye*
12298 F:      drivers/media/pci/meye/
12299 F:      include/uapi/linux/meye.h
12300
12301 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12302 S:      Orphan
12303 F:      Documentation/driver-api/serial/moxa-smartio.rst
12304 F:      drivers/tty/mxser.*
12305
12306 MR800 AVERMEDIA USB FM RADIO DRIVER
12307 M:      Alexey Klimov <[email protected]>
12308 L:      [email protected]
12309 S:      Maintained
12310 T:      git git://linuxtv.org/media_tree.git
12311 F:      drivers/media/radio/radio-mr800.c
12312
12313 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12314 M:      Alan Ott <[email protected]>
12315 L:      [email protected]
12316 S:      Maintained
12317 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12318 F:      drivers/net/ieee802154/mrf24j40.c
12319
12320 MSI LAPTOP SUPPORT
12321 M:      "Lee, Chun-Yi" <[email protected]>
12322 L:      [email protected]
12323 S:      Maintained
12324 F:      drivers/platform/x86/msi-laptop.c
12325
12326 MSI WMI SUPPORT
12327 L:      [email protected]
12328 S:      Orphan
12329 F:      drivers/platform/x86/msi-wmi.c
12330
12331 MSI001 MEDIA DRIVER
12332 M:      Antti Palosaari <[email protected]>
12333 L:      [email protected]
12334 S:      Maintained
12335 W:      https://linuxtv.org
12336 W:      http://palosaari.fi/linux/
12337 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12338 T:      git git://linuxtv.org/anttip/media_tree.git
12339 F:      drivers/media/tuners/msi001*
12340
12341 MSI2500 MEDIA DRIVER
12342 M:      Antti Palosaari <[email protected]>
12343 L:      [email protected]
12344 S:      Maintained
12345 W:      https://linuxtv.org
12346 W:      http://palosaari.fi/linux/
12347 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12348 T:      git git://linuxtv.org/anttip/media_tree.git
12349 F:      drivers/media/usb/msi2500/
12350
12351 MSTAR INTERRUPT CONTROLLER DRIVER
12352 M:      Mark-PK Tsai <[email protected]>
12353 M:      Daniel Palmer <[email protected]>
12354 S:      Maintained
12355 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12356 F:      drivers/irqchip/irq-mst-intc.c
12357
12358 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12359 M:      Robert Jarzmik <[email protected]>
12360 L:      [email protected]
12361 S:      Maintained
12362 F:      drivers/mtd/devices/docg3*
12363
12364 MT9M032 APTINA SENSOR DRIVER
12365 M:      Laurent Pinchart <[email protected]>
12366 L:      [email protected]
12367 S:      Maintained
12368 T:      git git://linuxtv.org/media_tree.git
12369 F:      drivers/media/i2c/mt9m032.c
12370 F:      include/media/i2c/mt9m032.h
12371
12372 MT9P031 APTINA CAMERA SENSOR
12373 M:      Laurent Pinchart <[email protected]>
12374 L:      [email protected]
12375 S:      Maintained
12376 T:      git git://linuxtv.org/media_tree.git
12377 F:      drivers/media/i2c/mt9p031.c
12378 F:      include/media/i2c/mt9p031.h
12379
12380 MT9T001 APTINA CAMERA SENSOR
12381 M:      Laurent Pinchart <[email protected]>
12382 L:      [email protected]
12383 S:      Maintained
12384 T:      git git://linuxtv.org/media_tree.git
12385 F:      drivers/media/i2c/mt9t001.c
12386 F:      include/media/i2c/mt9t001.h
12387
12388 MT9T112 APTINA CAMERA SENSOR
12389 M:      Jacopo Mondi <[email protected]>
12390 L:      [email protected]
12391 S:      Odd Fixes
12392 T:      git git://linuxtv.org/media_tree.git
12393 F:      drivers/media/i2c/mt9t112.c
12394 F:      include/media/i2c/mt9t112.h
12395
12396 MT9V032 APTINA CAMERA SENSOR
12397 M:      Laurent Pinchart <[email protected]>
12398 L:      [email protected]
12399 S:      Maintained
12400 T:      git git://linuxtv.org/media_tree.git
12401 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12402 F:      drivers/media/i2c/mt9v032.c
12403 F:      include/media/i2c/mt9v032.h
12404
12405 MT9V111 APTINA CAMERA SENSOR
12406 M:      Jacopo Mondi <[email protected]>
12407 L:      [email protected]
12408 S:      Maintained
12409 T:      git git://linuxtv.org/media_tree.git
12410 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12411 F:      drivers/media/i2c/mt9v111.c
12412
12413 MULTIFUNCTION DEVICES (MFD)
12414 M:      Lee Jones <[email protected]>
12415 S:      Supported
12416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12417 F:      Documentation/devicetree/bindings/mfd/
12418 F:      drivers/mfd/
12419 F:      include/dt-bindings/mfd/
12420 F:      include/linux/mfd/
12421
12422 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12423 S:      Orphan
12424 F:      drivers/mmc/host/mmc_spi.c
12425 F:      include/linux/spi/mmc_spi.h
12426
12427 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12428 M:      Ulf Hansson <[email protected]>
12429 L:      [email protected]
12430 S:      Maintained
12431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12432 F:      Documentation/devicetree/bindings/mmc/
12433 F:      drivers/mmc/
12434 F:      include/linux/mmc/
12435 F:      include/uapi/linux/mmc/
12436
12437 MULTIPLEXER SUBSYSTEM
12438 M:      Peter Rosin <[email protected]>
12439 S:      Maintained
12440 F:      Documentation/ABI/testing/sysfs-class-mux*
12441 F:      Documentation/devicetree/bindings/mux/
12442 F:      drivers/mux/
12443 F:      include/dt-bindings/mux/
12444 F:      include/linux/mux/
12445
12446 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12447 M:      Bin Liu <[email protected]>
12448 L:      [email protected]
12449 S:      Maintained
12450 F:      drivers/usb/musb/
12451
12452 MXL301RF MEDIA DRIVER
12453 M:      Akihiro Tsukada <[email protected]>
12454 L:      [email protected]
12455 S:      Odd Fixes
12456 F:      drivers/media/tuners/mxl301rf*
12457
12458 MXL5007T MEDIA DRIVER
12459 M:      Michael Krufky <[email protected]>
12460 L:      [email protected]
12461 S:      Maintained
12462 W:      https://linuxtv.org
12463 W:      http://github.com/mkrufky
12464 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12465 T:      git git://linuxtv.org/mkrufky/tuners.git
12466 F:      drivers/media/tuners/mxl5007t.*
12467
12468 MXSFB DRM DRIVER
12469 M:      Marek Vasut <[email protected]>
12470 M:      Stefan Agner <[email protected]>
12471 L:      [email protected]
12472 S:      Supported
12473 T:      git git://anongit.freedesktop.org/drm/drm-misc
12474 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12475 F:      drivers/gpu/drm/mxsfb/
12476
12477 MYLEX DAC960 PCI RAID Controller
12478 M:      Hannes Reinecke <[email protected]>
12479 L:      [email protected]
12480 S:      Supported
12481 F:      drivers/scsi/myrb.*
12482 F:      drivers/scsi/myrs.*
12483
12484 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12485 M:      Chris Lee <[email protected]>
12486 L:      [email protected]
12487 S:      Supported
12488 W:      https://www.cspi.com/ethernet-products/support/downloads/
12489 F:      drivers/net/ethernet/myricom/myri10ge/
12490
12491 NAND FLASH SUBSYSTEM
12492 M:      Miquel Raynal <[email protected]>
12493 R:      Richard Weinberger <[email protected]>
12494 L:      [email protected]
12495 S:      Maintained
12496 W:      http://www.linux-mtd.infradead.org/
12497 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12498 C:      irc://irc.oftc.net/mtd
12499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12500 F:      drivers/mtd/nand/
12501 F:      include/linux/mtd/*nand*.h
12502
12503 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12504 M:      Daniel Mack <[email protected]>
12505 L:      [email protected] (moderated for non-subscribers)
12506 S:      Maintained
12507 W:      http://www.native-instruments.com
12508 F:      sound/usb/caiaq/
12509
12510 NATSEMI ETHERNET DRIVER (DP8381x)
12511 S:      Orphan
12512 F:      drivers/net/ethernet/natsemi/natsemi.c
12513
12514 NCR 5380 SCSI DRIVERS
12515 M:      Finn Thain <[email protected]>
12516 M:      Michael Schmitz <[email protected]>
12517 L:      [email protected]
12518 S:      Maintained
12519 F:      Documentation/scsi/g_NCR5380.rst
12520 F:      drivers/scsi/NCR5380.*
12521 F:      drivers/scsi/arm/cumana_1.c
12522 F:      drivers/scsi/arm/oak.c
12523 F:      drivers/scsi/atari_scsi.*
12524 F:      drivers/scsi/dmx3191d.c
12525 F:      drivers/scsi/g_NCR5380.*
12526 F:      drivers/scsi/mac_scsi.*
12527 F:      drivers/scsi/sun3_scsi.*
12528 F:      drivers/scsi/sun3_scsi_vme.c
12529
12530 NCSI LIBRARY
12531 M:      Samuel Mendoza-Jonas <[email protected]>
12532 S:      Maintained
12533 F:      net/ncsi/
12534
12535 NCT6775 HARDWARE MONITOR DRIVER
12536 M:      Guenter Roeck <[email protected]>
12537 L:      [email protected]
12538 S:      Maintained
12539 F:      Documentation/hwmon/nct6775.rst
12540 F:      drivers/hwmon/nct6775.c
12541
12542 NETDEVSIM
12543 M:      Jakub Kicinski <[email protected]>
12544 S:      Maintained
12545 F:      drivers/net/netdevsim/*
12546
12547 NETEM NETWORK EMULATOR
12548 M:      Stephen Hemminger <[email protected]>
12549 L:      [email protected]
12550 S:      Maintained
12551 F:      net/sched/sch_netem.c
12552
12553 NETERION 10GbE DRIVERS (s2io/vxge)
12554 M:      Jon Mason <[email protected]>
12555 L:      [email protected]
12556 S:      Supported
12557 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12558 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12559 F:      drivers/net/ethernet/neterion/
12560
12561 NETFILTER
12562 M:      Pablo Neira Ayuso <[email protected]>
12563 M:      Jozsef Kadlecsik <[email protected]>
12564 M:      Florian Westphal <[email protected]>
12565 L:      [email protected]
12566 L:      [email protected]
12567 S:      Maintained
12568 W:      http://www.netfilter.org/
12569 W:      http://www.iptables.org/
12570 W:      http://www.nftables.org/
12571 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12574 F:      include/linux/netfilter*
12575 F:      include/linux/netfilter/
12576 F:      include/net/netfilter/
12577 F:      include/uapi/linux/netfilter*
12578 F:      include/uapi/linux/netfilter/
12579 F:      net/*/netfilter.c
12580 F:      net/*/netfilter/
12581 F:      net/bridge/br_netfilter*.c
12582 F:      net/netfilter/
12583
12584 NETROM NETWORK LAYER
12585 M:      Ralf Baechle <[email protected]>
12586 L:      [email protected]
12587 S:      Maintained
12588 W:      http://www.linux-ax25.org/
12589 F:      include/net/netrom.h
12590 F:      include/uapi/linux/netrom.h
12591 F:      net/netrom/
12592
12593 NETRONIX EMBEDDED CONTROLLER
12594 M:      Jonathan Neuschäfer <[email protected]>
12595 S:      Maintained
12596 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
12597 F:      drivers/mfd/ntxec.c
12598 F:      drivers/pwm/pwm-ntxec.c
12599 F:      drivers/rtc/rtc-ntxec.c
12600 F:      include/linux/mfd/ntxec.h
12601
12602 NETRONOME ETHERNET DRIVERS
12603 M:      Simon Horman <[email protected]>
12604 R:      Jakub Kicinski <[email protected]>
12605 L:      [email protected]
12606 S:      Maintained
12607 F:      drivers/net/ethernet/netronome/
12608
12609 NETWORK BLOCK DEVICE (NBD)
12610 M:      Josef Bacik <[email protected]>
12611 L:      [email protected]
12612 L:      [email protected]
12613 S:      Maintained
12614 F:      Documentation/admin-guide/blockdev/nbd.rst
12615 F:      drivers/block/nbd.c
12616 F:      include/trace/events/nbd.h
12617 F:      include/uapi/linux/nbd.h
12618
12619 NETWORK DROP MONITOR
12620 M:      Neil Horman <[email protected]>
12621 L:      [email protected]
12622 S:      Maintained
12623 W:      https://fedorahosted.org/dropwatch/
12624 F:      include/uapi/linux/net_dropmon.h
12625 F:      net/core/drop_monitor.c
12626
12627 NETWORKING DRIVERS
12628 M:      "David S. Miller" <[email protected]>
12629 M:      Jakub Kicinski <[email protected]>
12630 L:      [email protected]
12631 S:      Maintained
12632 W:      http://www.linuxfoundation.org/en/Net
12633 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12636 F:      Documentation/devicetree/bindings/net/
12637 F:      drivers/connector/
12638 F:      drivers/net/
12639 F:      include/linux/etherdevice.h
12640 F:      include/linux/fcdevice.h
12641 F:      include/linux/fddidevice.h
12642 F:      include/linux/hippidevice.h
12643 F:      include/linux/if_*
12644 F:      include/linux/inetdevice.h
12645 F:      include/linux/netdevice.h
12646 F:      include/uapi/linux/if_*
12647 F:      include/uapi/linux/netdevice.h
12648
12649 NETWORKING DRIVERS (WIRELESS)
12650 M:      Kalle Valo <[email protected]>
12651 L:      [email protected]
12652 S:      Maintained
12653 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12656 F:      Documentation/devicetree/bindings/net/wireless/
12657 F:      drivers/net/wireless/
12658
12659 NETWORKING [DSA]
12660 M:      Andrew Lunn <[email protected]>
12661 M:      Vivien Didelot <[email protected]>
12662 M:      Florian Fainelli <[email protected]>
12663 M:      Vladimir Oltean <[email protected]>
12664 S:      Maintained
12665 F:      Documentation/devicetree/bindings/net/dsa/
12666 F:      drivers/net/dsa/
12667 F:      include/linux/dsa/
12668 F:      include/linux/platform_data/dsa.h
12669 F:      include/net/dsa.h
12670 F:      net/dsa/
12671
12672 NETWORKING [GENERAL]
12673 M:      "David S. Miller" <[email protected]>
12674 M:      Jakub Kicinski <[email protected]>
12675 L:      [email protected]
12676 S:      Maintained
12677 W:      http://www.linuxfoundation.org/en/Net
12678 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12679 B:      mailto:[email protected]
12680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12682 F:      Documentation/networking/
12683 F:      include/linux/in.h
12684 F:      include/linux/net.h
12685 F:      include/linux/netdevice.h
12686 F:      include/net/
12687 F:      include/uapi/linux/in.h
12688 F:      include/uapi/linux/net.h
12689 F:      include/uapi/linux/net_namespace.h
12690 F:      include/uapi/linux/netdevice.h
12691 F:      lib/net_utils.c
12692 F:      lib/random32.c
12693 F:      net/
12694 F:      tools/testing/selftests/net/
12695
12696 NETWORKING [IPSEC]
12697 M:      Steffen Klassert <[email protected]>
12698 M:      Herbert Xu <[email protected]>
12699 M:      "David S. Miller" <[email protected]>
12700 L:      [email protected]
12701 S:      Maintained
12702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12704 F:      include/net/xfrm.h
12705 F:      include/uapi/linux/xfrm.h
12706 F:      net/ipv4/ah4.c
12707 F:      net/ipv4/esp4*
12708 F:      net/ipv4/ip_vti.c
12709 F:      net/ipv4/ipcomp.c
12710 F:      net/ipv4/xfrm*
12711 F:      net/ipv6/ah6.c
12712 F:      net/ipv6/esp6*
12713 F:      net/ipv6/ip6_vti.c
12714 F:      net/ipv6/ipcomp6.c
12715 F:      net/ipv6/xfrm*
12716 F:      net/key/
12717 F:      net/xfrm/
12718 F:      tools/testing/selftests/net/ipsec.c
12719
12720 NETWORKING [IPv4/IPv6]
12721 M:      "David S. Miller" <[email protected]>
12722 M:      Hideaki YOSHIFUJI <[email protected]>
12723 M:      David Ahern <[email protected]>
12724 L:      [email protected]
12725 S:      Maintained
12726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12727 F:      arch/x86/net/*
12728 F:      include/net/ip*
12729 F:      net/ipv4/
12730 F:      net/ipv6/
12731
12732 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12733 M:      Paul Moore <[email protected]>
12734 L:      [email protected]
12735 L:      [email protected]
12736 S:      Maintained
12737 W:      https://github.com/netlabel
12738 F:      Documentation/netlabel/
12739 F:      include/net/calipso.h
12740 F:      include/net/cipso_ipv4.h
12741 F:      include/net/netlabel.h
12742 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12743 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12744 F:      net/ipv4/cipso_ipv4.c
12745 F:      net/ipv6/calipso.c
12746 F:      net/netfilter/xt_CONNSECMARK.c
12747 F:      net/netfilter/xt_SECMARK.c
12748 F:      net/netlabel/
12749
12750 NETWORKING [MPTCP]
12751 M:      Mat Martineau <[email protected]>
12752 M:      Matthieu Baerts <[email protected]>
12753 L:      [email protected]
12754 L:      [email protected]
12755 S:      Maintained
12756 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12757 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12758 F:      Documentation/networking/mptcp-sysctl.rst
12759 F:      include/net/mptcp.h
12760 F:      include/trace/events/mptcp.h
12761 F:      include/uapi/linux/mptcp.h
12762 F:      net/mptcp/
12763 F:      tools/testing/selftests/net/mptcp/
12764
12765 NETWORKING [TCP]
12766 M:      Eric Dumazet <[email protected]>
12767 L:      [email protected]
12768 S:      Maintained
12769 F:      include/linux/tcp.h
12770 F:      include/net/tcp.h
12771 F:      include/trace/events/tcp.h
12772 F:      include/uapi/linux/tcp.h
12773 F:      net/ipv4/syncookies.c
12774 F:      net/ipv4/tcp*.c
12775 F:      net/ipv6/syncookies.c
12776 F:      net/ipv6/tcp*.c
12777
12778 NETWORKING [TLS]
12779 M:      Boris Pismenny <[email protected]>
12780 M:      John Fastabend <[email protected]>
12781 M:      Daniel Borkmann <[email protected]>
12782 M:      Jakub Kicinski <[email protected]>
12783 L:      [email protected]
12784 S:      Maintained
12785 F:      include/net/tls.h
12786 F:      include/uapi/linux/tls.h
12787 F:      net/tls/*
12788
12789 NETWORKING [WIRELESS]
12790 L:      [email protected]
12791 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12792
12793 NETXEN (1/10) GbE SUPPORT
12794 M:      Manish Chopra <[email protected]>
12795 M:      Rahul Verma <[email protected]>
12796 M:      [email protected]
12797 L:      [email protected]
12798 S:      Supported
12799 F:      drivers/net/ethernet/qlogic/netxen/
12800
12801 NET_FAILOVER MODULE
12802 M:      Sridhar Samudrala <[email protected]>
12803 L:      [email protected]
12804 S:      Supported
12805 F:      Documentation/networking/net_failover.rst
12806 F:      drivers/net/net_failover.c
12807 F:      include/net/net_failover.h
12808
12809 NEXTHOP
12810 M:      David Ahern <[email protected]>
12811 L:      [email protected]
12812 S:      Maintained
12813 F:      include/net/netns/nexthop.h
12814 F:      include/net/nexthop.h
12815 F:      include/uapi/linux/nexthop.h
12816 F:      net/ipv4/nexthop.c
12817
12818 NFC SUBSYSTEM
12819 L:      [email protected]
12820 S:      Orphan
12821 F:      Documentation/devicetree/bindings/net/nfc/
12822 F:      drivers/nfc/
12823 F:      include/linux/platform_data/nfcmrvl.h
12824 F:      include/net/nfc/
12825 F:      include/uapi/linux/nfc.h
12826 F:      net/nfc/
12827
12828 NFC VIRTUAL NCI DEVICE DRIVER
12829 M:      Bongsu Jeon <[email protected]>
12830 L:      [email protected]
12831 L:      [email protected] (moderated for non-subscribers)
12832 S:      Supported
12833 F:      drivers/nfc/virtual_ncidev.c
12834 F:      tools/testing/selftests/nci/
12835
12836 NFS, SUNRPC, AND LOCKD CLIENTS
12837 M:      Trond Myklebust <[email protected]>
12838 M:      Anna Schumaker <[email protected]>
12839 L:      [email protected]
12840 S:      Maintained
12841 W:      http://client.linux-nfs.org
12842 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12843 F:      fs/lockd/
12844 F:      fs/nfs/
12845 F:      fs/nfs_common/
12846 F:      include/linux/lockd/
12847 F:      include/linux/nfs*
12848 F:      include/linux/sunrpc/
12849 F:      include/uapi/linux/nfs*
12850 F:      include/uapi/linux/sunrpc/
12851 F:      net/sunrpc/
12852 F:      Documentation/filesystems/nfs/
12853
12854 NILFS2 FILESYSTEM
12855 M:      Ryusuke Konishi <[email protected]>
12856 L:      [email protected]
12857 S:      Supported
12858 W:      https://nilfs.sourceforge.io/
12859 W:      https://nilfs.osdn.jp/
12860 T:      git git://github.com/konis/nilfs2.git
12861 F:      Documentation/filesystems/nilfs2.rst
12862 F:      fs/nilfs2/
12863 F:      include/trace/events/nilfs2.h
12864 F:      include/uapi/linux/nilfs2_api.h
12865 F:      include/uapi/linux/nilfs2_ondisk.h
12866
12867 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12868 M:      YOKOTA Hiroshi <[email protected]>
12869 S:      Maintained
12870 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12871 F:      Documentation/scsi/NinjaSCSI.rst
12872 F:      drivers/scsi/pcmcia/nsp_*
12873
12874 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12875 M:      GOTO Masanori <[email protected]>
12876 M:      YOKOTA Hiroshi <[email protected]>
12877 S:      Maintained
12878 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12879 F:      Documentation/scsi/NinjaSCSI.rst
12880 F:      drivers/scsi/nsp32*
12881
12882 NIOS2 ARCHITECTURE
12883 M:      Ley Foon Tan <[email protected]>
12884 S:      Maintained
12885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12886 F:      arch/nios2/
12887
12888 NITRO ENCLAVES (NE)
12889 M:      Andra Paraschiv <[email protected]>
12890 M:      Alexandru Vasile <[email protected]>
12891 M:      Alexandru Ciobotaru <[email protected]>
12892 L:      [email protected]
12893 S:      Supported
12894 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12895 F:      Documentation/virt/ne_overview.rst
12896 F:      drivers/virt/nitro_enclaves/
12897 F:      include/linux/nitro_enclaves.h
12898 F:      include/uapi/linux/nitro_enclaves.h
12899 F:      samples/nitro_enclaves/
12900
12901 NOHZ, DYNTICKS SUPPORT
12902 M:      Frederic Weisbecker <[email protected]>
12903 M:      Thomas Gleixner <[email protected]>
12904 M:      Ingo Molnar <[email protected]>
12905 L:      [email protected]
12906 S:      Maintained
12907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12908 F:      include/linux/sched/nohz.h
12909 F:      include/linux/tick.h
12910 F:      kernel/time/tick*.*
12911
12912 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12913 M:      Pavel Machek <[email protected]>
12914 M:      Sakari Ailus <[email protected]>
12915 L:      [email protected]
12916 S:      Maintained
12917 F:      drivers/media/i2c/ad5820.c
12918 F:      drivers/media/i2c/et8ek8
12919
12920 NOKIA N900 POWER SUPPLY DRIVERS
12921 R:      Pali Rohár <[email protected]>
12922 F:      drivers/power/supply/bq2415x_charger.c
12923 F:      drivers/power/supply/bq27xxx_battery.c
12924 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12925 F:      drivers/power/supply/isp1704_charger.c
12926 F:      drivers/power/supply/rx51_battery.c
12927 F:      include/linux/power/bq2415x_charger.h
12928 F:      include/linux/power/bq27xxx_battery.h
12929
12930 NOLIBC HEADER FILE
12931 M:      Willy Tarreau <[email protected]>
12932 S:      Maintained
12933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12934 F:      tools/include/nolibc/
12935
12936 NSDEPS
12937 M:      Matthias Maennich <[email protected]>
12938 S:      Maintained
12939 F:      Documentation/core-api/symbol-namespaces.rst
12940 F:      scripts/nsdeps
12941
12942 NTB AMD DRIVER
12943 M:      Sanjay R Mehta <[email protected]>
12944 M:      Shyam Sundar S K <[email protected]>
12945 L:      [email protected]
12946 S:      Supported
12947 F:      drivers/ntb/hw/amd/
12948
12949 NTB DRIVER CORE
12950 M:      Jon Mason <[email protected]>
12951 M:      Dave Jiang <[email protected]>
12952 M:      Allen Hubbe <[email protected]>
12953 L:      [email protected]
12954 S:      Supported
12955 W:      https://github.com/jonmason/ntb/wiki
12956 T:      git git://github.com/jonmason/ntb.git
12957 F:      drivers/net/ntb_netdev.c
12958 F:      drivers/ntb/
12959 F:      include/linux/ntb.h
12960 F:      include/linux/ntb_transport.h
12961 F:      tools/testing/selftests/ntb/
12962
12963 NTB IDT DRIVER
12964 M:      Serge Semin <[email protected]>
12965 L:      [email protected]
12966 S:      Supported
12967 F:      drivers/ntb/hw/idt/
12968
12969 NTB INTEL DRIVER
12970 M:      Dave Jiang <[email protected]>
12971 L:      [email protected]
12972 S:      Supported
12973 W:      https://github.com/davejiang/linux/wiki
12974 T:      git https://github.com/davejiang/linux.git
12975 F:      drivers/ntb/hw/intel/
12976
12977 NTFS FILESYSTEM
12978 M:      Anton Altaparmakov <[email protected]>
12979 L:      [email protected]
12980 S:      Supported
12981 W:      http://www.tuxera.com/
12982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12983 F:      Documentation/filesystems/ntfs.rst
12984 F:      fs/ntfs/
12985
12986 NUBUS SUBSYSTEM
12987 M:      Finn Thain <[email protected]>
12988 L:      [email protected]
12989 S:      Maintained
12990 F:      arch/*/include/asm/nubus.h
12991 F:      drivers/nubus/
12992 F:      include/linux/nubus.h
12993 F:      include/uapi/linux/nubus.h
12994
12995 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12996 M:      Antonino Daplas <[email protected]>
12997 L:      [email protected]
12998 S:      Maintained
12999 F:      drivers/video/fbdev/nvidia/
13000 F:      drivers/video/fbdev/riva/
13001
13002 NVM EXPRESS DRIVER
13003 M:      Keith Busch <[email protected]>
13004 M:      Jens Axboe <[email protected]>
13005 M:      Christoph Hellwig <[email protected]>
13006 M:      Sagi Grimberg <[email protected]>
13007 L:      [email protected]
13008 S:      Supported
13009 W:      http://git.infradead.org/nvme.git
13010 T:      git://git.infradead.org/nvme.git
13011 F:      drivers/nvme/host/
13012 F:      include/linux/nvme.h
13013 F:      include/uapi/linux/nvme_ioctl.h
13014
13015 NVM EXPRESS FC TRANSPORT DRIVERS
13016 M:      James Smart <[email protected]>
13017 L:      [email protected]
13018 S:      Supported
13019 F:      drivers/nvme/host/fc.c
13020 F:      drivers/nvme/target/fc.c
13021 F:      drivers/nvme/target/fcloop.c
13022 F:      include/linux/nvme-fc-driver.h
13023 F:      include/linux/nvme-fc.h
13024
13025 NVM EXPRESS TARGET DRIVER
13026 M:      Christoph Hellwig <[email protected]>
13027 M:      Sagi Grimberg <[email protected]>
13028 M:      Chaitanya Kulkarni <[email protected]>
13029 L:      [email protected]
13030 S:      Supported
13031 W:      http://git.infradead.org/nvme.git
13032 T:      git://git.infradead.org/nvme.git
13033 F:      drivers/nvme/target/
13034
13035 NVMEM FRAMEWORK
13036 M:      Srinivas Kandagatla <[email protected]>
13037 S:      Maintained
13038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13039 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13040 F:      Documentation/devicetree/bindings/nvmem/
13041 F:      drivers/nvmem/
13042 F:      include/linux/nvmem-consumer.h
13043 F:      include/linux/nvmem-provider.h
13044
13045 NXP C45 TJA11XX PHY DRIVER
13046 M:      Radu Pirea <[email protected]>
13047 L:      [email protected]
13048 S:      Maintained
13049 F:      drivers/net/phy/nxp-c45-tja11xx.c
13050
13051 NXP FSPI DRIVER
13052 M:      Ashish Kumar <[email protected]>
13053 R:      Yogesh Gaur <[email protected]>
13054 L:      [email protected]
13055 S:      Maintained
13056 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13057 F:      drivers/spi/spi-nxp-fspi.c
13058
13059 NXP FXAS21002C DRIVER
13060 M:      Rui Miguel Silva <[email protected]>
13061 L:      [email protected]
13062 S:      Maintained
13063 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13064 F:      drivers/iio/gyro/fxas21002c.h
13065 F:      drivers/iio/gyro/fxas21002c_core.c
13066 F:      drivers/iio/gyro/fxas21002c_i2c.c
13067 F:      drivers/iio/gyro/fxas21002c_spi.c
13068
13069 NXP i.MX CLOCK DRIVERS
13070 M:      Abel Vesa <[email protected]>
13071 L:      [email protected]
13072 L:      [email protected]
13073 S:      Maintained
13074 F:      drivers/clk/imx/
13075
13076 NXP i.MX 8MQ DCSS DRIVER
13077 M:      Laurentiu Palcu <[email protected]>
13078 R:      Lucas Stach <[email protected]>
13079 L:      [email protected]
13080 S:      Maintained
13081 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13082 F:      drivers/gpu/drm/imx/dcss/
13083
13084 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13085 M:      Jagan Teki <[email protected]>
13086 S:      Maintained
13087 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13088 F:      drivers/regulator/pf8x00-regulator.c
13089
13090 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13091 M:      Krzysztof Kozlowski <[email protected]>
13092 L:      [email protected]
13093 S:      Maintained
13094 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13095 F:      drivers/extcon/extcon-ptn5150.c
13096
13097 NXP SGTL5000 DRIVER
13098 M:      Fabio Estevam <[email protected]>
13099 L:      [email protected] (moderated for non-subscribers)
13100 S:      Maintained
13101 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13102 F:      sound/soc/codecs/sgtl5000*
13103
13104 NXP SJA1105 ETHERNET SWITCH DRIVER
13105 M:      Vladimir Oltean <[email protected]>
13106 L:      [email protected]
13107 S:      Maintained
13108 F:      drivers/net/dsa/sja1105
13109
13110 NXP TDA998X DRM DRIVER
13111 M:      Russell King <[email protected]>
13112 S:      Maintained
13113 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13114 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13115 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13116 F:      include/drm/i2c/tda998x.h
13117 F:      include/dt-bindings/display/tda998x.h
13118 K:      "nxp,tda998x"
13119
13120 NXP TFA9879 DRIVER
13121 M:      Peter Rosin <[email protected]>
13122 L:      [email protected] (moderated for non-subscribers)
13123 S:      Maintained
13124 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13125 F:      sound/soc/codecs/tfa9879*
13126
13127 NXP-NCI NFC DRIVER
13128 M:      Clément Perrochaud <[email protected]>
13129 R:      Charles Gorand <[email protected]>
13130 L:      [email protected] (moderated for non-subscribers)
13131 S:      Supported
13132 F:      drivers/nfc/nxp-nci
13133
13134 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13135 M:      Mirela Rabulea <[email protected]>
13136 R:      NXP Linux Team <[email protected]>
13137 L:      [email protected]
13138 S:      Maintained
13139 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13140 F:      drivers/media/platform/imx-jpeg
13141
13142 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13143 M:      Jonas Malaco <[email protected]>
13144 L:      [email protected]
13145 S:      Maintained
13146 F:      Documentation/hwmon/nzxt-kraken2.rst
13147 F:      drivers/hwmon/nzxt-kraken2.c
13148
13149 OBJAGG
13150 M:      Jiri Pirko <[email protected]>
13151 L:      [email protected]
13152 S:      Supported
13153 F:      include/linux/objagg.h
13154 F:      lib/objagg.c
13155 F:      lib/test_objagg.c
13156
13157 OBJTOOL
13158 M:      Josh Poimboeuf <[email protected]>
13159 M:      Peter Zijlstra <[email protected]>
13160 S:      Supported
13161 F:      tools/objtool/
13162 F:      include/linux/objtool.h
13163
13164 OCELOT ETHERNET SWITCH DRIVER
13165 M:      Vladimir Oltean <[email protected]>
13166 M:      Claudiu Manoil <[email protected]>
13167 M:      Alexandre Belloni <[email protected]>
13168 M:      [email protected]
13169 L:      [email protected]
13170 S:      Supported
13171 F:      drivers/net/dsa/ocelot/*
13172 F:      drivers/net/ethernet/mscc/
13173 F:      include/soc/mscc/ocelot*
13174 F:      net/dsa/tag_ocelot.c
13175 F:      net/dsa/tag_ocelot_8021q.c
13176 F:      tools/testing/selftests/drivers/net/ocelot/*
13177
13178 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13179 M:      Frederic Barrat <[email protected]>
13180 M:      Andrew Donnellan <[email protected]>
13181 L:      [email protected]
13182 S:      Supported
13183 F:      Documentation/userspace-api/accelerators/ocxl.rst
13184 F:      arch/powerpc/include/asm/pnv-ocxl.h
13185 F:      arch/powerpc/platforms/powernv/ocxl.c
13186 F:      drivers/misc/ocxl/
13187 F:      include/misc/ocxl*
13188 F:      include/uapi/misc/ocxl.h
13189
13190 OMAP AUDIO SUPPORT
13191 M:      Peter Ujfalusi <[email protected]>
13192 M:      Jarkko Nikula <[email protected]>
13193 L:      [email protected] (moderated for non-subscribers)
13194 L:      [email protected]
13195 S:      Maintained
13196 F:      sound/soc/ti/n810.c
13197 F:      sound/soc/ti/omap*
13198 F:      sound/soc/ti/rx51.c
13199 F:      sound/soc/ti/sdma-pcm.*
13200
13201 OMAP CLOCK FRAMEWORK SUPPORT
13202 M:      Paul Walmsley <[email protected]>
13203 L:      [email protected]
13204 S:      Maintained
13205 F:      arch/arm/*omap*/*clock*
13206
13207 OMAP DEVICE TREE SUPPORT
13208 M:      Benoît Cousson <[email protected]>
13209 M:      Tony Lindgren <[email protected]>
13210 L:      [email protected]
13211 L:      [email protected]
13212 S:      Maintained
13213 F:      arch/arm/boot/dts/*am3*
13214 F:      arch/arm/boot/dts/*am4*
13215 F:      arch/arm/boot/dts/*am5*
13216 F:      arch/arm/boot/dts/*dra7*
13217 F:      arch/arm/boot/dts/*omap*
13218 F:      arch/arm/boot/dts/logicpd-som-lv*
13219 F:      arch/arm/boot/dts/logicpd-torpedo*
13220
13221 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13222 L:      [email protected]
13223 L:      [email protected]
13224 S:      Orphan
13225 F:      Documentation/arm/omap/dss.rst
13226 F:      drivers/video/fbdev/omap2/
13227
13228 OMAP FRAMEBUFFER SUPPORT
13229 L:      [email protected]
13230 L:      [email protected]
13231 S:      Orphan
13232 F:      drivers/video/fbdev/omap/
13233
13234 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13235 M:      Roger Quadros <[email protected]>
13236 M:      Tony Lindgren <[email protected]>
13237 L:      [email protected]
13238 S:      Maintained
13239 F:      arch/arm/mach-omap2/*gpmc*
13240 F:      drivers/memory/omap-gpmc.c
13241
13242 OMAP GPIO DRIVER
13243 M:      Grygorii Strashko <[email protected]>
13244 M:      Santosh Shilimkar <[email protected]>
13245 M:      Kevin Hilman <[email protected]>
13246 L:      [email protected]
13247 S:      Maintained
13248 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
13249 F:      drivers/gpio/gpio-omap.c
13250
13251 OMAP HARDWARE SPINLOCK SUPPORT
13252 M:      Ohad Ben-Cohen <[email protected]>
13253 L:      [email protected]
13254 S:      Maintained
13255 F:      drivers/hwspinlock/omap_hwspinlock.c
13256
13257 OMAP HS MMC SUPPORT
13258 L:      [email protected]
13259 L:      [email protected]
13260 S:      Orphan
13261 F:      drivers/mmc/host/omap_hsmmc.c
13262
13263 OMAP HWMOD DATA
13264 M:      Paul Walmsley <[email protected]>
13265 L:      [email protected]
13266 S:      Maintained
13267 F:      arch/arm/mach-omap2/omap_hwmod*data*
13268
13269 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
13270 M:      Benoît Cousson <[email protected]>
13271 L:      [email protected]
13272 S:      Maintained
13273 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
13274
13275 OMAP HWMOD SUPPORT
13276 M:      Benoît Cousson <[email protected]>
13277 M:      Paul Walmsley <[email protected]>
13278 L:      [email protected]
13279 S:      Maintained
13280 F:      arch/arm/mach-omap2/omap_hwmod.*
13281
13282 OMAP I2C DRIVER
13283 M:      Vignesh R <[email protected]>
13284 L:      [email protected]
13285 L:      [email protected]
13286 S:      Maintained
13287 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
13288 F:      drivers/i2c/busses/i2c-omap.c
13289
13290 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13291 M:      Laurent Pinchart <[email protected]>
13292 L:      [email protected]
13293 S:      Maintained
13294 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13295 F:      drivers/media/platform/omap3isp/
13296 F:      drivers/staging/media/omap4iss/
13297
13298 OMAP MMC SUPPORT
13299 M:      Aaro Koskinen <[email protected]>
13300 L:      [email protected]
13301 S:      Odd Fixes
13302 F:      drivers/mmc/host/omap.c
13303
13304 OMAP POWER MANAGEMENT SUPPORT
13305 M:      Kevin Hilman <[email protected]>
13306 L:      [email protected]
13307 S:      Maintained
13308 F:      arch/arm/*omap*/*pm*
13309 F:      drivers/cpufreq/omap-cpufreq.c
13310
13311 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13312 M:      Rajendra Nayak <[email protected]>
13313 M:      Paul Walmsley <[email protected]>
13314 L:      [email protected]
13315 S:      Maintained
13316 F:      arch/arm/mach-omap2/prm*
13317
13318 OMAP RANDOM NUMBER GENERATOR SUPPORT
13319 M:      Deepak Saxena <[email protected]>
13320 S:      Maintained
13321 F:      drivers/char/hw_random/omap-rng.c
13322
13323 OMAP USB SUPPORT
13324 L:      [email protected]
13325 L:      [email protected]
13326 S:      Orphan
13327 F:      arch/arm/*omap*/usb*
13328 F:      drivers/usb/*/*omap*
13329
13330 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13331 M:      Mark Jackson <[email protected]>
13332 L:      [email protected]
13333 S:      Maintained
13334 F:      arch/arm/boot/dts/am335x-nano.dts
13335
13336 OMAP1 SUPPORT
13337 M:      Aaro Koskinen <[email protected]>
13338 M:      Tony Lindgren <[email protected]>
13339 L:      [email protected]
13340 S:      Maintained
13341 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13343 F:      arch/arm/configs/omap1_defconfig
13344 F:      arch/arm/mach-omap1/
13345 F:      arch/arm/plat-omap/
13346 F:      drivers/i2c/busses/i2c-omap.c
13347 F:      include/linux/platform_data/ams-delta-fiq.h
13348 F:      include/linux/platform_data/i2c-omap.h
13349
13350 OMAP2+ SUPPORT
13351 M:      Tony Lindgren <[email protected]>
13352 L:      [email protected]
13353 S:      Maintained
13354 W:      http://www.muru.com/linux/omap/
13355 W:      http://linux.omap.com/
13356 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13358 F:      arch/arm/configs/omap2plus_defconfig
13359 F:      arch/arm/mach-omap2/
13360 F:      arch/arm/plat-omap/
13361 F:      drivers/bus/ti-sysc.c
13362 F:      drivers/i2c/busses/i2c-omap.c
13363 F:      drivers/irqchip/irq-omap-intc.c
13364 F:      drivers/mfd/*omap*.c
13365 F:      drivers/mfd/menelaus.c
13366 F:      drivers/mfd/palmas.c
13367 F:      drivers/mfd/tps65217.c
13368 F:      drivers/mfd/tps65218.c
13369 F:      drivers/mfd/tps65910.c
13370 F:      drivers/mfd/twl-core.[ch]
13371 F:      drivers/mfd/twl4030*.c
13372 F:      drivers/mfd/twl6030*.c
13373 F:      drivers/mfd/twl6040*.c
13374 F:      drivers/regulator/palmas-regulator*.c
13375 F:      drivers/regulator/pbias-regulator.c
13376 F:      drivers/regulator/tps65217-regulator.c
13377 F:      drivers/regulator/tps65218-regulator.c
13378 F:      drivers/regulator/tps65910-regulator.c
13379 F:      drivers/regulator/twl-regulator.c
13380 F:      drivers/regulator/twl6030-regulator.c
13381 F:      include/linux/platform_data/i2c-omap.h
13382 F:      include/linux/platform_data/ti-sysc.h
13383
13384 OMFS FILESYSTEM
13385 M:      Bob Copeland <[email protected]>
13386 L:      [email protected]
13387 S:      Maintained
13388 F:      Documentation/filesystems/omfs.rst
13389 F:      fs/omfs/
13390
13391 OMNIKEY CARDMAN 4000 DRIVER
13392 M:      Harald Welte <[email protected]>
13393 S:      Maintained
13394 F:      drivers/char/pcmcia/cm4000_cs.c
13395 F:      include/linux/cm4000_cs.h
13396 F:      include/uapi/linux/cm4000_cs.h
13397
13398 OMNIKEY CARDMAN 4040 DRIVER
13399 M:      Harald Welte <[email protected]>
13400 S:      Maintained
13401 F:      drivers/char/pcmcia/cm4040_cs.*
13402
13403 OMNIVISION OV02A10 SENSOR DRIVER
13404 M:      Dongchun Zhu <[email protected]>
13405 L:      [email protected]
13406 S:      Maintained
13407 T:      git git://linuxtv.org/media_tree.git
13408 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13409 F:      drivers/media/i2c/ov02a10.c
13410
13411 OMNIVISION OV13858 SENSOR DRIVER
13412 M:      Sakari Ailus <[email protected]>
13413 L:      [email protected]
13414 S:      Maintained
13415 T:      git git://linuxtv.org/media_tree.git
13416 F:      drivers/media/i2c/ov13858.c
13417
13418 OMNIVISION OV2680 SENSOR DRIVER
13419 M:      Rui Miguel Silva <[email protected]>
13420 L:      [email protected]
13421 S:      Maintained
13422 T:      git git://linuxtv.org/media_tree.git
13423 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13424 F:      drivers/media/i2c/ov2680.c
13425
13426 OMNIVISION OV2685 SENSOR DRIVER
13427 M:      Shunqian Zheng <[email protected]>
13428 L:      [email protected]
13429 S:      Maintained
13430 T:      git git://linuxtv.org/media_tree.git
13431 F:      drivers/media/i2c/ov2685.c
13432
13433 OMNIVISION OV2740 SENSOR DRIVER
13434 M:      Tianshu Qiu <[email protected]>
13435 R:      Shawn Tu <[email protected]>
13436 R:      Bingbu Cao <[email protected]>
13437 L:      [email protected]
13438 S:      Maintained
13439 T:      git git://linuxtv.org/media_tree.git
13440 F:      drivers/media/i2c/ov2740.c
13441
13442 OMNIVISION OV5640 SENSOR DRIVER
13443 M:      Steve Longerbeam <[email protected]>
13444 L:      [email protected]
13445 S:      Maintained
13446 T:      git git://linuxtv.org/media_tree.git
13447 F:      drivers/media/i2c/ov5640.c
13448
13449 OMNIVISION OV5647 SENSOR DRIVER
13450 M:      Dave Stevenson <[email protected]>
13451 M:      Jacopo Mondi <[email protected]>
13452 L:      [email protected]
13453 S:      Maintained
13454 T:      git git://linuxtv.org/media_tree.git
13455 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13456 F:      drivers/media/i2c/ov5647.c
13457
13458 OMNIVISION OV5670 SENSOR DRIVER
13459 M:      Chiranjeevi Rapolu <[email protected]>
13460 M:      Hyungwoo Yang <[email protected]>
13461 L:      [email protected]
13462 S:      Maintained
13463 T:      git git://linuxtv.org/media_tree.git
13464 F:      drivers/media/i2c/ov5670.c
13465
13466 OMNIVISION OV5675 SENSOR DRIVER
13467 M:      Shawn Tu <[email protected]>
13468 L:      [email protected]
13469 S:      Maintained
13470 T:      git git://linuxtv.org/media_tree.git
13471 F:      drivers/media/i2c/ov5675.c
13472
13473 OMNIVISION OV5695 SENSOR DRIVER
13474 M:      Shunqian Zheng <[email protected]>
13475 L:      [email protected]
13476 S:      Maintained
13477 T:      git git://linuxtv.org/media_tree.git
13478 F:      drivers/media/i2c/ov5695.c
13479
13480 OMNIVISION OV7670 SENSOR DRIVER
13481 L:      [email protected]
13482 S:      Orphan
13483 T:      git git://linuxtv.org/media_tree.git
13484 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13485 F:      drivers/media/i2c/ov7670.c
13486
13487 OMNIVISION OV772x SENSOR DRIVER
13488 M:      Jacopo Mondi <[email protected]>
13489 L:      [email protected]
13490 S:      Odd fixes
13491 T:      git git://linuxtv.org/media_tree.git
13492 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13493 F:      drivers/media/i2c/ov772x.c
13494 F:      include/media/i2c/ov772x.h
13495
13496 OMNIVISION OV7740 SENSOR DRIVER
13497 M:      Wenyou Yang <[email protected]>
13498 L:      [email protected]
13499 S:      Maintained
13500 T:      git git://linuxtv.org/media_tree.git
13501 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13502 F:      drivers/media/i2c/ov7740.c
13503
13504 OMNIVISION OV8856 SENSOR DRIVER
13505 M:      Dongchun Zhu <[email protected]>
13506 L:      [email protected]
13507 S:      Maintained
13508 T:      git git://linuxtv.org/media_tree.git
13509 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13510 F:      drivers/media/i2c/ov8856.c
13511
13512 OMNIVISION OV9640 SENSOR DRIVER
13513 M:      Petr Cvek <[email protected]>
13514 L:      [email protected]
13515 S:      Maintained
13516 F:      drivers/media/i2c/ov9640.*
13517
13518 OMNIVISION OV9650 SENSOR DRIVER
13519 M:      Sakari Ailus <[email protected]>
13520 R:      Akinobu Mita <[email protected]>
13521 R:      Sylwester Nawrocki <[email protected]>
13522 L:      [email protected]
13523 S:      Maintained
13524 T:      git git://linuxtv.org/media_tree.git
13525 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13526 F:      drivers/media/i2c/ov9650.c
13527
13528 OMNIVISION OV9734 SENSOR DRIVER
13529 M:      Tianshu Qiu <[email protected]>
13530 R:      Bingbu Cao <[email protected]>
13531 L:      [email protected]
13532 S:      Maintained
13533 T:      git git://linuxtv.org/media_tree.git
13534 F:      drivers/media/i2c/ov9734.c
13535
13536 ONENAND FLASH DRIVER
13537 M:      Kyungmin Park <[email protected]>
13538 L:      [email protected]
13539 S:      Maintained
13540 F:      drivers/mtd/nand/onenand/
13541 F:      include/linux/mtd/onenand*.h
13542
13543 ONION OMEGA2+ BOARD
13544 M:      Harvey Hunt <[email protected]>
13545 L:      [email protected]
13546 S:      Maintained
13547 F:      arch/mips/boot/dts/ralink/omega2p.dts
13548
13549 OP-TEE DRIVER
13550 M:      Jens Wiklander <[email protected]>
13551 L:      [email protected]
13552 S:      Maintained
13553 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13554 F:      drivers/tee/optee/
13555
13556 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13557 M:      Sumit Garg <[email protected]>
13558 L:      [email protected]
13559 S:      Maintained
13560 F:      drivers/char/hw_random/optee-rng.c
13561
13562 OPA-VNIC DRIVER
13563 M:      Dennis Dalessandro <[email protected]>
13564 M:      Mike Marciniszyn <[email protected]>
13565 L:      [email protected]
13566 S:      Supported
13567 F:      drivers/infiniband/ulp/opa_vnic
13568
13569 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13570 M:      Pantelis Antoniou <[email protected]>
13571 M:      Frank Rowand <[email protected]>
13572 L:      [email protected]
13573 S:      Maintained
13574 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13575 F:      Documentation/devicetree/overlay-notes.rst
13576 F:      drivers/of/overlay.c
13577 F:      drivers/of/resolver.c
13578 K:      of_overlay_notifier_
13579
13580 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13581 M:      Rob Herring <[email protected]>
13582 M:      Frank Rowand <[email protected]>
13583 L:      [email protected]
13584 S:      Maintained
13585 W:      http://www.devicetree.org/
13586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13587 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13588 F:      drivers/of/
13589 F:      include/linux/of*.h
13590 F:      scripts/dtc/
13591
13592 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13593 M:      Rob Herring <[email protected]>
13594 L:      [email protected]
13595 S:      Maintained
13596 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13598 F:      Documentation/devicetree/
13599 F:      arch/*/boot/dts/
13600 F:      include/dt-bindings/
13601
13602 OPENCORES I2C BUS DRIVER
13603 M:      Peter Korsgaard <[email protected]>
13604 M:      Andrew Lunn <[email protected]>
13605 L:      [email protected]
13606 S:      Maintained
13607 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13608 F:      Documentation/i2c/busses/i2c-ocores.rst
13609 F:      drivers/i2c/busses/i2c-ocores.c
13610 F:      include/linux/platform_data/i2c-ocores.h
13611
13612 OPENRISC ARCHITECTURE
13613 M:      Jonas Bonn <[email protected]>
13614 M:      Stefan Kristiansson <[email protected]>
13615 M:      Stafford Horne <[email protected]>
13616 L:      [email protected]
13617 S:      Maintained
13618 W:      http://openrisc.io
13619 T:      git git://github.com/openrisc/linux.git
13620 F:      Documentation/devicetree/bindings/openrisc/
13621 F:      Documentation/openrisc/
13622 F:      arch/openrisc/
13623 F:      drivers/irqchip/irq-ompic.c
13624 F:      drivers/irqchip/irq-or1k-*
13625
13626 OPENVSWITCH
13627 M:      Pravin B Shelar <[email protected]>
13628 L:      [email protected]
13629 L:      [email protected]
13630 S:      Maintained
13631 W:      http://openvswitch.org
13632 F:      include/uapi/linux/openvswitch.h
13633 F:      net/openvswitch/
13634
13635 OPERATING PERFORMANCE POINTS (OPP)
13636 M:      Viresh Kumar <[email protected]>
13637 M:      Nishanth Menon <[email protected]>
13638 M:      Stephen Boyd <[email protected]>
13639 L:      [email protected]
13640 S:      Maintained
13641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13642 F:      Documentation/devicetree/bindings/opp/
13643 F:      Documentation/power/opp.rst
13644 F:      drivers/opp/
13645 F:      include/linux/pm_opp.h
13646
13647 OPL4 DRIVER
13648 M:      Clemens Ladisch <[email protected]>
13649 L:      [email protected] (moderated for non-subscribers)
13650 S:      Maintained
13651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13652 F:      sound/drivers/opl4/
13653
13654 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13655 M:      Mark Fasheh <[email protected]>
13656 M:      Joel Becker <[email protected]>
13657 M:      Joseph Qi <[email protected]>
13658 L:      [email protected] (moderated for non-subscribers)
13659 S:      Supported
13660 W:      http://ocfs2.wiki.kernel.org
13661 F:      Documentation/filesystems/dlmfs.rst
13662 F:      Documentation/filesystems/ocfs2.rst
13663 F:      fs/ocfs2/
13664
13665 ORANGEFS FILESYSTEM
13666 M:      Mike Marshall <[email protected]>
13667 R:      Martin Brandenburg <[email protected]>
13668 L:      [email protected]
13669 S:      Supported
13670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13671 F:      Documentation/filesystems/orangefs.rst
13672 F:      fs/orangefs/
13673
13674 ORINOCO DRIVER
13675 L:      [email protected]
13676 S:      Orphan
13677 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13678 W:      http://www.nongnu.org/orinoco/
13679 F:      drivers/net/wireless/intersil/orinoco/
13680
13681 OV2659 OMNIVISION SENSOR DRIVER
13682 M:      "Lad, Prabhakar" <[email protected]>
13683 L:      [email protected]
13684 S:      Maintained
13685 W:      https://linuxtv.org
13686 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13687 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13688 F:      drivers/media/i2c/ov2659.c
13689 F:      include/media/i2c/ov2659.h
13690
13691 OVERLAY FILESYSTEM
13692 M:      Miklos Szeredi <[email protected]>
13693 L:      [email protected]
13694 S:      Supported
13695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13696 F:      Documentation/filesystems/overlayfs.rst
13697 F:      fs/overlayfs/
13698
13699 P54 WIRELESS DRIVER
13700 M:      Christian Lamparter <[email protected]>
13701 L:      [email protected]
13702 S:      Maintained
13703 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13704 F:      drivers/net/wireless/intersil/p54/
13705
13706 PACKING
13707 M:      Vladimir Oltean <[email protected]>
13708 L:      [email protected]
13709 S:      Supported
13710 F:      Documentation/core-api/packing.rst
13711 F:      include/linux/packing.h
13712 F:      lib/packing.c
13713
13714 PADATA PARALLEL EXECUTION MECHANISM
13715 M:      Steffen Klassert <[email protected]>
13716 M:      Daniel Jordan <[email protected]>
13717 L:      [email protected]
13718 L:      [email protected]
13719 S:      Maintained
13720 F:      Documentation/core-api/padata.rst
13721 F:      include/linux/padata.h
13722 F:      kernel/padata.c
13723
13724 PAGE POOL
13725 M:      Jesper Dangaard Brouer <[email protected]>
13726 M:      Ilias Apalodimas <[email protected]>
13727 L:      [email protected]
13728 S:      Supported
13729 F:      Documentation/networking/page_pool.rst
13730 F:      include/net/page_pool.h
13731 F:      include/trace/events/page_pool.h
13732 F:      net/core/page_pool.c
13733
13734 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13735 M:      Kenneth Chan <[email protected]>
13736 L:      [email protected]
13737 S:      Maintained
13738 F:      drivers/platform/x86/panasonic-laptop.c
13739
13740 PARALLAX PING IIO SENSOR DRIVER
13741 M:      Andreas Klinger <[email protected]>
13742 L:      [email protected]
13743 S:      Maintained
13744 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13745 F:      drivers/iio/proximity/ping.c
13746
13747 PARALLEL LCD/KEYPAD PANEL DRIVER
13748 M:      Willy Tarreau <[email protected]>
13749 M:      Ksenija Stanojevic <[email protected]>
13750 S:      Odd Fixes
13751 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13752 F:      drivers/auxdisplay/panel.c
13753
13754 PARALLEL PORT SUBSYSTEM
13755 M:      Sudip Mukherjee <[email protected]>
13756 M:      Sudip Mukherjee <[email protected]>
13757 L:      [email protected] (subscribers-only)
13758 S:      Maintained
13759 F:      Documentation/driver-api/parport*.rst
13760 F:      drivers/char/ppdev.c
13761 F:      drivers/parport/
13762 F:      include/linux/parport*.h
13763 F:      include/uapi/linux/ppdev.h
13764
13765 PARAVIRT_OPS INTERFACE
13766 M:      Juergen Gross <[email protected]>
13767 M:      Deep Shah <[email protected]>
13768 M:      "VMware, Inc." <[email protected]>
13769 L:      [email protected]
13770 S:      Supported
13771 F:      Documentation/virt/paravirt_ops.rst
13772 F:      arch/*/include/asm/paravirt*.h
13773 F:      arch/*/kernel/paravirt*
13774 F:      include/linux/hypervisor.h
13775
13776 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13777 M:      Tim Waugh <[email protected]>
13778 L:      [email protected] (subscribers-only)
13779 S:      Maintained
13780 F:      Documentation/admin-guide/blockdev/paride.rst
13781 F:      drivers/block/paride/
13782
13783 PARISC ARCHITECTURE
13784 M:      "James E.J. Bottomley" <[email protected]>
13785 M:      Helge Deller <[email protected]>
13786 L:      [email protected]
13787 S:      Maintained
13788 W:      https://parisc.wiki.kernel.org
13789 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13792 F:      Documentation/parisc/
13793 F:      arch/parisc/
13794 F:      drivers/char/agp/parisc-agp.c
13795 F:      drivers/input/misc/hp_sdc_rtc.c
13796 F:      drivers/input/serio/gscps2.c
13797 F:      drivers/input/serio/hp_sdc*
13798 F:      drivers/parisc/
13799 F:      drivers/parport/parport_gsc.*
13800 F:      drivers/tty/serial/8250/8250_gsc.c
13801 F:      drivers/video/console/sti*
13802 F:      drivers/video/fbdev/sti*
13803 F:      drivers/video/logo/logo_parisc*
13804 F:      include/linux/hp_sdc.h
13805
13806 PARMAN
13807 M:      Jiri Pirko <[email protected]>
13808 L:      [email protected]
13809 S:      Supported
13810 F:      include/linux/parman.h
13811 F:      lib/parman.c
13812 F:      lib/test_parman.c
13813
13814 PC ENGINES APU BOARD DRIVER
13815 M:      Enrico Weigelt, metux IT consult <[email protected]>
13816 S:      Maintained
13817 F:      drivers/platform/x86/pcengines-apuv2.c
13818
13819 PC87360 HARDWARE MONITORING DRIVER
13820 M:      Jim Cromie <[email protected]>
13821 L:      [email protected]
13822 S:      Maintained
13823 F:      Documentation/hwmon/pc87360.rst
13824 F:      drivers/hwmon/pc87360.c
13825
13826 PC8736x GPIO DRIVER
13827 M:      Jim Cromie <[email protected]>
13828 S:      Maintained
13829 F:      drivers/char/pc8736x_gpio.c
13830
13831 PC87427 HARDWARE MONITORING DRIVER
13832 M:      Jean Delvare <[email protected]>
13833 L:      [email protected]
13834 S:      Maintained
13835 F:      Documentation/hwmon/pc87427.rst
13836 F:      drivers/hwmon/pc87427.c
13837
13838 PCA9532 LED DRIVER
13839 M:      Riku Voipio <[email protected]>
13840 S:      Maintained
13841 F:      drivers/leds/leds-pca9532.c
13842 F:      include/linux/leds-pca9532.h
13843
13844 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13845 M:      Guenter Roeck <[email protected]>
13846 L:      [email protected]
13847 S:      Maintained
13848 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13849
13850 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13851 M:      Khalid Aziz <[email protected]>
13852 S:      Maintained
13853 F:      drivers/firmware/pcdp.*
13854
13855 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13856 M:      Thomas Petazzoni <[email protected]>
13857 M:      Pali Rohár <[email protected]>
13858 L:      [email protected]
13859 L:      [email protected] (moderated for non-subscribers)
13860 S:      Maintained
13861 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13862 F:      drivers/pci/controller/pci-aardvark.c
13863
13864 PCI DRIVER FOR ALTERA PCIE IP
13865 M:      Ley Foon Tan <[email protected]>
13866 L:      [email protected] (moderated for non-subscribers)
13867 L:      [email protected]
13868 S:      Supported
13869 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13870 F:      drivers/pci/controller/pcie-altera.c
13871
13872 PCI DRIVER FOR APPLIEDMICRO XGENE
13873 M:      Toan Le <[email protected]>
13874 L:      [email protected]
13875 L:      [email protected]
13876 S:      Maintained
13877 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13878 F:      drivers/pci/controller/pci-xgene.c
13879
13880 PCI DRIVER FOR ARM VERSATILE PLATFORM
13881 M:      Rob Herring <[email protected]>
13882 L:      [email protected]
13883 L:      [email protected]
13884 S:      Maintained
13885 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13886 F:      drivers/pci/controller/pci-versatile.c
13887
13888 PCI DRIVER FOR ARMADA 8K
13889 M:      Thomas Petazzoni <[email protected]>
13890 L:      [email protected]
13891 L:      [email protected]
13892 S:      Maintained
13893 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13894 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13895
13896 PCI DRIVER FOR CADENCE PCIE IP
13897 M:      Tom Joseph <[email protected]>
13898 L:      [email protected]
13899 S:      Maintained
13900 F:      Documentation/devicetree/bindings/pci/cdns,*
13901 F:      drivers/pci/controller/cadence/
13902
13903 PCI DRIVER FOR FREESCALE LAYERSCAPE
13904 M:      Minghuan Lian <[email protected]>
13905 M:      Mingkai Hu <[email protected]>
13906 M:      Roy Zang <[email protected]>
13907 L:      [email protected]
13908 L:      [email protected]
13909 L:      [email protected]
13910 S:      Maintained
13911 F:      drivers/pci/controller/dwc/*layerscape*
13912
13913 PCI DRIVER FOR GENERIC OF HOSTS
13914 M:      Will Deacon <[email protected]>
13915 L:      [email protected]
13916 L:      [email protected] (moderated for non-subscribers)
13917 S:      Maintained
13918 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13919 F:      drivers/pci/controller/pci-host-common.c
13920 F:      drivers/pci/controller/pci-host-generic.c
13921
13922 PCI DRIVER FOR IMX6
13923 M:      Richard Zhu <[email protected]>
13924 M:      Lucas Stach <[email protected]>
13925 L:      [email protected]
13926 L:      [email protected] (moderated for non-subscribers)
13927 S:      Maintained
13928 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13929 F:      drivers/pci/controller/dwc/*imx6*
13930
13931 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13932 M:      Jonathan Derrick <[email protected]>
13933 L:      [email protected]
13934 S:      Supported
13935 F:      drivers/pci/controller/vmd.c
13936
13937 PCI DRIVER FOR MICROSEMI SWITCHTEC
13938 M:      Kurt Schwemmer <[email protected]>
13939 M:      Logan Gunthorpe <[email protected]>
13940 L:      [email protected]
13941 S:      Maintained
13942 F:      Documentation/ABI/testing/sysfs-class-switchtec
13943 F:      Documentation/driver-api/switchtec.rst
13944 F:      drivers/ntb/hw/mscc/
13945 F:      drivers/pci/switch/switchtec*
13946 F:      include/linux/switchtec.h
13947 F:      include/uapi/linux/switchtec_ioctl.h
13948
13949 PCI DRIVER FOR MOBIVEIL PCIE IP
13950 M:      Karthikeyan Mitran <[email protected]>
13951 M:      Hou Zhiqiang <[email protected]>
13952 L:      [email protected]
13953 S:      Supported
13954 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13955 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13956
13957 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13958 M:      Thomas Petazzoni <[email protected]>
13959 L:      [email protected]
13960 L:      [email protected] (moderated for non-subscribers)
13961 S:      Maintained
13962 F:      drivers/pci/controller/*mvebu*
13963
13964 PCI DRIVER FOR NVIDIA TEGRA
13965 M:      Thierry Reding <[email protected]>
13966 L:      [email protected]
13967 L:      [email protected]
13968 S:      Supported
13969 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13970 F:      drivers/pci/controller/pci-tegra.c
13971
13972 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13973 M:      Hou Zhiqiang <[email protected]>
13974 L:      [email protected]
13975 L:      [email protected]
13976 S:      Maintained
13977 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13978 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13979
13980 PCI DRIVER FOR RENESAS R-CAR
13981 M:      Marek Vasut <[email protected]>
13982 M:      Yoshihiro Shimoda <[email protected]>
13983 L:      [email protected]
13984 L:      [email protected]
13985 S:      Maintained
13986 F:      Documentation/devicetree/bindings/pci/*rcar*
13987 F:      drivers/pci/controller/*rcar*
13988
13989 PCI DRIVER FOR SAMSUNG EXYNOS
13990 M:      Jingoo Han <[email protected]>
13991 L:      [email protected]
13992 L:      [email protected] (moderated for non-subscribers)
13993 L:      [email protected]
13994 S:      Maintained
13995 F:      drivers/pci/controller/dwc/pci-exynos.c
13996
13997 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13998 M:      Jingoo Han <[email protected]>
13999 M:      Gustavo Pimentel <[email protected]>
14000 L:      [email protected]
14001 S:      Maintained
14002 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
14003 F:      drivers/pci/controller/dwc/*designware*
14004
14005 PCI DRIVER FOR TI DRA7XX/J721E
14006 M:      Kishon Vijay Abraham I <[email protected]>
14007 L:      [email protected]
14008 L:      [email protected]
14009 L:      [email protected]
14010 S:      Supported
14011 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14012 F:      drivers/pci/controller/cadence/pci-j721e.c
14013 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14014
14015 PCI DRIVER FOR TI KEYSTONE
14016 M:      Murali Karicheri <[email protected]>
14017 L:      [email protected]
14018 L:      [email protected] (moderated for non-subscribers)
14019 S:      Maintained
14020 F:      drivers/pci/controller/dwc/pci-keystone.c
14021
14022 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14023 M:      Linus Walleij <[email protected]>
14024 L:      [email protected]
14025 S:      Maintained
14026 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14027 F:      drivers/pci/controller/pci-v3-semi.c
14028
14029 PCI ENDPOINT SUBSYSTEM
14030 M:      Kishon Vijay Abraham I <[email protected]>
14031 M:      Lorenzo Pieralisi <[email protected]>
14032 L:      [email protected]
14033 S:      Supported
14034 F:      Documentation/PCI/endpoint/*
14035 F:      Documentation/misc-devices/pci-endpoint-test.rst
14036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14037 F:      drivers/misc/pci_endpoint_test.c
14038 F:      drivers/pci/endpoint/
14039 F:      tools/pci/
14040
14041 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14042 M:      Russell Currey <[email protected]>
14043 M:      Oliver O'Halloran <[email protected]>
14044 L:      [email protected]
14045 S:      Supported
14046 F:      Documentation/PCI/pci-error-recovery.rst
14047 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14048 F:      arch/powerpc/include/*/eeh*.h
14049 F:      arch/powerpc/kernel/eeh*.c
14050 F:      arch/powerpc/platforms/*/eeh*.c
14051 F:      drivers/pci/pcie/aer.c
14052 F:      drivers/pci/pcie/dpc.c
14053 F:      drivers/pci/pcie/err.c
14054
14055 PCI ERROR RECOVERY
14056 M:      Linas Vepstas <[email protected]>
14057 L:      [email protected]
14058 S:      Supported
14059 F:      Documentation/PCI/pci-error-recovery.rst
14060
14061 PCI MSI DRIVER FOR ALTERA MSI IP
14062 M:      Ley Foon Tan <[email protected]>
14063 L:      [email protected] (moderated for non-subscribers)
14064 L:      [email protected]
14065 S:      Supported
14066 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14067 F:      drivers/pci/controller/pcie-altera-msi.c
14068
14069 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14070 M:      Toan Le <[email protected]>
14071 L:      [email protected]
14072 L:      [email protected]
14073 S:      Maintained
14074 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14075 F:      drivers/pci/controller/pci-xgene-msi.c
14076
14077 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14078 M:      Lorenzo Pieralisi <[email protected]>
14079 R:      Rob Herring <[email protected]>
14080 L:      [email protected]
14081 S:      Supported
14082 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14084 F:      drivers/pci/controller/
14085
14086 PCI SUBSYSTEM
14087 M:      Bjorn Helgaas <[email protected]>
14088 L:      [email protected]
14089 S:      Supported
14090 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14092 F:      Documentation/PCI/
14093 F:      Documentation/devicetree/bindings/pci/
14094 F:      arch/x86/kernel/early-quirks.c
14095 F:      arch/x86/kernel/quirks.c
14096 F:      arch/x86/pci/
14097 F:      drivers/acpi/pci*
14098 F:      drivers/pci/
14099 F:      include/asm-generic/pci*
14100 F:      include/linux/of_pci.h
14101 F:      include/linux/pci*
14102 F:      include/uapi/linux/pci*
14103 F:      lib/pci*
14104
14105 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14106 M:      Jonathan Chocron <[email protected]>
14107 L:      [email protected]
14108 S:      Maintained
14109 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14110 F:      drivers/pci/controller/dwc/pcie-al.c
14111
14112 PCIE DRIVER FOR AMLOGIC MESON
14113 M:      Yue Wang <[email protected]>
14114 L:      [email protected]
14115 L:      [email protected]
14116 S:      Maintained
14117 F:      drivers/pci/controller/dwc/pci-meson.c
14118
14119 PCIE DRIVER FOR AXIS ARTPEC
14120 M:      Jesper Nilsson <[email protected]>
14121 L:      [email protected]
14122 L:      [email protected]
14123 S:      Maintained
14124 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14125 F:      drivers/pci/controller/dwc/*artpec*
14126
14127 PCIE DRIVER FOR CAVIUM THUNDERX
14128 M:      Robert Richter <[email protected]>
14129 L:      [email protected]
14130 L:      [email protected] (moderated for non-subscribers)
14131 S:      Odd Fixes
14132 F:      drivers/pci/controller/pci-thunder-*
14133
14134 PCIE DRIVER FOR HISILICON
14135 M:      Zhou Wang <[email protected]>
14136 L:      [email protected]
14137 S:      Maintained
14138 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
14139 F:      drivers/pci/controller/dwc/pcie-hisi.c
14140
14141 PCIE DRIVER FOR HISILICON KIRIN
14142 M:      Xiaowei Song <[email protected]>
14143 M:      Binghui Wang <[email protected]>
14144 L:      [email protected]
14145 S:      Maintained
14146 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
14147 F:      drivers/pci/controller/dwc/pcie-kirin.c
14148
14149 PCIE DRIVER FOR HISILICON STB
14150 M:      Shawn Guo <[email protected]>
14151 L:      [email protected]
14152 S:      Maintained
14153 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14154 F:      drivers/pci/controller/dwc/pcie-histb.c
14155
14156 PCIE DRIVER FOR MEDIATEK
14157 M:      Ryder Lee <[email protected]>
14158 L:      [email protected]
14159 L:      [email protected]
14160 S:      Supported
14161 F:      Documentation/devicetree/bindings/pci/mediatek*
14162 F:      drivers/pci/controller/*mediatek*
14163
14164 PCIE DRIVER FOR MICROCHIP
14165 M:      Daire McNamara <[email protected]>
14166 L:      [email protected]
14167 S:      Supported
14168 F:      Documentation/devicetree/bindings/pci/microchip*
14169 F:      drivers/pci/controller/*microchip*
14170
14171 PCIE DRIVER FOR QUALCOMM MSM
14172 M:      Stanimir Varbanov <[email protected]>
14173 L:      [email protected]
14174 L:      [email protected]
14175 S:      Maintained
14176 F:      drivers/pci/controller/dwc/*qcom*
14177
14178 PCIE DRIVER FOR ROCKCHIP
14179 M:      Shawn Lin <[email protected]>
14180 L:      [email protected]
14181 L:      [email protected]
14182 S:      Maintained
14183 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14184 F:      drivers/pci/controller/pcie-rockchip*
14185
14186 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14187 M:      Kunihiko Hayashi <[email protected]>
14188 L:      [email protected]
14189 S:      Maintained
14190 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14191 F:      drivers/pci/controller/dwc/pcie-uniphier*
14192
14193 PCIE DRIVER FOR ST SPEAR13XX
14194 M:      Pratyush Anand <[email protected]>
14195 L:      [email protected]
14196 S:      Maintained
14197 F:      drivers/pci/controller/dwc/*spear*
14198
14199 PCMCIA SUBSYSTEM
14200 M:      Dominik Brodowski <[email protected]>
14201 S:      Odd Fixes
14202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14203 F:      Documentation/pcmcia/
14204 F:      drivers/pcmcia/
14205 F:      include/pcmcia/
14206 F:      tools/pcmcia/
14207
14208 PCNET32 NETWORK DRIVER
14209 M:      Don Fry <[email protected]>
14210 L:      [email protected]
14211 S:      Maintained
14212 F:      drivers/net/ethernet/amd/pcnet32.c
14213
14214 PCRYPT PARALLEL CRYPTO ENGINE
14215 M:      Steffen Klassert <[email protected]>
14216 L:      [email protected]
14217 S:      Maintained
14218 F:      crypto/pcrypt.c
14219 F:      include/crypto/pcrypt.h
14220
14221 PEAQ WMI HOTKEYS DRIVER
14222 M:      Hans de Goede <[email protected]>
14223 L:      [email protected]
14224 S:      Maintained
14225 F:      drivers/platform/x86/peaq-wmi.c
14226
14227 PENSANDO ETHERNET DRIVERS
14228 M:      Shannon Nelson <[email protected]>
14229 M:      [email protected]
14230 L:      [email protected]
14231 S:      Supported
14232 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14233 F:      drivers/net/ethernet/pensando/
14234
14235 PER-CPU MEMORY ALLOCATOR
14236 M:      Dennis Zhou <[email protected]>
14237 M:      Tejun Heo <[email protected]>
14238 M:      Christoph Lameter <[email protected]>
14239 S:      Maintained
14240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14241 F:      arch/*/include/asm/percpu.h
14242 F:      include/linux/percpu*.h
14243 F:      mm/percpu*.c
14244
14245 PER-TASK DELAY ACCOUNTING
14246 M:      Balbir Singh <[email protected]>
14247 S:      Maintained
14248 F:      include/linux/delayacct.h
14249 F:      kernel/delayacct.c
14250
14251 PERFORMANCE EVENTS SUBSYSTEM
14252 M:      Peter Zijlstra <[email protected]>
14253 M:      Ingo Molnar <[email protected]>
14254 M:      Arnaldo Carvalho de Melo <[email protected]>
14255 R:      Mark Rutland <[email protected]>
14256 R:      Alexander Shishkin <[email protected]>
14257 R:      Jiri Olsa <[email protected]>
14258 R:      Namhyung Kim <[email protected]>
14259 L:      [email protected]
14260 S:      Supported
14261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14262 F:      arch/*/events/*
14263 F:      arch/*/events/*/*
14264 F:      arch/*/include/asm/perf_event.h
14265 F:      arch/*/kernel/*/*/perf_event*.c
14266 F:      arch/*/kernel/*/perf_event*.c
14267 F:      arch/*/kernel/perf_callchain.c
14268 F:      arch/*/kernel/perf_event*.c
14269 F:      include/linux/perf_event.h
14270 F:      include/uapi/linux/perf_event.h
14271 F:      kernel/events/*
14272 F:      tools/lib/perf/
14273 F:      tools/perf/
14274
14275 PERFORMANCE EVENTS TOOLING ARM64
14276 R:      John Garry <[email protected]>
14277 R:      Will Deacon <[email protected]>
14278 R:      Mathieu Poirier <[email protected]>
14279 R:      Leo Yan <[email protected]>
14280 L:      [email protected] (moderated for non-subscribers)
14281 S:      Supported
14282 F:      tools/build/feature/test-libopencsd.c
14283 F:      tools/perf/arch/arm*/
14284 F:      tools/perf/pmu-events/arch/arm64/
14285 F:      tools/perf/util/arm-spe*
14286 F:      tools/perf/util/cs-etm*
14287
14288 PERSONALITY HANDLING
14289 M:      Christoph Hellwig <[email protected]>
14290 L:      [email protected]
14291 S:      Maintained
14292 F:      include/linux/personality.h
14293 F:      include/uapi/linux/personality.h
14294
14295 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14296 M:      Marcus Folkesson <[email protected]>
14297 L:      [email protected]
14298 S:      Maintained
14299 F:      Documentation/input/devices/pxrc.rst
14300 F:      drivers/input/joystick/pxrc.c
14301
14302 PHONET PROTOCOL
14303 M:      Remi Denis-Courmont <[email protected]>
14304 S:      Supported
14305 F:      Documentation/networking/phonet.rst
14306 F:      include/linux/phonet.h
14307 F:      include/net/phonet/
14308 F:      include/uapi/linux/phonet.h
14309 F:      net/phonet/
14310
14311 PHRAM MTD DRIVER
14312 M:      Joern Engel <[email protected]>
14313 L:      [email protected]
14314 S:      Maintained
14315 F:      drivers/mtd/devices/phram.c
14316
14317 PICOLCD HID DRIVER
14318 M:      Bruno Prémont <[email protected]>
14319 L:      [email protected]
14320 S:      Maintained
14321 F:      drivers/hid/hid-picolcd*
14322
14323 PIDFD API
14324 M:      Christian Brauner <[email protected]>
14325 L:      [email protected]
14326 S:      Maintained
14327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14328 F:      samples/pidfd/
14329 F:      tools/testing/selftests/clone3/
14330 F:      tools/testing/selftests/pid_namespace/
14331 F:      tools/testing/selftests/pidfd/
14332 K:      (?i)pidfd
14333 K:      (?i)clone3
14334 K:      \b(clone_args|kernel_clone_args)\b
14335
14336 PIN CONTROL SUBSYSTEM
14337 M:      Linus Walleij <[email protected]>
14338 L:      [email protected]
14339 S:      Maintained
14340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14341 F:      Documentation/devicetree/bindings/pinctrl/
14342 F:      Documentation/driver-api/pinctl.rst
14343 F:      drivers/pinctrl/
14344 F:      include/linux/pinctrl/
14345
14346 PIN CONTROLLER - FREESCALE
14347 M:      Dong Aisheng <[email protected]>
14348 M:      Fabio Estevam <[email protected]>
14349 M:      Shawn Guo <[email protected]>
14350 M:      Stefan Agner <[email protected]>
14351 R:      Pengutronix Kernel Team <[email protected]>
14352 L:      [email protected]
14353 S:      Maintained
14354 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14355 F:      drivers/pinctrl/freescale/
14356
14357 PIN CONTROLLER - INTEL
14358 M:      Mika Westerberg <[email protected]>
14359 M:      Andy Shevchenko <[email protected]>
14360 S:      Maintained
14361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14362 F:      drivers/pinctrl/intel/
14363
14364 PIN CONTROLLER - MEDIATEK
14365 M:      Sean Wang <[email protected]>
14366 L:      [email protected] (moderated for non-subscribers)
14367 S:      Maintained
14368 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
14369 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
14370 F:      drivers/pinctrl/mediatek/
14371
14372 PIN CONTROLLER - MICROCHIP AT91
14373 M:      Ludovic Desroches <[email protected]>
14374 L:      [email protected] (moderated for non-subscribers)
14375 L:      [email protected]
14376 S:      Supported
14377 F:      drivers/gpio/gpio-sama5d2-piobu.c
14378 F:      drivers/pinctrl/pinctrl-at91*
14379
14380 PIN CONTROLLER - QUALCOMM
14381 M:      Bjorn Andersson <[email protected]>
14382 L:      [email protected]
14383 S:      Maintained
14384 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14385 F:      drivers/pinctrl/qcom/
14386
14387 PIN CONTROLLER - RENESAS
14388 M:      Geert Uytterhoeven <[email protected]>
14389 L:      [email protected]
14390 S:      Supported
14391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14392 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14393 F:      drivers/pinctrl/renesas/
14394
14395 PIN CONTROLLER - SAMSUNG
14396 M:      Tomasz Figa <[email protected]>
14397 M:      Krzysztof Kozlowski <[email protected]>
14398 M:      Sylwester Nawrocki <[email protected]>
14399 L:      [email protected] (moderated for non-subscribers)
14400 L:      [email protected]
14401 S:      Maintained
14402 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14404 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14405 F:      drivers/pinctrl/samsung/
14406 F:      include/dt-bindings/pinctrl/samsung.h
14407
14408 PIN CONTROLLER - SINGLE
14409 M:      Tony Lindgren <[email protected]>
14410 M:      Haojian Zhuang <[email protected]>
14411 L:      [email protected] (moderated for non-subscribers)
14412 L:      [email protected]
14413 S:      Maintained
14414 F:      drivers/pinctrl/pinctrl-single.c
14415
14416 PIN CONTROLLER - ST SPEAR
14417 M:      Viresh Kumar <[email protected]>
14418 L:      [email protected] (moderated for non-subscribers)
14419 S:      Maintained
14420 W:      http://www.st.com/spear
14421 F:      drivers/pinctrl/spear/
14422
14423 PISTACHIO SOC SUPPORT
14424 M:      James Hartley <[email protected]>
14425 L:      [email protected]
14426 S:      Odd Fixes
14427 F:      arch/mips/boot/dts/img/pistachio*
14428 F:      arch/mips/configs/pistachio*_defconfig
14429 F:      arch/mips/pistachio/
14430
14431 PKTCDVD DRIVER
14432 M:      [email protected]
14433 S:      Orphan
14434 F:      drivers/block/pktcdvd.c
14435 F:      include/linux/pktcdvd.h
14436 F:      include/uapi/linux/pktcdvd.h
14437
14438 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14439 M:      Tomasz Duszynski <[email protected]>
14440 S:      Maintained
14441 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14442 F:      drivers/iio/chemical/pms7003.c
14443
14444 PLDMFW LIBRARY
14445 M:      Jacob Keller <[email protected]>
14446 S:      Maintained
14447 F:      Documentation/driver-api/pldmfw/
14448 F:      include/linux/pldmfw.h
14449 F:      lib/pldmfw/
14450
14451 PLX DMA DRIVER
14452 M:      Logan Gunthorpe <[email protected]>
14453 S:      Maintained
14454 F:      drivers/dma/plx_dma.c
14455
14456 PM6764TR DRIVER
14457 M:      Charles Hsu     <[email protected]>
14458 L:      [email protected]
14459 S:      Maintained
14460 F:      Documentation/hwmon/pm6764tr.rst
14461 F:      drivers/hwmon/pmbus/pm6764tr.c
14462
14463 PM-GRAPH UTILITY
14464 M:      "Todd E Brandt" <[email protected]>
14465 L:      [email protected]
14466 S:      Supported
14467 W:      https://01.org/pm-graph
14468 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14469 T:      git git://github.com/intel/pm-graph
14470 F:      tools/power/pm-graph
14471
14472 PMBUS HARDWARE MONITORING DRIVERS
14473 M:      Guenter Roeck <[email protected]>
14474 L:      [email protected]
14475 S:      Maintained
14476 W:      http://hwmon.wiki.kernel.org/
14477 W:      http://www.roeck-us.net/linux/drivers/
14478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14479 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14480 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14481 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14482 F:      Documentation/hwmon/adm1275.rst
14483 F:      Documentation/hwmon/ibm-cffps.rst
14484 F:      Documentation/hwmon/ir35221.rst
14485 F:      Documentation/hwmon/lm25066.rst
14486 F:      Documentation/hwmon/ltc2978.rst
14487 F:      Documentation/hwmon/ltc3815.rst
14488 F:      Documentation/hwmon/max16064.rst
14489 F:      Documentation/hwmon/max20751.rst
14490 F:      Documentation/hwmon/max31785.rst
14491 F:      Documentation/hwmon/max34440.rst
14492 F:      Documentation/hwmon/max8688.rst
14493 F:      Documentation/hwmon/pmbus-core.rst
14494 F:      Documentation/hwmon/pmbus.rst
14495 F:      Documentation/hwmon/tps40422.rst
14496 F:      Documentation/hwmon/ucd9000.rst
14497 F:      Documentation/hwmon/ucd9200.rst
14498 F:      Documentation/hwmon/zl6100.rst
14499 F:      drivers/hwmon/pmbus/
14500 F:      include/linux/pmbus.h
14501
14502 PMC SIERRA MaxRAID DRIVER
14503 L:      [email protected]
14504 S:      Orphan
14505 W:      http://www.pmc-sierra.com/
14506 F:      drivers/scsi/pmcraid.*
14507
14508 PMC SIERRA PM8001 DRIVER
14509 M:      Jack Wang <[email protected]>
14510 L:      [email protected]
14511 S:      Supported
14512 F:      drivers/scsi/pm8001/
14513
14514 PNI RM3100 IIO DRIVER
14515 M:      Song Qiang <[email protected]>
14516 L:      [email protected]
14517 S:      Maintained
14518 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
14519 F:      drivers/iio/magnetometer/rm3100*
14520
14521 PNP SUPPORT
14522 M:      "Rafael J. Wysocki" <[email protected]>
14523 L:      [email protected]
14524 S:      Maintained
14525 F:      drivers/pnp/
14526 F:      include/linux/pnp.h
14527
14528 POSIX CLOCKS and TIMERS
14529 M:      Thomas Gleixner <[email protected]>
14530 L:      [email protected]
14531 S:      Maintained
14532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14533 F:      fs/timerfd.c
14534 F:      include/linux/time_namespace.h
14535 F:      include/linux/timer*
14536 F:      kernel/time/*timer*
14537 F:      kernel/time/namespace.c
14538
14539 POWER MANAGEMENT CORE
14540 M:      "Rafael J. Wysocki" <[email protected]>
14541 L:      [email protected]
14542 S:      Supported
14543 B:      https://bugzilla.kernel.org
14544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14545 F:      drivers/base/power/
14546 F:      drivers/powercap/
14547 F:      include/linux/intel_rapl.h
14548 F:      include/linux/pm.h
14549 F:      include/linux/pm_*
14550 F:      include/linux/powercap.h
14551 F:      kernel/configs/nopm.config
14552
14553 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
14554 M:      Daniel Lezcano <[email protected]>
14555 L:      [email protected]
14556 S:      Supported
14557 B:      https://bugzilla.kernel.org
14558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14559 F:      drivers/powercap/dtpm*
14560 F:      include/linux/dtpm.h
14561
14562 POWER STATE COORDINATION INTERFACE (PSCI)
14563 M:      Mark Rutland <[email protected]>
14564 M:      Lorenzo Pieralisi <[email protected]>
14565 L:      [email protected]
14566 S:      Maintained
14567 F:      drivers/firmware/psci/
14568 F:      include/linux/psci.h
14569 F:      include/uapi/linux/psci.h
14570
14571 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14572 M:      Sebastian Reichel <[email protected]>
14573 L:      [email protected]
14574 S:      Maintained
14575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14576 F:      Documentation/ABI/testing/sysfs-class-power
14577 F:      Documentation/devicetree/bindings/power/supply/
14578 F:      drivers/power/supply/
14579 F:      include/linux/power_supply.h
14580
14581 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14582 M:      Suraj Jitindar Singh <[email protected]>
14583 L:      [email protected]
14584 S:      Maintained
14585 F:      drivers/char/powernv-op-panel.c
14586
14587 PPP OVER ATM (RFC 2364)
14588 M:      Mitchell Blank Jr <[email protected]>
14589 S:      Maintained
14590 F:      include/uapi/linux/atmppp.h
14591 F:      net/atm/pppoatm.c
14592
14593 PPP OVER ETHERNET
14594 M:      Michal Ostrowski <[email protected]>
14595 S:      Maintained
14596 F:      drivers/net/ppp/pppoe.c
14597 F:      drivers/net/ppp/pppox.c
14598
14599 PPP OVER L2TP
14600 M:      James Chapman <[email protected]>
14601 S:      Maintained
14602 F:      include/linux/if_pppol2tp.h
14603 F:      include/uapi/linux/if_pppol2tp.h
14604 F:      net/l2tp/l2tp_ppp.c
14605
14606 PPP PROTOCOL DRIVERS AND COMPRESSORS
14607 M:      Paul Mackerras <[email protected]>
14608 L:      [email protected]
14609 S:      Maintained
14610 F:      drivers/net/ppp/ppp_*
14611
14612 PPS SUPPORT
14613 M:      Rodolfo Giometti <[email protected]>
14614 L:      [email protected] (subscribers-only)
14615 S:      Maintained
14616 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14617 F:      Documentation/ABI/testing/sysfs-pps
14618 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14619 F:      Documentation/driver-api/pps.rst
14620 F:      drivers/pps/
14621 F:      include/linux/pps*.h
14622 F:      include/uapi/linux/pps.h
14623
14624 PPTP DRIVER
14625 M:      Dmitry Kozlov <[email protected]>
14626 L:      [email protected]
14627 S:      Maintained
14628 W:      http://sourceforge.net/projects/accel-pptp
14629 F:      drivers/net/ppp/pptp.c
14630
14631 PRESSURE STALL INFORMATION (PSI)
14632 M:      Johannes Weiner <[email protected]>
14633 S:      Maintained
14634 F:      include/linux/psi*
14635 F:      kernel/sched/psi.c
14636
14637 PRINTK
14638 M:      Petr Mladek <[email protected]>
14639 M:      Sergey Senozhatsky <[email protected]>
14640 R:      Steven Rostedt <[email protected]>
14641 R:      John Ogness <[email protected]>
14642 S:      Maintained
14643 F:      include/linux/printk.h
14644 F:      kernel/printk/
14645
14646 PRISM54 WIRELESS DRIVER
14647 M:      Luis Chamberlain <[email protected]>
14648 L:      [email protected]
14649 S:      Obsolete
14650 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14651 F:      drivers/net/wireless/intersil/prism54/
14652
14653 PROC FILESYSTEM
14654 R:      Alexey Dobriyan <[email protected]>
14655 L:      [email protected]
14656 L:      [email protected]
14657 S:      Maintained
14658 F:      Documentation/filesystems/proc.rst
14659 F:      fs/proc/
14660 F:      include/linux/proc_fs.h
14661 F:      tools/testing/selftests/proc/
14662
14663 PROC SYSCTL
14664 M:      Luis Chamberlain <[email protected]>
14665 M:      Kees Cook <[email protected]>
14666 M:      Iurii Zaikin <[email protected]>
14667 L:      [email protected]
14668 L:      [email protected]
14669 S:      Maintained
14670 F:      fs/proc/proc_sysctl.c
14671 F:      include/linux/sysctl.h
14672 F:      kernel/sysctl-test.c
14673 F:      kernel/sysctl.c
14674 F:      tools/testing/selftests/sysctl/
14675
14676 PS3 NETWORK SUPPORT
14677 M:      Geoff Levand <[email protected]>
14678 L:      [email protected]
14679 L:      [email protected]
14680 S:      Maintained
14681 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14682
14683 PS3 PLATFORM SUPPORT
14684 M:      Geoff Levand <[email protected]>
14685 L:      [email protected]
14686 S:      Maintained
14687 F:      arch/powerpc/boot/ps3*
14688 F:      arch/powerpc/include/asm/lv1call.h
14689 F:      arch/powerpc/include/asm/ps3*.h
14690 F:      arch/powerpc/platforms/ps3/
14691 F:      drivers/*/ps3*
14692 F:      drivers/ps3/
14693 F:      drivers/rtc/rtc-ps3.c
14694 F:      drivers/usb/host/*ps3.c
14695 F:      sound/ppc/snd_ps3*
14696
14697 PS3VRAM DRIVER
14698 M:      Jim Paris <[email protected]>
14699 M:      Geoff Levand <[email protected]>
14700 L:      [email protected]
14701 S:      Maintained
14702 F:      drivers/block/ps3vram.c
14703
14704 PSAMPLE PACKET SAMPLING SUPPORT
14705 M:      Yotam Gigi <[email protected]>
14706 S:      Maintained
14707 F:      include/net/psample.h
14708 F:      include/uapi/linux/psample.h
14709 F:      net/psample
14710
14711 PSTORE FILESYSTEM
14712 M:      Kees Cook <[email protected]>
14713 M:      Anton Vorontsov <[email protected]>
14714 M:      Colin Cross <[email protected]>
14715 M:      Tony Luck <[email protected]>
14716 S:      Maintained
14717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14718 F:      Documentation/admin-guide/ramoops.rst
14719 F:      Documentation/admin-guide/pstore-blk.rst
14720 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14721 F:      drivers/acpi/apei/erst.c
14722 F:      drivers/firmware/efi/efi-pstore.c
14723 F:      fs/pstore/
14724 F:      include/linux/pstore*
14725 K:      \b(pstore|ramoops)
14726
14727 PTP HARDWARE CLOCK SUPPORT
14728 M:      Richard Cochran <[email protected]>
14729 L:      [email protected]
14730 S:      Maintained
14731 W:      http://linuxptp.sourceforge.net/
14732 F:      Documentation/ABI/testing/sysfs-ptp
14733 F:      Documentation/driver-api/ptp.rst
14734 F:      drivers/net/phy/dp83640*
14735 F:      drivers/ptp/*
14736 F:      include/linux/ptp_cl*
14737
14738 PTRACE SUPPORT
14739 M:      Oleg Nesterov <[email protected]>
14740 S:      Maintained
14741 F:      arch/*/*/ptrace*.c
14742 F:      arch/*/include/asm/ptrace*.h
14743 F:      arch/*/ptrace*.c
14744 F:      include/asm-generic/syscall.h
14745 F:      include/linux/ptrace.h
14746 F:      include/linux/regset.h
14747 F:      include/linux/tracehook.h
14748 F:      include/uapi/linux/ptrace.h
14749 F:      include/uapi/linux/ptrace.h
14750 F:      kernel/ptrace.c
14751
14752 PULSE8-CEC DRIVER
14753 M:      Hans Verkuil <[email protected]>
14754 L:      [email protected]
14755 S:      Maintained
14756 T:      git git://linuxtv.org/media_tree.git
14757 F:      Documentation/admin-guide/media/pulse8-cec.rst
14758 F:      drivers/media/cec/usb/pulse8/
14759
14760 PVRUSB2 VIDEO4LINUX DRIVER
14761 M:      Mike Isely <[email protected]>
14762 L:      [email protected]       (subscribers-only)
14763 L:      [email protected]
14764 S:      Maintained
14765 W:      http://www.isely.net/pvrusb2/
14766 T:      git git://linuxtv.org/media_tree.git
14767 F:      Documentation/driver-api/media/drivers/pvrusb2*
14768 F:      drivers/media/usb/pvrusb2/
14769
14770 PWC WEBCAM DRIVER
14771 M:      Hans Verkuil <[email protected]>
14772 L:      [email protected]
14773 S:      Odd Fixes
14774 T:      git git://linuxtv.org/media_tree.git
14775 F:      drivers/media/usb/pwc/*
14776 F:      include/trace/events/pwc.h
14777
14778 PWM FAN DRIVER
14779 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14780 L:      [email protected]
14781 S:      Supported
14782 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14783 F:      Documentation/hwmon/pwm-fan.rst
14784 F:      drivers/hwmon/pwm-fan.c
14785
14786 PWM IR Transmitter
14787 M:      Sean Young <[email protected]>
14788 L:      [email protected]
14789 S:      Maintained
14790 F:      drivers/media/rc/pwm-ir-tx.c
14791
14792 PWM SUBSYSTEM
14793 M:      Thierry Reding <[email protected]>
14794 R:      Uwe Kleine-König <[email protected]>
14795 M:      Lee Jones <[email protected]>
14796 L:      [email protected]
14797 S:      Maintained
14798 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14800 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14801 F:      Documentation/devicetree/bindings/pwm/
14802 F:      Documentation/driver-api/pwm.rst
14803 F:      drivers/gpio/gpio-mvebu.c
14804 F:      drivers/pwm/
14805 F:      drivers/video/backlight/pwm_bl.c
14806 F:      include/linux/pwm.h
14807 F:      include/linux/pwm_backlight.h
14808 K:      pwm_(config|apply_state|ops)
14809
14810 PXA GPIO DRIVER
14811 M:      Robert Jarzmik <[email protected]>
14812 L:      [email protected]
14813 S:      Maintained
14814 F:      drivers/gpio/gpio-pxa.c
14815
14816 PXA MMCI DRIVER
14817 S:      Orphan
14818
14819 PXA RTC DRIVER
14820 M:      Robert Jarzmik <[email protected]>
14821 L:      [email protected]
14822 S:      Maintained
14823
14824 PXA2xx/PXA3xx SUPPORT
14825 M:      Daniel Mack <[email protected]>
14826 M:      Haojian Zhuang <[email protected]>
14827 M:      Robert Jarzmik <[email protected]>
14828 L:      [email protected] (moderated for non-subscribers)
14829 S:      Maintained
14830 T:      git git://github.com/hzhuang1/linux.git
14831 T:      git git://github.com/rjarzmik/linux.git
14832 F:      arch/arm/boot/dts/pxa*
14833 F:      arch/arm/mach-pxa/
14834 F:      drivers/dma/pxa*
14835 F:      drivers/pcmcia/pxa2xx*
14836 F:      drivers/pinctrl/pxa/
14837 F:      drivers/spi/spi-pxa2xx*
14838 F:      drivers/usb/gadget/udc/pxa2*
14839 F:      include/sound/pxa2xx-lib.h
14840 F:      sound/arm/pxa*
14841 F:      sound/soc/pxa/
14842
14843 QAT DRIVER
14844 M:      Giovanni Cabiddu <[email protected]>
14845 L:      [email protected]
14846 S:      Supported
14847 F:      drivers/crypto/qat/
14848
14849 QCOM AUDIO (ASoC) DRIVERS
14850 M:      Srinivas Kandagatla <[email protected]>
14851 M:      Banajit Goswami <[email protected]>
14852 L:      [email protected] (moderated for non-subscribers)
14853 S:      Supported
14854 F:      sound/soc/codecs/lpass-va-macro.c
14855 F:      sound/soc/codecs/lpass-wsa-macro.*
14856 F:      sound/soc/codecs/msm8916-wcd-analog.c
14857 F:      sound/soc/codecs/msm8916-wcd-digital.c
14858 F:      sound/soc/codecs/wcd9335.*
14859 F:      sound/soc/codecs/wcd934x.c
14860 F:      sound/soc/codecs/wcd-clsh-v2.*
14861 F:      sound/soc/codecs/wsa881x.c
14862 F:      sound/soc/qcom/
14863
14864 QCOM IPA DRIVER
14865 M:      Alex Elder <[email protected]>
14866 L:      [email protected]
14867 S:      Supported
14868 F:      drivers/net/ipa/
14869
14870 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14871 M:      Gabriel Somlo <[email protected]>
14872 M:      "Michael S. Tsirkin" <[email protected]>
14873 L:      [email protected]
14874 S:      Maintained
14875 F:      drivers/firmware/qemu_fw_cfg.c
14876 F:      include/uapi/linux/qemu_fw_cfg.h
14877
14878 QIB DRIVER
14879 M:      Dennis Dalessandro <[email protected]>
14880 M:      Mike Marciniszyn <[email protected]>
14881 L:      [email protected]
14882 S:      Supported
14883 F:      drivers/infiniband/hw/qib/
14884
14885 QLOGIC QL41xxx FCOE DRIVER
14886 M:      Saurav Kashyap <[email protected]>
14887 M:      Javed Hasan <[email protected]>
14888 M:      [email protected]
14889 L:      [email protected]
14890 S:      Supported
14891 F:      drivers/scsi/qedf/
14892
14893 QLOGIC QL41xxx ISCSI DRIVER
14894 M:      Nilesh Javali <[email protected]>
14895 M:      Manish Rangankar <[email protected]>
14896 M:      [email protected]
14897 L:      [email protected]
14898 S:      Supported
14899 F:      drivers/scsi/qedi/
14900
14901 QLOGIC QL4xxx ETHERNET DRIVER
14902 M:      Ariel Elior <[email protected]>
14903 M:      [email protected]
14904 L:      [email protected]
14905 S:      Supported
14906 F:      drivers/net/ethernet/qlogic/qed/
14907 F:      drivers/net/ethernet/qlogic/qede/
14908 F:      include/linux/qed/
14909
14910 QLOGIC QL4xxx RDMA DRIVER
14911 M:      Michal Kalderon <[email protected]>
14912 M:      Ariel Elior <[email protected]>
14913 L:      [email protected]
14914 S:      Supported
14915 F:      drivers/infiniband/hw/qedr/
14916 F:      include/uapi/rdma/qedr-abi.h
14917
14918 QLOGIC QLA1280 SCSI DRIVER
14919 M:      Michael Reed <[email protected]>
14920 L:      [email protected]
14921 S:      Maintained
14922 F:      drivers/scsi/qla1280.[ch]
14923
14924 QLOGIC QLA2XXX FC-SCSI DRIVER
14925 M:      Nilesh Javali <[email protected]>
14926 M:      [email protected]
14927 L:      [email protected]
14928 S:      Supported
14929 F:      drivers/scsi/qla2xxx/
14930
14931 QLOGIC QLA3XXX NETWORK DRIVER
14932 M:      [email protected]
14933 L:      [email protected]
14934 S:      Supported
14935 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14936
14937 QLOGIC QLA4XXX iSCSI DRIVER
14938 M:      Nilesh Javali <[email protected]>
14939 M:      Manish Rangankar <[email protected]>
14940 M:      [email protected]
14941 L:      [email protected]
14942 S:      Supported
14943 F:      drivers/scsi/qla4xxx/
14944
14945 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14946 M:      Shahed Shaikh <[email protected]>
14947 M:      Manish Chopra <[email protected]>
14948 M:      [email protected]
14949 L:      [email protected]
14950 S:      Supported
14951 F:      drivers/net/ethernet/qlogic/qlcnic/
14952
14953 QLOGIC QLGE 10Gb ETHERNET DRIVER
14954 M:      Manish Chopra <[email protected]>
14955 M:      [email protected]
14956 M:      Coiby Xu <[email protected]>
14957 L:      [email protected]
14958 S:      Supported
14959 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
14960 F:      drivers/staging/qlge/
14961
14962 QM1D1B0004 MEDIA DRIVER
14963 M:      Akihiro Tsukada <[email protected]>
14964 L:      [email protected]
14965 S:      Odd Fixes
14966 F:      drivers/media/tuners/qm1d1b0004*
14967
14968 QM1D1C0042 MEDIA DRIVER
14969 M:      Akihiro Tsukada <[email protected]>
14970 L:      [email protected]
14971 S:      Odd Fixes
14972 F:      drivers/media/tuners/qm1d1c0042*
14973
14974 QNX4 FILESYSTEM
14975 M:      Anders Larsen <[email protected]>
14976 S:      Maintained
14977 W:      http://www.alarsen.net/linux/qnx4fs/
14978 F:      fs/qnx4/
14979 F:      include/uapi/linux/qnx4_fs.h
14980 F:      include/uapi/linux/qnxtypes.h
14981
14982 QORIQ DPAA2 FSL-MC BUS DRIVER
14983 M:      Stuart Yoder <[email protected]>
14984 M:      Laurentiu Tudor <[email protected]>
14985 L:      [email protected]
14986 S:      Maintained
14987 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
14988 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14989 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14990 F:      drivers/bus/fsl-mc/
14991 F:      include/uapi/linux/fsl_mc.h
14992
14993 QT1010 MEDIA DRIVER
14994 M:      Antti Palosaari <[email protected]>
14995 L:      [email protected]
14996 S:      Maintained
14997 W:      https://linuxtv.org
14998 W:      http://palosaari.fi/linux/
14999 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15000 T:      git git://linuxtv.org/anttip/media_tree.git
15001 F:      drivers/media/tuners/qt1010*
15002
15003 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15004 M:      Kalle Valo <[email protected]>
15005 L:      [email protected]
15006 S:      Supported
15007 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15009 F:      drivers/net/wireless/ath/ath10k/
15010
15011 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15012 M:      Kalle Valo <[email protected]>
15013 L:      [email protected]
15014 S:      Supported
15015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15016 F:      drivers/net/wireless/ath/ath11k/
15017
15018 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15019 M:      [email protected]
15020 L:      [email protected]
15021 S:      Supported
15022 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15023 F:      drivers/net/wireless/ath/ath9k/
15024
15025 QUALCOMM CAMERA SUBSYSTEM DRIVER
15026 M:      Robert Foss <[email protected]>
15027 M:      Todor Tomov <[email protected]>
15028 L:      [email protected]
15029 S:      Maintained
15030 F:      Documentation/admin-guide/media/qcom_camss.rst
15031 F:      Documentation/devicetree/bindings/media/*camss*
15032 F:      drivers/media/platform/qcom/camss/
15033
15034 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15035 M:      Niklas Cassel <[email protected]>
15036 L:      [email protected]
15037 L:      [email protected]
15038 S:      Maintained
15039 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15040 F:      drivers/soc/qcom/cpr.c
15041
15042 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15043 M:      Ilia Lin <[email protected]>
15044 L:      [email protected]
15045 S:      Maintained
15046 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15047 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15048
15049 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15050 M:      Timur Tabi <[email protected]>
15051 L:      [email protected]
15052 S:      Maintained
15053 F:      drivers/net/ethernet/qualcomm/emac/
15054
15055 QUALCOMM ETHQOS ETHERNET DRIVER
15056 M:      Vinod Koul <[email protected]>
15057 L:      [email protected]
15058 S:      Maintained
15059 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15060 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15061
15062 QUALCOMM GENERIC INTERFACE I2C DRIVER
15063 M:      Akash Asthana <[email protected]>
15064 M:      Mukesh Savaliya <[email protected]>
15065 L:      [email protected]
15066 L:      [email protected]
15067 S:      Supported
15068 F:      drivers/i2c/busses/i2c-qcom-geni.c
15069
15070 QUALCOMM HEXAGON ARCHITECTURE
15071 M:      Brian Cain <[email protected]>
15072 L:      [email protected]
15073 S:      Supported
15074 F:      arch/hexagon/
15075
15076 QUALCOMM HIDMA DRIVER
15077 M:      Sinan Kaya <[email protected]>
15078 L:      [email protected]
15079 L:      [email protected]
15080 L:      [email protected]
15081 S:      Supported
15082 F:      drivers/dma/qcom/hidma*
15083
15084 QUALCOMM I2C CCI DRIVER
15085 M:      Loic Poulain <[email protected]>
15086 M:      Robert Foss <[email protected]>
15087 L:      [email protected]
15088 L:      [email protected]
15089 S:      Maintained
15090 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15091 F:      drivers/i2c/busses/i2c-qcom-cci.c
15092
15093 QUALCOMM IOMMU
15094 M:      Rob Clark <[email protected]>
15095 L:      [email protected]
15096 L:      [email protected]
15097 S:      Maintained
15098 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15099
15100 QUALCOMM IPC ROUTER (QRTR) DRIVER
15101 M:      Manivannan Sadhasivam <[email protected]>
15102 L:      [email protected]
15103 S:      Maintained
15104 F:      include/trace/events/qrtr.h
15105 F:      include/uapi/linux/qrtr.h
15106 F:      net/qrtr/
15107
15108 QUALCOMM IPCC MAILBOX DRIVER
15109 M:      Manivannan Sadhasivam <[email protected]>
15110 L:      [email protected]
15111 S:      Supported
15112 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15113 F:      drivers/mailbox/qcom-ipcc.c
15114 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15115
15116 QUALCOMM IPQ4019 USB PHY DRIVER
15117 M:      Robert Marko <[email protected]>
15118 M:      Luka Perkov <[email protected]>
15119 L:      [email protected]
15120 S:      Maintained
15121 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15122 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15123
15124 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15125 M:      Robert Marko <[email protected]>
15126 M:      Luka Perkov <[email protected]>
15127 L:      [email protected]
15128 S:      Maintained
15129 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15130 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15131
15132 QUALCOMM RMNET DRIVER
15133 M:      Subash Abhinov Kasiviswanathan <[email protected]>
15134 M:      Sean Tranchetti <[email protected]>
15135 L:      [email protected]
15136 S:      Maintained
15137 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15138 F:      drivers/net/ethernet/qualcomm/rmnet/
15139 F:      include/linux/if_rmnet.h
15140
15141 QUALCOMM TSENS THERMAL DRIVER
15142 M:      Amit Kucheria <[email protected]>
15143 L:      [email protected]
15144 L:      [email protected]
15145 S:      Maintained
15146 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15147 F:      drivers/thermal/qcom/
15148
15149 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15150 M:      Stanimir Varbanov <[email protected]>
15151 L:      [email protected]
15152 L:      [email protected]
15153 S:      Maintained
15154 T:      git git://linuxtv.org/media_tree.git
15155 F:      Documentation/devicetree/bindings/media/*venus*
15156 F:      drivers/media/platform/qcom/venus/
15157
15158 QUALCOMM WCN36XX WIRELESS DRIVER
15159 M:      Kalle Valo <[email protected]>
15160 L:      [email protected]
15161 S:      Supported
15162 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15163 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15164 F:      drivers/net/wireless/ath/wcn36xx/
15165
15166 QUANTENNA QTNFMAC WIRELESS DRIVER
15167 M:      Igor Mitsyanko <[email protected]>
15168 R:      Sergey Matyukevich <[email protected]>
15169 L:      [email protected]
15170 S:      Maintained
15171 F:      drivers/net/wireless/quantenna
15172
15173 RADEON and AMDGPU DRM DRIVERS
15174 M:      Alex Deucher <[email protected]>
15175 M:      Christian König <[email protected]>
15176 L:      [email protected]
15177 S:      Supported
15178 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15179 F:      drivers/gpu/drm/amd/
15180 F:      drivers/gpu/drm/radeon/
15181 F:      include/uapi/drm/amdgpu_drm.h
15182 F:      include/uapi/drm/radeon_drm.h
15183
15184 RADEON FRAMEBUFFER DISPLAY DRIVER
15185 M:      Benjamin Herrenschmidt <[email protected]>
15186 L:      [email protected]
15187 S:      Maintained
15188 F:      drivers/video/fbdev/aty/radeon*
15189 F:      include/uapi/linux/radeonfb.h
15190
15191 RADIOSHARK RADIO DRIVER
15192 M:      Hans Verkuil <[email protected]>
15193 L:      [email protected]
15194 S:      Maintained
15195 T:      git git://linuxtv.org/media_tree.git
15196 F:      drivers/media/radio/radio-shark.c
15197
15198 RADIOSHARK2 RADIO DRIVER
15199 M:      Hans Verkuil <[email protected]>
15200 L:      [email protected]
15201 S:      Maintained
15202 T:      git git://linuxtv.org/media_tree.git
15203 F:      drivers/media/radio/radio-shark2.c
15204 F:      drivers/media/radio/radio-tea5777.c
15205
15206 RADOS BLOCK DEVICE (RBD)
15207 M:      Ilya Dryomov <[email protected]>
15208 R:      Dongsheng Yang <[email protected]>
15209 L:      [email protected]
15210 S:      Supported
15211 W:      http://ceph.com/
15212 T:      git git://github.com/ceph/ceph-client.git
15213 F:      Documentation/ABI/testing/sysfs-bus-rbd
15214 F:      drivers/block/rbd.c
15215 F:      drivers/block/rbd_types.h
15216
15217 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15218 M:      Paul Mackerras <[email protected]>
15219 L:      [email protected]
15220 S:      Maintained
15221 F:      drivers/video/fbdev/aty/aty128fb.c
15222
15223 RAINSHADOW-CEC DRIVER
15224 M:      Hans Verkuil <[email protected]>
15225 L:      [email protected]
15226 S:      Maintained
15227 T:      git git://linuxtv.org/media_tree.git
15228 F:      drivers/media/cec/usb/rainshadow/
15229
15230 RALINK MIPS ARCHITECTURE
15231 M:      John Crispin <[email protected]>
15232 L:      [email protected]
15233 S:      Maintained
15234 F:      arch/mips/ralink
15235
15236 RALINK RT2X00 WIRELESS LAN DRIVER
15237 M:      Stanislaw Gruszka <[email protected]>
15238 M:      Helmut Schaa <[email protected]>
15239 L:      [email protected]
15240 S:      Maintained
15241 F:      drivers/net/wireless/ralink/rt2x00/
15242
15243 RAMDISK RAM BLOCK DEVICE DRIVER
15244 M:      Jens Axboe <[email protected]>
15245 S:      Maintained
15246 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15247 F:      drivers/block/brd.c
15248
15249 RANCHU VIRTUAL BOARD FOR MIPS
15250 M:      Miodrag Dinic <[email protected]>
15251 L:      [email protected]
15252 S:      Supported
15253 F:      arch/mips/configs/generic/board-ranchu.config
15254 F:      arch/mips/generic/board-ranchu.c
15255
15256 RANDOM NUMBER DRIVER
15257 M:      "Theodore Ts'o" <[email protected]>
15258 S:      Maintained
15259 F:      drivers/char/random.c
15260
15261 RAPIDIO SUBSYSTEM
15262 M:      Matt Porter <[email protected]>
15263 M:      Alexandre Bounine <[email protected]>
15264 S:      Maintained
15265 F:      drivers/rapidio/
15266
15267 RAS INFRASTRUCTURE
15268 M:      Tony Luck <[email protected]>
15269 M:      Borislav Petkov <[email protected]>
15270 L:      [email protected]
15271 S:      Maintained
15272 F:      Documentation/admin-guide/ras.rst
15273 F:      drivers/ras/
15274 F:      include/linux/ras.h
15275 F:      include/ras/ras_event.h
15276
15277 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15278 L:      [email protected]
15279 S:      Orphan
15280 F:      drivers/net/wireless/ray*
15281
15282 RC-CORE / LIRC FRAMEWORK
15283 M:      Sean Young <[email protected]>
15284 L:      [email protected]
15285 S:      Maintained
15286 W:      http://linuxtv.org
15287 T:      git git://linuxtv.org/media_tree.git
15288 F:      Documentation/driver-api/media/rc-core.rst
15289 F:      Documentation/userspace-api/media/rc/
15290 F:      drivers/media/rc/
15291 F:      include/media/rc-map.h
15292 F:      include/media/rc-core.h
15293 F:      include/uapi/linux/lirc.h
15294
15295 RCMM REMOTE CONTROLS DECODER
15296 M:      Patrick Lerda <[email protected]>
15297 S:      Maintained
15298 F:      drivers/media/rc/ir-rcmm-decoder.c
15299
15300 RCUTORTURE TEST FRAMEWORK
15301 M:      "Paul E. McKenney" <[email protected]>
15302 M:      Josh Triplett <[email protected]>
15303 R:      Steven Rostedt <[email protected]>
15304 R:      Mathieu Desnoyers <[email protected]>
15305 R:      Lai Jiangshan <[email protected]>
15306 L:      [email protected]
15307 S:      Supported
15308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15309 F:      tools/testing/selftests/rcutorture
15310
15311 RDACM20 Camera Sensor
15312 M:      Jacopo Mondi <[email protected]>
15313 M:      Kieran Bingham <[email protected]>
15314 M:      Laurent Pinchart <[email protected]>
15315 M:      Niklas Söderlund <[email protected]>
15316 L:      [email protected]
15317 S:      Maintained
15318 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15319 F:      drivers/media/i2c/max9271.c
15320 F:      drivers/media/i2c/max9271.h
15321 F:      drivers/media/i2c/rdacm20.c
15322
15323 RDACM21 Camera Sensor
15324 M:      Jacopo Mondi <[email protected]>
15325 M:      Kieran Bingham <[email protected]>
15326 M:      Laurent Pinchart <[email protected]>
15327 M:      Niklas Söderlund <[email protected]>
15328 L:      [email protected]
15329 S:      Maintained
15330 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15331 F:      drivers/media/i2c/max9271.c
15332 F:      drivers/media/i2c/max9271.h
15333 F:      drivers/media/i2c/rdacm21.c
15334
15335 RDC R-321X SoC
15336 M:      Florian Fainelli <[email protected]>
15337 S:      Maintained
15338
15339 RDC R6040 FAST ETHERNET DRIVER
15340 M:      Florian Fainelli <[email protected]>
15341 L:      [email protected]
15342 S:      Maintained
15343 F:      drivers/net/ethernet/rdc/r6040.c
15344
15345 RDMAVT - RDMA verbs software
15346 M:      Dennis Dalessandro <[email protected]>
15347 M:      Mike Marciniszyn <[email protected]>
15348 L:      [email protected]
15349 S:      Supported
15350 F:      drivers/infiniband/sw/rdmavt
15351
15352 RDS - RELIABLE DATAGRAM SOCKETS
15353 M:      Santosh Shilimkar <[email protected]>
15354 L:      [email protected]
15355 L:      [email protected]
15356 L:      [email protected] (moderated for non-subscribers)
15357 S:      Supported
15358 W:      https://oss.oracle.com/projects/rds/
15359 F:      Documentation/networking/rds.rst
15360 F:      net/rds/
15361
15362 RDT - RESOURCE ALLOCATION
15363 M:      Fenghua Yu <[email protected]>
15364 M:      Reinette Chatre <[email protected]>
15365 L:      [email protected]
15366 S:      Supported
15367 F:      Documentation/x86/resctrl*
15368 F:      arch/x86/include/asm/resctrl.h
15369 F:      arch/x86/kernel/cpu/resctrl/
15370 F:      tools/testing/selftests/resctrl/
15371
15372 READ-COPY UPDATE (RCU)
15373 M:      "Paul E. McKenney" <[email protected]>
15374 M:      Josh Triplett <[email protected]>
15375 R:      Steven Rostedt <[email protected]>
15376 R:      Mathieu Desnoyers <[email protected]>
15377 R:      Lai Jiangshan <[email protected]>
15378 R:      Joel Fernandes <[email protected]>
15379 L:      [email protected]
15380 S:      Supported
15381 W:      http://www.rdrop.com/users/paulmck/RCU/
15382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15383 F:      Documentation/RCU/
15384 F:      include/linux/rcu*
15385 F:      kernel/rcu/
15386 X:      Documentation/RCU/torture.rst
15387 X:      include/linux/srcu*.h
15388 X:      kernel/rcu/srcu*.c
15389
15390 REAL TIME CLOCK (RTC) SUBSYSTEM
15391 M:      Alessandro Zummo <[email protected]>
15392 M:      Alexandre Belloni <[email protected]>
15393 L:      [email protected]
15394 S:      Maintained
15395 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15397 F:      Documentation/admin-guide/rtc.rst
15398 F:      Documentation/devicetree/bindings/rtc/
15399 F:      drivers/rtc/
15400 F:      include/linux/platform_data/rtc-*
15401 F:      include/linux/rtc.h
15402 F:      include/linux/rtc/
15403 F:      include/uapi/linux/rtc.h
15404 F:      tools/testing/selftests/rtc/
15405
15406 REALTEK AUDIO CODECS
15407 M:      Oder Chiou <[email protected]>
15408 S:      Maintained
15409 F:      include/sound/rt*.h
15410 F:      sound/soc/codecs/rt*
15411
15412 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15413 M:      Linus Walleij <[email protected]>
15414 S:      Maintained
15415 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15416 F:      drivers/net/dsa/realtek-smi*
15417 F:      drivers/net/dsa/rtl83*
15418
15419 REALTEK WIRELESS DRIVER (rtlwifi family)
15420 M:      Ping-Ke Shih <[email protected]>
15421 L:      [email protected]
15422 S:      Maintained
15423 W:      https://wireless.wiki.kernel.org/
15424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15425 F:      drivers/net/wireless/realtek/rtlwifi/
15426
15427 REALTEK WIRELESS DRIVER (rtw88)
15428 M:      Yan-Hsuan Chuang <[email protected]>
15429 L:      [email protected]
15430 S:      Maintained
15431 F:      drivers/net/wireless/realtek/rtw88/
15432
15433 REDPINE WIRELESS DRIVER
15434 M:      Amitkumar Karwar <[email protected]>
15435 M:      Siva Rebbagondla <[email protected]>
15436 L:      [email protected]
15437 S:      Maintained
15438 F:      drivers/net/wireless/rsi/
15439
15440 REGISTER MAP ABSTRACTION
15441 M:      Mark Brown <[email protected]>
15442 L:      [email protected]
15443 S:      Supported
15444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15445 F:      Documentation/devicetree/bindings/regmap/
15446 F:      drivers/base/regmap/
15447 F:      include/linux/regmap.h
15448
15449 REISERFS FILE SYSTEM
15450 L:      [email protected]
15451 S:      Supported
15452 F:      fs/reiserfs/
15453
15454 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15455 M:      Ohad Ben-Cohen <[email protected]>
15456 M:      Bjorn Andersson <[email protected]>
15457 M:      Mathieu Poirier <[email protected]>
15458 L:      [email protected]
15459 S:      Maintained
15460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15461 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15462 F:      Documentation/devicetree/bindings/remoteproc/
15463 F:      Documentation/staging/remoteproc.rst
15464 F:      drivers/remoteproc/
15465 F:      include/linux/remoteproc.h
15466 F:      include/linux/remoteproc/
15467
15468 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15469 M:      Ohad Ben-Cohen <[email protected]>
15470 M:      Bjorn Andersson <[email protected]>
15471 M:      Mathieu Poirier <[email protected]>
15472 L:      [email protected]
15473 S:      Maintained
15474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15475 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15476 F:      Documentation/staging/rpmsg.rst
15477 F:      drivers/rpmsg/
15478 F:      include/linux/rpmsg.h
15479 F:      include/linux/rpmsg/
15480 F:      include/uapi/linux/rpmsg.h
15481 F:      samples/rpmsg/
15482
15483 RENESAS CLOCK DRIVERS
15484 M:      Geert Uytterhoeven <[email protected]>
15485 L:      [email protected]
15486 S:      Supported
15487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15488 F:      Documentation/devicetree/bindings/clock/renesas,*
15489 F:      drivers/clk/renesas/
15490
15491 RENESAS EMEV2 I2C DRIVER
15492 M:      Wolfram Sang <[email protected]>
15493 S:      Supported
15494 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
15495 F:      drivers/i2c/busses/i2c-emev2.c
15496
15497 RENESAS ETHERNET DRIVERS
15498 R:      Sergei Shtylyov <[email protected]>
15499 L:      [email protected]
15500 L:      [email protected]
15501 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15502 F:      drivers/net/ethernet/renesas/
15503 F:      include/linux/sh_eth.h
15504
15505 RENESAS R-CAR GYROADC DRIVER
15506 M:      Marek Vasut <[email protected]>
15507 L:      [email protected]
15508 S:      Supported
15509 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
15510 F:      drivers/iio/adc/rcar-gyroadc.c
15511
15512 RENESAS R-CAR I2C DRIVERS
15513 M:      Wolfram Sang <[email protected]>
15514 S:      Supported
15515 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
15516 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
15517 F:      drivers/i2c/busses/i2c-rcar.c
15518 F:      drivers/i2c/busses/i2c-sh_mobile.c
15519
15520 RENESAS R-CAR THERMAL DRIVERS
15521 M:      Niklas Söderlund <[email protected]>
15522 L:      [email protected]
15523 S:      Supported
15524 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15525 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15526 F:      drivers/thermal/rcar_gen3_thermal.c
15527 F:      drivers/thermal/rcar_thermal.c
15528
15529 RENESAS RIIC DRIVER
15530 M:      Chris Brandt <[email protected]>
15531 S:      Supported
15532 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
15533 F:      drivers/i2c/busses/i2c-riic.c
15534
15535 RENESAS USB PHY DRIVER
15536 M:      Yoshihiro Shimoda <[email protected]>
15537 L:      [email protected]
15538 S:      Maintained
15539 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15540
15541 RESET CONTROLLER FRAMEWORK
15542 M:      Philipp Zabel <[email protected]>
15543 S:      Maintained
15544 T:      git git://git.pengutronix.de/git/pza/linux
15545 F:      Documentation/devicetree/bindings/reset/
15546 F:      Documentation/driver-api/reset.rst
15547 F:      drivers/reset/
15548 F:      include/dt-bindings/reset/
15549 F:      include/linux/reset-controller.h
15550 F:      include/linux/reset.h
15551 F:      include/linux/reset/
15552 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15553
15554 RESTARTABLE SEQUENCES SUPPORT
15555 M:      Mathieu Desnoyers <[email protected]>
15556 M:      Peter Zijlstra <[email protected]>
15557 M:      "Paul E. McKenney" <[email protected]>
15558 M:      Boqun Feng <[email protected]>
15559 L:      [email protected]
15560 S:      Supported
15561 F:      include/trace/events/rseq.h
15562 F:      include/uapi/linux/rseq.h
15563 F:      kernel/rseq.c
15564 F:      tools/testing/selftests/rseq/
15565
15566 RFKILL
15567 M:      Johannes Berg <[email protected]>
15568 L:      [email protected]
15569 S:      Maintained
15570 W:      https://wireless.wiki.kernel.org/
15571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15573 F:      Documentation/ABI/stable/sysfs-class-rfkill
15574 F:      Documentation/driver-api/rfkill.rst
15575 F:      include/linux/rfkill.h
15576 F:      include/uapi/linux/rfkill.h
15577 F:      net/rfkill/
15578
15579 RHASHTABLE
15580 M:      Thomas Graf <[email protected]>
15581 M:      Herbert Xu <[email protected]>
15582 L:      [email protected]
15583 S:      Maintained
15584 F:      include/linux/rhashtable-types.h
15585 F:      include/linux/rhashtable.h
15586 F:      lib/rhashtable.c
15587 F:      lib/test_rhashtable.c
15588
15589 RICOH R5C592 MEMORYSTICK DRIVER
15590 M:      Maxim Levitsky <[email protected]>
15591 S:      Maintained
15592 F:      drivers/memstick/host/r592.*
15593
15594 RICOH SMARTMEDIA/XD DRIVER
15595 M:      Maxim Levitsky <[email protected]>
15596 S:      Maintained
15597 F:      drivers/mtd/nand/raw/r852.c
15598 F:      drivers/mtd/nand/raw/r852.h
15599
15600 RISC-V ARCHITECTURE
15601 M:      Paul Walmsley <[email protected]>
15602 M:      Palmer Dabbelt <[email protected]>
15603 M:      Albert Ou <[email protected]>
15604 L:      [email protected]
15605 S:      Supported
15606 P:      Documentation/riscv/patch-acceptance.rst
15607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15608 F:      arch/riscv/
15609 N:      riscv
15610 K:      riscv
15611
15612 RNBD BLOCK DRIVERS
15613 M:      Md. Haris Iqbal <[email protected]>
15614 M:      Jack Wang <[email protected]>
15615 L:      [email protected]
15616 S:      Maintained
15617 F:      drivers/block/rnbd/
15618
15619 ROCCAT DRIVERS
15620 M:      Stefan Achatz <[email protected]>
15621 S:      Maintained
15622 W:      http://sourceforge.net/projects/roccat/
15623 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15624 F:      drivers/hid/hid-roccat*
15625 F:      include/linux/hid-roccat*
15626
15627 ROCKCHIP ISP V1 DRIVER
15628 M:      Helen Koike <[email protected]>
15629 M:      Dafna Hirschfeld <[email protected]>
15630 L:      [email protected]
15631 L:      [email protected]
15632 S:      Maintained
15633 F:      Documentation/admin-guide/media/rkisp1.rst
15634 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15635 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15636 F:      drivers/media/platform/rockchip/rkisp1
15637 F:      include/uapi/linux/rkisp1-config.h
15638
15639 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15640 M:      Jacob Chen <[email protected]>
15641 M:      Ezequiel Garcia <[email protected]>
15642 L:      [email protected]
15643 L:      [email protected]
15644 S:      Maintained
15645 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15646 F:      drivers/media/platform/rockchip/rga/
15647
15648 ROCKCHIP VIDEO DECODER DRIVER
15649 M:      Ezequiel Garcia <[email protected]>
15650 L:      [email protected]
15651 L:      [email protected]
15652 S:      Maintained
15653 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15654 F:      drivers/staging/media/rkvdec/
15655
15656 ROCKER DRIVER
15657 M:      Jiri Pirko <[email protected]>
15658 L:      [email protected]
15659 S:      Supported
15660 F:      drivers/net/ethernet/rocker/
15661
15662 ROCKETPORT EXPRESS/INFINITY DRIVER
15663 M:      Kevin Cernekee <[email protected]>
15664 L:      [email protected]
15665 S:      Odd Fixes
15666 F:      drivers/tty/serial/rp2.*
15667
15668 ROHM BD99954 CHARGER IC
15669 R:      Matti Vaittinen <[email protected]>
15670 L:      [email protected]
15671 S:      Supported
15672 F:      drivers/power/supply/bd99954-charger.c
15673 F:      drivers/power/supply/bd99954-charger.h
15674
15675 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15676 M:      Tomasz Duszynski <[email protected]>
15677 S:      Maintained
15678 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15679 F:      drivers/iio/light/bh1750.c
15680
15681 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15682 M:      Marek Vasut <[email protected]>
15683 L:      [email protected]
15684 L:      [email protected]
15685 S:      Supported
15686 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15687 F:      drivers/gpio/gpio-bd9571mwv.c
15688 F:      drivers/mfd/bd9571mwv.c
15689 F:      drivers/regulator/bd9571mwv-regulator.c
15690 F:      include/linux/mfd/bd9571mwv.h
15691
15692 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15693 R:      Matti Vaittinen <[email protected]>
15694 L:      [email protected]
15695 S:      Supported
15696 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15697 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15698 F:      drivers/clk/clk-bd718x7.c
15699 F:      drivers/gpio/gpio-bd70528.c
15700 F:      drivers/gpio/gpio-bd71815.c
15701 F:      drivers/gpio/gpio-bd71828.c
15702 F:      drivers/mfd/rohm-bd70528.c
15703 F:      drivers/mfd/rohm-bd71828.c
15704 F:      drivers/mfd/rohm-bd718x7.c
15705 F:      drivers/mfd/rohm-bd9576.c
15706 F:      drivers/power/supply/bd70528-charger.c
15707 F:      drivers/regulator/bd70528-regulator.c
15708 F:      drivers/regulator/bd71815-regulator.c
15709 F:      drivers/regulator/bd71828-regulator.c
15710 F:      drivers/regulator/bd718x7-regulator.c
15711 F:      drivers/regulator/bd9576-regulator.c
15712 F:      drivers/regulator/rohm-regulator.c
15713 F:      drivers/rtc/rtc-bd70528.c
15714 F:      drivers/watchdog/bd70528_wdt.c
15715 F:      drivers/watchdog/bd9576_wdt.c
15716 F:      include/linux/mfd/rohm-bd70528.h
15717 F:      include/linux/mfd/rohm-bd71815.h
15718 F:      include/linux/mfd/rohm-bd71828.h
15719 F:      include/linux/mfd/rohm-bd718x7.h
15720 F:      include/linux/mfd/rohm-bd957x.h
15721 F:      include/linux/mfd/rohm-generic.h
15722 F:      include/linux/mfd/rohm-shared.h
15723
15724 ROSE NETWORK LAYER
15725 M:      Ralf Baechle <[email protected]>
15726 L:      [email protected]
15727 S:      Maintained
15728 W:      http://www.linux-ax25.org/
15729 F:      include/net/rose.h
15730 F:      include/uapi/linux/rose.h
15731 F:      net/rose/
15732
15733 ROTATION DRIVER FOR ALLWINNER A83T
15734 M:      Jernej Skrabec <[email protected]>
15735 L:      [email protected]
15736 S:      Maintained
15737 T:      git git://linuxtv.org/media_tree.git
15738 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15739 F:      drivers/media/platform/sunxi/sun8i-rotate/
15740
15741 RTL2830 MEDIA DRIVER
15742 M:      Antti Palosaari <[email protected]>
15743 L:      [email protected]
15744 S:      Maintained
15745 W:      https://linuxtv.org
15746 W:      http://palosaari.fi/linux/
15747 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15748 T:      git git://linuxtv.org/anttip/media_tree.git
15749 F:      drivers/media/dvb-frontends/rtl2830*
15750
15751 RTL2832 MEDIA DRIVER
15752 M:      Antti Palosaari <[email protected]>
15753 L:      [email protected]
15754 S:      Maintained
15755 W:      https://linuxtv.org
15756 W:      http://palosaari.fi/linux/
15757 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15758 T:      git git://linuxtv.org/anttip/media_tree.git
15759 F:      drivers/media/dvb-frontends/rtl2832*
15760
15761 RTL2832_SDR MEDIA DRIVER
15762 M:      Antti Palosaari <[email protected]>
15763 L:      [email protected]
15764 S:      Maintained
15765 W:      https://linuxtv.org
15766 W:      http://palosaari.fi/linux/
15767 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15768 T:      git git://linuxtv.org/anttip/media_tree.git
15769 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15770
15771 RTL8180 WIRELESS DRIVER
15772 L:      [email protected]
15773 S:      Orphan
15774 W:      https://wireless.wiki.kernel.org/
15775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15776 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15777
15778 RTL8187 WIRELESS DRIVER
15779 M:      Herton Ronaldo Krzesinski <[email protected]>
15780 M:      Hin-Tak Leung <[email protected]>
15781 M:      Larry Finger <[email protected]>
15782 L:      [email protected]
15783 S:      Maintained
15784 W:      https://wireless.wiki.kernel.org/
15785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15786 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15787
15788 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15789 M:      Jes Sorensen <[email protected]>
15790 L:      [email protected]
15791 S:      Maintained
15792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15793 F:      drivers/net/wireless/realtek/rtl8xxxu/
15794
15795 RTRS TRANSPORT DRIVERS
15796 M:      Danil Kipnis <[email protected]>
15797 M:      Jack Wang <[email protected]>
15798 L:      [email protected]
15799 S:      Maintained
15800 F:      drivers/infiniband/ulp/rtrs/
15801
15802 RXRPC SOCKETS (AF_RXRPC)
15803 M:      David Howells <[email protected]>
15804 L:      [email protected]
15805 S:      Supported
15806 W:      https://www.infradead.org/~dhowells/kafs/
15807 F:      Documentation/networking/rxrpc.rst
15808 F:      include/keys/rxrpc-type.h
15809 F:      include/net/af_rxrpc.h
15810 F:      include/trace/events/rxrpc.h
15811 F:      include/uapi/linux/rxrpc.h
15812 F:      net/rxrpc/
15813
15814 S3 SAVAGE FRAMEBUFFER DRIVER
15815 M:      Antonino Daplas <[email protected]>
15816 L:      [email protected]
15817 S:      Maintained
15818 F:      drivers/video/fbdev/savage/
15819
15820 S390
15821 M:      Heiko Carstens <[email protected]>
15822 M:      Vasily Gorbik <[email protected]>
15823 M:      Christian Borntraeger <[email protected]>
15824 L:      [email protected]
15825 S:      Supported
15826 W:      http://www.ibm.com/developerworks/linux/linux390/
15827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15828 F:      Documentation/driver-api/s390-drivers.rst
15829 F:      Documentation/s390/
15830 F:      arch/s390/
15831 F:      drivers/s390/
15832
15833 S390 COMMON I/O LAYER
15834 M:      Vineeth Vijayan <[email protected]>
15835 M:      Peter Oberparleiter <[email protected]>
15836 L:      [email protected]
15837 S:      Supported
15838 W:      http://www.ibm.com/developerworks/linux/linux390/
15839 F:      drivers/s390/cio/
15840
15841 S390 DASD DRIVER
15842 M:      Stefan Haberland <[email protected]>
15843 M:      Jan Hoeppner <[email protected]>
15844 L:      [email protected]
15845 S:      Supported
15846 W:      http://www.ibm.com/developerworks/linux/linux390/
15847 F:      block/partitions/ibm.c
15848 F:      drivers/s390/block/dasd*
15849 F:      include/linux/dasd_mod.h
15850
15851 S390 IOMMU (PCI)
15852 M:      Matthew Rosato <[email protected]>
15853 M:      Gerald Schaefer <[email protected]>
15854 L:      [email protected]
15855 S:      Supported
15856 W:      http://www.ibm.com/developerworks/linux/linux390/
15857 F:      drivers/iommu/s390-iommu.c
15858
15859 S390 IUCV NETWORK LAYER
15860 M:      Julian Wiedmann <[email protected]>
15861 M:      Karsten Graul <[email protected]>
15862 L:      [email protected]
15863 S:      Supported
15864 W:      http://www.ibm.com/developerworks/linux/linux390/
15865 F:      drivers/s390/net/*iucv*
15866 F:      include/net/iucv/
15867 F:      net/iucv/
15868
15869 S390 NETWORK DRIVERS
15870 M:      Julian Wiedmann <[email protected]>
15871 M:      Karsten Graul <[email protected]>
15872 L:      [email protected]
15873 S:      Supported
15874 W:      http://www.ibm.com/developerworks/linux/linux390/
15875 F:      drivers/s390/net/
15876
15877 S390 PCI SUBSYSTEM
15878 M:      Niklas Schnelle <[email protected]>
15879 M:      Gerald Schaefer <[email protected]>
15880 L:      [email protected]
15881 S:      Supported
15882 W:      http://www.ibm.com/developerworks/linux/linux390/
15883 F:      arch/s390/pci/
15884 F:      drivers/pci/hotplug/s390_pci_hpc.c
15885 F:      Documentation/s390/pci.rst
15886
15887 S390 VFIO AP DRIVER
15888 M:      Tony Krowiak <[email protected]>
15889 M:      Halil Pasic <[email protected]>
15890 M:      Jason Herne <[email protected]>
15891 L:      [email protected]
15892 S:      Supported
15893 W:      http://www.ibm.com/developerworks/linux/linux390/
15894 F:      Documentation/s390/vfio-ap.rst
15895 F:      drivers/s390/crypto/vfio_ap_drv.c
15896 F:      drivers/s390/crypto/vfio_ap_ops.c
15897 F:      drivers/s390/crypto/vfio_ap_private.h
15898
15899 S390 VFIO-CCW DRIVER
15900 M:      Cornelia Huck <[email protected]>
15901 M:      Eric Farman <[email protected]>
15902 M:      Matthew Rosato <[email protected]>
15903 R:      Halil Pasic <[email protected]>
15904 L:      [email protected]
15905 L:      [email protected]
15906 S:      Supported
15907 F:      Documentation/s390/vfio-ccw.rst
15908 F:      drivers/s390/cio/vfio_ccw*
15909 F:      include/uapi/linux/vfio_ccw.h
15910
15911 S390 VFIO-PCI DRIVER
15912 M:      Matthew Rosato <[email protected]>
15913 M:      Eric Farman <[email protected]>
15914 L:      [email protected]
15915 L:      [email protected]
15916 S:      Supported
15917 F:      drivers/vfio/pci/vfio_pci_zdev.c
15918 F:      include/uapi/linux/vfio_zdev.h
15919
15920 S390 ZCRYPT DRIVER
15921 M:      Harald Freudenberger <[email protected]>
15922 L:      [email protected]
15923 S:      Supported
15924 W:      http://www.ibm.com/developerworks/linux/linux390/
15925 F:      drivers/s390/crypto/
15926
15927 S390 ZFCP DRIVER
15928 M:      Steffen Maier <[email protected]>
15929 M:      Benjamin Block <[email protected]>
15930 L:      [email protected]
15931 S:      Supported
15932 W:      http://www.ibm.com/developerworks/linux/linux390/
15933 F:      drivers/s390/scsi/zfcp_*
15934
15935 S3C ADC BATTERY DRIVER
15936 M:      Krzysztof Kozlowski <[email protected]>
15937 L:      [email protected]
15938 S:      Odd Fixes
15939 F:      drivers/power/supply/s3c_adc_battery.c
15940 F:      include/linux/s3c_adc_battery.h
15941
15942 S3C24XX SD/MMC Driver
15943 M:      Ben Dooks <[email protected]>
15944 L:      [email protected] (moderated for non-subscribers)
15945 S:      Supported
15946 F:      drivers/mmc/host/s3cmci.*
15947
15948 SAA6588 RDS RECEIVER DRIVER
15949 M:      Hans Verkuil <[email protected]>
15950 L:      [email protected]
15951 S:      Odd Fixes
15952 W:      https://linuxtv.org
15953 T:      git git://linuxtv.org/media_tree.git
15954 F:      drivers/media/i2c/saa6588*
15955
15956 SAA7134 VIDEO4LINUX DRIVER
15957 M:      Mauro Carvalho Chehab <[email protected]>
15958 L:      [email protected]
15959 S:      Odd fixes
15960 W:      https://linuxtv.org
15961 T:      git git://linuxtv.org/media_tree.git
15962 F:      Documentation/driver-api/media/drivers/saa7134*
15963 F:      drivers/media/pci/saa7134/
15964
15965 SAA7146 VIDEO4LINUX-2 DRIVER
15966 M:      Hans Verkuil <[email protected]>
15967 L:      [email protected]
15968 S:      Maintained
15969 T:      git git://linuxtv.org/media_tree.git
15970 F:      drivers/media/common/saa7146/
15971 F:      drivers/media/pci/saa7146/
15972 F:      include/media/drv-intf/saa7146*
15973
15974 SAFESETID SECURITY MODULE
15975 M:      Micah Morton <[email protected]>
15976 S:      Supported
15977 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15978 F:      security/safesetid/
15979
15980 SAMSUNG AUDIO (ASoC) DRIVERS
15981 M:      Krzysztof Kozlowski <[email protected]>
15982 M:      Sylwester Nawrocki <[email protected]>
15983 L:      [email protected] (moderated for non-subscribers)
15984 S:      Supported
15985 F:      Documentation/devicetree/bindings/sound/samsung*
15986 F:      sound/soc/samsung/
15987
15988 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15989 M:      Krzysztof Kozlowski <[email protected]>
15990 L:      [email protected]
15991 L:      [email protected]
15992 S:      Maintained
15993 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15994 F:      drivers/crypto/exynos-rng.c
15995
15996 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15997 M:      Łukasz Stelmach <[email protected]>
15998 L:      [email protected]
15999 S:      Maintained
16000 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
16001 F:      drivers/char/hw_random/exynos-trng.c
16002
16003 SAMSUNG FRAMEBUFFER DRIVER
16004 M:      Jingoo Han <[email protected]>
16005 L:      [email protected]
16006 S:      Maintained
16007 F:      drivers/video/fbdev/s3c-fb.c
16008
16009 SAMSUNG INTERCONNECT DRIVERS
16010 M:      Sylwester Nawrocki <[email protected]>
16011 M:      Artur Świgoń <[email protected]>
16012 L:      [email protected]
16013 L:      [email protected]
16014 S:      Supported
16015 F:      drivers/interconnect/samsung/
16016
16017 SAMSUNG LAPTOP DRIVER
16018 M:      Corentin Chary <[email protected]>
16019 L:      [email protected]
16020 S:      Maintained
16021 F:      drivers/platform/x86/samsung-laptop.c
16022
16023 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16024 M:      Krzysztof Kozlowski <[email protected]>
16025 M:      Bartlomiej Zolnierkiewicz <[email protected]>
16026 L:      [email protected]
16027 L:      [email protected]
16028 S:      Supported
16029 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16030 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16031 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16032 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16033 F:      drivers/clk/clk-s2mps11.c
16034 F:      drivers/mfd/sec*.c
16035 F:      drivers/regulator/s2m*.c
16036 F:      drivers/regulator/s5m*.c
16037 F:      drivers/rtc/rtc-s5m.c
16038 F:      include/linux/mfd/samsung/
16039
16040 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16041 M:      Sylwester Nawrocki <[email protected]>
16042 L:      [email protected]
16043 L:      [email protected]
16044 S:      Maintained
16045 F:      drivers/media/platform/s3c-camif/
16046 F:      include/media/drv-intf/s3c_camif.h
16047
16048 SAMSUNG S3FWRN5 NFC DRIVER
16049 M:      Krzysztof Kozlowski <[email protected]>
16050 M:      Krzysztof Opasiak <[email protected]>
16051 L:      [email protected] (moderated for non-subscribers)
16052 S:      Maintained
16053 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16054 F:      drivers/nfc/s3fwrn5
16055
16056 SAMSUNG S5C73M3 CAMERA DRIVER
16057 M:      Andrzej Hajda <[email protected]>
16058 L:      [email protected]
16059 S:      Supported
16060 F:      drivers/media/i2c/s5c73m3/*
16061
16062 SAMSUNG S5K5BAF CAMERA DRIVER
16063 M:      Andrzej Hajda <[email protected]>
16064 L:      [email protected]
16065 S:      Supported
16066 F:      drivers/media/i2c/s5k5baf.c
16067
16068 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16069 M:      Krzysztof Kozlowski <[email protected]>
16070 M:      Vladimir Zapolskiy <[email protected]>
16071 L:      [email protected]
16072 L:      [email protected]
16073 S:      Maintained
16074 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16075 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16076 F:      drivers/crypto/s5p-sss.c
16077
16078 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16079 M:      Sylwester Nawrocki <[email protected]>
16080 L:      [email protected]
16081 S:      Supported
16082 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16083 F:      drivers/media/platform/exynos4-is/
16084
16085 SAMSUNG SOC CLOCK DRIVERS
16086 M:      Sylwester Nawrocki <[email protected]>
16087 M:      Tomasz Figa <[email protected]>
16088 M:      Chanwoo Choi <[email protected]>
16089 L:      [email protected]
16090 S:      Supported
16091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16092 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16093 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16094 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16095 F:      drivers/clk/samsung/
16096 F:      include/dt-bindings/clock/exynos*.h
16097 F:      include/linux/clk/samsung.h
16098 F:      include/linux/platform_data/clk-s3c2410.h
16099
16100 SAMSUNG SPI DRIVERS
16101 M:      Krzysztof Kozlowski <[email protected]>
16102 M:      Andi Shyti <[email protected]>
16103 L:      [email protected]
16104 L:      [email protected]
16105 S:      Maintained
16106 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16107 F:      drivers/spi/spi-s3c*
16108 F:      include/linux/platform_data/spi-s3c64xx.h
16109 F:      include/linux/spi/s3c24xx-fiq.h
16110
16111 SAMSUNG SXGBE DRIVERS
16112 M:      Byungho An <[email protected]>
16113 L:      [email protected]
16114 S:      Supported
16115 F:      drivers/net/ethernet/samsung/sxgbe/
16116
16117 SAMSUNG THERMAL DRIVER
16118 M:      Bartlomiej Zolnierkiewicz <[email protected]>
16119 L:      [email protected]
16120 L:      [email protected]
16121 S:      Supported
16122 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16123 F:      drivers/thermal/samsung/
16124
16125 SAMSUNG USB2 PHY DRIVER
16126 M:      Sylwester Nawrocki <[email protected]>
16127 L:      [email protected]
16128 S:      Supported
16129 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16130 F:      Documentation/driver-api/phy/samsung-usb2.rst
16131 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16132 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16133 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16134 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16135 F:      drivers/phy/samsung/phy-samsung-usb2.c
16136 F:      drivers/phy/samsung/phy-samsung-usb2.h
16137
16138 SC1200 WDT DRIVER
16139 M:      Zwane Mwaikambo <[email protected]>
16140 S:      Maintained
16141 F:      drivers/watchdog/sc1200wdt.c
16142
16143 SCHEDULER
16144 M:      Ingo Molnar <[email protected]>
16145 M:      Peter Zijlstra <[email protected]>
16146 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
16147 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
16148 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
16149 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
16150 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
16151 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
16152 R:      Daniel Bristot de Oliveira <[email protected]> (SCHED_DEADLINE)
16153 L:      [email protected]
16154 S:      Maintained
16155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16156 F:      include/linux/preempt.h
16157 F:      include/linux/sched.h
16158 F:      include/linux/wait.h
16159 F:      include/uapi/linux/sched.h
16160 F:      kernel/sched/
16161
16162 SCR24X CHIP CARD INTERFACE DRIVER
16163 M:      Lubomir Rintel <[email protected]>
16164 S:      Supported
16165 F:      drivers/char/pcmcia/scr24x_cs.c
16166
16167 SCSI CDROM DRIVER
16168 M:      Jens Axboe <[email protected]>
16169 L:      [email protected]
16170 S:      Maintained
16171 W:      http://www.kernel.dk
16172 F:      drivers/scsi/sr*
16173
16174 SCSI RDMA PROTOCOL (SRP) INITIATOR
16175 M:      Bart Van Assche <[email protected]>
16176 L:      [email protected]
16177 S:      Supported
16178 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16179 F:      drivers/infiniband/ulp/srp/
16180 F:      include/scsi/srp.h
16181
16182 SCSI RDMA PROTOCOL (SRP) TARGET
16183 M:      Bart Van Assche <[email protected]>
16184 L:      [email protected]
16185 L:      [email protected]
16186 S:      Supported
16187 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16188 F:      drivers/infiniband/ulp/srpt/
16189
16190 SCSI SG DRIVER
16191 M:      Doug Gilbert <[email protected]>
16192 L:      [email protected]
16193 S:      Maintained
16194 W:      http://sg.danny.cz/sg
16195 F:      Documentation/scsi/scsi-generic.rst
16196 F:      drivers/scsi/sg.c
16197 F:      include/scsi/sg.h
16198
16199 SCSI SUBSYSTEM
16200 M:      "James E.J. Bottomley" <[email protected]>
16201 M:      "Martin K. Petersen" <[email protected]>
16202 L:      [email protected]
16203 S:      Maintained
16204 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16207 F:      Documentation/devicetree/bindings/scsi/
16208 F:      drivers/scsi/
16209 F:      include/scsi/
16210
16211 SCSI TAPE DRIVER
16212 M:      Kai Mäkisara <[email protected]>
16213 L:      [email protected]
16214 S:      Maintained
16215 F:      Documentation/scsi/st.rst
16216 F:      drivers/scsi/st.*
16217 F:      drivers/scsi/st_*.h
16218
16219 SCSI TARGET CORE USER DRIVER
16220 M:      Bodo Stroesser <[email protected]>
16221 L:      [email protected]
16222 L:      [email protected]
16223 S:      Supported
16224 F:      Documentation/target/tcmu-design.rst
16225 F:      drivers/target/target_core_user.c
16226 F:      include/uapi/linux/target_core_user.h
16227
16228 SCSI TARGET SUBSYSTEM
16229 M:      "Martin K. Petersen" <[email protected]>
16230 L:      [email protected]
16231 L:      [email protected]
16232 S:      Supported
16233 W:      http://www.linux-iscsi.org
16234 Q:      https://patchwork.kernel.org/project/target-devel/list/
16235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16236 F:      Documentation/target/
16237 F:      drivers/target/
16238 F:      include/target/
16239
16240 SCTP PROTOCOL
16241 M:      Vlad Yasevich <[email protected]>
16242 M:      Neil Horman <[email protected]>
16243 M:      Marcelo Ricardo Leitner <[email protected]>
16244 L:      [email protected]
16245 S:      Maintained
16246 W:      http://lksctp.sourceforge.net
16247 F:      Documentation/networking/sctp.rst
16248 F:      include/linux/sctp.h
16249 F:      include/net/sctp/
16250 F:      include/uapi/linux/sctp.h
16251 F:      net/sctp/
16252
16253 SCx200 CPU SUPPORT
16254 M:      Jim Cromie <[email protected]>
16255 S:      Odd Fixes
16256 F:      Documentation/i2c/busses/scx200_acb.rst
16257 F:      arch/x86/platform/scx200/
16258 F:      drivers/i2c/busses/scx200*
16259 F:      drivers/mtd/maps/scx200_docflash.c
16260 F:      drivers/watchdog/scx200_wdt.c
16261 F:      include/linux/scx200.h
16262
16263 SCx200 GPIO DRIVER
16264 M:      Jim Cromie <[email protected]>
16265 S:      Maintained
16266 F:      drivers/char/scx200_gpio.c
16267 F:      include/linux/scx200_gpio.h
16268
16269 SCx200 HRT CLOCKSOURCE DRIVER
16270 M:      Jim Cromie <[email protected]>
16271 S:      Maintained
16272 F:      drivers/clocksource/scx200_hrt.c
16273
16274 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16275 M:      Sascha Sommer <[email protected]>
16276 L:      [email protected] (subscribers-only)
16277 S:      Maintained
16278 F:      drivers/mmc/host/sdricoh_cs.c
16279
16280 SECO BOARDS CEC DRIVER
16281 M:      Ettore Chimenti <[email protected]>
16282 S:      Maintained
16283 F:      drivers/media/cec/platform/seco/seco-cec.c
16284 F:      drivers/media/cec/platform/seco/seco-cec.h
16285
16286 SECURE COMPUTING
16287 M:      Kees Cook <[email protected]>
16288 R:      Andy Lutomirski <[email protected]>
16289 R:      Will Drewry <[email protected]>
16290 S:      Supported
16291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16292 F:      Documentation/userspace-api/seccomp_filter.rst
16293 F:      include/linux/seccomp.h
16294 F:      include/uapi/linux/seccomp.h
16295 F:      kernel/seccomp.c
16296 F:      tools/testing/selftests/kselftest_harness.h
16297 F:      tools/testing/selftests/seccomp/*
16298 K:      \bsecure_computing
16299 K:      \bTIF_SECCOMP\b
16300
16301 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16302 M:      Al Cooper <[email protected]>
16303 L:      [email protected]
16304 L:      [email protected]
16305 S:      Maintained
16306 F:      drivers/mmc/host/sdhci-brcmstb*
16307
16308 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16309 M:      Adrian Hunter <[email protected]>
16310 L:      [email protected]
16311 S:      Maintained
16312 F:      drivers/mmc/host/sdhci*
16313 F:      include/linux/mmc/sdhci*
16314
16315 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16316 M:      Eugen Hristev <[email protected]>
16317 L:      [email protected]
16318 S:      Supported
16319 F:      drivers/mmc/host/sdhci-of-at91.c
16320
16321 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16322 M:      Ben Dooks <[email protected]>
16323 M:      Jaehoon Chung <[email protected]>
16324 L:      [email protected]
16325 S:      Maintained
16326 F:      drivers/mmc/host/sdhci-s3c*
16327
16328 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16329 M:      Viresh Kumar <[email protected]>
16330 L:      [email protected]
16331 S:      Maintained
16332 F:      drivers/mmc/host/sdhci-spear.c
16333
16334 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16335 M:      Kishon Vijay Abraham I <[email protected]>
16336 L:      [email protected]
16337 S:      Maintained
16338 F:      drivers/mmc/host/sdhci-omap.c
16339
16340 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16341 M:      Jonathan Derrick <[email protected]>
16342 M:      Revanth Rajashekar <[email protected]>
16343 L:      [email protected]
16344 S:      Supported
16345 F:      block/opal_proto.h
16346 F:      block/sed*
16347 F:      include/linux/sed*
16348 F:      include/uapi/linux/sed*
16349
16350 SECURITY CONTACT
16351 M:      Security Officers <[email protected]>
16352 S:      Supported
16353 F:      Documentation/admin-guide/security-bugs.rst
16354
16355 SECURITY SUBSYSTEM
16356 M:      James Morris <[email protected]>
16357 M:      "Serge E. Hallyn" <[email protected]>
16358 L:      [email protected] (suggested Cc:)
16359 S:      Supported
16360 W:      http://kernsec.org/
16361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16362 F:      security/
16363 X:      security/selinux/
16364
16365 SELINUX SECURITY MODULE
16366 M:      Paul Moore <[email protected]>
16367 M:      Stephen Smalley <[email protected]>
16368 M:      Eric Paris <[email protected]>
16369 L:      [email protected]
16370 S:      Supported
16371 W:      https://selinuxproject.org
16372 W:      https://github.com/SELinuxProject
16373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16374 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16375 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16376 F:      Documentation/admin-guide/LSM/SELinux.rst
16377 F:      include/trace/events/avc.h
16378 F:      include/uapi/linux/selinux_netlink.h
16379 F:      scripts/selinux/
16380 F:      security/selinux/
16381
16382 SENSABLE PHANTOM
16383 M:      Jiri Slaby <[email protected]>
16384 S:      Maintained
16385 F:      drivers/misc/phantom.c
16386 F:      include/uapi/linux/phantom.h
16387
16388 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16389 M:      Tomasz Duszynski <[email protected]>
16390 S:      Maintained
16391 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16392 F:      drivers/iio/chemical/scd30.h
16393 F:      drivers/iio/chemical/scd30_core.c
16394 F:      drivers/iio/chemical/scd30_i2c.c
16395 F:      drivers/iio/chemical/scd30_serial.c
16396
16397 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16398 M:      Tomasz Duszynski <[email protected]>
16399 S:      Maintained
16400 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16401 F:      drivers/iio/chemical/sps30.c
16402
16403 SERIAL DEVICE BUS
16404 M:      Rob Herring <[email protected]>
16405 L:      [email protected]
16406 S:      Maintained
16407 F:      Documentation/devicetree/bindings/serial/serial.yaml
16408 F:      drivers/tty/serdev/
16409 F:      include/linux/serdev.h
16410
16411 SERIAL DRIVERS
16412 M:      Greg Kroah-Hartman <[email protected]>
16413 L:      [email protected]
16414 S:      Maintained
16415 F:      Documentation/devicetree/bindings/serial/
16416 F:      drivers/tty/serial/
16417
16418 SERIAL IR RECEIVER
16419 M:      Sean Young <[email protected]>
16420 L:      [email protected]
16421 S:      Maintained
16422 F:      drivers/media/rc/serial_ir.c
16423
16424 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16425 M:      Srinivas Kandagatla <[email protected]>
16426 L:      [email protected] (moderated for non-subscribers)
16427 S:      Maintained
16428 F:      Documentation/devicetree/bindings/slimbus/
16429 F:      drivers/slimbus/
16430 F:      include/linux/slimbus.h
16431
16432 SFC NETWORK DRIVER
16433 M:      Edward Cree <[email protected]>
16434 M:      Martin Habets <[email protected]>
16435 L:      [email protected]
16436 S:      Supported
16437 F:      drivers/net/ethernet/sfc/
16438
16439 SFF/SFP/SFP+ MODULE SUPPORT
16440 M:      Russell King <[email protected]>
16441 L:      [email protected]
16442 S:      Maintained
16443 F:      drivers/net/phy/phylink.c
16444 F:      drivers/net/phy/sfp*
16445 F:      include/linux/mdio/mdio-i2c.h
16446 F:      include/linux/phylink.h
16447 F:      include/linux/sfp.h
16448 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)
16449
16450 SGI GRU DRIVER
16451 M:      Dimitri Sivanich <[email protected]>
16452 S:      Maintained
16453 F:      drivers/misc/sgi-gru/
16454
16455 SGI XP/XPC/XPNET DRIVER
16456 M:      Robin Holt <[email protected]>
16457 M:      Steve Wahl <[email protected]>
16458 R:      Mike Travis <[email protected]>
16459 S:      Maintained
16460 F:      drivers/misc/sgi-xp/
16461
16462 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16463 M:      Karsten Graul <[email protected]>
16464 L:      [email protected]
16465 S:      Supported
16466 W:      http://www.ibm.com/developerworks/linux/linux390/
16467 F:      net/smc/
16468
16469 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16470 M:      Linus Walleij <[email protected]>
16471 L:      [email protected]
16472 S:      Maintained
16473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16474 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16475 F:      drivers/iio/light/gp2ap002.c
16476
16477 SHARP RJ54N1CB0C SENSOR DRIVER
16478 M:      Jacopo Mondi <[email protected]>
16479 L:      [email protected]
16480 S:      Odd fixes
16481 T:      git git://linuxtv.org/media_tree.git
16482 F:      drivers/media/i2c/rj54n1cb0c.c
16483 F:      include/media/i2c/rj54n1cb0c.h
16484
16485 SH_VOU V4L2 OUTPUT DRIVER
16486 L:      [email protected]
16487 S:      Orphan
16488 F:      drivers/media/platform/sh_vou.c
16489 F:      include/media/drv-intf/sh_vou.h
16490
16491 SI2157 MEDIA DRIVER
16492 M:      Antti Palosaari <[email protected]>
16493 L:      [email protected]
16494 S:      Maintained
16495 W:      https://linuxtv.org
16496 W:      http://palosaari.fi/linux/
16497 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16498 T:      git git://linuxtv.org/anttip/media_tree.git
16499 F:      drivers/media/tuners/si2157*
16500
16501 SI2165 MEDIA DRIVER
16502 M:      Matthias Schwarzott <[email protected]>
16503 L:      [email protected]
16504 S:      Maintained
16505 W:      https://linuxtv.org
16506 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16507 F:      drivers/media/dvb-frontends/si2165*
16508
16509 SI2168 MEDIA DRIVER
16510 M:      Antti Palosaari <[email protected]>
16511 L:      [email protected]
16512 S:      Maintained
16513 W:      https://linuxtv.org
16514 W:      http://palosaari.fi/linux/
16515 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16516 T:      git git://linuxtv.org/anttip/media_tree.git
16517 F:      drivers/media/dvb-frontends/si2168*
16518
16519 SI470X FM RADIO RECEIVER I2C DRIVER
16520 M:      Hans Verkuil <[email protected]>
16521 L:      [email protected]
16522 S:      Odd Fixes
16523 W:      https://linuxtv.org
16524 T:      git git://linuxtv.org/media_tree.git
16525 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16526
16527 SI470X FM RADIO RECEIVER USB DRIVER
16528 M:      Hans Verkuil <[email protected]>
16529 L:      [email protected]
16530 S:      Maintained
16531 W:      https://linuxtv.org
16532 T:      git git://linuxtv.org/media_tree.git
16533 F:      drivers/media/radio/si470x/radio-si470x-common.c
16534 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16535 F:      drivers/media/radio/si470x/radio-si470x.h
16536
16537 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16538 M:      Eduardo Valentin <[email protected]>
16539 L:      [email protected]
16540 S:      Odd Fixes
16541 W:      https://linuxtv.org
16542 T:      git git://linuxtv.org/media_tree.git
16543 F:      drivers/media/radio/si4713/si4713.?
16544
16545 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16546 M:      Eduardo Valentin <[email protected]>
16547 L:      [email protected]
16548 S:      Odd Fixes
16549 W:      https://linuxtv.org
16550 T:      git git://linuxtv.org/media_tree.git
16551 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16552
16553 SI4713 FM RADIO TRANSMITTER USB DRIVER
16554 M:      Hans Verkuil <[email protected]>
16555 L:      [email protected]
16556 S:      Maintained
16557 W:      https://linuxtv.org
16558 T:      git git://linuxtv.org/media_tree.git
16559 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16560
16561 SIANO DVB DRIVER
16562 M:      Mauro Carvalho Chehab <[email protected]>
16563 L:      [email protected]
16564 S:      Odd fixes
16565 W:      https://linuxtv.org
16566 T:      git git://linuxtv.org/media_tree.git
16567 F:      drivers/media/common/siano/
16568 F:      drivers/media/mmc/siano/
16569 F:      drivers/media/usb/siano/
16570 F:      drivers/media/usb/siano/
16571
16572 SIFIVE DRIVERS
16573 M:      Palmer Dabbelt <[email protected]>
16574 M:      Paul Walmsley <[email protected]>
16575 L:      [email protected]
16576 S:      Supported
16577 T:      git git://github.com/sifive/riscv-linux.git
16578 N:      sifive
16579 K:      [^@]sifive
16580
16581 SIFIVE FU540 SYSTEM-ON-CHIP
16582 M:      Paul Walmsley <[email protected]>
16583 M:      Palmer Dabbelt <[email protected]>
16584 L:      [email protected]
16585 S:      Supported
16586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16587 N:      fu540
16588 K:      fu540
16589
16590 SIFIVE PDMA DRIVER
16591 M:      Green Wan <[email protected]>
16592 S:      Maintained
16593 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16594 F:      drivers/dma/sf-pdma/
16595
16596 SILEAD TOUCHSCREEN DRIVER
16597 M:      Hans de Goede <[email protected]>
16598 L:      [email protected]
16599 L:      [email protected]
16600 S:      Maintained
16601 F:      drivers/input/touchscreen/silead.c
16602 F:      drivers/platform/x86/touchscreen_dmi.c
16603
16604 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16605 M:      Jérôme Pouiller <[email protected]>
16606 S:      Supported
16607 F:      drivers/staging/wfx/
16608
16609 SILICON MOTION SM712 FRAME BUFFER DRIVER
16610 M:      Sudip Mukherjee <[email protected]>
16611 M:      Teddy Wang <[email protected]>
16612 M:      Sudip Mukherjee <[email protected]>
16613 L:      [email protected]
16614 S:      Maintained
16615 F:      Documentation/fb/sm712fb.rst
16616 F:      drivers/video/fbdev/sm712*
16617
16618 SILVACO I3C DUAL-ROLE MASTER
16619 M:      Miquel Raynal <[email protected]>
16620 M:      Conor Culhane <[email protected]>
16621 L:      [email protected]
16622 S:      Maintained
16623 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
16624 F:      drivers/i3c/master/svc-i3c-master.c
16625
16626 SIMPLEFB FB DRIVER
16627 M:      Hans de Goede <[email protected]>
16628 L:      [email protected]
16629 S:      Maintained
16630 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16631 F:      drivers/video/fbdev/simplefb.c
16632 F:      include/linux/platform_data/simplefb.h
16633
16634 SIMTEC EB110ATX (Chalice CATS)
16635 M:      Simtec Linux Team <[email protected]>
16636 S:      Supported
16637 W:      http://www.simtec.co.uk/products/EB110ATX/
16638
16639 SIMTEC EB2410ITX (BAST)
16640 M:      Simtec Linux Team <[email protected]>
16641 S:      Supported
16642 W:      http://www.simtec.co.uk/products/EB2410ITX/
16643 F:      arch/arm/mach-s3c/bast-ide.c
16644 F:      arch/arm/mach-s3c/bast-irq.c
16645 F:      arch/arm/mach-s3c/mach-bast.c
16646
16647 SIOX
16648 M:      Thorsten Scherer <[email protected]>
16649 M:      Uwe Kleine-König <[email protected]>
16650 R:      Pengutronix Kernel Team <[email protected]>
16651 S:      Supported
16652 F:      drivers/gpio/gpio-siox.c
16653 F:      drivers/siox/*
16654 F:      include/trace/events/siox.h
16655
16656 SIPHASH PRF ROUTINES
16657 M:      Jason A. Donenfeld <[email protected]>
16658 S:      Maintained
16659 F:      include/linux/siphash.h
16660 F:      lib/siphash.c
16661 F:      lib/test_siphash.c
16662
16663 SIS 190 ETHERNET DRIVER
16664 M:      Francois Romieu <[email protected]>
16665 L:      [email protected]
16666 S:      Maintained
16667 F:      drivers/net/ethernet/sis/sis190.c
16668
16669 SIS 900/7016 FAST ETHERNET DRIVER
16670 M:      Daniele Venzano <[email protected]>
16671 L:      [email protected]
16672 S:      Maintained
16673 W:      http://www.brownhat.org/sis900.html
16674 F:      drivers/net/ethernet/sis/sis900.*
16675
16676 SIS FRAMEBUFFER DRIVER
16677 M:      Thomas Winischhofer <[email protected]>
16678 S:      Maintained
16679 W:      http://www.winischhofer.net/linuxsisvga.shtml
16680 F:      Documentation/fb/sisfb.rst
16681 F:      drivers/video/fbdev/sis/
16682 F:      include/video/sisfb.h
16683
16684 SIS I2C TOUCHSCREEN DRIVER
16685 M:      Mika Penttilä <[email protected]>
16686 L:      [email protected]
16687 S:      Maintained
16688 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16689 F:      drivers/input/touchscreen/sis_i2c.c
16690
16691 SIS USB2VGA DRIVER
16692 M:      Thomas Winischhofer <[email protected]>
16693 S:      Maintained
16694 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16695 F:      drivers/usb/misc/sisusbvga/
16696
16697 SLAB ALLOCATOR
16698 M:      Christoph Lameter <[email protected]>
16699 M:      Pekka Enberg <[email protected]>
16700 M:      David Rientjes <[email protected]>
16701 M:      Joonsoo Kim <[email protected]>
16702 M:      Andrew Morton <[email protected]>
16703 M:      Vlastimil Babka <[email protected]>
16704 L:      [email protected]
16705 S:      Maintained
16706 F:      include/linux/sl?b*.h
16707 F:      mm/sl?b*
16708
16709 SLEEPABLE READ-COPY UPDATE (SRCU)
16710 M:      Lai Jiangshan <[email protected]>
16711 M:      "Paul E. McKenney" <[email protected]>
16712 M:      Josh Triplett <[email protected]>
16713 R:      Steven Rostedt <[email protected]>
16714 R:      Mathieu Desnoyers <[email protected]>
16715 L:      [email protected]
16716 S:      Supported
16717 W:      http://www.rdrop.com/users/paulmck/RCU/
16718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16719 F:      include/linux/srcu*.h
16720 F:      kernel/rcu/srcu*.c
16721
16722 SMACK SECURITY MODULE
16723 M:      Casey Schaufler <[email protected]>
16724 L:      [email protected]
16725 S:      Maintained
16726 W:      http://schaufler-ca.com
16727 T:      git git://github.com/cschaufler/smack-next
16728 F:      Documentation/admin-guide/LSM/Smack.rst
16729 F:      security/smack/
16730
16731 SMC91x ETHERNET DRIVER
16732 M:      Nicolas Pitre <[email protected]>
16733 S:      Odd Fixes
16734 F:      drivers/net/ethernet/smsc/smc91x.*
16735
16736 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16737 M:      Mark Rutland <[email protected]>
16738 M:      Lorenzo Pieralisi <[email protected]>
16739 M:      Sudeep Holla <[email protected]>
16740 L:      [email protected]
16741 S:      Maintained
16742 F:      drivers/firmware/smccc/
16743 F:      include/linux/arm-smccc.h
16744
16745 SMM665 HARDWARE MONITOR DRIVER
16746 M:      Guenter Roeck <[email protected]>
16747 L:      [email protected]
16748 S:      Maintained
16749 F:      Documentation/hwmon/smm665.rst
16750 F:      drivers/hwmon/smm665.c
16751
16752 SMSC EMC2103 HARDWARE MONITOR DRIVER
16753 M:      Steve Glendinning <[email protected]>
16754 L:      [email protected]
16755 S:      Maintained
16756 F:      Documentation/hwmon/emc2103.rst
16757 F:      drivers/hwmon/emc2103.c
16758
16759 SMSC SCH5627 HARDWARE MONITOR DRIVER
16760 M:      Hans de Goede <[email protected]>
16761 L:      [email protected]
16762 S:      Supported
16763 F:      Documentation/hwmon/sch5627.rst
16764 F:      drivers/hwmon/sch5627.c
16765
16766 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16767 M:      Steve Glendinning <[email protected]>
16768 L:      [email protected]
16769 S:      Maintained
16770 F:      drivers/video/fbdev/smscufx.c
16771
16772 SMSC47B397 HARDWARE MONITOR DRIVER
16773 M:      Jean Delvare <[email protected]>
16774 L:      [email protected]
16775 S:      Maintained
16776 F:      Documentation/hwmon/smsc47b397.rst
16777 F:      drivers/hwmon/smsc47b397.c
16778
16779 SMSC911x ETHERNET DRIVER
16780 M:      Steve Glendinning <[email protected]>
16781 L:      [email protected]
16782 S:      Maintained
16783 F:      drivers/net/ethernet/smsc/smsc911x.*
16784 F:      include/linux/smsc911x.h
16785
16786 SMSC9420 PCI ETHERNET DRIVER
16787 M:      Steve Glendinning <[email protected]>
16788 L:      [email protected]
16789 S:      Maintained
16790 F:      drivers/net/ethernet/smsc/smsc9420.*
16791
16792 SOCIONEXT (SNI) AVE NETWORK DRIVER
16793 M:      Kunihiko Hayashi <[email protected]>
16794 L:      [email protected]
16795 S:      Maintained
16796 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16797 F:      drivers/net/ethernet/socionext/sni_ave.c
16798
16799 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16800 M:      Jassi Brar <[email protected]>
16801 M:      Ilias Apalodimas <[email protected]>
16802 L:      [email protected]
16803 S:      Maintained
16804 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16805 F:      drivers/net/ethernet/socionext/netsec.c
16806
16807 SOCIONEXT (SNI) Synquacer SPI DRIVER
16808 M:      Masahisa Kojima <[email protected]>
16809 M:      Jassi Brar <[email protected]>
16810 L:      [email protected]
16811 S:      Maintained
16812 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16813 F:      drivers/spi/spi-synquacer.c
16814
16815 SOCIONEXT SYNQUACER I2C DRIVER
16816 M:      Ard Biesheuvel <[email protected]>
16817 L:      [email protected]
16818 S:      Maintained
16819 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16820 F:      drivers/i2c/busses/i2c-synquacer.c
16821
16822 SOCIONEXT UNIPHIER SOUND DRIVER
16823 L:      [email protected] (moderated for non-subscribers)
16824 S:      Orphan
16825 F:      sound/soc/uniphier/
16826
16827 SOEKRIS NET48XX LED SUPPORT
16828 M:      Chris Boot <[email protected]>
16829 S:      Maintained
16830 F:      drivers/leds/leds-net48xx.c
16831
16832 SOFT-IWARP DRIVER (siw)
16833 M:      Bernard Metzler <[email protected]>
16834 L:      [email protected]
16835 S:      Supported
16836 F:      drivers/infiniband/sw/siw/
16837 F:      include/uapi/rdma/siw-abi.h
16838
16839 SOFT-ROCE DRIVER (rxe)
16840 M:      Zhu Yanjun <[email protected]>
16841 L:      [email protected]
16842 S:      Supported
16843 F:      drivers/infiniband/sw/rxe/
16844 F:      include/uapi/rdma/rdma_user_rxe.h
16845
16846 SOFTLOGIC 6x10 MPEG CODEC
16847 M:      Bluecherry Maintainers <[email protected]>
16848 M:      Anton Sviridenko <[email protected]>
16849 M:      Andrey Utkin <[email protected]>
16850 M:      Ismael Luceno <[email protected]>
16851 L:      [email protected]
16852 S:      Supported
16853 F:      drivers/media/pci/solo6x10/
16854
16855 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16856 M:      James Morse <[email protected]>
16857 L:      [email protected]
16858 S:      Maintained
16859 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16860 F:      drivers/firmware/arm_sdei.c
16861 F:      include/linux/arm_sdei.h
16862 F:      include/uapi/linux/arm_sdei.h
16863
16864 SOFTWARE NODES
16865 R:      Andy Shevchenko <[email protected]>
16866 R:      Heikki Krogerus <[email protected]>
16867 L:      [email protected]
16868 S:      Maintained
16869 F:      drivers/base/swnode.c
16870
16871 SOFTWARE RAID (Multiple Disks) SUPPORT
16872 M:      Song Liu <[email protected]>
16873 L:      [email protected]
16874 S:      Supported
16875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16876 F:      drivers/md/Kconfig
16877 F:      drivers/md/Makefile
16878 F:      drivers/md/md*
16879 F:      drivers/md/raid*
16880 F:      include/linux/raid/
16881 F:      include/uapi/linux/raid/
16882
16883 SOLIDRUN CLEARFOG SUPPORT
16884 M:      Russell King <[email protected]>
16885 S:      Maintained
16886 F:      arch/arm/boot/dts/armada-388-clearfog*
16887 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16888
16889 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16890 M:      Russell King <[email protected]>
16891 S:      Maintained
16892 F:      arch/arm/boot/dts/imx6*-cubox-i*
16893 F:      arch/arm/boot/dts/imx6*-hummingboard*
16894 F:      arch/arm/boot/dts/imx6*-sr-*
16895
16896 SONIC NETWORK DRIVER
16897 M:      Thomas Bogendoerfer <[email protected]>
16898 L:      [email protected]
16899 S:      Maintained
16900 F:      drivers/net/ethernet/natsemi/sonic.*
16901
16902 SONICS SILICON BACKPLANE DRIVER (SSB)
16903 M:      Michael Buesch <[email protected]>
16904 L:      [email protected]
16905 S:      Maintained
16906 F:      drivers/ssb/
16907 F:      include/linux/ssb/
16908
16909 SONY IMX214 SENSOR DRIVER
16910 M:      Ricardo Ribalda <[email protected]>
16911 L:      [email protected]
16912 S:      Maintained
16913 T:      git git://linuxtv.org/media_tree.git
16914 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16915 F:      drivers/media/i2c/imx214.c
16916
16917 SONY IMX219 SENSOR DRIVER
16918 M:      Dave Stevenson <[email protected]>
16919 L:      [email protected]
16920 S:      Maintained
16921 T:      git git://linuxtv.org/media_tree.git
16922 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16923 F:      drivers/media/i2c/imx219.c
16924
16925 SONY IMX258 SENSOR DRIVER
16926 M:      Sakari Ailus <[email protected]>
16927 L:      [email protected]
16928 S:      Maintained
16929 T:      git git://linuxtv.org/media_tree.git
16930 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
16931 F:      drivers/media/i2c/imx258.c
16932
16933 SONY IMX274 SENSOR DRIVER
16934 M:      Leon Luo <[email protected]>
16935 L:      [email protected]
16936 S:      Maintained
16937 T:      git git://linuxtv.org/media_tree.git
16938 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16939 F:      drivers/media/i2c/imx274.c
16940
16941 SONY IMX290 SENSOR DRIVER
16942 M:      Manivannan Sadhasivam <[email protected]>
16943 L:      [email protected]
16944 S:      Maintained
16945 T:      git git://linuxtv.org/media_tree.git
16946 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16947 F:      drivers/media/i2c/imx290.c
16948
16949 SONY IMX319 SENSOR DRIVER
16950 M:      Bingbu Cao <[email protected]>
16951 L:      [email protected]
16952 S:      Maintained
16953 T:      git git://linuxtv.org/media_tree.git
16954 F:      drivers/media/i2c/imx319.c
16955
16956 SONY IMX334 SENSOR DRIVER
16957 M:      Paul J. Murphy <[email protected]>
16958 M:      Daniele Alessandrelli <[email protected]>
16959 L:      [email protected]
16960 S:      Maintained
16961 T:      git git://linuxtv.org/media_tree.git
16962 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
16963 F:      drivers/media/i2c/imx334.c
16964
16965 SONY IMX355 SENSOR DRIVER
16966 M:      Tianshu Qiu <[email protected]>
16967 L:      [email protected]
16968 S:      Maintained
16969 T:      git git://linuxtv.org/media_tree.git
16970 F:      drivers/media/i2c/imx355.c
16971
16972 SONY MEMORYSTICK SUBSYSTEM
16973 M:      Maxim Levitsky <[email protected]>
16974 M:      Alex Dubov <[email protected]>
16975 M:      Ulf Hansson <[email protected]>
16976 L:      [email protected]
16977 S:      Maintained
16978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16979 F:      drivers/memstick/
16980 F:      include/linux/memstick.h
16981
16982 SONY VAIO CONTROL DEVICE DRIVER
16983 M:      Mattia Dongili <[email protected]>
16984 L:      [email protected]
16985 S:      Maintained
16986 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16987 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16988 F:      drivers/char/sonypi.c
16989 F:      drivers/platform/x86/sony-laptop.c
16990 F:      include/linux/sony-laptop.h
16991
16992 SOUND
16993 M:      Jaroslav Kysela <[email protected]>
16994 M:      Takashi Iwai <[email protected]>
16995 L:      [email protected] (moderated for non-subscribers)
16996 S:      Maintained
16997 W:      http://www.alsa-project.org/
16998 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17000 F:      Documentation/sound/
17001 F:      include/sound/
17002 F:      include/uapi/sound/
17003 F:      sound/
17004
17005 SOUND - COMPRESSED AUDIO
17006 M:      Vinod Koul <[email protected]>
17007 L:      [email protected] (moderated for non-subscribers)
17008 S:      Supported
17009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17010 F:      Documentation/sound/designs/compress-offload.rst
17011 F:      include/sound/compress_driver.h
17012 F:      include/uapi/sound/compress_*
17013 F:      sound/core/compress_offload.c
17014 F:      sound/soc/soc-compress.c
17015
17016 SOUND - DMAENGINE HELPERS
17017 M:      Lars-Peter Clausen <[email protected]>
17018 S:      Supported
17019 F:      include/sound/dmaengine_pcm.h
17020 F:      sound/core/pcm_dmaengine.c
17021 F:      sound/soc/soc-generic-dmaengine-pcm.c
17022
17023 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17024 M:      Liam Girdwood <[email protected]>
17025 M:      Mark Brown <[email protected]>
17026 L:      [email protected] (moderated for non-subscribers)
17027 S:      Supported
17028 W:      http://alsa-project.org/main/index.php/ASoC
17029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17030 F:      Documentation/devicetree/bindings/sound/
17031 F:      Documentation/sound/soc/
17032 F:      include/dt-bindings/sound/
17033 F:      include/sound/soc*
17034 F:      sound/soc/
17035
17036 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17037 M:      Pierre-Louis Bossart <[email protected]>
17038 M:      Liam Girdwood <[email protected]>
17039 M:      Ranjani Sridharan <[email protected]>
17040 M:      Kai Vehmanen <[email protected]>
17041 M:      Daniel Baluta <[email protected]>
17042 L:      [email protected] (moderated for non-subscribers)
17043 S:      Supported
17044 W:      https://github.com/thesofproject/linux/
17045 F:      sound/soc/sof/
17046
17047 SOUNDWIRE SUBSYSTEM
17048 M:      Vinod Koul <[email protected]>
17049 M:      Bard Liao <[email protected]>
17050 R:      Pierre-Louis Bossart <[email protected]>
17051 R:      Sanyog Kale <[email protected]>
17052 L:      [email protected] (moderated for non-subscribers)
17053 S:      Supported
17054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17055 F:      Documentation/driver-api/soundwire/
17056 F:      drivers/soundwire/
17057 F:      include/linux/soundwire/
17058
17059 SP2 MEDIA DRIVER
17060 M:      Olli Salonen <[email protected]>
17061 L:      [email protected]
17062 S:      Maintained
17063 W:      https://linuxtv.org
17064 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17065 F:      drivers/media/dvb-frontends/sp2*
17066
17067 SPARC + UltraSPARC (sparc/sparc64)
17068 M:      "David S. Miller" <[email protected]>
17069 L:      [email protected]
17070 S:      Maintained
17071 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17074 F:      arch/sparc/
17075 F:      drivers/sbus/
17076
17077 SPARC SERIAL DRIVERS
17078 M:      "David S. Miller" <[email protected]>
17079 L:      [email protected]
17080 S:      Maintained
17081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17083 F:      drivers/tty/serial/suncore.c
17084 F:      drivers/tty/serial/sunhv.c
17085 F:      drivers/tty/serial/sunsab.c
17086 F:      drivers/tty/serial/sunsab.h
17087 F:      drivers/tty/serial/sunsu.c
17088 F:      drivers/tty/serial/sunzilog.c
17089 F:      drivers/tty/serial/sunzilog.h
17090 F:      drivers/tty/vcc.c
17091 F:      include/linux/sunserialcore.h
17092
17093 SPARSE CHECKER
17094 M:      "Luc Van Oostenryck" <[email protected]>
17095 L:      [email protected]
17096 S:      Maintained
17097 W:      https://sparse.docs.kernel.org/
17098 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17099 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17100 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17101 F:      include/linux/compiler.h
17102
17103 SPEAKUP CONSOLE SPEECH DRIVER
17104 M:      William Hubbs <[email protected]>
17105 M:      Chris Brannon <[email protected]>
17106 M:      Kirk Reiser <[email protected]>
17107 M:      Samuel Thibault <[email protected]>
17108 L:      [email protected]
17109 S:      Odd Fixes
17110 W:      http://www.linux-speakup.org/
17111 W:      https://github.com/linux-speakup/speakup
17112 B:      https://github.com/linux-speakup/speakup/issues
17113 F:      drivers/accessibility/speakup/
17114
17115 SPEAR CLOCK FRAMEWORK SUPPORT
17116 M:      Viresh Kumar <[email protected]>
17117 L:      [email protected] (moderated for non-subscribers)
17118 S:      Maintained
17119 W:      http://www.st.com/spear
17120 F:      drivers/clk/spear/
17121
17122 SPEAR PLATFORM SUPPORT
17123 M:      Viresh Kumar <[email protected]>
17124 M:      Shiraz Hashim <[email protected]>
17125 L:      [email protected] (moderated for non-subscribers)
17126 S:      Maintained
17127 W:      http://www.st.com/spear
17128 F:      arch/arm/boot/dts/spear*
17129 F:      arch/arm/mach-spear/
17130
17131 SPI NOR SUBSYSTEM
17132 M:      Tudor Ambarus <[email protected]>
17133 R:      Michael Walle <[email protected]>
17134 R:      Pratyush Yadav <[email protected]>
17135 L:      [email protected]
17136 S:      Maintained
17137 W:      http://www.linux-mtd.infradead.org/
17138 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17139 C:      irc://irc.oftc.net/mtd
17140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17141 F:      drivers/mtd/spi-nor/
17142 F:      include/linux/mtd/spi-nor.h
17143
17144 SPI SUBSYSTEM
17145 M:      Mark Brown <[email protected]>
17146 L:      [email protected]
17147 S:      Maintained
17148 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17150 F:      Documentation/devicetree/bindings/spi/
17151 F:      Documentation/spi/
17152 F:      drivers/spi/
17153 F:      include/linux/spi/
17154 F:      include/uapi/linux/spi/
17155 F:      tools/spi/
17156
17157 SPIDERNET NETWORK DRIVER for CELL
17158 M:      Ishizaki Kou <[email protected]>
17159 M:      Geoff Levand <[email protected]>
17160 L:      [email protected]
17161 L:      [email protected]
17162 S:      Maintained
17163 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17164 F:      drivers/net/ethernet/toshiba/spider_net*
17165
17166 SPMI SUBSYSTEM
17167 M:      Stephen Boyd <[email protected]>
17168 L:      [email protected]
17169 S:      Maintained
17170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17171 F:      Documentation/devicetree/bindings/spmi/
17172 F:      drivers/spmi/
17173 F:      include/dt-bindings/spmi/spmi.h
17174 F:      include/linux/spmi.h
17175 F:      include/trace/events/spmi.h
17176
17177 SPU FILE SYSTEM
17178 M:      Jeremy Kerr <[email protected]>
17179 L:      [email protected]
17180 S:      Supported
17181 W:      http://www.ibm.com/developerworks/power/cell/
17182 F:      Documentation/filesystems/spufs/spufs.rst
17183 F:      arch/powerpc/platforms/cell/spufs/
17184
17185 SQUASHFS FILE SYSTEM
17186 M:      Phillip Lougher <[email protected]>
17187 L:      [email protected] (subscribers-only)
17188 S:      Maintained
17189 W:      http://squashfs.org.uk
17190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17191 F:      Documentation/filesystems/squashfs.rst
17192 F:      fs/squashfs/
17193
17194 SRM (Alpha) environment access
17195 M:      Jan-Benedict Glaw <[email protected]>
17196 S:      Maintained
17197 F:      arch/alpha/kernel/srm_env.c
17198
17199 ST LSM6DSx IMU IIO DRIVER
17200 M:      Lorenzo Bianconi <[email protected]>
17201 L:      [email protected]
17202 S:      Maintained
17203 W:      http://www.st.com/
17204 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17205 F:      drivers/iio/imu/st_lsm6dsx/
17206
17207 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17208 M:      Mickael Guene <[email protected]>
17209 L:      [email protected]
17210 S:      Maintained
17211 T:      git git://linuxtv.org/media_tree.git
17212 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17213 F:      drivers/media/i2c/st-mipid02.c
17214
17215 ST STM32 I2C/SMBUS DRIVER
17216 M:      Pierre-Yves MORDRET <[email protected]>
17217 M:      Alain Volmat <[email protected]>
17218 L:      [email protected]
17219 S:      Maintained
17220 F:      drivers/i2c/busses/i2c-stm32*
17221
17222 ST STPDDC60 DRIVER
17223 M:      Daniel Nilsson <[email protected]>
17224 L:      [email protected]
17225 S:      Maintained
17226 F:      Documentation/hwmon/stpddc60.rst
17227 F:      drivers/hwmon/pmbus/stpddc60.c
17228
17229 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17230 M:      Song Qiang <[email protected]>
17231 L:      [email protected]
17232 S:      Maintained
17233 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17234 F:      drivers/iio/proximity/vl53l0x-i2c.c
17235
17236 STABLE BRANCH
17237 M:      Greg Kroah-Hartman <[email protected]>
17238 M:      Sasha Levin <[email protected]>
17239 L:      [email protected]
17240 S:      Supported
17241 F:      Documentation/process/stable-kernel-rules.rst
17242
17243 STAGING - ATOMISP DRIVER
17244 M:      Mauro Carvalho Chehab <[email protected]>
17245 R:      Sakari Ailus <[email protected]>
17246 L:      [email protected]
17247 S:      Maintained
17248 F:      drivers/staging/media/atomisp/
17249
17250 STAGING - FIELDBUS SUBSYSTEM
17251 M:      Sven Van Asbroeck <[email protected]>
17252 S:      Maintained
17253 F:      drivers/staging/fieldbus/*
17254 F:      drivers/staging/fieldbus/Documentation/
17255
17256 STAGING - HMS ANYBUS-S BUS
17257 M:      Sven Van Asbroeck <[email protected]>
17258 S:      Maintained
17259 F:      drivers/staging/fieldbus/anybuss/
17260
17261 STAGING - INDUSTRIAL IO
17262 M:      Jonathan Cameron <[email protected]>
17263 L:      [email protected]
17264 S:      Odd Fixes
17265 F:      Documentation/devicetree/bindings/staging/iio/
17266 F:      drivers/staging/iio/
17267
17268 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17269 M:      Marc Dietrich <[email protected]>
17270 L:      [email protected] (moderated for non-subscribers)
17271 L:      [email protected]
17272 S:      Maintained
17273 F:      drivers/staging/nvec/
17274
17275 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17276 M:      Jens Frederich <[email protected]>
17277 M:      Daniel Drake <[email protected]>
17278 M:      Jon Nettleton <[email protected]>
17279 S:      Maintained
17280 W:      http://wiki.laptop.org/go/DCON
17281 F:      drivers/staging/olpc_dcon/
17282
17283 STAGING - REALTEK RTL8188EU DRIVERS
17284 M:      Larry Finger <[email protected]>
17285 S:      Odd Fixes
17286 F:      drivers/staging/rtl8188eu/
17287
17288 STAGING - REALTEK RTL8712U DRIVERS
17289 M:      Larry Finger <[email protected]>
17290 M:      Florian Schilhabel <[email protected]>.
17291 S:      Odd Fixes
17292 F:      drivers/staging/rtl8712/
17293
17294 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17295 M:      Michael Hennerich <[email protected]>
17296 L:      [email protected]
17297 S:      Supported
17298 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17299 F:      drivers/staging/fbtft/fb_seps525.c
17300
17301 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17302 M:      Sudip Mukherjee <[email protected]>
17303 M:      Teddy Wang <[email protected]>
17304 M:      Sudip Mukherjee <[email protected]>
17305 L:      [email protected]
17306 S:      Maintained
17307 F:      drivers/staging/sm750fb/
17308
17309 STAGING - VIA VT665X DRIVERS
17310 M:      Forest Bond <[email protected]>
17311 S:      Odd Fixes
17312 F:      drivers/staging/vt665?/
17313
17314 STAGING SUBSYSTEM
17315 M:      Greg Kroah-Hartman <[email protected]>
17316 L:      [email protected]
17317 S:      Supported
17318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17319 F:      drivers/staging/
17320
17321 STARFIRE/DURALAN NETWORK DRIVER
17322 M:      Ion Badulescu <[email protected]>
17323 S:      Odd Fixes
17324 F:      drivers/net/ethernet/adaptec/starfire*
17325
17326 STATIC BRANCH/CALL
17327 M:      Peter Zijlstra <[email protected]>
17328 M:      Josh Poimboeuf <[email protected]>
17329 M:      Jason Baron <[email protected]>
17330 R:      Steven Rostedt <[email protected]>
17331 R:      Ard Biesheuvel <[email protected]>
17332 S:      Supported
17333 F:      arch/*/include/asm/jump_label*.h
17334 F:      arch/*/include/asm/static_call*.h
17335 F:      arch/*/kernel/jump_label.c
17336 F:      arch/*/kernel/static_call.c
17337 F:      include/linux/jump_label*.h
17338 F:      include/linux/static_call*.h
17339 F:      kernel/jump_label.c
17340 F:      kernel/static_call.c
17341
17342 STI AUDIO (ASoC) DRIVERS
17343 M:      Arnaud Pouliquen <[email protected]>
17344 L:      [email protected] (moderated for non-subscribers)
17345 S:      Maintained
17346 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17347 F:      sound/soc/sti/
17348
17349 STI CEC DRIVER
17350 M:      Benjamin Gaignard <[email protected]>
17351 S:      Maintained
17352 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17353 F:      drivers/media/cec/platform/sti/
17354
17355 STK1160 USB VIDEO CAPTURE DRIVER
17356 M:      Ezequiel Garcia <[email protected]>
17357 L:      [email protected]
17358 S:      Maintained
17359 T:      git git://linuxtv.org/media_tree.git
17360 F:      drivers/media/usb/stk1160/
17361
17362 STM32 AUDIO (ASoC) DRIVERS
17363 M:      Olivier Moysan <[email protected]>
17364 M:      Arnaud Pouliquen <[email protected]>
17365 L:      [email protected] (moderated for non-subscribers)
17366 S:      Maintained
17367 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-*.yaml
17368 F:      sound/soc/stm/
17369
17370 STM32 TIMER/LPTIMER DRIVERS
17371 M:      Fabrice Gasnier <[email protected]>
17372 S:      Maintained
17373 F:      Documentation/ABI/testing/*timer-stm32
17374 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
17375 F:      drivers/*/stm32-*timer*
17376 F:      drivers/pwm/pwm-stm32*
17377 F:      include/linux/*/stm32-*tim*
17378
17379 STMMAC ETHERNET DRIVER
17380 M:      Giuseppe Cavallaro <[email protected]>
17381 M:      Alexandre Torgue <[email protected]>
17382 M:      Jose Abreu <[email protected]>
17383 L:      [email protected]
17384 S:      Supported
17385 W:      http://www.stlinux.com
17386 F:      Documentation/networking/device_drivers/ethernet/stmicro/
17387 F:      drivers/net/ethernet/stmicro/stmmac/
17388
17389 SUN3/3X
17390 M:      Sam Creasey <[email protected]>
17391 S:      Maintained
17392 W:      http://sammy.net/sun3/
17393 F:      arch/m68k/include/asm/sun3*
17394 F:      arch/m68k/kernel/*sun3*
17395 F:      arch/m68k/sun3*/
17396 F:      drivers/net/ethernet/i825xx/sun3*
17397
17398 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17399 M:      Hans de Goede <[email protected]>
17400 L:      [email protected]
17401 S:      Maintained
17402 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17403 F:      drivers/input/keyboard/sun4i-lradc-keys.c
17404
17405 SUNDANCE NETWORK DRIVER
17406 M:      Denis Kirjanov <[email protected]>
17407 L:      [email protected]
17408 S:      Maintained
17409 F:      drivers/net/ethernet/dlink/sundance.c
17410
17411 SUPERH
17412 M:      Yoshinori Sato <[email protected]>
17413 M:      Rich Felker <[email protected]>
17414 L:      [email protected]
17415 S:      Maintained
17416 Q:      http://patchwork.kernel.org/project/linux-sh/list/
17417 F:      Documentation/sh/
17418 F:      arch/sh/
17419 F:      drivers/sh/
17420
17421 SUSPEND TO RAM
17422 M:      "Rafael J. Wysocki" <[email protected]>
17423 M:      Len Brown <[email protected]>
17424 M:      Pavel Machek <[email protected]>
17425 L:      [email protected]
17426 S:      Supported
17427 B:      https://bugzilla.kernel.org
17428 F:      Documentation/power/
17429 F:      arch/x86/kernel/acpi/
17430 F:      drivers/base/power/
17431 F:      include/linux/freezer.h
17432 F:      include/linux/pm.h
17433 F:      include/linux/suspend.h
17434 F:      kernel/power/
17435
17436 SVGA HANDLING
17437 M:      Martin Mares <[email protected]>
17438 L:      [email protected]
17439 S:      Maintained
17440 F:      Documentation/admin-guide/svga.rst
17441 F:      arch/x86/boot/video*
17442
17443 SWIOTLB SUBSYSTEM
17444 M:      Konrad Rzeszutek Wilk <[email protected]>
17445 L:      [email protected]
17446 S:      Supported
17447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
17448 F:      arch/*/kernel/pci-swiotlb.c
17449 F:      include/linux/swiotlb.h
17450 F:      kernel/dma/swiotlb.c
17451
17452 SWITCHDEV
17453 M:      Jiri Pirko <[email protected]>
17454 M:      Ivan Vecera <[email protected]>
17455 L:      [email protected]
17456 S:      Supported
17457 F:      include/net/switchdev.h
17458 F:      net/switchdev/
17459
17460 SY8106A REGULATOR DRIVER
17461 M:      Icenowy Zheng <[email protected]>
17462 S:      Maintained
17463 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17464 F:      drivers/regulator/sy8106a-regulator.c
17465
17466 SYNC FILE FRAMEWORK
17467 M:      Sumit Semwal <[email protected]>
17468 R:      Gustavo Padovan <[email protected]>
17469 L:      [email protected]
17470 L:      [email protected]
17471 S:      Maintained
17472 T:      git git://anongit.freedesktop.org/drm/drm-misc
17473 F:      Documentation/driver-api/sync_file.rst
17474 F:      drivers/dma-buf/dma-fence*
17475 F:      drivers/dma-buf/sw_sync.c
17476 F:      drivers/dma-buf/sync_*
17477 F:      include/linux/sync_file.h
17478 F:      include/uapi/linux/sync_file.h
17479
17480 SYNOPSYS ARC ARCHITECTURE
17481 M:      Vineet Gupta <[email protected]>
17482 L:      [email protected]
17483 S:      Supported
17484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17485 F:      Documentation/devicetree/bindings/arc/*
17486 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17487 F:      arch/arc/
17488 F:      drivers/clocksource/arc_timer.c
17489 F:      drivers/tty/serial/arc_uart.c
17490
17491 SYNOPSYS ARC HSDK SDP pll clock driver
17492 M:      Eugeniy Paltsev <[email protected]>
17493 S:      Supported
17494 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17495 F:      drivers/clk/clk-hsdk-pll.c
17496
17497 SYNOPSYS ARC SDP clock driver
17498 M:      Eugeniy Paltsev <[email protected]>
17499 S:      Supported
17500 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17501 F:      drivers/clk/axs10x/*
17502
17503 SYNOPSYS ARC SDP platform support
17504 M:      Alexey Brodkin <[email protected]>
17505 S:      Supported
17506 F:      Documentation/devicetree/bindings/arc/axs10*
17507 F:      arch/arc/boot/dts/ax*
17508 F:      arch/arc/plat-axs10x
17509
17510 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17511 M:      Eugeniy Paltsev <[email protected]>
17512 S:      Supported
17513 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17514 F:      drivers/reset/reset-axs10x.c
17515
17516 SYNOPSYS CREG GPIO DRIVER
17517 M:      Eugeniy Paltsev <[email protected]>
17518 S:      Maintained
17519 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17520 F:      drivers/gpio/gpio-creg-snps.c
17521
17522 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17523 R:      Andy Shevchenko <[email protected]>
17524 S:      Maintained
17525 F:      drivers/tty/serial/8250/8250_dw.c
17526 F:      drivers/tty/serial/8250/8250_dwlib.*
17527 F:      drivers/tty/serial/8250/8250_lpss.c
17528
17529 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17530 M:      Hoan Tran <[email protected]>
17531 M:      Serge Semin <[email protected]>
17532 L:      [email protected]
17533 S:      Maintained
17534 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17535 F:      drivers/gpio/gpio-dwapb.c
17536
17537 SYNOPSYS DESIGNWARE APB SSI DRIVER
17538 M:      Serge Semin <[email protected]>
17539 L:      [email protected]
17540 S:      Supported
17541 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17542 F:      drivers/spi/spi-dw*
17543
17544 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17545 M:      Eugeniy Paltsev <[email protected]>
17546 S:      Maintained
17547 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
17548 F:      drivers/dma/dw-axi-dmac/
17549
17550 SYNOPSYS DESIGNWARE DMAC DRIVER
17551 M:      Viresh Kumar <[email protected]>
17552 R:      Andy Shevchenko <[email protected]>
17553 S:      Maintained
17554 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17555 F:      drivers/dma/dw/
17556 F:      include/dt-bindings/dma/dw-dmac.h
17557 F:      include/linux/dma/dw.h
17558 F:      include/linux/platform_data/dma-dw.h
17559
17560 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17561 M:      Jose Abreu <[email protected]>
17562 L:      [email protected]
17563 S:      Supported
17564 F:      drivers/net/ethernet/synopsys/
17565
17566 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17567 M:      Jose Abreu <[email protected]>
17568 L:      [email protected]
17569 S:      Supported
17570 F:      drivers/net/pcs/pcs-xpcs.c
17571 F:      include/linux/pcs/pcs-xpcs.h
17572
17573 SYNOPSYS DESIGNWARE I2C DRIVER
17574 M:      Jarkko Nikula <[email protected]>
17575 R:      Andy Shevchenko <[email protected]>
17576 R:      Mika Westerberg <[email protected]>
17577 L:      [email protected]
17578 S:      Maintained
17579 F:      drivers/i2c/busses/i2c-designware-*
17580 F:      include/linux/platform_data/i2c-designware.h
17581
17582 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17583 M:      Jaehoon Chung <[email protected]>
17584 L:      [email protected]
17585 S:      Maintained
17586 F:      drivers/mmc/host/dw_mmc*
17587
17588 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17589 M:      Eugeniy Paltsev <[email protected]>
17590 S:      Supported
17591 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17592 F:      drivers/reset/reset-hsdk.c
17593 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17594
17595 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17596 M:      Prabu Thangamuthu <[email protected]>
17597 M:      Manjunath M B <[email protected]>
17598 L:      [email protected]
17599 S:      Maintained
17600 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17601
17602 SYSTEM CONFIGURATION (SYSCON)
17603 M:      Lee Jones <[email protected]>
17604 M:      Arnd Bergmann <[email protected]>
17605 S:      Supported
17606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17607 F:      drivers/mfd/syscon.c
17608
17609 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17610 M:      Sudeep Holla <[email protected]>
17611 R:      Cristian Marussi <[email protected]>
17612 L:      [email protected]
17613 S:      Maintained
17614 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17615 F:      drivers/clk/clk-sc[mp]i.c
17616 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17617 F:      drivers/firmware/arm_scmi/
17618 F:      drivers/firmware/arm_scpi.c
17619 F:      drivers/regulator/scmi-regulator.c
17620 F:      drivers/reset/reset-scmi.c
17621 F:      include/linux/sc[mp]i_protocol.h
17622 F:      include/trace/events/scmi.h
17623
17624 SYSTEM RESET/SHUTDOWN DRIVERS
17625 M:      Sebastian Reichel <[email protected]>
17626 L:      [email protected]
17627 S:      Maintained
17628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17629 F:      Documentation/devicetree/bindings/power/reset/
17630 F:      drivers/power/reset/
17631
17632 SYSTEM TRACE MODULE CLASS
17633 M:      Alexander Shishkin <[email protected]>
17634 S:      Maintained
17635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17636 F:      Documentation/trace/stm.rst
17637 F:      drivers/hwtracing/stm/
17638 F:      include/linux/stm.h
17639 F:      include/uapi/linux/stm.h
17640
17641 SYSTEM76 ACPI DRIVER
17642 M:      Jeremy Soller <[email protected]>
17643 M:      System76 Product Development <[email protected]>
17644 L:      [email protected]
17645 S:      Maintained
17646 F:      drivers/platform/x86/system76_acpi.c
17647
17648 SYSV FILESYSTEM
17649 M:      Christoph Hellwig <[email protected]>
17650 S:      Maintained
17651 F:      Documentation/filesystems/sysv-fs.rst
17652 F:      fs/sysv/
17653 F:      include/linux/sysv_fs.h
17654
17655 TASKSTATS STATISTICS INTERFACE
17656 M:      Balbir Singh <[email protected]>
17657 S:      Maintained
17658 F:      Documentation/accounting/taskstats*
17659 F:      include/linux/taskstats*
17660 F:      kernel/taskstats.c
17661
17662 TC subsystem
17663 M:      Jamal Hadi Salim <[email protected]>
17664 M:      Cong Wang <[email protected]>
17665 M:      Jiri Pirko <[email protected]>
17666 L:      [email protected]
17667 S:      Maintained
17668 F:      include/net/pkt_cls.h
17669 F:      include/net/pkt_sched.h
17670 F:      include/net/tc_act/
17671 F:      include/uapi/linux/pkt_cls.h
17672 F:      include/uapi/linux/pkt_sched.h
17673 F:      include/uapi/linux/tc_act/
17674 F:      include/uapi/linux/tc_ematch/
17675 F:      net/sched/
17676
17677 TC90522 MEDIA DRIVER
17678 M:      Akihiro Tsukada <[email protected]>
17679 L:      [email protected]
17680 S:      Odd Fixes
17681 F:      drivers/media/dvb-frontends/tc90522*
17682
17683 TCP LOW PRIORITY MODULE
17684 M:      "Wong Hoi Sing, Edison" <[email protected]>
17685 M:      "Hung Hing Lun, Mike" <[email protected]>
17686 S:      Maintained
17687 W:      http://tcp-lp-mod.sourceforge.net/
17688 F:      net/ipv4/tcp_lp.c
17689
17690 TDA10071 MEDIA DRIVER
17691 M:      Antti Palosaari <[email protected]>
17692 L:      [email protected]
17693 S:      Maintained
17694 W:      https://linuxtv.org
17695 W:      http://palosaari.fi/linux/
17696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17697 T:      git git://linuxtv.org/anttip/media_tree.git
17698 F:      drivers/media/dvb-frontends/tda10071*
17699
17700 TDA18212 MEDIA DRIVER
17701 M:      Antti Palosaari <[email protected]>
17702 L:      [email protected]
17703 S:      Maintained
17704 W:      https://linuxtv.org
17705 W:      http://palosaari.fi/linux/
17706 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17707 T:      git git://linuxtv.org/anttip/media_tree.git
17708 F:      drivers/media/tuners/tda18212*
17709
17710 TDA18218 MEDIA DRIVER
17711 M:      Antti Palosaari <[email protected]>
17712 L:      [email protected]
17713 S:      Maintained
17714 W:      https://linuxtv.org
17715 W:      http://palosaari.fi/linux/
17716 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17717 T:      git git://linuxtv.org/anttip/media_tree.git
17718 F:      drivers/media/tuners/tda18218*
17719
17720 TDA18250 MEDIA DRIVER
17721 M:      Olli Salonen <[email protected]>
17722 L:      [email protected]
17723 S:      Maintained
17724 W:      https://linuxtv.org
17725 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17726 T:      git git://linuxtv.org/media_tree.git
17727 F:      drivers/media/tuners/tda18250*
17728
17729 TDA18271 MEDIA DRIVER
17730 M:      Michael Krufky <[email protected]>
17731 L:      [email protected]
17732 S:      Maintained
17733 W:      https://linuxtv.org
17734 W:      http://github.com/mkrufky
17735 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17736 T:      git git://linuxtv.org/mkrufky/tuners.git
17737 F:      drivers/media/tuners/tda18271*
17738
17739 TDA1997x MEDIA DRIVER
17740 M:      Tim Harvey <[email protected]>
17741 L:      [email protected]
17742 S:      Maintained
17743 W:      https://linuxtv.org
17744 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17745 F:      drivers/media/i2c/tda1997x.*
17746
17747 TDA827x MEDIA DRIVER
17748 M:      Michael Krufky <[email protected]>
17749 L:      [email protected]
17750 S:      Maintained
17751 W:      https://linuxtv.org
17752 W:      http://github.com/mkrufky
17753 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17754 T:      git git://linuxtv.org/mkrufky/tuners.git
17755 F:      drivers/media/tuners/tda8290.*
17756
17757 TDA8290 MEDIA DRIVER
17758 M:      Michael Krufky <[email protected]>
17759 L:      [email protected]
17760 S:      Maintained
17761 W:      https://linuxtv.org
17762 W:      http://github.com/mkrufky
17763 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17764 T:      git git://linuxtv.org/mkrufky/tuners.git
17765 F:      drivers/media/tuners/tda8290.*
17766
17767 TDA9840 MEDIA DRIVER
17768 M:      Hans Verkuil <[email protected]>
17769 L:      [email protected]
17770 S:      Maintained
17771 W:      https://linuxtv.org
17772 T:      git git://linuxtv.org/media_tree.git
17773 F:      drivers/media/i2c/tda9840*
17774
17775 TEA5761 TUNER DRIVER
17776 M:      Mauro Carvalho Chehab <[email protected]>
17777 L:      [email protected]
17778 S:      Odd fixes
17779 W:      https://linuxtv.org
17780 T:      git git://linuxtv.org/media_tree.git
17781 F:      drivers/media/tuners/tea5761.*
17782
17783 TEA5767 TUNER DRIVER
17784 M:      Mauro Carvalho Chehab <[email protected]>
17785 L:      [email protected]
17786 S:      Maintained
17787 W:      https://linuxtv.org
17788 T:      git git://linuxtv.org/media_tree.git
17789 F:      drivers/media/tuners/tea5767.*
17790
17791 TEA6415C MEDIA DRIVER
17792 M:      Hans Verkuil <[email protected]>
17793 L:      [email protected]
17794 S:      Maintained
17795 W:      https://linuxtv.org
17796 T:      git git://linuxtv.org/media_tree.git
17797 F:      drivers/media/i2c/tea6415c*
17798
17799 TEA6420 MEDIA DRIVER
17800 M:      Hans Verkuil <[email protected]>
17801 L:      [email protected]
17802 S:      Maintained
17803 W:      https://linuxtv.org
17804 T:      git git://linuxtv.org/media_tree.git
17805 F:      drivers/media/i2c/tea6420*
17806
17807 TEAM DRIVER
17808 M:      Jiri Pirko <[email protected]>
17809 L:      [email protected]
17810 S:      Supported
17811 F:      drivers/net/team/
17812 F:      include/linux/if_team.h
17813 F:      include/uapi/linux/if_team.h
17814
17815 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17816 M:      "Savoir-faire Linux Inc." <[email protected]>
17817 S:      Maintained
17818 F:      arch/x86/platform/ts5500/
17819
17820 TECHNOTREND USB IR RECEIVER
17821 M:      Sean Young <[email protected]>
17822 L:      [email protected]
17823 S:      Maintained
17824 F:      drivers/media/rc/ttusbir.c
17825
17826 TECHWELL TW9910 VIDEO DECODER
17827 L:      [email protected]
17828 S:      Orphan
17829 F:      drivers/media/i2c/tw9910.c
17830 F:      include/media/i2c/tw9910.h
17831
17832 TEE SUBSYSTEM
17833 M:      Jens Wiklander <[email protected]>
17834 L:      [email protected]
17835 S:      Maintained
17836 F:      Documentation/staging/tee.rst
17837 F:      drivers/tee/
17838 F:      include/linux/tee_drv.h
17839 F:      include/uapi/linux/tee.h
17840
17841 TEGRA ARCHITECTURE SUPPORT
17842 M:      Thierry Reding <[email protected]>
17843 M:      Jonathan Hunter <[email protected]>
17844 L:      [email protected]
17845 S:      Supported
17846 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17848 N:      [^a-z]tegra
17849
17850 TEGRA CLOCK DRIVER
17851 M:      Peter De Schrijver <[email protected]>
17852 M:      Prashant Gaikwad <[email protected]>
17853 S:      Supported
17854 F:      drivers/clk/tegra/
17855
17856 TEGRA DMA DRIVERS
17857 M:      Laxman Dewangan <[email protected]>
17858 M:      Jon Hunter <[email protected]>
17859 S:      Supported
17860 F:      drivers/dma/tegra*
17861
17862 TEGRA I2C DRIVER
17863 M:      Laxman Dewangan <[email protected]>
17864 R:      Dmitry Osipenko <[email protected]>
17865 S:      Supported
17866 F:      drivers/i2c/busses/i2c-tegra.c
17867
17868 TEGRA IOMMU DRIVERS
17869 M:      Thierry Reding <[email protected]>
17870 R:      Krishna Reddy <[email protected]>
17871 L:      [email protected]
17872 S:      Supported
17873 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17874 F:      drivers/iommu/tegra*
17875
17876 TEGRA KBC DRIVER
17877 M:      Laxman Dewangan <[email protected]>
17878 S:      Supported
17879 F:      drivers/input/keyboard/tegra-kbc.c
17880
17881 TEGRA NAND DRIVER
17882 M:      Stefan Agner <[email protected]>
17883 M:      Lucas Stach <[email protected]>
17884 S:      Maintained
17885 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17886 F:      drivers/mtd/nand/raw/tegra_nand.c
17887
17888 TEGRA PWM DRIVER
17889 M:      Thierry Reding <[email protected]>
17890 S:      Supported
17891 F:      drivers/pwm/pwm-tegra.c
17892
17893 TEGRA SERIAL DRIVER
17894 M:      Laxman Dewangan <[email protected]>
17895 S:      Supported
17896 F:      drivers/tty/serial/serial-tegra.c
17897
17898 TEGRA SPI DRIVER
17899 M:      Laxman Dewangan <[email protected]>
17900 S:      Supported
17901 F:      drivers/spi/spi-tegra*
17902
17903 TEGRA QUAD SPI DRIVER
17904 M:      Thierry Reding <[email protected]>
17905 M:      Jonathan Hunter <[email protected]>
17906 M:      Sowjanya Komatineni <[email protected]>
17907 L:      [email protected]
17908 S:      Maintained
17909 F:      drivers/spi/spi-tegra210-quad.c
17910
17911 TEGRA VIDEO DRIVER
17912 M:      Thierry Reding <[email protected]>
17913 M:      Jonathan Hunter <[email protected]>
17914 M:      Sowjanya Komatineni <[email protected]>
17915 L:      [email protected]
17916 L:      [email protected]
17917 S:      Maintained
17918 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17919 F:      drivers/staging/media/tegra-video/
17920
17921 TEGRA XUSB PADCTL DRIVER
17922 M:      JC Kuo <[email protected]>
17923 S:      Supported
17924 F:      drivers/phy/tegra/xusb*
17925
17926 TEHUTI ETHERNET DRIVER
17927 M:      Andy Gospodarek <[email protected]>
17928 L:      [email protected]
17929 S:      Supported
17930 F:      drivers/net/ethernet/tehuti/*
17931
17932 TELECOM CLOCK DRIVER FOR MCPL0010
17933 M:      Mark Gross <[email protected]>
17934 S:      Supported
17935 F:      drivers/char/tlclk.c
17936
17937 TEMPO SEMICONDUCTOR DRIVERS
17938 M:      Steven Eckhoff <[email protected]>
17939 S:      Maintained
17940 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17941 F:      sound/soc/codecs/tscs*.c
17942 F:      sound/soc/codecs/tscs*.h
17943
17944 TENSILICA XTENSA PORT (xtensa)
17945 M:      Chris Zankel <[email protected]>
17946 M:      Max Filippov <[email protected]>
17947 L:      [email protected]
17948 S:      Maintained
17949 T:      git git://github.com/czankel/xtensa-linux.git
17950 F:      arch/xtensa/
17951 F:      drivers/irqchip/irq-xtensa-*
17952
17953 TEXAS INSTRUMENTS ASoC DRIVERS
17954 M:      Peter Ujfalusi <[email protected]>
17955 L:      [email protected] (moderated for non-subscribers)
17956 S:      Maintained
17957 F:      sound/soc/ti/
17958
17959 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17960 M:      Ricardo Ribalda <[email protected]>
17961 L:      [email protected]
17962 S:      Supported
17963 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
17964 F:      drivers/iio/dac/ti-dac7612.c
17965
17966 TEXAS INSTRUMENTS DMA DRIVERS
17967 M:      Peter Ujfalusi <[email protected]>
17968 L:      [email protected]
17969 S:      Maintained
17970 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
17971 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
17972 F:      Documentation/devicetree/bindings/dma/ti/
17973 F:      drivers/dma/ti/
17974 X:      drivers/dma/ti/cppi41.c
17975 F:      include/linux/dma/k3-udma-glue.h
17976 F:      include/linux/dma/ti-cppi5.h
17977 F:      include/linux/dma/k3-psil.h
17978
17979 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17980 M:      Nishanth Menon <[email protected]>
17981 M:      Tero Kristo <[email protected]>
17982 M:      Santosh Shilimkar <[email protected]>
17983 L:      [email protected]
17984 S:      Maintained
17985 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17986 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17987 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17988 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17989 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17990 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17991 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17992 F:      drivers/clk/keystone/sci-clk.c
17993 F:      drivers/firmware/ti_sci*
17994 F:      drivers/irqchip/irq-ti-sci-inta.c
17995 F:      drivers/irqchip/irq-ti-sci-intr.c
17996 F:      drivers/reset/reset-ti-sci.c
17997 F:      drivers/soc/ti/ti_sci_inta_msi.c
17998 F:      drivers/soc/ti/ti_sci_pm_domains.c
17999 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18000 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18001 F:      include/linux/soc/ti/ti_sci_protocol.h
18002
18003 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18004 M:      Robert Marko <[email protected]>
18005 M:      Luka Perkov <[email protected]>
18006 L:      [email protected]
18007 S:      Maintained
18008 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18009 F:      Documentation/hwmon/tps23861.rst
18010 F:      drivers/hwmon/tps23861.c
18011
18012 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18013 M:      Hans Verkuil <[email protected]>
18014 L:      [email protected]
18015 S:      Maintained
18016 W:      https://linuxtv.org
18017 T:      git git://linuxtv.org/media_tree.git
18018 F:      drivers/media/radio/radio-raremono.c
18019
18020 THERMAL
18021 M:      Zhang Rui <[email protected]>
18022 M:      Daniel Lezcano <[email protected]>
18023 R:      Amit Kucheria <[email protected]>
18024 L:      [email protected]
18025 S:      Supported
18026 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
18028 F:      Documentation/devicetree/bindings/thermal/
18029 F:      drivers/thermal/
18030 F:      include/linux/cpu_cooling.h
18031 F:      include/linux/thermal.h
18032 F:      include/uapi/linux/thermal.h
18033
18034 THERMAL DRIVER FOR AMLOGIC SOCS
18035 M:      Guillaume La Roque <[email protected]>
18036 L:      [email protected]
18037 L:      [email protected]
18038 S:      Supported
18039 W:      http://linux-meson.com/
18040 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18041 F:      drivers/thermal/amlogic_thermal.c
18042
18043 THERMAL/CPU_COOLING
18044 M:      Amit Daniel Kachhap <[email protected]>
18045 M:      Daniel Lezcano <[email protected]>
18046 M:      Viresh Kumar <[email protected]>
18047 M:      Javi Merino <[email protected]>
18048 L:      [email protected]
18049 S:      Supported
18050 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18051 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18052 F:      drivers/thermal/cpufreq_cooling.c
18053 F:      drivers/thermal/cpuidle_cooling.c
18054 F:      include/linux/cpu_cooling.h
18055
18056 THERMAL/POWER_ALLOCATOR
18057 M:      Lukasz Luba <[email protected]>
18058 L:      [email protected]
18059 S:      Maintained
18060 F:      Documentation/driver-api/thermal/power_allocator.rst
18061 F:      drivers/thermal/gov_power_allocator.c
18062 F:      include/trace/events/thermal_power_allocator.h
18063
18064 THINKPAD ACPI EXTRAS DRIVER
18065 M:      Henrique de Moraes Holschuh <[email protected]>
18066 L:      [email protected]
18067 L:      [email protected]
18068 S:      Maintained
18069 W:      http://ibm-acpi.sourceforge.net
18070 W:      http://thinkwiki.org/wiki/Ibm-acpi
18071 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18072 F:      drivers/platform/x86/thinkpad_acpi.c
18073
18074 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18075 M:      Isaac Hazan <[email protected]>
18076 L:      [email protected]
18077 S:      Maintained
18078 F:      drivers/thunderbolt/dma_test.c
18079
18080 THUNDERBOLT DRIVER
18081 M:      Andreas Noever <[email protected]>
18082 M:      Michael Jamet <[email protected]>
18083 M:      Mika Westerberg <[email protected]>
18084 M:      Yehezkel Bernat <[email protected]>
18085 L:      [email protected]
18086 S:      Maintained
18087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18088 F:      Documentation/admin-guide/thunderbolt.rst
18089 F:      drivers/thunderbolt/
18090 F:      include/linux/thunderbolt.h
18091
18092 THUNDERBOLT NETWORK DRIVER
18093 M:      Michael Jamet <[email protected]>
18094 M:      Mika Westerberg <[email protected]>
18095 M:      Yehezkel Bernat <[email protected]>
18096 L:      [email protected]
18097 S:      Maintained
18098 F:      drivers/net/thunderbolt.c
18099
18100 THUNDERX GPIO DRIVER
18101 M:      Robert Richter <[email protected]>
18102 S:      Odd Fixes
18103 F:      drivers/gpio/gpio-thunderx.c
18104
18105 TI ADS131E0X ADC SERIES DRIVER
18106 M:      Tomislav Denis <[email protected]>
18107 L:      [email protected]
18108 S:      Maintained
18109 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18110 F:      drivers/iio/adc/ti-ads131e08.c
18111
18112 TI AM437X VPFE DRIVER
18113 M:      "Lad, Prabhakar" <[email protected]>
18114 L:      [email protected]
18115 S:      Maintained
18116 W:      https://linuxtv.org
18117 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18118 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18119 F:      drivers/media/platform/am437x/
18120
18121 TI BANDGAP AND THERMAL DRIVER
18122 M:      Eduardo Valentin <[email protected]>
18123 M:      Keerthy <[email protected]>
18124 L:      [email protected]
18125 L:      [email protected]
18126 S:      Maintained
18127 F:      drivers/thermal/ti-soc-thermal/
18128
18129 TI BQ27XXX POWER SUPPLY DRIVER
18130 F:      drivers/power/supply/bq27xxx_battery.c
18131 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18132 F:      include/linux/power/bq27xxx_battery.h
18133
18134 TI CDCE706 CLOCK DRIVER
18135 M:      Max Filippov <[email protected]>
18136 S:      Maintained
18137 F:      drivers/clk/clk-cdce706.c
18138
18139 TI CLOCK DRIVER
18140 M:      Tero Kristo <[email protected]>
18141 L:      [email protected]
18142 S:      Odd Fixes
18143 F:      drivers/clk/ti/
18144 F:      include/linux/clk/ti.h
18145
18146 TI DAVINCI MACHINE SUPPORT
18147 M:      Sekhar Nori <[email protected]>
18148 R:      Bartosz Golaszewski <[email protected]>
18149 L:      [email protected] (moderated for non-subscribers)
18150 S:      Supported
18151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18152 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18153 F:      arch/arm/boot/dts/da850*
18154 F:      arch/arm/mach-davinci/
18155 F:      drivers/i2c/busses/i2c-davinci.c
18156
18157 TI DAVINCI SERIES CLOCK DRIVER
18158 M:      David Lechner <[email protected]>
18159 R:      Sekhar Nori <[email protected]>
18160 S:      Maintained
18161 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18162 F:      drivers/clk/davinci/
18163
18164 TI DAVINCI SERIES GPIO DRIVER
18165 M:      Keerthy <[email protected]>
18166 L:      [email protected]
18167 S:      Maintained
18168 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
18169 F:      drivers/gpio/gpio-davinci.c
18170
18171 TI DAVINCI SERIES MEDIA DRIVER
18172 M:      "Lad, Prabhakar" <[email protected]>
18173 L:      [email protected]
18174 S:      Maintained
18175 W:      https://linuxtv.org
18176 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18177 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18178 F:      drivers/media/platform/davinci/
18179 F:      include/media/davinci/
18180
18181 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18182 R:      David Lechner <[email protected]>
18183 L:      [email protected]
18184 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18185 F:      drivers/counter/ti-eqep.c
18186
18187 TI ETHERNET SWITCH DRIVER (CPSW)
18188 R:      Grygorii Strashko <[email protected]>
18189 L:      [email protected]
18190 L:      [email protected]
18191 S:      Maintained
18192 F:      drivers/net/ethernet/ti/cpsw*
18193 F:      drivers/net/ethernet/ti/davinci*
18194
18195 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18196 M:      Alex Dubov <[email protected]>
18197 S:      Maintained
18198 W:      http://tifmxx.berlios.de/
18199 F:      drivers/memstick/host/tifm_ms.c
18200 F:      drivers/misc/tifm*
18201 F:      drivers/mmc/host/tifm_sd.c
18202 F:      include/linux/tifm.h
18203
18204 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18205 M:      Santosh Shilimkar <[email protected]>
18206 L:      [email protected]
18207 L:      [email protected] (moderated for non-subscribers)
18208 S:      Maintained
18209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18210 F:      drivers/soc/ti/*
18211
18212 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18213 M:      M R Swami Reddy <[email protected]>
18214 M:      Vishwas A Deshpande <[email protected]>
18215 L:      [email protected] (moderated for non-subscribers)
18216 S:      Maintained
18217 F:      sound/soc/codecs/isabelle*
18218 F:      sound/soc/codecs/lm49453*
18219
18220 TI NETCP ETHERNET DRIVER
18221 M:      Wingman Kwok <[email protected]>
18222 M:      Murali Karicheri <[email protected]>
18223 L:      [email protected]
18224 S:      Maintained
18225 F:      drivers/net/ethernet/ti/netcp*
18226
18227 TI PCM3060 ASoC CODEC DRIVER
18228 M:      Kirill Marinushkin <[email protected]>
18229 L:      [email protected] (moderated for non-subscribers)
18230 S:      Maintained
18231 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18232 F:      sound/soc/codecs/pcm3060*
18233
18234 TI TAS571X FAMILY ASoC CODEC DRIVER
18235 M:      Kevin Cernekee <[email protected]>
18236 L:      [email protected] (moderated for non-subscribers)
18237 S:      Odd Fixes
18238 F:      sound/soc/codecs/tas571x*
18239
18240 TI TRF7970A NFC DRIVER
18241 M:      Mark Greer <[email protected]>
18242 L:      [email protected]
18243 L:      [email protected] (moderated for non-subscribers)
18244 S:      Supported
18245 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18246 F:      drivers/nfc/trf7970a.c
18247
18248 TI TWL4030 SERIES SOC CODEC DRIVER
18249 M:      Peter Ujfalusi <[email protected]>
18250 L:      [email protected] (moderated for non-subscribers)
18251 S:      Maintained
18252 F:      sound/soc/codecs/twl4030*
18253
18254 TI VPE/CAL DRIVERS
18255 M:      Benoit Parrot <[email protected]>
18256 L:      [email protected]
18257 S:      Maintained
18258 W:      http://linuxtv.org/
18259 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18260 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18261 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18262 F:      drivers/media/platform/ti-vpe/
18263
18264 TI WILINK WIRELESS DRIVERS
18265 L:      [email protected]
18266 S:      Orphan
18267 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18268 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18270 F:      drivers/net/wireless/ti/
18271 F:      include/linux/wl12xx.h
18272
18273 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18274 M:      John Stultz <[email protected]>
18275 M:      Thomas Gleixner <[email protected]>
18276 R:      Stephen Boyd <[email protected]>
18277 L:      [email protected]
18278 S:      Supported
18279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18280 F:      include/linux/clocksource.h
18281 F:      include/linux/time.h
18282 F:      include/linux/timex.h
18283 F:      include/uapi/linux/time.h
18284 F:      include/uapi/linux/timex.h
18285 F:      kernel/time/alarmtimer.c
18286 F:      kernel/time/clocksource.c
18287 F:      kernel/time/ntp.c
18288 F:      kernel/time/time*.c
18289 F:      tools/testing/selftests/timers/
18290
18291 TIPC NETWORK LAYER
18292 M:      Jon Maloy <[email protected]>
18293 M:      Ying Xue <[email protected]>
18294 L:      [email protected] (core kernel code)
18295 L:      [email protected] (user apps, general discussion)
18296 S:      Maintained
18297 W:      http://tipc.sourceforge.net/
18298 F:      include/uapi/linux/tipc*.h
18299 F:      net/tipc/
18300
18301 TLAN NETWORK DRIVER
18302 M:      Samuel Chessman <[email protected]>
18303 L:      [email protected] (subscribers-only)
18304 S:      Maintained
18305 W:      http://sourceforge.net/projects/tlan/
18306 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18307 F:      drivers/net/ethernet/ti/tlan.*
18308
18309 TM6000 VIDEO4LINUX DRIVER
18310 M:      Mauro Carvalho Chehab <[email protected]>
18311 L:      [email protected]
18312 S:      Odd fixes
18313 W:      https://linuxtv.org
18314 T:      git git://linuxtv.org/media_tree.git
18315 F:      Documentation/admin-guide/media/tm6000*
18316 F:      drivers/media/usb/tm6000/
18317
18318 TMIO/SDHI MMC DRIVER
18319 M:      Wolfram Sang <[email protected]>
18320 L:      [email protected]
18321 S:      Supported
18322 F:      drivers/mmc/host/renesas_sdhi*
18323 F:      drivers/mmc/host/tmio_mmc*
18324 F:      include/linux/mfd/tmio.h
18325
18326 TMP401 HARDWARE MONITOR DRIVER
18327 M:      Guenter Roeck <[email protected]>
18328 L:      [email protected]
18329 S:      Maintained
18330 F:      Documentation/hwmon/tmp401.rst
18331 F:      drivers/hwmon/tmp401.c
18332
18333 TMP513 HARDWARE MONITOR DRIVER
18334 M:      Eric Tremblay <[email protected]>
18335 L:      [email protected]
18336 S:      Maintained
18337 F:      Documentation/hwmon/tmp513.rst
18338 F:      drivers/hwmon/tmp513.c
18339
18340 TMPFS (SHMEM FILESYSTEM)
18341 M:      Hugh Dickins <[email protected]>
18342 L:      [email protected]
18343 S:      Maintained
18344 F:      include/linux/shmem_fs.h
18345 F:      mm/shmem.c
18346
18347 TOMOYO SECURITY MODULE
18348 M:      Kentaro Takeda <[email protected]>
18349 M:      Tetsuo Handa <[email protected]>
18350 L:      [email protected] (subscribers-only, for developers in English)
18351 L:      [email protected] (subscribers-only, for users in English)
18352 L:      [email protected] (subscribers-only, for developers in Japanese)
18353 L:      [email protected] (subscribers-only, for users in Japanese)
18354 S:      Maintained
18355 W:      https://tomoyo.osdn.jp/
18356 F:      security/tomoyo/
18357
18358 TOPSTAR LAPTOP EXTRAS DRIVER
18359 M:      Herton Ronaldo Krzesinski <[email protected]>
18360 L:      [email protected]
18361 S:      Maintained
18362 F:      drivers/platform/x86/topstar-laptop.c
18363
18364 TORTURE-TEST MODULES
18365 M:      Davidlohr Bueso <[email protected]>
18366 M:      "Paul E. McKenney" <[email protected]>
18367 M:      Josh Triplett <[email protected]>
18368 L:      [email protected]
18369 S:      Supported
18370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18371 F:      Documentation/RCU/torture.rst
18372 F:      kernel/locking/locktorture.c
18373 F:      kernel/rcu/rcuscale.c
18374 F:      kernel/rcu/rcutorture.c
18375 F:      kernel/rcu/refscale.c
18376 F:      kernel/torture.c
18377
18378 TOSHIBA ACPI EXTRAS DRIVER
18379 M:      Azael Avalos <[email protected]>
18380 L:      [email protected]
18381 S:      Maintained
18382 F:      drivers/platform/x86/toshiba_acpi.c
18383
18384 TOSHIBA BLUETOOTH DRIVER
18385 M:      Azael Avalos <[email protected]>
18386 L:      [email protected]
18387 S:      Maintained
18388 F:      drivers/platform/x86/toshiba_bluetooth.c
18389
18390 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18391 M:      Azael Avalos <[email protected]>
18392 L:      [email protected]
18393 S:      Maintained
18394 F:      drivers/platform/x86/toshiba_haps.c
18395
18396 TOSHIBA SMM DRIVER
18397 M:      Jonathan Buzzard <[email protected]>
18398 S:      Maintained
18399 W:      http://www.buzzard.org.uk/toshiba/
18400 F:      drivers/char/toshiba.c
18401 F:      include/linux/toshiba.h
18402 F:      include/uapi/linux/toshiba.h
18403
18404 TOSHIBA TC358743 DRIVER
18405 M:      Mats Randgaard <[email protected]>
18406 L:      [email protected]
18407 S:      Maintained
18408 F:      drivers/media/i2c/tc358743*
18409 F:      include/media/i2c/tc358743.h
18410
18411 TOSHIBA WMI HOTKEYS DRIVER
18412 M:      Azael Avalos <[email protected]>
18413 L:      [email protected]
18414 S:      Maintained
18415 F:      drivers/platform/x86/toshiba-wmi.c
18416
18417 TPM DEVICE DRIVER
18418 M:      Peter Huewe <[email protected]>
18419 M:      Jarkko Sakkinen <[email protected]>
18420 R:      Jason Gunthorpe <[email protected]>
18421 L:      [email protected]
18422 S:      Maintained
18423 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18424 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
18425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18426 F:      drivers/char/tpm/
18427
18428 TRACING
18429 M:      Steven Rostedt <[email protected]>
18430 M:      Ingo Molnar <[email protected]>
18431 S:      Maintained
18432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18433 F:      Documentation/trace/ftrace.rst
18434 F:      arch/*/*/*/ftrace.h
18435 F:      arch/*/kernel/ftrace.c
18436 F:      fs/tracefs/
18437 F:      include/*/ftrace.h
18438 F:      include/linux/trace*.h
18439 F:      include/trace/
18440 F:      kernel/trace/
18441 F:      tools/testing/selftests/ftrace/
18442
18443 TRACING MMIO ACCESSES (MMIOTRACE)
18444 M:      Steven Rostedt <[email protected]>
18445 M:      Ingo Molnar <[email protected]>
18446 R:      Karol Herbst <[email protected]>
18447 R:      Pekka Paalanen <[email protected]>
18448 L:      [email protected]
18449 L:      [email protected]
18450 S:      Maintained
18451 F:      arch/x86/mm/kmmio.c
18452 F:      arch/x86/mm/mmio-mod.c
18453 F:      arch/x86/mm/testmmiotrace.c
18454 F:      include/linux/mmiotrace.h
18455 F:      kernel/trace/trace_mmiotrace.c
18456
18457 TRIVIAL PATCHES
18458 M:      Jiri Kosina <[email protected]>
18459 S:      Maintained
18460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18461 K:      ^Subject:.*(?i)trivial
18462
18463 TTY LAYER
18464 M:      Greg Kroah-Hartman <[email protected]>
18465 M:      Jiri Slaby <[email protected]>
18466 S:      Supported
18467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18468 F:      Documentation/driver-api/serial/
18469 F:      drivers/tty/
18470 F:      drivers/tty/serial/serial_core.c
18471 F:      include/linux/serial.h
18472 F:      include/linux/serial_core.h
18473 F:      include/linux/tty.h
18474 F:      include/uapi/linux/serial.h
18475 F:      include/uapi/linux/serial_core.h
18476 F:      include/uapi/linux/tty.h
18477
18478 TUA9001 MEDIA DRIVER
18479 M:      Antti Palosaari <[email protected]>
18480 L:      [email protected]
18481 S:      Maintained
18482 W:      https://linuxtv.org
18483 W:      http://palosaari.fi/linux/
18484 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18485 T:      git git://linuxtv.org/anttip/media_tree.git
18486 F:      drivers/media/tuners/tua9001*
18487
18488 TULIP NETWORK DRIVERS
18489 L:      [email protected]
18490 L:      [email protected]
18491 S:      Orphan
18492 F:      drivers/net/ethernet/dec/tulip/
18493
18494 TUN/TAP driver
18495 M:      Maxim Krasnyansky <[email protected]>
18496 S:      Maintained
18497 W:      http://vtun.sourceforge.net/tun
18498 F:      Documentation/networking/tuntap.rst
18499 F:      arch/um/os-Linux/drivers/
18500
18501 TURBOCHANNEL SUBSYSTEM
18502 M:      "Maciej W. Rozycki" <[email protected]>
18503 M:      Ralf Baechle <[email protected]>
18504 L:      [email protected]
18505 S:      Maintained
18506 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18507 F:      drivers/tc/
18508 F:      include/linux/tc.h
18509
18510 TURBOSTAT UTILITY
18511 M:      "Len Brown" <[email protected]>
18512 L:      [email protected]
18513 S:      Supported
18514 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18515 B:      https://bugzilla.kernel.org
18516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18517 F:      tools/power/x86/turbostat/
18518
18519 TW5864 VIDEO4LINUX DRIVER
18520 M:      Bluecherry Maintainers <[email protected]>
18521 M:      Anton Sviridenko <[email protected]>
18522 M:      Andrey Utkin <[email protected]>
18523 M:      Andrey Utkin <[email protected]>
18524 L:      [email protected]
18525 S:      Supported
18526 F:      drivers/media/pci/tw5864/
18527
18528 TW68 VIDEO4LINUX DRIVER
18529 M:      Hans Verkuil <[email protected]>
18530 L:      [email protected]
18531 S:      Odd Fixes
18532 W:      https://linuxtv.org
18533 T:      git git://linuxtv.org/media_tree.git
18534 F:      drivers/media/pci/tw68/
18535
18536 TW686X VIDEO4LINUX DRIVER
18537 M:      Ezequiel Garcia <[email protected]>
18538 L:      [email protected]
18539 S:      Maintained
18540 W:      http://linuxtv.org
18541 T:      git git://linuxtv.org/media_tree.git
18542 F:      drivers/media/pci/tw686x/
18543
18544 UACCE ACCELERATOR FRAMEWORK
18545 M:      Zhangfei Gao <[email protected]>
18546 M:      Zhou Wang <[email protected]>
18547 L:      [email protected]
18548 L:      [email protected]
18549 S:      Maintained
18550 F:      Documentation/ABI/testing/sysfs-driver-uacce
18551 F:      Documentation/misc-devices/uacce.rst
18552 F:      drivers/misc/uacce/
18553 F:      include/linux/uacce.h
18554 F:      include/uapi/misc/uacce/
18555
18556 UBI FILE SYSTEM (UBIFS)
18557 M:      Richard Weinberger <[email protected]>
18558 L:      [email protected]
18559 S:      Supported
18560 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18563 F:      Documentation/filesystems/ubifs-authentication.rst
18564 F:      Documentation/filesystems/ubifs.rst
18565 F:      fs/ubifs/
18566
18567 UCLINUX (M68KNOMMU AND COLDFIRE)
18568 M:      Greg Ungerer <[email protected]>
18569 L:      [email protected]
18570 L:      [email protected]  (subscribers-only)
18571 S:      Maintained
18572 W:      http://www.linux-m68k.org/
18573 W:      http://www.uclinux.org/
18574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18575 F:      arch/m68k/*/*_no.*
18576 F:      arch/m68k/68*/
18577 F:      arch/m68k/coldfire/
18578 F:      arch/m68k/include/asm/*_no.*
18579
18580 UDF FILESYSTEM
18581 M:      Jan Kara <[email protected]>
18582 S:      Maintained
18583 F:      Documentation/filesystems/udf.rst
18584 F:      fs/udf/
18585
18586 UDRAW TABLET
18587 M:      Bastien Nocera <[email protected]>
18588 L:      [email protected]
18589 S:      Maintained
18590 F:      drivers/hid/hid-udraw-ps3.c
18591
18592 UFS FILESYSTEM
18593 M:      Evgeniy Dushistov <[email protected]>
18594 S:      Maintained
18595 F:      Documentation/admin-guide/ufs.rst
18596 F:      fs/ufs/
18597
18598 UHID USERSPACE HID IO DRIVER
18599 M:      David Rheinsberg <[email protected]>
18600 L:      [email protected]
18601 S:      Maintained
18602 F:      drivers/hid/uhid.c
18603 F:      include/uapi/linux/uhid.h
18604
18605 ULPI BUS
18606 M:      Heikki Krogerus <[email protected]>
18607 L:      [email protected]
18608 S:      Maintained
18609 F:      drivers/usb/common/ulpi.c
18610 F:      include/linux/ulpi/
18611
18612 UNICODE SUBSYSTEM
18613 M:      Gabriel Krisman Bertazi <[email protected]>
18614 L:      [email protected]
18615 S:      Supported
18616 F:      fs/unicode/
18617
18618 UNIFDEF
18619 M:      Tony Finch <[email protected]>
18620 S:      Maintained
18621 W:      http://dotat.at/prog/unifdef
18622 F:      scripts/unifdef.c
18623
18624 UNIFORM CDROM DRIVER
18625 M:      Jens Axboe <[email protected]>
18626 S:      Maintained
18627 W:      http://www.kernel.dk
18628 F:      Documentation/cdrom/
18629 F:      drivers/cdrom/cdrom.c
18630 F:      include/linux/cdrom.h
18631 F:      include/uapi/linux/cdrom.h
18632
18633 UNISYS S-PAR DRIVERS
18634 M:      David Kershner <[email protected]>
18635 L:      [email protected] (Unisys internal)
18636 S:      Supported
18637 F:      drivers/staging/unisys/
18638 F:      drivers/visorbus/
18639 F:      include/linux/visorbus.h
18640
18641 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18642 R:      Alim Akhtar <[email protected]>
18643 R:      Avri Altman <[email protected]>
18644 L:      [email protected]
18645 S:      Supported
18646 F:      Documentation/scsi/ufs.rst
18647 F:      drivers/scsi/ufs/
18648
18649 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18650 M:      Pedro Sousa <[email protected]>
18651 L:      [email protected]
18652 S:      Supported
18653 F:      drivers/scsi/ufs/*dwc*
18654
18655 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18656 M:      Stanley Chu <[email protected]>
18657 L:      [email protected]
18658 L:      [email protected] (moderated for non-subscribers)
18659 S:      Maintained
18660 F:      drivers/scsi/ufs/ufs-mediatek*
18661
18662 UNSORTED BLOCK IMAGES (UBI)
18663 M:      Richard Weinberger <[email protected]>
18664 L:      [email protected]
18665 S:      Supported
18666 W:      http://www.linux-mtd.infradead.org/
18667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18669 F:      drivers/mtd/ubi/
18670 F:      include/linux/mtd/ubi.h
18671 F:      include/uapi/mtd/ubi-user.h
18672
18673 USB "USBNET" DRIVER FRAMEWORK
18674 M:      Oliver Neukum <[email protected]>
18675 L:      [email protected]
18676 S:      Maintained
18677 W:      http://www.linux-usb.org/usbnet
18678 F:      drivers/net/usb/usbnet.c
18679 F:      include/linux/usb/usbnet.h
18680
18681 USB ACM DRIVER
18682 M:      Oliver Neukum <[email protected]>
18683 L:      [email protected]
18684 S:      Maintained
18685 F:      Documentation/usb/acm.rst
18686 F:      drivers/usb/class/cdc-acm.*
18687
18688 USB APPLE MFI FASTCHARGE DRIVER
18689 M:      Bastien Nocera <[email protected]>
18690 L:      [email protected]
18691 S:      Maintained
18692 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18693
18694 USB AR5523 WIRELESS DRIVER
18695 M:      Pontus Fuchs <[email protected]>
18696 L:      [email protected]
18697 S:      Maintained
18698 F:      drivers/net/wireless/ath/ar5523/
18699
18700 USB ATTACHED SCSI
18701 M:      Oliver Neukum <[email protected]>
18702 L:      [email protected]
18703 L:      [email protected]
18704 S:      Maintained
18705 F:      drivers/usb/storage/uas.c
18706
18707 USB CDC ETHERNET DRIVER
18708 M:      Oliver Neukum <[email protected]>
18709 L:      [email protected]
18710 S:      Maintained
18711 F:      drivers/net/usb/cdc_*.c
18712 F:      include/uapi/linux/usb/cdc.h
18713
18714 USB CHAOSKEY DRIVER
18715 M:      Keith Packard <[email protected]>
18716 L:      [email protected]
18717 S:      Maintained
18718 F:      drivers/usb/misc/chaoskey.c
18719
18720 USB CYPRESS C67X00 DRIVER
18721 M:      Peter Korsgaard <[email protected]>
18722 L:      [email protected]
18723 S:      Maintained
18724 F:      drivers/usb/c67x00/
18725
18726 USB DAVICOM DM9601 DRIVER
18727 M:      Peter Korsgaard <[email protected]>
18728 L:      [email protected]
18729 S:      Maintained
18730 W:      http://www.linux-usb.org/usbnet
18731 F:      drivers/net/usb/dm9601.c
18732
18733 USB EHCI DRIVER
18734 M:      Alan Stern <[email protected]>
18735 L:      [email protected]
18736 S:      Maintained
18737 F:      Documentation/usb/ehci.rst
18738 F:      drivers/usb/host/ehci*
18739
18740 USB GADGET/PERIPHERAL SUBSYSTEM
18741 M:      Felipe Balbi <[email protected]>
18742 L:      [email protected]
18743 S:      Maintained
18744 W:      http://www.linux-usb.org/gadget
18745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18746 F:      drivers/usb/gadget/
18747 F:      include/linux/usb/gadget*
18748
18749 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18750 M:      Jiri Kosina <[email protected]>
18751 M:      Benjamin Tissoires <[email protected]>
18752 L:      [email protected]
18753 S:      Maintained
18754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18755 F:      Documentation/hid/hiddev.rst
18756 F:      drivers/hid/usbhid/
18757
18758 USB INTEL XHCI ROLE MUX DRIVER
18759 M:      Hans de Goede <[email protected]>
18760 L:      [email protected]
18761 S:      Maintained
18762 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18763
18764 USB IP DRIVER FOR HISILICON KIRIN
18765 M:      Yu Chen <[email protected]>
18766 M:      Binghui Wang <[email protected]>
18767 L:      [email protected]
18768 S:      Maintained
18769 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18770 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18771
18772 USB ISP116X DRIVER
18773 M:      Olav Kongas <[email protected]>
18774 L:      [email protected]
18775 S:      Maintained
18776 F:      drivers/usb/host/isp116x*
18777 F:      include/linux/usb/isp116x.h
18778
18779 USB LAN78XX ETHERNET DRIVER
18780 M:      Woojung Huh <[email protected]>
18781 M:      [email protected]
18782 L:      [email protected]
18783 S:      Maintained
18784 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18785 F:      drivers/net/usb/lan78xx.*
18786 F:      include/dt-bindings/net/microchip-lan78xx.h
18787
18788 USB MASS STORAGE DRIVER
18789 M:      Alan Stern <[email protected]>
18790 L:      [email protected]
18791 L:      [email protected]
18792 S:      Maintained
18793 F:      drivers/usb/storage/
18794
18795 USB MIDI DRIVER
18796 M:      Clemens Ladisch <[email protected]>
18797 L:      [email protected] (moderated for non-subscribers)
18798 S:      Maintained
18799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18800 F:      sound/usb/midi.*
18801
18802 USB NETWORKING DRIVERS
18803 L:      [email protected]
18804 S:      Odd Fixes
18805 F:      drivers/net/usb/
18806
18807 USB OHCI DRIVER
18808 M:      Alan Stern <[email protected]>
18809 L:      [email protected]
18810 S:      Maintained
18811 F:      Documentation/usb/ohci.rst
18812 F:      drivers/usb/host/ohci*
18813
18814 USB OTG FSM (Finite State Machine)
18815 M:      Peter Chen <[email protected]>
18816 L:      [email protected]
18817 S:      Maintained
18818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18819 F:      drivers/usb/common/usb-otg-fsm.c
18820
18821 USB OVER IP DRIVER
18822 M:      Valentina Manea <[email protected]>
18823 M:      Shuah Khan <[email protected]>
18824 M:      Shuah Khan <[email protected]>
18825 L:      [email protected]
18826 S:      Maintained
18827 F:      Documentation/usb/usbip_protocol.rst
18828 F:      drivers/usb/usbip/
18829 F:      tools/testing/selftests/drivers/usb/usbip/
18830 F:      tools/usb/usbip/
18831
18832 USB PEGASUS DRIVER
18833 M:      Petko Manolov <[email protected]>
18834 L:      [email protected]
18835 L:      [email protected]
18836 S:      Maintained
18837 W:      https://github.com/petkan/pegasus
18838 T:      git git://github.com/petkan/pegasus.git
18839 F:      drivers/net/usb/pegasus.*
18840
18841 USB PHY LAYER
18842 M:      Felipe Balbi <[email protected]>
18843 L:      [email protected]
18844 S:      Maintained
18845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18846 F:      drivers/usb/phy/
18847
18848 USB PRINTER DRIVER (usblp)
18849 M:      Pete Zaitcev <[email protected]>
18850 L:      [email protected]
18851 S:      Supported
18852 F:      drivers/usb/class/usblp.c
18853
18854 USB RAW GADGET DRIVER
18855 R:      Andrey Konovalov <[email protected]>
18856 L:      [email protected]
18857 S:      Maintained
18858 F:      Documentation/usb/raw-gadget.rst
18859 F:      drivers/usb/gadget/legacy/raw_gadget.c
18860 F:      include/uapi/linux/usb/raw_gadget.h
18861
18862 USB QMI WWAN NETWORK DRIVER
18863 M:      Bjørn Mork <[email protected]>
18864 L:      [email protected]
18865 S:      Maintained
18866 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18867 F:      drivers/net/usb/qmi_wwan.c
18868
18869 USB RTL8150 DRIVER
18870 M:      Petko Manolov <[email protected]>
18871 L:      [email protected]
18872 L:      [email protected]
18873 S:      Maintained
18874 W:      https://github.com/petkan/rtl8150
18875 T:      git git://github.com/petkan/rtl8150.git
18876 F:      drivers/net/usb/rtl8150.c
18877
18878 USB SERIAL SUBSYSTEM
18879 M:      Johan Hovold <[email protected]>
18880 L:      [email protected]
18881 S:      Maintained
18882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18883 F:      Documentation/usb/usb-serial.rst
18884 F:      drivers/usb/serial/
18885 F:      include/linux/usb/serial.h
18886
18887 USB SMSC75XX ETHERNET DRIVER
18888 M:      Steve Glendinning <[email protected]>
18889 L:      [email protected]
18890 S:      Maintained
18891 F:      drivers/net/usb/smsc75xx.*
18892
18893 USB SMSC95XX ETHERNET DRIVER
18894 M:      Steve Glendinning <[email protected]>
18895 M:      [email protected]
18896 L:      [email protected]
18897 S:      Maintained
18898 F:      drivers/net/usb/smsc95xx.*
18899
18900 USB SUBSYSTEM
18901 M:      Greg Kroah-Hartman <[email protected]>
18902 L:      [email protected]
18903 S:      Supported
18904 W:      http://www.linux-usb.org
18905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18906 F:      Documentation/devicetree/bindings/usb/
18907 F:      Documentation/usb/
18908 F:      drivers/usb/
18909 F:      include/linux/usb.h
18910 F:      include/linux/usb/
18911
18912 USB TYPEC BUS FOR ALTERNATE MODES
18913 M:      Heikki Krogerus <[email protected]>
18914 L:      [email protected]
18915 S:      Maintained
18916 F:      Documentation/ABI/testing/sysfs-bus-typec
18917 F:      Documentation/driver-api/usb/typec_bus.rst
18918 F:      drivers/usb/typec/altmodes/
18919 F:      include/linux/usb/typec_altmode.h
18920
18921 USB TYPEC CLASS
18922 M:      Heikki Krogerus <[email protected]>
18923 L:      [email protected]
18924 S:      Maintained
18925 F:      Documentation/ABI/testing/sysfs-class-typec
18926 F:      Documentation/driver-api/usb/typec.rst
18927 F:      drivers/usb/typec/
18928 F:      include/linux/usb/typec.h
18929
18930 USB TYPEC INTEL PMC MUX DRIVER
18931 M:      Heikki Krogerus <[email protected]>
18932 L:      [email protected]
18933 S:      Maintained
18934 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18935 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18936
18937 USB TYPEC PI3USB30532 MUX DRIVER
18938 M:      Hans de Goede <[email protected]>
18939 L:      [email protected]
18940 S:      Maintained
18941 F:      drivers/usb/typec/mux/pi3usb30532.c
18942
18943 USB TYPEC PORT CONTROLLER DRIVERS
18944 M:      Guenter Roeck <[email protected]>
18945 L:      [email protected]
18946 S:      Maintained
18947 F:      drivers/usb/typec/tcpm/
18948
18949 USB UHCI DRIVER
18950 M:      Alan Stern <[email protected]>
18951 L:      [email protected]
18952 S:      Maintained
18953 F:      drivers/usb/host/uhci*
18954
18955 USB VIDEO CLASS
18956 M:      Laurent Pinchart <[email protected]>
18957 L:      [email protected] (subscribers-only)
18958 L:      [email protected]
18959 S:      Maintained
18960 W:      http://www.ideasonboard.org/uvc/
18961 T:      git git://linuxtv.org/media_tree.git
18962 F:      drivers/media/usb/uvc/
18963 F:      include/uapi/linux/uvcvideo.h
18964
18965 USB WEBCAM GADGET
18966 M:      Laurent Pinchart <[email protected]>
18967 L:      [email protected]
18968 S:      Maintained
18969 F:      drivers/usb/gadget/function/*uvc*
18970 F:      drivers/usb/gadget/legacy/webcam.c
18971 F:      include/uapi/linux/usb/g_uvc.h
18972
18973 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18974 M:      Jussi Kivilinna <[email protected]>
18975 L:      [email protected]
18976 S:      Maintained
18977 F:      drivers/net/wireless/rndis_wlan.c
18978
18979 USB XHCI DRIVER
18980 M:      Mathias Nyman <[email protected]>
18981 L:      [email protected]
18982 S:      Supported
18983 F:      drivers/usb/host/pci-quirks*
18984 F:      drivers/usb/host/xhci*
18985
18986 USB ZD1201 DRIVER
18987 L:      [email protected]
18988 S:      Orphan
18989 W:      http://linux-lc100020.sourceforge.net
18990 F:      drivers/net/wireless/zydas/zd1201.*
18991
18992 USB ZR364XX DRIVER
18993 M:      Antoine Jacquet <[email protected]>
18994 L:      [email protected]
18995 L:      [email protected]
18996 S:      Maintained
18997 W:      http://royale.zerezo.com/zr364xx/
18998 T:      git git://linuxtv.org/media_tree.git
18999 F:      Documentation/admin-guide/media/zr364xx*
19000 F:      drivers/media/usb/zr364xx/
19001
19002 USER-MODE LINUX (UML)
19003 M:      Jeff Dike <[email protected]>
19004 M:      Richard Weinberger <[email protected]>
19005 M:      Anton Ivanov <[email protected]>
19006 L:      [email protected]
19007 S:      Maintained
19008 W:      http://user-mode-linux.sourceforge.net
19009 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19011 F:      Documentation/virt/uml/
19012 F:      arch/um/
19013 F:      arch/x86/um/
19014 F:      fs/hostfs/
19015
19016 USERSPACE COPYIN/COPYOUT (UIOVEC)
19017 M:      Alexander Viro <[email protected]>
19018 S:      Maintained
19019 F:      include/linux/uio.h
19020 F:      lib/iov_iter.c
19021
19022 USERSPACE DMA BUFFER DRIVER
19023 M:      Gerd Hoffmann <[email protected]>
19024 L:      [email protected]
19025 S:      Maintained
19026 T:      git git://anongit.freedesktop.org/drm/drm-misc
19027 F:      drivers/dma-buf/udmabuf.c
19028 F:      include/uapi/linux/udmabuf.h
19029
19030 USERSPACE I/O (UIO)
19031 M:      Greg Kroah-Hartman <[email protected]>
19032 S:      Maintained
19033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19034 F:      Documentation/driver-api/uio-howto.rst
19035 F:      drivers/uio/
19036 F:      include/linux/uio_driver.h
19037
19038 UTIL-LINUX PACKAGE
19039 M:      Karel Zak <[email protected]>
19040 L:      [email protected]
19041 S:      Maintained
19042 W:      http://en.wikipedia.org/wiki/Util-linux
19043 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19044
19045 UUID HELPERS
19046 M:      Christoph Hellwig <[email protected]>
19047 R:      Andy Shevchenko <[email protected]>
19048 L:      [email protected]
19049 S:      Maintained
19050 T:      git git://git.infradead.org/users/hch/uuid.git
19051 F:      include/linux/uuid.h
19052 F:      include/uapi/linux/uuid.h
19053 F:      lib/test_uuid.c
19054 F:      lib/uuid.c
19055
19056 UV SYSFS DRIVER
19057 M:      Justin Ernst <[email protected]>
19058 L:      [email protected]
19059 S:      Maintained
19060 F:      drivers/platform/x86/uv_sysfs.c
19061
19062 UVESAFB DRIVER
19063 M:      Michal Januszewski <[email protected]>
19064 L:      [email protected]
19065 S:      Maintained
19066 W:      https://github.com/mjanusz/v86d
19067 F:      Documentation/fb/uvesafb.rst
19068 F:      drivers/video/fbdev/uvesafb.*
19069
19070 Ux500 CLOCK DRIVERS
19071 M:      Ulf Hansson <[email protected]>
19072 L:      [email protected]
19073 L:      [email protected] (moderated for non-subscribers)
19074 S:      Maintained
19075 F:      drivers/clk/ux500/
19076
19077 VF610 NAND DRIVER
19078 M:      Stefan Agner <[email protected]>
19079 L:      [email protected]
19080 S:      Supported
19081 F:      drivers/mtd/nand/raw/vf610_nfc.c
19082
19083 VFAT/FAT/MSDOS FILESYSTEM
19084 M:      OGAWA Hirofumi <[email protected]>
19085 S:      Maintained
19086 F:      Documentation/filesystems/vfat.rst
19087 F:      fs/fat/
19088
19089 VFIO DRIVER
19090 M:      Alex Williamson <[email protected]>
19091 R:      Cornelia Huck <[email protected]>
19092 L:      [email protected]
19093 S:      Maintained
19094 T:      git git://github.com/awilliam/linux-vfio.git
19095 F:      Documentation/driver-api/vfio.rst
19096 F:      drivers/vfio/
19097 F:      include/linux/vfio.h
19098 F:      include/uapi/linux/vfio.h
19099
19100 VFIO FSL-MC DRIVER
19101 M:      Diana Craciun <[email protected]>
19102 L:      [email protected]
19103 S:      Maintained
19104 F:      drivers/vfio/fsl-mc/
19105
19106 VFIO MEDIATED DEVICE DRIVERS
19107 M:      Kirti Wankhede <[email protected]>
19108 L:      [email protected]
19109 S:      Maintained
19110 F:      Documentation/driver-api/vfio-mediated-device.rst
19111 F:      drivers/vfio/mdev/
19112 F:      include/linux/mdev.h
19113 F:      samples/vfio-mdev/
19114
19115 VFIO PLATFORM DRIVER
19116 M:      Eric Auger <[email protected]>
19117 L:      [email protected]
19118 S:      Maintained
19119 F:      drivers/vfio/platform/
19120
19121 VGA_SWITCHEROO
19122 R:      Lukas Wunner <[email protected]>
19123 S:      Maintained
19124 T:      git git://anongit.freedesktop.org/drm/drm-misc
19125 F:      Documentation/gpu/vga-switcheroo.rst
19126 F:      drivers/gpu/vga/vga_switcheroo.c
19127 F:      include/linux/vga_switcheroo.h
19128
19129 VIA RHINE NETWORK DRIVER
19130 S:      Maintained
19131 M:      Kevin Brace <[email protected]>
19132 F:      drivers/net/ethernet/via/via-rhine.c
19133
19134 VIA SD/MMC CARD CONTROLLER DRIVER
19135 M:      Bruce Chang <[email protected]>
19136 M:      Harald Welte <[email protected]>
19137 S:      Maintained
19138 F:      drivers/mmc/host/via-sdmmc.c
19139
19140 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19141 M:      Florian Tobias Schandinat <[email protected]>
19142 L:      [email protected]
19143 S:      Maintained
19144 F:      drivers/video/fbdev/via/
19145 F:      include/linux/via-core.h
19146 F:      include/linux/via-gpio.h
19147 F:      include/linux/via_i2c.h
19148
19149 VIA VELOCITY NETWORK DRIVER
19150 M:      Francois Romieu <[email protected]>
19151 L:      [email protected]
19152 S:      Maintained
19153 F:      drivers/net/ethernet/via/via-velocity.*
19154
19155 VICODEC VIRTUAL CODEC DRIVER
19156 M:      Hans Verkuil <[email protected]>
19157 L:      [email protected]
19158 S:      Maintained
19159 W:      https://linuxtv.org
19160 T:      git git://linuxtv.org/media_tree.git
19161 F:      drivers/media/test-drivers/vicodec/*
19162
19163 VIDEO I2C POLLING DRIVER
19164 M:      Matt Ranostay <[email protected]>
19165 L:      [email protected]
19166 S:      Maintained
19167 F:      drivers/media/i2c/video-i2c.c
19168
19169 VIDEO MULTIPLEXER DRIVER
19170 M:      Philipp Zabel <[email protected]>
19171 L:      [email protected]
19172 S:      Maintained
19173 F:      drivers/media/platform/video-mux.c
19174
19175 VIDEOBUF2 FRAMEWORK
19176 M:      Tomasz Figa <[email protected]>
19177 M:      Marek Szyprowski <[email protected]>
19178 L:      [email protected]
19179 S:      Maintained
19180 F:      drivers/media/common/videobuf2/*
19181 F:      include/media/videobuf2-*
19182
19183 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19184 M:      Helen Koike <[email protected]>
19185 R:      Shuah Khan <[email protected]>
19186 L:      [email protected]
19187 S:      Maintained
19188 W:      https://linuxtv.org
19189 T:      git git://linuxtv.org/media_tree.git
19190 F:      drivers/media/test-drivers/vimc/*
19191
19192 VIRT LIB
19193 M:      Alex Williamson <[email protected]>
19194 M:      Paolo Bonzini <[email protected]>
19195 L:      [email protected]
19196 S:      Supported
19197 F:      virt/lib/
19198
19199 VIRTIO AND VHOST VSOCK DRIVER
19200 M:      Stefan Hajnoczi <[email protected]>
19201 M:      Stefano Garzarella <[email protected]>
19202 L:      [email protected]
19203 L:      [email protected]
19204 L:      [email protected]
19205 S:      Maintained
19206 F:      drivers/net/vsockmon.c
19207 F:      drivers/vhost/vsock.c
19208 F:      include/linux/virtio_vsock.h
19209 F:      include/uapi/linux/virtio_vsock.h
19210 F:      include/uapi/linux/vm_sockets_diag.h
19211 F:      include/uapi/linux/vsockmon.h
19212 F:      net/vmw_vsock/af_vsock_tap.c
19213 F:      net/vmw_vsock/diag.c
19214 F:      net/vmw_vsock/virtio_transport.c
19215 F:      net/vmw_vsock/virtio_transport_common.c
19216 F:      net/vmw_vsock/vsock_loopback.c
19217 F:      tools/testing/vsock/
19218
19219 VIRTIO BLOCK AND SCSI DRIVERS
19220 M:      "Michael S. Tsirkin" <[email protected]>
19221 M:      Jason Wang <[email protected]>
19222 R:      Paolo Bonzini <[email protected]>
19223 R:      Stefan Hajnoczi <[email protected]>
19224 L:      [email protected]
19225 S:      Maintained
19226 F:      drivers/block/virtio_blk.c
19227 F:      drivers/scsi/virtio_scsi.c
19228 F:      drivers/vhost/scsi.c
19229 F:      include/uapi/linux/virtio_blk.h
19230 F:      include/uapi/linux/virtio_scsi.h
19231
19232 VIRTIO CONSOLE DRIVER
19233 M:      Amit Shah <[email protected]>
19234 L:      [email protected]
19235 S:      Maintained
19236 F:      drivers/char/virtio_console.c
19237 F:      include/linux/virtio_console.h
19238 F:      include/uapi/linux/virtio_console.h
19239
19240 VIRTIO CORE AND NET DRIVERS
19241 M:      "Michael S. Tsirkin" <[email protected]>
19242 M:      Jason Wang <[email protected]>
19243 L:      [email protected]
19244 S:      Maintained
19245 F:      Documentation/devicetree/bindings/virtio/
19246 F:      drivers/block/virtio_blk.c
19247 F:      drivers/crypto/virtio/
19248 F:      drivers/net/virtio_net.c
19249 F:      drivers/vdpa/
19250 F:      drivers/virtio/
19251 F:      include/linux/vdpa.h
19252 F:      include/linux/virtio*.h
19253 F:      include/uapi/linux/virtio_*.h
19254 F:      tools/virtio/
19255
19256 VIRTIO BALLOON
19257 M:      "Michael S. Tsirkin" <[email protected]>
19258 M:      David Hildenbrand <[email protected]>
19259 L:      [email protected]
19260 S:      Maintained
19261 F:      drivers/virtio/virtio_balloon.c
19262 F:      include/uapi/linux/virtio_balloon.h
19263 F:      include/linux/balloon_compaction.h
19264 F:      mm/balloon_compaction.c
19265
19266 VIRTIO CRYPTO DRIVER
19267 M:      Gonglei <[email protected]>
19268 L:      [email protected]
19269 L:      [email protected]
19270 S:      Maintained
19271 F:      drivers/crypto/virtio/
19272 F:      include/uapi/linux/virtio_crypto.h
19273
19274 VIRTIO DRIVERS FOR S390
19275 M:      Cornelia Huck <[email protected]>
19276 M:      Halil Pasic <[email protected]>
19277 L:      [email protected]
19278 L:      [email protected]
19279 L:      [email protected]
19280 S:      Supported
19281 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19282 F:      drivers/s390/virtio/
19283
19284 VIRTIO FILE SYSTEM
19285 M:      Vivek Goyal <[email protected]>
19286 M:      Stefan Hajnoczi <[email protected]>
19287 M:      Miklos Szeredi <[email protected]>
19288 L:      [email protected]
19289 L:      [email protected]
19290 S:      Supported
19291 W:      https://virtio-fs.gitlab.io/
19292 F:      Documentation/filesystems/virtiofs.rst
19293 F:      fs/fuse/virtio_fs.c
19294 F:      include/uapi/linux/virtio_fs.h
19295
19296 VIRTIO GPU DRIVER
19297 M:      David Airlie <[email protected]>
19298 M:      Gerd Hoffmann <[email protected]>
19299 L:      [email protected]
19300 L:      [email protected]
19301 S:      Maintained
19302 T:      git git://anongit.freedesktop.org/drm/drm-misc
19303 F:      drivers/gpu/drm/virtio/
19304 F:      include/uapi/linux/virtio_gpu.h
19305
19306 VIRTIO HOST (VHOST)
19307 M:      "Michael S. Tsirkin" <[email protected]>
19308 M:      Jason Wang <[email protected]>
19309 L:      [email protected]
19310 L:      [email protected]
19311 L:      [email protected]
19312 S:      Maintained
19313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19314 F:      drivers/vhost/
19315 F:      include/linux/vhost_iotlb.h
19316 F:      include/uapi/linux/vhost.h
19317
19318 VIRTIO INPUT DRIVER
19319 M:      Gerd Hoffmann <[email protected]>
19320 S:      Maintained
19321 F:      drivers/virtio/virtio_input.c
19322 F:      include/uapi/linux/virtio_input.h
19323
19324 VIRTIO IOMMU DRIVER
19325 M:      Jean-Philippe Brucker <[email protected]>
19326 L:      [email protected]
19327 S:      Maintained
19328 F:      drivers/iommu/virtio-iommu.c
19329 F:      include/uapi/linux/virtio_iommu.h
19330
19331 VIRTIO MEM DRIVER
19332 M:      David Hildenbrand <[email protected]>
19333 L:      [email protected]
19334 S:      Maintained
19335 W:      https://virtio-mem.gitlab.io/
19336 F:      drivers/virtio/virtio_mem.c
19337 F:      include/uapi/linux/virtio_mem.h
19338
19339 VIRTUAL BOX GUEST DEVICE DRIVER
19340 M:      Hans de Goede <[email protected]>
19341 M:      Arnd Bergmann <[email protected]>
19342 M:      Greg Kroah-Hartman <[email protected]>
19343 S:      Maintained
19344 F:      drivers/virt/vboxguest/
19345 F:      include/linux/vbox_utils.h
19346 F:      include/uapi/linux/vbox*.h
19347
19348 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19349 M:      Hans de Goede <[email protected]>
19350 L:      [email protected]
19351 S:      Maintained
19352 F:      fs/vboxsf/*
19353
19354 VIRTUAL SERIO DEVICE DRIVER
19355 M:      Stephen Chandler Paul <[email protected]>
19356 S:      Maintained
19357 F:      drivers/input/serio/userio.c
19358 F:      include/uapi/linux/userio.h
19359
19360 VIVID VIRTUAL VIDEO DRIVER
19361 M:      Hans Verkuil <[email protected]>
19362 L:      [email protected]
19363 S:      Maintained
19364 W:      https://linuxtv.org
19365 T:      git git://linuxtv.org/media_tree.git
19366 F:      drivers/media/test-drivers/vivid/*
19367
19368 VIDTV VIRTUAL DIGITAL TV DRIVER
19369 M:      Daniel W. S. Almeida <[email protected]>
19370 L:      [email protected]
19371 S:      Maintained
19372 W:      https://linuxtv.org
19373 T:      git git://linuxtv.org/media_tree.git
19374 F:      drivers/media/test-drivers/vidtv/*
19375
19376 VLYNQ BUS
19377 M:      Florian Fainelli <[email protected]>
19378 L:      [email protected] (subscribers-only)
19379 S:      Maintained
19380 F:      drivers/vlynq/vlynq.c
19381 F:      include/linux/vlynq.h
19382
19383 VME SUBSYSTEM
19384 M:      Martyn Welch <[email protected]>
19385 M:      Manohar Vanga <[email protected]>
19386 M:      Greg Kroah-Hartman <[email protected]>
19387 L:      [email protected]
19388 S:      Maintained
19389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19390 F:      Documentation/driver-api/vme.rst
19391 F:      drivers/staging/vme/
19392 F:      drivers/vme/
19393 F:      include/linux/vme*
19394
19395 VMWARE BALLOON DRIVER
19396 M:      Nadav Amit <[email protected]>
19397 M:      "VMware, Inc." <[email protected]>
19398 L:      [email protected]
19399 S:      Maintained
19400 F:      drivers/misc/vmw_balloon.c
19401
19402 VMWARE HYPERVISOR INTERFACE
19403 M:      Deep Shah <[email protected]>
19404 M:      "VMware, Inc." <[email protected]>
19405 L:      [email protected]
19406 S:      Supported
19407 F:      arch/x86/include/asm/vmware.h
19408 F:      arch/x86/kernel/cpu/vmware.c
19409
19410 VMWARE PVRDMA DRIVER
19411 M:      Adit Ranadive <[email protected]>
19412 M:      VMware PV-Drivers <[email protected]>
19413 L:      [email protected]
19414 S:      Maintained
19415 F:      drivers/infiniband/hw/vmw_pvrdma/
19416
19417 VMware PVSCSI driver
19418 M:      Vishal Bhakta <[email protected]>
19419 M:      VMware PV-Drivers <[email protected]>
19420 L:      [email protected]
19421 S:      Maintained
19422 F:      drivers/scsi/vmw_pvscsi.c
19423 F:      drivers/scsi/vmw_pvscsi.h
19424
19425 VMWARE VIRTUAL PTP CLOCK DRIVER
19426 M:      Vivek Thampi <[email protected]>
19427 M:      "VMware, Inc." <[email protected]>
19428 L:      [email protected]
19429 S:      Supported
19430 F:      drivers/ptp/ptp_vmw.c
19431
19432 VMWARE VMMOUSE SUBDRIVER
19433 M:      "VMware Graphics" <[email protected]>
19434 M:      "VMware, Inc." <[email protected]>
19435 L:      [email protected]
19436 S:      Maintained
19437 F:      drivers/input/mouse/vmmouse.c
19438 F:      drivers/input/mouse/vmmouse.h
19439
19440 VMWARE VMXNET3 ETHERNET DRIVER
19441 M:      Ronak Doshi <[email protected]>
19442 M:      [email protected]
19443 L:      [email protected]
19444 S:      Maintained
19445 F:      drivers/net/vmxnet3/
19446
19447 VOCORE VOCORE2 BOARD
19448 M:      Harvey Hunt <[email protected]>
19449 L:      [email protected]
19450 S:      Maintained
19451 F:      arch/mips/boot/dts/ralink/vocore2.dts
19452
19453 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19454 M:      Liam Girdwood <[email protected]>
19455 M:      Mark Brown <[email protected]>
19456 L:      [email protected]
19457 S:      Supported
19458 W:      http://www.slimlogic.co.uk/?p=48
19459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19460 F:      Documentation/devicetree/bindings/regulator/
19461 F:      Documentation/power/regulator/
19462 F:      drivers/regulator/
19463 F:      include/dt-bindings/regulator/
19464 F:      include/linux/regulator/
19465 K:      regulator_get_optional
19466
19467 VRF
19468 M:      David Ahern <[email protected]>
19469 L:      [email protected]
19470 S:      Maintained
19471 F:      Documentation/networking/vrf.rst
19472 F:      drivers/net/vrf.c
19473
19474 VSPRINTF
19475 M:      Petr Mladek <[email protected]>
19476 M:      Steven Rostedt <[email protected]>
19477 M:      Sergey Senozhatsky <[email protected]>
19478 R:      Andy Shevchenko <[email protected]>
19479 R:      Rasmus Villemoes <[email protected]>
19480 S:      Maintained
19481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19482 F:      Documentation/core-api/printk-formats.rst
19483 F:      lib/test_printf.c
19484 F:      lib/vsprintf.c
19485
19486 VT1211 HARDWARE MONITOR DRIVER
19487 M:      Juerg Haefliger <[email protected]>
19488 L:      [email protected]
19489 S:      Maintained
19490 F:      Documentation/hwmon/vt1211.rst
19491 F:      drivers/hwmon/vt1211.c
19492
19493 VT8231 HARDWARE MONITOR DRIVER
19494 M:      Roger Lucas <[email protected]>
19495 L:      [email protected]
19496 S:      Maintained
19497 F:      drivers/hwmon/vt8231.c
19498
19499 VUB300 USB to SDIO/SD/MMC bridge chip
19500 L:      [email protected]
19501 S:      Orphan
19502 F:      drivers/mmc/host/vub300.c
19503
19504 W1 DALLAS'S 1-WIRE BUS
19505 M:      Evgeniy Polyakov <[email protected]>
19506 S:      Maintained
19507 F:      Documentation/devicetree/bindings/w1/
19508 F:      Documentation/w1/
19509 F:      drivers/w1/
19510 F:      include/linux/w1.h
19511
19512 W83791D HARDWARE MONITORING DRIVER
19513 M:      Marc Hulsman <[email protected]>
19514 L:      [email protected]
19515 S:      Maintained
19516 F:      Documentation/hwmon/w83791d.rst
19517 F:      drivers/hwmon/w83791d.c
19518
19519 W83793 HARDWARE MONITORING DRIVER
19520 M:      Rudolf Marek <[email protected]>
19521 L:      [email protected]
19522 S:      Maintained
19523 F:      Documentation/hwmon/w83793.rst
19524 F:      drivers/hwmon/w83793.c
19525
19526 W83795 HARDWARE MONITORING DRIVER
19527 M:      Jean Delvare <[email protected]>
19528 L:      [email protected]
19529 S:      Maintained
19530 F:      drivers/hwmon/w83795.c
19531
19532 W83L51xD SD/MMC CARD INTERFACE DRIVER
19533 M:      Pierre Ossman <[email protected]>
19534 S:      Maintained
19535 F:      drivers/mmc/host/wbsd.*
19536
19537 WACOM PROTOCOL 4 SERIAL TABLETS
19538 M:      Julian Squires <[email protected]>
19539 M:      Hans de Goede <[email protected]>
19540 L:      [email protected]
19541 S:      Maintained
19542 F:      drivers/input/tablet/wacom_serial4.c
19543
19544 WATCHDOG DEVICE DRIVERS
19545 M:      Wim Van Sebroeck <[email protected]>
19546 M:      Guenter Roeck <[email protected]>
19547 L:      [email protected]
19548 S:      Maintained
19549 W:      http://www.linux-watchdog.org/
19550 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19551 F:      Documentation/devicetree/bindings/watchdog/
19552 F:      Documentation/watchdog/
19553 F:      drivers/watchdog/
19554 F:      include/linux/watchdog.h
19555 F:      include/uapi/linux/watchdog.h
19556
19557 WHISKEYCOVE PMIC GPIO DRIVER
19558 M:      Kuppuswamy Sathyanarayanan <[email protected]>
19559 L:      [email protected]
19560 S:      Maintained
19561 F:      drivers/gpio/gpio-wcove.c
19562
19563 WHWAVE RTC DRIVER
19564 M:      Dianlong Li <[email protected]>
19565 L:      [email protected]
19566 S:      Maintained
19567 F:      drivers/rtc/rtc-sd3078.c
19568
19569 WIIMOTE HID DRIVER
19570 M:      David Rheinsberg <[email protected]>
19571 L:      [email protected]
19572 S:      Maintained
19573 F:      drivers/hid/hid-wiimote*
19574
19575 WILOCITY WIL6210 WIRELESS DRIVER
19576 M:      Maya Erez <[email protected]>
19577 L:      [email protected]
19578 L:      [email protected]
19579 S:      Supported
19580 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19581 F:      drivers/net/wireless/ath/wil6210/
19582
19583 WINBOND CIR DRIVER
19584 M:      David Härdeman <[email protected]>
19585 S:      Maintained
19586 F:      drivers/media/rc/winbond-cir.c
19587
19588 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19589 M:      William Breathitt Gray <[email protected]>
19590 L:      [email protected]
19591 S:      Maintained
19592 F:      drivers/watchdog/ebc-c384_wdt.c
19593
19594 WINSYSTEMS WS16C48 GPIO DRIVER
19595 M:      William Breathitt Gray <[email protected]>
19596 L:      [email protected]
19597 S:      Maintained
19598 F:      drivers/gpio/gpio-ws16c48.c
19599
19600 WIREGUARD SECURE NETWORK TUNNEL
19601 M:      Jason A. Donenfeld <[email protected]>
19602 L:      [email protected]
19603 L:      [email protected]
19604 S:      Maintained
19605 F:      drivers/net/wireguard/
19606 F:      tools/testing/selftests/wireguard/
19607
19608 WISTRON LAPTOP BUTTON DRIVER
19609 M:      Miloslav Trmac <[email protected]>
19610 S:      Maintained
19611 F:      drivers/input/misc/wistron_btns.c
19612
19613 WL3501 WIRELESS PCMCIA CARD DRIVER
19614 L:      [email protected]
19615 S:      Odd fixes
19616 F:      drivers/net/wireless/wl3501*
19617
19618 WOLFSON MICROELECTRONICS DRIVERS
19619 L:      [email protected]
19620 S:      Supported
19621 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19622 T:      git https://github.com/CirrusLogic/linux-drivers.git
19623 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19624 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19625 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19626 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19627 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19628 F:      Documentation/hwmon/wm83??.rst
19629 F:      arch/arm/mach-s3c/mach-crag6410*
19630 F:      drivers/clk/clk-wm83*.c
19631 F:      drivers/gpio/gpio-*wm*.c
19632 F:      drivers/gpio/gpio-arizona.c
19633 F:      drivers/hwmon/wm83??-hwmon.c
19634 F:      drivers/input/misc/wm831x-on.c
19635 F:      drivers/input/touchscreen/wm831x-ts.c
19636 F:      drivers/input/touchscreen/wm97*.c
19637 F:      drivers/leds/leds-wm83*.c
19638 F:      drivers/mfd/arizona*
19639 F:      drivers/mfd/cs47l24*
19640 F:      drivers/mfd/wm*.c
19641 F:      drivers/power/supply/wm83*.c
19642 F:      drivers/regulator/arizona*
19643 F:      drivers/regulator/wm8*.c
19644 F:      drivers/rtc/rtc-wm83*.c
19645 F:      drivers/video/backlight/wm83*_bl.c
19646 F:      drivers/watchdog/wm83*_wdt.c
19647 F:      include/linux/mfd/arizona/
19648 F:      include/linux/mfd/wm831x/
19649 F:      include/linux/mfd/wm8350/
19650 F:      include/linux/mfd/wm8400*
19651 F:      include/linux/regulator/arizona*
19652 F:      include/linux/wm97xx.h
19653 F:      include/sound/wm????.h
19654 F:      sound/soc/codecs/arizona*
19655 F:      sound/soc/codecs/cs47l24*
19656 F:      sound/soc/codecs/wm*
19657
19658 WORKQUEUE
19659 M:      Tejun Heo <[email protected]>
19660 R:      Lai Jiangshan <[email protected]>
19661 S:      Maintained
19662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19663 F:      Documentation/core-api/workqueue.rst
19664 F:      include/linux/workqueue.h
19665 F:      kernel/workqueue.c
19666
19667 X-POWERS AXP288 PMIC DRIVERS
19668 M:      Hans de Goede <[email protected]>
19669 S:      Maintained
19670 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19671 N:      axp288
19672
19673 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19674 M:      Chen-Yu Tsai <[email protected]>
19675 L:      [email protected]
19676 S:      Maintained
19677 N:      axp[128]
19678
19679 X.25 STACK
19680 M:      Martin Schiller <[email protected]>
19681 L:      [email protected]
19682 S:      Maintained
19683 F:      Documentation/networking/lapb-module.rst
19684 F:      Documentation/networking/x25*
19685 F:      drivers/net/wan/hdlc_x25.c
19686 F:      drivers/net/wan/lapbether.c
19687 F:      include/*/lapb.h
19688 F:      include/net/x25*
19689 F:      include/uapi/linux/x25.h
19690 F:      net/lapb/
19691 F:      net/x25/
19692
19693 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19694 M:      Thomas Gleixner <[email protected]>
19695 M:      Ingo Molnar <[email protected]>
19696 M:      Borislav Petkov <[email protected]>
19697 M:      [email protected]
19698 R:      "H. Peter Anvin" <[email protected]>
19699 L:      [email protected]
19700 S:      Maintained
19701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19702 F:      Documentation/devicetree/bindings/x86/
19703 F:      Documentation/x86/
19704 F:      arch/x86/
19705
19706 X86 ENTRY CODE
19707 M:      Andy Lutomirski <[email protected]>
19708 L:      [email protected]
19709 S:      Maintained
19710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19711 F:      arch/x86/entry/
19712
19713 X86 MCE INFRASTRUCTURE
19714 M:      Tony Luck <[email protected]>
19715 M:      Borislav Petkov <[email protected]>
19716 L:      [email protected]
19717 S:      Maintained
19718 F:      arch/x86/kernel/cpu/mce/*
19719
19720 X86 MICROCODE UPDATE SUPPORT
19721 M:      Borislav Petkov <[email protected]>
19722 S:      Maintained
19723 F:      arch/x86/kernel/cpu/microcode/*
19724
19725 X86 MM
19726 M:      Dave Hansen <[email protected]>
19727 M:      Andy Lutomirski <[email protected]>
19728 M:      Peter Zijlstra <[email protected]>
19729 L:      [email protected]
19730 S:      Maintained
19731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19732 F:      arch/x86/mm/
19733
19734 X86 PLATFORM DRIVERS
19735 M:      Hans de Goede <[email protected]>
19736 M:      Mark Gross <[email protected]>
19737 L:      [email protected]
19738 S:      Maintained
19739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19740 F:      drivers/platform/olpc/
19741 F:      drivers/platform/x86/
19742
19743 X86 PLATFORM DRIVERS - ARCH
19744 R:      Darren Hart <[email protected]>
19745 R:      Andy Shevchenko <[email protected]>
19746 L:      [email protected]
19747 L:      [email protected]
19748 S:      Maintained
19749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19750 F:      arch/x86/platform
19751
19752 X86 PLATFORM UV HPE SUPERDOME FLEX
19753 M:      Steve Wahl <[email protected]>
19754 R:      Mike Travis <[email protected]>
19755 R:      Dimitri Sivanich <[email protected]>
19756 R:      Russ Anderson <[email protected]>
19757 S:      Supported
19758 F:      arch/x86/include/asm/uv/
19759 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19760 F:      arch/x86/platform/uv/
19761
19762 X86 VDSO
19763 M:      Andy Lutomirski <[email protected]>
19764 L:      [email protected]
19765 S:      Maintained
19766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19767 F:      arch/x86/entry/vdso/
19768
19769 XARRAY
19770 M:      Matthew Wilcox <[email protected]>
19771 L:      [email protected]
19772 S:      Supported
19773 F:      Documentation/core-api/xarray.rst
19774 F:      include/linux/idr.h
19775 F:      include/linux/xarray.h
19776 F:      lib/idr.c
19777 F:      lib/xarray.c
19778 F:      tools/testing/radix-tree
19779
19780 XBOX DVD IR REMOTE
19781 M:      Benjamin Valentin <[email protected]>
19782 S:      Maintained
19783 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19784 F:      drivers/media/rc/xbox_remote.c
19785
19786 XC2028/3028 TUNER DRIVER
19787 M:      Mauro Carvalho Chehab <[email protected]>
19788 L:      [email protected]
19789 S:      Maintained
19790 W:      https://linuxtv.org
19791 T:      git git://linuxtv.org/media_tree.git
19792 F:      drivers/media/tuners/tuner-xc2028.*
19793
19794 XDP (eXpress Data Path)
19795 M:      Alexei Starovoitov <[email protected]>
19796 M:      Daniel Borkmann <[email protected]>
19797 M:      David S. Miller <[email protected]>
19798 M:      Jakub Kicinski <[email protected]>
19799 M:      Jesper Dangaard Brouer <[email protected]>
19800 M:      John Fastabend <[email protected]>
19801 L:      [email protected]
19802 L:      [email protected]
19803 S:      Supported
19804 F:      include/net/xdp.h
19805 F:      include/net/xdp_priv.h
19806 F:      include/trace/events/xdp.h
19807 F:      kernel/bpf/cpumap.c
19808 F:      kernel/bpf/devmap.c
19809 F:      net/core/xdp.c
19810 F:      samples/bpf/xdp*
19811 F:      tools/testing/selftests/bpf/*xdp*
19812 F:      tools/testing/selftests/bpf/*/*xdp*
19813 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19814 F:      drivers/net/ethernet/*/*/*xdp*
19815 K:      (?:\b|_)xdp(?:\b|_)
19816
19817 XDP SOCKETS (AF_XDP)
19818 M:      Björn Töpel <[email protected]>
19819 M:      Magnus Karlsson <[email protected]>
19820 R:      Jonathan Lemon <[email protected]>
19821 L:      [email protected]
19822 L:      [email protected]
19823 S:      Maintained
19824 F:      Documentation/networking/af_xdp.rst
19825 F:      include/net/xdp_sock*
19826 F:      include/net/xsk_buff_pool.h
19827 F:      include/uapi/linux/if_xdp.h
19828 F:      include/uapi/linux/xdp_diag.h
19829 F:      include/net/netns/xdp.h
19830 F:      net/xdp/
19831 F:      samples/bpf/xdpsock*
19832 F:      tools/lib/bpf/xsk*
19833
19834 XEN BLOCK SUBSYSTEM
19835 M:      Konrad Rzeszutek Wilk <[email protected]>
19836 M:      Roger Pau Monné <[email protected]>
19837 L:      [email protected] (moderated for non-subscribers)
19838 S:      Supported
19839 F:      drivers/block/xen*
19840 F:      drivers/block/xen-blkback/*
19841
19842 XEN HYPERVISOR ARM
19843 M:      Stefano Stabellini <[email protected]>
19844 L:      [email protected] (moderated for non-subscribers)
19845 S:      Maintained
19846 F:      arch/arm/include/asm/xen/
19847 F:      arch/arm/xen/
19848
19849 XEN HYPERVISOR ARM64
19850 M:      Stefano Stabellini <[email protected]>
19851 L:      [email protected] (moderated for non-subscribers)
19852 S:      Maintained
19853 F:      arch/arm64/include/asm/xen/
19854 F:      arch/arm64/xen/
19855
19856 XEN HYPERVISOR INTERFACE
19857 M:      Boris Ostrovsky <[email protected]>
19858 M:      Juergen Gross <[email protected]>
19859 R:      Stefano Stabellini <[email protected]>
19860 L:      [email protected] (moderated for non-subscribers)
19861 S:      Supported
19862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19863 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19864 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19865 F:      arch/x86/include/asm/pvclock-abi.h
19866 F:      arch/x86/include/asm/xen/
19867 F:      arch/x86/platform/pvh/
19868 F:      arch/x86/xen/
19869 F:      drivers/*/xen-*front.c
19870 F:      drivers/xen/
19871 F:      include/uapi/xen/
19872 F:      include/xen/
19873
19874 XEN NETWORK BACKEND DRIVER
19875 M:      Wei Liu <[email protected]>
19876 M:      Paul Durrant <[email protected]>
19877 L:      [email protected] (moderated for non-subscribers)
19878 L:      [email protected]
19879 S:      Supported
19880 F:      drivers/net/xen-netback/*
19881
19882 XEN PCI SUBSYSTEM
19883 M:      Konrad Rzeszutek Wilk <[email protected]>
19884 L:      [email protected] (moderated for non-subscribers)
19885 S:      Supported
19886 F:      arch/x86/pci/*xen*
19887 F:      drivers/pci/*xen*
19888
19889 XEN PVSCSI DRIVERS
19890 M:      Juergen Gross <[email protected]>
19891 L:      [email protected] (moderated for non-subscribers)
19892 L:      [email protected]
19893 S:      Supported
19894 F:      drivers/scsi/xen-scsifront.c
19895 F:      drivers/xen/xen-scsiback.c
19896 F:      include/xen/interface/io/vscsiif.h
19897
19898 XEN SOUND FRONTEND DRIVER
19899 M:      Oleksandr Andrushchenko <[email protected]>
19900 L:      [email protected] (moderated for non-subscribers)
19901 L:      [email protected] (moderated for non-subscribers)
19902 S:      Supported
19903 F:      sound/xen/*
19904
19905 XEN SWIOTLB SUBSYSTEM
19906 M:      Konrad Rzeszutek Wilk <[email protected]>
19907 L:      [email protected] (moderated for non-subscribers)
19908 L:      [email protected]
19909 S:      Supported
19910 F:      arch/x86/xen/*swiotlb*
19911 F:      drivers/xen/*swiotlb*
19912
19913 XFS FILESYSTEM
19914 M:      Darrick J. Wong <[email protected]>
19915 M:      [email protected]
19916 L:      [email protected]
19917 S:      Supported
19918 W:      http://xfs.org/
19919 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19920 F:      Documentation/ABI/testing/sysfs-fs-xfs
19921 F:      Documentation/admin-guide/xfs.rst
19922 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19923 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19924 F:      fs/xfs/
19925 F:      include/uapi/linux/dqblk_xfs.h
19926 F:      include/uapi/linux/fsmap.h
19927
19928 XILINX AXI ETHERNET DRIVER
19929 M:      Radhey Shyam Pandey <[email protected]>
19930 S:      Maintained
19931 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19932
19933 XILINX CAN DRIVER
19934 M:      Appana Durga Kedareswara rao <[email protected]>
19935 R:      Naga Sureshkumar Relli <[email protected]>
19936 L:      [email protected]
19937 S:      Maintained
19938 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19939 F:      drivers/net/can/xilinx_can.c
19940
19941 XILINX GPIO DRIVER
19942 M:      Shubhrajyoti Datta <[email protected]>
19943 R:      Srinivas Neeli <[email protected]>
19944 R:      Michal Simek <[email protected]>
19945 S:      Maintained
19946 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
19947 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.txt
19948 F:      drivers/gpio/gpio-xilinx.c
19949 F:      drivers/gpio/gpio-zynq.c
19950
19951 XILINX SD-FEC IP CORES
19952 M:      Derek Kiernan <[email protected]>
19953 M:      Dragan Cvetic <[email protected]>
19954 S:      Maintained
19955 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19956 F:      Documentation/misc-devices/xilinx_sdfec.rst
19957 F:      drivers/misc/Kconfig
19958 F:      drivers/misc/Makefile
19959 F:      drivers/misc/xilinx_sdfec.c
19960 F:      include/uapi/misc/xilinx_sdfec.h
19961
19962 XILINX UARTLITE SERIAL DRIVER
19963 M:      Peter Korsgaard <[email protected]>
19964 L:      [email protected]
19965 S:      Maintained
19966 F:      drivers/tty/serial/uartlite.c
19967
19968 XILINX VIDEO IP CORES
19969 M:      Hyun Kwon <[email protected]>
19970 M:      Laurent Pinchart <[email protected]>
19971 L:      [email protected]
19972 S:      Supported
19973 T:      git git://linuxtv.org/media_tree.git
19974 F:      Documentation/devicetree/bindings/media/xilinx/
19975 F:      drivers/media/platform/xilinx/
19976 F:      include/uapi/linux/xilinx-v4l2-controls.h
19977
19978 XILINX ZYNQMP DPDMA DRIVER
19979 M:      Hyun Kwon <[email protected]>
19980 M:      Laurent Pinchart <[email protected]>
19981 L:      [email protected]
19982 S:      Supported
19983 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19984 F:      drivers/dma/xilinx/xilinx_dpdma.c
19985 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19986
19987 XILINX ZYNQMP PSGTR PHY DRIVER
19988 M:      Anurag Kumar Vulisha <[email protected]>
19989 M:      Laurent Pinchart <[email protected]>
19990 L:      [email protected]
19991 S:      Supported
19992 T:      git https://github.com/Xilinx/linux-xlnx.git
19993 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19994 F:      drivers/phy/xilinx/phy-zynqmp.c
19995
19996 XILLYBUS DRIVER
19997 M:      Eli Billauer <[email protected]>
19998 L:      [email protected]
19999 S:      Supported
20000 F:      drivers/char/xillybus/
20001
20002 XLP9XX I2C DRIVER
20003 M:      George Cherian <[email protected]>
20004 L:      [email protected]
20005 S:      Supported
20006 W:      http://www.marvell.com
20007 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20008 F:      drivers/i2c/busses/i2c-xlp9xx.c
20009
20010 XRA1403 GPIO EXPANDER
20011 M:      Nandor Han <[email protected]>
20012 M:      Semi Malinen <[email protected]>
20013 L:      [email protected]
20014 S:      Maintained
20015 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20016 F:      drivers/gpio/gpio-xra1403.c
20017
20018 XTENSA XTFPGA PLATFORM SUPPORT
20019 M:      Max Filippov <[email protected]>
20020 L:      [email protected]
20021 S:      Maintained
20022 F:      drivers/spi/spi-xtensa-xtfpga.c
20023 F:      sound/soc/xtensa/xtfpga-i2s.c
20024
20025 YAM DRIVER FOR AX.25
20026 M:      Jean-Paul Roubelat <[email protected]>
20027 L:      [email protected]
20028 S:      Maintained
20029 F:      drivers/net/hamradio/yam*
20030 F:      include/linux/yam.h
20031
20032 YAMA SECURITY MODULE
20033 M:      Kees Cook <[email protected]>
20034 S:      Supported
20035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20036 F:      Documentation/admin-guide/LSM/Yama.rst
20037 F:      security/yama/
20038
20039 YEALINK PHONE DRIVER
20040 M:      Henk Vergonet <[email protected]>
20041 L:      [email protected]
20042 S:      Maintained
20043 F:      Documentation/input/devices/yealink.rst
20044 F:      drivers/input/misc/yealink.*
20045
20046 Z8530 DRIVER FOR AX.25
20047 M:      Joerg Reuter <[email protected]>
20048 L:      [email protected]
20049 S:      Maintained
20050 W:      http://yaina.de/jreuter/
20051 W:      http://www.qsl.net/dl1bke/
20052 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20053 F:      drivers/net/hamradio/*scc.c
20054 F:      drivers/net/hamradio/z8530.h
20055
20056 ZBUD COMPRESSED PAGE ALLOCATOR
20057 M:      Seth Jennings <[email protected]>
20058 M:      Dan Streetman <[email protected]>
20059 L:      [email protected]
20060 S:      Maintained
20061 F:      include/linux/zbud.h
20062 F:      mm/zbud.c
20063
20064 ZD1211RW WIRELESS DRIVER
20065 M:      Daniel Drake <[email protected]>
20066 M:      Ulrich Kunitz <[email protected]>
20067 L:      [email protected]
20068 L:      [email protected] (subscribers-only)
20069 S:      Maintained
20070 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20071 F:      drivers/net/wireless/zydas/zd1211rw/
20072
20073 ZD1301 MEDIA DRIVER
20074 M:      Antti Palosaari <[email protected]>
20075 L:      [email protected]
20076 S:      Maintained
20077 W:      https://linuxtv.org/
20078 W:      http://palosaari.fi/linux/
20079 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20080 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20081
20082 ZD1301_DEMOD MEDIA DRIVER
20083 M:      Antti Palosaari <[email protected]>
20084 L:      [email protected]
20085 S:      Maintained
20086 W:      https://linuxtv.org/
20087 W:      http://palosaari.fi/linux/
20088 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20089 F:      drivers/media/dvb-frontends/zd1301_demod*
20090
20091 ZHAOXIN PROCESSOR SUPPORT
20092 M:      Tony W Wang-oc <[email protected]>
20093 L:      [email protected]
20094 S:      Maintained
20095 F:      arch/x86/kernel/cpu/zhaoxin.c
20096
20097 ZONEFS FILESYSTEM
20098 M:      Damien Le Moal <[email protected]>
20099 M:      Naohiro Aota <[email protected]>
20100 R:      Johannes Thumshirn <[email protected]>
20101 L:      [email protected]
20102 S:      Maintained
20103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20104 F:      Documentation/filesystems/zonefs.rst
20105 F:      fs/zonefs/
20106
20107 ZPOOL COMPRESSED PAGE STORAGE API
20108 M:      Dan Streetman <[email protected]>
20109 L:      [email protected]
20110 S:      Maintained
20111 F:      include/linux/zpool.h
20112 F:      mm/zpool.c
20113
20114 ZR36067 VIDEO FOR LINUX DRIVER
20115 M:      Corentin Labbe <[email protected]>
20116 L:      [email protected]
20117 L:      [email protected]
20118 S:      Maintained
20119 W:      http://mjpeg.sourceforge.net/driver-zoran/
20120 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20121 F:      Documentation/driver-api/media/drivers/zoran.rst
20122 F:      drivers/staging/media/zoran/
20123
20124 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20125 M:      Minchan Kim <[email protected]>
20126 M:      Nitin Gupta <[email protected]>
20127 R:      Sergey Senozhatsky <[email protected]>
20128 L:      [email protected]
20129 S:      Maintained
20130 F:      Documentation/admin-guide/blockdev/zram.rst
20131 F:      drivers/block/zram/
20132
20133 ZS DECSTATION Z85C30 SERIAL DRIVER
20134 M:      "Maciej W. Rozycki" <[email protected]>
20135 S:      Maintained
20136 F:      drivers/tty/serial/zs.*
20137
20138 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20139 M:      Minchan Kim <[email protected]>
20140 M:      Nitin Gupta <[email protected]>
20141 R:      Sergey Senozhatsky <[email protected]>
20142 L:      [email protected]
20143 S:      Maintained
20144 F:      Documentation/vm/zsmalloc.rst
20145 F:      include/linux/zsmalloc.h
20146 F:      mm/zsmalloc.c
20147
20148 ZSWAP COMPRESSED SWAP CACHING
20149 M:      Seth Jennings <[email protected]>
20150 M:      Dan Streetman <[email protected]>
20151 M:      Vitaly Wool <[email protected]>
20152 L:      [email protected]
20153 S:      Maintained
20154 F:      mm/zswap.c
20155
20156 THE REST
20157 M:      Linus Torvalds <[email protected]>
20158 L:      [email protected]
20159 S:      Buried alive in reporters
20160 Q:      http://patchwork.kernel.org/project/LKML/list/
20161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20162 F:      *
20163 F:      */
This page took 1.123871 seconds and 4 git commands to generate.