]> Git Repo - linux.git/blob - MAINTAINERS
efi/libstub: Optimize for size instead of speed
[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/3com/vortex.txt
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:      http://wireless.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.txt
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:      Realtek linux nic maintainers <[email protected]>
207 M:      Heiner Kallweit <[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
265 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
266 M:      Hans de Goede <[email protected]>
267 L:      [email protected]
268 S:      Maintained
269 F:      drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M:      Alistair John Strachan <[email protected]>
273 L:      [email protected]
274 S:      Maintained
275 F:      drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M:      William Breathitt Gray <[email protected]>
279 L:      [email protected]
280 S:      Maintained
281 F:      drivers/gpio/gpio-104-dio-48e.c
282
283 ACCES 104-IDI-48 GPIO DRIVER
284 M:      "William Breathitt Gray" <[email protected]>
285 L:      [email protected]
286 S:      Maintained
287 F:      drivers/gpio/gpio-104-idi-48.c
288
289 ACCES 104-IDIO-16 GPIO DRIVER
290 M:      "William Breathitt Gray" <[email protected]>
291 L:      [email protected]
292 S:      Maintained
293 F:      drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M:      William Breathitt Gray <[email protected]>
297 L:      [email protected]
298 S:      Maintained
299 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
300 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
301 F:      drivers/counter/104-quad-8.c
302
303 ACCES PCI-IDIO-16 GPIO DRIVER
304 M:      William Breathitt Gray <[email protected]>
305 L:      [email protected]
306 S:      Maintained
307 F:      drivers/gpio/gpio-pci-idio-16.c
308
309 ACCES PCIe-IDIO-24 GPIO DRIVER
310 M:      William Breathitt Gray <[email protected]>
311 L:      [email protected]
312 S:      Maintained
313 F:      drivers/gpio/gpio-pcie-idio-24.c
314
315 ACENIC DRIVER
316 M:      Jes Sorensen <[email protected]>
317 L:      [email protected]
318 S:      Maintained
319 F:      drivers/net/ethernet/alteon/acenic*
320
321 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
322 M:      Peter Kaestle <[email protected]>
323 L:      [email protected]
324 S:      Maintained
325 W:      http://piie.net/?section=acerhdf
326 F:      drivers/platform/x86/acerhdf.c
327
328 ACER WMI LAPTOP EXTRAS
329 M:      "Lee, Chun-Yi" <[email protected]>
330 L:      [email protected]
331 S:      Maintained
332 F:      drivers/platform/x86/acer-wmi.c
333
334 ACPI
335 M:      "Rafael J. Wysocki" <[email protected]>
336 M:      Len Brown <[email protected]>
337 L:      [email protected]
338 S:      Supported
339 W:      https://01.org/linux-acpi
340 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
341 B:      https://bugzilla.kernel.org
342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
343 F:      Documentation/ABI/testing/configfs-acpi
344 F:      Documentation/ABI/testing/sysfs-bus-acpi
345 F:      Documentation/firmware-guide/acpi/
346 F:      drivers/acpi/
347 F:      drivers/pci/*/*acpi*
348 F:      drivers/pci/*acpi*
349 F:      drivers/pnp/pnpacpi/
350 F:      include/acpi/
351 F:      include/linux/acpi.h
352 F:      include/linux/fwnode.h
353 F:      tools/power/acpi/
354
355 ACPI APEI
356 M:      "Rafael J. Wysocki" <[email protected]>
357 M:      Len Brown <[email protected]>
358 R:      James Morse <[email protected]>
359 R:      Tony Luck <[email protected]>
360 R:      Borislav Petkov <[email protected]>
361 L:      [email protected]
362 F:      drivers/acpi/apei/
363
364 ACPI COMPONENT ARCHITECTURE (ACPICA)
365 M:      Robert Moore <[email protected]>
366 M:      Erik Kaneda <[email protected]>
367 M:      "Rafael J. Wysocki" <[email protected]>
368 L:      [email protected]
369 L:      [email protected]
370 S:      Supported
371 W:      https://acpica.org/
372 W:      https://github.com/acpica/acpica/
373 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
374 B:      https://bugzilla.kernel.org
375 B:      https://bugs.acpica.org
376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
377 F:      drivers/acpi/acpica/
378 F:      include/acpi/
379 F:      tools/power/acpi/
380
381 ACPI FAN DRIVER
382 M:      Zhang Rui <[email protected]>
383 L:      [email protected]
384 S:      Supported
385 W:      https://01.org/linux-acpi
386 B:      https://bugzilla.kernel.org
387 F:      drivers/acpi/fan.c
388
389 ACPI FOR ARM64 (ACPI/arm64)
390 M:      Lorenzo Pieralisi <[email protected]>
391 M:      Hanjun Guo <[email protected]>
392 M:      Sudeep Holla <[email protected]>
393 L:      [email protected]
394 L:      [email protected] (moderated for non-subscribers)
395 S:      Maintained
396 F:      drivers/acpi/arm64
397
398 ACPI I2C MULTI INSTANTIATE DRIVER
399 M:      Hans de Goede <[email protected]>
400 L:      [email protected]
401 S:      Maintained
402 F:      drivers/platform/x86/i2c-multi-instantiate.c
403
404 ACPI PMIC DRIVERS
405 M:      "Rafael J. Wysocki" <[email protected]>
406 M:      Len Brown <[email protected]>
407 R:      Andy Shevchenko <[email protected]>
408 R:      Mika Westerberg <[email protected]>
409 L:      [email protected]
410 S:      Supported
411 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
412 B:      https://bugzilla.kernel.org
413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
414 F:      drivers/acpi/pmic/
415
416 ACPI THERMAL DRIVER
417 M:      Zhang Rui <[email protected]>
418 L:      [email protected]
419 S:      Supported
420 W:      https://01.org/linux-acpi
421 B:      https://bugzilla.kernel.org
422 F:      drivers/acpi/*thermal*
423
424 ACPI VIDEO DRIVER
425 M:      Zhang Rui <[email protected]>
426 L:      [email protected]
427 S:      Supported
428 W:      https://01.org/linux-acpi
429 B:      https://bugzilla.kernel.org
430 F:      drivers/acpi/acpi_video.c
431
432 ACPI WMI DRIVER
433 L:      [email protected]
434 S:      Orphan
435 F:      drivers/platform/x86/wmi.c
436 F:      include/uapi/linux/wmi.h
437
438 AD1889 ALSA SOUND DRIVER
439 L:      [email protected]
440 S:      Maintained
441 W:      https://parisc.wiki.kernel.org/index.php/AD1889
442 F:      sound/pci/ad1889.*
443
444 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
445 M:      Michael Hennerich <[email protected]>
446 S:      Supported
447 W:      http://wiki.analog.com/AD5254
448 W:      http://ez.analog.com/community/linux-device-drivers
449 F:      drivers/misc/ad525x_dpot.c
450
451 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
452 M:      Michael Hennerich <[email protected]>
453 S:      Supported
454 W:      http://wiki.analog.com/AD5398
455 W:      http://ez.analog.com/community/linux-device-drivers
456 F:      drivers/regulator/ad5398.c
457
458 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
459 M:      Michael Hennerich <[email protected]>
460 S:      Supported
461 W:      http://wiki.analog.com/AD7142
462 W:      http://ez.analog.com/community/linux-device-drivers
463 F:      drivers/input/misc/ad714x.c
464
465 AD7877 TOUCHSCREEN DRIVER
466 M:      Michael Hennerich <[email protected]>
467 S:      Supported
468 W:      http://wiki.analog.com/AD7877
469 W:      http://ez.analog.com/community/linux-device-drivers
470 F:      drivers/input/touchscreen/ad7877.c
471
472 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
473 M:      Michael Hennerich <[email protected]>
474 S:      Supported
475 W:      http://wiki.analog.com/AD7879
476 W:      http://ez.analog.com/community/linux-device-drivers
477 F:      drivers/input/touchscreen/ad7879.c
478
479 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
480 M:      Jiri Kosina <[email protected]>
481 S:      Maintained
482
483 ADF7242 IEEE 802.15.4 RADIO DRIVER
484 M:      Michael Hennerich <[email protected]>
485 L:      [email protected]
486 S:      Supported
487 W:      https://wiki.analog.com/ADF7242
488 W:      http://ez.analog.com/community/linux-device-drivers
489 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
490 F:      drivers/net/ieee802154/adf7242.c
491
492 ADM1025 HARDWARE MONITOR DRIVER
493 M:      Jean Delvare <[email protected]>
494 L:      [email protected]
495 S:      Maintained
496 F:      Documentation/hwmon/adm1025.rst
497 F:      drivers/hwmon/adm1025.c
498
499 ADM1029 HARDWARE MONITOR DRIVER
500 M:      Corentin Labbe <[email protected]>
501 L:      [email protected]
502 S:      Maintained
503 F:      drivers/hwmon/adm1029.c
504
505 ADM8211 WIRELESS DRIVER
506 L:      [email protected]
507 S:      Orphan
508 W:      http://wireless.kernel.org/
509 F:      drivers/net/wireless/admtek/adm8211.*
510
511 ADP1653 FLASH CONTROLLER DRIVER
512 M:      Sakari Ailus <[email protected]>
513 L:      [email protected]
514 S:      Maintained
515 F:      drivers/media/i2c/adp1653.c
516 F:      include/media/i2c/adp1653.h
517
518 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
519 M:      Michael Hennerich <[email protected]>
520 S:      Supported
521 W:      http://wiki.analog.com/ADP5520
522 W:      http://ez.analog.com/community/linux-device-drivers
523 F:      drivers/gpio/gpio-adp5520.c
524 F:      drivers/input/keyboard/adp5520-keys.c
525 F:      drivers/leds/leds-adp5520.c
526 F:      drivers/mfd/adp5520.c
527 F:      drivers/video/backlight/adp5520_bl.c
528
529 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
530 M:      Michael Hennerich <[email protected]>
531 S:      Supported
532 W:      http://wiki.analog.com/ADP5588
533 W:      http://ez.analog.com/community/linux-device-drivers
534 F:      drivers/gpio/gpio-adp5588.c
535 F:      drivers/input/keyboard/adp5588-keys.c
536
537 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
538 M:      Michael Hennerich <[email protected]>
539 S:      Supported
540 W:      http://wiki.analog.com/ADP8860
541 W:      http://ez.analog.com/community/linux-device-drivers
542 F:      drivers/video/backlight/adp8860_bl.c
543
544 ADT746X FAN DRIVER
545 M:      Colin Leroy <[email protected]>
546 S:      Maintained
547 F:      drivers/macintosh/therm_adt746x.c
548
549 ADT7475 HARDWARE MONITOR DRIVER
550 M:      Jean Delvare <[email protected]>
551 L:      [email protected]
552 S:      Maintained
553 F:      Documentation/hwmon/adt7475.rst
554 F:      drivers/hwmon/adt7475.c
555
556 ADVANSYS SCSI DRIVER
557 M:      Matthew Wilcox <[email protected]>
558 M:      Hannes Reinecke <[email protected]>
559 L:      [email protected]
560 S:      Maintained
561 F:      Documentation/scsi/advansys.rst
562 F:      drivers/scsi/advansys.c
563
564 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
565 M:      Michael Hennerich <[email protected]>
566 S:      Supported
567 W:      http://wiki.analog.com/ADXL345
568 W:      http://ez.analog.com/community/linux-device-drivers
569 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
570 F:      drivers/input/misc/adxl34x.c
571
572 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
573 M:      Stefan Popa <[email protected]>
574 S:      Supported
575 W:      http://ez.analog.com/community/linux-device-drivers
576 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
577 F:      drivers/iio/accel/adxl372.c
578 F:      drivers/iio/accel/adxl372_i2c.c
579 F:      drivers/iio/accel/adxl372_spi.c
580
581 AF9013 MEDIA DRIVER
582 M:      Antti Palosaari <[email protected]>
583 L:      [email protected]
584 S:      Maintained
585 W:      https://linuxtv.org
586 W:      http://palosaari.fi/linux/
587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
588 T:      git git://linuxtv.org/anttip/media_tree.git
589 F:      drivers/media/dvb-frontends/af9013*
590
591 AF9033 MEDIA DRIVER
592 M:      Antti Palosaari <[email protected]>
593 L:      [email protected]
594 S:      Maintained
595 W:      https://linuxtv.org
596 W:      http://palosaari.fi/linux/
597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
598 T:      git git://linuxtv.org/anttip/media_tree.git
599 F:      drivers/media/dvb-frontends/af9033*
600
601 AFFS FILE SYSTEM
602 M:      David Sterba <[email protected]>
603 L:      [email protected]
604 S:      Odd Fixes
605 F:      Documentation/filesystems/affs.rst
606 F:      fs/affs/
607
608 AFS FILESYSTEM
609 M:      David Howells <[email protected]>
610 L:      [email protected]
611 S:      Supported
612 W:      https://www.infradead.org/~dhowells/kafs/
613 F:      Documentation/filesystems/afs.rst
614 F:      fs/afs/
615 F:      include/trace/events/afs.h
616
617 AGPGART DRIVER
618 M:      David Airlie <[email protected]>
619 S:      Maintained
620 T:      git git://anongit.freedesktop.org/drm/drm
621 F:      drivers/char/agp/
622 F:      include/linux/agp*
623 F:      include/uapi/linux/agp*
624
625 AHA152X SCSI DRIVER
626 M:      "Juergen E. Fischer" <[email protected]>
627 L:      [email protected]
628 S:      Maintained
629 F:      drivers/scsi/aha152x*
630 F:      drivers/scsi/pcmcia/aha152x*
631
632 AIC7XXX / AIC79XX SCSI DRIVER
633 M:      Hannes Reinecke <[email protected]>
634 L:      [email protected]
635 S:      Maintained
636 F:      drivers/scsi/aic7xxx/
637
638 AIMSLAB FM RADIO RECEIVER DRIVER
639 M:      Hans Verkuil <[email protected]>
640 L:      [email protected]
641 S:      Maintained
642 W:      https://linuxtv.org
643 T:      git git://linuxtv.org/media_tree.git
644 F:      drivers/media/radio/radio-aimslab*
645
646 AIO
647 M:      Benjamin LaHaise <[email protected]>
648 L:      [email protected]
649 S:      Supported
650 F:      fs/aio.c
651 F:      include/linux/*aio*.h
652
653 AIRSPY MEDIA DRIVER
654 M:      Antti Palosaari <[email protected]>
655 L:      [email protected]
656 S:      Maintained
657 W:      https://linuxtv.org
658 W:      http://palosaari.fi/linux/
659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
660 T:      git git://linuxtv.org/anttip/media_tree.git
661 F:      drivers/media/usb/airspy/
662
663 ALACRITECH GIGABIT ETHERNET DRIVER
664 M:      Lino Sanfilippo <[email protected]>
665 S:      Maintained
666 F:      drivers/net/ethernet/alacritech/*
667
668 ALCATEL SPEEDTOUCH USB DRIVER
669 M:      Duncan Sands <[email protected]>
670 L:      [email protected]
671 S:      Maintained
672 W:      http://www.linux-usb.org/SpeedTouch/
673 F:      drivers/usb/atm/speedtch.c
674 F:      drivers/usb/atm/usbatm.c
675
676 ALCHEMY AU1XX0 MMC DRIVER
677 M:      Manuel Lauss <[email protected]>
678 S:      Maintained
679 F:      drivers/mmc/host/au1xmmc.c
680
681 ALI1563 I2C DRIVER
682 M:      Rudolf Marek <[email protected]>
683 L:      [email protected]
684 S:      Maintained
685 F:      Documentation/i2c/busses/i2c-ali1563.rst
686 F:      drivers/i2c/busses/i2c-ali1563.c
687
688 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
689 M:      Tomislav Denis <[email protected]>
690 L:      [email protected]
691 S:      Maintained
692 W:      http://www.allsensors.com/
693 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
694 F:      drivers/iio/pressure/dlhl60d.c
695
696 ALLEGRO DVT VIDEO IP CORE DRIVER
697 M:      Michael Tretter <[email protected]>
698 R:      Pengutronix Kernel Team <[email protected]>
699 L:      [email protected]
700 S:      Maintained
701 F:      drivers/staging/media/allegro-dvt/
702
703 ALLWINNER A10 CSI DRIVER
704 M:      Maxime Ripard <[email protected]>
705 L:      [email protected]
706 S:      Maintained
707 T:      git git://linuxtv.org/media_tree.git
708 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
709 F:      drivers/media/platform/sunxi/sun4i-csi/
710
711 ALLWINNER CPUFREQ DRIVER
712 M:      Yangtao Li <[email protected]>
713 L:      [email protected]
714 S:      Maintained
715 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
716 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
717
718 ALLWINNER CRYPTO DRIVERS
719 M:      Corentin Labbe <[email protected]>
720 L:      [email protected]
721 S:      Maintained
722 F:      drivers/crypto/allwinner/
723
724 ALLWINNER THERMAL DRIVER
725 M:      Vasily Khoruzhick <[email protected]>
726 M:      Yangtao Li <[email protected]>
727 L:      [email protected]
728 S:      Maintained
729 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
730 F:      drivers/thermal/sun8i_thermal.c
731
732 ALLWINNER VPU DRIVER
733 M:      Maxime Ripard <[email protected]>
734 M:      Paul Kocialkowski <[email protected]>
735 L:      [email protected]
736 S:      Maintained
737 F:      drivers/staging/media/sunxi/cedrus/
738
739 ALPHA PORT
740 M:      Richard Henderson <[email protected]>
741 M:      Ivan Kokshaysky <[email protected]>
742 M:      Matt Turner <[email protected]>
743 L:      [email protected]
744 S:      Odd Fixes
745 F:      arch/alpha/
746
747 ALPS PS/2 TOUCHPAD DRIVER
748 R:      Pali Rohár <[email protected]>
749 F:      drivers/input/mouse/alps.*
750
751 ALTERA I2C CONTROLLER DRIVER
752 M:      Thor Thayer <[email protected]>
753 S:      Maintained
754 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
755 F:      drivers/i2c/busses/i2c-altera.c
756
757 ALTERA MAILBOX DRIVER
758 M:      Ley Foon Tan <[email protected]>
759 S:      Maintained
760 F:      drivers/mailbox/mailbox-altera.c
761
762 ALTERA PIO DRIVER
763 M:      Joyce Ooi <[email protected]>
764 L:      [email protected]
765 S:      Maintained
766 F:      drivers/gpio/gpio-altera.c
767
768 ALTERA SYSTEM MANAGER DRIVER
769 M:      Thor Thayer <[email protected]>
770 S:      Maintained
771 F:      drivers/mfd/altera-sysmgr.c
772 F:      include/linux/mfd/altera-sysmgr.h
773
774 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
775 M:      Thor Thayer <[email protected]>
776 S:      Maintained
777 F:      drivers/gpio/gpio-altera-a10sr.c
778 F:      drivers/mfd/altera-a10sr.c
779 F:      drivers/reset/reset-a10sr.c
780 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
781 F:      include/linux/mfd/altera-a10sr.h
782
783 ALTERA TRIPLE SPEED ETHERNET DRIVER
784 M:      Thor Thayer <[email protected]>
785 L:      [email protected]
786 S:      Maintained
787 F:      drivers/net/ethernet/altera/
788
789 ALTERA UART/JTAG UART SERIAL DRIVERS
790 M:      Tobias Klauser <[email protected]>
791 L:      [email protected]
792 S:      Maintained
793 F:      drivers/tty/serial/altera_jtaguart.c
794 F:      drivers/tty/serial/altera_uart.c
795 F:      include/linux/altera_jtaguart.h
796 F:      include/linux/altera_uart.h
797
798 AMAZON ANNAPURNA LABS FIC DRIVER
799 M:      Talel Shenhar <[email protected]>
800 S:      Maintained
801 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
802 F:      drivers/irqchip/irq-al-fic.c
803
804 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
805 M:      Talel Shenhar <[email protected]>
806 S:      Maintained
807 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
808 F:      drivers/thermal/thermal_mmio.c
809
810 AMAZON ETHERNET DRIVERS
811 M:      Netanel Belgazal <[email protected]>
812 M:      Arthur Kiyanovski <[email protected]>
813 R:      Guy Tzalik <[email protected]>
814 R:      Saeed Bishara <[email protected]>
815 R:      Zorik Machulsky <[email protected]>
816 L:      [email protected]
817 S:      Supported
818 F:      Documentation/networking/device_drivers/amazon/ena.txt
819 F:      drivers/net/ethernet/amazon/
820
821 AMAZON RDMA EFA DRIVER
822 M:      Gal Pressman <[email protected]>
823 R:      Yossi Leybovich <[email protected]>
824 L:      [email protected]
825 S:      Supported
826 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
827 F:      drivers/infiniband/hw/efa/
828 F:      include/uapi/rdma/efa-abi.h
829
830 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
831 M:      Tom Lendacky <[email protected]>
832 L:      [email protected]
833 S:      Supported
834 F:      drivers/crypto/ccp/
835 F:      include/linux/ccp.h
836
837 AMD DISPLAY CORE
838 M:      Harry Wentland <[email protected]>
839 M:      Leo Li <[email protected]>
840 L:      [email protected]
841 S:      Supported
842 T:      git git://people.freedesktop.org/~agd5f/linux
843 F:      drivers/gpu/drm/amd/display/
844
845 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
846 M:      Huang Rui <[email protected]>
847 L:      [email protected]
848 S:      Supported
849 F:      Documentation/hwmon/fam15h_power.rst
850 F:      drivers/hwmon/fam15h_power.c
851
852 AMD FCH GPIO DRIVER
853 M:      Enrico Weigelt, metux IT consult <[email protected]>
854 L:      [email protected]
855 S:      Maintained
856 F:      drivers/gpio/gpio-amd-fch.c
857 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
858
859 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
860 L:      [email protected] (moderated for non-subscribers)
861 S:      Orphan
862 F:      drivers/usb/gadget/udc/amd5536udc.*
863
864 AMD GEODE PROCESSOR/CHIPSET SUPPORT
865 M:      Andres Salomon <[email protected]>
866 L:      [email protected] (moderated for non-subscribers)
867 S:      Supported
868 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
869 F:      arch/x86/include/asm/geode.h
870 F:      drivers/char/hw_random/geode-rng.c
871 F:      drivers/crypto/geode*
872 F:      drivers/video/fbdev/geode/
873
874 AMD IOMMU (AMD-VI)
875 M:      Joerg Roedel <[email protected]>
876 L:      [email protected]
877 S:      Maintained
878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
879 F:      drivers/iommu/amd_iommu*.[ch]
880 F:      include/linux/amd-iommu.h
881
882 AMD KFD
883 M:      Felix Kuehling <[email protected]>
884 L:      [email protected]
885 S:      Supported
886 T:      git git://people.freedesktop.org/~agd5f/linux
887 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
888 F:      drivers/gpu/drm/amd/amdkfd/
889 F:      drivers/gpu/drm/amd/include/cik_structs.h
890 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
891 F:      drivers/gpu/drm/amd/include/v9_structs.h
892 F:      drivers/gpu/drm/amd/include/vi_structs.h
893 F:      include/uapi/linux/kfd_ioctl.h
894
895 AMD MP2 I2C DRIVER
896 M:      Elie Morisse <[email protected]>
897 M:      Nehal Shah <[email protected]>
898 M:      Shyam Sundar S K <[email protected]>
899 L:      [email protected]
900 S:      Maintained
901 F:      drivers/i2c/busses/i2c-amd-mp2*
902
903 AMD POWERPLAY
904 M:      Evan Quan <[email protected]>
905 L:      [email protected]
906 S:      Supported
907 T:      git git://people.freedesktop.org/~agd5f/linux
908 F:      drivers/gpu/drm/amd/powerplay/
909
910 AMD SEATTLE DEVICE TREE SUPPORT
911 M:      Brijesh Singh <[email protected]>
912 M:      Suravee Suthikulpanit <[email protected]>
913 M:      Tom Lendacky <[email protected]>
914 S:      Supported
915 F:      arch/arm64/boot/dts/amd/
916
917 AMD XGBE DRIVER
918 M:      Tom Lendacky <[email protected]>
919 L:      [email protected]
920 S:      Supported
921 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
922 F:      drivers/net/ethernet/amd/xgbe/
923
924 ANALOG DEVICES INC AD5686 DRIVER
925 M:      Stefan Popa <[email protected]>
926 L:      [email protected]
927 S:      Supported
928 W:      http://ez.analog.com/community/linux-device-drivers
929 F:      drivers/iio/dac/ad5686*
930 F:      drivers/iio/dac/ad5696*
931
932 ANALOG DEVICES INC AD5758 DRIVER
933 M:      Stefan Popa <[email protected]>
934 L:      [email protected]
935 S:      Supported
936 W:      http://ez.analog.com/community/linux-device-drivers
937 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
938 F:      drivers/iio/dac/ad5758.c
939
940 ANALOG DEVICES INC AD7091R5 DRIVER
941 M:      Beniamin Bia <[email protected]>
942 L:      [email protected]
943 S:      Supported
944 W:      http://ez.analog.com/community/linux-device-drivers
945 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
946 F:      drivers/iio/adc/ad7091r5.c
947
948 ANALOG DEVICES INC AD7124 DRIVER
949 M:      Stefan Popa <[email protected]>
950 L:      [email protected]
951 S:      Supported
952 W:      http://ez.analog.com/community/linux-device-drivers
953 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
954 F:      drivers/iio/adc/ad7124.c
955
956 ANALOG DEVICES INC AD7192 DRIVER
957 M:      Alexandru Tachici <[email protected]>
958 L:      [email protected]
959 S:      Supported
960 W:      http://ez.analog.com/community/linux-device-drivers
961 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
962 F:      drivers/iio/adc/ad7192.c
963
964 ANALOG DEVICES INC AD7292 DRIVER
965 M:      Marcelo Schmitt <[email protected]>
966 L:      [email protected]
967 S:      Supported
968 W:      http://ez.analog.com/community/linux-device-drivers
969 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
970 F:      drivers/iio/adc/ad7292.c
971
972 ANALOG DEVICES INC AD7606 DRIVER
973 M:      Stefan Popa <[email protected]>
974 M:      Beniamin Bia <[email protected]>
975 L:      [email protected]
976 S:      Supported
977 W:      http://ez.analog.com/community/linux-device-drivers
978 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
979 F:      drivers/iio/adc/ad7606.c
980
981 ANALOG DEVICES INC AD7768-1 DRIVER
982 M:      Stefan Popa <[email protected]>
983 L:      [email protected]
984 S:      Supported
985 W:      http://ez.analog.com/community/linux-device-drivers
986 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
987 F:      drivers/iio/adc/ad7768-1.c
988
989 ANALOG DEVICES INC AD7780 DRIVER
990 M:      Michael Hennerich <[email protected]>
991 M:      Renato Lui Geh <[email protected]>
992 L:      [email protected]
993 S:      Supported
994 W:      http://ez.analog.com/community/linux-device-drivers
995 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
996 F:      drivers/iio/adc/ad7780.c
997
998 ANALOG DEVICES INC AD9389B DRIVER
999 M:      Hans Verkuil <[email protected]>
1000 L:      [email protected]
1001 S:      Maintained
1002 F:      drivers/media/i2c/ad9389b*
1003
1004 ANALOG DEVICES INC ADGS1408 DRIVER
1005 M:      Mircea Caprioru <[email protected]>
1006 S:      Supported
1007 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1008 F:      drivers/mux/adgs1408.c
1009
1010 ANALOG DEVICES INC ADIN DRIVER
1011 M:      Alexandru Ardelean <[email protected]>
1012 L:      [email protected]
1013 S:      Supported
1014 W:      http://ez.analog.com/community/linux-device-drivers
1015 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1016 F:      drivers/net/phy/adin.c
1017
1018 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1019 M:      Alexandru Ardelean <[email protected]>
1020 L:      [email protected]
1021 S:      Supported
1022 F:      drivers/iio/imu/adis.c
1023 F:      include/linux/iio/imu/adis.h
1024
1025 ANALOG DEVICES INC ADIS16460 DRIVER
1026 M:      Dragos Bogdan <[email protected]>
1027 L:      [email protected]
1028 S:      Supported
1029 W:      http://ez.analog.com/community/linux-device-drivers
1030 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1031 F:      drivers/iio/imu/adis16460.c
1032
1033 ANALOG DEVICES INC ADM1177 DRIVER
1034 M:      Beniamin Bia <[email protected]>
1035 M:      Michael Hennerich <[email protected]>
1036 L:      [email protected]
1037 S:      Supported
1038 W:      http://ez.analog.com/community/linux-device-drivers
1039 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1040 F:      drivers/hwmon/adm1177.c
1041
1042 ANALOG DEVICES INC ADP5061 DRIVER
1043 M:      Stefan Popa <[email protected]>
1044 L:      [email protected]
1045 S:      Supported
1046 W:      http://ez.analog.com/community/linux-device-drivers
1047 F:      drivers/power/supply/adp5061.c
1048
1049 ANALOG DEVICES INC ADV7180 DRIVER
1050 M:      Lars-Peter Clausen <[email protected]>
1051 L:      [email protected]
1052 S:      Supported
1053 W:      http://ez.analog.com/community/linux-device-drivers
1054 F:      drivers/media/i2c/adv7180.c
1055
1056 ANALOG DEVICES INC ADV748X DRIVER
1057 M:      Kieran Bingham <[email protected]>
1058 L:      [email protected]
1059 S:      Maintained
1060 F:      drivers/media/i2c/adv748x/*
1061
1062 ANALOG DEVICES INC ADV7511 DRIVER
1063 M:      Hans Verkuil <[email protected]>
1064 L:      [email protected]
1065 S:      Maintained
1066 F:      drivers/media/i2c/adv7511*
1067
1068 ANALOG DEVICES INC ADV7604 DRIVER
1069 M:      Hans Verkuil <[email protected]>
1070 L:      [email protected]
1071 S:      Maintained
1072 F:      drivers/media/i2c/adv7604*
1073
1074 ANALOG DEVICES INC ADV7842 DRIVER
1075 M:      Hans Verkuil <[email protected]>
1076 L:      [email protected]
1077 S:      Maintained
1078 F:      drivers/media/i2c/adv7842*
1079
1080 ANALOG DEVICES INC ASOC CODEC DRIVERS
1081 M:      Lars-Peter Clausen <[email protected]>
1082 M:      Nuno Sá <[email protected]>
1083 L:      [email protected] (moderated for non-subscribers)
1084 S:      Supported
1085 W:      http://wiki.analog.com/
1086 W:      http://ez.analog.com/community/linux-device-drivers
1087 F:      sound/soc/codecs/ad1*
1088 F:      sound/soc/codecs/ad7*
1089 F:      sound/soc/codecs/adau*
1090 F:      sound/soc/codecs/adav*
1091 F:      sound/soc/codecs/sigmadsp.*
1092 F:      sound/soc/codecs/ssm*
1093
1094 ANALOG DEVICES INC DMA DRIVERS
1095 M:      Lars-Peter Clausen <[email protected]>
1096 S:      Supported
1097 W:      http://ez.analog.com/community/linux-device-drivers
1098 F:      drivers/dma/dma-axi-dmac.c
1099
1100 ANALOG DEVICES INC HMC425A DRIVER
1101 M:      Beniamin Bia <[email protected]>
1102 M:      Michael Hennerich <[email protected]>
1103 L:      [email protected]
1104 S:      Supported
1105 W:      http://ez.analog.com/community/linux-device-drivers
1106 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1107 F:      drivers/iio/amplifiers/hmc425a.c
1108
1109 ANALOG DEVICES INC IIO DRIVERS
1110 M:      Lars-Peter Clausen <[email protected]>
1111 M:      Michael Hennerich <[email protected]>
1112 M:      Stefan Popa <[email protected]>
1113 S:      Supported
1114 W:      http://wiki.analog.com/
1115 W:      http://ez.analog.com/community/linux-device-drivers
1116 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1117 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1118 F:      drivers/iio/*/ad*
1119 F:      drivers/iio/adc/ltc249*
1120 F:      drivers/staging/iio/*/ad*
1121 X:      drivers/iio/*/adjd*
1122
1123 ANALOGBITS PLL LIBRARIES
1124 M:      Paul Walmsley <[email protected]>
1125 S:      Supported
1126 F:      drivers/clk/analogbits/*
1127 F:      include/linux/clk/analogbits*
1128
1129 ANDES ARCHITECTURE
1130 M:      Nick Hu <[email protected]>
1131 M:      Greentime Hu <[email protected]>
1132 M:      Vincent Chen <[email protected]>
1133 S:      Supported
1134 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1135 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1136 F:      Documentation/devicetree/bindings/nds32/
1137 F:      arch/nds32/
1138 N:      nds32
1139 K:      nds32
1140
1141 ANDROID CONFIG FRAGMENTS
1142 M:      Rob Herring <[email protected]>
1143 S:      Supported
1144 F:      kernel/configs/android*
1145
1146 ANDROID DRIVERS
1147 M:      Greg Kroah-Hartman <[email protected]>
1148 M:      Arve Hjønnevåg <[email protected]>
1149 M:      Todd Kjos <[email protected]>
1150 M:      Martijn Coenen <[email protected]>
1151 M:      Joel Fernandes <[email protected]>
1152 M:      Christian Brauner <[email protected]>
1153 L:      [email protected]
1154 S:      Supported
1155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1156 F:      drivers/android/
1157 F:      drivers/staging/android/
1158
1159 ANDROID GOLDFISH PIC DRIVER
1160 M:      Miodrag Dinic <[email protected]>
1161 S:      Supported
1162 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1163 F:      drivers/irqchip/irq-goldfish-pic.c
1164
1165 ANDROID GOLDFISH RTC DRIVER
1166 M:      Miodrag Dinic <[email protected]>
1167 S:      Supported
1168 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1169 F:      drivers/rtc/rtc-goldfish.c
1170
1171 ANDROID ION DRIVER
1172 M:      Laura Abbott <[email protected]>
1173 M:      Sumit Semwal <[email protected]>
1174 L:      [email protected]
1175 L:      [email protected]
1176 L:      [email protected] (moderated for non-subscribers)
1177 S:      Supported
1178 F:      drivers/staging/android/ion
1179 F:      drivers/staging/android/uapi/ion.h
1180
1181 AOA (Apple Onboard Audio) ALSA DRIVER
1182 M:      Johannes Berg <[email protected]>
1183 L:      [email protected]
1184 L:      [email protected] (moderated for non-subscribers)
1185 S:      Maintained
1186 F:      sound/aoa/
1187
1188 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1189 M:      William Breathitt Gray <[email protected]>
1190 L:      [email protected]
1191 S:      Maintained
1192 F:      drivers/iio/adc/stx104.c
1193
1194 APM DRIVER
1195 M:      Jiri Kosina <[email protected]>
1196 S:      Odd fixes
1197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1198 F:      arch/x86/kernel/apm_32.c
1199 F:      drivers/char/apm-emulation.c
1200 F:      include/linux/apm_bios.h
1201 F:      include/uapi/linux/apm_bios.h
1202
1203 APPARMOR SECURITY MODULE
1204 M:      John Johansen <[email protected]>
1205 L:      [email protected] (subscribers-only, general discussion)
1206 S:      Supported
1207 W:      wiki.apparmor.net
1208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1209 F:      Documentation/admin-guide/LSM/apparmor.rst
1210 F:      security/apparmor/
1211
1212 APPLE BCM5974 MULTITOUCH DRIVER
1213 M:      Henrik Rydberg <[email protected]>
1214 L:      [email protected]
1215 S:      Odd fixes
1216 F:      drivers/input/mouse/bcm5974.c
1217
1218 APPLE SMC DRIVER
1219 M:      Henrik Rydberg <[email protected]>
1220 L:      [email protected]
1221 S:      Odd fixes
1222 F:      drivers/hwmon/applesmc.c
1223
1224 APPLETALK NETWORK LAYER
1225 L:      [email protected]
1226 S:      Odd fixes
1227 F:      drivers/net/appletalk/
1228 F:      include/linux/atalk.h
1229 F:      include/uapi/linux/atalk.h
1230 F:      net/appletalk/
1231
1232 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1233 M:      Khuong Dinh <[email protected]>
1234 S:      Supported
1235 F:      arch/arm64/boot/dts/apm/
1236
1237 APPLIED MICRO (APM) X-GENE SOC EDAC
1238 M:      Khuong Dinh <[email protected]>
1239 S:      Supported
1240 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1241 F:      drivers/edac/xgene_edac.c
1242
1243 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1244 M:      Iyappan Subramanian <[email protected]>
1245 M:      Keyur Chudgar <[email protected]>
1246 S:      Supported
1247 F:      drivers/net/ethernet/apm/xgene-v2/
1248
1249 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1250 M:      Iyappan Subramanian <[email protected]>
1251 M:      Keyur Chudgar <[email protected]>
1252 M:      Quan Nguyen <[email protected]>
1253 S:      Supported
1254 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1255 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1256 F:      drivers/net/ethernet/apm/xgene/
1257 F:      drivers/net/phy/mdio-xgene.c
1258
1259 APPLIED MICRO (APM) X-GENE SOC PMU
1260 M:      Khuong Dinh <[email protected]>
1261 S:      Supported
1262 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1263 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1264 F:      drivers/perf/xgene_pmu.c
1265
1266 APTINA CAMERA SENSOR PLL
1267 M:      Laurent Pinchart <[email protected]>
1268 L:      [email protected]
1269 S:      Maintained
1270 F:      drivers/media/i2c/aptina-pll.*
1271
1272 AQUANTIA ETHERNET DRIVER (atlantic)
1273 M:      Igor Russkikh <[email protected]>
1274 L:      [email protected]
1275 S:      Supported
1276 W:      https://www.marvell.com/
1277 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1278 F:      Documentation/networking/device_drivers/aquantia/atlantic.txt
1279 F:      drivers/net/ethernet/aquantia/atlantic/
1280
1281 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1282 M:      Egor Pomozov <[email protected]>
1283 L:      [email protected]
1284 S:      Supported
1285 W:      http://www.aquantia.com
1286 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1287
1288 ARC FRAMEBUFFER DRIVER
1289 M:      Jaya Kumar <[email protected]>
1290 S:      Maintained
1291 F:      drivers/video/fbdev/arcfb.c
1292 F:      drivers/video/fbdev/core/fb_defio.c
1293
1294 ARC PGU DRM DRIVER
1295 M:      Alexey Brodkin <[email protected]>
1296 S:      Supported
1297 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1298 F:      drivers/gpu/drm/arc/
1299
1300 ARCNET NETWORK LAYER
1301 M:      Michael Grzeschik <[email protected]>
1302 L:      [email protected]
1303 S:      Maintained
1304 F:      drivers/net/arcnet/
1305 F:      include/uapi/linux/if_arcnet.h
1306
1307 ARM ARCHITECTED TIMER DRIVER
1308 M:      Mark Rutland <[email protected]>
1309 M:      Marc Zyngier <[email protected]>
1310 L:      [email protected] (moderated for non-subscribers)
1311 S:      Maintained
1312 F:      arch/arm/include/asm/arch_timer.h
1313 F:      arch/arm64/include/asm/arch_timer.h
1314 F:      drivers/clocksource/arm_arch_timer.c
1315
1316 ARM HDLCD DRM DRIVER
1317 M:      Liviu Dudau <[email protected]>
1318 S:      Supported
1319 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1320 F:      drivers/gpu/drm/arm/hdlcd_*
1321
1322 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1323 M:      Linus Walleij <[email protected]>
1324 L:      [email protected] (moderated for non-subscribers)
1325 S:      Maintained
1326 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1327 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1328 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1329 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1330 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1331 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1332 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1333 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1334 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1335 F:      arch/arm/boot/dts/arm-realview-*
1336 F:      arch/arm/boot/dts/integrator*
1337 F:      arch/arm/boot/dts/versatile*
1338 F:      arch/arm/mach-integrator/
1339 F:      arch/arm/mach-realview/
1340 F:      arch/arm/mach-versatile/
1341 F:      arch/arm/plat-versatile/
1342 F:      drivers/clk/versatile/
1343 F:      drivers/i2c/busses/i2c-versatile.c
1344 F:      drivers/irqchip/irq-versatile-fpga.c
1345 F:      drivers/mtd/maps/physmap_of_versatile.c
1346 F:      drivers/power/reset/arm-versatile-reboot.c
1347 F:      drivers/soc/versatile/
1348
1349 ARM KOMEDA DRM-KMS DRIVER
1350 M:      James (Qian) Wang <[email protected]>
1351 M:      Liviu Dudau <[email protected]>
1352 M:      Mihail Atanassov <[email protected]>
1353 L:      Mali DP Maintainers <[email protected]>
1354 S:      Supported
1355 T:      git git://anongit.freedesktop.org/drm/drm-misc
1356 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1357 F:      Documentation/gpu/komeda-kms.rst
1358 F:      drivers/gpu/drm/arm/display/include/
1359 F:      drivers/gpu/drm/arm/display/komeda/
1360
1361 ARM MALI PANFROST DRM DRIVER
1362 M:      Rob Herring <[email protected]>
1363 M:      Tomeu Vizoso <[email protected]>
1364 R:      Steven Price <[email protected]>
1365 R:      Alyssa Rosenzweig <[email protected]>
1366 L:      [email protected]
1367 S:      Supported
1368 T:      git git://anongit.freedesktop.org/drm/drm-misc
1369 F:      drivers/gpu/drm/panfrost/
1370 F:      include/uapi/drm/panfrost_drm.h
1371
1372 ARM MALI-DP DRM DRIVER
1373 M:      Liviu Dudau <[email protected]>
1374 M:      Brian Starkey <[email protected]>
1375 L:      Mali DP Maintainers <[email protected]>
1376 S:      Supported
1377 T:      git git://anongit.freedesktop.org/drm/drm-misc
1378 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1379 F:      Documentation/gpu/afbc.rst
1380 F:      drivers/gpu/drm/arm/
1381
1382 ARM MFM AND FLOPPY DRIVERS
1383 M:      Ian Molton <[email protected]>
1384 S:      Maintained
1385 F:      arch/arm/include/asm/floppy.h
1386 F:      arch/arm/mach-rpc/floppydma.S
1387
1388 ARM PMU PROFILING AND DEBUGGING
1389 M:      Will Deacon <[email protected]>
1390 M:      Mark Rutland <[email protected]>
1391 L:      [email protected] (moderated for non-subscribers)
1392 S:      Maintained
1393 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1394 F:      Documentation/devicetree/bindings/perf/
1395 F:      arch/arm*/include/asm/hw_breakpoint.h
1396 F:      arch/arm*/include/asm/perf_event.h
1397 F:      arch/arm*/kernel/hw_breakpoint.c
1398 F:      arch/arm*/kernel/perf_*
1399 F:      arch/arm/oprofile/common.c
1400 F:      drivers/perf/*
1401 F:      include/linux/perf/arm_pmu.h
1402
1403 ARM PORT
1404 M:      Russell King <[email protected]>
1405 L:      [email protected] (moderated for non-subscribers)
1406 S:      Odd Fixes
1407 W:      http://www.armlinux.org.uk/
1408 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1409 F:      arch/arm/
1410 X:      arch/arm/boot/dts/
1411
1412 ARM PRIMECELL AACI PL041 DRIVER
1413 M:      Russell King <[email protected]>
1414 S:      Odd Fixes
1415 F:      sound/arm/aaci.*
1416
1417 ARM PRIMECELL BUS SUPPORT
1418 M:      Russell King <[email protected]>
1419 S:      Odd Fixes
1420 F:      drivers/amba/
1421 F:      include/linux/amba/bus.h
1422
1423 ARM PRIMECELL CLCD PL110 DRIVER
1424 M:      Russell King <[email protected]>
1425 S:      Odd Fixes
1426 F:      drivers/video/fbdev/amba-clcd.*
1427
1428 ARM PRIMECELL KMI PL050 DRIVER
1429 M:      Russell King <[email protected]>
1430 S:      Odd Fixes
1431 F:      drivers/input/serio/ambakmi.*
1432 F:      include/linux/amba/kmi.h
1433
1434 ARM PRIMECELL MMCI PL180/1 DRIVER
1435 M:      Russell King <[email protected]>
1436 S:      Odd Fixes
1437 F:      drivers/mmc/host/mmci.*
1438 F:      include/linux/amba/mmci.h
1439
1440 ARM PRIMECELL SSP PL022 SPI DRIVER
1441 M:      Linus Walleij <[email protected]>
1442 L:      [email protected] (moderated for non-subscribers)
1443 S:      Maintained
1444 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1445 F:      drivers/spi/spi-pl022.c
1446
1447 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1448 M:      Russell King <[email protected]>
1449 S:      Odd Fixes
1450 F:      drivers/tty/serial/amba-pl01*.c
1451 F:      include/linux/amba/serial.h
1452
1453 ARM PRIMECELL VIC PL190/PL192 DRIVER
1454 M:      Linus Walleij <[email protected]>
1455 L:      [email protected] (moderated for non-subscribers)
1456 S:      Maintained
1457 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1458 F:      drivers/irqchip/irq-vic.c
1459
1460 ARM SMMU DRIVERS
1461 M:      Will Deacon <[email protected]>
1462 R:      Robin Murphy <[email protected]>
1463 L:      [email protected] (moderated for non-subscribers)
1464 S:      Maintained
1465 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1466 F:      drivers/iommu/arm-smmu*
1467 F:      drivers/iommu/io-pgtable-arm-v7s.c
1468 F:      drivers/iommu/io-pgtable-arm.c
1469
1470 ARM SUB-ARCHITECTURES
1471 L:      [email protected] (moderated for non-subscribers)
1472 S:      Maintained
1473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1474 F:      arch/arm/mach-*/
1475 F:      arch/arm/plat-*/
1476
1477 ARM/ACTIONS SEMI ARCHITECTURE
1478 M:      Andreas Färber <[email protected]>
1479 M:      Manivannan Sadhasivam <[email protected]>
1480 L:      [email protected] (moderated for non-subscribers)
1481 S:      Maintained
1482 F:      Documentation/devicetree/bindings/arm/actions.yaml
1483 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1484 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1485 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1486 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1487 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1488 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1489 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1490 F:      arch/arm/boot/dts/owl-*
1491 F:      arch/arm/mach-actions/
1492 F:      arch/arm64/boot/dts/actions/
1493 F:      drivers/clk/actions/
1494 F:      drivers/clocksource/timer-owl*
1495 F:      drivers/dma/owl-dma.c
1496 F:      drivers/i2c/busses/i2c-owl.c
1497 F:      drivers/mmc/host/owl-mmc.c
1498 F:      drivers/pinctrl/actions/*
1499 F:      drivers/soc/actions/
1500 F:      include/dt-bindings/power/owl-*
1501 F:      include/linux/soc/actions/
1502 N:      owl
1503
1504 ARM/ADS SPHERE MACHINE SUPPORT
1505 M:      Lennert Buytenhek <[email protected]>
1506 L:      [email protected] (moderated for non-subscribers)
1507 S:      Maintained
1508
1509 ARM/AFEB9260 MACHINE SUPPORT
1510 M:      Sergey Lapin <[email protected]>
1511 L:      [email protected] (moderated for non-subscribers)
1512 S:      Maintained
1513
1514 ARM/AJECO 1ARM MACHINE SUPPORT
1515 M:      Lennert Buytenhek <[email protected]>
1516 L:      [email protected] (moderated for non-subscribers)
1517 S:      Maintained
1518
1519 ARM/Allwinner SoC Clock Support
1520 M:      Emilio López <[email protected]>
1521 S:      Maintained
1522 F:      drivers/clk/sunxi/
1523
1524 ARM/Allwinner sunXi SoC support
1525 M:      Maxime Ripard <[email protected]>
1526 M:      Chen-Yu Tsai <[email protected]>
1527 L:      [email protected] (moderated for non-subscribers)
1528 S:      Maintained
1529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1530 F:      arch/arm/mach-sunxi/
1531 F:      arch/arm64/boot/dts/allwinner/
1532 F:      drivers/clk/sunxi-ng/
1533 F:      drivers/pinctrl/sunxi/
1534 F:      drivers/soc/sunxi/
1535 N:      sun[x456789]i
1536 N:      sun50i
1537
1538 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1539 M:      Neil Armstrong <[email protected]>
1540 M:      Jerome Brunet <[email protected]>
1541 L:      [email protected]
1542 S:      Maintained
1543 F:      Documentation/devicetree/bindings/clock/amlogic*
1544 F:      drivers/clk/meson/
1545 F:      include/dt-bindings/clock/gxbb*
1546 F:      include/dt-bindings/clock/meson*
1547
1548 ARM/Amlogic Meson SoC Crypto Drivers
1549 M:      Corentin Labbe <[email protected]>
1550 L:      [email protected]
1551 L:      [email protected]
1552 S:      Maintained
1553 F:      Documentation/devicetree/bindings/crypto/amlogic*
1554 F:      drivers/crypto/amlogic/
1555
1556 ARM/Amlogic Meson SoC Sound Drivers
1557 M:      Jerome Brunet <[email protected]>
1558 L:      [email protected] (moderated for non-subscribers)
1559 S:      Maintained
1560 F:      Documentation/devicetree/bindings/sound/amlogic*
1561 F:      sound/soc/meson/
1562
1563 ARM/Amlogic Meson SoC support
1564 M:      Kevin Hilman <[email protected]>
1565 L:      [email protected] (moderated for non-subscribers)
1566 L:      [email protected]
1567 S:      Maintained
1568 W:      http://linux-meson.com/
1569 F:      arch/arm/boot/dts/meson*
1570 F:      arch/arm/mach-meson/
1571 F:      arch/arm64/boot/dts/amlogic/
1572 F:      drivers/mmc/host/meson*
1573 F:      drivers/pinctrl/meson/
1574 F:      drivers/rtc/rtc-meson*
1575 F:      drivers/soc/amlogic/
1576 N:      meson
1577
1578 ARM/Annapurna Labs ALPINE ARCHITECTURE
1579 M:      Tsahee Zidenberg <[email protected]>
1580 M:      Antoine Tenart <[email protected]>
1581 L:      [email protected] (moderated for non-subscribers)
1582 S:      Maintained
1583 F:      arch/arm/boot/dts/alpine*
1584 F:      arch/arm/mach-alpine/
1585 F:      arch/arm64/boot/dts/al/
1586 F:      drivers/*/*alpine*
1587
1588 ARM/ARTPEC MACHINE SUPPORT
1589 M:      Jesper Nilsson <[email protected]>
1590 M:      Lars Persson <[email protected]>
1591 L:      [email protected]
1592 S:      Maintained
1593 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1594 F:      arch/arm/boot/dts/artpec6*
1595 F:      arch/arm/mach-artpec
1596 F:      drivers/clk/axis
1597 F:      drivers/crypto/axis
1598 F:      drivers/mmc/host/usdhi6rol0.c
1599 F:      drivers/pinctrl/pinctrl-artpec*
1600
1601 ARM/ASPEED I2C DRIVER
1602 M:      Brendan Higgins <[email protected]>
1603 R:      Benjamin Herrenschmidt <[email protected]>
1604 R:      Joel Stanley <[email protected]>
1605 L:      [email protected]
1606 L:      [email protected] (moderated for non-subscribers)
1607 S:      Maintained
1608 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1609 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1610 F:      drivers/i2c/busses/i2c-aspeed.c
1611 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1612
1613 ARM/ASPEED MACHINE SUPPORT
1614 M:      Joel Stanley <[email protected]>
1615 R:      Andrew Jeffery <[email protected]>
1616 L:      [email protected] (moderated for non-subscribers)
1617 L:      [email protected] (moderated for non-subscribers)
1618 S:      Supported
1619 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1621 F:      arch/arm/boot/dts/aspeed-*
1622 F:      arch/arm/mach-aspeed/
1623 N:      aspeed
1624
1625 ARM/BITMAIN ARCHITECTURE
1626 M:      Manivannan Sadhasivam <[email protected]>
1627 L:      [email protected] (moderated for non-subscribers)
1628 S:      Maintained
1629 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1630 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1631 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1632 F:      arch/arm64/boot/dts/bitmain/
1633 F:      drivers/clk/clk-bm1880.c
1634 F:      drivers/pinctrl/pinctrl-bm1880.c
1635
1636 ARM/CALXEDA HIGHBANK ARCHITECTURE
1637 M:      Andre Przywara <[email protected]>
1638 L:      [email protected] (moderated for non-subscribers)
1639 S:      Maintained
1640 F:      arch/arm/boot/dts/ecx-*.dts*
1641 F:      arch/arm/boot/dts/highbank.dts
1642 F:      arch/arm/mach-highbank/
1643
1644 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1645 M:      Krzysztof Halasa <[email protected]>
1646 S:      Maintained
1647 F:      arch/arm/mach-cns3xxx/
1648
1649 ARM/CAVIUM THUNDER NETWORK DRIVER
1650 M:      Sunil Goutham <[email protected]>
1651 M:      Robert Richter <[email protected]>
1652 L:      [email protected] (moderated for non-subscribers)
1653 S:      Supported
1654 F:      drivers/net/ethernet/cavium/thunder/
1655
1656 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1657 M:      Lukasz Majewski <[email protected]>
1658 L:      [email protected] (moderated for non-subscribers)
1659 S:      Maintained
1660 F:      arch/arm/mach-ep93xx/ts72xx.c
1661
1662 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1663 M:      Alexander Shiyan <[email protected]>
1664 L:      [email protected] (moderated for non-subscribers)
1665 S:      Odd Fixes
1666 N:      clps711x
1667
1668 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1669 M:      Lennert Buytenhek <[email protected]>
1670 L:      [email protected] (moderated for non-subscribers)
1671 S:      Maintained
1672
1673 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1674 M:      Hartley Sweeten <[email protected]>
1675 M:      Alexander Sverdlin <[email protected]>
1676 L:      [email protected] (moderated for non-subscribers)
1677 S:      Maintained
1678 F:      arch/arm/mach-ep93xx/
1679 F:      arch/arm/mach-ep93xx/include/mach/
1680
1681 ARM/CLKDEV SUPPORT
1682 M:      Russell King <[email protected]>
1683 L:      [email protected] (moderated for non-subscribers)
1684 S:      Maintained
1685 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1686 F:      drivers/clk/clkdev.c
1687
1688 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1689 M:      Mike Rapoport <[email protected]>
1690 L:      [email protected] (moderated for non-subscribers)
1691 S:      Maintained
1692
1693 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1694 M:      Baruch Siach <[email protected]>
1695 L:      [email protected] (moderated for non-subscribers)
1696 S:      Maintained
1697 F:      arch/arm/boot/dts/cx92755*
1698 N:      digicolor
1699
1700 ARM/CONTEC MICRO9 MACHINE SUPPORT
1701 M:      Hubert Feurstein <[email protected]>
1702 S:      Maintained
1703 F:      arch/arm/mach-ep93xx/micro9.c
1704
1705 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1706 M:      Mathieu Poirier <[email protected]>
1707 R:      Suzuki K Poulose <[email protected]>
1708 R:      Mike Leach <[email protected]>
1709 L:      [email protected] (moderated for non-subscribers)
1710 S:      Maintained
1711 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1712 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1713 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1714 F:      Documentation/devicetree/bindings/arm/coresight.txt
1715 F:      Documentation/trace/coresight/*
1716 F:      drivers/hwtracing/coresight/*
1717 F:      include/dt-bindings/arm/coresight-cti-dt.h
1718 F:      tools/perf/arch/arm/util/auxtrace.c
1719 F:      tools/perf/arch/arm/util/cs-etm.c
1720 F:      tools/perf/arch/arm/util/cs-etm.h
1721 F:      tools/perf/arch/arm/util/pmu.c
1722 F:      tools/perf/util/cs-etm-decoder/*
1723 F:      tools/perf/util/cs-etm.*
1724
1725 ARM/CORGI MACHINE SUPPORT
1726 M:      Richard Purdie <[email protected]>
1727 S:      Maintained
1728
1729 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1730 M:      Hans Ulli Kroll <[email protected]>
1731 M:      Linus Walleij <[email protected]>
1732 L:      [email protected] (moderated for non-subscribers)
1733 S:      Maintained
1734 T:      git git://github.com/ulli-kroll/linux.git
1735 F:      Documentation/devicetree/bindings/arm/gemini.txt
1736 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1737 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1738 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1739 F:      arch/arm/mach-gemini/
1740 F:      drivers/net/ethernet/cortina/
1741 F:      drivers/pinctrl/pinctrl-gemini.c
1742 F:      drivers/rtc/rtc-ftrtc010.c
1743
1744 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1745 M:      Barry Song <[email protected]>
1746 L:      [email protected] (moderated for non-subscribers)
1747 S:      Maintained
1748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1749 F:      arch/arm/boot/dts/prima2*
1750 F:      arch/arm/mach-prima2/
1751 F:      drivers/clk/sirf/
1752 F:      drivers/clocksource/timer-atlas7.c
1753 F:      drivers/clocksource/timer-prima2.c
1754 X:      drivers/gnss
1755 N:      [^a-z]sirf
1756
1757 ARM/CZ.NIC TURRIS MOX SUPPORT
1758 M:      Marek Behun <[email protected]>
1759 S:      Maintained
1760 W:      http://mox.turris.cz
1761 F:      Documentation/ABI/testing/debugfs-moxtet
1762 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1763 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1764 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1765 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1766 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1767 F:      drivers/bus/moxtet.c
1768 F:      drivers/firmware/turris-mox-rwtm.c
1769 F:      drivers/gpio/gpio-moxtet.c
1770 F:      include/linux/moxtet.h
1771
1772 ARM/EBSA110 MACHINE SUPPORT
1773 M:      Russell King <[email protected]>
1774 L:      [email protected] (moderated for non-subscribers)
1775 S:      Maintained
1776 W:      http://www.armlinux.org.uk/
1777 F:      arch/arm/mach-ebsa110/
1778 F:      drivers/net/ethernet/amd/am79c961a.*
1779
1780 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1781 M:      Uwe Kleine-König <[email protected]>
1782 R:      Pengutronix Kernel Team <[email protected]>
1783 L:      [email protected] (moderated for non-subscribers)
1784 S:      Maintained
1785 N:      efm32
1786
1787 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1788 M:      Robert Jarzmik <[email protected]>
1789 L:      [email protected] (moderated for non-subscribers)
1790 S:      Maintained
1791 F:      arch/arm/mach-pxa/ezx.c
1792
1793 ARM/FARADAY FA526 PORT
1794 M:      Hans Ulli Kroll <[email protected]>
1795 L:      [email protected] (moderated for non-subscribers)
1796 S:      Maintained
1797 T:      git git://git.berlios.de/gemini-board
1798 F:      arch/arm/mm/*-fa*
1799
1800 ARM/FOOTBRIDGE ARCHITECTURE
1801 M:      Russell King <[email protected]>
1802 L:      [email protected] (moderated for non-subscribers)
1803 S:      Maintained
1804 W:      http://www.armlinux.org.uk/
1805 F:      arch/arm/include/asm/hardware/dec21285.h
1806 F:      arch/arm/mach-footbridge/
1807
1808 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1809 M:      Shawn Guo <[email protected]>
1810 M:      Sascha Hauer <[email protected]>
1811 R:      Pengutronix Kernel Team <[email protected]>
1812 R:      Fabio Estevam <[email protected]>
1813 R:      NXP Linux Team <[email protected]>
1814 L:      [email protected] (moderated for non-subscribers)
1815 S:      Maintained
1816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1817 X:      drivers/media/i2c/
1818 N:      imx
1819 N:      mxs
1820
1821 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1822 M:      Shawn Guo <[email protected]>
1823 M:      Li Yang <[email protected]>
1824 L:      [email protected] (moderated for non-subscribers)
1825 S:      Maintained
1826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1827 F:      arch/arm/boot/dts/ls1021a*
1828 F:      arch/arm64/boot/dts/freescale/fsl-*
1829 F:      arch/arm64/boot/dts/freescale/qoriq-*
1830
1831 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1832 M:      Shawn Guo <[email protected]>
1833 M:      Sascha Hauer <[email protected]>
1834 R:      Pengutronix Kernel Team <[email protected]>
1835 R:      Stefan Agner <[email protected]>
1836 L:      [email protected] (moderated for non-subscribers)
1837 S:      Maintained
1838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1839 F:      arch/arm/boot/dts/vf*
1840 F:      arch/arm/mach-imx/*vf610*
1841
1842 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1843 M:      Lennert Buytenhek <[email protected]>
1844 L:      [email protected] (moderated for non-subscribers)
1845 S:      Maintained
1846
1847 ARM/GUMSTIX MACHINE SUPPORT
1848 M:      Steve Sakoman <[email protected]>
1849 L:      [email protected] (moderated for non-subscribers)
1850 S:      Maintained
1851
1852 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1853 M:      Philipp Zabel <[email protected]>
1854 M:      Paul Parsons <[email protected]>
1855 L:      [email protected] (moderated for non-subscribers)
1856 S:      Maintained
1857 F:      arch/arm/mach-pxa/hx4700.c
1858 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1859 F:      sound/soc/pxa/hx4700.c
1860
1861 ARM/HISILICON SOC SUPPORT
1862 M:      Wei Xu <[email protected]>
1863 L:      [email protected] (moderated for non-subscribers)
1864 S:      Supported
1865 W:      http://www.hisilicon.com
1866 T:      git git://github.com/hisilicon/linux-hisi.git
1867 F:      arch/arm/boot/dts/hi3*
1868 F:      arch/arm/boot/dts/hip*
1869 F:      arch/arm/boot/dts/hisi*
1870 F:      arch/arm/mach-hisi/
1871 F:      arch/arm64/boot/dts/hisilicon/
1872
1873 ARM/HP JORNADA 7XX MACHINE SUPPORT
1874 M:      Kristoffer Ericson <[email protected]>
1875 S:      Maintained
1876 W:      www.jlime.com
1877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1878 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1879 F:      arch/arm/mach-sa1100/jornada720.c
1880
1881 ARM/IGEP MACHINE SUPPORT
1882 M:      Enric Balletbo i Serra <[email protected]>
1883 M:      Javier Martinez Canillas <[email protected]>
1884 L:      [email protected]
1885 L:      [email protected] (moderated for non-subscribers)
1886 S:      Maintained
1887 F:      arch/arm/boot/dts/omap3-igep*
1888
1889 ARM/INCOME PXA270 SUPPORT
1890 M:      Marek Vasut <[email protected]>
1891 L:      [email protected] (moderated for non-subscribers)
1892 S:      Maintained
1893 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1894
1895 ARM/INTEL IOP32X ARM ARCHITECTURE
1896 M:      Lennert Buytenhek <[email protected]>
1897 L:      [email protected] (moderated for non-subscribers)
1898 S:      Maintained
1899
1900 ARM/INTEL IQ81342EX MACHINE SUPPORT
1901 M:      Lennert Buytenhek <[email protected]>
1902 L:      [email protected] (moderated for non-subscribers)
1903 S:      Maintained
1904
1905 ARM/INTEL IXDP2850 MACHINE SUPPORT
1906 M:      Lennert Buytenhek <[email protected]>
1907 L:      [email protected] (moderated for non-subscribers)
1908 S:      Maintained
1909
1910 ARM/INTEL IXP4XX ARM ARCHITECTURE
1911 M:      Linus Walleij <[email protected]>
1912 M:      Imre Kaloz <[email protected]>
1913 M:      Krzysztof Halasa <[email protected]>
1914 L:      [email protected] (moderated for non-subscribers)
1915 S:      Maintained
1916 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1917 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1918 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1919 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1920 F:      arch/arm/mach-ixp4xx/
1921 F:      drivers/clocksource/timer-ixp4xx.c
1922 F:      drivers/gpio/gpio-ixp4xx.c
1923 F:      drivers/irqchip/irq-ixp4xx.c
1924 F:      include/linux/irqchip/irq-ixp4xx.h
1925 F:      include/linux/platform_data/timer-ixp4xx.h
1926
1927 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1928 M:      Jonathan Cameron <[email protected]>
1929 L:      [email protected] (moderated for non-subscribers)
1930 S:      Maintained
1931 F:      arch/arm/mach-pxa/stargate2.c
1932 F:      drivers/pcmcia/pxa2xx_stargate2.c
1933
1934 ARM/INTEL XSC3 (MANZANO) ARM CORE
1935 M:      Lennert Buytenhek <[email protected]>
1936 L:      [email protected] (moderated for non-subscribers)
1937 S:      Maintained
1938
1939 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1940 M:      Lennert Buytenhek <[email protected]>
1941 L:      [email protected] (moderated for non-subscribers)
1942 S:      Maintained
1943
1944 ARM/LG1K ARCHITECTURE
1945 M:      Chanho Min <[email protected]>
1946 L:      [email protected] (moderated for non-subscribers)
1947 S:      Maintained
1948 F:      arch/arm64/boot/dts/lg/
1949
1950 ARM/LOGICPD PXA270 MACHINE SUPPORT
1951 M:      Lennert Buytenhek <[email protected]>
1952 L:      [email protected] (moderated for non-subscribers)
1953 S:      Maintained
1954
1955 ARM/LPC18XX ARCHITECTURE
1956 M:      Vladimir Zapolskiy <[email protected]>
1957 L:      [email protected] (moderated for non-subscribers)
1958 S:      Maintained
1959 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1960 F:      arch/arm/boot/dts/lpc43*
1961 F:      drivers/i2c/busses/i2c-lpc2k.c
1962 F:      drivers/memory/pl172.c
1963 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1964 F:      drivers/rtc/rtc-lpc24xx.c
1965 N:      lpc18xx
1966
1967 ARM/LPC32XX SOC SUPPORT
1968 M:      Vladimir Zapolskiy <[email protected]>
1969 M:      Sylvain Lemieux <[email protected]>
1970 L:      [email protected] (moderated for non-subscribers)
1971 S:      Maintained
1972 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1973 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1974 F:      arch/arm/boot/dts/lpc32*
1975 F:      arch/arm/mach-lpc32xx/
1976 F:      drivers/i2c/busses/i2c-pnx.c
1977 F:      drivers/net/ethernet/nxp/lpc_eth.c
1978 F:      drivers/usb/host/ohci-nxp.c
1979 F:      drivers/watchdog/pnx4008_wdt.c
1980 N:      lpc32xx
1981
1982 ARM/MAGICIAN MACHINE SUPPORT
1983 M:      Philipp Zabel <[email protected]>
1984 S:      Maintained
1985
1986 ARM/Marvell Dove/MV78xx0/Orion SOC support
1987 M:      Jason Cooper <[email protected]>
1988 M:      Andrew Lunn <[email protected]>
1989 M:      Sebastian Hesselbarth <[email protected]>
1990 M:      Gregory Clement <[email protected]>
1991 L:      [email protected] (moderated for non-subscribers)
1992 S:      Maintained
1993 T:      git git://git.infradead.org/linux-mvebu.git
1994 F:      Documentation/devicetree/bindings/soc/dove/
1995 F:      arch/arm/boot/dts/dove*
1996 F:      arch/arm/boot/dts/orion5x*
1997 F:      arch/arm/mach-dove/
1998 F:      arch/arm/mach-mv78xx0/
1999 F:      arch/arm/mach-orion5x/
2000 F:      arch/arm/plat-orion/
2001
2002 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2003 M:      Jason Cooper <[email protected]>
2004 M:      Andrew Lunn <[email protected]>
2005 M:      Gregory Clement <[email protected]>
2006 M:      Sebastian Hesselbarth <[email protected]>
2007 L:      [email protected] (moderated for non-subscribers)
2008 S:      Maintained
2009 T:      git git://git.infradead.org/linux-mvebu.git
2010 F:      arch/arm/boot/dts/armada*
2011 F:      arch/arm/boot/dts/kirkwood*
2012 F:      arch/arm/configs/mvebu_*_defconfig
2013 F:      arch/arm/mach-mvebu/
2014 F:      arch/arm64/boot/dts/marvell/armada*
2015 F:      arch/arm64/boot/dts/marvell/cn913*
2016 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2017 F:      drivers/cpufreq/armada-8k-cpufreq.c
2018 F:      drivers/cpufreq/mvebu-cpufreq.c
2019 F:      drivers/irqchip/irq-armada-370-xp.c
2020 F:      drivers/irqchip/irq-mvebu-*
2021 F:      drivers/pinctrl/mvebu/
2022 F:      drivers/rtc/rtc-armada38x.c
2023
2024 ARM/Mediatek RTC DRIVER
2025 M:      Eddie Huang <[email protected]>
2026 M:      Sean Wang <[email protected]>
2027 L:      [email protected] (moderated for non-subscribers)
2028 L:      [email protected] (moderated for non-subscribers)
2029 S:      Maintained
2030 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2031 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2032 F:      drivers/rtc/rtc-mt2712.c
2033 F:      drivers/rtc/rtc-mt6397.c
2034 F:      drivers/rtc/rtc-mt7622.c
2035
2036 ARM/Mediatek SoC support
2037 M:      Matthias Brugger <[email protected]>
2038 L:      [email protected] (moderated for non-subscribers)
2039 L:      [email protected] (moderated for non-subscribers)
2040 S:      Maintained
2041 W:      https://mtk.bcnfs.org/
2042 C:      irc://chat.freenode.net/linux-mediatek
2043 F:      arch/arm/boot/dts/mt6*
2044 F:      arch/arm/boot/dts/mt7*
2045 F:      arch/arm/boot/dts/mt8*
2046 F:      arch/arm/mach-mediatek/
2047 F:      arch/arm64/boot/dts/mediatek/
2048 F:      drivers/soc/mediatek/
2049 N:      mtk
2050 N:      mt[678]
2051 K:      mediatek
2052
2053 ARM/Mediatek USB3 PHY DRIVER
2054 M:      Chunfeng Yun <[email protected]>
2055 L:      [email protected] (moderated for non-subscribers)
2056 L:      [email protected] (moderated for non-subscribers)
2057 S:      Maintained
2058 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2059 F:      drivers/phy/mediatek/
2060
2061 ARM/Microchip (AT91) SoC support
2062 M:      Nicolas Ferre <[email protected]>
2063 M:      Alexandre Belloni <[email protected]>
2064 M:      Ludovic Desroches <[email protected]>
2065 L:      [email protected] (moderated for non-subscribers)
2066 S:      Supported
2067 W:      http://www.linux4sam.org
2068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2069 F:      arch/arm/boot/dts/at91*.dts
2070 F:      arch/arm/boot/dts/at91*.dtsi
2071 F:      arch/arm/boot/dts/sama*.dts
2072 F:      arch/arm/boot/dts/sama*.dtsi
2073 F:      arch/arm/include/debug/at91.S
2074 F:      arch/arm/mach-at91/
2075 F:      drivers/memory/atmel*
2076 F:      drivers/watchdog/sama5d4_wdt.c
2077 F:      include/soc/at91/
2078 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2079 X:      drivers/net/wireless/atmel/
2080 N:      at91
2081 N:      atmel
2082
2083 ARM/MIOA701 MACHINE SUPPORT
2084 M:      Robert Jarzmik <[email protected]>
2085 L:      [email protected] (moderated for non-subscribers)
2086 S:      Maintained
2087 F:      arch/arm/mach-pxa/mioa701.c
2088
2089 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2090 M:      Michael Petchkovsky <[email protected]>
2091 S:      Maintained
2092
2093 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2094 M:      Linus Walleij <[email protected]>
2095 L:      [email protected] (moderated for non-subscribers)
2096 S:      Maintained
2097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2098 F:      Documentation/devicetree/bindings/arm/ste-*
2099 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2100 F:      Documentation/devicetree/bindings/arm/ux500/
2101 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2102 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2103 F:      arch/arm/boot/dts/ste-*
2104 F:      arch/arm/mach-nomadik/
2105 F:      arch/arm/mach-u300/
2106 F:      arch/arm/mach-ux500/
2107 F:      drivers/clk/clk-nomadik.c
2108 F:      drivers/clk/clk-u300.c
2109 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2110 F:      drivers/clocksource/timer-u300.c
2111 F:      drivers/dma/coh901318*
2112 F:      drivers/dma/ste_dma40*
2113 F:      drivers/hwspinlock/u8500_hsem.c
2114 F:      drivers/i2c/busses/i2c-nomadik.c
2115 F:      drivers/i2c/busses/i2c-stu300.c
2116 F:      drivers/iio/adc/ab8500-gpadc.c
2117 F:      drivers/mfd/ab3100*
2118 F:      drivers/mfd/ab8500*
2119 F:      drivers/mfd/abx500*
2120 F:      drivers/mfd/db8500*
2121 F:      drivers/mfd/dbx500*
2122 F:      drivers/pinctrl/nomadik/
2123 F:      drivers/pinctrl/pinctrl-coh901*
2124 F:      drivers/pinctrl/pinctrl-u300.c
2125 F:      drivers/rtc/rtc-ab3100.c
2126 F:      drivers/rtc/rtc-ab8500.c
2127 F:      drivers/rtc/rtc-coh901331.c
2128 F:      drivers/rtc/rtc-pl031.c
2129 F:      drivers/soc/ux500/
2130 F:      drivers/watchdog/coh901327_wdt.c
2131
2132 ARM/NUVOTON NPCM ARCHITECTURE
2133 M:      Avi Fishman <[email protected]>
2134 M:      Tomer Maimon <[email protected]>
2135 M:      Tali Perry <[email protected]>
2136 R:      Patrick Venture <[email protected]>
2137 R:      Nancy Yuen <[email protected]>
2138 R:      Benjamin Fair <[email protected]>
2139 L:      [email protected] (moderated for non-subscribers)
2140 S:      Supported
2141 F:      Documentation/devicetree/bindings/*/*/*npcm*
2142 F:      Documentation/devicetree/bindings/*/*npcm*
2143 F:      arch/arm/boot/dts/nuvoton-npcm*
2144 F:      arch/arm/mach-npcm/
2145 F:      drivers/*/*npcm*
2146 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2147
2148 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2149 L:      [email protected] (subscribers-only)
2150 S:      Orphan
2151 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2152 F:      arch/arm/mach-s3c24xx/gta02.h
2153 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2154
2155 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2156 M:      Alexander Clouter <[email protected]>
2157 L:      [email protected] (moderated for non-subscribers)
2158 S:      Maintained
2159 W:      http://www.digriz.org.uk/ts78xx/kernel
2160 F:      arch/arm/mach-orion5x/ts78xx-*
2161
2162 ARM/OXNAS platform support
2163 M:      Neil Armstrong <[email protected]>
2164 L:      [email protected] (moderated for non-subscribers)
2165 L:      [email protected] (moderated for non-subscribers)
2166 S:      Maintained
2167 F:      arch/arm/boot/dts/ox8*.dts*
2168 F:      arch/arm/mach-oxnas/
2169 N:      oxnas
2170
2171 ARM/PALM TREO SUPPORT
2172 M:      Tomas Cech <[email protected]>
2173 L:      [email protected]
2174 S:      Maintained
2175 W:      http://hackndev.com
2176 F:      arch/arm/mach-pxa/palmtreo.*
2177
2178 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2179 M:      Marek Vasut <[email protected]>
2180 L:      [email protected]
2181 S:      Maintained
2182 W:      http://hackndev.com
2183 F:      arch/arm/mach-pxa/include/mach/palmld.h
2184 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2185 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2186 F:      arch/arm/mach-pxa/palmld.c
2187 F:      arch/arm/mach-pxa/palmt5.*
2188 F:      arch/arm/mach-pxa/palmtc.c
2189 F:      arch/arm/mach-pxa/palmte2.*
2190 F:      arch/arm/mach-pxa/palmtx.c
2191
2192 ARM/PALMZ72 SUPPORT
2193 M:      Sergey Lapin <[email protected]>
2194 L:      [email protected]
2195 S:      Maintained
2196 W:      http://hackndev.com
2197 F:      arch/arm/mach-pxa/palmz72.*
2198
2199 ARM/PLEB SUPPORT
2200 M:      Peter Chubb <[email protected]>
2201 S:      Maintained
2202 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2203
2204 ARM/PT DIGITAL BOARD PORT
2205 M:      Stefan Eletzhofer <[email protected]>
2206 L:      [email protected] (moderated for non-subscribers)
2207 S:      Maintained
2208 W:      http://www.armlinux.org.uk/
2209
2210 ARM/QUALCOMM SUPPORT
2211 M:      Andy Gross <[email protected]>
2212 M:      Bjorn Andersson <[email protected]>
2213 L:      [email protected]
2214 S:      Maintained
2215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2216 F:      Documentation/devicetree/bindings/*/qcom*
2217 F:      Documentation/devicetree/bindings/soc/qcom/
2218 F:      arch/arm/boot/dts/qcom-*.dts
2219 F:      arch/arm/boot/dts/qcom-*.dtsi
2220 F:      arch/arm/mach-qcom/
2221 F:      arch/arm64/boot/dts/qcom/
2222 F:      drivers/*/*/qcom*
2223 F:      drivers/*/*/qcom/
2224 F:      drivers/*/pm8???-*
2225 F:      drivers/*/qcom*
2226 F:      drivers/*/qcom/
2227 F:      drivers/bluetooth/btqcomsmd.c
2228 F:      drivers/clocksource/timer-qcom.c
2229 F:      drivers/extcon/extcon-qcom*
2230 F:      drivers/i2c/busses/i2c-qcom-geni.c
2231 F:      drivers/i2c/busses/i2c-qup.c
2232 F:      drivers/iommu/msm*
2233 F:      drivers/mfd/ssbi.c
2234 F:      drivers/mmc/host/mmci_qcom*
2235 F:      drivers/mmc/host/sdhci-msm.c
2236 F:      drivers/pci/controller/dwc/pcie-qcom.c
2237 F:      drivers/phy/qualcomm/
2238 F:      drivers/power/*/msm*
2239 F:      drivers/reset/reset-qcom-*
2240 F:      drivers/scsi/ufs/ufs-qcom.*
2241 F:      drivers/spi/spi-geni-qcom.c
2242 F:      drivers/spi/spi-qcom-qspi.c
2243 F:      drivers/spi/spi-qup.c
2244 F:      drivers/tty/serial/msm_serial.c
2245 F:      drivers/usb/dwc3/dwc3-qcom.c
2246 F:      include/dt-bindings/*/qcom*
2247 F:      include/linux/*/qcom*
2248
2249 ARM/RADISYS ENP2611 MACHINE SUPPORT
2250 M:      Lennert Buytenhek <[email protected]>
2251 L:      [email protected] (moderated for non-subscribers)
2252 S:      Maintained
2253
2254 ARM/RDA MICRO ARCHITECTURE
2255 M:      Manivannan Sadhasivam <[email protected]>
2256 L:      [email protected] (moderated for non-subscribers)
2257 L:      [email protected] (moderated for non-subscribers)
2258 S:      Maintained
2259 F:      Documentation/devicetree/bindings/arm/rda.yaml
2260 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2261 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2262 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2263 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2264 F:      arch/arm/boot/dts/rda8810pl-*
2265 F:      drivers/clocksource/timer-rda.c
2266 F:      drivers/gpio/gpio-rda.c
2267 F:      drivers/irqchip/irq-rda-intc.c
2268 F:      drivers/tty/serial/rda-uart.c
2269
2270 ARM/REALTEK ARCHITECTURE
2271 M:      Andreas Färber <[email protected]>
2272 L:      [email protected] (moderated for non-subscribers)
2273 L:      [email protected] (moderated for non-subscribers)
2274 S:      Maintained
2275 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2276 F:      arch/arm64/boot/dts/realtek/
2277
2278 ARM/RENESAS ARM64 ARCHITECTURE
2279 M:      Geert Uytterhoeven <[email protected]>
2280 M:      Magnus Damm <[email protected]>
2281 L:      [email protected]
2282 S:      Supported
2283 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2285 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2286 F:      arch/arm64/boot/dts/renesas/
2287 F:      drivers/soc/renesas/
2288 F:      include/linux/soc/renesas/
2289
2290 ARM/RISCPC ARCHITECTURE
2291 M:      Russell King <[email protected]>
2292 L:      [email protected] (moderated for non-subscribers)
2293 S:      Maintained
2294 W:      http://www.armlinux.org.uk/
2295 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2296 F:      arch/arm/include/asm/hardware/ioc.h
2297 F:      arch/arm/include/asm/hardware/iomd.h
2298 F:      arch/arm/include/asm/hardware/memc.h
2299 F:      arch/arm/mach-rpc/
2300 F:      drivers/net/ethernet/8390/etherh.c
2301 F:      drivers/net/ethernet/i825xx/ether1*
2302 F:      drivers/net/ethernet/seeq/ether3*
2303 F:      drivers/scsi/arm/
2304
2305 ARM/Rockchip SoC support
2306 M:      Heiko Stuebner <[email protected]>
2307 L:      [email protected] (moderated for non-subscribers)
2308 L:      [email protected]
2309 S:      Maintained
2310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2311 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2312 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2313 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2314 F:      arch/arm/boot/dts/rk3*
2315 F:      arch/arm/boot/dts/rv1108*
2316 F:      arch/arm/mach-rockchip/
2317 F:      drivers/*/*/*rockchip*
2318 F:      drivers/*/*rockchip*
2319 F:      drivers/clk/rockchip/
2320 F:      drivers/i2c/busses/i2c-rk3x.c
2321 F:      sound/soc/rockchip/
2322 N:      rockchip
2323
2324 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2325 M:      Kukjin Kim <[email protected]>
2326 M:      Krzysztof Kozlowski <[email protected]>
2327 L:      [email protected] (moderated for non-subscribers)
2328 L:      [email protected] (moderated for non-subscribers)
2329 S:      Maintained
2330 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2331 F:      Documentation/arm/samsung/
2332 F:      Documentation/devicetree/bindings/arm/samsung/
2333 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2334 F:      arch/arm/boot/dts/exynos*
2335 F:      arch/arm/boot/dts/s3c*
2336 F:      arch/arm/boot/dts/s5p*
2337 F:      arch/arm/mach-exynos*/
2338 F:      arch/arm/mach-s3c24*/
2339 F:      arch/arm/mach-s3c64xx/
2340 F:      arch/arm/mach-s5p*/
2341 F:      arch/arm/plat-samsung/
2342 F:      arch/arm64/boot/dts/exynos/
2343 F:      drivers/*/*/*s3c24*
2344 F:      drivers/*/*s3c24*
2345 F:      drivers/*/*s3c64xx*
2346 F:      drivers/*/*s5pv210*
2347 F:      drivers/memory/samsung/
2348 F:      drivers/soc/samsung/
2349 F:      drivers/tty/serial/samsung*
2350 F:      include/linux/soc/samsung/
2351 N:      exynos
2352
2353 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2354 M:      Kyungmin Park <[email protected]>
2355 L:      [email protected] (moderated for non-subscribers)
2356 S:      Maintained
2357 F:      arch/arm/mach-s5pv210/
2358
2359 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2360 M:      Kyungmin Park <[email protected]>
2361 M:      Kamil Debski <[email protected]>
2362 M:      Andrzej Hajda <[email protected]>
2363 L:      [email protected]
2364 L:      [email protected]
2365 S:      Maintained
2366 F:      drivers/media/platform/s5p-g2d/
2367
2368 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2369 M:      Marek Szyprowski <[email protected]>
2370 L:      [email protected] (moderated for non-subscribers)
2371 L:      [email protected]
2372 S:      Maintained
2373 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2374 F:      drivers/media/platform/s5p-cec/
2375
2376 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2377 M:      Andrzej Pietrasiewicz <[email protected]>
2378 M:      Jacek Anaszewski <[email protected]>
2379 M:      Sylwester Nawrocki <[email protected]>
2380 L:      [email protected]
2381 L:      [email protected]
2382 S:      Maintained
2383 F:      drivers/media/platform/s5p-jpeg/
2384
2385 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2386 M:      Kyungmin Park <[email protected]>
2387 M:      Kamil Debski <[email protected]>
2388 M:      Jeongtae Park <[email protected]>
2389 M:      Andrzej Hajda <[email protected]>
2390 L:      [email protected]
2391 L:      [email protected]
2392 S:      Maintained
2393 F:      drivers/media/platform/s5p-mfc/
2394
2395 ARM/SHMOBILE ARM ARCHITECTURE
2396 M:      Geert Uytterhoeven <[email protected]>
2397 M:      Magnus Damm <[email protected]>
2398 L:      [email protected]
2399 S:      Supported
2400 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2402 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2403 F:      arch/arm/boot/dts/emev2*
2404 F:      arch/arm/boot/dts/gr-peach*
2405 F:      arch/arm/boot/dts/iwg20d-q7*
2406 F:      arch/arm/boot/dts/r7s*
2407 F:      arch/arm/boot/dts/r8a*
2408 F:      arch/arm/boot/dts/r9a*
2409 F:      arch/arm/boot/dts/sh*
2410 F:      arch/arm/configs/shmobile_defconfig
2411 F:      arch/arm/include/debug/renesas-scif.S
2412 F:      arch/arm/mach-shmobile/
2413 F:      drivers/soc/renesas/
2414 F:      include/linux/soc/renesas/
2415
2416 ARM/SOCFPGA ARCHITECTURE
2417 M:      Dinh Nguyen <[email protected]>
2418 S:      Maintained
2419 W:      http://www.rocketboards.org
2420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2421 F:      arch/arm/boot/dts/socfpga*
2422 F:      arch/arm/configs/socfpga_defconfig
2423 F:      arch/arm/mach-socfpga/
2424 F:      arch/arm64/boot/dts/altera/
2425 F:      arch/arm64/boot/dts/intel/
2426
2427 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2428 M:      Dinh Nguyen <[email protected]>
2429 S:      Maintained
2430 F:      drivers/clk/socfpga/
2431
2432 ARM/SOCFPGA EDAC SUPPORT
2433 M:      Thor Thayer <[email protected]>
2434 S:      Maintained
2435 F:      drivers/edac/altera_edac.
2436
2437 ARM/SPREADTRUM SoC SUPPORT
2438 M:      Orson Zhai <[email protected]>
2439 M:      Baolin Wang <[email protected]>
2440 M:      Chunyan Zhang <[email protected]>
2441 S:      Maintained
2442 F:      arch/arm64/boot/dts/sprd
2443 N:      sprd
2444 N:      sc27xx
2445 N:      sc2731
2446
2447 ARM/STI ARCHITECTURE
2448 M:      Patrice Chotard <[email protected]>
2449 L:      [email protected] (moderated for non-subscribers)
2450 S:      Maintained
2451 W:      http://www.stlinux.com
2452 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2453 F:      arch/arm/boot/dts/sti*
2454 F:      arch/arm/mach-sti/
2455 F:      drivers/ata/ahci_st.c
2456 F:      drivers/char/hw_random/st-rng.c
2457 F:      drivers/clocksource/arm_global_timer.c
2458 F:      drivers/clocksource/clksrc_st_lpc.c
2459 F:      drivers/cpufreq/sti-cpufreq.c
2460 F:      drivers/dma/st_fdma*
2461 F:      drivers/i2c/busses/i2c-st.c
2462 F:      drivers/media/platform/sti/c8sectpfe/
2463 F:      drivers/media/rc/st_rc.c
2464 F:      drivers/mmc/host/sdhci-st.c
2465 F:      drivers/phy/st/phy-miphy28lp.c
2466 F:      drivers/phy/st/phy-stih407-usb.c
2467 F:      drivers/pinctrl/pinctrl-st.c
2468 F:      drivers/remoteproc/st_remoteproc.c
2469 F:      drivers/remoteproc/st_slim_rproc.c
2470 F:      drivers/reset/sti/
2471 F:      drivers/rtc/rtc-st-lpc.c
2472 F:      drivers/tty/serial/st-asc.c
2473 F:      drivers/usb/dwc3/dwc3-st.c
2474 F:      drivers/usb/host/ehci-st.c
2475 F:      drivers/usb/host/ohci-st.c
2476 F:      drivers/watchdog/st_lpc_wdt.c
2477 F:      include/linux/remoteproc/st_slim_rproc.h
2478
2479 ARM/STM32 ARCHITECTURE
2480 M:      Maxime Coquelin <[email protected]>
2481 M:      Alexandre Torgue <[email protected]>
2482 L:      [email protected] (moderated for non-subscribers)
2483 L:      [email protected] (moderated for non-subscribers)
2484 S:      Maintained
2485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2486 F:      arch/arm/boot/dts/stm32*
2487 F:      arch/arm/mach-stm32/
2488 F:      drivers/clocksource/armv7m_systick.c
2489 N:      stm32
2490 N:      stm
2491
2492 ARM/Synaptics SoC support
2493 M:      Jisheng Zhang <[email protected]>
2494 M:      Sebastian Hesselbarth <[email protected]>
2495 L:      [email protected] (moderated for non-subscribers)
2496 S:      Maintained
2497 F:      arch/arm/boot/dts/berlin*
2498 F:      arch/arm/mach-berlin/
2499 F:      arch/arm64/boot/dts/synaptics/
2500
2501 ARM/TANGO ARCHITECTURE
2502 M:      Marc Gonzalez <[email protected]>
2503 M:      Mans Rullgard <[email protected]>
2504 L:      [email protected]
2505 S:      Odd Fixes
2506 N:      tango
2507
2508 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2509 M:      Lennert Buytenhek <[email protected]>
2510 L:      [email protected] (moderated for non-subscribers)
2511 S:      Maintained
2512
2513 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2514 M:      Hans Verkuil <[email protected]>
2515 L:      [email protected]
2516 L:      [email protected]
2517 S:      Maintained
2518 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2519 F:      drivers/media/platform/tegra-cec/
2520
2521 ARM/TETON BGA MACHINE SUPPORT
2522 M:      "Mark F. Brown" <[email protected]>
2523 L:      [email protected] (moderated for non-subscribers)
2524 S:      Maintained
2525
2526 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2527 M:      Santosh Shilimkar <[email protected]>
2528 L:      [email protected]
2529 S:      Maintained
2530 F:      drivers/memory/*emif*
2531
2532 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2533 M:      Santosh Shilimkar <[email protected]>
2534 L:      [email protected] (moderated for non-subscribers)
2535 S:      Maintained
2536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2537 F:      arch/arm/boot/dts/keystone-*
2538 F:      arch/arm/mach-keystone/
2539
2540 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2541 M:      Santosh Shilimkar <[email protected]>
2542 L:      [email protected]
2543 S:      Maintained
2544 F:      drivers/clk/keystone/
2545
2546 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2547 M:      Santosh Shilimkar <[email protected]>
2548 L:      [email protected] (moderated for non-subscribers)
2549 L:      [email protected]
2550 S:      Maintained
2551 F:      drivers/clocksource/timer-keystone.c
2552
2553 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2554 M:      Santosh Shilimkar <[email protected]>
2555 L:      [email protected]
2556 S:      Maintained
2557 F:      drivers/power/reset/keystone-reset.c
2558
2559 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2560 M:      Tero Kristo <[email protected]>
2561 M:      Nishanth Menon <[email protected]>
2562 L:      [email protected] (moderated for non-subscribers)
2563 S:      Supported
2564 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2565 F:      arch/arm64/boot/dts/ti/Makefile
2566 F:      arch/arm64/boot/dts/ti/k3-*
2567 F:      include/dt-bindings/pinctrl/k3.h
2568
2569 ARM/THECUS N2100 MACHINE SUPPORT
2570 M:      Lennert Buytenhek <[email protected]>
2571 L:      [email protected] (moderated for non-subscribers)
2572 S:      Maintained
2573
2574 ARM/TOSA MACHINE SUPPORT
2575 M:      Dmitry Eremin-Solenikov <[email protected]>
2576 M:      Dirk Opfer <[email protected]>
2577 S:      Maintained
2578
2579 ARM/UNIPHIER ARCHITECTURE
2580 M:      Masahiro Yamada <[email protected]>
2581 L:      [email protected] (moderated for non-subscribers)
2582 S:      Maintained
2583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2584 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2585 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2586 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2587 F:      arch/arm/boot/dts/uniphier*
2588 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2589 F:      arch/arm/mach-uniphier/
2590 F:      arch/arm/mm/cache-uniphier.c
2591 F:      arch/arm64/boot/dts/socionext/uniphier*
2592 F:      drivers/bus/uniphier-system-bus.c
2593 F:      drivers/clk/uniphier/
2594 F:      drivers/dma/uniphier-mdmac.c
2595 F:      drivers/gpio/gpio-uniphier.c
2596 F:      drivers/i2c/busses/i2c-uniphier*
2597 F:      drivers/irqchip/irq-uniphier-aidet.c
2598 F:      drivers/mmc/host/uniphier-sd.c
2599 F:      drivers/pinctrl/uniphier/
2600 F:      drivers/reset/reset-uniphier.c
2601 F:      drivers/tty/serial/8250/8250_uniphier.c
2602 N:      uniphier
2603
2604 ARM/VERSATILE EXPRESS PLATFORM
2605 M:      Liviu Dudau <[email protected]>
2606 M:      Sudeep Holla <[email protected]>
2607 M:      Lorenzo Pieralisi <[email protected]>
2608 L:      [email protected] (moderated for non-subscribers)
2609 S:      Maintained
2610 F:      */*/*/vexpress*
2611 F:      */*/vexpress*
2612 F:      arch/arm/boot/dts/vexpress*
2613 F:      arch/arm/mach-vexpress/
2614 F:      arch/arm64/boot/dts/arm/
2615 F:      drivers/clk/versatile/clk-vexpress-osc.c
2616 F:      drivers/clocksource/timer-versatile.c
2617 N:      mps2
2618
2619 ARM/VFP SUPPORT
2620 M:      Russell King <[email protected]>
2621 L:      [email protected] (moderated for non-subscribers)
2622 S:      Maintained
2623 W:      http://www.armlinux.org.uk/
2624 F:      arch/arm/vfp/
2625
2626 ARM/VOIPAC PXA270 SUPPORT
2627 M:      Marek Vasut <[email protected]>
2628 L:      [email protected] (moderated for non-subscribers)
2629 S:      Maintained
2630 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2631 F:      arch/arm/mach-pxa/vpac270.c
2632
2633 ARM/VT8500 ARM ARCHITECTURE
2634 M:      Tony Prisk <[email protected]>
2635 L:      [email protected] (moderated for non-subscribers)
2636 S:      Maintained
2637 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2638 F:      arch/arm/mach-vt8500/
2639 F:      drivers/clocksource/timer-vt8500.c
2640 F:      drivers/i2c/busses/i2c-wmt.c
2641 F:      drivers/mmc/host/wmt-sdmmc.c
2642 F:      drivers/pwm/pwm-vt8500.c
2643 F:      drivers/rtc/rtc-vt8500.c
2644 F:      drivers/tty/serial/vt8500_serial.c
2645 F:      drivers/usb/host/ehci-platform.c
2646 F:      drivers/usb/host/uhci-platform.c
2647 F:      drivers/video/fbdev/vt8500lcdfb.*
2648 F:      drivers/video/fbdev/wm8505fb*
2649 F:      drivers/video/fbdev/wmt_ge_rops.*
2650
2651 ARM/ZIPIT Z2 SUPPORT
2652 M:      Marek Vasut <[email protected]>
2653 L:      [email protected] (moderated for non-subscribers)
2654 S:      Maintained
2655 F:      arch/arm/mach-pxa/include/mach/z2.h
2656 F:      arch/arm/mach-pxa/z2.c
2657
2658 ARM/ZTE ARCHITECTURE
2659 M:      Jun Nie <[email protected]>
2660 M:      Shawn Guo <[email protected]>
2661 L:      [email protected] (moderated for non-subscribers)
2662 S:      Maintained
2663 F:      Documentation/devicetree/bindings/arm/zte.yaml
2664 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2665 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2666 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2667 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2668 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2669 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2670 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2671 F:      Documentation/devicetree/bindings/soc/zte/
2672 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2673 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2674 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2675 F:      arch/arm/boot/dts/zx2967*
2676 F:      arch/arm/mach-zx/
2677 F:      arch/arm64/boot/dts/zte/
2678 F:      drivers/clk/zte/
2679 F:      drivers/dma/zx_dma.c
2680 F:      drivers/gpio/gpio-zx.c
2681 F:      drivers/i2c/busses/i2c-zx2967.c
2682 F:      drivers/mmc/host/dw_mmc-zx.*
2683 F:      drivers/pinctrl/zte/
2684 F:      drivers/soc/zte/
2685 F:      drivers/thermal/zx2967_thermal.c
2686 F:      drivers/watchdog/zx2967_wdt.c
2687 F:      include/dt-bindings/clock/zx2967*.h
2688 F:      include/dt-bindings/soc/zte,*.h
2689 F:      sound/soc/codecs/zx_aud96p22.c
2690 F:      sound/soc/zte/
2691
2692 ARM/ZYNQ ARCHITECTURE
2693 M:      Michal Simek <[email protected]>
2694 L:      [email protected] (moderated for non-subscribers)
2695 S:      Supported
2696 W:      http://wiki.xilinx.com
2697 T:      git https://github.com/Xilinx/linux-xlnx.git
2698 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2699 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2700 F:      arch/arm/mach-zynq/
2701 F:      drivers/block/xsysace.c
2702 F:      drivers/clocksource/timer-cadence-ttc.c
2703 F:      drivers/cpuidle/cpuidle-zynq.c
2704 F:      drivers/edac/synopsys_edac.c
2705 F:      drivers/i2c/busses/i2c-cadence.c
2706 F:      drivers/i2c/busses/i2c-xiic.c
2707 F:      drivers/mmc/host/sdhci-of-arasan.c
2708 N:      zynq
2709 N:      xilinx
2710
2711 ARM64 PORT (AARCH64 ARCHITECTURE)
2712 M:      Catalin Marinas <[email protected]>
2713 M:      Will Deacon <[email protected]>
2714 L:      [email protected] (moderated for non-subscribers)
2715 S:      Maintained
2716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2717 F:      Documentation/arm64/
2718 F:      arch/arm64/
2719 F:      tools/testing/selftests/arm64/
2720 X:      arch/arm64/boot/dts/
2721
2722 AS3645A LED FLASH CONTROLLER DRIVER
2723 M:      Sakari Ailus <[email protected]>
2724 L:      [email protected]
2725 S:      Maintained
2726 F:      drivers/leds/leds-as3645a.c
2727
2728 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2729 M:      Tianshu Qiu <[email protected]>
2730 L:      [email protected]
2731 S:      Maintained
2732 T:      git git://linuxtv.org/media_tree.git
2733 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2734 F:      drivers/media/i2c/ak7375.c
2735
2736 ASAHI KASEI AK8974 DRIVER
2737 M:      Linus Walleij <[email protected]>
2738 L:      [email protected]
2739 S:      Supported
2740 W:      http://www.akm.com/
2741 F:      drivers/iio/magnetometer/ak8974.c
2742
2743 ASC7621 HARDWARE MONITOR DRIVER
2744 M:      George Joseph <[email protected]>
2745 L:      [email protected]
2746 S:      Maintained
2747 F:      Documentation/hwmon/asc7621.rst
2748 F:      drivers/hwmon/asc7621.c
2749
2750 ASPEED PINCTRL DRIVERS
2751 M:      Andrew Jeffery <[email protected]>
2752 L:      [email protected] (moderated for non-subscribers)
2753 L:      [email protected] (moderated for non-subscribers)
2754 L:      [email protected]
2755 S:      Maintained
2756 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2757 F:      drivers/pinctrl/aspeed/
2758
2759 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2760 M:      Eddie James <[email protected]>
2761 L:      [email protected] (moderated for non-subscribers)
2762 S:      Maintained
2763 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2764 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2765 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2766
2767 ASPEED VIDEO ENGINE DRIVER
2768 M:      Eddie James <[email protected]>
2769 L:      [email protected]
2770 L:      [email protected] (moderated for non-subscribers)
2771 S:      Maintained
2772 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2773 F:      drivers/media/platform/aspeed-video.c
2774
2775 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2776 M:      Corentin Chary <[email protected]>
2777 L:      [email protected]
2778 L:      [email protected]
2779 S:      Maintained
2780 W:      http://acpi4asus.sf.net
2781 F:      drivers/platform/x86/asus*.c
2782 F:      drivers/platform/x86/eeepc*.c
2783
2784 ASUS WIRELESS RADIO CONTROL DRIVER
2785 M:      João Paulo Rechi Vita <[email protected]>
2786 L:      [email protected]
2787 S:      Maintained
2788 F:      drivers/platform/x86/asus-wireless.c
2789
2790 ASYMMETRIC KEYS
2791 M:      David Howells <[email protected]>
2792 L:      [email protected]
2793 S:      Maintained
2794 F:      Documentation/crypto/asymmetric-keys.txt
2795 F:      crypto/asymmetric_keys/
2796 F:      include/crypto/pkcs7.h
2797 F:      include/crypto/public_key.h
2798 F:      include/linux/verification.h
2799
2800 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2801 R:      Dan Williams <[email protected]>
2802 S:      Odd fixes
2803 W:      http://sourceforge.net/projects/xscaleiop
2804 F:      Documentation/crypto/async-tx-api.txt
2805 F:      crypto/async_tx/
2806 F:      drivers/dma/
2807 F:      include/linux/async_tx.h
2808 F:      include/linux/dmaengine.h
2809
2810 AT24 EEPROM DRIVER
2811 M:      Bartosz Golaszewski <[email protected]>
2812 L:      [email protected]
2813 S:      Maintained
2814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2815 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2816 F:      drivers/misc/eeprom/at24.c
2817
2818 ATA OVER ETHERNET (AOE) DRIVER
2819 M:      "Justin Sanders" <[email protected]>
2820 S:      Supported
2821 W:      http://www.openaoe.org/
2822 F:      Documentation/admin-guide/aoe/
2823 F:      drivers/block/aoe/
2824
2825 ATHEROS 71XX/9XXX GPIO DRIVER
2826 M:      Alban Bedel <[email protected]>
2827 S:      Maintained
2828 W:      https://github.com/AlbanBedel/linux
2829 T:      git git://github.com/AlbanBedel/linux
2830 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2831 F:      drivers/gpio/gpio-ath79.c
2832
2833 ATHEROS 71XX/9XXX USB PHY DRIVER
2834 M:      Alban Bedel <[email protected]>
2835 S:      Maintained
2836 W:      https://github.com/AlbanBedel/linux
2837 T:      git git://github.com/AlbanBedel/linux
2838 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2839 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2840
2841 ATHEROS ATH GENERIC UTILITIES
2842 M:      Kalle Valo <[email protected]>
2843 L:      [email protected]
2844 S:      Supported
2845 F:      drivers/net/wireless/ath/*
2846
2847 ATHEROS ATH5K WIRELESS DRIVER
2848 M:      Jiri Slaby <[email protected]>
2849 M:      Nick Kossifidis <[email protected]>
2850 M:      Luis Chamberlain <[email protected]>
2851 L:      [email protected]
2852 S:      Maintained
2853 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2854 F:      drivers/net/wireless/ath/ath5k/
2855
2856 ATHEROS ATH6KL WIRELESS DRIVER
2857 M:      Kalle Valo <[email protected]>
2858 L:      [email protected]
2859 S:      Supported
2860 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2862 F:      drivers/net/wireless/ath/ath6kl/
2863
2864 ATI_REMOTE2 DRIVER
2865 M:      Ville Syrjala <[email protected]>
2866 S:      Maintained
2867 F:      drivers/input/misc/ati_remote2.c
2868
2869 ATK0110 HWMON DRIVER
2870 M:      Luca Tettamanti <[email protected]>
2871 L:      [email protected]
2872 S:      Maintained
2873 F:      drivers/hwmon/asus_atk0110.c
2874
2875 ATLX ETHERNET DRIVERS
2876 M:      Jay Cliburn <[email protected]>
2877 M:      Chris Snook <[email protected]>
2878 L:      [email protected]
2879 S:      Maintained
2880 W:      http://sourceforge.net/projects/atl1
2881 W:      http://atl1.sourceforge.net
2882 F:      drivers/net/ethernet/atheros/
2883
2884 ATM
2885 M:      Chas Williams <[email protected]>
2886 L:      [email protected] (moderated for non-subscribers)
2887 L:      [email protected]
2888 S:      Maintained
2889 W:      http://linux-atm.sourceforge.net
2890 F:      drivers/atm/
2891 F:      include/linux/atm*
2892 F:      include/uapi/linux/atm*
2893
2894 ATMEL MACB ETHERNET DRIVER
2895 M:      Nicolas Ferre <[email protected]>
2896 S:      Supported
2897 F:      drivers/net/ethernet/cadence/
2898
2899 ATMEL MAXTOUCH DRIVER
2900 M:      Nick Dyer <[email protected]>
2901 S:      Maintained
2902 T:      git git://github.com/ndyer/linux.git
2903 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2904 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2905
2906 ATMEL WIRELESS DRIVER
2907 M:      Simon Kelley <[email protected]>
2908 L:      [email protected]
2909 S:      Maintained
2910 W:      http://www.thekelleys.org.uk/atmel
2911 W:      http://atmelwlandriver.sourceforge.net/
2912 F:      drivers/net/wireless/atmel/atmel*
2913
2914 ATOMIC INFRASTRUCTURE
2915 M:      Will Deacon <[email protected]>
2916 M:      Peter Zijlstra <[email protected]>
2917 R:      Boqun Feng <[email protected]>
2918 L:      [email protected]
2919 S:      Maintained
2920 F:      arch/*/include/asm/atomic*.h
2921 F:      include/*/atomic*.h
2922 F:      scripts/atomic/
2923
2924 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2925 M:      Bradley Grove <[email protected]>
2926 L:      [email protected]
2927 S:      Supported
2928 W:      http://www.attotech.com
2929 F:      drivers/scsi/esas2r
2930
2931 ATUSB IEEE 802.15.4 RADIO DRIVER
2932 M:      Stefan Schmidt <[email protected]>
2933 L:      [email protected]
2934 S:      Maintained
2935 F:      drivers/net/ieee802154/at86rf230.h
2936 F:      drivers/net/ieee802154/atusb.c
2937 F:      drivers/net/ieee802154/atusb.h
2938
2939 AUDIT SUBSYSTEM
2940 M:      Paul Moore <[email protected]>
2941 M:      Eric Paris <[email protected]>
2942 L:      [email protected] (moderated for non-subscribers)
2943 S:      Supported
2944 W:      https://github.com/linux-audit
2945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2946 F:      include/linux/audit.h
2947 F:      include/uapi/linux/audit.h
2948 F:      kernel/audit*
2949
2950 AUXILIARY DISPLAY DRIVERS
2951 M:      Miguel Ojeda Sandonis <[email protected]>
2952 S:      Maintained
2953 F:      drivers/auxdisplay/
2954 F:      include/linux/cfag12864b.h
2955
2956 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2957 M:      Andreas Klinger <[email protected]>
2958 L:      [email protected]
2959 S:      Maintained
2960 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2961 F:      drivers/iio/adc/hx711.c
2962
2963 AX.25 NETWORK LAYER
2964 M:      Ralf Baechle <[email protected]>
2965 L:      [email protected]
2966 S:      Maintained
2967 W:      http://www.linux-ax25.org/
2968 F:      include/net/ax25.h
2969 F:      include/uapi/linux/ax25.h
2970 F:      net/ax25/
2971
2972 AXENTIA ARM DEVICES
2973 M:      Peter Rosin <[email protected]>
2974 L:      [email protected] (moderated for non-subscribers)
2975 S:      Maintained
2976 F:      arch/arm/boot/dts/at91-linea.dtsi
2977 F:      arch/arm/boot/dts/at91-natte.dtsi
2978 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2979 F:      arch/arm/boot/dts/at91-tse850-3.dts
2980
2981 AXENTIA ASOC DRIVERS
2982 M:      Peter Rosin <[email protected]>
2983 L:      [email protected] (moderated for non-subscribers)
2984 S:      Maintained
2985 F:      Documentation/devicetree/bindings/sound/axentia,*
2986 F:      sound/soc/atmel/tse850-pcm5142.c
2987
2988 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
2989 M:      Nuno Sá <[email protected]>
2990 L:      [email protected]
2991 S:      Supported
2992 W:      http://ez.analog.com/community/linux-device-drivers
2993 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
2994 F:      drivers/hwmon/axi-fan-control.c
2995
2996 AXXIA I2C CONTROLLER
2997 M:      Krzysztof Adamski <[email protected]>
2998 L:      [email protected]
2999 S:      Maintained
3000 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3001 F:      drivers/i2c/busses/i2c-axxia.c
3002
3003 AZ6007 DVB DRIVER
3004 M:      Mauro Carvalho Chehab <[email protected]>
3005 L:      [email protected]
3006 S:      Maintained
3007 W:      https://linuxtv.org
3008 T:      git git://linuxtv.org/media_tree.git
3009 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3010
3011 AZTECH FM RADIO RECEIVER DRIVER
3012 M:      Hans Verkuil <[email protected]>
3013 L:      [email protected]
3014 S:      Maintained
3015 W:      https://linuxtv.org
3016 T:      git git://linuxtv.org/media_tree.git
3017 F:      drivers/media/radio/radio-aztech*
3018
3019 B43 WIRELESS DRIVER
3020 L:      [email protected]
3021 L:      [email protected]
3022 S:      Odd Fixes
3023 W:      http://wireless.kernel.org/en/users/Drivers/b43
3024 F:      drivers/net/wireless/broadcom/b43/
3025
3026 B43LEGACY WIRELESS DRIVER
3027 M:      Larry Finger <[email protected]>
3028 L:      [email protected]
3029 L:      [email protected]
3030 S:      Maintained
3031 W:      http://wireless.kernel.org/en/users/Drivers/b43
3032 F:      drivers/net/wireless/broadcom/b43legacy/
3033
3034 BACKLIGHT CLASS/SUBSYSTEM
3035 M:      Lee Jones <[email protected]>
3036 M:      Daniel Thompson <[email protected]>
3037 M:      Jingoo Han <[email protected]>
3038 L:      [email protected]
3039 S:      Maintained
3040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3041 F:      Documentation/ABI/stable/sysfs-class-backlight
3042 F:      Documentation/ABI/testing/sysfs-class-backlight
3043 F:      Documentation/devicetree/bindings/leds/backlight
3044 F:      drivers/video/backlight/
3045 F:      include/linux/backlight.h
3046 F:      include/linux/pwm_backlight.h
3047
3048 BATMAN ADVANCED
3049 M:      Marek Lindner <[email protected]>
3050 M:      Simon Wunderlich <[email protected]>
3051 M:      Antonio Quartulli <[email protected]>
3052 M:      Sven Eckelmann <[email protected]>
3053 L:      [email protected] (moderated for non-subscribers)
3054 S:      Maintained
3055 W:      https://www.open-mesh.org/
3056 Q:      https://patchwork.open-mesh.org/project/batman/list/
3057 B:      https://www.open-mesh.org/projects/batman-adv/issues
3058 C:      irc://chat.freenode.net/batman
3059 T:      git https://git.open-mesh.org/linux-merge.git
3060 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3061 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3062 F:      Documentation/networking/batman-adv.rst
3063 F:      include/uapi/linux/batadv_packet.h
3064 F:      include/uapi/linux/batman_adv.h
3065 F:      net/batman-adv/
3066
3067 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3068 M:      Thomas Sailer <[email protected]>
3069 L:      [email protected]
3070 S:      Maintained
3071 W:      http://www.baycom.org/~tom/ham/ham.html
3072 F:      drivers/net/hamradio/baycom*
3073
3074 BCACHE (BLOCK LAYER CACHE)
3075 M:      Coly Li <[email protected]>
3076 M:      Kent Overstreet <[email protected]>
3077 L:      [email protected]
3078 S:      Maintained
3079 W:      http://bcache.evilpiepirate.org
3080 C:      irc://irc.oftc.net/bcache
3081 F:      drivers/md/bcache/
3082
3083 BDISP ST MEDIA DRIVER
3084 M:      Fabien Dessenne <[email protected]>
3085 L:      [email protected]
3086 S:      Supported
3087 W:      https://linuxtv.org
3088 T:      git git://linuxtv.org/media_tree.git
3089 F:      drivers/media/platform/sti/bdisp
3090
3091 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3092 M:      Dariusz Marcinkiewicz <[email protected]>
3093 L:      [email protected]
3094 S:      Maintained
3095 F:      drivers/net/ethernet/ec_bhf.c
3096
3097 BEFS FILE SYSTEM
3098 M:      Luis de Bethencourt <[email protected]>
3099 M:      Salah Triki <[email protected]>
3100 S:      Maintained
3101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3102 F:      Documentation/filesystems/befs.rst
3103 F:      fs/befs/
3104
3105 BFQ I/O SCHEDULER
3106 M:      Paolo Valente <[email protected]>
3107 M:      Jens Axboe <[email protected]>
3108 L:      [email protected]
3109 S:      Maintained
3110 F:      Documentation/block/bfq-iosched.rst
3111 F:      block/bfq-*
3112
3113 BFS FILE SYSTEM
3114 M:      "Tigran A. Aivazian" <[email protected]>
3115 S:      Maintained
3116 F:      Documentation/filesystems/bfs.rst
3117 F:      fs/bfs/
3118 F:      include/uapi/linux/bfs_fs.h
3119
3120 BLINKM RGB LED DRIVER
3121 M:      Jan-Simon Moeller <[email protected]>
3122 S:      Maintained
3123 F:      drivers/leds/leds-blinkm.c
3124
3125 BLOCK LAYER
3126 M:      Jens Axboe <[email protected]>
3127 L:      [email protected]
3128 S:      Maintained
3129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3130 F:      block/
3131 F:      drivers/block/
3132 F:      kernel/trace/blktrace.c
3133 F:      lib/sbitmap.c
3134
3135 BLOCK2MTD DRIVER
3136 M:      Joern Engel <[email protected]>
3137 L:      [email protected]
3138 S:      Maintained
3139 F:      drivers/mtd/devices/block2mtd.c
3140
3141 BLUETOOTH DRIVERS
3142 M:      Marcel Holtmann <[email protected]>
3143 M:      Johan Hedberg <[email protected]>
3144 L:      [email protected]
3145 S:      Maintained
3146 W:      http://www.bluez.org/
3147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3149 F:      drivers/bluetooth/
3150
3151 BLUETOOTH SUBSYSTEM
3152 M:      Marcel Holtmann <[email protected]>
3153 M:      Johan Hedberg <[email protected]>
3154 L:      [email protected]
3155 S:      Maintained
3156 W:      http://www.bluez.org/
3157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3159 F:      include/net/bluetooth/
3160 F:      net/bluetooth/
3161
3162 BONDING DRIVER
3163 M:      Jay Vosburgh <[email protected]>
3164 M:      Veaceslav Falico <[email protected]>
3165 M:      Andy Gospodarek <[email protected]>
3166 L:      [email protected]
3167 S:      Supported
3168 W:      http://sourceforge.net/projects/bonding/
3169 F:      drivers/net/bonding/
3170 F:      include/uapi/linux/if_bonding.h
3171
3172 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3173 M:      Dan Robertson <[email protected]>
3174 L:      [email protected]
3175 S:      Maintained
3176 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3177 F:      drivers/iio/accel/bma400*
3178
3179 BPF (Safe dynamic programs and tools)
3180 M:      Alexei Starovoitov <[email protected]>
3181 M:      Daniel Borkmann <[email protected]>
3182 R:      Martin KaFai Lau <[email protected]>
3183 R:      Song Liu <[email protected]>
3184 R:      Yonghong Song <[email protected]>
3185 R:      Andrii Nakryiko <[email protected]>
3186 R:      John Fastabend <[email protected]>
3187 R:      KP Singh <[email protected]>
3188 L:      [email protected]
3189 L:      [email protected]
3190 S:      Supported
3191 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3194 F:      Documentation/bpf/
3195 F:      Documentation/networking/filter.txt
3196 F:      arch/*/net/*
3197 F:      include/linux/bpf*
3198 F:      include/linux/filter.h
3199 F:      include/trace/events/xdp.h
3200 F:      include/uapi/linux/bpf*
3201 F:      include/uapi/linux/filter.h
3202 F:      kernel/bpf/
3203 F:      kernel/trace/bpf_trace.c
3204 F:      lib/test_bpf.c
3205 F:      net/bpf/
3206 F:      net/core/filter.c
3207 F:      net/sched/act_bpf.c
3208 F:      net/sched/cls_bpf.c
3209 F:      samples/bpf/
3210 F:      tools/bpf/
3211 F:      tools/lib/bpf/
3212 F:      tools/testing/selftests/bpf/
3213 N:      bpf
3214 K:      bpf
3215
3216 BPF JIT for ARM
3217 M:      Shubham Bansal <[email protected]>
3218 L:      [email protected]
3219 L:      [email protected]
3220 S:      Maintained
3221 F:      arch/arm/net/
3222
3223 BPF JIT for ARM64
3224 M:      Daniel Borkmann <[email protected]>
3225 M:      Alexei Starovoitov <[email protected]>
3226 M:      Zi Shen Lim <[email protected]>
3227 L:      [email protected]
3228 L:      [email protected]
3229 S:      Supported
3230 F:      arch/arm64/net/
3231
3232 BPF JIT for MIPS (32-BIT AND 64-BIT)
3233 M:      Paul Burton <[email protected]>
3234 L:      [email protected]
3235 L:      [email protected]
3236 S:      Maintained
3237 F:      arch/mips/net/
3238
3239 BPF JIT for NFP NICs
3240 M:      Jakub Kicinski <[email protected]>
3241 L:      [email protected]
3242 L:      [email protected]
3243 S:      Supported
3244 F:      drivers/net/ethernet/netronome/nfp/bpf/
3245
3246 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3247 M:      Naveen N. Rao <[email protected]>
3248 M:      Sandipan Das <[email protected]>
3249 L:      [email protected]
3250 L:      [email protected]
3251 S:      Maintained
3252 F:      arch/powerpc/net/
3253
3254 BPF JIT for RISC-V (32-bit)
3255 M:      Luke Nelson <[email protected]>
3256 M:      Xi Wang <[email protected]>
3257 L:      [email protected]
3258 L:      [email protected]
3259 S:      Maintained
3260 F:      arch/riscv/net/
3261 X:      arch/riscv/net/bpf_jit_comp64.c
3262
3263 BPF JIT for RISC-V (64-bit)
3264 M:      Björn Töpel <[email protected]>
3265 L:      [email protected]
3266 L:      [email protected]
3267 S:      Maintained
3268 F:      arch/riscv/net/
3269 X:      arch/riscv/net/bpf_jit_comp32.c
3270
3271 BPF JIT for S390
3272 M:      Ilya Leoshkevich <[email protected]>
3273 M:      Heiko Carstens <[email protected]>
3274 M:      Vasily Gorbik <[email protected]>
3275 L:      [email protected]
3276 L:      [email protected]
3277 S:      Maintained
3278 F:      arch/s390/net/
3279 X:      arch/s390/net/pnet.c
3280
3281 BPF JIT for SPARC (32-BIT AND 64-BIT)
3282 M:      David S. Miller <[email protected]>
3283 L:      [email protected]
3284 L:      [email protected]
3285 S:      Maintained
3286 F:      arch/sparc/net/
3287
3288 BPF JIT for X86 32-BIT
3289 M:      Wang YanQing <[email protected]>
3290 L:      [email protected]
3291 L:      [email protected]
3292 S:      Maintained
3293 F:      arch/x86/net/bpf_jit_comp32.c
3294
3295 BPF JIT for X86 64-BIT
3296 M:      Alexei Starovoitov <[email protected]>
3297 M:      Daniel Borkmann <[email protected]>
3298 L:      [email protected]
3299 L:      [email protected]
3300 S:      Supported
3301 F:      arch/x86/net/
3302 X:      arch/x86/net/bpf_jit_comp32.c
3303
3304 BROADCOM B44 10/100 ETHERNET DRIVER
3305 M:      Michael Chan <[email protected]>
3306 L:      [email protected]
3307 S:      Supported
3308 F:      drivers/net/ethernet/broadcom/b44.*
3309
3310 BROADCOM B53 ETHERNET SWITCH DRIVER
3311 M:      Florian Fainelli <[email protected]>
3312 L:      [email protected]
3313 L:      [email protected] (subscribers-only)
3314 S:      Supported
3315 F:      drivers/net/dsa/b53/*
3316 F:      include/linux/platform_data/b53.h
3317
3318 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3319 M:      Nicolas Saenz Julienne <[email protected]>
3320 L:      [email protected]
3321 L:      [email protected] (moderated for non-subscribers)
3322 L:      [email protected] (moderated for non-subscribers)
3323 S:      Maintained
3324 T:      git git://github.com/anholt/linux
3325 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3326 F:      drivers/pci/controller/pcie-brcmstb.c
3327 F:      drivers/staging/vc04_services
3328 N:      bcm2711
3329 N:      bcm2835
3330
3331 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3332 M:      Florian Fainelli <[email protected]>
3333 M:      Ray Jui <[email protected]>
3334 M:      Scott Branden <[email protected]>
3335 M:      [email protected]
3336 S:      Maintained
3337 T:      git git://github.com/broadcom/mach-bcm
3338 F:      arch/arm/mach-bcm/
3339 N:      bcm281*
3340 N:      bcm113*
3341 N:      bcm216*
3342 N:      kona
3343
3344 BROADCOM BCM47XX MIPS ARCHITECTURE
3345 M:      Hauke Mehrtens <[email protected]>
3346 M:      Rafał Miłecki <[email protected]>
3347 L:      [email protected]
3348 S:      Maintained
3349 F:      Documentation/devicetree/bindings/mips/brcm/
3350 F:      arch/mips/bcm47xx/*
3351 F:      arch/mips/include/asm/mach-bcm47xx/*
3352
3353 BROADCOM BCM5301X ARM ARCHITECTURE
3354 M:      Hauke Mehrtens <[email protected]>
3355 M:      Rafał Miłecki <[email protected]>
3356 M:      [email protected]
3357 L:      [email protected]
3358 S:      Maintained
3359 F:      arch/arm/boot/dts/bcm470*
3360 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3361 F:      arch/arm/boot/dts/bcm953012*
3362 F:      arch/arm/mach-bcm/bcm_5301x.c
3363
3364 BROADCOM BCM53573 ARM ARCHITECTURE
3365 M:      Rafał Miłecki <[email protected]>
3366 L:      [email protected]
3367 L:      [email protected]
3368 S:      Maintained
3369 F:      arch/arm/boot/dts/bcm47189*
3370 F:      arch/arm/boot/dts/bcm53573*
3371
3372 BROADCOM BCM63XX ARM ARCHITECTURE
3373 M:      Florian Fainelli <[email protected]>
3374 M:      [email protected]
3375 L:      [email protected] (moderated for non-subscribers)
3376 S:      Maintained
3377 T:      git git://github.com/broadcom/stblinux.git
3378 N:      bcm63xx
3379
3380 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3381 M:      Kevin Cernekee <[email protected]>
3382 L:      [email protected]
3383 S:      Maintained
3384 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3385
3386 BROADCOM BCM7XXX ARM ARCHITECTURE
3387 M:      Florian Fainelli <[email protected]>
3388 M:      [email protected]
3389 L:      [email protected] (moderated for non-subscribers)
3390 S:      Maintained
3391 T:      git git://github.com/broadcom/stblinux.git
3392 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3393 F:      arch/arm/boot/dts/bcm7*.dts*
3394 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3395 F:      arch/arm/mach-bcm/*brcmstb*
3396 F:      arch/arm/mm/cache-b15-rac.c
3397 F:      drivers/bus/brcmstb_gisb.c
3398 F:      drivers/pci/controller/pcie-brcmstb.c
3399 N:      brcmstb
3400
3401 BROADCOM BMIPS CPUFREQ DRIVER
3402 M:      Markus Mayer <[email protected]>
3403 M:      [email protected]
3404 L:      [email protected]
3405 S:      Maintained
3406 F:      drivers/cpufreq/bmips-cpufreq.c
3407
3408 BROADCOM BMIPS MIPS ARCHITECTURE
3409 M:      Florian Fainelli <[email protected]>
3410 L:      [email protected]
3411 L:      [email protected]
3412 S:      Maintained
3413 T:      git git://github.com/broadcom/stblinux.git
3414 F:      arch/mips/bmips/*
3415 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3416 F:      arch/mips/include/asm/mach-bmips/*
3417 F:      arch/mips/kernel/*bmips*
3418 F:      drivers/irqchip/irq-bcm63*
3419 F:      drivers/irqchip/irq-bcm7*
3420 F:      drivers/irqchip/irq-brcmstb*
3421 F:      include/linux/bcm963xx_nvram.h
3422 F:      include/linux/bcm963xx_tag.h
3423
3424 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3425 M:      Rasesh Mody <[email protected]>
3426 M:      [email protected]
3427 L:      [email protected]
3428 S:      Supported
3429 F:      drivers/net/ethernet/broadcom/bnx2.*
3430 F:      drivers/net/ethernet/broadcom/bnx2_*
3431
3432 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3433 M:      [email protected]
3434 L:      [email protected]
3435 S:      Supported
3436 F:      drivers/scsi/bnx2fc/
3437
3438 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3439 M:      [email protected]
3440 L:      [email protected]
3441 S:      Supported
3442 F:      drivers/scsi/bnx2i/
3443
3444 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3445 M:      Ariel Elior <[email protected]>
3446 M:      Sudarsana Kalluru <[email protected]>
3447 M:      [email protected]
3448 L:      [email protected]
3449 S:      Supported
3450 F:      drivers/net/ethernet/broadcom/bnx2x/
3451
3452 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3453 M:      Michael Chan <[email protected]>
3454 L:      [email protected]
3455 S:      Supported
3456 F:      drivers/net/ethernet/broadcom/bnxt/
3457
3458 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3459 M:      Arend van Spriel <[email protected]>
3460 M:      Franky Lin <[email protected]>
3461 M:      Hante Meuleman <[email protected]>
3462 M:      Chi-Hsien Lin <[email protected]>
3463 M:      Wright Feng <[email protected]>
3464 L:      [email protected]
3465 L:      [email protected]
3466 L:      [email protected]
3467 S:      Supported
3468 F:      drivers/net/wireless/broadcom/brcm80211/
3469
3470 BROADCOM BRCMSTB GPIO DRIVER
3471 M:      Gregory Fong <[email protected]>
3472 L:      [email protected]
3473 S:      Supported
3474 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3475 F:      drivers/gpio/gpio-brcmstb.c
3476
3477 BROADCOM BRCMSTB I2C DRIVER
3478 M:      Kamal Dasu <[email protected]>
3479 L:      [email protected]
3480 L:      [email protected]
3481 S:      Supported
3482 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3483 F:      drivers/i2c/busses/i2c-brcmstb.c
3484
3485 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3486 M:      Al Cooper <[email protected]>
3487 L:      [email protected]
3488 L:      [email protected]
3489 S:      Maintained
3490 F:      drivers/phy/broadcom/phy-brcm-usb*
3491
3492 BROADCOM GENET ETHERNET DRIVER
3493 M:      Doug Berger <[email protected]>
3494 M:      Florian Fainelli <[email protected]>
3495 L:      [email protected]
3496 L:      [email protected]
3497 S:      Supported
3498 F:      drivers/net/ethernet/broadcom/genet/
3499
3500 BROADCOM IPROC ARM ARCHITECTURE
3501 M:      Ray Jui <[email protected]>
3502 M:      Scott Branden <[email protected]>
3503 M:      [email protected]
3504 L:      [email protected] (moderated for non-subscribers)
3505 S:      Maintained
3506 T:      git git://github.com/broadcom/cygnus-linux.git
3507 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3508 F:      arch/arm64/boot/dts/broadcom/stingray/*
3509 F:      drivers/clk/bcm/clk-ns*
3510 F:      drivers/clk/bcm/clk-sr*
3511 F:      drivers/pinctrl/bcm/pinctrl-ns*
3512 F:      include/dt-bindings/clock/bcm-sr*
3513 N:      iproc
3514 N:      cygnus
3515 N:      bcm[-_]nsp
3516 N:      bcm9113*
3517 N:      bcm9583*
3518 N:      bcm9585*
3519 N:      bcm9586*
3520 N:      bcm988312
3521 N:      bcm113*
3522 N:      bcm583*
3523 N:      bcm585*
3524 N:      bcm586*
3525 N:      bcm88312
3526 N:      hr2
3527 N:      stingray
3528
3529 BROADCOM KONA GPIO DRIVER
3530 M:      Ray Jui <[email protected]>
3531 L:      [email protected]
3532 S:      Supported
3533 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3534 F:      drivers/gpio/gpio-bcm-kona.c
3535
3536 BROADCOM NETXTREME-E ROCE DRIVER
3537 M:      Selvin Xavier <[email protected]>
3538 M:      Devesh Sharma <[email protected]>
3539 M:      Somnath Kotur <[email protected]>
3540 M:      Sriharsha Basavapatna <[email protected]>
3541 L:      [email protected]
3542 S:      Supported
3543 W:      http://www.broadcom.com
3544 F:      drivers/infiniband/hw/bnxt_re/
3545 F:      include/uapi/rdma/bnxt_re-abi.h
3546
3547 BROADCOM NVRAM DRIVER
3548 M:      Rafał Miłecki <[email protected]>
3549 L:      [email protected]
3550 S:      Maintained
3551 F:      drivers/firmware/broadcom/*
3552
3553 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3554 M:      Rafał Miłecki <[email protected]>
3555 L:      [email protected]
3556 S:      Maintained
3557 F:      drivers/bcma/
3558 F:      include/linux/bcma/
3559
3560 BROADCOM SPI DRIVER
3561 M:      Kamal Dasu <[email protected]>
3562 M:      [email protected]
3563 S:      Maintained
3564 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3565 F:      drivers/spi/spi-bcm-qspi.*
3566 F:      drivers/spi/spi-brcmstb-qspi.c
3567 F:      drivers/spi/spi-iproc-qspi.c
3568
3569 BROADCOM STB AVS CPUFREQ DRIVER
3570 M:      Markus Mayer <[email protected]>
3571 M:      [email protected]
3572 L:      [email protected]
3573 S:      Maintained
3574 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3575 F:      drivers/cpufreq/brcmstb*
3576
3577 BROADCOM STB AVS TMON DRIVER
3578 M:      Markus Mayer <[email protected]>
3579 M:      [email protected]
3580 L:      [email protected]
3581 S:      Maintained
3582 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3583 F:      drivers/thermal/broadcom/brcmstb*
3584
3585 BROADCOM STB DPFE DRIVER
3586 M:      Markus Mayer <[email protected]>
3587 M:      [email protected]
3588 L:      [email protected] (moderated for non-subscribers)
3589 S:      Maintained
3590 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3591 F:      drivers/memory/brcmstb_dpfe.c
3592
3593 BROADCOM STB NAND FLASH DRIVER
3594 M:      Brian Norris <[email protected]>
3595 M:      Kamal Dasu <[email protected]>
3596 L:      [email protected]
3597 L:      [email protected]
3598 S:      Maintained
3599 F:      drivers/mtd/nand/raw/brcmnand/
3600
3601 BROADCOM SYSTEMPORT ETHERNET DRIVER
3602 M:      Florian Fainelli <[email protected]>
3603 L:      [email protected]
3604 L:      [email protected]
3605 S:      Supported
3606 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3607
3608 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3609 M:      Siva Reddy Kallam <[email protected]>
3610 M:      Prashant Sreedharan <[email protected]>
3611 M:      Michael Chan <[email protected]>
3612 L:      [email protected]
3613 S:      Supported
3614 F:      drivers/net/ethernet/broadcom/tg3.*
3615
3616 BROCADE BFA FC SCSI DRIVER
3617 M:      Anil Gurumurthy <[email protected]>
3618 M:      Sudarsana Kalluru <[email protected]>
3619 L:      [email protected]
3620 S:      Supported
3621 F:      drivers/scsi/bfa/
3622
3623 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3624 M:      Rasesh Mody <[email protected]>
3625 M:      Sudarsana Kalluru <[email protected]>
3626 M:      [email protected]
3627 L:      [email protected]
3628 S:      Supported
3629 F:      drivers/net/ethernet/brocade/bna/
3630
3631 BSG (block layer generic sg v4 driver)
3632 M:      FUJITA Tomonori <[email protected]>
3633 L:      [email protected]
3634 S:      Supported
3635 F:      block/bsg.c
3636 F:      include/linux/bsg.h
3637 F:      include/uapi/linux/bsg.h
3638
3639 BT87X AUDIO DRIVER
3640 M:      Clemens Ladisch <[email protected]>
3641 L:      [email protected] (moderated for non-subscribers)
3642 S:      Maintained
3643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3644 F:      Documentation/sound/cards/bt87x.rst
3645 F:      sound/pci/bt87x.c
3646
3647 BT8XXGPIO DRIVER
3648 M:      Michael Buesch <[email protected]>
3649 S:      Maintained
3650 W:      http://bu3sch.de/btgpio.php
3651 F:      drivers/gpio/gpio-bt8xx.c
3652
3653 BTRFS FILE SYSTEM
3654 M:      Chris Mason <[email protected]>
3655 M:      Josef Bacik <[email protected]>
3656 M:      David Sterba <[email protected]>
3657 L:      [email protected]
3658 S:      Maintained
3659 W:      http://btrfs.wiki.kernel.org/
3660 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3662 F:      Documentation/filesystems/btrfs.rst
3663 F:      fs/btrfs/
3664 F:      include/linux/btrfs*
3665 F:      include/uapi/linux/btrfs*
3666
3667 BTTV VIDEO4LINUX DRIVER
3668 M:      Mauro Carvalho Chehab <[email protected]>
3669 L:      [email protected]
3670 S:      Odd fixes
3671 W:      https://linuxtv.org
3672 T:      git git://linuxtv.org/media_tree.git
3673 F:      Documentation/media/v4l-drivers/bttv*
3674 F:      drivers/media/pci/bt8xx/bttv*
3675
3676 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3677 M:      Chanwoo Choi <[email protected]>
3678 L:      [email protected]
3679 L:      [email protected]
3680 S:      Maintained
3681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3682 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3683 F:      drivers/devfreq/exynos-bus.c
3684
3685 BUSLOGIC SCSI DRIVER
3686 M:      Khalid Aziz <[email protected]>
3687 L:      [email protected]
3688 S:      Maintained
3689 F:      drivers/scsi/BusLogic.*
3690 F:      drivers/scsi/FlashPoint.*
3691
3692 C-MEDIA CMI8788 DRIVER
3693 M:      Clemens Ladisch <[email protected]>
3694 L:      [email protected] (moderated for non-subscribers)
3695 S:      Maintained
3696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3697 F:      sound/pci/oxygen/
3698
3699 C-SKY ARCHITECTURE
3700 M:      Guo Ren <[email protected]>
3701 L:      [email protected]
3702 S:      Supported
3703 T:      git https://github.com/c-sky/csky-linux.git
3704 F:      Documentation/devicetree/bindings/csky/
3705 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3706 F:      Documentation/devicetree/bindings/timer/csky,*
3707 F:      arch/csky/
3708 F:      drivers/clocksource/timer-gx6605s.c
3709 F:      drivers/clocksource/timer-mp-csky.c
3710 F:      drivers/irqchip/irq-csky-*
3711 N:      csky
3712 K:      csky
3713
3714 C6X ARCHITECTURE
3715 M:      Mark Salter <[email protected]>
3716 M:      Aurelien Jacquiot <[email protected]>
3717 L:      [email protected]
3718 S:      Maintained
3719 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3720 F:      arch/c6x/
3721
3722 CA8210 IEEE-802.15.4 RADIO DRIVER
3723 M:      Harry Morris <[email protected]>
3724 L:      [email protected]
3725 S:      Maintained
3726 W:      https://github.com/Cascoda/ca8210-linux.git
3727 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3728 F:      drivers/net/ieee802154/ca8210.c
3729
3730 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3731 M:      David Howells <[email protected]>
3732 L:      [email protected] (moderated for non-subscribers)
3733 S:      Supported
3734 F:      Documentation/filesystems/caching/cachefiles.txt
3735 F:      fs/cachefiles/
3736
3737 CADENCE MIPI-CSI2 BRIDGES
3738 M:      Maxime Ripard <[email protected]>
3739 L:      [email protected]
3740 S:      Maintained
3741 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3742 F:      drivers/media/platform/cadence/cdns-csi2*
3743
3744 CADENCE NAND DRIVER
3745 M:      Piotr Sroka <[email protected]>
3746 L:      [email protected]
3747 S:      Maintained
3748 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3749 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3750
3751 CADET FM/AM RADIO RECEIVER DRIVER
3752 M:      Hans Verkuil <[email protected]>
3753 L:      [email protected]
3754 S:      Maintained
3755 W:      https://linuxtv.org
3756 T:      git git://linuxtv.org/media_tree.git
3757 F:      drivers/media/radio/radio-cadet*
3758
3759 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3760 M:      Jonathan Corbet <[email protected]>
3761 L:      [email protected]
3762 S:      Maintained
3763 T:      git git://linuxtv.org/media_tree.git
3764 F:      Documentation/media/v4l-drivers/cafe_ccic*
3765 F:      drivers/media/platform/marvell-ccic/
3766
3767 CAIF NETWORK LAYER
3768 L:      [email protected]
3769 S:      Orphan
3770 F:      Documentation/networking/caif/
3771 F:      drivers/net/caif/
3772 F:      include/net/caif/
3773 F:      include/uapi/linux/caif/
3774 F:      net/caif/
3775
3776 CAKE QDISC
3777 M:      Toke Høiland-Jørgensen <[email protected]>
3778 L:      [email protected] (moderated for non-subscribers)
3779 S:      Maintained
3780 F:      net/sched/sch_cake.c
3781
3782 CAN NETWORK DRIVERS
3783 M:      Wolfgang Grandegger <[email protected]>
3784 M:      Marc Kleine-Budde <[email protected]>
3785 L:      [email protected]
3786 S:      Maintained
3787 W:      https://github.com/linux-can
3788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3790 F:      Documentation/devicetree/bindings/net/can/
3791 F:      drivers/net/can/
3792 F:      include/linux/can/dev.h
3793 F:      include/linux/can/led.h
3794 F:      include/linux/can/platform/
3795 F:      include/linux/can/rx-offload.h
3796 F:      include/uapi/linux/can/error.h
3797 F:      include/uapi/linux/can/netlink.h
3798 F:      include/uapi/linux/can/vxcan.h
3799
3800 CAN NETWORK LAYER
3801 M:      Oliver Hartkopp <[email protected]>
3802 M:      Marc Kleine-Budde <[email protected]>
3803 L:      [email protected]
3804 S:      Maintained
3805 W:      https://github.com/linux-can
3806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3808 F:      Documentation/networking/can.rst
3809 F:      include/linux/can/core.h
3810 F:      include/linux/can/skb.h
3811 F:      include/net/netns/can.h
3812 F:      include/uapi/linux/can.h
3813 F:      include/uapi/linux/can/bcm.h
3814 F:      include/uapi/linux/can/gw.h
3815 F:      include/uapi/linux/can/raw.h
3816 F:      net/can/
3817
3818 CAN-J1939 NETWORK LAYER
3819 M:      Robin van der Gracht <[email protected]>
3820 M:      Oleksij Rempel <[email protected]>
3821 R:      Pengutronix Kernel Team <[email protected]>
3822 L:      [email protected]
3823 S:      Maintained
3824 F:      Documentation/networking/j1939.rst
3825 F:      include/uapi/linux/can/j1939.h
3826 F:      net/can/j1939/
3827
3828 CAPABILITIES
3829 M:      Serge Hallyn <[email protected]>
3830 L:      [email protected]
3831 S:      Supported
3832 F:      include/linux/capability.h
3833 F:      include/uapi/linux/capability.h
3834 F:      kernel/capability.c
3835 F:      security/commoncap.c
3836
3837 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3838 M:      Kevin Tsai <[email protected]>
3839 S:      Maintained
3840 F:      drivers/iio/light/cm*
3841
3842 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3843 M:      Christian Lamparter <[email protected]>
3844 L:      [email protected]
3845 S:      Maintained
3846 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3847 F:      drivers/net/wireless/ath/carl9170/
3848
3849 CAVIUM I2C DRIVER
3850 M:      Robert Richter <[email protected]>
3851 S:      Supported
3852 W:      http://www.marvell.com
3853 F:      drivers/i2c/busses/i2c-octeon*
3854 F:      drivers/i2c/busses/i2c-thunderx*
3855
3856 CAVIUM LIQUIDIO NETWORK DRIVER
3857 M:      Derek Chickles <[email protected]>
3858 M:      Satanand Burla <[email protected]>
3859 M:      Felix Manlunas <[email protected]>
3860 L:      [email protected]
3861 S:      Supported
3862 W:      http://www.marvell.com
3863 F:      drivers/net/ethernet/cavium/liquidio/
3864
3865 CAVIUM MMC DRIVER
3866 M:      Robert Richter <[email protected]>
3867 S:      Supported
3868 W:      http://www.marvell.com
3869 F:      drivers/mmc/host/cavium*
3870
3871 CAVIUM OCTEON-TX CRYPTO DRIVER
3872 M:      George Cherian <[email protected]>
3873 L:      [email protected]
3874 S:      Supported
3875 W:      http://www.marvell.com
3876 F:      drivers/crypto/cavium/cpt/
3877
3878 CAVIUM THUNDERX2 ARM64 SOC
3879 M:      Robert Richter <[email protected]>
3880 L:      [email protected] (moderated for non-subscribers)
3881 S:      Maintained
3882 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3883 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3884
3885 CC2520 IEEE-802.15.4 RADIO DRIVER
3886 M:      Varka Bhadram <[email protected]>
3887 L:      [email protected]
3888 S:      Maintained
3889 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3890 F:      drivers/net/ieee802154/cc2520.c
3891 F:      include/linux/spi/cc2520.h
3892
3893 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3894 M:      Gilad Ben-Yossef <[email protected]>
3895 L:      [email protected]
3896 S:      Supported
3897 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3898 F:      drivers/crypto/ccree/
3899
3900 CEC FRAMEWORK
3901 M:      Hans Verkuil <[email protected]>
3902 L:      [email protected]
3903 S:      Supported
3904 W:      http://linuxtv.org
3905 T:      git git://linuxtv.org/media_tree.git
3906 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3907 F:      Documentation/devicetree/bindings/media/cec.txt
3908 F:      Documentation/media/kapi/cec-core.rst
3909 F:      Documentation/media/uapi/cec
3910 F:      drivers/media/cec/
3911 F:      drivers/media/rc/keymaps/rc-cec.c
3912 F:      include/media/cec-notifier.h
3913 F:      include/media/cec.h
3914 F:      include/uapi/linux/cec-funcs.h
3915 F:      include/uapi/linux/cec.h
3916
3917 CEC GPIO DRIVER
3918 M:      Hans Verkuil <[email protected]>
3919 L:      [email protected]
3920 S:      Supported
3921 W:      http://linuxtv.org
3922 T:      git git://linuxtv.org/media_tree.git
3923 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3924 F:      drivers/media/platform/cec-gpio/
3925
3926 CELL BROADBAND ENGINE ARCHITECTURE
3927 M:      Arnd Bergmann <[email protected]>
3928 L:      [email protected]
3929 S:      Supported
3930 W:      http://www.ibm.com/developerworks/power/cell/
3931 F:      arch/powerpc/include/asm/cell*.h
3932 F:      arch/powerpc/include/asm/spu*.h
3933 F:      arch/powerpc/include/uapi/asm/spu*.h
3934 F:      arch/powerpc/oprofile/*cell*
3935 F:      arch/powerpc/platforms/cell/
3936
3937 CEPH COMMON CODE (LIBCEPH)
3938 M:      Ilya Dryomov <[email protected]>
3939 M:      Jeff Layton <[email protected]>
3940 M:      Sage Weil <[email protected]>
3941 L:      [email protected]
3942 S:      Supported
3943 W:      http://ceph.com/
3944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3945 T:      git git://github.com/ceph/ceph-client.git
3946 F:      include/linux/ceph/
3947 F:      include/linux/crush/
3948 F:      net/ceph/
3949
3950 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3951 M:      Jeff Layton <[email protected]>
3952 M:      Sage Weil <[email protected]>
3953 M:      Ilya Dryomov <[email protected]>
3954 L:      [email protected]
3955 S:      Supported
3956 W:      http://ceph.com/
3957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3958 T:      git git://github.com/ceph/ceph-client.git
3959 F:      Documentation/filesystems/ceph.rst
3960 F:      fs/ceph/
3961
3962 CERTIFICATE HANDLING
3963 M:      David Howells <[email protected]>
3964 M:      David Woodhouse <[email protected]>
3965 L:      [email protected]
3966 S:      Maintained
3967 F:      Documentation/admin-guide/module-signing.rst
3968 F:      certs/
3969 F:      scripts/extract-cert.c
3970 F:      scripts/sign-file.c
3971
3972 CFAG12864B LCD DRIVER
3973 M:      Miguel Ojeda Sandonis <[email protected]>
3974 S:      Maintained
3975 F:      drivers/auxdisplay/cfag12864b.c
3976 F:      include/linux/cfag12864b.h
3977
3978 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3979 M:      Miguel Ojeda Sandonis <[email protected]>
3980 S:      Maintained
3981 F:      drivers/auxdisplay/cfag12864bfb.c
3982 F:      include/linux/cfag12864b.h
3983
3984 CHAR and MISC DRIVERS
3985 M:      Arnd Bergmann <[email protected]>
3986 M:      Greg Kroah-Hartman <[email protected]>
3987 S:      Supported
3988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3989 F:      drivers/char/
3990 F:      drivers/misc/
3991 F:      include/linux/miscdevice.h
3992
3993 CHECKPATCH
3994 M:      Andy Whitcroft <[email protected]>
3995 M:      Joe Perches <[email protected]>
3996 S:      Maintained
3997 F:      scripts/checkpatch.pl
3998
3999 CHINESE DOCUMENTATION
4000 M:      Harry Wei <[email protected]>
4001 M:      Alex Shi <[email protected]>
4002 L:      [email protected] (subscribers-only)
4003 S:      Maintained
4004 F:      Documentation/translations/zh_CN/
4005
4006 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4007 M:      Peter Chen <[email protected]>
4008 L:      [email protected]
4009 S:      Maintained
4010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4011 F:      drivers/usb/chipidea/
4012
4013 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4014 M:      Hans de Goede <[email protected]>
4015 L:      [email protected]
4016 S:      Maintained
4017 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4018 F:      drivers/input/touchscreen/chipone_icn8318.c
4019
4020 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4021 M:      Hans de Goede <[email protected]>
4022 L:      [email protected]
4023 S:      Maintained
4024 F:      drivers/input/touchscreen/chipone_icn8505.c
4025
4026 CHROME HARDWARE PLATFORM SUPPORT
4027 M:      Benson Leung <[email protected]>
4028 M:      Enric Balletbo i Serra <[email protected]>
4029 S:      Maintained
4030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4031 F:      drivers/platform/chrome/
4032
4033 CHROMEOS EC CODEC DRIVER
4034 M:      Cheng-Yi Chiang <[email protected]>
4035 R:      Enric Balletbo i Serra <[email protected]>
4036 R:      Guenter Roeck <[email protected]>
4037 S:      Maintained
4038 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4039 F:      sound/soc/codecs/cros_ec_codec.*
4040
4041 CHROMEOS EC SUBDRIVERS
4042 M:      Benson Leung <[email protected]>
4043 M:      Enric Balletbo i Serra <[email protected]>
4044 R:      Guenter Roeck <[email protected]>
4045 S:      Maintained
4046 F:      drivers/power/supply/cros_usbpd-charger.c
4047 N:      cros_ec
4048 N:      cros-ec
4049
4050 CIRRUS LOGIC AUDIO CODEC DRIVERS
4051 M:      James Schulman <[email protected]>
4052 M:      David Rhodes <[email protected]>
4053 L:      [email protected] (moderated for non-subscribers)
4054 S:      Maintained
4055 F:      sound/soc/codecs/cs*
4056
4057 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4058 M:      Hartley Sweeten <[email protected]>
4059 L:      [email protected]
4060 S:      Maintained
4061 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4062
4063 CIRRUS LOGIC LOCHNAGAR DRIVER
4064 M:      Charles Keepax <[email protected]>
4065 M:      Richard Fitzgerald <[email protected]>
4066 L:      [email protected]
4067 S:      Supported
4068 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
4069 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
4070 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
4071 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
4072 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
4073 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
4074 F:      Documentation/hwmon/lochnagar.rst
4075 F:      drivers/clk/clk-lochnagar.c
4076 F:      drivers/hwmon/lochnagar-hwmon.c
4077 F:      drivers/mfd/lochnagar-i2c.c
4078 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4079 F:      drivers/regulator/lochnagar-regulator.c
4080 F:      include/dt-bindings/clk/lochnagar.h
4081 F:      include/dt-bindings/pinctrl/lochnagar.h
4082 F:      include/linux/mfd/lochnagar*
4083 F:      sound/soc/codecs/lochnagar-sc.c
4084
4085 CIRRUS LOGIC MADERA CODEC DRIVERS
4086 M:      Charles Keepax <[email protected]>
4087 M:      Richard Fitzgerald <[email protected]>
4088 L:      [email protected] (moderated for non-subscribers)
4089 L:      [email protected]
4090 S:      Supported
4091 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4092 T:      git https://github.com/CirrusLogic/linux-drivers.git
4093 F:      Documentation/devicetree/bindings/mfd/madera.txt
4094 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4095 F:      Documentation/devicetree/bindings/sound/madera.txt
4096 F:      drivers/gpio/gpio-madera*
4097 F:      drivers/irqchip/irq-madera*
4098 F:      drivers/mfd/cs47l*
4099 F:      drivers/mfd/madera*
4100 F:      drivers/pinctrl/cirrus/*
4101 F:      include/dt-bindings/sound/madera*
4102 F:      include/linux/irqchip/irq-madera*
4103 F:      include/linux/mfd/madera/*
4104 F:      include/sound/madera*
4105 F:      sound/soc/codecs/cs47l*
4106 F:      sound/soc/codecs/madera*
4107
4108 CISCO FCOE HBA DRIVER
4109 M:      Satish Kharat <[email protected]>
4110 M:      Sesidhar Baddela <[email protected]>
4111 M:      Karan Tilak Kumar <[email protected]>
4112 L:      [email protected]
4113 S:      Supported
4114 F:      drivers/scsi/fnic/
4115
4116 CISCO SCSI HBA DRIVER
4117 M:      Karan Tilak Kumar <[email protected]>
4118 M:      Sesidhar Baddela <[email protected]>
4119 L:      [email protected]
4120 S:      Supported
4121 F:      drivers/scsi/snic/
4122
4123 CISCO VIC ETHERNET NIC DRIVER
4124 M:      Christian Benvenuti <[email protected]>
4125 M:      Govindarajulu Varadarajan <[email protected]>
4126 S:      Supported
4127 F:      drivers/net/ethernet/cisco/enic/
4128
4129 CISCO VIC LOW LATENCY NIC DRIVER
4130 M:      Christian Benvenuti <[email protected]>
4131 M:      Nelson Escobar <[email protected]>
4132 M:      Parvi Kaustubhi <[email protected]>
4133 S:      Supported
4134 F:      drivers/infiniband/hw/usnic/
4135
4136 CLANG-FORMAT FILE
4137 M:      Miguel Ojeda <[email protected]>
4138 S:      Maintained
4139 F:      .clang-format
4140
4141 CLANG/LLVM BUILD SUPPORT
4142 L:      [email protected]
4143 S:      Supported
4144 W:      https://clangbuiltlinux.github.io/
4145 B:      https://github.com/ClangBuiltLinux/linux/issues
4146 C:      irc://chat.freenode.net/clangbuiltlinux
4147 F:      Documentation/kbuild/llvm.rst
4148 K:      \b(?i:clang|llvm)\b
4149
4150 CLEANCACHE API
4151 M:      Konrad Rzeszutek Wilk <[email protected]>
4152 L:      [email protected]
4153 S:      Maintained
4154 F:      include/linux/cleancache.h
4155 F:      mm/cleancache.c
4156
4157 CLK API
4158 M:      Russell King <[email protected]>
4159 L:      [email protected]
4160 S:      Maintained
4161 F:      include/linux/clk.h
4162
4163 CLOCKSOURCE, CLOCKEVENT DRIVERS
4164 M:      Daniel Lezcano <[email protected]>
4165 M:      Thomas Gleixner <[email protected]>
4166 L:      [email protected]
4167 S:      Supported
4168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4169 F:      Documentation/devicetree/bindings/timer/
4170 F:      drivers/clocksource/
4171
4172 CMPC ACPI DRIVER
4173 M:      Thadeu Lima de Souza Cascardo <[email protected]>
4174 M:      Daniel Oliveira Nascimento <[email protected]>
4175 L:      [email protected]
4176 S:      Supported
4177 F:      drivers/platform/x86/classmate-laptop.c
4178
4179 COBALT MEDIA DRIVER
4180 M:      Hans Verkuil <[email protected]>
4181 L:      [email protected]
4182 S:      Supported
4183 W:      https://linuxtv.org
4184 T:      git git://linuxtv.org/media_tree.git
4185 F:      drivers/media/pci/cobalt/
4186
4187 COCCINELLE/Semantic Patches (SmPL)
4188 M:      Julia Lawall <[email protected]>
4189 M:      Gilles Muller <[email protected]>
4190 M:      Nicolas Palix <[email protected]>
4191 M:      Michal Marek <[email protected]>
4192 L:      [email protected] (moderated for non-subscribers)
4193 S:      Supported
4194 W:      http://coccinelle.lip6.fr/
4195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4196 F:      Documentation/dev-tools/coccinelle.rst
4197 F:      scripts/coccicheck
4198 F:      scripts/coccinelle/
4199
4200 CODA FILE SYSTEM
4201 M:      Jan Harkes <[email protected]>
4202 M:      [email protected]
4203 L:      [email protected]
4204 S:      Maintained
4205 W:      http://www.coda.cs.cmu.edu/
4206 F:      Documentation/filesystems/coda.txt
4207 F:      fs/coda/
4208 F:      include/linux/coda*.h
4209 F:      include/uapi/linux/coda*.h
4210
4211 CODA V4L2 MEM2MEM DRIVER
4212 M:      Philipp Zabel <[email protected]>
4213 L:      [email protected]
4214 S:      Maintained
4215 F:      Documentation/devicetree/bindings/media/coda.txt
4216 F:      drivers/media/platform/coda/
4217
4218 CODE OF CONDUCT
4219 M:      Greg Kroah-Hartman <[email protected]>
4220 S:      Supported
4221 F:      Documentation/process/code-of-conduct-interpretation.rst
4222 F:      Documentation/process/code-of-conduct.rst
4223
4224 COMMON CLK FRAMEWORK
4225 M:      Michael Turquette <[email protected]>
4226 M:      Stephen Boyd <[email protected]>
4227 L:      [email protected]
4228 S:      Maintained
4229 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4231 F:      Documentation/devicetree/bindings/clock/
4232 F:      drivers/clk/
4233 F:      include/linux/clk-pr*
4234 F:      include/linux/clk/
4235 F:      include/linux/of_clk.h
4236 X:      drivers/clk/clkdev.c
4237
4238 COMMON INTERNET FILE SYSTEM (CIFS)
4239 M:      Steve French <[email protected]>
4240 L:      [email protected]
4241 L:      [email protected] (moderated for non-subscribers)
4242 S:      Supported
4243 W:      http://linux-cifs.samba.org/
4244 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4245 F:      Documentation/admin-guide/cifs/
4246 F:      fs/cifs/
4247
4248 COMPACTPCI HOTPLUG CORE
4249 M:      Scott Murray <[email protected]>
4250 L:      [email protected]
4251 S:      Maintained
4252 F:      drivers/pci/hotplug/cpci_hotplug*
4253
4254 COMPACTPCI HOTPLUG GENERIC DRIVER
4255 M:      Scott Murray <[email protected]>
4256 L:      [email protected]
4257 S:      Maintained
4258 F:      drivers/pci/hotplug/cpcihp_generic.c
4259
4260 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4261 M:      Scott Murray <[email protected]>
4262 L:      [email protected]
4263 S:      Maintained
4264 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4265
4266 COMPAL LAPTOP SUPPORT
4267 M:      Cezary Jackiewicz <[email protected]>
4268 L:      [email protected]
4269 S:      Maintained
4270 F:      drivers/platform/x86/compal-laptop.c
4271
4272 COMPILER ATTRIBUTES
4273 M:      Miguel Ojeda <[email protected]>
4274 S:      Maintained
4275 F:      include/linux/compiler_attributes.h
4276
4277 CONEXANT ACCESSRUNNER USB DRIVER
4278 L:      [email protected]
4279 S:      Orphan
4280 W:      http://accessrunner.sourceforge.net/
4281 F:      drivers/usb/atm/cxacru.c
4282
4283 CONFIGFS
4284 M:      Joel Becker <[email protected]>
4285 M:      Christoph Hellwig <[email protected]>
4286 S:      Supported
4287 T:      git git://git.infradead.org/users/hch/configfs.git
4288 F:      fs/configfs/
4289 F:      include/linux/configfs.h
4290
4291 CONNECTOR
4292 M:      Evgeniy Polyakov <[email protected]>
4293 L:      [email protected]
4294 S:      Maintained
4295 F:      drivers/connector/
4296
4297 CONTROL GROUP (CGROUP)
4298 M:      Tejun Heo <[email protected]>
4299 M:      Li Zefan <[email protected]>
4300 M:      Johannes Weiner <[email protected]>
4301 L:      [email protected]
4302 S:      Maintained
4303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4304 F:      Documentation/admin-guide/cgroup-v1/
4305 F:      Documentation/admin-guide/cgroup-v2.rst
4306 F:      include/linux/cgroup*
4307 F:      kernel/cgroup/
4308
4309 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4310 M:      Tejun Heo <[email protected]>
4311 M:      Jens Axboe <[email protected]>
4312 L:      [email protected]
4313 L:      [email protected]
4314 T:      git git://git.kernel.dk/linux-block
4315 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4316 F:      block/bfq-cgroup.c
4317 F:      block/blk-cgroup.c
4318 F:      block/blk-iolatency.c
4319 F:      block/blk-throttle.c
4320 F:      include/linux/blk-cgroup.h
4321
4322 CONTROL GROUP - CPUSET
4323 M:      Li Zefan <[email protected]>
4324 L:      [email protected]
4325 S:      Maintained
4326 W:      http://www.bullopensource.org/cpuset/
4327 W:      http://oss.sgi.com/projects/cpusets/
4328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4329 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4330 F:      include/linux/cpuset.h
4331 F:      kernel/cgroup/cpuset.c
4332
4333 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4334 M:      Johannes Weiner <[email protected]>
4335 M:      Michal Hocko <[email protected]>
4336 M:      Vladimir Davydov <[email protected]>
4337 L:      [email protected]
4338 L:      [email protected]
4339 S:      Maintained
4340 F:      mm/memcontrol.c
4341 F:      mm/swap_cgroup.c
4342
4343 CORETEMP HARDWARE MONITORING DRIVER
4344 M:      Fenghua Yu <[email protected]>
4345 L:      [email protected]
4346 S:      Maintained
4347 F:      Documentation/hwmon/coretemp.rst
4348 F:      drivers/hwmon/coretemp.c
4349
4350 COSA/SRP SYNC SERIAL DRIVER
4351 M:      Jan "Yenya" Kasprzak <[email protected]>
4352 S:      Maintained
4353 W:      http://www.fi.muni.cz/~kas/cosa/
4354 F:      drivers/net/wan/cosa*
4355
4356 COUNTER SUBSYSTEM
4357 M:      William Breathitt Gray <[email protected]>
4358 L:      [email protected]
4359 S:      Maintained
4360 F:      Documentation/ABI/testing/sysfs-bus-counter*
4361 F:      Documentation/driver-api/generic-counter.rst
4362 F:      drivers/counter/
4363 F:      include/linux/counter.h
4364 F:      include/linux/counter_enum.h
4365
4366 CPMAC ETHERNET DRIVER
4367 M:      Florian Fainelli <[email protected]>
4368 L:      [email protected]
4369 S:      Maintained
4370 F:      drivers/net/ethernet/ti/cpmac.c
4371
4372 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4373 M:      Viresh Kumar <[email protected]>
4374 M:      Sudeep Holla <[email protected]>
4375 L:      [email protected]
4376 S:      Maintained
4377 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4378 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4379
4380 CPU FREQUENCY SCALING FRAMEWORK
4381 M:      "Rafael J. Wysocki" <[email protected]>
4382 M:      Viresh Kumar <[email protected]>
4383 L:      [email protected]
4384 S:      Maintained
4385 B:      https://bugzilla.kernel.org
4386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4388 F:      Documentation/admin-guide/pm/cpufreq.rst
4389 F:      Documentation/admin-guide/pm/intel_pstate.rst
4390 F:      Documentation/cpu-freq/
4391 F:      Documentation/devicetree/bindings/cpufreq/
4392 F:      drivers/cpufreq/
4393 F:      include/linux/cpufreq.h
4394 F:      include/linux/sched/cpufreq.h
4395 F:      kernel/sched/cpufreq*.c
4396 F:      tools/testing/selftests/cpufreq/
4397
4398 CPU IDLE TIME MANAGEMENT FRAMEWORK
4399 M:      "Rafael J. Wysocki" <[email protected]>
4400 M:      Daniel Lezcano <[email protected]>
4401 L:      [email protected]
4402 S:      Maintained
4403 B:      https://bugzilla.kernel.org
4404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4405 F:      Documentation/admin-guide/pm/cpuidle.rst
4406 F:      Documentation/driver-api/pm/cpuidle.rst
4407 F:      drivers/cpuidle/*
4408 F:      include/linux/cpuidle.h
4409
4410 CPU POWER MONITORING SUBSYSTEM
4411 M:      Thomas Renninger <[email protected]>
4412 M:      Shuah Khan <[email protected]>
4413 M:      Shuah Khan <[email protected]>
4414 L:      [email protected]
4415 S:      Maintained
4416 F:      tools/power/cpupower/
4417
4418 CPUID/MSR DRIVER
4419 M:      "H. Peter Anvin" <[email protected]>
4420 S:      Maintained
4421 F:      arch/x86/kernel/cpuid.c
4422 F:      arch/x86/kernel/msr.c
4423
4424 CPUIDLE DRIVER - ARM BIG LITTLE
4425 M:      Lorenzo Pieralisi <[email protected]>
4426 M:      Daniel Lezcano <[email protected]>
4427 L:      [email protected]
4428 L:      [email protected]
4429 S:      Maintained
4430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4431 F:      drivers/cpuidle/cpuidle-big_little.c
4432
4433 CPUIDLE DRIVER - ARM EXYNOS
4434 M:      Bartlomiej Zolnierkiewicz <[email protected]>
4435 M:      Daniel Lezcano <[email protected]>
4436 M:      Kukjin Kim <[email protected]>
4437 L:      [email protected]
4438 L:      [email protected]
4439 S:      Supported
4440 F:      arch/arm/mach-exynos/pm.c
4441 F:      drivers/cpuidle/cpuidle-exynos.c
4442
4443 CPUIDLE DRIVER - ARM PSCI
4444 M:      Lorenzo Pieralisi <[email protected]>
4445 M:      Sudeep Holla <[email protected]>
4446 L:      [email protected]
4447 L:      [email protected]
4448 S:      Supported
4449 F:      drivers/cpuidle/cpuidle-psci.c
4450
4451 CRAMFS FILESYSTEM
4452 M:      Nicolas Pitre <[email protected]>
4453 S:      Maintained
4454 F:      Documentation/filesystems/cramfs.rst
4455 F:      fs/cramfs/
4456
4457 CREATIVE SB0540
4458 M:      Bastien Nocera <[email protected]>
4459 L:      [email protected]
4460 S:      Maintained
4461 F:      drivers/hid/hid-creative-sb0540.c
4462
4463 CRYPTO API
4464 M:      Herbert Xu <[email protected]>
4465 M:      "David S. Miller" <[email protected]>
4466 L:      [email protected]
4467 S:      Maintained
4468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4470 F:      Documentation/crypto/
4471 F:      Documentation/devicetree/bindings/crypto/
4472 F:      arch/*/crypto/
4473 F:      crypto/
4474 F:      drivers/crypto/
4475 F:      include/crypto/
4476 F:      include/linux/crypto*
4477 F:      lib/crypto/
4478
4479 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4480 M:      Neil Horman <[email protected]>
4481 L:      [email protected]
4482 S:      Maintained
4483 F:      crypto/ansi_cprng.c
4484 F:      crypto/rng.c
4485
4486 CS3308 MEDIA DRIVER
4487 M:      Hans Verkuil <[email protected]>
4488 L:      [email protected]
4489 S:      Odd Fixes
4490 W:      http://linuxtv.org
4491 T:      git git://linuxtv.org/media_tree.git
4492 F:      drivers/media/i2c/cs3308.c
4493
4494 CS5535 Audio ALSA driver
4495 M:      Jaya Kumar <[email protected]>
4496 S:      Maintained
4497 F:      sound/pci/cs5535audio/
4498
4499 CSI DRIVERS FOR ALLWINNER V3s
4500 M:      Yong Deng <[email protected]>
4501 L:      [email protected]
4502 S:      Maintained
4503 T:      git git://linuxtv.org/media_tree.git
4504 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4505 F:      drivers/media/platform/sunxi/sun6i-csi/
4506
4507 CW1200 WLAN driver
4508 M:      Solomon Peachy <[email protected]>
4509 S:      Maintained
4510 F:      drivers/net/wireless/st/cw1200/
4511
4512 CX18 VIDEO4LINUX DRIVER
4513 M:      Andy Walls <[email protected]>
4514 L:      [email protected]
4515 S:      Maintained
4516 W:      https://linuxtv.org
4517 T:      git git://linuxtv.org/media_tree.git
4518 F:      drivers/media/pci/cx18/
4519 F:      include/uapi/linux/ivtv*
4520
4521 CX2341X MPEG ENCODER HELPER MODULE
4522 M:      Hans Verkuil <[email protected]>
4523 L:      [email protected]
4524 S:      Maintained
4525 W:      https://linuxtv.org
4526 T:      git git://linuxtv.org/media_tree.git
4527 F:      drivers/media/common/cx2341x*
4528 F:      include/media/drv-intf/cx2341x.h
4529
4530 CX24120 MEDIA DRIVER
4531 M:      Jemma Denson <[email protected]>
4532 M:      Patrick Boettcher <[email protected]>
4533 L:      [email protected]
4534 S:      Maintained
4535 W:      https://linuxtv.org
4536 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4537 F:      drivers/media/dvb-frontends/cx24120*
4538
4539 CX88 VIDEO4LINUX DRIVER
4540 M:      Mauro Carvalho Chehab <[email protected]>
4541 L:      [email protected]
4542 S:      Odd fixes
4543 W:      https://linuxtv.org
4544 T:      git git://linuxtv.org/media_tree.git
4545 F:      Documentation/media/v4l-drivers/cx88*
4546 F:      drivers/media/pci/cx88/
4547
4548 CXD2820R MEDIA DRIVER
4549 M:      Antti Palosaari <[email protected]>
4550 L:      [email protected]
4551 S:      Maintained
4552 W:      https://linuxtv.org
4553 W:      http://palosaari.fi/linux/
4554 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4555 T:      git git://linuxtv.org/anttip/media_tree.git
4556 F:      drivers/media/dvb-frontends/cxd2820r*
4557
4558 CXGB3 ETHERNET DRIVER (CXGB3)
4559 M:      Vishal Kulkarni <[email protected]>
4560 L:      [email protected]
4561 S:      Supported
4562 W:      http://www.chelsio.com
4563 F:      drivers/net/ethernet/chelsio/cxgb3/
4564
4565 CXGB3 ISCSI DRIVER (CXGB3I)
4566 M:      Karen Xie <[email protected]>
4567 L:      [email protected]
4568 S:      Supported
4569 W:      http://www.chelsio.com
4570 F:      drivers/scsi/cxgbi/cxgb3i
4571
4572 CXGB4 CRYPTO DRIVER (chcr)
4573 M:      Ayush Sawal <[email protected]>
4574 M:      Vinay Kumar Yadav <[email protected]>
4575 M:      Rohit Maheshwari <[email protected]>
4576 L:      [email protected]
4577 S:      Supported
4578 W:      http://www.chelsio.com
4579 F:      drivers/crypto/chelsio
4580
4581 CXGB4 ETHERNET DRIVER (CXGB4)
4582 M:      Vishal Kulkarni <[email protected]>
4583 L:      [email protected]
4584 S:      Supported
4585 W:      http://www.chelsio.com
4586 F:      drivers/net/ethernet/chelsio/cxgb4/
4587
4588 CXGB4 ISCSI DRIVER (CXGB4I)
4589 M:      Karen Xie <[email protected]>
4590 L:      [email protected]
4591 S:      Supported
4592 W:      http://www.chelsio.com
4593 F:      drivers/scsi/cxgbi/cxgb4i
4594
4595 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4596 M:      Potnuri Bharat Teja <[email protected]>
4597 L:      [email protected]
4598 S:      Supported
4599 W:      http://www.openfabrics.org
4600 F:      drivers/infiniband/hw/cxgb4/
4601 F:      include/uapi/rdma/cxgb4-abi.h
4602
4603 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4604 M:      Vishal Kulkarni <[email protected]>
4605 L:      [email protected]
4606 S:      Supported
4607 W:      http://www.chelsio.com
4608 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4609
4610 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4611 M:      Frederic Barrat <[email protected]>
4612 M:      Andrew Donnellan <[email protected]>
4613 L:      [email protected]
4614 S:      Supported
4615 F:      Documentation/ABI/testing/sysfs-class-cxl
4616 F:      Documentation/powerpc/cxl.rst
4617 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4618 F:      drivers/misc/cxl/
4619 F:      include/misc/cxl*
4620 F:      include/uapi/misc/cxl.h
4621
4622 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4623 M:      Manoj N. Kumar <[email protected]>
4624 M:      Matthew R. Ochs <[email protected]>
4625 M:      Uma Krishnan <[email protected]>
4626 L:      [email protected]
4627 S:      Supported
4628 F:      Documentation/powerpc/cxlflash.rst
4629 F:      drivers/scsi/cxlflash/
4630 F:      include/uapi/scsi/cxlflash_ioctl.h
4631
4632 CYBERPRO FB DRIVER
4633 M:      Russell King <[email protected]>
4634 L:      [email protected] (moderated for non-subscribers)
4635 S:      Maintained
4636 W:      http://www.armlinux.org.uk/
4637 F:      drivers/video/fbdev/cyber2000fb.*
4638
4639 CYCLADES ASYNC MUX DRIVER
4640 S:      Orphan
4641 W:      http://www.cyclades.com/
4642 F:      drivers/tty/cyclades.c
4643 F:      include/linux/cyclades.h
4644 F:      include/uapi/linux/cyclades.h
4645
4646 CYCLADES PC300 DRIVER
4647 S:      Orphan
4648 W:      http://www.cyclades.com/
4649 F:      drivers/net/wan/pc300*
4650
4651 CYPRESS_FIRMWARE MEDIA DRIVER
4652 M:      Antti Palosaari <[email protected]>
4653 L:      [email protected]
4654 S:      Maintained
4655 W:      https://linuxtv.org
4656 W:      http://palosaari.fi/linux/
4657 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4658 T:      git git://linuxtv.org/anttip/media_tree.git
4659 F:      drivers/media/common/cypress_firmware*
4660
4661 CYTTSP TOUCHSCREEN DRIVER
4662 M:      Ferruh Yigit <[email protected]>
4663 L:      [email protected]
4664 S:      Supported
4665 F:      drivers/input/touchscreen/cyttsp*
4666 F:      include/linux/input/cyttsp.h
4667
4668 D-LINK DIR-685 TOUCHKEYS DRIVER
4669 M:      Linus Walleij <[email protected]>
4670 L:      [email protected]
4671 S:      Supported
4672 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4673
4674 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4675 M:      Joshua Kinard <[email protected]>
4676 S:      Maintained
4677 F:      drivers/rtc/rtc-ds1685.c
4678 F:      include/linux/rtc/ds1685.h
4679
4680 DAMA SLAVE for AX.25
4681 M:      Joerg Reuter <[email protected]>
4682 L:      [email protected]
4683 S:      Maintained
4684 W:      http://yaina.de/jreuter/
4685 W:      http://www.qsl.net/dl1bke/
4686 F:      net/ax25/af_ax25.c
4687 F:      net/ax25/ax25_dev.c
4688 F:      net/ax25/ax25_ds_*
4689 F:      net/ax25/ax25_in.c
4690 F:      net/ax25/ax25_out.c
4691 F:      net/ax25/ax25_timer.c
4692 F:      net/ax25/sysctl_net_ax25.c
4693
4694 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4695 L:      [email protected]
4696 S:      Orphan
4697 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4698 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4699
4700 DC390/AM53C974 SCSI driver
4701 M:      Hannes Reinecke <[email protected]>
4702 L:      [email protected]
4703 S:      Maintained
4704 F:      drivers/scsi/am53c974.c
4705
4706 DC395x SCSI driver
4707 M:      Oliver Neukum <[email protected]>
4708 M:      Ali Akcaagac <[email protected]>
4709 M:      Jamie Lenehan <[email protected]>
4710 L:      [email protected]
4711 S:      Maintained
4712 W:      http://twibble.org/dist/dc395x/
4713 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4714 F:      Documentation/scsi/dc395x.rst
4715 F:      drivers/scsi/dc395x.*
4716
4717 DCCP PROTOCOL
4718 M:      Gerrit Renker <[email protected]>
4719 L:      [email protected]
4720 S:      Maintained
4721 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4722 F:      include/linux/dccp.h
4723 F:      include/linux/tfrc.h
4724 F:      include/uapi/linux/dccp.h
4725 F:      net/dccp/
4726
4727 DECnet NETWORK LAYER
4728 L:      [email protected]
4729 S:      Orphan
4730 W:      http://linux-decnet.sourceforge.net
4731 F:      Documentation/networking/decnet.txt
4732 F:      net/decnet/
4733
4734 DECSTATION PLATFORM SUPPORT
4735 M:      "Maciej W. Rozycki" <[email protected]>
4736 L:      [email protected]
4737 S:      Maintained
4738 W:      http://www.linux-mips.org/wiki/DECstation
4739 F:      arch/mips/dec/
4740 F:      arch/mips/include/asm/dec/
4741 F:      arch/mips/include/asm/mach-dec/
4742
4743 DEFXX FDDI NETWORK DRIVER
4744 M:      "Maciej W. Rozycki" <[email protected]>
4745 S:      Maintained
4746 F:      drivers/net/fddi/defxx.*
4747
4748 DEFZA FDDI NETWORK DRIVER
4749 M:      "Maciej W. Rozycki" <[email protected]>
4750 S:      Maintained
4751 F:      drivers/net/fddi/defza.*
4752
4753 DEINTERLACE DRIVERS FOR ALLWINNER H3
4754 M:      Jernej Skrabec <[email protected]>
4755 L:      [email protected]
4756 S:      Maintained
4757 T:      git git://linuxtv.org/media_tree.git
4758 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4759 F:      drivers/media/platform/sunxi/sun8i-di/
4760
4761 DELL LAPTOP DRIVER
4762 M:      Matthew Garrett <[email protected]>
4763 M:      Pali Rohár <[email protected]>
4764 L:      [email protected]
4765 S:      Maintained
4766 F:      drivers/platform/x86/dell-laptop.c
4767
4768 DELL LAPTOP FREEFALL DRIVER
4769 M:      Pali Rohár <[email protected]>
4770 S:      Maintained
4771 F:      drivers/platform/x86/dell-smo8800.c
4772
4773 DELL LAPTOP RBTN DRIVER
4774 M:      Pali Rohár <[email protected]>
4775 S:      Maintained
4776 F:      drivers/platform/x86/dell-rbtn.*
4777
4778 DELL LAPTOP SMM DRIVER
4779 M:      Pali Rohár <[email protected]>
4780 S:      Maintained
4781 F:      drivers/hwmon/dell-smm-hwmon.c
4782 F:      include/uapi/linux/i8k.h
4783
4784 DELL REMOTE BIOS UPDATE DRIVER
4785 M:      Stuart Hayes <[email protected]>
4786 L:      [email protected]
4787 S:      Maintained
4788 F:      drivers/platform/x86/dell_rbu.c
4789
4790 DELL SMBIOS DRIVER
4791 M:      Pali Rohár <[email protected]>
4792 M:      Mario Limonciello <[email protected]>
4793 L:      [email protected]
4794 S:      Maintained
4795 F:      drivers/platform/x86/dell-smbios.*
4796
4797 DELL SMBIOS SMM DRIVER
4798 M:      Mario Limonciello <[email protected]>
4799 L:      [email protected]
4800 S:      Maintained
4801 F:      drivers/platform/x86/dell-smbios-smm.c
4802
4803 DELL SMBIOS WMI DRIVER
4804 M:      Mario Limonciello <[email protected]>
4805 L:      [email protected]
4806 S:      Maintained
4807 F:      drivers/platform/x86/dell-smbios-wmi.c
4808 F:      tools/wmi/dell-smbios-example.c
4809
4810 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4811 M:      Stuart Hayes <[email protected]>
4812 L:      [email protected]
4813 S:      Maintained
4814 F:      Documentation/driver-api/dcdbas.rst
4815 F:      drivers/platform/x86/dcdbas.*
4816
4817 DELL WMI DESCRIPTOR DRIVER
4818 M:      Mario Limonciello <[email protected]>
4819 S:      Maintained
4820 F:      drivers/platform/x86/dell-wmi-descriptor.c
4821
4822 DELL WMI NOTIFICATIONS DRIVER
4823 M:      Matthew Garrett <[email protected]>
4824 M:      Pali Rohár <[email protected]>
4825 S:      Maintained
4826 F:      drivers/platform/x86/dell-wmi.c
4827
4828 DELTA ST MEDIA DRIVER
4829 M:      Hugues Fruchet <[email protected]>
4830 L:      [email protected]
4831 S:      Supported
4832 W:      https://linuxtv.org
4833 T:      git git://linuxtv.org/media_tree.git
4834 F:      drivers/media/platform/sti/delta
4835
4836 DENALI NAND DRIVER
4837 M:      Masahiro Yamada <[email protected]>
4838 L:      [email protected]
4839 S:      Supported
4840 F:      drivers/mtd/nand/raw/denali*
4841
4842 DESIGNWARE EDMA CORE IP DRIVER
4843 M:      Gustavo Pimentel <[email protected]>
4844 L:      [email protected]
4845 S:      Maintained
4846 F:      drivers/dma/dw-edma/
4847 F:      include/linux/dma/edma.h
4848
4849 DESIGNWARE USB2 DRD IP DRIVER
4850 M:      Minas Harutyunyan <[email protected]>
4851 L:      [email protected]
4852 S:      Maintained
4853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4854 F:      drivers/usb/dwc2/
4855
4856 DESIGNWARE USB3 DRD IP DRIVER
4857 M:      Felipe Balbi <[email protected]>
4858 L:      [email protected]
4859 S:      Maintained
4860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4861 F:      drivers/usb/dwc3/
4862
4863 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4864 M:      Andreas Klinger <[email protected]>
4865 L:      [email protected]
4866 S:      Maintained
4867 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4868 F:      drivers/iio/proximity/srf*.c
4869
4870 DEVICE COREDUMP (DEV_COREDUMP)
4871 M:      Johannes Berg <[email protected]>
4872 L:      [email protected]
4873 S:      Maintained
4874 F:      drivers/base/devcoredump.c
4875 F:      include/linux/devcoredump.h
4876
4877 DEVICE DIRECT ACCESS (DAX)
4878 M:      Dan Williams <[email protected]>
4879 M:      Vishal Verma <[email protected]>
4880 M:      Dave Jiang <[email protected]>
4881 L:      [email protected]
4882 S:      Supported
4883 F:      drivers/dax/
4884
4885 DEVICE FREQUENCY (DEVFREQ)
4886 M:      MyungJoo Ham <[email protected]>
4887 M:      Kyungmin Park <[email protected]>
4888 M:      Chanwoo Choi <[email protected]>
4889 L:      [email protected]
4890 S:      Maintained
4891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4892 F:      Documentation/devicetree/bindings/devfreq/
4893 F:      drivers/devfreq/
4894 F:      include/linux/devfreq.h
4895 F:      include/trace/events/devfreq.h
4896
4897 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4898 M:      Chanwoo Choi <[email protected]>
4899 L:      [email protected]
4900 S:      Supported
4901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4902 F:      Documentation/devicetree/bindings/devfreq/event/
4903 F:      drivers/devfreq/devfreq-event.c
4904 F:      drivers/devfreq/event/
4905 F:      include/dt-bindings/pmu/exynos_ppmu.h
4906 F:      include/linux/devfreq-event.h
4907
4908 DEVICE NUMBER REGISTRY
4909 M:      Torben Mathiasen <[email protected]>
4910 S:      Maintained
4911 W:      http://lanana.org/docs/device-list/index.html
4912
4913 DEVICE-MAPPER  (LVM)
4914 M:      Alasdair Kergon <[email protected]>
4915 M:      Mike Snitzer <[email protected]>
4916 M:      [email protected]
4917 L:      [email protected]
4918 S:      Maintained
4919 W:      http://sources.redhat.com/dm
4920 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4922 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4923 F:      Documentation/admin-guide/device-mapper/
4924 F:      drivers/md/Kconfig
4925 F:      drivers/md/Makefile
4926 F:      drivers/md/dm*
4927 F:      drivers/md/persistent-data/
4928 F:      include/linux/device-mapper.h
4929 F:      include/linux/dm-*.h
4930 F:      include/uapi/linux/dm-*.h
4931
4932 DEVLINK
4933 M:      Jiri Pirko <[email protected]>
4934 L:      [email protected]
4935 S:      Supported
4936 F:      Documentation/networking/devlink
4937 F:      include/net/devlink.h
4938 F:      include/uapi/linux/devlink.h
4939 F:      net/core/devlink.c
4940
4941 DIALOG SEMICONDUCTOR DRIVERS
4942 M:      Support Opensource <[email protected]>
4943 S:      Supported
4944 W:      http://www.dialog-semiconductor.com/products
4945 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4946 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4947 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4948 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4949 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4950 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4951 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4952 F:      Documentation/hwmon/da90??.rst
4953 F:      drivers/gpio/gpio-da90??.c
4954 F:      drivers/hwmon/da90??-hwmon.c
4955 F:      drivers/iio/adc/da91??-*.c
4956 F:      drivers/input/misc/da90??_onkey.c
4957 F:      drivers/input/touchscreen/da9052_tsi.c
4958 F:      drivers/leds/leds-da90??.c
4959 F:      drivers/mfd/da903x.c
4960 F:      drivers/mfd/da90??-*.c
4961 F:      drivers/mfd/da91??-*.c
4962 F:      drivers/pinctrl/pinctrl-da90??.c
4963 F:      drivers/power/supply/da9052-battery.c
4964 F:      drivers/power/supply/da91??-*.c
4965 F:      drivers/regulator/da903x.c
4966 F:      drivers/regulator/da9???-regulator.[ch]
4967 F:      drivers/regulator/slg51000-regulator.[ch]
4968 F:      drivers/rtc/rtc-da90??.c
4969 F:      drivers/thermal/da90??-thermal.c
4970 F:      drivers/video/backlight/da90??_bl.c
4971 F:      drivers/watchdog/da90??_wdt.c
4972 F:      include/linux/mfd/da903x.h
4973 F:      include/linux/mfd/da9052/
4974 F:      include/linux/mfd/da9055/
4975 F:      include/linux/mfd/da9062/
4976 F:      include/linux/mfd/da9063/
4977 F:      include/linux/mfd/da9150/
4978 F:      include/linux/regulator/da9211.h
4979 F:      include/sound/da[79]*.h
4980 F:      sound/soc/codecs/da[79]*.[ch]
4981
4982 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4983 M:      William Breathitt Gray <[email protected]>
4984 L:      [email protected]
4985 S:      Maintained
4986 F:      drivers/gpio/gpio-gpio-mm.c
4987
4988 DIOLAN U2C-12 I2C DRIVER
4989 M:      Guenter Roeck <[email protected]>
4990 L:      [email protected]
4991 S:      Maintained
4992 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4993
4994 DIRECTORY NOTIFICATION (DNOTIFY)
4995 M:      Jan Kara <[email protected]>
4996 R:      Amir Goldstein <[email protected]>
4997 L:      [email protected]
4998 S:      Maintained
4999 F:      Documentation/filesystems/dnotify.txt
5000 F:      fs/notify/dnotify/
5001 F:      include/linux/dnotify.h
5002
5003 DISK GEOMETRY AND PARTITION HANDLING
5004 M:      Andries Brouwer <[email protected]>
5005 S:      Maintained
5006 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5007 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5008 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5009
5010 DISKQUOTA
5011 M:      Jan Kara <[email protected]>
5012 S:      Maintained
5013 F:      Documentation/filesystems/quota.txt
5014 F:      fs/quota/
5015 F:      include/linux/quota*.h
5016 F:      include/uapi/linux/quota*.h
5017
5018 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5019 M:      Bernie Thompson <[email protected]>
5020 L:      [email protected]
5021 S:      Maintained
5022 W:      http://plugable.com/category/projects/udlfb/
5023 F:      Documentation/fb/udlfb.rst
5024 F:      drivers/video/fbdev/udlfb.c
5025 F:      include/video/udlfb.h
5026
5027 DISTRIBUTED LOCK MANAGER (DLM)
5028 M:      Christine Caulfield <[email protected]>
5029 M:      David Teigland <[email protected]>
5030 L:      [email protected]
5031 S:      Supported
5032 W:      http://sources.redhat.com/cluster/
5033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5034 F:      fs/dlm/
5035
5036 DMA BUFFER SHARING FRAMEWORK
5037 M:      Sumit Semwal <[email protected]>
5038 L:      [email protected]
5039 L:      [email protected]
5040 L:      [email protected] (moderated for non-subscribers)
5041 S:      Maintained
5042 T:      git git://anongit.freedesktop.org/drm/drm-misc
5043 F:      Documentation/driver-api/dma-buf.rst
5044 F:      drivers/dma-buf/
5045 F:      include/linux/*fence.h
5046 F:      include/linux/dma-buf*
5047 F:      include/linux/dma-resv.h
5048 K:      dma_(buf|fence|resv)
5049
5050 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5051 M:      Vinod Koul <[email protected]>
5052 L:      [email protected]
5053 S:      Maintained
5054 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5055 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
5056 F:      Documentation/devicetree/bindings/dma/
5057 F:      Documentation/driver-api/dmaengine/
5058 F:      drivers/dma/
5059 F:      include/linux/dmaengine.h
5060 F:      include/linux/of_dma.h
5061
5062 DMA MAPPING HELPERS
5063 M:      Christoph Hellwig <[email protected]>
5064 M:      Marek Szyprowski <[email protected]>
5065 R:      Robin Murphy <[email protected]>
5066 L:      [email protected]
5067 S:      Supported
5068 W:      http://git.infradead.org/users/hch/dma-mapping.git
5069 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5070 F:      include/asm-generic/dma-mapping.h
5071 F:      include/linux/dma-direct.h
5072 F:      include/linux/dma-mapping.h
5073 F:      include/linux/dma-noncoherent.h
5074 F:      kernel/dma/
5075
5076 DMA-BUF HEAPS FRAMEWORK
5077 M:      Sumit Semwal <[email protected]>
5078 R:      Andrew F. Davis <[email protected]>
5079 R:      Benjamin Gaignard <[email protected]>
5080 R:      Liam Mark <[email protected]>
5081 R:      Laura Abbott <[email protected]>
5082 R:      Brian Starkey <[email protected]>
5083 R:      John Stultz <[email protected]>
5084 L:      [email protected]
5085 L:      [email protected]
5086 L:      [email protected] (moderated for non-subscribers)
5087 S:      Maintained
5088 T:      git git://anongit.freedesktop.org/drm/drm-misc
5089 F:      drivers/dma-buf/dma-heap.c
5090 F:      drivers/dma-buf/heaps/*
5091 F:      include/linux/dma-heap.h
5092 F:      include/uapi/linux/dma-heap.h
5093
5094 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5095 M:      Lukasz Luba <[email protected]>
5096 L:      [email protected]
5097 L:      [email protected]
5098 S:      Maintained
5099 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5100 F:      drivers/memory/samsung/exynos5422-dmc.c
5101
5102 DME1737 HARDWARE MONITOR DRIVER
5103 M:      Juerg Haefliger <[email protected]>
5104 L:      [email protected]
5105 S:      Maintained
5106 F:      Documentation/hwmon/dme1737.rst
5107 F:      drivers/hwmon/dme1737.c
5108
5109 DMI/SMBIOS SUPPORT
5110 M:      Jean Delvare <[email protected]>
5111 S:      Maintained
5112 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5113 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5114 F:      drivers/firmware/dmi-id.c
5115 F:      drivers/firmware/dmi_scan.c
5116 F:      include/linux/dmi.h
5117
5118 DOCUMENTATION
5119 M:      Jonathan Corbet <[email protected]>
5120 L:      [email protected]
5121 S:      Maintained
5122 T:      git git://git.lwn.net/linux.git docs-next
5123 F:      Documentation/
5124 F:      scripts/documentation-file-ref-check
5125 F:      scripts/kernel-doc
5126 F:      scripts/sphinx-pre-install
5127 X:      Documentation/ABI/
5128 X:      Documentation/devicetree/
5129 X:      Documentation/firmware-guide/acpi/
5130 X:      Documentation/i2c/
5131 X:      Documentation/media/
5132 X:      Documentation/power/
5133 X:      Documentation/spi/
5134
5135 DOCUMENTATION SCRIPTS
5136 M:      Mauro Carvalho Chehab <[email protected]>
5137 L:      [email protected]
5138 S:      Maintained
5139 F:      Documentation/sphinx/parse-headers.pl
5140 F:      scripts/documentation-file-ref-check
5141 F:      scripts/sphinx-pre-install
5142
5143 DOCUMENTATION/ITALIAN
5144 M:      Federico Vaga <[email protected]>
5145 L:      [email protected]
5146 S:      Maintained
5147 F:      Documentation/translations/it_IT
5148
5149 DONGWOON DW9714 LENS VOICE COIL DRIVER
5150 M:      Sakari Ailus <[email protected]>
5151 L:      [email protected]
5152 S:      Maintained
5153 T:      git git://linuxtv.org/media_tree.git
5154 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5155 F:      drivers/media/i2c/dw9714.c
5156
5157 DONGWOON DW9807 LENS VOICE COIL DRIVER
5158 M:      Sakari Ailus <[email protected]>
5159 L:      [email protected]
5160 S:      Maintained
5161 T:      git git://linuxtv.org/media_tree.git
5162 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5163 F:      drivers/media/i2c/dw9807-vcm.c
5164
5165 DOUBLETALK DRIVER
5166 M:      "James R. Van Zandt" <[email protected]>
5167 L:      [email protected]
5168 S:      Maintained
5169 F:      drivers/char/dtlk.c
5170 F:      include/linux/dtlk.h
5171
5172 DPAA2 DATAPATH I/O (DPIO) DRIVER
5173 M:      Roy Pledge <[email protected]>
5174 L:      [email protected]
5175 S:      Maintained
5176 F:      drivers/soc/fsl/dpio
5177
5178 DPAA2 ETHERNET DRIVER
5179 M:      Ioana Radulescu <[email protected]>
5180 L:      [email protected]
5181 S:      Maintained
5182 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5183 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5184 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5185 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5186 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5187 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5188 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5189 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5190 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5191
5192 DPAA2 ETHERNET SWITCH DRIVER
5193 M:      Ioana Radulescu <[email protected]>
5194 M:      Ioana Ciornei <[email protected]>
5195 L:      [email protected]
5196 S:      Maintained
5197 F:      drivers/staging/fsl-dpaa2/ethsw
5198
5199 DPT_I2O SCSI RAID DRIVER
5200 M:      Adaptec OEM Raid Solutions <[email protected]>
5201 L:      [email protected]
5202 S:      Maintained
5203 W:      http://www.adaptec.com/
5204 F:      drivers/scsi/dpt*
5205 F:      drivers/scsi/dpt/
5206
5207 DRBD DRIVER
5208 M:      Philipp Reisner <[email protected]>
5209 M:      Lars Ellenberg <[email protected]>
5210 L:      [email protected]
5211 S:      Supported
5212 W:      http://www.drbd.org
5213 T:      git git://git.linbit.com/linux-drbd.git
5214 T:      git git://git.linbit.com/drbd-8.4.git
5215 F:      Documentation/admin-guide/blockdev/
5216 F:      drivers/block/drbd/
5217 F:      lib/lru_cache.c
5218
5219 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5220 M:      Greg Kroah-Hartman <[email protected]>
5221 R:      "Rafael J. Wysocki" <[email protected]>
5222 S:      Supported
5223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5224 F:      Documentation/core-api/kobject.rst
5225 F:      drivers/base/
5226 F:      fs/debugfs/
5227 F:      fs/sysfs/
5228 F:      include/linux/debugfs.h
5229 F:      include/linux/kobj*
5230 F:      lib/kobj*
5231
5232 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5233 M:      Kevin Hilman <[email protected]>
5234 M:      Nishanth Menon <[email protected]>
5235 L:      [email protected]
5236 S:      Maintained
5237 F:      drivers/power/avs/
5238 F:      include/linux/power/smartreflex.h
5239
5240 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5241 M:      Maxime Ripard <[email protected]>
5242 M:      Chen-Yu Tsai <[email protected]>
5243 R:      Jernej Skrabec <[email protected]>
5244 L:      [email protected]
5245 S:      Supported
5246 T:      git git://anongit.freedesktop.org/drm/drm-misc
5247 F:      drivers/gpu/drm/sun4i/sun8i*
5248
5249 DRM DRIVER FOR ARM PL111 CLCD
5250 M:      Eric Anholt <[email protected]>
5251 S:      Supported
5252 T:      git git://anongit.freedesktop.org/drm/drm-misc
5253 F:      drivers/gpu/drm/pl111/
5254
5255 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5256 M:      Linus Walleij <[email protected]>
5257 S:      Maintained
5258 T:      git git://anongit.freedesktop.org/drm/drm-misc
5259 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5260 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5261
5262 DRM DRIVER FOR ASPEED BMC GFX
5263 M:      Joel Stanley <[email protected]>
5264 L:      [email protected]
5265 S:      Supported
5266 T:      git git://anongit.freedesktop.org/drm/drm-misc
5267 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5268 F:      drivers/gpu/drm/aspeed/
5269
5270 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5271 M:      Dave Airlie <[email protected]>
5272 S:      Odd Fixes
5273 F:      drivers/gpu/drm/ast/
5274
5275 DRM DRIVER FOR BOCHS VIRTUAL GPU
5276 M:      Gerd Hoffmann <[email protected]>
5277 L:      [email protected]
5278 S:      Maintained
5279 T:      git git://anongit.freedesktop.org/drm/drm-misc
5280 F:      drivers/gpu/drm/bochs/
5281
5282 DRM DRIVER FOR BOE HIMAX8279D PANELS
5283 M:      Jerry Han <[email protected]>
5284 S:      Maintained
5285 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.txt
5286 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5287
5288 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5289 M:      Linus Walleij <[email protected]>
5290 S:      Maintained
5291 T:      git git://anongit.freedesktop.org/drm/drm-misc
5292 F:      drivers/gpu/drm/tve200/
5293
5294 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5295 M:      Icenowy Zheng <[email protected]>
5296 S:      Maintained
5297 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5298 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5299
5300 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5301 M:      Jagan Teki <[email protected]>
5302 S:      Maintained
5303 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5304 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5305
5306 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5307 M:      Hans de Goede <[email protected]>
5308 S:      Maintained
5309 T:      git git://anongit.freedesktop.org/drm/drm-misc
5310 F:      drivers/gpu/drm/tiny/gm12u320.c
5311
5312 DRM DRIVER FOR HX8357D PANELS
5313 M:      Eric Anholt <[email protected]>
5314 S:      Maintained
5315 T:      git git://anongit.freedesktop.org/drm/drm-misc
5316 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5317 F:      drivers/gpu/drm/tiny/hx8357d.c
5318
5319 DRM DRIVER FOR ILITEK ILI9225 PANELS
5320 M:      David Lechner <[email protected]>
5321 S:      Maintained
5322 T:      git git://anongit.freedesktop.org/drm/drm-misc
5323 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5324 F:      drivers/gpu/drm/tiny/ili9225.c
5325
5326 DRM DRIVER FOR ILITEK ILI9486 PANELS
5327 M:      Kamlesh Gurudasani <[email protected]>
5328 S:      Maintained
5329 T:      git git://anongit.freedesktop.org/drm/drm-misc
5330 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5331 F:      drivers/gpu/drm/tiny/ili9486.c
5332
5333 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5334 S:      Orphan / Obsolete
5335 F:      drivers/gpu/drm/i810/
5336 F:      include/uapi/drm/i810_drm.h
5337
5338 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5339 S:      Orphan / Obsolete
5340 F:      drivers/gpu/drm/mga/
5341 F:      include/uapi/drm/mga_drm.h
5342
5343 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5344 M:      Dave Airlie <[email protected]>
5345 S:      Odd Fixes
5346 F:      drivers/gpu/drm/mgag200/
5347
5348 DRM DRIVER FOR MI0283QT
5349 M:      Noralf Trønnes <[email protected]>
5350 S:      Maintained
5351 T:      git git://anongit.freedesktop.org/drm/drm-misc
5352 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5353 F:      drivers/gpu/drm/tiny/mi0283qt.c
5354
5355 DRM DRIVER FOR MSM ADRENO GPU
5356 M:      Rob Clark <[email protected]>
5357 M:      Sean Paul <[email protected]>
5358 L:      [email protected]
5359 L:      [email protected]
5360 L:      [email protected]
5361 S:      Maintained
5362 T:      git https://gitlab.freedesktop.org/drm/msm.git
5363 F:      Documentation/devicetree/bindings/display/msm/
5364 F:      drivers/gpu/drm/msm/
5365 F:      include/uapi/drm/msm_drm.h
5366
5367 DRM DRIVER FOR NOVATEK NT35510 PANELS
5368 M:      Linus Walleij <[email protected]>
5369 S:      Maintained
5370 T:      git git://anongit.freedesktop.org/drm/drm-misc
5371 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5372 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5373
5374 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5375 M:      Ben Skeggs <[email protected]>
5376 L:      [email protected]
5377 L:      [email protected]
5378 S:      Supported
5379 T:      git git://github.com/skeggsb/linux
5380 F:      drivers/gpu/drm/nouveau/
5381 F:      include/uapi/drm/nouveau_drm.h
5382
5383 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5384 M:      Stefan Mavrodiev <[email protected]>
5385 S:      Maintained
5386 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5387 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5388
5389 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5390 M:      Noralf Trønnes <[email protected]>
5391 S:      Maintained
5392 T:      git git://anongit.freedesktop.org/drm/drm-misc
5393 F:      Documentation/devicetree/bindings/display/repaper.txt
5394 F:      drivers/gpu/drm/tiny/repaper.c
5395
5396 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5397 M:      Dave Airlie <[email protected]>
5398 M:      Gerd Hoffmann <[email protected]>
5399 L:      [email protected]
5400 S:      Obsolete
5401 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5402 T:      git git://anongit.freedesktop.org/drm/drm-misc
5403 F:      drivers/gpu/drm/cirrus/
5404
5405 DRM DRIVER FOR QXL VIRTUAL GPU
5406 M:      Dave Airlie <[email protected]>
5407 M:      Gerd Hoffmann <[email protected]>
5408 L:      [email protected]
5409 L:      [email protected]
5410 S:      Maintained
5411 T:      git git://anongit.freedesktop.org/drm/drm-misc
5412 F:      drivers/gpu/drm/qxl/
5413 F:      include/uapi/drm/qxl_drm.h
5414
5415 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5416 S:      Orphan / Obsolete
5417 F:      drivers/gpu/drm/r128/
5418 F:      include/uapi/drm/r128_drm.h
5419
5420 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5421 M:      Robert Chiras <[email protected]>
5422 S:      Maintained
5423 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5424 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5425
5426 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5427 M:      Guido Günther <[email protected]>
5428 R:      Purism Kernel Team <[email protected]>
5429 S:      Maintained
5430 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5431 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5432
5433 DRM DRIVER FOR SAVAGE VIDEO CARDS
5434 S:      Orphan / Obsolete
5435 F:      drivers/gpu/drm/savage/
5436 F:      include/uapi/drm/savage_drm.h
5437
5438 DRM DRIVER FOR SIS VIDEO CARDS
5439 S:      Orphan / Obsolete
5440 F:      drivers/gpu/drm/sis/
5441 F:      include/uapi/drm/sis_drm.h
5442
5443 DRM DRIVER FOR SITRONIX ST7586 PANELS
5444 M:      David Lechner <[email protected]>
5445 S:      Maintained
5446 T:      git git://anongit.freedesktop.org/drm/drm-misc
5447 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5448 F:      drivers/gpu/drm/tiny/st7586.c
5449
5450 DRM DRIVER FOR SITRONIX ST7701 PANELS
5451 M:      Jagan Teki <[email protected]>
5452 S:      Maintained
5453 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5454 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5455
5456 DRM DRIVER FOR SITRONIX ST7735R PANELS
5457 M:      David Lechner <[email protected]>
5458 S:      Maintained
5459 T:      git git://anongit.freedesktop.org/drm/drm-misc
5460 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5461 F:      drivers/gpu/drm/tiny/st7735r.c
5462
5463 DRM DRIVER FOR SONY ACX424AKP PANELS
5464 M:      Linus Walleij <[email protected]>
5465 S:      Maintained
5466 T:      git git://anongit.freedesktop.org/drm/drm-misc
5467 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5468
5469 DRM DRIVER FOR ST-ERICSSON MCDE
5470 M:      Linus Walleij <[email protected]>
5471 S:      Maintained
5472 T:      git git://anongit.freedesktop.org/drm/drm-misc
5473 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5474 F:      drivers/gpu/drm/mcde/
5475
5476 DRM DRIVER FOR TDFX VIDEO CARDS
5477 S:      Orphan / Obsolete
5478 F:      drivers/gpu/drm/tdfx/
5479
5480 DRM DRIVER FOR TPO TPG110 PANELS
5481 M:      Linus Walleij <[email protected]>
5482 S:      Maintained
5483 T:      git git://anongit.freedesktop.org/drm/drm-misc
5484 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5485 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5486
5487 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5488 M:      Dave Airlie <[email protected]>
5489 R:      Sean Paul <[email protected]>
5490 L:      [email protected]
5491 S:      Odd Fixes
5492 T:      git git://anongit.freedesktop.org/drm/drm-misc
5493 F:      drivers/gpu/drm/udl/
5494
5495 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5496 M:      Rodrigo Siqueira <[email protected]>
5497 R:      Haneen Mohammed <[email protected]>
5498 R:      Daniel Vetter <[email protected]>
5499 L:      [email protected]
5500 S:      Maintained
5501 T:      git git://anongit.freedesktop.org/drm/drm-misc
5502 F:      Documentation/gpu/vkms.rst
5503 F:      drivers/gpu/drm/vkms/
5504
5505 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5506 M:      Hans de Goede <[email protected]>
5507 L:      [email protected]
5508 S:      Maintained
5509 T:      git git://anongit.freedesktop.org/drm/drm-misc
5510 F:      drivers/gpu/drm/vboxvideo/
5511
5512 DRM DRIVER FOR VMWARE VIRTUAL GPU
5513 M:      "VMware Graphics" <[email protected]>
5514 M:      Thomas Hellstrom <[email protected]>
5515 L:      [email protected]
5516 S:      Supported
5517 T:      git git://people.freedesktop.org/~thomash/linux
5518 F:      drivers/gpu/drm/vmwgfx/
5519 F:      include/uapi/drm/vmwgfx_drm.h
5520
5521 DRM DRIVERS
5522 M:      David Airlie <[email protected]>
5523 M:      Daniel Vetter <[email protected]>
5524 L:      [email protected]
5525 S:      Maintained
5526 B:      https://bugs.freedesktop.org/
5527 C:      irc://chat.freenode.net/dri-devel
5528 T:      git git://anongit.freedesktop.org/drm/drm
5529 F:      Documentation/devicetree/bindings/display/
5530 F:      Documentation/devicetree/bindings/gpu/
5531 F:      Documentation/gpu/
5532 F:      drivers/gpu/drm/
5533 F:      drivers/gpu/vga/
5534 F:      include/drm/
5535 F:      include/linux/vga*
5536 F:      include/uapi/drm/
5537
5538 DRM DRIVERS AND MISC GPU PATCHES
5539 M:      Maarten Lankhorst <[email protected]>
5540 M:      Maxime Ripard <[email protected]>
5541 M:      Thomas Zimmermann <[email protected]>
5542 S:      Maintained
5543 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5544 T:      git git://anongit.freedesktop.org/drm/drm-misc
5545 F:      Documentation/gpu/
5546 F:      drivers/gpu/drm/*
5547 F:      drivers/gpu/vga/
5548 F:      include/drm/drm*
5549 F:      include/linux/vga*
5550 F:      include/uapi/drm/drm*
5551
5552 DRM DRIVERS FOR ALLWINNER A10
5553 M:      Maxime Ripard <[email protected]>
5554 M:      Chen-Yu Tsai <[email protected]>
5555 L:      [email protected]
5556 S:      Supported
5557 T:      git git://anongit.freedesktop.org/drm/drm-misc
5558 F:      Documentation/devicetree/bindings/display/allwinner*
5559 F:      drivers/gpu/drm/sun4i/
5560
5561 DRM DRIVERS FOR AMLOGIC SOCS
5562 M:      Neil Armstrong <[email protected]>
5563 L:      [email protected]
5564 L:      [email protected]
5565 S:      Supported
5566 W:      http://linux-meson.com/
5567 T:      git git://anongit.freedesktop.org/drm/drm-misc
5568 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5569 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5570 F:      Documentation/gpu/meson.rst
5571 F:      drivers/gpu/drm/meson/
5572
5573 DRM DRIVERS FOR ATMEL HLCDC
5574 M:      Sam Ravnborg <[email protected]>
5575 M:      Boris Brezillon <[email protected]>
5576 L:      [email protected]
5577 S:      Supported
5578 T:      git git://anongit.freedesktop.org/drm/drm-misc
5579 F:      Documentation/devicetree/bindings/display/atmel/
5580 F:      drivers/gpu/drm/atmel-hlcdc/
5581
5582 DRM DRIVERS FOR BRIDGE CHIPS
5583 M:      Andrzej Hajda <[email protected]>
5584 M:      Neil Armstrong <[email protected]>
5585 R:      Laurent Pinchart <[email protected]>
5586 R:      Jonas Karlman <[email protected]>
5587 R:      Jernej Skrabec <[email protected]>
5588 S:      Maintained
5589 T:      git git://anongit.freedesktop.org/drm/drm-misc
5590 F:      drivers/gpu/drm/bridge/
5591
5592 DRM DRIVERS FOR EXYNOS
5593 M:      Inki Dae <[email protected]>
5594 M:      Joonyoung Shim <[email protected]>
5595 M:      Seung-Woo Kim <[email protected]>
5596 M:      Kyungmin Park <[email protected]>
5597 L:      [email protected]
5598 S:      Supported
5599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5600 F:      Documentation/devicetree/bindings/display/exynos/
5601 F:      drivers/gpu/drm/exynos/
5602 F:      include/uapi/drm/exynos_drm.h
5603
5604 DRM DRIVERS FOR FREESCALE DCU
5605 M:      Stefan Agner <[email protected]>
5606 M:      Alison Wang <[email protected]>
5607 L:      [email protected]
5608 S:      Supported
5609 T:      git git://anongit.freedesktop.org/drm/drm-misc
5610 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5611 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5612 F:      drivers/gpu/drm/fsl-dcu/
5613
5614 DRM DRIVERS FOR FREESCALE IMX
5615 M:      Philipp Zabel <[email protected]>
5616 L:      [email protected]
5617 S:      Maintained
5618 F:      Documentation/devicetree/bindings/display/imx/
5619 F:      drivers/gpu/drm/imx/
5620 F:      drivers/gpu/ipu-v3/
5621
5622 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5623 M:      Patrik Jakobsson <[email protected]>
5624 L:      [email protected]
5625 S:      Maintained
5626 T:      git git://github.com/patjak/drm-gma500
5627 F:      drivers/gpu/drm/gma500/
5628
5629 DRM DRIVERS FOR HISILICON
5630 M:      Xinliang Liu <[email protected]>
5631 M:      Rongrong Zou <[email protected]>
5632 R:      John Stultz <[email protected]>
5633 R:      Xinwei Kong <[email protected]>
5634 R:      Chen Feng <[email protected]>
5635 L:      [email protected]
5636 S:      Maintained
5637 T:      git git://anongit.freedesktop.org/drm/drm-misc
5638 F:      Documentation/devicetree/bindings/display/hisilicon/
5639 F:      drivers/gpu/drm/hisilicon/
5640
5641 DRM DRIVERS FOR LIMA
5642 M:      Qiang Yu <[email protected]>
5643 L:      [email protected]
5644 L:      [email protected] (moderated for non-subscribers)
5645 S:      Maintained
5646 T:      git git://anongit.freedesktop.org/drm/drm-misc
5647 F:      drivers/gpu/drm/lima/
5648 F:      include/uapi/drm/lima_drm.h
5649
5650 DRM DRIVERS FOR MEDIATEK
5651 M:      Chun-Kuang Hu <[email protected]>
5652 M:      Philipp Zabel <[email protected]>
5653 L:      [email protected]
5654 S:      Supported
5655 F:      Documentation/devicetree/bindings/display/mediatek/
5656 F:      drivers/gpu/drm/mediatek/
5657
5658 DRM DRIVERS FOR NVIDIA TEGRA
5659 M:      Thierry Reding <[email protected]>
5660 L:      [email protected]
5661 L:      [email protected]
5662 S:      Supported
5663 T:      git git://anongit.freedesktop.org/tegra/linux.git
5664 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5665 F:      drivers/gpu/drm/tegra/
5666 F:      drivers/gpu/host1x/
5667 F:      include/linux/host1x.h
5668 F:      include/uapi/drm/tegra_drm.h
5669
5670 DRM DRIVERS FOR RENESAS
5671 M:      Laurent Pinchart <[email protected]>
5672 M:      Kieran Bingham <[email protected]>
5673 L:      [email protected]
5674 L:      [email protected]
5675 S:      Supported
5676 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5677 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5678 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5679 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5680 F:      drivers/gpu/drm/rcar-du/
5681 F:      drivers/gpu/drm/shmobile/
5682 F:      include/linux/platform_data/shmob_drm.h
5683
5684 DRM DRIVERS FOR ROCKCHIP
5685 M:      Sandy Huang <[email protected]>
5686 M:      Heiko Stübner <[email protected]>
5687 L:      [email protected]
5688 S:      Maintained
5689 T:      git git://anongit.freedesktop.org/drm/drm-misc
5690 F:      Documentation/devicetree/bindings/display/rockchip/
5691 F:      drivers/gpu/drm/rockchip/
5692
5693 DRM DRIVERS FOR STI
5694 M:      Benjamin Gaignard <[email protected]>
5695 M:      Vincent Abriou <[email protected]>
5696 L:      [email protected]
5697 S:      Maintained
5698 T:      git git://anongit.freedesktop.org/drm/drm-misc
5699 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5700 F:      drivers/gpu/drm/sti
5701
5702 DRM DRIVERS FOR STM
5703 M:      Yannick Fertre <[email protected]>
5704 M:      Philippe Cornu <[email protected]>
5705 M:      Benjamin Gaignard <[email protected]>
5706 M:      Vincent Abriou <[email protected]>
5707 L:      [email protected]
5708 S:      Maintained
5709 T:      git git://anongit.freedesktop.org/drm/drm-misc
5710 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5711 F:      drivers/gpu/drm/stm
5712
5713 DRM DRIVERS FOR TI KEYSTONE
5714 M:      Jyri Sarha <[email protected]>
5715 M:      Tomi Valkeinen <[email protected]>
5716 L:      [email protected]
5717 S:      Maintained
5718 T:      git git://anongit.freedesktop.org/drm/drm-misc
5719 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5720 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5721 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5722 F:      drivers/gpu/drm/tidss/
5723
5724 DRM DRIVERS FOR TI LCDC
5725 M:      Jyri Sarha <[email protected]>
5726 R:      Tomi Valkeinen <[email protected]>
5727 L:      [email protected]
5728 S:      Maintained
5729 F:      Documentation/devicetree/bindings/display/tilcdc/
5730 F:      drivers/gpu/drm/tilcdc/
5731
5732 DRM DRIVERS FOR TI OMAP
5733 M:      Tomi Valkeinen <[email protected]>
5734 L:      [email protected]
5735 S:      Maintained
5736 F:      Documentation/devicetree/bindings/display/ti/
5737 F:      drivers/gpu/drm/omapdrm/
5738
5739 DRM DRIVERS FOR V3D
5740 M:      Eric Anholt <[email protected]>
5741 S:      Supported
5742 T:      git git://anongit.freedesktop.org/drm/drm-misc
5743 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5744 F:      drivers/gpu/drm/v3d/
5745 F:      include/uapi/drm/v3d_drm.h
5746
5747 DRM DRIVERS FOR VC4
5748 M:      Eric Anholt <[email protected]>
5749 S:      Supported
5750 T:      git git://github.com/anholt/linux
5751 T:      git git://anongit.freedesktop.org/drm/drm-misc
5752 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5753 F:      drivers/gpu/drm/vc4/
5754 F:      include/uapi/drm/vc4_drm.h
5755
5756 DRM DRIVERS FOR VIVANTE GPU IP
5757 M:      Lucas Stach <[email protected]>
5758 R:      Russell King <[email protected]>
5759 R:      Christian Gmeiner <[email protected]>
5760 L:      [email protected] (moderated for non-subscribers)
5761 L:      [email protected]
5762 S:      Maintained
5763 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5764 F:      drivers/gpu/drm/etnaviv/
5765 F:      include/uapi/drm/etnaviv_drm.h
5766
5767 DRM DRIVERS FOR XEN
5768 M:      Oleksandr Andrushchenko <[email protected]>
5769 L:      [email protected]
5770 L:      [email protected] (moderated for non-subscribers)
5771 S:      Supported
5772 T:      git git://anongit.freedesktop.org/drm/drm-misc
5773 F:      Documentation/gpu/xen-front.rst
5774 F:      drivers/gpu/drm/xen/
5775
5776 DRM DRIVERS FOR ZTE ZX
5777 M:      Shawn Guo <[email protected]>
5778 L:      [email protected]
5779 S:      Maintained
5780 T:      git git://anongit.freedesktop.org/drm/drm-misc
5781 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5782 F:      drivers/gpu/drm/zte/
5783
5784 DRM PANEL DRIVERS
5785 M:      Thierry Reding <[email protected]>
5786 R:      Sam Ravnborg <[email protected]>
5787 L:      [email protected]
5788 S:      Maintained
5789 T:      git git://anongit.freedesktop.org/drm/drm-misc
5790 F:      Documentation/devicetree/bindings/display/panel/
5791 F:      drivers/gpu/drm/drm_panel.c
5792 F:      drivers/gpu/drm/panel/
5793 F:      include/drm/drm_panel.h
5794
5795 DRM TTM SUBSYSTEM
5796 M:      Christian Koenig <[email protected]>
5797 M:      Huang Rui <[email protected]>
5798 L:      [email protected]
5799 S:      Maintained
5800 T:      git git://people.freedesktop.org/~agd5f/linux
5801 F:      drivers/gpu/drm/ttm/
5802 F:      include/drm/ttm/
5803
5804 DSBR100 USB FM RADIO DRIVER
5805 M:      Alexey Klimov <[email protected]>
5806 L:      [email protected]
5807 S:      Maintained
5808 T:      git git://linuxtv.org/media_tree.git
5809 F:      drivers/media/radio/dsbr100.c
5810
5811 DT3155 MEDIA DRIVER
5812 M:      Hans Verkuil <[email protected]>
5813 L:      [email protected]
5814 S:      Odd Fixes
5815 W:      https://linuxtv.org
5816 T:      git git://linuxtv.org/media_tree.git
5817 F:      drivers/media/pci/dt3155/
5818
5819 DVB_USB_AF9015 MEDIA DRIVER
5820 M:      Antti Palosaari <[email protected]>
5821 L:      [email protected]
5822 S:      Maintained
5823 W:      https://linuxtv.org
5824 W:      http://palosaari.fi/linux/
5825 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5826 T:      git git://linuxtv.org/anttip/media_tree.git
5827 F:      drivers/media/usb/dvb-usb-v2/af9015*
5828
5829 DVB_USB_AF9035 MEDIA DRIVER
5830 M:      Antti Palosaari <[email protected]>
5831 L:      [email protected]
5832 S:      Maintained
5833 W:      https://linuxtv.org
5834 W:      http://palosaari.fi/linux/
5835 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5836 T:      git git://linuxtv.org/anttip/media_tree.git
5837 F:      drivers/media/usb/dvb-usb-v2/af9035*
5838
5839 DVB_USB_ANYSEE MEDIA DRIVER
5840 M:      Antti Palosaari <[email protected]>
5841 L:      [email protected]
5842 S:      Maintained
5843 W:      https://linuxtv.org
5844 W:      http://palosaari.fi/linux/
5845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5846 T:      git git://linuxtv.org/anttip/media_tree.git
5847 F:      drivers/media/usb/dvb-usb-v2/anysee*
5848
5849 DVB_USB_AU6610 MEDIA DRIVER
5850 M:      Antti Palosaari <[email protected]>
5851 L:      [email protected]
5852 S:      Maintained
5853 W:      https://linuxtv.org
5854 W:      http://palosaari.fi/linux/
5855 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5856 T:      git git://linuxtv.org/anttip/media_tree.git
5857 F:      drivers/media/usb/dvb-usb-v2/au6610*
5858
5859 DVB_USB_CE6230 MEDIA DRIVER
5860 M:      Antti Palosaari <[email protected]>
5861 L:      [email protected]
5862 S:      Maintained
5863 W:      https://linuxtv.org
5864 W:      http://palosaari.fi/linux/
5865 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5866 T:      git git://linuxtv.org/anttip/media_tree.git
5867 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5868
5869 DVB_USB_CXUSB MEDIA DRIVER
5870 M:      Michael Krufky <[email protected]>
5871 L:      [email protected]
5872 S:      Maintained
5873 W:      https://linuxtv.org
5874 W:      http://github.com/mkrufky
5875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5876 T:      git git://linuxtv.org/media_tree.git
5877 F:      drivers/media/usb/dvb-usb/cxusb*
5878
5879 DVB_USB_EC168 MEDIA DRIVER
5880 M:      Antti Palosaari <[email protected]>
5881 L:      [email protected]
5882 S:      Maintained
5883 W:      https://linuxtv.org
5884 W:      http://palosaari.fi/linux/
5885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5886 T:      git git://linuxtv.org/anttip/media_tree.git
5887 F:      drivers/media/usb/dvb-usb-v2/ec168*
5888
5889 DVB_USB_GL861 MEDIA DRIVER
5890 M:      Antti Palosaari <[email protected]>
5891 L:      [email protected]
5892 S:      Maintained
5893 W:      https://linuxtv.org
5894 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5895 T:      git git://linuxtv.org/anttip/media_tree.git
5896 F:      drivers/media/usb/dvb-usb-v2/gl861*
5897
5898 DVB_USB_MXL111SF MEDIA DRIVER
5899 M:      Michael Krufky <[email protected]>
5900 L:      [email protected]
5901 S:      Maintained
5902 W:      https://linuxtv.org
5903 W:      http://github.com/mkrufky
5904 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5905 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5906 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5907
5908 DVB_USB_RTL28XXU MEDIA DRIVER
5909 M:      Antti Palosaari <[email protected]>
5910 L:      [email protected]
5911 S:      Maintained
5912 W:      https://linuxtv.org
5913 W:      http://palosaari.fi/linux/
5914 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5915 T:      git git://linuxtv.org/anttip/media_tree.git
5916 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5917
5918 DVB_USB_V2 MEDIA DRIVER
5919 M:      Antti Palosaari <[email protected]>
5920 L:      [email protected]
5921 S:      Maintained
5922 W:      https://linuxtv.org
5923 W:      http://palosaari.fi/linux/
5924 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5925 T:      git git://linuxtv.org/anttip/media_tree.git
5926 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5927 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5928
5929 DYNAMIC DEBUG
5930 M:      Jason Baron <[email protected]>
5931 S:      Maintained
5932 F:      include/linux/dynamic_debug.h
5933 F:      lib/dynamic_debug.c
5934
5935 DYNAMIC INTERRUPT MODERATION
5936 M:      Tal Gilboa <[email protected]>
5937 S:      Maintained
5938 F:      include/linux/dim.h
5939 F:      lib/dim/
5940 F:      Documentation/networking/net_dim.rst
5941
5942 DZ DECSTATION DZ11 SERIAL DRIVER
5943 M:      "Maciej W. Rozycki" <[email protected]>
5944 S:      Maintained
5945 F:      drivers/tty/serial/dz.*
5946
5947 E3X0 POWER BUTTON DRIVER
5948 M:      Moritz Fischer <[email protected]>
5949 L:      [email protected]
5950 S:      Supported
5951 W:      http://www.ettus.com
5952 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5953 F:      drivers/input/misc/e3x0-button.c
5954
5955 E4000 MEDIA DRIVER
5956 M:      Antti Palosaari <[email protected]>
5957 L:      [email protected]
5958 S:      Maintained
5959 W:      https://linuxtv.org
5960 W:      http://palosaari.fi/linux/
5961 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5962 T:      git git://linuxtv.org/anttip/media_tree.git
5963 F:      drivers/media/tuners/e4000*
5964
5965 EARTH_PT1 MEDIA DRIVER
5966 M:      Akihiro Tsukada <[email protected]>
5967 L:      [email protected]
5968 S:      Odd Fixes
5969 F:      drivers/media/pci/pt1/
5970
5971 EARTH_PT3 MEDIA DRIVER
5972 M:      Akihiro Tsukada <[email protected]>
5973 L:      [email protected]
5974 S:      Odd Fixes
5975 F:      drivers/media/pci/pt3/
5976
5977 EC100 MEDIA DRIVER
5978 M:      Antti Palosaari <[email protected]>
5979 L:      [email protected]
5980 S:      Maintained
5981 W:      https://linuxtv.org
5982 W:      http://palosaari.fi/linux/
5983 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5984 T:      git git://linuxtv.org/anttip/media_tree.git
5985 F:      drivers/media/dvb-frontends/ec100*
5986
5987 ECRYPT FILE SYSTEM
5988 M:      Tyler Hicks <[email protected]>
5989 L:      [email protected]
5990 S:      Odd Fixes
5991 W:      http://ecryptfs.org
5992 W:      https://launchpad.net/ecryptfs
5993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5994 F:      Documentation/filesystems/ecryptfs.rst
5995 F:      fs/ecryptfs/
5996
5997 EDAC-AMD64
5998 M:      Borislav Petkov <[email protected]>
5999 L:      [email protected]
6000 S:      Maintained
6001 F:      drivers/edac/amd64_edac*
6002
6003 EDAC-ARMADA
6004 M:      Jan Luebbe <[email protected]>
6005 L:      [email protected]
6006 S:      Maintained
6007 F:      drivers/edac/armada_xp_*
6008
6009 EDAC-AST2500
6010 M:      Stefan Schaeckeler <[email protected]>
6011 S:      Supported
6012 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6013 F:      drivers/edac/aspeed_edac.c
6014
6015 EDAC-BLUEFIELD
6016 M:      Shravan Kumar Ramani <[email protected]>
6017 S:      Supported
6018 F:      drivers/edac/bluefield_edac.c
6019
6020 EDAC-CALXEDA
6021 M:      Robert Richter <[email protected]>
6022 L:      [email protected]
6023 S:      Maintained
6024 F:      drivers/edac/highbank*
6025
6026 EDAC-CAVIUM OCTEON
6027 M:      Ralf Baechle <[email protected]>
6028 M:      Robert Richter <[email protected]>
6029 L:      [email protected]
6030 L:      [email protected]
6031 S:      Supported
6032 F:      drivers/edac/octeon_edac*
6033
6034 EDAC-CAVIUM THUNDERX
6035 M:      Robert Richter <[email protected]>
6036 L:      [email protected]
6037 S:      Supported
6038 F:      drivers/edac/thunderx_edac*
6039
6040 EDAC-CORE
6041 M:      Borislav Petkov <[email protected]>
6042 M:      Mauro Carvalho Chehab <[email protected]>
6043 M:      Tony Luck <[email protected]>
6044 R:      James Morse <[email protected]>
6045 R:      Robert Richter <[email protected]>
6046 L:      [email protected]
6047 S:      Supported
6048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6049 F:      Documentation/admin-guide/ras.rst
6050 F:      Documentation/driver-api/edac.rst
6051 F:      drivers/edac/
6052 F:      include/linux/edac.h
6053
6054 EDAC-DMC520
6055 M:      Lei Wang <[email protected]>
6056 L:      [email protected]
6057 S:      Supported
6058 F:      drivers/edac/dmc520_edac.c
6059
6060 EDAC-E752X
6061 M:      Mark Gross <[email protected]>
6062 L:      [email protected]
6063 S:      Maintained
6064 F:      drivers/edac/e752x_edac.c
6065
6066 EDAC-E7XXX
6067 L:      [email protected]
6068 S:      Maintained
6069 F:      drivers/edac/e7xxx_edac.c
6070
6071 EDAC-FSL_DDR
6072 M:      York Sun <[email protected]>
6073 L:      [email protected]
6074 S:      Maintained
6075 F:      drivers/edac/fsl_ddr_edac.*
6076
6077 EDAC-GHES
6078 M:      Mauro Carvalho Chehab <[email protected]>
6079 L:      [email protected]
6080 S:      Maintained
6081 F:      drivers/edac/ghes_edac.c
6082
6083 EDAC-I10NM
6084 M:      Tony Luck <[email protected]>
6085 L:      [email protected]
6086 S:      Maintained
6087 F:      drivers/edac/i10nm_base.c
6088
6089 EDAC-I3000
6090 L:      [email protected]
6091 S:      Orphan
6092 F:      drivers/edac/i3000_edac.c
6093
6094 EDAC-I5000
6095 L:      [email protected]
6096 S:      Maintained
6097 F:      drivers/edac/i5000_edac.c
6098
6099 EDAC-I5400
6100 M:      Mauro Carvalho Chehab <[email protected]>
6101 L:      [email protected]
6102 S:      Maintained
6103 F:      drivers/edac/i5400_edac.c
6104
6105 EDAC-I7300
6106 M:      Mauro Carvalho Chehab <[email protected]>
6107 L:      [email protected]
6108 S:      Maintained
6109 F:      drivers/edac/i7300_edac.c
6110
6111 EDAC-I7CORE
6112 M:      Mauro Carvalho Chehab <[email protected]>
6113 L:      [email protected]
6114 S:      Maintained
6115 F:      drivers/edac/i7core_edac.c
6116
6117 EDAC-I82443BXGX
6118 M:      Tim Small <[email protected]>
6119 L:      [email protected]
6120 S:      Maintained
6121 F:      drivers/edac/i82443bxgx_edac.c
6122
6123 EDAC-I82975X
6124 M:      "Arvind R." <[email protected]>
6125 L:      [email protected]
6126 S:      Maintained
6127 F:      drivers/edac/i82975x_edac.c
6128
6129 EDAC-IE31200
6130 M:      Jason Baron <[email protected]>
6131 L:      [email protected]
6132 S:      Maintained
6133 F:      drivers/edac/ie31200_edac.c
6134
6135 EDAC-MPC85XX
6136 M:      Johannes Thumshirn <[email protected]>
6137 L:      [email protected]
6138 S:      Maintained
6139 F:      drivers/edac/mpc85xx_edac.[ch]
6140
6141 EDAC-PASEMI
6142 M:      Egor Martovetsky <[email protected]>
6143 L:      [email protected]
6144 S:      Maintained
6145 F:      drivers/edac/pasemi_edac.c
6146
6147 EDAC-PND2
6148 M:      Tony Luck <[email protected]>
6149 L:      [email protected]
6150 S:      Maintained
6151 F:      drivers/edac/pnd2_edac.[ch]
6152
6153 EDAC-QCOM
6154 M:      Channagoud Kadabi <[email protected]>
6155 M:      Venkata Narendra Kumar Gutta <[email protected]>
6156 L:      [email protected]
6157 L:      [email protected]
6158 S:      Maintained
6159 F:      drivers/edac/qcom_edac.c
6160
6161 EDAC-R82600
6162 M:      Tim Small <[email protected]>
6163 L:      [email protected]
6164 S:      Maintained
6165 F:      drivers/edac/r82600_edac.c
6166
6167 EDAC-SBRIDGE
6168 M:      Tony Luck <[email protected]>
6169 R:      Qiuxu Zhuo <[email protected]>
6170 L:      [email protected]
6171 S:      Maintained
6172 F:      drivers/edac/sb_edac.c
6173
6174 EDAC-SIFIVE
6175 M:      Yash Shah <[email protected]>
6176 L:      [email protected]
6177 S:      Supported
6178 F:      drivers/edac/sifive_edac.c
6179 F:      drivers/soc/sifive_l2_cache.c
6180
6181 EDAC-SKYLAKE
6182 M:      Tony Luck <[email protected]>
6183 L:      [email protected]
6184 S:      Maintained
6185 F:      drivers/edac/skx_*.c
6186
6187 EDAC-TI
6188 M:      Tero Kristo <[email protected]>
6189 L:      [email protected]
6190 S:      Maintained
6191 F:      drivers/edac/ti_edac.c
6192
6193 EDIROL UA-101/UA-1000 DRIVER
6194 M:      Clemens Ladisch <[email protected]>
6195 L:      [email protected] (moderated for non-subscribers)
6196 S:      Maintained
6197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6198 F:      sound/usb/misc/ua101.c
6199
6200 EFI TEST DRIVER
6201 M:      Ivan Hu <[email protected]>
6202 M:      Ard Biesheuvel <[email protected]>
6203 L:      [email protected]
6204 S:      Maintained
6205 F:      drivers/firmware/efi/test/
6206
6207 EFI VARIABLE FILESYSTEM
6208 M:      Matthew Garrett <[email protected]>
6209 M:      Jeremy Kerr <[email protected]>
6210 M:      Ard Biesheuvel <[email protected]>
6211 L:      [email protected]
6212 S:      Maintained
6213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6214 F:      fs/efivarfs/
6215
6216 EFIFB FRAMEBUFFER DRIVER
6217 M:      Peter Jones <[email protected]>
6218 L:      [email protected]
6219 S:      Maintained
6220 F:      drivers/video/fbdev/efifb.c
6221
6222 EFS FILESYSTEM
6223 S:      Orphan
6224 W:      http://aeschi.ch.eu.org/efs/
6225 F:      fs/efs/
6226
6227 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6228 M:      Douglas Miller <[email protected]>
6229 L:      [email protected]
6230 S:      Maintained
6231 F:      drivers/net/ethernet/ibm/ehea/
6232
6233 EM28XX VIDEO4LINUX DRIVER
6234 M:      Mauro Carvalho Chehab <[email protected]>
6235 L:      [email protected]
6236 S:      Maintained
6237 W:      https://linuxtv.org
6238 T:      git git://linuxtv.org/media_tree.git
6239 F:      Documentation/media/v4l-drivers/em28xx*
6240 F:      drivers/media/usb/em28xx/
6241
6242 EMBEDDED LINUX
6243 M:      Paul Gortmaker <[email protected]>
6244 M:      Matt Mackall <[email protected]>
6245 M:      David Woodhouse <[email protected]>
6246 L:      [email protected]
6247 S:      Maintained
6248
6249 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6250 M:      Adrian Hunter <[email protected]>
6251 M:      Ritesh Harjani <[email protected]>
6252 M:      Asutosh Das <[email protected]>
6253 L:      [email protected]
6254 S:      Maintained
6255 F:      drivers/mmc/host/cqhci*
6256
6257 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6258 M:      Subbu Seetharaman <[email protected]>
6259 M:      Ketan Mukadam <[email protected]>
6260 M:      Jitendra Bhivare <[email protected]>
6261 L:      [email protected]
6262 S:      Supported
6263 W:      http://www.broadcom.com
6264 F:      drivers/scsi/be2iscsi/
6265
6266 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6267 M:      Ajit Khaparde <[email protected]>
6268 M:      Sriharsha Basavapatna <[email protected]>
6269 M:      Somnath Kotur <[email protected]>
6270 L:      [email protected]
6271 S:      Supported
6272 W:      http://www.emulex.com
6273 F:      drivers/net/ethernet/emulex/benet/
6274
6275 EMULEX ONECONNECT ROCE DRIVER
6276 M:      Selvin Xavier <[email protected]>
6277 M:      Devesh Sharma <[email protected]>
6278 L:      [email protected]
6279 S:      Odd Fixes
6280 W:      http://www.broadcom.com
6281 F:      drivers/infiniband/hw/ocrdma/
6282 F:      include/uapi/rdma/ocrdma-abi.h
6283
6284 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6285 M:      James Smart <[email protected]>
6286 M:      Dick Kennedy <[email protected]>
6287 L:      [email protected]
6288 S:      Supported
6289 W:      http://www.broadcom.com
6290 F:      drivers/scsi/lpfc/
6291
6292 ENE CB710 FLASH CARD READER DRIVER
6293 M:      Michał Mirosław <[email protected]>
6294 S:      Maintained
6295 F:      drivers/misc/cb710/
6296 F:      drivers/mmc/host/cb710-mmc.*
6297 F:      include/linux/cb710.h
6298
6299 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6300 M:      Maxim Levitsky <[email protected]>
6301 S:      Maintained
6302 F:      drivers/media/rc/ene_ir.*
6303
6304 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6305 M:      Laurentiu Tudor <[email protected]>
6306 L:      [email protected]
6307 S:      Maintained
6308 F:      drivers/tty/ehv_bytechan.c
6309
6310 EPSON S1D13XXX FRAMEBUFFER DRIVER
6311 M:      Kristoffer Ericson <[email protected]>
6312 S:      Maintained
6313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6314 F:      drivers/video/fbdev/s1d13xxxfb.c
6315 F:      include/video/s1d13xxxfb.h
6316
6317 EROFS FILE SYSTEM
6318 M:      Gao Xiang <[email protected]>
6319 M:      Chao Yu <[email protected]>
6320 L:      [email protected]
6321 S:      Maintained
6322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6323 F:      Documentation/filesystems/erofs.rst
6324 F:      fs/erofs/
6325 F:      include/trace/events/erofs.h
6326
6327 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6328 M:      Jeff Layton <[email protected]>
6329 S:      Maintained
6330 F:      include/linux/errseq.h
6331 F:      lib/errseq.c
6332
6333 ET131X NETWORK DRIVER
6334 M:      Mark Einon <[email protected]>
6335 S:      Odd Fixes
6336 F:      drivers/net/ethernet/agere/
6337
6338 ETHERNET BRIDGE
6339 M:      Roopa Prabhu <[email protected]>
6340 M:      Nikolay Aleksandrov <[email protected]>
6341 L:      [email protected] (moderated for non-subscribers)
6342 L:      [email protected]
6343 S:      Maintained
6344 W:      http://www.linuxfoundation.org/en/Net:Bridge
6345 F:      include/linux/netfilter_bridge/
6346 F:      net/bridge/
6347
6348 ETHERNET PHY LIBRARY
6349 M:      Andrew Lunn <[email protected]>
6350 M:      Florian Fainelli <[email protected]>
6351 M:      Heiner Kallweit <[email protected]>
6352 R:      Russell King <[email protected]>
6353 L:      [email protected]
6354 S:      Maintained
6355 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6356 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6357 F:      Documentation/devicetree/bindings/net/mdio*
6358 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6359 F:      Documentation/networking/phy.rst
6360 F:      drivers/net/phy/
6361 F:      drivers/of/of_mdio.c
6362 F:      drivers/of/of_net.c
6363 F:      include/dt-bindings/net/qca-ar803x.h
6364 F:      include/linux/*mdio*.h
6365 F:      include/linux/of_net.h
6366 F:      include/linux/phy.h
6367 F:      include/linux/phy_fixed.h
6368 F:      include/linux/platform_data/mdio-bcm-unimac.h
6369 F:      include/linux/platform_data/mdio-gpio.h
6370 F:      include/trace/events/mdio.h
6371 F:      include/uapi/linux/mdio.h
6372 F:      include/uapi/linux/mii.h
6373
6374 EXFAT FILE SYSTEM
6375 M:      Namjae Jeon <[email protected]>
6376 M:      Sungjong Seo <[email protected]>
6377 L:      [email protected]
6378 S:      Maintained
6379 F:      fs/exfat/
6380
6381 EXT2 FILE SYSTEM
6382 M:      Jan Kara <[email protected]>
6383 L:      [email protected]
6384 S:      Maintained
6385 F:      Documentation/filesystems/ext2.rst
6386 F:      fs/ext2/
6387 F:      include/linux/ext2*
6388
6389 EXT4 FILE SYSTEM
6390 M:      "Theodore Ts'o" <[email protected]>
6391 M:      Andreas Dilger <[email protected]>
6392 L:      [email protected]
6393 S:      Maintained
6394 W:      http://ext4.wiki.kernel.org
6395 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6397 F:      Documentation/filesystems/ext4/
6398 F:      fs/ext4/
6399
6400 Extended Verification Module (EVM)
6401 M:      Mimi Zohar <[email protected]>
6402 L:      [email protected]
6403 S:      Supported
6404 F:      security/integrity/evm/
6405
6406 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6407 M:      Ard Biesheuvel <[email protected]>
6408 L:      [email protected]
6409 S:      Maintained
6410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6411 F:      Documentation/admin-guide/efi-stub.rst
6412 F:      arch/*/include/asm/efi.h
6413 F:      arch/*/kernel/efi.c
6414 F:      arch/arm/boot/compressed/efi-header.S
6415 F:      arch/arm64/kernel/efi-entry.S
6416 F:      arch/x86/platform/efi/
6417 F:      drivers/firmware/efi/
6418 F:      include/linux/efi*.h
6419
6420 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6421 M:      MyungJoo Ham <[email protected]>
6422 M:      Chanwoo Choi <[email protected]>
6423 L:      [email protected]
6424 S:      Maintained
6425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6426 F:      Documentation/devicetree/bindings/extcon/
6427 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6428 F:      drivers/extcon/
6429 F:      include/linux/extcon.h
6430 F:      include/linux/extcon/
6431
6432 EXTRA BOOT CONFIG
6433 M:      Masami Hiramatsu <[email protected]>
6434 S:      Maintained
6435 F:      Documentation/admin-guide/bootconfig.rst
6436 F:      fs/proc/bootconfig.c
6437 F:      include/linux/bootconfig.h
6438 F:      lib/bootconfig.c
6439 F:      tools/bootconfig/*
6440
6441 EXYNOS DP DRIVER
6442 M:      Jingoo Han <[email protected]>
6443 L:      [email protected]
6444 S:      Maintained
6445 F:      drivers/gpu/drm/exynos/exynos_dp*
6446
6447 EXYNOS SYSMMU (IOMMU) driver
6448 M:      Marek Szyprowski <[email protected]>
6449 L:      [email protected]
6450 S:      Maintained
6451 F:      drivers/iommu/exynos-iommu.c
6452
6453 EZchip NPS platform support
6454 M:      Vineet Gupta <[email protected]>
6455 M:      Ofer Levi <[email protected]>
6456 S:      Supported
6457 F:      arch/arc/boot/dts/eznps.dts
6458 F:      arch/arc/plat-eznps
6459
6460 F2FS FILE SYSTEM
6461 M:      Jaegeuk Kim <[email protected]>
6462 M:      Chao Yu <[email protected]>
6463 L:      [email protected]
6464 S:      Maintained
6465 W:      https://f2fs.wiki.kernel.org/
6466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6467 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6468 F:      Documentation/filesystems/f2fs.rst
6469 F:      fs/f2fs/
6470 F:      include/linux/f2fs_fs.h
6471 F:      include/trace/events/f2fs.h
6472
6473 F71805F HARDWARE MONITORING DRIVER
6474 M:      Jean Delvare <[email protected]>
6475 L:      [email protected]
6476 S:      Maintained
6477 F:      Documentation/hwmon/f71805f.rst
6478 F:      drivers/hwmon/f71805f.c
6479
6480 FADDR2LINE
6481 M:      Josh Poimboeuf <[email protected]>
6482 S:      Maintained
6483 F:      scripts/faddr2line
6484
6485 FAILOVER MODULE
6486 M:      Sridhar Samudrala <[email protected]>
6487 L:      [email protected]
6488 S:      Supported
6489 F:      Documentation/networking/failover.rst
6490 F:      include/net/failover.h
6491 F:      net/core/failover.c
6492
6493 FANOTIFY
6494 M:      Jan Kara <[email protected]>
6495 R:      Amir Goldstein <[email protected]>
6496 L:      [email protected]
6497 S:      Maintained
6498 F:      fs/notify/fanotify/
6499 F:      include/linux/fanotify.h
6500 F:      include/uapi/linux/fanotify.h
6501
6502 FARSYNC SYNCHRONOUS DRIVER
6503 M:      Kevin Curtis <[email protected]>
6504 S:      Supported
6505 W:      http://www.farsite.co.uk/
6506 F:      drivers/net/wan/farsync.*
6507
6508 FAULT INJECTION SUPPORT
6509 M:      Akinobu Mita <[email protected]>
6510 S:      Supported
6511 F:      Documentation/fault-injection/
6512 F:      lib/fault-inject.c
6513
6514 FBTFT Framebuffer drivers
6515 L:      [email protected]
6516 L:      [email protected]
6517 S:      Orphan
6518 F:      drivers/staging/fbtft/
6519
6520 FC0011 TUNER DRIVER
6521 M:      Michael Buesch <[email protected]>
6522 L:      [email protected]
6523 S:      Maintained
6524 F:      drivers/media/tuners/fc0011.c
6525 F:      drivers/media/tuners/fc0011.h
6526
6527 FC2580 MEDIA DRIVER
6528 M:      Antti Palosaari <[email protected]>
6529 L:      [email protected]
6530 S:      Maintained
6531 W:      https://linuxtv.org
6532 W:      http://palosaari.fi/linux/
6533 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6534 T:      git git://linuxtv.org/anttip/media_tree.git
6535 F:      drivers/media/tuners/fc2580*
6536
6537 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6538 M:      Hannes Reinecke <[email protected]>
6539 L:      [email protected]
6540 S:      Supported
6541 W:      www.Open-FCoE.org
6542 F:      drivers/scsi/fcoe/
6543 F:      drivers/scsi/libfc/
6544 F:      include/scsi/fc/
6545 F:      include/scsi/libfc.h
6546 F:      include/scsi/libfcoe.h
6547 F:      include/uapi/scsi/fc/
6548
6549 FILE LOCKING (flock() and fcntl()/lockf())
6550 M:      Jeff Layton <[email protected]>
6551 M:      "J. Bruce Fields" <[email protected]>
6552 L:      [email protected]
6553 S:      Maintained
6554 F:      fs/fcntl.c
6555 F:      fs/locks.c
6556 F:      include/linux/fcntl.h
6557 F:      include/uapi/linux/fcntl.h
6558
6559 FILESYSTEM DIRECT ACCESS (DAX)
6560 M:      Dan Williams <[email protected]>
6561 R:      Matthew Wilcox <[email protected]>
6562 R:      Jan Kara <[email protected]>
6563 L:      [email protected]
6564 L:      [email protected]
6565 S:      Supported
6566 F:      fs/dax.c
6567 F:      include/linux/dax.h
6568 F:      include/trace/events/fs_dax.h
6569
6570 FILESYSTEMS (VFS and infrastructure)
6571 M:      Alexander Viro <[email protected]>
6572 L:      [email protected]
6573 S:      Maintained
6574 F:      fs/*
6575 F:      include/linux/fs.h
6576 F:      include/linux/fs_types.h
6577 F:      include/uapi/linux/fs.h
6578 F:      include/uapi/linux/openat2.h
6579
6580 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6581 M:      Riku Voipio <[email protected]>
6582 L:      [email protected]
6583 S:      Maintained
6584 F:      drivers/hwmon/f75375s.c
6585 F:      include/linux/f75375s.h
6586
6587 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6588 M:      Clemens Ladisch <[email protected]>
6589 M:      Takashi Sakamoto <[email protected]>
6590 L:      [email protected] (moderated for non-subscribers)
6591 S:      Maintained
6592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6593 F:      include/uapi/sound/firewire.h
6594 F:      sound/firewire/
6595
6596 FIREWIRE MEDIA DRIVERS (firedtv)
6597 M:      Stefan Richter <[email protected]>
6598 L:      [email protected]
6599 L:      [email protected]
6600 S:      Maintained
6601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6602 F:      drivers/media/firewire/
6603
6604 FIREWIRE SBP-2 TARGET
6605 M:      Chris Boot <[email protected]>
6606 L:      [email protected]
6607 L:      [email protected]
6608 L:      [email protected]
6609 S:      Maintained
6610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6611 F:      drivers/target/sbp/
6612
6613 FIREWIRE SUBSYSTEM
6614 M:      Stefan Richter <[email protected]>
6615 L:      [email protected]
6616 S:      Maintained
6617 W:      http://ieee1394.wiki.kernel.org/
6618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6619 F:      drivers/firewire/
6620 F:      include/linux/firewire.h
6621 F:      include/uapi/linux/firewire*.h
6622 F:      tools/firewire/
6623
6624 FIRMWARE LOADER (request_firmware)
6625 M:      Luis Chamberlain <[email protected]>
6626 L:      [email protected]
6627 S:      Maintained
6628 F:      Documentation/firmware_class/
6629 F:      drivers/base/firmware_loader/
6630 F:      include/linux/firmware.h
6631
6632 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6633 M:      Joshua Morris <[email protected]>
6634 M:      Philip Kelleher <[email protected]>
6635 S:      Maintained
6636 F:      drivers/block/rsxx/
6637
6638 FLEXTIMER FTM-QUADDEC DRIVER
6639 M:      Patrick Havelange <[email protected]>
6640 L:      [email protected]
6641 S:      Maintained
6642 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6643 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6644 F:      drivers/counter/ftm-quaddec.c
6645
6646 FLOPPY DRIVER
6647 M:      Denis Efremov <[email protected]>
6648 L:      [email protected]
6649 S:      Odd Fixes
6650 F:      drivers/block/floppy.c
6651
6652 FLYSKY FSIA6B RC RECEIVER
6653 M:      Markus Koch <[email protected]>
6654 L:      [email protected]
6655 S:      Maintained
6656 F:      drivers/input/joystick/fsia6b.c
6657
6658 FORCEDETH GIGABIT ETHERNET DRIVER
6659 M:      Rain River <[email protected]>
6660 M:      Zhu Yanjun <[email protected]>
6661 L:      [email protected]
6662 S:      Maintained
6663 F:      drivers/net/ethernet/nvidia/*
6664
6665 FPGA DFL DRIVERS
6666 M:      Wu Hao <[email protected]>
6667 L:      [email protected]
6668 S:      Maintained
6669 F:      Documentation/fpga/dfl.rst
6670 F:      drivers/fpga/dfl*
6671 F:      include/uapi/linux/fpga-dfl.h
6672
6673 FPGA MANAGER FRAMEWORK
6674 M:      Moritz Fischer <[email protected]>
6675 L:      [email protected]
6676 S:      Maintained
6677 W:      http://www.rocketboards.org
6678 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6680 F:      Documentation/devicetree/bindings/fpga/
6681 F:      Documentation/driver-api/fpga/
6682 F:      Documentation/fpga/
6683 F:      drivers/fpga/
6684 F:      include/linux/fpga/
6685
6686 FPU EMULATOR
6687 M:      Bill Metzenthen <[email protected]>
6688 S:      Maintained
6689 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6690 F:      arch/x86/math-emu/
6691
6692 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6693 L:      [email protected]
6694 S:      Orphan
6695 F:      drivers/net/wan/dlci.c
6696 F:      drivers/net/wan/sdla.c
6697
6698 FRAMEBUFFER LAYER
6699 M:      Bartlomiej Zolnierkiewicz <[email protected]>
6700 L:      [email protected]
6701 L:      [email protected]
6702 S:      Maintained
6703 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6704 T:      git git://anongit.freedesktop.org/drm/drm-misc
6705 F:      Documentation/fb/
6706 F:      drivers/video/
6707 F:      include/linux/fb.h
6708 F:      include/uapi/linux/fb.h
6709 F:      include/uapi/video/
6710 F:      include/video/
6711
6712 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6713 M:      Horia Geantă <[email protected]>
6714 M:      Aymen Sghaier <[email protected]>
6715 L:      [email protected]
6716 S:      Maintained
6717 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6718 F:      drivers/crypto/caam/
6719
6720 FREESCALE DIU FRAMEBUFFER DRIVER
6721 M:      Timur Tabi <[email protected]>
6722 L:      [email protected]
6723 S:      Maintained
6724 F:      drivers/video/fbdev/fsl-diu-fb.*
6725
6726 FREESCALE DMA DRIVER
6727 M:      Li Yang <[email protected]>
6728 M:      Zhang Wei <[email protected]>
6729 L:      [email protected]
6730 S:      Maintained
6731 F:      drivers/dma/fsldma.*
6732
6733 FREESCALE ENETC ETHERNET DRIVERS
6734 M:      Claudiu Manoil <[email protected]>
6735 L:      [email protected]
6736 S:      Maintained
6737 F:      drivers/net/ethernet/freescale/enetc/
6738
6739 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6740 M:      Claudiu Manoil <[email protected]>
6741 L:      [email protected]
6742 S:      Maintained
6743 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6744 F:      drivers/net/ethernet/freescale/gianfar*
6745
6746 FREESCALE GPMI NAND DRIVER
6747 M:      Han Xu <[email protected]>
6748 L:      [email protected]
6749 S:      Maintained
6750 F:      drivers/mtd/nand/raw/gpmi-nand/*
6751
6752 FREESCALE I2C CPM DRIVER
6753 M:      Jochen Friedrich <[email protected]>
6754 L:      [email protected]
6755 L:      [email protected]
6756 S:      Maintained
6757 F:      drivers/i2c/busses/i2c-cpm.c
6758
6759 FREESCALE IMX / MXC FEC DRIVER
6760 M:      Fugang Duan <[email protected]>
6761 L:      [email protected]
6762 S:      Maintained
6763 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6764 F:      drivers/net/ethernet/freescale/fec.h
6765 F:      drivers/net/ethernet/freescale/fec_main.c
6766 F:      drivers/net/ethernet/freescale/fec_ptp.c
6767
6768 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6769 M:      Sascha Hauer <[email protected]>
6770 R:      Pengutronix Kernel Team <[email protected]>
6771 L:      [email protected]
6772 L:      [email protected] (moderated for non-subscribers)
6773 S:      Maintained
6774 F:      drivers/video/fbdev/imxfb.c
6775 F:      include/linux/platform_data/video-imxfb.h
6776
6777 FREESCALE IMX DDR PMU DRIVER
6778 M:      Frank Li <[email protected]>
6779 L:      [email protected]
6780 S:      Maintained
6781 F:      Documentation/admin-guide/perf/imx-ddr.rst
6782 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6783 F:      drivers/perf/fsl_imx8_ddr_perf.c
6784
6785 FREESCALE IMX I2C DRIVER
6786 M:      Oleksij Rempel <[email protected]>
6787 R:      Pengutronix Kernel Team <[email protected]>
6788 L:      [email protected]
6789 S:      Maintained
6790 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6791 F:      drivers/i2c/busses/i2c-imx.c
6792
6793 FREESCALE IMX LPI2C DRIVER
6794 M:      Dong Aisheng <[email protected]>
6795 L:      [email protected]
6796 L:      [email protected]
6797 S:      Maintained
6798 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6799 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6800
6801 FREESCALE QORIQ DPAA ETHERNET DRIVER
6802 M:      Madalin Bucur <[email protected]>
6803 L:      [email protected]
6804 S:      Maintained
6805 F:      drivers/net/ethernet/freescale/dpaa
6806
6807 FREESCALE QORIQ DPAA FMAN DRIVER
6808 M:      Madalin Bucur <[email protected]>
6809 L:      [email protected]
6810 S:      Maintained
6811 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6812 F:      drivers/net/ethernet/freescale/fman
6813
6814 FREESCALE QORIQ PTP CLOCK DRIVER
6815 M:      Yangbo Lu <[email protected]>
6816 L:      [email protected]
6817 S:      Maintained
6818 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6819 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6820 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6821 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6822 F:      drivers/ptp/ptp_qoriq.c
6823 F:      drivers/ptp/ptp_qoriq_debugfs.c
6824 F:      include/linux/fsl/ptp_qoriq.h
6825
6826 FREESCALE QUAD SPI DRIVER
6827 M:      Han Xu <[email protected]>
6828 L:      [email protected]
6829 S:      Maintained
6830 F:      drivers/spi/spi-fsl-qspi.c
6831
6832 FREESCALE QUICC ENGINE LIBRARY
6833 M:      Qiang Zhao <[email protected]>
6834 L:      [email protected]
6835 S:      Maintained
6836 F:      drivers/soc/fsl/qe/
6837 F:      include/soc/fsl/*qe*.h
6838 F:      include/soc/fsl/*ucc*.h
6839
6840 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6841 M:      Li Yang <[email protected]>
6842 L:      [email protected]
6843 L:      [email protected]
6844 S:      Maintained
6845 F:      drivers/net/ethernet/freescale/ucc_geth*
6846
6847 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6848 M:      Zhao Qiang <[email protected]>
6849 L:      [email protected]
6850 L:      [email protected]
6851 S:      Maintained
6852 F:      drivers/net/wan/fsl_ucc_hdlc*
6853
6854 FREESCALE QUICC ENGINE UCC UART DRIVER
6855 M:      Timur Tabi <[email protected]>
6856 L:      [email protected]
6857 S:      Maintained
6858 F:      drivers/tty/serial/ucc_uart.c
6859
6860 FREESCALE SOC DRIVERS
6861 M:      Li Yang <[email protected]>
6862 L:      [email protected]
6863 L:      [email protected]
6864 S:      Maintained
6865 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6866 F:      Documentation/devicetree/bindings/soc/fsl/
6867 F:      drivers/soc/fsl/
6868 F:      include/linux/fsl/
6869
6870 FREESCALE SOC FS_ENET DRIVER
6871 M:      Pantelis Antoniou <[email protected]>
6872 L:      [email protected]
6873 L:      [email protected]
6874 S:      Maintained
6875 F:      drivers/net/ethernet/freescale/fs_enet/
6876 F:      include/linux/fs_enet_pd.h
6877
6878 FREESCALE SOC SOUND DRIVERS
6879 M:      Timur Tabi <[email protected]>
6880 M:      Nicolin Chen <[email protected]>
6881 M:      Xiubo Li <[email protected]>
6882 R:      Fabio Estevam <[email protected]>
6883 L:      [email protected] (moderated for non-subscribers)
6884 L:      [email protected]
6885 S:      Maintained
6886 F:      sound/soc/fsl/fsl*
6887 F:      sound/soc/fsl/imx*
6888 F:      sound/soc/fsl/mpc8610_hpcd.c
6889
6890 FREESCALE USB PERIPHERAL DRIVERS
6891 M:      Li Yang <[email protected]>
6892 L:      [email protected]
6893 L:      [email protected]
6894 S:      Maintained
6895 F:      drivers/usb/gadget/udc/fsl*
6896
6897 FREEVXFS FILESYSTEM
6898 M:      Christoph Hellwig <[email protected]>
6899 S:      Maintained
6900 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6901 F:      fs/freevxfs/
6902
6903 FREEZER
6904 M:      "Rafael J. Wysocki" <[email protected]>
6905 M:      Pavel Machek <[email protected]>
6906 L:      [email protected]
6907 S:      Supported
6908 F:      Documentation/power/freezing-of-tasks.rst
6909 F:      include/linux/freezer.h
6910 F:      kernel/freezer.c
6911
6912 FRONTSWAP API
6913 M:      Konrad Rzeszutek Wilk <[email protected]>
6914 L:      [email protected]
6915 S:      Maintained
6916 F:      include/linux/frontswap.h
6917 F:      mm/frontswap.c
6918
6919 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6920 M:      David Howells <[email protected]>
6921 L:      [email protected] (moderated for non-subscribers)
6922 S:      Supported
6923 F:      Documentation/filesystems/caching/
6924 F:      fs/fscache/
6925 F:      include/linux/fscache*.h
6926
6927 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6928 M:      Theodore Y. Ts'o <[email protected]>
6929 M:      Jaegeuk Kim <[email protected]>
6930 M:      Eric Biggers <[email protected]>
6931 L:      [email protected]
6932 S:      Supported
6933 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6934 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6935 F:      Documentation/filesystems/fscrypt.rst
6936 F:      fs/crypto/
6937 F:      include/linux/fscrypt*.h
6938 F:      include/uapi/linux/fscrypt.h
6939
6940 FSI SUBSYSTEM
6941 M:      Jeremy Kerr <[email protected]>
6942 M:      Joel Stanley <[email protected]>
6943 R:      Alistar Popple <[email protected]>
6944 R:      Eddie James <[email protected]>
6945 L:      [email protected]
6946 S:      Supported
6947 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6949 F:      drivers/fsi/
6950 F:      include/linux/fsi*.h
6951 F:      include/trace/events/fsi*.h
6952
6953 FSI-ATTACHED I2C DRIVER
6954 M:      Eddie James <[email protected]>
6955 L:      [email protected]
6956 L:      [email protected] (moderated for non-subscribers)
6957 S:      Maintained
6958 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6959 F:      drivers/i2c/busses/i2c-fsi.c
6960
6961 FSI-ATTACHED SPI DRIVER
6962 M:      Eddie James <[email protected]>
6963 L:      [email protected]
6964 S:      Maintained
6965 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
6966 F:      drivers/spi/spi-fsi.c
6967
6968 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6969 M:      Jan Kara <[email protected]>
6970 R:      Amir Goldstein <[email protected]>
6971 L:      [email protected]
6972 S:      Maintained
6973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
6974 F:      fs/notify/
6975 F:      include/linux/fsnotify*.h
6976
6977 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
6978 M:      Eric Biggers <[email protected]>
6979 M:      Theodore Y. Ts'o <[email protected]>
6980 L:      [email protected]
6981 S:      Supported
6982 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6983 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
6984 F:      Documentation/filesystems/fsverity.rst
6985 F:      fs/verity/
6986 F:      include/linux/fsverity.h
6987 F:      include/uapi/linux/fsverity.h
6988
6989 FUJITSU LAPTOP EXTRAS
6990 M:      Jonathan Woithe <[email protected]>
6991 L:      [email protected]
6992 S:      Maintained
6993 F:      drivers/platform/x86/fujitsu-laptop.c
6994
6995 FUJITSU M-5MO LS CAMERA ISP DRIVER
6996 M:      Kyungmin Park <[email protected]>
6997 M:      Heungjun Kim <[email protected]>
6998 L:      [email protected]
6999 S:      Maintained
7000 F:      drivers/media/i2c/m5mols/
7001 F:      include/media/i2c/m5mols.h
7002
7003 FUJITSU TABLET EXTRAS
7004 M:      Robert Gerlach <[email protected]>
7005 L:      [email protected]
7006 S:      Maintained
7007 F:      drivers/platform/x86/fujitsu-tablet.c
7008
7009 FUSE: FILESYSTEM IN USERSPACE
7010 M:      Miklos Szeredi <[email protected]>
7011 L:      [email protected]
7012 S:      Maintained
7013 W:      http://fuse.sourceforge.net/
7014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7015 F:      Documentation/filesystems/fuse.rst
7016 F:      fs/fuse/
7017 F:      include/uapi/linux/fuse.h
7018
7019 FUTEX SUBSYSTEM
7020 M:      Thomas Gleixner <[email protected]>
7021 M:      Ingo Molnar <[email protected]>
7022 R:      Peter Zijlstra <[email protected]>
7023 R:      Darren Hart <[email protected]>
7024 L:      [email protected]
7025 S:      Maintained
7026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7027 F:      Documentation/*futex*
7028 F:      include/asm-generic/futex.h
7029 F:      include/linux/futex.h
7030 F:      include/uapi/linux/futex.h
7031 F:      kernel/futex.c
7032 F:      tools/perf/bench/futex*
7033 F:      tools/testing/selftests/futex/
7034
7035 GASKET DRIVER FRAMEWORK
7036 M:      Rob Springer <[email protected]>
7037 M:      Todd Poynor <[email protected]>
7038 M:      Ben Chan <[email protected]>
7039 S:      Maintained
7040 F:      drivers/staging/gasket/
7041
7042 GCC PLUGINS
7043 M:      Kees Cook <[email protected]>
7044 R:      Emese Revfy <[email protected]>
7045 L:      [email protected]
7046 S:      Maintained
7047 F:      Documentation/kbuild/gcc-plugins.rst
7048 F:      scripts/Makefile.gcc-plugins
7049 F:      scripts/gcc-plugin.sh
7050 F:      scripts/gcc-plugins/
7051
7052 GCOV BASED KERNEL PROFILING
7053 M:      Peter Oberparleiter <[email protected]>
7054 S:      Maintained
7055 F:      Documentation/dev-tools/gcov.rst
7056 F:      kernel/gcov/
7057
7058 GDB KERNEL DEBUGGING HELPER SCRIPTS
7059 M:      Jan Kiszka <[email protected]>
7060 M:      Kieran Bingham <[email protected]>
7061 S:      Supported
7062 F:      scripts/gdb/
7063
7064 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7065 M:      Achim Leubner <[email protected]>
7066 L:      [email protected]
7067 S:      Supported
7068 W:      http://www.icp-vortex.com/
7069 F:      drivers/scsi/gdt*
7070
7071 GEMTEK FM RADIO RECEIVER DRIVER
7072 M:      Hans Verkuil <[email protected]>
7073 L:      [email protected]
7074 S:      Maintained
7075 W:      https://linuxtv.org
7076 T:      git git://linuxtv.org/media_tree.git
7077 F:      drivers/media/radio/radio-gemtek*
7078
7079 GENERIC ARCHITECTURE TOPOLOGY
7080 M:      Sudeep Holla <[email protected]>
7081 L:      [email protected]
7082 S:      Maintained
7083 F:      drivers/base/arch_topology.c
7084 F:      include/linux/arch_topology.h
7085
7086 GENERIC GPIO I2C DRIVER
7087 M:      Wolfram Sang <[email protected]>
7088 S:      Supported
7089 F:      drivers/i2c/busses/i2c-gpio.c
7090 F:      include/linux/platform_data/i2c-gpio.h
7091
7092 GENERIC GPIO I2C MULTIPLEXER DRIVER
7093 M:      Peter Korsgaard <[email protected]>
7094 L:      [email protected]
7095 S:      Supported
7096 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7097 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7098 F:      include/linux/platform_data/i2c-mux-gpio.h
7099
7100 GENERIC HDLC (WAN) DRIVERS
7101 M:      Krzysztof Halasa <[email protected]>
7102 S:      Maintained
7103 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7104 F:      drivers/net/wan/c101.c
7105 F:      drivers/net/wan/hd6457*
7106 F:      drivers/net/wan/hdlc*
7107 F:      drivers/net/wan/n2.c
7108 F:      drivers/net/wan/pc300too.c
7109 F:      drivers/net/wan/pci200syn.c
7110 F:      drivers/net/wan/wanxl*
7111
7112 GENERIC INCLUDE/ASM HEADER FILES
7113 M:      Arnd Bergmann <[email protected]>
7114 L:      [email protected]
7115 S:      Maintained
7116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7117 F:      include/asm-generic/
7118 F:      include/uapi/asm-generic/
7119
7120 GENERIC PHY FRAMEWORK
7121 M:      Kishon Vijay Abraham I <[email protected]>
7122 L:      [email protected]
7123 S:      Supported
7124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
7125 F:      Documentation/devicetree/bindings/phy/
7126 F:      drivers/phy/
7127 F:      include/linux/phy/
7128
7129 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7130 M:      Wolfram Sang <[email protected]>
7131 S:      Supported
7132 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7133
7134 GENERIC PM DOMAINS
7135 M:      "Rafael J. Wysocki" <[email protected]>
7136 M:      Kevin Hilman <[email protected]>
7137 M:      Ulf Hansson <[email protected]>
7138 L:      [email protected]
7139 S:      Supported
7140 F:      Documentation/devicetree/bindings/power/power?domain*
7141 F:      drivers/base/power/domain*.c
7142 F:      include/linux/pm_domain.h
7143
7144 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7145 M:      Eugen Hristev <[email protected]>
7146 L:      [email protected]
7147 S:      Maintained
7148 F:      drivers/input/touchscreen/resistive-adc-touch.c
7149
7150 GENERIC UIO DRIVER FOR PCI DEVICES
7151 M:      "Michael S. Tsirkin" <[email protected]>
7152 L:      [email protected]
7153 S:      Supported
7154 F:      drivers/uio/uio_pci_generic.c
7155
7156 GENERIC VDSO LIBRARY
7157 M:      Andy Lutomirski <[email protected]>
7158 M:      Thomas Gleixner <[email protected]>
7159 M:      Vincenzo Frascino <[email protected]>
7160 L:      [email protected]
7161 S:      Maintained
7162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7163 F:      include/asm-generic/vdso/vsyscall.h
7164 F:      include/vdso/
7165 F:      kernel/time/vsyscall.c
7166 F:      lib/vdso/
7167
7168 GENWQE (IBM Generic Workqueue Card)
7169 M:      Frank Haverkamp <[email protected]>
7170 S:      Supported
7171 F:      drivers/misc/genwqe/
7172
7173 GET_MAINTAINER SCRIPT
7174 M:      Joe Perches <[email protected]>
7175 S:      Maintained
7176 F:      scripts/get_maintainer.pl
7177
7178 GFS2 FILE SYSTEM
7179 M:      Bob Peterson <[email protected]>
7180 M:      Andreas Gruenbacher <[email protected]>
7181 L:      [email protected]
7182 S:      Supported
7183 W:      http://sources.redhat.com/cluster/
7184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7185 F:      Documentation/filesystems/gfs2*.txt
7186 F:      fs/gfs2/
7187 F:      include/uapi/linux/gfs2_ondisk.h
7188
7189 GNSS SUBSYSTEM
7190 M:      Johan Hovold <[email protected]>
7191 S:      Maintained
7192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7193 F:      Documentation/ABI/testing/sysfs-class-gnss
7194 F:      Documentation/devicetree/bindings/gnss/
7195 F:      drivers/gnss/
7196 F:      include/linux/gnss.h
7197
7198 GO7007 MPEG CODEC
7199 M:      Hans Verkuil <[email protected]>
7200 L:      [email protected]
7201 S:      Maintained
7202 F:      drivers/media/usb/go7007/
7203
7204 GOODIX TOUCHSCREEN
7205 M:      Bastien Nocera <[email protected]>
7206 L:      [email protected]
7207 S:      Maintained
7208 F:      drivers/input/touchscreen/goodix.c
7209
7210 GOOGLE ETHERNET DRIVERS
7211 M:      Catherine Sullivan <[email protected]>
7212 R:      Sagi Shahar <[email protected]>
7213 R:      Jon Olson <[email protected]>
7214 L:      [email protected]
7215 S:      Supported
7216 F:      Documentation/networking/device_drivers/google/gve.rst
7217 F:      drivers/net/ethernet/google
7218
7219 GPD POCKET FAN DRIVER
7220 M:      Hans de Goede <[email protected]>
7221 L:      [email protected]
7222 S:      Maintained
7223 F:      drivers/platform/x86/gpd-pocket-fan.c
7224
7225 GPIO ACPI SUPPORT
7226 M:      Mika Westerberg <[email protected]>
7227 M:      Andy Shevchenko <[email protected]>
7228 L:      [email protected]
7229 L:      [email protected]
7230 S:      Maintained
7231 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7232 F:      drivers/gpio/gpiolib-acpi.c
7233 F:      drivers/gpio/gpiolib-acpi.h
7234
7235 GPIO IR Transmitter
7236 M:      Sean Young <[email protected]>
7237 L:      [email protected]
7238 S:      Maintained
7239 F:      drivers/media/rc/gpio-ir-tx.c
7240
7241 GPIO MOCKUP DRIVER
7242 M:      Bamvor Jian Zhang <[email protected]>
7243 L:      [email protected]
7244 S:      Maintained
7245 F:      drivers/gpio/gpio-mockup.c
7246 F:      tools/testing/selftests/gpio/
7247
7248 GPIO SUBSYSTEM
7249 M:      Linus Walleij <[email protected]>
7250 M:      Bartosz Golaszewski <[email protected]>
7251 L:      [email protected]
7252 S:      Maintained
7253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7254 F:      Documentation/ABI/obsolete/sysfs-gpio
7255 F:      Documentation/ABI/testing/gpio-cdev
7256 F:      Documentation/admin-guide/gpio/
7257 F:      Documentation/devicetree/bindings/gpio/
7258 F:      Documentation/driver-api/gpio/
7259 F:      drivers/gpio/
7260 F:      include/asm-generic/gpio.h
7261 F:      include/linux/gpio.h
7262 F:      include/linux/gpio/
7263 F:      include/linux/of_gpio.h
7264 F:      include/uapi/linux/gpio.h
7265 F:      tools/gpio/
7266
7267 GRE DEMULTIPLEXER DRIVER
7268 M:      Dmitry Kozlov <[email protected]>
7269 L:      [email protected]
7270 S:      Maintained
7271 F:      include/net/gre.h
7272 F:      net/ipv4/gre_demux.c
7273 F:      net/ipv4/gre_offload.c
7274
7275 GRETH 10/100/1G Ethernet MAC device driver
7276 M:      Andreas Larsson <[email protected]>
7277 L:      [email protected]
7278 S:      Maintained
7279 F:      drivers/net/ethernet/aeroflex/
7280
7281 GREYBUS AUDIO PROTOCOLS DRIVERS
7282 M:      Vaibhav Agarwal <[email protected]>
7283 M:      Mark Greer <[email protected]>
7284 S:      Maintained
7285 F:      drivers/staging/greybus/audio_apbridgea.c
7286 F:      drivers/staging/greybus/audio_apbridgea.h
7287 F:      drivers/staging/greybus/audio_codec.c
7288 F:      drivers/staging/greybus/audio_codec.h
7289 F:      drivers/staging/greybus/audio_gb.c
7290 F:      drivers/staging/greybus/audio_manager.c
7291 F:      drivers/staging/greybus/audio_manager.h
7292 F:      drivers/staging/greybus/audio_manager_module.c
7293 F:      drivers/staging/greybus/audio_manager_private.h
7294 F:      drivers/staging/greybus/audio_manager_sysfs.c
7295 F:      drivers/staging/greybus/audio_module.c
7296 F:      drivers/staging/greybus/audio_topology.c
7297
7298 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7299 M:      Viresh Kumar <[email protected]>
7300 S:      Maintained
7301 F:      drivers/staging/greybus/authentication.c
7302 F:      drivers/staging/greybus/bootrom.c
7303 F:      drivers/staging/greybus/firmware.h
7304 F:      drivers/staging/greybus/fw-core.c
7305 F:      drivers/staging/greybus/fw-download.c
7306 F:      drivers/staging/greybus/fw-management.c
7307 F:      drivers/staging/greybus/greybus_authentication.h
7308 F:      drivers/staging/greybus/greybus_firmware.h
7309 F:      drivers/staging/greybus/hid.c
7310 F:      drivers/staging/greybus/i2c.c
7311 F:      drivers/staging/greybus/spi.c
7312 F:      drivers/staging/greybus/spilib.c
7313 F:      drivers/staging/greybus/spilib.h
7314
7315 GREYBUS LOOPBACK DRIVER
7316 M:      Bryan O'Donoghue <[email protected]>
7317 S:      Maintained
7318 F:      drivers/staging/greybus/loopback.c
7319
7320 GREYBUS PLATFORM DRIVERS
7321 M:      Vaibhav Hiremath <[email protected]>
7322 S:      Maintained
7323 F:      drivers/staging/greybus/arche-apb-ctrl.c
7324 F:      drivers/staging/greybus/arche-platform.c
7325 F:      drivers/staging/greybus/arche_platform.h
7326
7327 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7328 M:      Rui Miguel Silva <[email protected]>
7329 S:      Maintained
7330 F:      drivers/staging/greybus/gpio.c
7331 F:      drivers/staging/greybus/light.c
7332 F:      drivers/staging/greybus/power_supply.c
7333 F:      drivers/staging/greybus/sdio.c
7334 F:      drivers/staging/greybus/spi.c
7335 F:      drivers/staging/greybus/spilib.c
7336
7337 GREYBUS SUBSYSTEM
7338 M:      Johan Hovold <[email protected]>
7339 M:      Alex Elder <[email protected]>
7340 M:      Greg Kroah-Hartman <[email protected]>
7341 L:      [email protected] (moderated for non-subscribers)
7342 S:      Maintained
7343 F:      drivers/greybus/
7344 F:      drivers/staging/greybus/
7345 F:      include/linux/greybus.h
7346 F:      include/linux/greybus/
7347
7348 GREYBUS UART PROTOCOLS DRIVERS
7349 M:      David Lin <[email protected]>
7350 S:      Maintained
7351 F:      drivers/staging/greybus/log.c
7352 F:      drivers/staging/greybus/uart.c
7353
7354 GS1662 VIDEO SERIALIZER
7355 M:      Charles-Antoine Couret <[email protected]>
7356 L:      [email protected]
7357 S:      Maintained
7358 T:      git git://linuxtv.org/media_tree.git
7359 F:      drivers/media/spi/gs1662.c
7360
7361 GSPCA FINEPIX SUBDRIVER
7362 M:      Frank Zago <[email protected]>
7363 L:      [email protected]
7364 S:      Maintained
7365 T:      git git://linuxtv.org/media_tree.git
7366 F:      drivers/media/usb/gspca/finepix.c
7367
7368 GSPCA GL860 SUBDRIVER
7369 M:      Olivier Lorin <[email protected]>
7370 L:      [email protected]
7371 S:      Maintained
7372 T:      git git://linuxtv.org/media_tree.git
7373 F:      drivers/media/usb/gspca/gl860/
7374
7375 GSPCA M5602 SUBDRIVER
7376 M:      Erik Andren <[email protected]>
7377 L:      [email protected]
7378 S:      Maintained
7379 T:      git git://linuxtv.org/media_tree.git
7380 F:      drivers/media/usb/gspca/m5602/
7381
7382 GSPCA PAC207 SONIXB SUBDRIVER
7383 M:      Hans Verkuil <[email protected]>
7384 L:      [email protected]
7385 S:      Odd Fixes
7386 T:      git git://linuxtv.org/media_tree.git
7387 F:      drivers/media/usb/gspca/pac207.c
7388
7389 GSPCA SN9C20X SUBDRIVER
7390 M:      Brian Johnson <[email protected]>
7391 L:      [email protected]
7392 S:      Maintained
7393 T:      git git://linuxtv.org/media_tree.git
7394 F:      drivers/media/usb/gspca/sn9c20x.c
7395
7396 GSPCA T613 SUBDRIVER
7397 M:      Leandro Costantino <[email protected]>
7398 L:      [email protected]
7399 S:      Maintained
7400 T:      git git://linuxtv.org/media_tree.git
7401 F:      drivers/media/usb/gspca/t613.c
7402
7403 GSPCA USB WEBCAM DRIVER
7404 M:      Hans Verkuil <[email protected]>
7405 L:      [email protected]
7406 S:      Odd Fixes
7407 T:      git git://linuxtv.org/media_tree.git
7408 F:      drivers/media/usb/gspca/
7409
7410 GTP (GPRS Tunneling Protocol)
7411 M:      Pablo Neira Ayuso <[email protected]>
7412 M:      Harald Welte <[email protected]>
7413 L:      [email protected]
7414 S:      Maintained
7415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7416 F:      drivers/net/gtp.c
7417
7418 GUID PARTITION TABLE (GPT)
7419 M:      Davidlohr Bueso <[email protected]>
7420 L:      [email protected]
7421 S:      Maintained
7422 F:      block/partitions/efi.*
7423
7424 H8/300 ARCHITECTURE
7425 M:      Yoshinori Sato <[email protected]>
7426 L:      [email protected] (moderated for non-subscribers)
7427 S:      Maintained
7428 W:      http://uclinux-h8.sourceforge.jp
7429 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7430 F:      arch/h8300/
7431 F:      drivers/clk/h8300/
7432 F:      drivers/clocksource/h8300_*.c
7433 F:      drivers/irqchip/irq-renesas-h8*.c
7434
7435 HABANALABS PCI DRIVER
7436 M:      Oded Gabbay <[email protected]>
7437 S:      Supported
7438 T:      git https://github.com/HabanaAI/linux.git
7439 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7440 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7441 F:      drivers/misc/habanalabs/
7442 F:      include/uapi/misc/habanalabs.h
7443
7444 HACKRF MEDIA DRIVER
7445 M:      Antti Palosaari <[email protected]>
7446 L:      [email protected]
7447 S:      Maintained
7448 W:      https://linuxtv.org
7449 W:      http://palosaari.fi/linux/
7450 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7451 T:      git git://linuxtv.org/anttip/media_tree.git
7452 F:      drivers/media/usb/hackrf/
7453
7454 HANTRO VPU CODEC DRIVER
7455 M:      Ezequiel Garcia <[email protected]>
7456 M:      Philipp Zabel <[email protected]>
7457 L:      [email protected]
7458 L:      [email protected]
7459 S:      Maintained
7460 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7461 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
7462 F:      drivers/staging/media/hantro/
7463
7464 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7465 M:      Frank Seidel <[email protected]>
7466 L:      [email protected]
7467 S:      Maintained
7468 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7469 F:      drivers/platform/x86/hdaps.c
7470
7471 HARDWARE MONITORING
7472 M:      Jean Delvare <[email protected]>
7473 M:      Guenter Roeck <[email protected]>
7474 L:      [email protected]
7475 S:      Maintained
7476 W:      http://hwmon.wiki.kernel.org/
7477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7478 F:      Documentation/devicetree/bindings/hwmon/
7479 F:      Documentation/hwmon/
7480 F:      drivers/hwmon/
7481 F:      include/linux/hwmon*.h
7482 F:      include/trace/events/hwmon*.h
7483
7484 HARDWARE RANDOM NUMBER GENERATOR CORE
7485 M:      Matt Mackall <[email protected]>
7486 M:      Herbert Xu <[email protected]>
7487 L:      [email protected]
7488 S:      Odd fixes
7489 F:      Documentation/admin-guide/hw_random.rst
7490 F:      Documentation/devicetree/bindings/rng/
7491 F:      drivers/char/hw_random/
7492 F:      include/linux/hw_random.h
7493
7494 HARDWARE SPINLOCK CORE
7495 M:      Ohad Ben-Cohen <[email protected]>
7496 M:      Bjorn Andersson <[email protected]>
7497 R:      Baolin Wang <[email protected]>
7498 L:      [email protected]
7499 S:      Maintained
7500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7501 F:      Documentation/devicetree/bindings/hwlock/
7502 F:      Documentation/hwspinlock.txt
7503 F:      drivers/hwspinlock/
7504 F:      include/linux/hwspinlock.h
7505
7506 HARDWARE TRACING FACILITIES
7507 M:      Alexander Shishkin <[email protected]>
7508 S:      Maintained
7509 F:      drivers/hwtracing/
7510
7511 HARMONY SOUND DRIVER
7512 L:      [email protected]
7513 S:      Maintained
7514 F:      sound/parisc/harmony.*
7515
7516 HDPVR USB VIDEO ENCODER DRIVER
7517 M:      Hans Verkuil <[email protected]>
7518 L:      [email protected]
7519 S:      Odd Fixes
7520 W:      https://linuxtv.org
7521 T:      git git://linuxtv.org/media_tree.git
7522 F:      drivers/media/usb/hdpvr/
7523
7524 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7525 M:      Jerry Hoemann <[email protected]>
7526 S:      Supported
7527 F:      Documentation/watchdog/hpwdt.rst
7528 F:      drivers/watchdog/hpwdt.c
7529
7530 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7531 M:      Don Brace <[email protected]>
7532 L:      [email protected]
7533 L:      [email protected]
7534 S:      Supported
7535 F:      Documentation/scsi/hpsa.rst
7536 F:      drivers/scsi/hpsa*.[ch]
7537 F:      include/linux/cciss*.h
7538 F:      include/uapi/linux/cciss*.h
7539
7540 HFI1 DRIVER
7541 M:      Mike Marciniszyn <[email protected]>
7542 M:      Dennis Dalessandro <[email protected]>
7543 L:      [email protected]
7544 S:      Supported
7545 F:      drivers/infiniband/hw/hfi1
7546
7547 HFS FILESYSTEM
7548 L:      [email protected]
7549 S:      Orphan
7550 F:      Documentation/filesystems/hfs.rst
7551 F:      fs/hfs/
7552
7553 HFSPLUS FILESYSTEM
7554 L:      [email protected]
7555 S:      Orphan
7556 F:      Documentation/filesystems/hfsplus.rst
7557 F:      fs/hfsplus/
7558
7559 HGA FRAMEBUFFER DRIVER
7560 M:      Ferenc Bakonyi <[email protected]>
7561 L:      [email protected]
7562 S:      Maintained
7563 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7564 F:      drivers/video/fbdev/hgafb.c
7565
7566 HIBERNATION (aka Software Suspend, aka swsusp)
7567 M:      "Rafael J. Wysocki" <[email protected]>
7568 M:      Pavel Machek <[email protected]>
7569 L:      [email protected]
7570 S:      Supported
7571 B:      https://bugzilla.kernel.org
7572 F:      arch/*/include/asm/suspend*.h
7573 F:      arch/x86/power/
7574 F:      drivers/base/power/
7575 F:      include/linux/freezer.h
7576 F:      include/linux/pm.h
7577 F:      include/linux/suspend.h
7578 F:      kernel/power/
7579
7580 HID CORE LAYER
7581 M:      Jiri Kosina <[email protected]>
7582 M:      Benjamin Tissoires <[email protected]>
7583 L:      [email protected]
7584 S:      Maintained
7585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7586 F:      drivers/hid/
7587 F:      include/linux/hid*
7588 F:      include/uapi/linux/hid*
7589
7590 HID SENSOR HUB DRIVERS
7591 M:      Jiri Kosina <[email protected]>
7592 M:      Jonathan Cameron <[email protected]>
7593 M:      Srinivas Pandruvada <[email protected]>
7594 L:      [email protected]
7595 L:      [email protected]
7596 S:      Maintained
7597 F:      Documentation/hid/hid-sensor*
7598 F:      drivers/hid/hid-sensor-*
7599 F:      drivers/iio/*/hid-*
7600 F:      include/linux/hid-sensor-*
7601
7602 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7603 M:      Thomas Gleixner <[email protected]>
7604 L:      [email protected]
7605 S:      Maintained
7606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7607 F:      Documentation/timers/
7608 F:      include/linux/clockchips.h
7609 F:      include/linux/hrtimer.h
7610 F:      kernel/time/clockevents.c
7611 F:      kernel/time/hrtimer.c
7612 F:      kernel/time/timer_*.c
7613
7614 HIGH-SPEED SCC DRIVER FOR AX.25
7615 L:      [email protected]
7616 S:      Orphan
7617 F:      drivers/net/hamradio/dmascc.c
7618 F:      drivers/net/hamradio/scc.c
7619
7620 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7621 M:      HighPoint Linux Team <[email protected]>
7622 S:      Supported
7623 W:      http://www.highpoint-tech.com
7624 F:      Documentation/scsi/hptiop.rst
7625 F:      drivers/scsi/hptiop.c
7626
7627 HIPPI
7628 M:      Jes Sorensen <[email protected]>
7629 L:      [email protected]
7630 S:      Maintained
7631 F:      drivers/net/hippi/
7632 F:      include/linux/hippidevice.h
7633 F:      include/uapi/linux/if_hippi.h
7634 F:      net/802/hippi.c
7635
7636 HISILICON DMA DRIVER
7637 M:      Zhou Wang <[email protected]>
7638 L:      [email protected]
7639 S:      Maintained
7640 F:      drivers/dma/hisi_dma.c
7641
7642 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7643 M:      Zaibo Xu <[email protected]>
7644 L:      [email protected]
7645 S:      Maintained
7646 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7647 F:      drivers/crypto/hisilicon/hpre/hpre.h
7648 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7649 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7650
7651 HISILICON LPC BUS DRIVER
7652 M:      [email protected]
7653 S:      Maintained
7654 W:      http://www.hisilicon.com
7655 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7656 F:      drivers/bus/hisi_lpc.c
7657
7658 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7659 M:      Yisen Zhuang <[email protected]>
7660 M:      Salil Mehta <[email protected]>
7661 L:      [email protected]
7662 S:      Maintained
7663 W:      http://www.hisilicon.com
7664 F:      drivers/net/ethernet/hisilicon/hns3/
7665
7666 HISILICON NETWORK SUBSYSTEM DRIVER
7667 M:      Yisen Zhuang <[email protected]>
7668 M:      Salil Mehta <[email protected]>
7669 L:      [email protected]
7670 S:      Maintained
7671 W:      http://www.hisilicon.com
7672 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7673 F:      drivers/net/ethernet/hisilicon/
7674
7675 HISILICON PMU DRIVER
7676 M:      Shaokun Zhang <[email protected]>
7677 S:      Supported
7678 W:      http://www.hisilicon.com
7679 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7680 F:      drivers/perf/hisilicon
7681
7682 HISILICON QM AND ZIP Controller DRIVER
7683 M:      Zhou Wang <[email protected]>
7684 L:      [email protected]
7685 S:      Maintained
7686 F:      Documentation/ABI/testing/debugfs-hisi-zip
7687 F:      drivers/crypto/hisilicon/qm.c
7688 F:      drivers/crypto/hisilicon/qm.h
7689 F:      drivers/crypto/hisilicon/sgl.c
7690 F:      drivers/crypto/hisilicon/zip/
7691
7692 HISILICON ROCE DRIVER
7693 M:      Lijun Ou <[email protected]>
7694 M:      Wei Hu(Xavier) <[email protected]>
7695 M:      Weihang Li <[email protected]>
7696 L:      [email protected]
7697 S:      Maintained
7698 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7699 F:      drivers/infiniband/hw/hns/
7700
7701 HISILICON SAS Controller
7702 M:      John Garry <[email protected]>
7703 S:      Supported
7704 W:      http://www.hisilicon.com
7705 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7706 F:      drivers/scsi/hisi_sas/
7707
7708 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7709 M:      Zaibo Xu <[email protected]>
7710 L:      [email protected]
7711 S:      Maintained
7712 F:      Documentation/ABI/testing/debugfs-hisi-sec
7713 F:      drivers/crypto/hisilicon/sec2/sec.h
7714 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7715 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7716 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7717
7718 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7719 M:      Zaibo Xu <[email protected]>
7720 S:      Maintained
7721 F:      drivers/char/hw_random/hisi-trng-v2.c
7722
7723 HISILICON V3XX SPI NOR FLASH Controller Driver
7724 M:      John Garry <[email protected]>
7725 S:      Maintained
7726 W:      http://www.hisilicon.com
7727 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7728
7729 HMM - Heterogeneous Memory Management
7730 M:      Jérôme Glisse <[email protected]>
7731 L:      [email protected]
7732 S:      Maintained
7733 F:      Documentation/vm/hmm.rst
7734 F:      include/linux/hmm*
7735 F:      mm/hmm*
7736
7737 HOST AP DRIVER
7738 M:      Jouni Malinen <[email protected]>
7739 L:      [email protected]
7740 S:      Obsolete
7741 W:      http://w1.fi/hostap-driver.html
7742 F:      drivers/net/wireless/intersil/hostap/
7743
7744 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7745 L:      [email protected]
7746 S:      Orphan
7747 F:      drivers/platform/x86/tc1100-wmi.c
7748
7749 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7750 M:      Jaroslav Kysela <[email protected]>
7751 S:      Obsolete
7752 F:      drivers/staging/hp/hp100.*
7753
7754 HPET:   High Precision Event Timers driver
7755 M:      Clemens Ladisch <[email protected]>
7756 S:      Maintained
7757 F:      Documentation/timers/hpet.rst
7758 F:      drivers/char/hpet.c
7759 F:      include/linux/hpet.h
7760 F:      include/uapi/linux/hpet.h
7761
7762 HPET:   x86
7763 S:      Orphan
7764 F:      arch/x86/include/asm/hpet.h
7765 F:      arch/x86/kernel/hpet.c
7766
7767 HPFS FILESYSTEM
7768 M:      Mikulas Patocka <[email protected]>
7769 S:      Maintained
7770 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7771 F:      fs/hpfs/
7772
7773 HSI SUBSYSTEM
7774 M:      Sebastian Reichel <[email protected]>
7775 S:      Maintained
7776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7777 F:      Documentation/ABI/testing/sysfs-bus-hsi
7778 F:      Documentation/driver-api/hsi.rst
7779 F:      drivers/hsi/
7780 F:      include/linux/hsi/
7781 F:      include/uapi/linux/hsi/
7782
7783 HSO 3G MODEM DRIVER
7784 L:      [email protected]
7785 S:      Orphan
7786 F:      drivers/net/usb/hso.c
7787
7788 HSR NETWORK PROTOCOL
7789 L:      [email protected]
7790 S:      Orphan
7791 F:      net/hsr/
7792
7793 HT16K33 LED CONTROLLER DRIVER
7794 M:      Robin van der Gracht <[email protected]>
7795 S:      Maintained
7796 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7797 F:      drivers/auxdisplay/ht16k33.c
7798
7799 HTCPEN TOUCHSCREEN DRIVER
7800 M:      Pau Oliva Fora <[email protected]>
7801 L:      [email protected]
7802 S:      Maintained
7803 F:      drivers/input/touchscreen/htcpen.c
7804
7805 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7806 M:      Lorenzo Bianconi <[email protected]>
7807 L:      [email protected]
7808 S:      Maintained
7809 W:      http://www.st.com/
7810 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7811 F:      drivers/iio/humidity/hts221*
7812
7813 HUAWEI ETHERNET DRIVER
7814 M:      Aviad Krawczyk <[email protected]>
7815 L:      [email protected]
7816 S:      Supported
7817 F:      Documentation/networking/hinic.txt
7818 F:      drivers/net/ethernet/huawei/hinic/
7819
7820 HUGETLB FILESYSTEM
7821 M:      Mike Kravetz <[email protected]>
7822 L:      [email protected]
7823 S:      Maintained
7824 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7825 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7826 F:      Documentation/vm/hugetlbfs_reserv.rst
7827 F:      fs/hugetlbfs/
7828 F:      include/linux/hugetlb.h
7829 F:      mm/hugetlb.c
7830
7831 HVA ST MEDIA DRIVER
7832 M:      Jean-Christophe Trotin <[email protected]>
7833 L:      [email protected]
7834 S:      Supported
7835 W:      https://linuxtv.org
7836 T:      git git://linuxtv.org/media_tree.git
7837 F:      drivers/media/platform/sti/hva
7838
7839 HWPOISON MEMORY FAILURE HANDLING
7840 M:      Naoya Horiguchi <[email protected]>
7841 L:      [email protected]
7842 S:      Maintained
7843 F:      mm/hwpoison-inject.c
7844 F:      mm/memory-failure.c
7845
7846 HYGON PROCESSOR SUPPORT
7847 M:      Pu Wen <[email protected]>
7848 L:      [email protected]
7849 S:      Maintained
7850 F:      arch/x86/kernel/cpu/hygon.c
7851
7852 HYNIX HI556 SENSOR DRIVER
7853 M:      Shawn Tu <[email protected]>
7854 L:      [email protected]
7855 S:      Maintained
7856 T:      git git://linuxtv.org/media_tree.git
7857 F:      drivers/media/i2c/hi556.c
7858
7859 Hyper-V CORE AND DRIVERS
7860 M:      "K. Y. Srinivasan" <[email protected]>
7861 M:      Haiyang Zhang <[email protected]>
7862 M:      Stephen Hemminger <[email protected]>
7863 M:      Wei Liu <[email protected]>
7864 L:      [email protected]
7865 S:      Supported
7866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7867 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7868 F:      Documentation/ABI/testing/debugfs-hyperv
7869 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7870 F:      arch/x86/hyperv
7871 F:      arch/x86/include/asm/hyperv-tlfs.h
7872 F:      arch/x86/include/asm/mshyperv.h
7873 F:      arch/x86/include/asm/trace/hyperv.h
7874 F:      arch/x86/kernel/cpu/mshyperv.c
7875 F:      drivers/clocksource/hyperv_timer.c
7876 F:      drivers/hid/hid-hyperv.c
7877 F:      drivers/hv/
7878 F:      drivers/input/serio/hyperv-keyboard.c
7879 F:      drivers/iommu/hyperv-iommu.c
7880 F:      drivers/net/hyperv/
7881 F:      drivers/pci/controller/pci-hyperv-intf.c
7882 F:      drivers/pci/controller/pci-hyperv.c
7883 F:      drivers/scsi/storvsc_drv.c
7884 F:      drivers/uio/uio_hv_generic.c
7885 F:      drivers/video/fbdev/hyperv_fb.c
7886 F:      include/asm-generic/mshyperv.h
7887 F:      include/clocksource/hyperv_timer.h
7888 F:      include/linux/hyperv.h
7889 F:      include/uapi/linux/hyperv.h
7890 F:      net/vmw_vsock/hyperv_transport.c
7891 F:      tools/hv/
7892
7893 HYPERBUS SUPPORT
7894 M:      Vignesh Raghavendra <[email protected]>
7895 L:      [email protected]
7896 S:      Supported
7897 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7898 C:      irc://irc.oftc.net/mtd
7899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
7900 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7901 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7902 F:      drivers/mtd/hyperbus/
7903 F:      include/linux/mtd/hyperbus.h
7904
7905 HYPERVISOR VIRTUAL CONSOLE DRIVER
7906 L:      [email protected]
7907 S:      Odd Fixes
7908 F:      drivers/tty/hvc/
7909
7910 I2C ACPI SUPPORT
7911 M:      Mika Westerberg <[email protected]>
7912 L:      [email protected]
7913 L:      [email protected]
7914 S:      Maintained
7915 F:      drivers/i2c/i2c-core-acpi.c
7916
7917 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7918 M:      Ajay Gupta <[email protected]>
7919 L:      [email protected]
7920 S:      Maintained
7921 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7922 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7923
7924 I2C MUXES
7925 M:      Peter Rosin <[email protected]>
7926 L:      [email protected]
7927 S:      Maintained
7928 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7929 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7930 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7931 F:      Documentation/i2c/i2c-topology.rst
7932 F:      Documentation/i2c/muxes/
7933 F:      drivers/i2c/i2c-mux.c
7934 F:      drivers/i2c/muxes/
7935 F:      include/linux/i2c-mux.h
7936
7937 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7938 M:      Gregory CLEMENT <[email protected]>
7939 L:      [email protected]
7940 S:      Maintained
7941 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7942 F:      drivers/i2c/busses/i2c-mv64xxx.c
7943
7944 I2C OVER PARALLEL PORT
7945 M:      Jean Delvare <[email protected]>
7946 L:      [email protected]
7947 S:      Maintained
7948 F:      Documentation/i2c/busses/i2c-parport.rst
7949 F:      drivers/i2c/busses/i2c-parport.c
7950
7951 I2C SUBSYSTEM
7952 M:      Wolfram Sang <[email protected]>
7953 L:      [email protected]
7954 S:      Maintained
7955 W:      https://i2c.wiki.kernel.org/
7956 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7958 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7959 F:      Documentation/i2c/
7960 F:      drivers/i2c/*
7961 F:      include/linux/i2c-dev.h
7962 F:      include/linux/i2c-smbus.h
7963 F:      include/linux/i2c.h
7964 F:      include/uapi/linux/i2c-*.h
7965 F:      include/uapi/linux/i2c.h
7966
7967 I2C SUBSYSTEM HOST DRIVERS
7968 L:      [email protected]
7969 S:      Odd Fixes
7970 W:      https://i2c.wiki.kernel.org/
7971 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7973 F:      Documentation/devicetree/bindings/i2c/
7974 F:      drivers/i2c/algos/
7975 F:      drivers/i2c/busses/
7976
7977 I2C-TAOS-EVM DRIVER
7978 M:      Jean Delvare <[email protected]>
7979 L:      [email protected]
7980 S:      Maintained
7981 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7982 F:      drivers/i2c/busses/i2c-taos-evm.c
7983
7984 I2C-TINY-USB DRIVER
7985 M:      Till Harbaum <[email protected]>
7986 L:      [email protected]
7987 S:      Maintained
7988 W:      http://www.harbaum.org/till/i2c_tiny_usb
7989 F:      drivers/i2c/busses/i2c-tiny-usb.c
7990
7991 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7992 M:      Jean Delvare <[email protected]>
7993 L:      [email protected]
7994 S:      Maintained
7995 F:      Documentation/i2c/busses/i2c-ali1535.rst
7996 F:      Documentation/i2c/busses/i2c-ali1563.rst
7997 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7998 F:      Documentation/i2c/busses/i2c-amd756.rst
7999 F:      Documentation/i2c/busses/i2c-amd8111.rst
8000 F:      Documentation/i2c/busses/i2c-i801.rst
8001 F:      Documentation/i2c/busses/i2c-nforce2.rst
8002 F:      Documentation/i2c/busses/i2c-piix4.rst
8003 F:      Documentation/i2c/busses/i2c-sis5595.rst
8004 F:      Documentation/i2c/busses/i2c-sis630.rst
8005 F:      Documentation/i2c/busses/i2c-sis96x.rst
8006 F:      Documentation/i2c/busses/i2c-via.rst
8007 F:      Documentation/i2c/busses/i2c-viapro.rst
8008 F:      drivers/i2c/busses/i2c-ali1535.c
8009 F:      drivers/i2c/busses/i2c-ali1563.c
8010 F:      drivers/i2c/busses/i2c-ali15x3.c
8011 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8012 F:      drivers/i2c/busses/i2c-amd756.c
8013 F:      drivers/i2c/busses/i2c-amd8111.c
8014 F:      drivers/i2c/busses/i2c-i801.c
8015 F:      drivers/i2c/busses/i2c-isch.c
8016 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8017 F:      drivers/i2c/busses/i2c-nforce2.c
8018 F:      drivers/i2c/busses/i2c-piix4.c
8019 F:      drivers/i2c/busses/i2c-sis5595.c
8020 F:      drivers/i2c/busses/i2c-sis630.c
8021 F:      drivers/i2c/busses/i2c-sis96x.c
8022 F:      drivers/i2c/busses/i2c-via.c
8023 F:      drivers/i2c/busses/i2c-viapro.c
8024
8025 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8026 M:      Hans de Goede <[email protected]>
8027 L:      [email protected]
8028 S:      Maintained
8029 F:      drivers/i2c/busses/i2c-cht-wc.c
8030
8031 I2C/SMBUS ISMT DRIVER
8032 M:      Seth Heasley <[email protected]>
8033 M:      Neil Horman <[email protected]>
8034 L:      [email protected]
8035 F:      Documentation/i2c/busses/i2c-ismt.rst
8036 F:      drivers/i2c/busses/i2c-ismt.c
8037
8038 I2C/SMBUS STUB DRIVER
8039 M:      Jean Delvare <[email protected]>
8040 L:      [email protected]
8041 S:      Maintained
8042 F:      drivers/i2c/i2c-stub.c
8043
8044 I3C DRIVER FOR CADENCE I3C MASTER IP
8045 M:      Przemysław Gaj <[email protected]>
8046 S:      Maintained
8047 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8048 F:      drivers/i3c/master/i3c-master-cdns.c
8049
8050 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8051 M:      Vitor Soares <[email protected]>
8052 S:      Maintained
8053 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8054 F:      drivers/i3c/master/dw*
8055
8056 I3C SUBSYSTEM
8057 M:      Boris Brezillon <[email protected]>
8058 L:      [email protected] (moderated for non-subscribers)
8059 S:      Maintained
8060 C:      irc://chat.freenode.net/linux-i3c
8061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8062 F:      Documentation/ABI/testing/sysfs-bus-i3c
8063 F:      Documentation/devicetree/bindings/i3c/
8064 F:      Documentation/driver-api/i3c
8065 F:      drivers/i3c/
8066 F:      include/linux/i3c/
8067
8068 IA64 (Itanium) PLATFORM
8069 M:      Tony Luck <[email protected]>
8070 M:      Fenghua Yu <[email protected]>
8071 L:      [email protected]
8072 S:      Maintained
8073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8074 F:      Documentation/ia64/
8075 F:      arch/ia64/
8076
8077 IBM Power 842 compression accelerator
8078 M:      Haren Myneni <[email protected]>
8079 S:      Supported
8080 F:      crypto/842.c
8081 F:      drivers/crypto/nx/Kconfig
8082 F:      drivers/crypto/nx/Makefile
8083 F:      drivers/crypto/nx/nx-842*
8084 F:      include/linux/sw842.h
8085 F:      lib/842/
8086
8087 IBM Power in-Nest Crypto Acceleration
8088 M:      Breno Leitão <[email protected]>
8089 M:      Nayna Jain <[email protected]>
8090 M:      Paulo Flabiano Smorigo <[email protected]>
8091 L:      [email protected]
8092 S:      Supported
8093 F:      drivers/crypto/nx/Kconfig
8094 F:      drivers/crypto/nx/Makefile
8095 F:      drivers/crypto/nx/nx-aes*
8096 F:      drivers/crypto/nx/nx-sha*
8097 F:      drivers/crypto/nx/nx.*
8098 F:      drivers/crypto/nx/nx_csbcpb.h
8099 F:      drivers/crypto/nx/nx_debugfs.c
8100
8101 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8102 M:      Tyrel Datwyler <[email protected]>
8103 L:      [email protected]
8104 L:      [email protected]
8105 S:      Supported
8106 F:      drivers/pci/hotplug/rpadlpar*
8107
8108 IBM Power Linux RAID adapter
8109 M:      Brian King <[email protected]>
8110 S:      Supported
8111 F:      drivers/scsi/ipr.*
8112
8113 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8114 M:      Tyrel Datwyler <[email protected]>
8115 L:      [email protected]
8116 L:      [email protected]
8117 S:      Supported
8118 F:      drivers/pci/hotplug/rpaphp*
8119
8120 IBM Power SRIOV Virtual NIC Device Driver
8121 M:      Thomas Falcon <[email protected]>
8122 M:      John Allen <[email protected]>
8123 L:      [email protected]
8124 S:      Supported
8125 F:      drivers/net/ethernet/ibm/ibmvnic.*
8126
8127 IBM Power Virtual Accelerator Switchboard
8128 M:      Sukadev Bhattiprolu <[email protected]>
8129 L:      [email protected]
8130 S:      Supported
8131 F:      arch/powerpc/include/asm/vas.h
8132 F:      arch/powerpc/platforms/powernv/copy-paste.h
8133 F:      arch/powerpc/platforms/powernv/vas*
8134
8135 IBM Power Virtual Ethernet Device Driver
8136 M:      Thomas Falcon <[email protected]>
8137 L:      [email protected]
8138 S:      Supported
8139 F:      drivers/net/ethernet/ibm/ibmveth.*
8140
8141 IBM Power Virtual FC Device Drivers
8142 M:      Tyrel Datwyler <[email protected]>
8143 L:      [email protected]
8144 S:      Supported
8145 F:      drivers/scsi/ibmvscsi/ibmvfc*
8146
8147 IBM Power Virtual Management Channel Driver
8148 M:      Steven Royer <[email protected]>
8149 S:      Supported
8150 F:      drivers/misc/ibmvmc.*
8151
8152 IBM Power Virtual SCSI Device Drivers
8153 M:      Tyrel Datwyler <[email protected]>
8154 L:      [email protected]
8155 S:      Supported
8156 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8157 F:      include/scsi/viosrp.h
8158
8159 IBM Power Virtual SCSI Device Target Driver
8160 M:      Michael Cyr <[email protected]>
8161 L:      [email protected]
8162 L:      [email protected]
8163 S:      Supported
8164 F:      drivers/scsi/ibmvscsi_tgt/
8165
8166 IBM Power VMX Cryptographic instructions
8167 M:      Breno Leitão <[email protected]>
8168 M:      Nayna Jain <[email protected]>
8169 M:      Paulo Flabiano Smorigo <[email protected]>
8170 L:      [email protected]
8171 S:      Supported
8172 F:      drivers/crypto/vmx/Kconfig
8173 F:      drivers/crypto/vmx/Makefile
8174 F:      drivers/crypto/vmx/aes*
8175 F:      drivers/crypto/vmx/ghash*
8176 F:      drivers/crypto/vmx/ppc-xlate.pl
8177 F:      drivers/crypto/vmx/vmx.c
8178
8179 IBM ServeRAID RAID DRIVER
8180 S:      Orphan
8181 F:      drivers/scsi/ips.*
8182
8183 ICH LPC AND GPIO DRIVER
8184 M:      Peter Tyser <[email protected]>
8185 S:      Maintained
8186 F:      drivers/gpio/gpio-ich.c
8187 F:      drivers/mfd/lpc_ich.c
8188
8189 ICY I2C DRIVER
8190 M:      Max Staudt <[email protected]>
8191 L:      [email protected]
8192 S:      Maintained
8193 F:      drivers/i2c/busses/i2c-icy.c
8194
8195 IDE SUBSYSTEM
8196 M:      "David S. Miller" <[email protected]>
8197 L:      [email protected]
8198 S:      Maintained
8199 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8201 F:      Documentation/ide/
8202 F:      drivers/ide/
8203 F:      include/linux/ide.h
8204
8205 IDE/ATAPI DRIVERS
8206 M:      Borislav Petkov <[email protected]>
8207 L:      [email protected]
8208 S:      Maintained
8209 F:      Documentation/cdrom/ide-cd.rst
8210 F:      drivers/ide/ide-cd*
8211
8212 IDEAPAD LAPTOP EXTRAS DRIVER
8213 M:      Ike Panhc <[email protected]>
8214 L:      [email protected]
8215 S:      Maintained
8216 W:      http://launchpad.net/ideapad-laptop
8217 F:      drivers/platform/x86/ideapad-laptop.c
8218
8219 IDEAPAD LAPTOP SLIDEBAR DRIVER
8220 M:      Andrey Moiseev <[email protected]>
8221 L:      [email protected]
8222 S:      Maintained
8223 W:      https://github.com/o2genum/ideapad-slidebar
8224 F:      drivers/input/misc/ideapad_slidebar.c
8225
8226 IDT VersaClock 5 CLOCK DRIVER
8227 M:      Marek Vasut <[email protected]>
8228 S:      Maintained
8229 F:      drivers/clk/clk-versaclock5.c
8230
8231 IEEE 802.15.4 SUBSYSTEM
8232 M:      Alexander Aring <[email protected]>
8233 M:      Stefan Schmidt <[email protected]>
8234 L:      [email protected]
8235 S:      Maintained
8236 W:      http://wpan.cakelab.org/
8237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8239 F:      Documentation/networking/ieee802154.rst
8240 F:      drivers/net/ieee802154/
8241 F:      include/linux/ieee802154.h
8242 F:      include/linux/nl802154.h
8243 F:      include/net/af_ieee802154.h
8244 F:      include/net/cfg802154.h
8245 F:      include/net/ieee802154_netdev.h
8246 F:      include/net/mac802154.h
8247 F:      include/net/nl802154.h
8248 F:      net/ieee802154/
8249 F:      net/mac802154/
8250
8251 IFE PROTOCOL
8252 M:      Yotam Gigi <[email protected]>
8253 M:      Jamal Hadi Salim <[email protected]>
8254 F:      include/net/ife.h
8255 F:      include/uapi/linux/ife.h
8256 F:      net/ife
8257
8258 IGORPLUG-USB IR RECEIVER
8259 M:      Sean Young <[email protected]>
8260 L:      [email protected]
8261 S:      Maintained
8262 F:      drivers/media/rc/igorplugusb.c
8263
8264 IGUANAWORKS USB IR TRANSCEIVER
8265 M:      Sean Young <[email protected]>
8266 L:      [email protected]
8267 S:      Maintained
8268 F:      drivers/media/rc/iguanair.c
8269
8270 IIO DIGITAL POTENTIOMETER DAC
8271 M:      Peter Rosin <[email protected]>
8272 L:      [email protected]
8273 S:      Maintained
8274 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8275 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8276 F:      drivers/iio/dac/dpot-dac.c
8277
8278 IIO ENVELOPE DETECTOR
8279 M:      Peter Rosin <[email protected]>
8280 L:      [email protected]
8281 S:      Maintained
8282 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8283 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8284 F:      drivers/iio/adc/envelope-detector.c
8285
8286 IIO MULTIPLEXER
8287 M:      Peter Rosin <[email protected]>
8288 L:      [email protected]
8289 S:      Maintained
8290 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8291 F:      drivers/iio/multiplexer/iio-mux.c
8292
8293 IIO SUBSYSTEM AND DRIVERS
8294 M:      Jonathan Cameron <[email protected]>
8295 R:      Hartmut Knaack <[email protected]>
8296 R:      Lars-Peter Clausen <[email protected]>
8297 R:      Peter Meerwald-Stadler <[email protected]>
8298 L:      [email protected]
8299 S:      Maintained
8300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8301 F:      Documentation/ABI/testing/configfs-iio*
8302 F:      Documentation/ABI/testing/sysfs-bus-iio*
8303 F:      Documentation/devicetree/bindings/iio/
8304 F:      drivers/iio/
8305 F:      drivers/staging/iio/
8306 F:      include/linux/iio/
8307 F:      tools/iio/
8308
8309 IIO UNIT CONVERTER
8310 M:      Peter Rosin <[email protected]>
8311 L:      [email protected]
8312 S:      Maintained
8313 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8314 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8315 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8316 F:      drivers/iio/afe/iio-rescale.c
8317
8318 IKANOS/ADI EAGLE ADSL USB DRIVER
8319 M:      Matthieu Castet <[email protected]>
8320 M:      Stanislaw Gruszka <[email protected]>
8321 S:      Maintained
8322 F:      drivers/usb/atm/ueagle-atm.c
8323
8324 IMGTEC ASCII LCD DRIVER
8325 M:      Paul Burton <[email protected]>
8326 S:      Maintained
8327 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8328 F:      drivers/auxdisplay/img-ascii-lcd.c
8329
8330 IMGTEC IR DECODER DRIVER
8331 S:      Orphan
8332 F:      drivers/media/rc/img-ir/
8333
8334 IMON SOUNDGRAPH USB IR RECEIVER
8335 M:      Sean Young <[email protected]>
8336 L:      [email protected]
8337 S:      Maintained
8338 F:      drivers/media/rc/imon.c
8339 F:      drivers/media/rc/imon_raw.c
8340
8341 IMS TWINTURBO FRAMEBUFFER DRIVER
8342 L:      [email protected]
8343 S:      Orphan
8344 F:      drivers/video/fbdev/imsttfb.c
8345
8346 INA209 HARDWARE MONITOR DRIVER
8347 M:      Guenter Roeck <[email protected]>
8348 L:      [email protected]
8349 S:      Maintained
8350 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8351 F:      Documentation/hwmon/ina209.rst
8352 F:      drivers/hwmon/ina209.c
8353
8354 INA2XX HARDWARE MONITOR DRIVER
8355 M:      Guenter Roeck <[email protected]>
8356 L:      [email protected]
8357 S:      Maintained
8358 F:      Documentation/hwmon/ina2xx.rst
8359 F:      drivers/hwmon/ina2xx.c
8360 F:      include/linux/platform_data/ina2xx.h
8361
8362 INDUSTRY PACK SUBSYSTEM (IPACK)
8363 M:      Samuel Iglesias Gonsalvez <[email protected]>
8364 M:      Jens Taprogge <[email protected]>
8365 M:      Greg Kroah-Hartman <[email protected]>
8366 L:      [email protected]
8367 S:      Maintained
8368 W:      http://industrypack.sourceforge.net
8369 F:      drivers/ipack/
8370
8371 INFINEON DPS310 Driver
8372 M:      Eddie James <[email protected]>
8373 L:      [email protected]
8374 S:      Maintained
8375 F:      drivers/iio/pressure/dps310.c
8376
8377 INFINIBAND SUBSYSTEM
8378 M:      Doug Ledford <[email protected]>
8379 M:      Jason Gunthorpe <[email protected]>
8380 L:      [email protected]
8381 S:      Supported
8382 W:      https://github.com/linux-rdma/rdma-core
8383 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8385 F:      Documentation/devicetree/bindings/infiniband/
8386 F:      Documentation/infiniband/
8387 F:      drivers/infiniband/
8388 F:      include/rdma/
8389 F:      include/trace/events/ib_mad.h
8390 F:      include/trace/events/ib_umad.h
8391 F:      include/uapi/linux/if_infiniband.h
8392 F:      include/uapi/rdma/
8393 F:      samples/bpf/ibumad_kern.c
8394 F:      samples/bpf/ibumad_user.c
8395
8396 INGENIC JZ4780 DMA Driver
8397 M:      Zubair Lutfullah Kakakhel <[email protected]>
8398 S:      Maintained
8399 F:      drivers/dma/dma-jz4780.c
8400
8401 INGENIC JZ4780 NAND DRIVER
8402 M:      Harvey Hunt <[email protected]>
8403 L:      [email protected]
8404 S:      Maintained
8405 F:      drivers/mtd/nand/raw/ingenic/
8406
8407 INGENIC JZ47xx SoCs
8408 M:      Paul Cercueil <[email protected]>
8409 S:      Maintained
8410 F:      arch/mips/boot/dts/ingenic/
8411 F:      arch/mips/include/asm/mach-jz4740/
8412 F:      arch/mips/jz4740/
8413 F:      drivers/clk/ingenic/
8414 F:      drivers/dma/dma-jz4780.c
8415 F:      drivers/gpu/drm/ingenic/
8416 F:      drivers/i2c/busses/i2c-jz4780.c
8417 F:      drivers/iio/adc/ingenic-adc.c
8418 F:      drivers/irqchip/irq-ingenic.c
8419 F:      drivers/memory/jz4780-nemc.c
8420 F:      drivers/mmc/host/jz4740_mmc.c
8421 F:      drivers/mtd/nand/raw/ingenic/
8422 F:      drivers/pinctrl/pinctrl-ingenic.c
8423 F:      drivers/power/supply/ingenic-battery.c
8424 F:      drivers/pwm/pwm-jz4740.c
8425 F:      drivers/rtc/rtc-jz4740.c
8426 F:      drivers/tty/serial/8250/8250_ingenic.c
8427 F:      drivers/usb/musb/jz4740.c
8428 F:      drivers/watchdog/jz4740_wdt.c
8429 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8430 F:      include/linux/mfd/ingenic-tcu.h
8431 F:      sound/soc/codecs/jz47*
8432 F:      sound/soc/jz4740/
8433
8434 INOTIFY
8435 M:      Jan Kara <[email protected]>
8436 R:      Amir Goldstein <[email protected]>
8437 L:      [email protected]
8438 S:      Maintained
8439 F:      Documentation/filesystems/inotify.rst
8440 F:      fs/notify/inotify/
8441 F:      include/linux/inotify.h
8442 F:      include/uapi/linux/inotify.h
8443
8444 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8445 M:      Dmitry Torokhov <[email protected]>
8446 L:      [email protected]
8447 S:      Maintained
8448 Q:      http://patchwork.kernel.org/project/linux-input/list/
8449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8450 F:      Documentation/devicetree/bindings/input/
8451 F:      Documentation/devicetree/bindings/serio/
8452 F:      Documentation/input/
8453 F:      drivers/input/
8454 F:      include/linux/input.h
8455 F:      include/linux/input/
8456 F:      include/uapi/linux/input-event-codes.h
8457 F:      include/uapi/linux/input.h
8458
8459 INPUT MULTITOUCH (MT) PROTOCOL
8460 M:      Henrik Rydberg <[email protected]>
8461 L:      [email protected]
8462 S:      Odd fixes
8463 F:      Documentation/input/multi-touch-protocol.rst
8464 F:      drivers/input/input-mt.c
8465 K:      \b(ABS|SYN)_MT_
8466
8467 INSIDE SECURE CRYPTO DRIVER
8468 M:      Antoine Tenart <[email protected]>
8469 L:      [email protected]
8470 S:      Maintained
8471 F:      drivers/crypto/inside-secure/
8472
8473 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8474 M:      Mimi Zohar <[email protected]>
8475 M:      Dmitry Kasatkin <[email protected]>
8476 L:      [email protected]
8477 S:      Supported
8478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8479 F:      security/integrity/ima/
8480
8481 INTEL 810/815 FRAMEBUFFER DRIVER
8482 M:      Antonino Daplas <[email protected]>
8483 L:      [email protected]
8484 S:      Maintained
8485 F:      drivers/video/fbdev/i810/
8486
8487 INTEL ASoC DRIVERS
8488 M:      Cezary Rojewski <[email protected]>
8489 M:      Pierre-Louis Bossart <[email protected]>
8490 M:      Liam Girdwood <[email protected]>
8491 M:      Jie Yang <[email protected]>
8492 L:      [email protected] (moderated for non-subscribers)
8493 S:      Supported
8494 F:      sound/soc/intel/
8495
8496 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8497 M:      Hans de Goede <[email protected]>
8498 L:      [email protected]
8499 S:      Maintained
8500 F:      drivers/platform/x86/intel_atomisp2_pm.c
8501
8502 INTEL C600 SERIES SAS CONTROLLER DRIVER
8503 M:      Intel SCU Linux support <[email protected]>
8504 M:      Artur Paszkiewicz <[email protected]>
8505 L:      [email protected]
8506 S:      Supported
8507 T:      git git://git.code.sf.net/p/intel-sas/isci
8508 F:      drivers/scsi/isci/
8509
8510 INTEL CPU family model numbers
8511 M:      Tony Luck <[email protected]>
8512 M:      [email protected]
8513 L:      [email protected]
8514 S:      Supported
8515 F:      arch/x86/include/asm/intel-family.h
8516
8517 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8518 M:      Jani Nikula <[email protected]>
8519 M:      Joonas Lahtinen <[email protected]>
8520 M:      Rodrigo Vivi <[email protected]>
8521 L:      [email protected]
8522 S:      Supported
8523 W:      https://01.org/linuxgraphics/
8524 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8525 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8526 C:      irc://chat.freenode.net/intel-gfx
8527 T:      git git://anongit.freedesktop.org/drm-intel
8528 F:      Documentation/gpu/i915.rst
8529 F:      drivers/gpu/drm/i915/
8530 F:      include/drm/i915*
8531 F:      include/uapi/drm/i915_drm.h
8532
8533 INTEL ETHERNET DRIVERS
8534 M:      Jeff Kirsher <[email protected]>
8535 L:      [email protected] (moderated for non-subscribers)
8536 S:      Supported
8537 W:      http://www.intel.com/support/feedback.htm
8538 W:      http://e1000.sourceforge.net/
8539 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8542 F:      Documentation/networking/device_drivers/intel/e100.rst
8543 F:      Documentation/networking/device_drivers/intel/e1000.rst
8544 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8545 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8546 F:      Documentation/networking/device_drivers/intel/i40e.rst
8547 F:      Documentation/networking/device_drivers/intel/iavf.rst
8548 F:      Documentation/networking/device_drivers/intel/ice.rst
8549 F:      Documentation/networking/device_drivers/intel/igb.rst
8550 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8551 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8552 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8553 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8554 F:      drivers/net/ethernet/intel/
8555 F:      drivers/net/ethernet/intel/*/
8556 F:      include/linux/avf/virtchnl.h
8557
8558 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8559 M:      Maik Broemme <[email protected]>
8560 L:      [email protected]
8561 S:      Maintained
8562 F:      Documentation/fb/intelfb.rst
8563 F:      drivers/video/fbdev/intelfb/
8564
8565 INTEL GPIO DRIVERS
8566 M:      Andy Shevchenko <[email protected]>
8567 L:      [email protected]
8568 S:      Maintained
8569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8570 F:      drivers/gpio/gpio-ich.c
8571 F:      drivers/gpio/gpio-intel-mid.c
8572 F:      drivers/gpio/gpio-merrifield.c
8573 F:      drivers/gpio/gpio-ml-ioh.c
8574 F:      drivers/gpio/gpio-pch.c
8575 F:      drivers/gpio/gpio-sch.c
8576 F:      drivers/gpio/gpio-sodaville.c
8577
8578 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8579 M:      Zhenyu Wang <[email protected]>
8580 M:      Zhi Wang <[email protected]>
8581 L:      [email protected]
8582 L:      [email protected]
8583 S:      Supported
8584 W:      https://01.org/igvt-g
8585 T:      git https://github.com/intel/gvt-linux.git
8586 F:      drivers/gpu/drm/i915/gvt/
8587
8588 INTEL HID EVENT DRIVER
8589 M:      Alex Hung <[email protected]>
8590 L:      [email protected]
8591 S:      Maintained
8592 F:      drivers/platform/x86/intel-hid.c
8593
8594 INTEL I/OAT DMA DRIVER
8595 M:      Dave Jiang <[email protected]>
8596 R:      Dan Williams <[email protected]>
8597 L:      [email protected]
8598 S:      Supported
8599 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8600 F:      drivers/dma/ioat*
8601
8602 INTEL IADX DRIVER
8603 M:      Dave Jiang <[email protected]>
8604 L:      [email protected]
8605 S:      Supported
8606 F:      drivers/dma/idxd/*
8607 F:      include/uapi/linux/idxd.h
8608
8609 INTEL IDLE DRIVER
8610 M:      Jacob Pan <[email protected]>
8611 M:      Len Brown <[email protected]>
8612 L:      [email protected]
8613 S:      Supported
8614 B:      https://bugzilla.kernel.org
8615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8616 F:      drivers/idle/intel_idle.c
8617
8618 INTEL INTEGRATED SENSOR HUB DRIVER
8619 M:      Srinivas Pandruvada <[email protected]>
8620 M:      Jiri Kosina <[email protected]>
8621 L:      [email protected]
8622 S:      Maintained
8623 F:      drivers/hid/intel-ish-hid/
8624
8625 INTEL IOMMU (VT-d)
8626 M:      David Woodhouse <[email protected]>
8627 M:      Lu Baolu <[email protected]>
8628 L:      [email protected]
8629 S:      Supported
8630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8631 F:      drivers/iommu/dmar.c
8632 F:      drivers/iommu/intel*.[ch]
8633 F:      include/linux/intel-iommu.h
8634 F:      include/linux/intel-svm.h
8635
8636 INTEL IOP-ADMA DMA DRIVER
8637 R:      Dan Williams <[email protected]>
8638 S:      Odd fixes
8639 F:      drivers/dma/iop-adma.c
8640
8641 INTEL IPU3 CSI-2 CIO2 DRIVER
8642 M:      Yong Zhi <[email protected]>
8643 M:      Sakari Ailus <[email protected]>
8644 M:      Bingbu Cao <[email protected]>
8645 R:      Tian Shu Qiu <[email protected]>
8646 L:      [email protected]
8647 S:      Maintained
8648 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8649 F:      drivers/media/pci/intel/ipu3/
8650
8651 INTEL IPU3 CSI-2 IMGU DRIVER
8652 M:      Sakari Ailus <[email protected]>
8653 L:      [email protected]
8654 S:      Maintained
8655 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8656 F:      Documentation/media/v4l-drivers/ipu3.rst
8657 F:      Documentation/media/v4l-drivers/ipu3_rcb.svg
8658 F:      drivers/staging/media/ipu3/
8659
8660 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8661 M:      Krzysztof Halasa <[email protected]>
8662 S:      Maintained
8663 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8664 F:      drivers/net/wan/ixp4xx_hss.c
8665 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8666 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8667 F:      include/linux/soc/ixp4xx/npe.h
8668 F:      include/linux/soc/ixp4xx/qmgr.h
8669
8670 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8671 M:      Deepak Saxena <[email protected]>
8672 S:      Maintained
8673 F:      drivers/char/hw_random/ixp4xx-rng.c
8674
8675 INTEL MANAGEMENT ENGINE (mei)
8676 M:      Tomas Winkler <[email protected]>
8677 L:      [email protected]
8678 S:      Supported
8679 F:      Documentation/driver-api/mei/*
8680 F:      drivers/misc/mei/*
8681 F:      drivers/watchdog/mei_wdt.c
8682 F:      include/linux/mei_cl_bus.h
8683 F:      include/uapi/linux/mei.h
8684 F:      samples/mei/*
8685
8686 INTEL MENLOW THERMAL DRIVER
8687 M:      Sujith Thomas <[email protected]>
8688 L:      [email protected]
8689 S:      Supported
8690 W:      https://01.org/linux-acpi
8691 F:      drivers/platform/x86/intel_menlow.c
8692
8693 INTEL MIC DRIVERS (mic)
8694 M:      Sudeep Dutt <[email protected]>
8695 M:      Ashutosh Dixit <[email protected]>
8696 S:      Supported
8697 W:      https://github.com/sudeepdutt/mic
8698 W:      http://software.intel.com/en-us/mic-developer
8699 F:      Documentation/misc-devices/mic/
8700 F:      drivers/dma/mic_x100_dma.c
8701 F:      drivers/dma/mic_x100_dma.h
8702 F:      drivers/misc/mic/
8703 F:      include/linux/mic_bus.h
8704 F:      include/linux/scif.h
8705 F:      include/uapi/linux/mic_common.h
8706 F:      include/uapi/linux/mic_ioctl.h
8707 F:      include/uapi/linux/scif_ioctl.h
8708
8709 INTEL PMC CORE DRIVER
8710 M:      Rajneesh Bhardwaj <[email protected]>
8711 M:      Vishwanath Somayaji <[email protected]>
8712 L:      [email protected]
8713 S:      Maintained
8714 F:      drivers/platform/x86/intel_pmc_core*
8715
8716 INTEL PMC/P-Unit IPC DRIVER
8717 M:      Zha Qipeng<[email protected]>
8718 L:      [email protected]
8719 S:      Maintained
8720 F:      arch/x86/include/asm/intel_pmc_ipc.h
8721 F:      arch/x86/include/asm/intel_punit_ipc.h
8722 F:      drivers/platform/x86/intel_pmc_ipc.c
8723 F:      drivers/platform/x86/intel_punit_ipc.c
8724
8725 INTEL PMIC GPIO DRIVERS
8726 M:      Andy Shevchenko <[email protected]>
8727 S:      Maintained
8728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8729 F:      drivers/gpio/gpio-*cove.c
8730 F:      drivers/gpio/gpio-msic.c
8731
8732 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8733 R:      Andy Shevchenko <[email protected]>
8734 S:      Maintained
8735 F:      drivers/mfd/intel_msic.c
8736 F:      drivers/mfd/intel_soc_pmic*
8737 F:      include/linux/mfd/intel_msic.h
8738 F:      include/linux/mfd/intel_soc_pmic*
8739
8740 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8741 M:      Stanislav Yakovlev <[email protected]>
8742 L:      [email protected]
8743 S:      Maintained
8744 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8745 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8746 F:      drivers/net/wireless/intel/ipw2x00/
8747
8748 INTEL PSTATE DRIVER
8749 M:      Srinivas Pandruvada <[email protected]>
8750 M:      Len Brown <[email protected]>
8751 L:      [email protected]
8752 S:      Supported
8753 F:      drivers/cpufreq/intel_pstate.c
8754
8755 INTEL RDMA RNIC DRIVER
8756 M:      Faisal Latif <[email protected]>
8757 M:      Shiraz Saleem <[email protected]>
8758 L:      [email protected]
8759 S:      Supported
8760 F:      drivers/infiniband/hw/i40iw/
8761 F:      include/uapi/rdma/i40iw-abi.h
8762
8763 INTEL SPEED SELECT TECHNOLOGY
8764 M:      Srinivas Pandruvada <[email protected]>
8765 L:      [email protected]
8766 S:      Maintained
8767 F:      drivers/platform/x86/intel_speed_select_if/
8768 F:      include/uapi/linux/isst_if.h
8769 F:      tools/power/x86/intel-speed-select/
8770
8771 INTEL STRATIX10 FIRMWARE DRIVERS
8772 M:      Richard Gong <[email protected]>
8773 L:      [email protected]
8774 S:      Maintained
8775 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8776 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8777 F:      drivers/firmware/stratix10-rsu.c
8778 F:      drivers/firmware/stratix10-svc.c
8779 F:      include/linux/firmware/intel/stratix10-smc.h
8780 F:      include/linux/firmware/intel/stratix10-svc-client.h
8781
8782 INTEL TELEMETRY DRIVER
8783 M:      Rajneesh Bhardwaj <[email protected]>
8784 M:      "David E. Box" <[email protected]>
8785 L:      [email protected]
8786 S:      Maintained
8787 F:      arch/x86/include/asm/intel_telemetry.h
8788 F:      drivers/platform/x86/intel_telemetry*
8789
8790 INTEL UNCORE FREQUENCY CONTROL
8791 M:      Srinivas Pandruvada <[email protected]>
8792 L:      [email protected]
8793 S:      Maintained
8794 F:      drivers/platform/x86/intel-uncore-frequency.c
8795
8796 INTEL VIRTUAL BUTTON DRIVER
8797 M:      AceLan Kao <[email protected]>
8798 L:      [email protected]
8799 S:      Maintained
8800 F:      drivers/platform/x86/intel-vbtn.c
8801
8802 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8803 M:      Stanislaw Gruszka <[email protected]>
8804 L:      [email protected]
8805 S:      Supported
8806 F:      drivers/net/wireless/intel/iwlegacy/
8807
8808 INTEL WIRELESS WIFI LINK (iwlwifi)
8809 M:      Johannes Berg <[email protected]>
8810 M:      Emmanuel Grumbach <[email protected]>
8811 M:      Luca Coelho <[email protected]>
8812 M:      Intel Linux Wireless <[email protected]>
8813 L:      [email protected]
8814 S:      Supported
8815 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8817 F:      drivers/net/wireless/intel/iwlwifi/
8818
8819 INTEL WIRELESS WIMAX CONNECTION 2400
8820 M:      Inaky Perez-Gonzalez <[email protected]>
8821 M:      [email protected]
8822 L:      [email protected] (subscribers-only)
8823 S:      Supported
8824 W:      http://linuxwimax.org
8825 F:      Documentation/admin-guide/wimax/i2400m.rst
8826 F:      drivers/net/wimax/i2400m/
8827 F:      include/uapi/linux/wimax/i2400m.h
8828
8829 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8830 M:      Mario Limonciello <[email protected]>
8831 S:      Maintained
8832 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8833
8834 INTEL(R) TRACE HUB
8835 M:      Alexander Shishkin <[email protected]>
8836 S:      Supported
8837 F:      Documentation/trace/intel_th.rst
8838 F:      drivers/hwtracing/intel_th/
8839 F:      include/linux/intel_th.h
8840
8841 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8842 M:      Ning Sun <[email protected]>
8843 L:      [email protected]
8844 S:      Supported
8845 W:      http://tboot.sourceforge.net
8846 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8847 F:      Documentation/x86/intel_txt.rst
8848 F:      arch/x86/kernel/tboot.c
8849 F:      include/linux/tboot.h
8850
8851 INTERCONNECT API
8852 M:      Georgi Djakov <[email protected]>
8853 L:      [email protected]
8854 S:      Maintained
8855 F:      Documentation/devicetree/bindings/interconnect/
8856 F:      Documentation/driver-api/interconnect.rst
8857 F:      drivers/interconnect/
8858 F:      include/dt-bindings/interconnect/
8859 F:      include/linux/interconnect-provider.h
8860 F:      include/linux/interconnect.h
8861
8862 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8863 M:      Linus Walleij <[email protected]>
8864 L:      [email protected]
8865 S:      Maintained
8866 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8867 F:      drivers/iio/gyro/mpu3050*
8868
8869 IOC3 ETHERNET DRIVER
8870 M:      Ralf Baechle <[email protected]>
8871 L:      [email protected]
8872 S:      Maintained
8873 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8874
8875 IOMAP FILESYSTEM LIBRARY
8876 M:      Christoph Hellwig <[email protected]>
8877 M:      Darrick J. Wong <[email protected]>
8878 M:      [email protected]
8879 M:      [email protected]
8880 L:      [email protected]
8881 L:      [email protected]
8882 S:      Supported
8883 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8884 F:      fs/iomap/
8885 F:      include/linux/iomap.h
8886
8887 IOMMU DRIVERS
8888 M:      Joerg Roedel <[email protected]>
8889 L:      [email protected]
8890 S:      Maintained
8891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8892 F:      Documentation/devicetree/bindings/iommu/
8893 F:      drivers/iommu/
8894 F:      include/linux/iommu.h
8895 F:      include/linux/iova.h
8896 F:      include/linux/of_iommu.h
8897
8898 IO_URING
8899 M:      Jens Axboe <[email protected]>
8900 L:      [email protected]
8901 S:      Maintained
8902 T:      git git://git.kernel.dk/linux-block
8903 T:      git git://git.kernel.dk/liburing
8904 F:      fs/io-wq.c
8905 F:      fs/io-wq.h
8906 F:      fs/io_uring.c
8907 F:      include/uapi/linux/io_uring.h
8908
8909 IPMI SUBSYSTEM
8910 M:      Corey Minyard <[email protected]>
8911 L:      [email protected] (moderated for non-subscribers)
8912 S:      Supported
8913 W:      http://openipmi.sourceforge.net/
8914 F:      Documentation/IPMI.txt
8915 F:      Documentation/devicetree/bindings/ipmi/
8916 F:      drivers/char/ipmi/
8917 F:      include/linux/ipmi*
8918 F:      include/uapi/linux/ipmi*
8919
8920 IPS SCSI RAID DRIVER
8921 M:      Adaptec OEM Raid Solutions <[email protected]>
8922 L:      [email protected]
8923 S:      Maintained
8924 W:      http://www.adaptec.com/
8925 F:      drivers/scsi/ips*
8926
8927 IPVS
8928 M:      Wensong Zhang <[email protected]>
8929 M:      Simon Horman <[email protected]>
8930 M:      Julian Anastasov <[email protected]>
8931 L:      [email protected]
8932 L:      [email protected]
8933 S:      Maintained
8934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8936 F:      Documentation/networking/ipvs-sysctl.txt
8937 F:      include/net/ip_vs.h
8938 F:      include/uapi/linux/ip_vs.h
8939 F:      net/netfilter/ipvs/
8940
8941 IPWIRELESS DRIVER
8942 M:      Jiri Kosina <[email protected]>
8943 M:      David Sterba <[email protected]>
8944 S:      Odd Fixes
8945 F:      drivers/tty/ipwireless/
8946
8947 IPX NETWORK LAYER
8948 L:      [email protected]
8949 S:      Obsolete
8950 F:      include/uapi/linux/ipx.h
8951
8952 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8953 M:      Marc Zyngier <[email protected]>
8954 S:      Maintained
8955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8956 F:      Documentation/IRQ-domain.txt
8957 F:      include/linux/irqdomain.h
8958 F:      kernel/irq/irqdomain.c
8959 F:      kernel/irq/msi.c
8960
8961 IRQ SUBSYSTEM
8962 M:      Thomas Gleixner <[email protected]>
8963 L:      [email protected]
8964 S:      Maintained
8965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8966 F:      kernel/irq/
8967
8968 IRQCHIP DRIVERS
8969 M:      Thomas Gleixner <[email protected]>
8970 M:      Jason Cooper <[email protected]>
8971 M:      Marc Zyngier <[email protected]>
8972 L:      [email protected]
8973 S:      Maintained
8974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8975 F:      Documentation/devicetree/bindings/interrupt-controller/
8976 F:      drivers/irqchip/
8977
8978 ISA
8979 M:      William Breathitt Gray <[email protected]>
8980 S:      Maintained
8981 F:      Documentation/driver-api/isa.rst
8982 F:      drivers/base/isa.c
8983 F:      include/linux/isa.h
8984
8985 ISA RADIO MODULE
8986 M:      Hans Verkuil <[email protected]>
8987 L:      [email protected]
8988 S:      Maintained
8989 W:      https://linuxtv.org
8990 T:      git git://linuxtv.org/media_tree.git
8991 F:      drivers/media/radio/radio-isa*
8992
8993 ISAPNP
8994 M:      Jaroslav Kysela <[email protected]>
8995 S:      Maintained
8996 F:      Documentation/driver-api/isapnp.rst
8997 F:      drivers/pnp/isapnp/
8998 F:      include/linux/isapnp.h
8999
9000 ISCSI
9001 M:      Lee Duncan <[email protected]>
9002 M:      Chris Leech <[email protected]>
9003 L:      [email protected]
9004 L:      [email protected]
9005 S:      Maintained
9006 W:      www.open-iscsi.com
9007 F:      drivers/scsi/*iscsi*
9008 F:      include/scsi/*iscsi*
9009
9010 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9011 M:      Peter Jones <[email protected]>
9012 M:      Konrad Rzeszutek Wilk <[email protected]>
9013 S:      Maintained
9014 F:      drivers/firmware/iscsi_ibft*
9015
9016 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9017 M:      Sagi Grimberg <[email protected]>
9018 M:      Max Gurtovoy <[email protected]>
9019 L:      [email protected]
9020 S:      Supported
9021 W:      http://www.openfabrics.org
9022 W:      www.open-iscsi.org
9023 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9024 F:      drivers/infiniband/ulp/iser/
9025
9026 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9027 M:      Sagi Grimberg <[email protected]>
9028 L:      [email protected]
9029 L:      [email protected]
9030 S:      Supported
9031 W:      http://www.linux-iscsi.org
9032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9033 F:      drivers/infiniband/ulp/isert
9034
9035 ISDN/CMTP OVER BLUETOOTH
9036 M:      Karsten Keil <[email protected]>
9037 L:      [email protected] (subscribers-only)
9038 L:      [email protected]
9039 S:      Odd Fixes
9040 W:      http://www.isdn4linux.de
9041 F:      Documentation/isdn/
9042 F:      drivers/isdn/capi/
9043 F:      include/linux/isdn/
9044 F:      include/uapi/linux/isdn/
9045 F:      net/bluetooth/cmtp/
9046
9047 ISDN/mISDN SUBSYSTEM
9048 M:      Karsten Keil <[email protected]>
9049 L:      [email protected] (subscribers-only)
9050 L:      [email protected]
9051 S:      Maintained
9052 W:      http://www.isdn4linux.de
9053 F:      drivers/isdn/Kconfig
9054 F:      drivers/isdn/Makefile
9055 F:      drivers/isdn/hardware/
9056 F:      drivers/isdn/mISDN/
9057
9058 IT87 HARDWARE MONITORING DRIVER
9059 M:      Jean Delvare <[email protected]>
9060 L:      [email protected]
9061 S:      Maintained
9062 F:      Documentation/hwmon/it87.rst
9063 F:      drivers/hwmon/it87.c
9064
9065 IT913X MEDIA DRIVER
9066 M:      Antti Palosaari <[email protected]>
9067 L:      [email protected]
9068 S:      Maintained
9069 W:      https://linuxtv.org
9070 W:      http://palosaari.fi/linux/
9071 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9072 T:      git git://linuxtv.org/anttip/media_tree.git
9073 F:      drivers/media/tuners/it913x*
9074
9075 IVTV VIDEO4LINUX DRIVER
9076 M:      Andy Walls <[email protected]>
9077 L:      [email protected]
9078 S:      Maintained
9079 W:      https://linuxtv.org
9080 T:      git git://linuxtv.org/media_tree.git
9081 F:      Documentation/media/v4l-drivers/ivtv*
9082 F:      drivers/media/pci/ivtv/
9083 F:      include/uapi/linux/ivtv*
9084
9085 IX2505V MEDIA DRIVER
9086 M:      Malcolm Priestley <[email protected]>
9087 L:      [email protected]
9088 S:      Maintained
9089 W:      https://linuxtv.org
9090 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9091 F:      drivers/media/dvb-frontends/ix2505v*
9092
9093 JAILHOUSE HYPERVISOR INTERFACE
9094 M:      Jan Kiszka <[email protected]>
9095 L:      [email protected]
9096 S:      Maintained
9097 F:      arch/x86/include/asm/jailhouse_para.h
9098 F:      arch/x86/kernel/jailhouse.c
9099
9100 JC42.4 TEMPERATURE SENSOR DRIVER
9101 M:      Guenter Roeck <[email protected]>
9102 L:      [email protected]
9103 S:      Maintained
9104 F:      Documentation/hwmon/jc42.rst
9105 F:      drivers/hwmon/jc42.c
9106
9107 JFS FILESYSTEM
9108 M:      Dave Kleikamp <[email protected]>
9109 L:      [email protected]
9110 S:      Maintained
9111 W:      http://jfs.sourceforge.net/
9112 T:      git git://github.com/kleikamp/linux-shaggy.git
9113 F:      Documentation/admin-guide/jfs.rst
9114 F:      fs/jfs/
9115
9116 JME NETWORK DRIVER
9117 M:      Guo-Fu Tseng <[email protected]>
9118 L:      [email protected]
9119 S:      Maintained
9120 F:      drivers/net/ethernet/jme.*
9121
9122 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9123 M:      David Woodhouse <[email protected]>
9124 M:      Richard Weinberger <[email protected]>
9125 L:      [email protected]
9126 S:      Odd Fixes
9127 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9128 T:      git git://git.infradead.org/ubifs-2.6.git
9129 F:      fs/jffs2/
9130 F:      include/uapi/linux/jffs2.h
9131
9132 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9133 M:      "Theodore Ts'o" <[email protected]>
9134 M:      Jan Kara <[email protected]>
9135 L:      [email protected]
9136 S:      Maintained
9137 F:      fs/jbd2/
9138 F:      include/linux/jbd2.h
9139
9140 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9141 M:      Mikhail Ulyanov <[email protected]>
9142 L:      [email protected]
9143 S:      Maintained
9144 F:      drivers/media/platform/rcar_jpu.c
9145
9146 JSM Neo PCI based serial card
9147 L:      [email protected]
9148 S:      Orphan
9149 F:      drivers/tty/serial/jsm/
9150
9151 K10TEMP HARDWARE MONITORING DRIVER
9152 M:      Clemens Ladisch <[email protected]>
9153 L:      [email protected]
9154 S:      Maintained
9155 F:      Documentation/hwmon/k10temp.rst
9156 F:      drivers/hwmon/k10temp.c
9157
9158 K8TEMP HARDWARE MONITORING DRIVER
9159 M:      Rudolf Marek <[email protected]>
9160 L:      [email protected]
9161 S:      Maintained
9162 F:      Documentation/hwmon/k8temp.rst
9163 F:      drivers/hwmon/k8temp.c
9164
9165 KASAN
9166 M:      Andrey Ryabinin <[email protected]>
9167 R:      Alexander Potapenko <[email protected]>
9168 R:      Dmitry Vyukov <[email protected]>
9169 L:      [email protected]
9170 S:      Maintained
9171 F:      Documentation/dev-tools/kasan.rst
9172 F:      arch/*/include/asm/kasan.h
9173 F:      arch/*/mm/kasan_init*
9174 F:      include/linux/kasan*.h
9175 F:      lib/test_kasan.c
9176 F:      mm/kasan/
9177 F:      scripts/Makefile.kasan
9178
9179 KCONFIG
9180 M:      Masahiro Yamada <[email protected]>
9181 L:      [email protected]
9182 S:      Maintained
9183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9184 F:      Documentation/kbuild/kconfig*
9185 F:      scripts/Kconfig.include
9186 F:      scripts/kconfig/
9187
9188 KDUMP
9189 M:      Dave Young <[email protected]>
9190 M:      Baoquan He <[email protected]>
9191 R:      Vivek Goyal <[email protected]>
9192 L:      [email protected]
9193 S:      Maintained
9194 W:      http://lse.sourceforge.net/kdump/
9195 F:      Documentation/admin-guide/kdump/
9196
9197 KEENE FM RADIO TRANSMITTER DRIVER
9198 M:      Hans Verkuil <[email protected]>
9199 L:      [email protected]
9200 S:      Maintained
9201 W:      https://linuxtv.org
9202 T:      git git://linuxtv.org/media_tree.git
9203 F:      drivers/media/radio/radio-keene*
9204
9205 KERNEL AUTOMOUNTER
9206 M:      Ian Kent <[email protected]>
9207 L:      [email protected]
9208 S:      Maintained
9209 F:      fs/autofs/
9210
9211 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9212 M:      Masahiro Yamada <[email protected]>
9213 M:      Michal Marek <[email protected]>
9214 L:      [email protected]
9215 S:      Maintained
9216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9217 F:      Documentation/kbuild/
9218 F:      Makefile
9219 F:      scripts/*vmlinux*
9220 F:      scripts/Kbuild*
9221 F:      scripts/Makefile*
9222 F:      scripts/basic/
9223 F:      scripts/mk*
9224 F:      scripts/mod/
9225 F:      scripts/package/
9226
9227 KERNEL JANITORS
9228 L:      [email protected]
9229 S:      Odd Fixes
9230 W:      http://kernelnewbies.org/KernelJanitors
9231
9232 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9233 M:      "J. Bruce Fields" <[email protected]>
9234 M:      Chuck Lever <[email protected]>
9235 L:      [email protected]
9236 S:      Supported
9237 W:      http://nfs.sourceforge.net/
9238 T:      git git://linux-nfs.org/~bfields/linux.git
9239 F:      fs/lockd/
9240 F:      fs/nfs_common/
9241 F:      fs/nfsd/
9242 F:      include/linux/lockd/
9243 F:      include/linux/sunrpc/
9244 F:      include/uapi/linux/nfsd/
9245 F:      include/uapi/linux/sunrpc/
9246 F:      net/sunrpc/
9247
9248 KERNEL SELFTEST FRAMEWORK
9249 M:      Shuah Khan <[email protected]>
9250 M:      Shuah Khan <[email protected]>
9251 L:      [email protected]
9252 S:      Maintained
9253 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9255 F:      Documentation/dev-tools/kselftest*
9256 F:      tools/testing/selftests/
9257
9258 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9259 M:      Brendan Higgins <[email protected]>
9260 L:      [email protected]
9261 L:      [email protected]
9262 S:      Maintained
9263 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9264 F:      Documentation/dev-tools/kunit/
9265 F:      include/kunit/
9266 F:      lib/kunit/
9267 F:      tools/testing/kunit/
9268
9269 KERNEL USERMODE HELPER
9270 M:      Luis Chamberlain <[email protected]>
9271 L:      [email protected]
9272 S:      Maintained
9273 F:      include/linux/umh.h
9274 F:      kernel/umh.c
9275
9276 KERNEL VIRTUAL MACHINE (KVM)
9277 M:      Paolo Bonzini <[email protected]>
9278 L:      [email protected]
9279 S:      Supported
9280 W:      http://www.linux-kvm.org
9281 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9282 F:      Documentation/virt/kvm/
9283 F:      include/asm-generic/kvm*
9284 F:      include/kvm/iodev.h
9285 F:      include/linux/kvm*
9286 F:      include/trace/events/kvm.h
9287 F:      include/uapi/asm-generic/kvm*
9288 F:      include/uapi/linux/kvm*
9289 F:      tools/kvm/
9290 F:      tools/testing/selftests/kvm/
9291 F:      virt/kvm/*
9292
9293 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9294 M:      Marc Zyngier <[email protected]>
9295 R:      James Morse <[email protected]>
9296 R:      Julien Thierry <[email protected]>
9297 R:      Suzuki K Poulose <[email protected]>
9298 L:      [email protected] (moderated for non-subscribers)
9299 L:      [email protected]
9300 S:      Maintained
9301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9302 F:      arch/arm64/include/asm/kvm*
9303 F:      arch/arm64/include/uapi/asm/kvm*
9304 F:      arch/arm64/kvm/
9305 F:      include/kvm/arm_*
9306 F:      virt/kvm/arm/
9307
9308 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9309 L:      [email protected]
9310 L:      [email protected]
9311 S:      Orphan
9312 F:      arch/mips/include/asm/kvm*
9313 F:      arch/mips/include/uapi/asm/kvm*
9314 F:      arch/mips/kvm/
9315
9316 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9317 M:      Paul Mackerras <[email protected]>
9318 L:      [email protected]
9319 S:      Supported
9320 W:      http://www.linux-kvm.org/
9321 T:      git git://github.com/agraf/linux-2.6.git
9322 F:      arch/powerpc/include/asm/kvm*
9323 F:      arch/powerpc/include/uapi/asm/kvm*
9324 F:      arch/powerpc/kernel/kvm*
9325 F:      arch/powerpc/kvm/
9326
9327 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9328 M:      Christian Borntraeger <[email protected]>
9329 M:      Janosch Frank <[email protected]>
9330 R:      David Hildenbrand <[email protected]>
9331 R:      Cornelia Huck <[email protected]>
9332 L:      [email protected]
9333 S:      Supported
9334 W:      http://www.ibm.com/developerworks/linux/linux390/
9335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9336 F:      Documentation/virt/kvm/s390*
9337 F:      arch/s390/include/asm/gmap.h
9338 F:      arch/s390/include/asm/kvm*
9339 F:      arch/s390/include/uapi/asm/kvm*
9340 F:      arch/s390/kvm/
9341 F:      arch/s390/mm/gmap.c
9342 F:      tools/testing/selftests/kvm/*/s390x/
9343 F:      tools/testing/selftests/kvm/s390x/
9344
9345 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9346 M:      Paolo Bonzini <[email protected]>
9347 R:      Sean Christopherson <[email protected]>
9348 R:      Vitaly Kuznetsov <[email protected]>
9349 R:      Wanpeng Li <[email protected]>
9350 R:      Jim Mattson <[email protected]>
9351 R:      Joerg Roedel <[email protected]>
9352 L:      [email protected]
9353 S:      Supported
9354 W:      http://www.linux-kvm.org
9355 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9356 F:      arch/x86/include/asm/kvm*
9357 F:      arch/x86/include/asm/pvclock-abi.h
9358 F:      arch/x86/include/asm/svm.h
9359 F:      arch/x86/include/asm/vmx*.h
9360 F:      arch/x86/include/uapi/asm/kvm*
9361 F:      arch/x86/include/uapi/asm/svm.h
9362 F:      arch/x86/include/uapi/asm/vmx.h
9363 F:      arch/x86/kernel/kvm.c
9364 F:      arch/x86/kernel/kvmclock.c
9365 F:      arch/x86/kvm/
9366 F:      arch/x86/kvm/*/
9367
9368 KERNFS
9369 M:      Greg Kroah-Hartman <[email protected]>
9370 M:      Tejun Heo <[email protected]>
9371 S:      Supported
9372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9373 F:      fs/kernfs/
9374 F:      include/linux/kernfs.h
9375
9376 KEXEC
9377 M:      Eric Biederman <[email protected]>
9378 L:      [email protected]
9379 S:      Maintained
9380 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9381 F:      include/linux/kexec.h
9382 F:      include/uapi/linux/kexec.h
9383 F:      kernel/kexec*
9384
9385 KEYS-ENCRYPTED
9386 M:      Mimi Zohar <[email protected]>
9387 L:      [email protected]
9388 L:      [email protected]
9389 S:      Supported
9390 F:      Documentation/security/keys/trusted-encrypted.rst
9391 F:      include/keys/encrypted-type.h
9392 F:      security/keys/encrypted-keys/
9393
9394 KEYS-TRUSTED
9395 M:      James Bottomley <[email protected]>
9396 M:      Jarkko Sakkinen <[email protected]>
9397 M:      Mimi Zohar <[email protected]>
9398 L:      [email protected]
9399 L:      [email protected]
9400 S:      Supported
9401 F:      Documentation/security/keys/trusted-encrypted.rst
9402 F:      include/keys/trusted-type.h
9403 F:      include/keys/trusted_tpm.h
9404 F:      security/keys/trusted-keys/
9405
9406 KEYS/KEYRINGS
9407 M:      David Howells <[email protected]>
9408 M:      Jarkko Sakkinen <[email protected]>
9409 L:      [email protected]
9410 S:      Maintained
9411 F:      Documentation/security/keys/core.rst
9412 F:      include/keys/
9413 F:      include/linux/key-type.h
9414 F:      include/linux/key.h
9415 F:      include/linux/keyctl.h
9416 F:      include/uapi/linux/keyctl.h
9417 F:      security/keys/
9418
9419 KGDB / KDB /debug_core
9420 M:      Jason Wessel <[email protected]>
9421 M:      Daniel Thompson <[email protected]>
9422 R:      Douglas Anderson <[email protected]>
9423 L:      [email protected]
9424 S:      Maintained
9425 W:      http://kgdb.wiki.kernel.org/
9426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9427 F:      Documentation/dev-tools/kgdb.rst
9428 F:      drivers/misc/kgdbts.c
9429 F:      drivers/tty/serial/kgdboc.c
9430 F:      include/linux/kdb.h
9431 F:      include/linux/kgdb.h
9432 F:      kernel/debug/
9433
9434 KMEMLEAK
9435 M:      Catalin Marinas <[email protected]>
9436 S:      Maintained
9437 F:      Documentation/dev-tools/kmemleak.rst
9438 F:      include/linux/kmemleak.h
9439 F:      mm/kmemleak-test.c
9440 F:      mm/kmemleak.c
9441
9442 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9443 M:      Luis Chamberlain <[email protected]>
9444 L:      [email protected]
9445 S:      Maintained
9446 F:      include/linux/kmod.h
9447 F:      kernel/kmod.c
9448 F:      lib/test_kmod.c
9449 F:      tools/testing/selftests/kmod/
9450
9451 KPROBES
9452 M:      Naveen N. Rao <[email protected]>
9453 M:      Anil S Keshavamurthy <[email protected]>
9454 M:      "David S. Miller" <[email protected]>
9455 M:      Masami Hiramatsu <[email protected]>
9456 S:      Maintained
9457 F:      Documentation/kprobes.txt
9458 F:      include/asm-generic/kprobes.h
9459 F:      include/linux/kprobes.h
9460 F:      kernel/kprobes.c
9461
9462 KS0108 LCD CONTROLLER DRIVER
9463 M:      Miguel Ojeda Sandonis <[email protected]>
9464 S:      Maintained
9465 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9466 F:      drivers/auxdisplay/ks0108.c
9467 F:      include/linux/ks0108.h
9468
9469 L3MDEV
9470 M:      David Ahern <[email protected]>
9471 L:      [email protected]
9472 S:      Maintained
9473 F:      include/net/l3mdev.h
9474 F:      net/l3mdev
9475
9476 L7 BPF FRAMEWORK
9477 M:      John Fastabend <[email protected]>
9478 M:      Daniel Borkmann <[email protected]>
9479 M:      Jakub Sitnicki <[email protected]>
9480 M:      Lorenz Bauer <[email protected]>
9481 L:      [email protected]
9482 L:      [email protected]
9483 S:      Maintained
9484 F:      include/linux/skmsg.h
9485 F:      net/core/skmsg.c
9486 F:      net/core/sock_map.c
9487 F:      net/ipv4/tcp_bpf.c
9488 F:      net/ipv4/udp_bpf.c
9489
9490 LANTIQ / INTEL Ethernet drivers
9491 M:      Hauke Mehrtens <[email protected]>
9492 L:      [email protected]
9493 S:      Maintained
9494 F:      drivers/net/dsa/lantiq_gswip.c
9495 F:      drivers/net/dsa/lantiq_pce.h
9496 F:      drivers/net/ethernet/lantiq_xrx200.c
9497 F:      net/dsa/tag_gswip.c
9498
9499 LANTIQ MIPS ARCHITECTURE
9500 M:      John Crispin <[email protected]>
9501 L:      [email protected]
9502 S:      Maintained
9503 F:      arch/mips/lantiq
9504 F:      drivers/soc/lantiq
9505
9506 LAPB module
9507 L:      [email protected]
9508 S:      Orphan
9509 F:      Documentation/networking/lapb-module.txt
9510 F:      include/*/lapb.h
9511 F:      net/lapb/
9512
9513 LASI 53c700 driver for PARISC
9514 M:      "James E.J. Bottomley" <[email protected]>
9515 L:      [email protected]
9516 S:      Maintained
9517 F:      Documentation/scsi/53c700.rst
9518 F:      drivers/scsi/53c700*
9519
9520 LEAKING_ADDRESSES
9521 M:      Tobin C. Harding <[email protected]>
9522 M:      Tycho Andersen <[email protected]>
9523 L:      [email protected]
9524 S:      Maintained
9525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9526 F:      scripts/leaking_addresses.pl
9527
9528 LED SUBSYSTEM
9529 M:      Jacek Anaszewski <[email protected]>
9530 M:      Pavel Machek <[email protected]>
9531 R:      Dan Murphy <[email protected]>
9532 L:      [email protected]
9533 S:      Maintained
9534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9536 F:      Documentation/devicetree/bindings/leds/
9537 F:      drivers/leds/
9538 F:      include/linux/leds.h
9539
9540 LEGACY EEPROM DRIVER
9541 M:      Jean Delvare <[email protected]>
9542 S:      Maintained
9543 F:      Documentation/misc-devices/eeprom.rst
9544 F:      drivers/misc/eeprom/eeprom.c
9545
9546 LEGO MINDSTORMS EV3
9547 R:      David Lechner <[email protected]>
9548 S:      Maintained
9549 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9550 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9551 F:      drivers/power/supply/lego_ev3_battery.c
9552
9553 LEGO USB Tower driver
9554 M:      Juergen Stuber <[email protected]>
9555 L:      [email protected]
9556 S:      Maintained
9557 W:      http://legousb.sourceforge.net/
9558 F:      drivers/usb/misc/legousbtower.c
9559
9560 LG LAPTOP EXTRAS
9561 M:      Matan Ziv-Av <[email protected]>
9562 L:      [email protected]
9563 S:      Maintained
9564 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9565 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9566 F:      drivers/platform/x86/lg-laptop.c
9567
9568 LG2160 MEDIA DRIVER
9569 M:      Michael Krufky <[email protected]>
9570 L:      [email protected]
9571 S:      Maintained
9572 W:      https://linuxtv.org
9573 W:      http://github.com/mkrufky
9574 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9575 T:      git git://linuxtv.org/mkrufky/tuners.git
9576 F:      drivers/media/dvb-frontends/lg2160.*
9577
9578 LGDT3305 MEDIA DRIVER
9579 M:      Michael Krufky <[email protected]>
9580 L:      [email protected]
9581 S:      Maintained
9582 W:      https://linuxtv.org
9583 W:      http://github.com/mkrufky
9584 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9585 T:      git git://linuxtv.org/mkrufky/tuners.git
9586 F:      drivers/media/dvb-frontends/lgdt3305.*
9587
9588 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9589 M:      Viresh Kumar <[email protected]>
9590 L:      [email protected]
9591 S:      Maintained
9592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9593 F:      drivers/ata/pata_arasan_cf.c
9594 F:      include/linux/pata_arasan_cf_data.h
9595
9596 LIBATA PATA DRIVERS
9597 M:      Bartlomiej Zolnierkiewicz <[email protected]>
9598 M:      Jens Axboe <[email protected]>
9599 L:      [email protected]
9600 S:      Maintained
9601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9602 F:      drivers/ata/ata_generic.c
9603 F:      drivers/ata/pata_*.c
9604
9605 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9606 M:      Linus Walleij <[email protected]>
9607 L:      [email protected]
9608 S:      Maintained
9609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9610 F:      drivers/ata/pata_ftide010.c
9611 F:      drivers/ata/sata_gemini.c
9612 F:      drivers/ata/sata_gemini.h
9613
9614 LIBATA SATA AHCI PLATFORM devices support
9615 M:      Hans de Goede <[email protected]>
9616 M:      Jens Axboe <[email protected]>
9617 L:      [email protected]
9618 S:      Maintained
9619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9620 F:      drivers/ata/ahci_platform.c
9621 F:      drivers/ata/libahci_platform.c
9622 F:      include/linux/ahci_platform.h
9623
9624 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9625 M:      Mikael Pettersson <[email protected]>
9626 L:      [email protected]
9627 S:      Maintained
9628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9629 F:      drivers/ata/sata_promise.*
9630
9631 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9632 M:      Jens Axboe <[email protected]>
9633 L:      [email protected]
9634 S:      Maintained
9635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9636 F:      Documentation/devicetree/bindings/ata/
9637 F:      drivers/ata/
9638 F:      include/linux/ata.h
9639 F:      include/linux/libata.h
9640
9641 LIBLOCKDEP
9642 M:      Sasha Levin <[email protected]>
9643 S:      Maintained
9644 F:      tools/lib/lockdep/
9645
9646 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9647 M:      Dan Williams <[email protected]>
9648 M:      Vishal Verma <[email protected]>
9649 M:      Dave Jiang <[email protected]>
9650 L:      [email protected]
9651 S:      Supported
9652 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9653 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9654 F:      drivers/nvdimm/blk.c
9655 F:      drivers/nvdimm/region_devs.c
9656
9657 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9658 M:      Vishal Verma <[email protected]>
9659 M:      Dan Williams <[email protected]>
9660 M:      Dave Jiang <[email protected]>
9661 L:      [email protected]
9662 S:      Supported
9663 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9664 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9665 F:      drivers/nvdimm/btt*
9666
9667 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9668 M:      Dan Williams <[email protected]>
9669 M:      Vishal Verma <[email protected]>
9670 M:      Dave Jiang <[email protected]>
9671 L:      [email protected]
9672 S:      Supported
9673 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9674 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9675 F:      drivers/nvdimm/pmem*
9676
9677 LIBNVDIMM: DEVICETREE BINDINGS
9678 M:      Oliver O'Halloran <[email protected]>
9679 L:      [email protected]
9680 S:      Supported
9681 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9682 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9683 F:      drivers/nvdimm/of_pmem.c
9684
9685 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9686 M:      Dan Williams <[email protected]>
9687 M:      Vishal Verma <[email protected]>
9688 M:      Dave Jiang <[email protected]>
9689 M:      Ira Weiny <[email protected]>
9690 L:      [email protected]
9691 S:      Supported
9692 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9693 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9695 F:      drivers/acpi/nfit/*
9696 F:      drivers/nvdimm/*
9697 F:      include/linux/libnvdimm.h
9698 F:      include/linux/nd.h
9699 F:      include/uapi/linux/ndctl.h
9700 F:      tools/testing/nvdimm/
9701
9702 LICENSES and SPDX stuff
9703 M:      Thomas Gleixner <[email protected]>
9704 M:      Greg Kroah-Hartman <[email protected]>
9705 L:      [email protected]
9706 S:      Maintained
9707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9708 F:      COPYING
9709 F:      Documentation/process/license-rules.rst
9710 F:      LICENSES/
9711 F:      scripts/spdxcheck-test.sh
9712 F:      scripts/spdxcheck.py
9713
9714 LIGHTNVM PLATFORM SUPPORT
9715 M:      Matias Bjorling <[email protected]>
9716 L:      [email protected]
9717 S:      Maintained
9718 W:      http://github/OpenChannelSSD
9719 F:      drivers/lightnvm/
9720 F:      include/linux/lightnvm.h
9721 F:      include/uapi/linux/lightnvm.h
9722
9723 LINUX FOR POWER MACINTOSH
9724 M:      Benjamin Herrenschmidt <[email protected]>
9725 L:      [email protected]
9726 S:      Odd Fixes
9727 F:      arch/powerpc/platforms/powermac/
9728 F:      drivers/macintosh/
9729
9730 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9731 M:      Michael Ellerman <[email protected]>
9732 R:      Benjamin Herrenschmidt <[email protected]>
9733 R:      Paul Mackerras <[email protected]>
9734 L:      [email protected]
9735 S:      Supported
9736 W:      https://github.com/linuxppc/wiki/wiki
9737 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9739 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9740 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9741 F:      Documentation/devicetree/bindings/powerpc/
9742 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9743 F:      Documentation/powerpc/
9744 F:      arch/powerpc/
9745 F:      drivers/*/*/*pasemi*
9746 F:      drivers/*/*pasemi*
9747 F:      drivers/char/tpm/tpm_ibmvtpm*
9748 F:      drivers/crypto/nx/
9749 F:      drivers/crypto/vmx/
9750 F:      drivers/i2c/busses/i2c-opal.c
9751 F:      drivers/net/ethernet/ibm/ibmveth.*
9752 F:      drivers/net/ethernet/ibm/ibmvnic.*
9753 F:      drivers/pci/hotplug/pnv_php.c
9754 F:      drivers/pci/hotplug/rpa*
9755 F:      drivers/rtc/rtc-opal.c
9756 F:      drivers/scsi/ibmvscsi/
9757 F:      drivers/tty/hvc/hvc_opal.c
9758 F:      drivers/watchdog/wdrtas.c
9759 F:      tools/testing/selftests/powerpc
9760 N:      /pmac
9761 N:      powermac
9762 N:      powernv
9763 N:      [^a-z0-9]ps3
9764 N:      pseries
9765
9766 LINUX FOR POWERPC EMBEDDED MPC5XXX
9767 M:      Anatolij Gustschin <[email protected]>
9768 L:      [email protected]
9769 S:      Odd Fixes
9770 F:      arch/powerpc/platforms/512x/
9771 F:      arch/powerpc/platforms/52xx/
9772
9773 LINUX FOR POWERPC EMBEDDED PPC4XX
9774 L:      [email protected]
9775 S:      Orphan
9776 F:      arch/powerpc/platforms/40x/
9777 F:      arch/powerpc/platforms/44x/
9778
9779 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9780 M:      Scott Wood <[email protected]>
9781 L:      [email protected]
9782 S:      Odd fixes
9783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9784 F:      Documentation/devicetree/bindings/powerpc/fsl/
9785 F:      arch/powerpc/platforms/83xx/
9786 F:      arch/powerpc/platforms/85xx/
9787
9788 LINUX FOR POWERPC EMBEDDED PPC8XX
9789 M:      Christophe Leroy <[email protected]>
9790 L:      [email protected]
9791 S:      Maintained
9792 F:      arch/powerpc/platforms/8xx/
9793
9794 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9795 M:      Kees Cook <[email protected]>
9796 S:      Maintained
9797 F:      drivers/misc/lkdtm/*
9798 F:      tools/testing/selftests/lkdtm/*
9799
9800 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9801 M:      Alan Stern <[email protected]>
9802 M:      Andrea Parri <[email protected]>
9803 M:      Will Deacon <[email protected]>
9804 M:      Peter Zijlstra <[email protected]>
9805 M:      Boqun Feng <[email protected]>
9806 M:      Nicholas Piggin <[email protected]>
9807 M:      David Howells <[email protected]>
9808 M:      Jade Alglave <[email protected]>
9809 M:      Luc Maranget <[email protected]>
9810 M:      "Paul E. McKenney" <[email protected]>
9811 R:      Akira Yokosawa <[email protected]>
9812 R:      Daniel Lustig <[email protected]>
9813 L:      [email protected]
9814 L:      [email protected]
9815 S:      Supported
9816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9817 F:      Documentation/atomic_bitops.txt
9818 F:      Documentation/atomic_t.txt
9819 F:      Documentation/core-api/atomic_ops.rst
9820 F:      Documentation/core-api/refcount-vs-atomic.rst
9821 F:      Documentation/memory-barriers.txt
9822 F:      tools/memory-model/
9823
9824 LIS3LV02D ACCELEROMETER DRIVER
9825 M:      Eric Piel <[email protected]>
9826 S:      Maintained
9827 F:      Documentation/misc-devices/lis3lv02d.rst
9828 F:      drivers/misc/lis3lv02d/
9829 F:      drivers/platform/x86/hp_accel.c
9830
9831 LIST KUNIT TEST
9832 M:      David Gow <[email protected]>
9833 L:      [email protected]
9834 L:      [email protected]
9835 S:      Maintained
9836 F:      lib/list-test.c
9837
9838 LIVE PATCHING
9839 M:      Josh Poimboeuf <[email protected]>
9840 M:      Jiri Kosina <[email protected]>
9841 M:      Miroslav Benes <[email protected]>
9842 M:      Petr Mladek <[email protected]>
9843 R:      Joe Lawrence <[email protected]>
9844 L:      [email protected]
9845 S:      Maintained
9846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9847 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9848 F:      Documentation/livepatch/
9849 F:      arch/x86/include/asm/livepatch.h
9850 F:      arch/x86/kernel/livepatch.c
9851 F:      include/linux/livepatch.h
9852 F:      kernel/livepatch/
9853 F:      samples/livepatch/
9854 F:      tools/testing/selftests/livepatch/
9855
9856 LLC (802.2)
9857 L:      [email protected]
9858 S:      Odd fixes
9859 F:      include/linux/llc.h
9860 F:      include/net/llc*
9861 F:      include/uapi/linux/llc.h
9862 F:      net/llc/
9863
9864 LM73 HARDWARE MONITOR DRIVER
9865 M:      Guillaume Ligneul <[email protected]>
9866 L:      [email protected]
9867 S:      Maintained
9868 F:      drivers/hwmon/lm73.c
9869
9870 LM78 HARDWARE MONITOR DRIVER
9871 M:      Jean Delvare <[email protected]>
9872 L:      [email protected]
9873 S:      Maintained
9874 F:      Documentation/hwmon/lm78.rst
9875 F:      drivers/hwmon/lm78.c
9876
9877 LM83 HARDWARE MONITOR DRIVER
9878 M:      Jean Delvare <[email protected]>
9879 L:      [email protected]
9880 S:      Maintained
9881 F:      Documentation/hwmon/lm83.rst
9882 F:      drivers/hwmon/lm83.c
9883
9884 LM90 HARDWARE MONITOR DRIVER
9885 M:      Jean Delvare <[email protected]>
9886 L:      [email protected]
9887 S:      Maintained
9888 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9889 F:      Documentation/hwmon/lm90.rst
9890 F:      drivers/hwmon/lm90.c
9891 F:      include/dt-bindings/thermal/lm90.h
9892
9893 LM95234 HARDWARE MONITOR DRIVER
9894 M:      Guenter Roeck <[email protected]>
9895 L:      [email protected]
9896 S:      Maintained
9897 F:      Documentation/hwmon/lm95234.rst
9898 F:      drivers/hwmon/lm95234.c
9899
9900 LME2510 MEDIA DRIVER
9901 M:      Malcolm Priestley <[email protected]>
9902 L:      [email protected]
9903 S:      Maintained
9904 W:      https://linuxtv.org
9905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9906 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9907
9908 LOADPIN SECURITY MODULE
9909 M:      Kees Cook <[email protected]>
9910 S:      Supported
9911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9912 F:      Documentation/admin-guide/LSM/LoadPin.rst
9913 F:      security/loadpin/
9914
9915 LOCKING PRIMITIVES
9916 M:      Peter Zijlstra <[email protected]>
9917 M:      Ingo Molnar <[email protected]>
9918 M:      Will Deacon <[email protected]>
9919 L:      [email protected]
9920 S:      Maintained
9921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9922 F:      Documentation/locking/
9923 F:      arch/*/include/asm/spinlock*.h
9924 F:      include/linux/lockdep.h
9925 F:      include/linux/mutex*.h
9926 F:      include/linux/rwlock*.h
9927 F:      include/linux/rwsem*.h
9928 F:      include/linux/seqlock.h
9929 F:      include/linux/spinlock*.h
9930 F:      kernel/locking/
9931 F:      lib/locking*.[ch]
9932 X:      kernel/locking/locktorture.c
9933
9934 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9935 M:      "Richard Russon (FlatCap)" <[email protected]>
9936 L:      [email protected]
9937 S:      Maintained
9938 W:      http://www.linux-ntfs.org/content/view/19/37/
9939 F:      Documentation/admin-guide/ldm.rst
9940 F:      block/partitions/ldm.*
9941
9942 LOGITECH HID GAMING KEYBOARDS
9943 M:      Hans de Goede <[email protected]>
9944 L:      [email protected]
9945 S:      Maintained
9946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9947 F:      drivers/hid/hid-lg-g15.c
9948
9949 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9950 M:      Sathya Prakash <[email protected]>
9951 M:      Chaitra P B <[email protected]>
9952 M:      Suganath Prabu Subramani <[email protected]>
9953 L:      [email protected]
9954 L:      [email protected]
9955 S:      Supported
9956 W:      http://www.avagotech.com/support/
9957 F:      drivers/message/fusion/
9958 F:      drivers/scsi/mpt3sas/
9959
9960 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9961 M:      Matthew Wilcox <[email protected]>
9962 L:      [email protected]
9963 S:      Maintained
9964 F:      drivers/scsi/sym53c8xx_2/
9965
9966 LTC1660 DAC DRIVER
9967 M:      Marcus Folkesson <[email protected]>
9968 L:      [email protected]
9969 S:      Maintained
9970 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
9971 F:      drivers/iio/dac/ltc1660.c
9972
9973 LTC2947 HARDWARE MONITOR DRIVER
9974 M:      Nuno Sá <[email protected]>
9975 L:      [email protected]
9976 S:      Supported
9977 W:      http://ez.analog.com/community/linux-device-drivers
9978 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
9979 F:      drivers/hwmon/ltc2947-core.c
9980 F:      drivers/hwmon/ltc2947-i2c.c
9981 F:      drivers/hwmon/ltc2947-spi.c
9982 F:      drivers/hwmon/ltc2947.h
9983
9984 LTC2983 IIO TEMPERATURE DRIVER
9985 M:      Nuno Sá <[email protected]>
9986 L:      [email protected]
9987 S:      Supported
9988 W:      http://ez.analog.com/community/linux-device-drivers
9989 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
9990 F:      drivers/iio/temperature/ltc2983.c
9991
9992 LTC4261 HARDWARE MONITOR DRIVER
9993 M:      Guenter Roeck <[email protected]>
9994 L:      [email protected]
9995 S:      Maintained
9996 F:      Documentation/hwmon/ltc4261.rst
9997 F:      drivers/hwmon/ltc4261.c
9998
9999 LTC4306 I2C MULTIPLEXER DRIVER
10000 M:      Michael Hennerich <[email protected]>
10001 L:      [email protected]
10002 S:      Supported
10003 W:      http://ez.analog.com/community/linux-device-drivers
10004 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10005 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10006
10007 LTP (Linux Test Project)
10008 M:      Mike Frysinger <[email protected]>
10009 M:      Cyril Hrubis <[email protected]>
10010 M:      Wanlong Gao <[email protected]>
10011 M:      Jan Stancek <[email protected]>
10012 M:      Stanislav Kholmanskikh <[email protected]>
10013 M:      Alexey Kodanev <[email protected]>
10014 L:      [email protected] (subscribers-only)
10015 S:      Maintained
10016 W:      http://linux-test-project.github.io/
10017 T:      git git://github.com/linux-test-project/ltp.git
10018
10019 M68K ARCHITECTURE
10020 M:      Geert Uytterhoeven <[email protected]>
10021 L:      [email protected]
10022 S:      Maintained
10023 W:      http://www.linux-m68k.org/
10024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10025 F:      arch/m68k/
10026 F:      drivers/zorro/
10027
10028 M68K ON APPLE MACINTOSH
10029 M:      Joshua Thompson <[email protected]>
10030 L:      [email protected]
10031 S:      Maintained
10032 W:      http://www.mac.linux-m68k.org/
10033 F:      arch/m68k/mac/
10034
10035 M68K ON HP9000/300
10036 M:      Philip Blundell <[email protected]>
10037 S:      Maintained
10038 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10039 F:      arch/m68k/hp300/
10040
10041 M88DS3103 MEDIA DRIVER
10042 M:      Antti Palosaari <[email protected]>
10043 L:      [email protected]
10044 S:      Maintained
10045 W:      https://linuxtv.org
10046 W:      http://palosaari.fi/linux/
10047 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10048 T:      git git://linuxtv.org/anttip/media_tree.git
10049 F:      drivers/media/dvb-frontends/m88ds3103*
10050
10051 M88RS2000 MEDIA DRIVER
10052 M:      Malcolm Priestley <[email protected]>
10053 L:      [email protected]
10054 S:      Maintained
10055 W:      https://linuxtv.org
10056 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10057 F:      drivers/media/dvb-frontends/m88rs2000*
10058
10059 MA901 MASTERKIT USB FM RADIO DRIVER
10060 M:      Alexey Klimov <[email protected]>
10061 L:      [email protected]
10062 S:      Maintained
10063 T:      git git://linuxtv.org/media_tree.git
10064 F:      drivers/media/radio/radio-ma901.c
10065
10066 MAC80211
10067 M:      Johannes Berg <[email protected]>
10068 L:      [email protected]
10069 S:      Maintained
10070 W:      http://wireless.kernel.org/
10071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10073 F:      Documentation/networking/mac80211-injection.txt
10074 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10075 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10076 F:      include/net/mac80211.h
10077 F:      net/mac80211/
10078
10079 MAILBOX API
10080 M:      Jassi Brar <[email protected]>
10081 L:      [email protected]
10082 S:      Maintained
10083 F:      drivers/mailbox/
10084 F:      include/linux/mailbox_client.h
10085 F:      include/linux/mailbox_controller.h
10086
10087 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10088 M:      Michael Kerrisk <[email protected]>
10089 L:      [email protected]
10090 S:      Maintained
10091 W:      http://www.kernel.org/doc/man-pages
10092
10093 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10094 M:      Rahul Bedarkar <[email protected]>
10095 L:      [email protected]
10096 S:      Maintained
10097 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10098
10099 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10100 M:      Andrew Lunn <[email protected]>
10101 M:      Vivien Didelot <[email protected]>
10102 L:      [email protected]
10103 S:      Maintained
10104 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10105 F:      Documentation/networking/devlink/mv88e6xxx.rst
10106 F:      drivers/net/dsa/mv88e6xxx/
10107 F:      include/linux/platform_data/mv88e6xxx.h
10108
10109 MARVELL ARMADA 3700 PHY DRIVERS
10110 M:      Miquel Raynal <[email protected]>
10111 S:      Maintained
10112 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10113 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10114 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10115 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10116
10117 MARVELL ARMADA DRM SUPPORT
10118 M:      Russell King <[email protected]>
10119 S:      Maintained
10120 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10121 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10122 F:      Documentation/devicetree/bindings/display/armada/
10123 F:      drivers/gpu/drm/armada/
10124 F:      include/uapi/drm/armada_drm.h
10125
10126 MARVELL CRYPTO DRIVER
10127 M:      Boris Brezillon <[email protected]>
10128 M:      Arnaud Ebalard <[email protected]>
10129 M:      Srujana Challa <[email protected]>
10130 L:      [email protected]
10131 S:      Maintained
10132 F:      drivers/crypto/marvell/
10133
10134 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10135 M:      Mirko Lindner <[email protected]>
10136 M:      Stephen Hemminger <[email protected]>
10137 L:      [email protected]
10138 S:      Maintained
10139 F:      drivers/net/ethernet/marvell/sk*
10140
10141 MARVELL LIBERTAS WIRELESS DRIVER
10142 L:      [email protected]
10143 S:      Orphan
10144 F:      drivers/net/wireless/marvell/libertas/
10145
10146 MARVELL MACCHIATOBIN SUPPORT
10147 M:      Russell King <[email protected]>
10148 L:      [email protected]
10149 S:      Maintained
10150 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10151
10152 MARVELL MV643XX ETHERNET DRIVER
10153 M:      Sebastian Hesselbarth <[email protected]>
10154 L:      [email protected]
10155 S:      Maintained
10156 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10157 F:      include/linux/mv643xx.h
10158
10159 MARVELL MV88X3310 PHY DRIVER
10160 M:      Russell King <[email protected]>
10161 L:      [email protected]
10162 S:      Maintained
10163 F:      drivers/net/phy/marvell10g.c
10164
10165 MARVELL MVEBU THERMAL DRIVER
10166 M:      Miquel Raynal <[email protected]>
10167 S:      Maintained
10168 F:      drivers/thermal/armada_thermal.c
10169
10170 MARVELL MVNETA ETHERNET DRIVER
10171 M:      Thomas Petazzoni <[email protected]>
10172 L:      [email protected]
10173 S:      Maintained
10174 F:      drivers/net/ethernet/marvell/mvneta.*
10175
10176 MARVELL MWIFIEX WIRELESS DRIVER
10177 M:      Amitkumar Karwar <[email protected]>
10178 M:      Ganapathi Bhat <[email protected]>
10179 M:      Xinming Hu <[email protected]>
10180 L:      [email protected]
10181 S:      Maintained
10182 F:      drivers/net/wireless/marvell/mwifiex/
10183
10184 MARVELL MWL8K WIRELESS DRIVER
10185 M:      Lennert Buytenhek <[email protected]>
10186 L:      [email protected]
10187 S:      Odd Fixes
10188 F:      drivers/net/wireless/marvell/mwl8k.c
10189
10190 MARVELL NAND CONTROLLER DRIVER
10191 M:      Miquel Raynal <[email protected]>
10192 L:      [email protected]
10193 S:      Maintained
10194 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10195 F:      drivers/mtd/nand/raw/marvell_nand.c
10196
10197 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10198 M:      Sunil Goutham <[email protected]>
10199 M:      Geetha sowjanya <[email protected]>
10200 M:      Subbaraya Sundeep <[email protected]>
10201 M:      hariprasad <[email protected]>
10202 L:      [email protected]
10203 S:      Supported
10204 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10205
10206 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10207 M:      Sunil Goutham <[email protected]>
10208 M:      Linu Cherian <[email protected]>
10209 M:      Geetha sowjanya <[email protected]>
10210 M:      Jerin Jacob <[email protected]>
10211 L:      [email protected]
10212 S:      Supported
10213 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10214 F:      drivers/net/ethernet/marvell/octeontx2/af/
10215
10216 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10217 M:      Nicolas Pitre <[email protected]>
10218 S:      Odd Fixes
10219 F:      drivers/mmc/host/mvsdio.*
10220
10221 MARVELL USB MDIO CONTROLLER DRIVER
10222 M:      Tobias Waldekranz <[email protected]>
10223 L:      [email protected]
10224 S:      Maintained
10225 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10226 F:      drivers/net/phy/mdio-mvusb.c
10227
10228 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10229 M:      Hu Ziji <[email protected]>
10230 L:      [email protected]
10231 S:      Supported
10232 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10233 F:      drivers/mmc/host/sdhci-xenon*
10234
10235 MATROX FRAMEBUFFER DRIVER
10236 L:      [email protected]
10237 S:      Orphan
10238 F:      drivers/video/fbdev/matrox/matroxfb_*
10239 F:      include/uapi/linux/matroxfb.h
10240
10241 MAX16065 HARDWARE MONITOR DRIVER
10242 M:      Guenter Roeck <[email protected]>
10243 L:      [email protected]
10244 S:      Maintained
10245 F:      Documentation/hwmon/max16065.rst
10246 F:      drivers/hwmon/max16065.c
10247
10248 MAX2175 SDR TUNER DRIVER
10249 M:      Ramesh Shanmugasundaram <[email protected]>
10250 L:      [email protected]
10251 S:      Maintained
10252 T:      git git://linuxtv.org/media_tree.git
10253 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10254 F:      Documentation/media/v4l-drivers/max2175.rst
10255 F:      drivers/media/i2c/max2175*
10256 F:      include/uapi/linux/max2175.h
10257
10258 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10259 L:      [email protected]
10260 S:      Orphan
10261 F:      Documentation/hwmon/max6650.rst
10262 F:      drivers/hwmon/max6650.c
10263
10264 MAX6697 HARDWARE MONITOR DRIVER
10265 M:      Guenter Roeck <[email protected]>
10266 L:      [email protected]
10267 S:      Maintained
10268 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10269 F:      Documentation/hwmon/max6697.rst
10270 F:      drivers/hwmon/max6697.c
10271 F:      include/linux/platform_data/max6697.h
10272
10273 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10274 M:      Peter Rosin <[email protected]>
10275 L:      [email protected] (moderated for non-subscribers)
10276 S:      Maintained
10277 F:      Documentation/devicetree/bindings/sound/max9860.txt
10278 F:      sound/soc/codecs/max9860.*
10279
10280 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10281 M:      Andreas Klinger <[email protected]>
10282 L:      [email protected]
10283 S:      Maintained
10284 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10285 F:      drivers/iio/proximity/mb1232.c
10286
10287 MAXIM MAX77650 PMIC MFD DRIVER
10288 M:      Bartosz Golaszewski <[email protected]>
10289 L:      [email protected]
10290 S:      Maintained
10291 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10292 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10293 F:      drivers/gpio/gpio-max77650.c
10294 F:      drivers/input/misc/max77650-onkey.c
10295 F:      drivers/leds/leds-max77650.c
10296 F:      drivers/mfd/max77650.c
10297 F:      drivers/power/supply/max77650-charger.c
10298 F:      drivers/regulator/max77650-regulator.c
10299 F:      include/linux/mfd/max77650.h
10300
10301 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10302 M:      Javier Martinez Canillas <[email protected]>
10303 L:      [email protected]
10304 S:      Supported
10305 F:      Documentation/devicetree/bindings/*/*max77802.txt
10306 F:      drivers/regulator/max77802-regulator.c
10307 F:      include/dt-bindings/*/*max77802.h
10308
10309 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10310 M:      Krzysztof Kozlowski <[email protected]>
10311 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10312 L:      [email protected]
10313 S:      Supported
10314 F:      drivers/power/supply/max14577_charger.c
10315 F:      drivers/power/supply/max77693_charger.c
10316
10317 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10318 M:      Chanwoo Choi <[email protected]>
10319 M:      Krzysztof Kozlowski <[email protected]>
10320 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10321 L:      [email protected]
10322 S:      Supported
10323 F:      Documentation/devicetree/bindings/*/max77686.txt
10324 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10325 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10326 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10327 F:      drivers/*/max14577*.c
10328 F:      drivers/*/max77686*.c
10329 F:      drivers/*/max77693*.c
10330 F:      drivers/clk/clk-max77686.c
10331 F:      drivers/extcon/extcon-max14577.c
10332 F:      drivers/extcon/extcon-max77693.c
10333 F:      drivers/rtc/rtc-max77686.c
10334 F:      include/linux/mfd/max14577*.h
10335 F:      include/linux/mfd/max77686*.h
10336 F:      include/linux/mfd/max77693*.h
10337
10338 MAXIRADIO FM RADIO RECEIVER DRIVER
10339 M:      Hans Verkuil <[email protected]>
10340 L:      [email protected]
10341 S:      Maintained
10342 W:      https://linuxtv.org
10343 T:      git git://linuxtv.org/media_tree.git
10344 F:      drivers/media/radio/radio-maxiradio*
10345
10346 MCAN MMIO DEVICE DRIVER
10347 M:      Dan Murphy <[email protected]>
10348 M:      Sriram Dash <[email protected]>
10349 L:      [email protected]
10350 S:      Maintained
10351 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10352 F:      drivers/net/can/m_can/m_can.c
10353 F:      drivers/net/can/m_can/m_can.h
10354 F:      drivers/net/can/m_can/m_can_platform.c
10355
10356 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10357 M:      Rishi Gupta <[email protected]>
10358 L:      [email protected]
10359 L:      [email protected]
10360 S:      Maintained
10361 F:      drivers/hid/hid-mcp2221.c
10362
10363 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10364 M:      Peter Rosin <[email protected]>
10365 L:      [email protected]
10366 S:      Maintained
10367 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10368 F:      drivers/iio/potentiometer/mcp4018.c
10369 F:      drivers/iio/potentiometer/mcp4531.c
10370
10371 MCR20A IEEE-802.15.4 RADIO DRIVER
10372 M:      Xue Liu <[email protected]>
10373 L:      [email protected]
10374 S:      Maintained
10375 W:      https://github.com/xueliu/mcr20a-linux
10376 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10377 F:      drivers/net/ieee802154/mcr20a.c
10378 F:      drivers/net/ieee802154/mcr20a.h
10379
10380 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10381 M:      William Breathitt Gray <[email protected]>
10382 L:      [email protected]
10383 S:      Maintained
10384 F:      drivers/iio/dac/cio-dac.c
10385
10386 MEDIA CONTROLLER FRAMEWORK
10387 M:      Sakari Ailus <[email protected]>
10388 M:      Laurent Pinchart <[email protected]>
10389 L:      [email protected]
10390 S:      Supported
10391 W:      https://www.linuxtv.org
10392 T:      git git://linuxtv.org/media_tree.git
10393 F:      drivers/media/mc/
10394 F:      include/media/media-*.h
10395 F:      include/uapi/linux/media.h
10396
10397 MEDIA DRIVER FOR FREESCALE IMX PXP
10398 M:      Philipp Zabel <[email protected]>
10399 L:      [email protected]
10400 S:      Maintained
10401 T:      git git://linuxtv.org/media_tree.git
10402 F:      drivers/media/platform/imx-pxp.[ch]
10403
10404 MEDIA DRIVERS FOR ASCOT2E
10405 M:      Sergey Kozlov <[email protected]>
10406 M:      Abylay Ospan <[email protected]>
10407 L:      [email protected]
10408 S:      Supported
10409 W:      https://linuxtv.org
10410 W:      http://netup.tv/
10411 T:      git git://linuxtv.org/media_tree.git
10412 F:      drivers/media/dvb-frontends/ascot2e*
10413
10414 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10415 M:      Jasmin Jessich <[email protected]>
10416 L:      [email protected]
10417 S:      Maintained
10418 W:      https://linuxtv.org
10419 T:      git git://linuxtv.org/media_tree.git
10420 F:      drivers/media/dvb-frontends/cxd2099*
10421
10422 MEDIA DRIVERS FOR CXD2841ER
10423 M:      Sergey Kozlov <[email protected]>
10424 M:      Abylay Ospan <[email protected]>
10425 L:      [email protected]
10426 S:      Supported
10427 W:      https://linuxtv.org
10428 W:      http://netup.tv/
10429 T:      git git://linuxtv.org/media_tree.git
10430 F:      drivers/media/dvb-frontends/cxd2841er*
10431
10432 MEDIA DRIVERS FOR CXD2880
10433 M:      Yasunari Takiguchi <[email protected]>
10434 L:      [email protected]
10435 S:      Supported
10436 W:      http://linuxtv.org/
10437 T:      git git://linuxtv.org/media_tree.git
10438 F:      drivers/media/dvb-frontends/cxd2880/*
10439 F:      drivers/media/spi/cxd2880*
10440
10441 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10442 L:      [email protected]
10443 S:      Orphan
10444 W:      https://linuxtv.org
10445 T:      git git://linuxtv.org/media_tree.git
10446 F:      drivers/media/pci/ddbridge/*
10447
10448 MEDIA DRIVERS FOR FREESCALE IMX
10449 M:      Steve Longerbeam <[email protected]>
10450 M:      Philipp Zabel <[email protected]>
10451 L:      [email protected]
10452 S:      Maintained
10453 T:      git git://linuxtv.org/media_tree.git
10454 F:      Documentation/devicetree/bindings/media/imx.txt
10455 F:      Documentation/media/v4l-drivers/imx.rst
10456 F:      drivers/staging/media/imx/
10457 F:      include/linux/imx-media.h
10458 F:      include/media/imx.h
10459
10460 MEDIA DRIVERS FOR FREESCALE IMX7
10461 M:      Rui Miguel Silva <[email protected]>
10462 L:      [email protected]
10463 S:      Maintained
10464 T:      git git://linuxtv.org/media_tree.git
10465 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10466 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10467 F:      Documentation/media/v4l-drivers/imx7.rst
10468 F:      drivers/staging/media/imx/imx7-media-csi.c
10469 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10470
10471 MEDIA DRIVERS FOR HELENE
10472 M:      Abylay Ospan <[email protected]>
10473 L:      [email protected]
10474 S:      Supported
10475 W:      https://linuxtv.org
10476 W:      http://netup.tv/
10477 T:      git git://linuxtv.org/media_tree.git
10478 F:      drivers/media/dvb-frontends/helene*
10479
10480 MEDIA DRIVERS FOR HORUS3A
10481 M:      Sergey Kozlov <[email protected]>
10482 M:      Abylay Ospan <[email protected]>
10483 L:      [email protected]
10484 S:      Supported
10485 W:      https://linuxtv.org
10486 W:      http://netup.tv/
10487 T:      git git://linuxtv.org/media_tree.git
10488 F:      drivers/media/dvb-frontends/horus3a*
10489
10490 MEDIA DRIVERS FOR LNBH25
10491 M:      Sergey Kozlov <[email protected]>
10492 M:      Abylay Ospan <[email protected]>
10493 L:      [email protected]
10494 S:      Supported
10495 W:      https://linuxtv.org
10496 W:      http://netup.tv/
10497 T:      git git://linuxtv.org/media_tree.git
10498 F:      drivers/media/dvb-frontends/lnbh25*
10499
10500 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10501 L:      [email protected]
10502 S:      Orphan
10503 W:      https://linuxtv.org
10504 T:      git git://linuxtv.org/media_tree.git
10505 F:      drivers/media/dvb-frontends/mxl5xx*
10506
10507 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10508 M:      Sergey Kozlov <[email protected]>
10509 M:      Abylay Ospan <[email protected]>
10510 L:      [email protected]
10511 S:      Supported
10512 W:      https://linuxtv.org
10513 W:      http://netup.tv/
10514 T:      git git://linuxtv.org/media_tree.git
10515 F:      drivers/media/pci/netup_unidvb/*
10516
10517 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10518 M:      Dmitry Osipenko <[email protected]>
10519 L:      [email protected]
10520 L:      [email protected]
10521 S:      Maintained
10522 T:      git git://linuxtv.org/media_tree.git
10523 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10524 F:      drivers/staging/media/tegra-vde/
10525
10526 MEDIA DRIVERS FOR RENESAS - CEU
10527 M:      Jacopo Mondi <[email protected]>
10528 L:      [email protected]
10529 L:      [email protected]
10530 S:      Supported
10531 T:      git git://linuxtv.org/media_tree.git
10532 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10533 F:      drivers/media/platform/renesas-ceu.c
10534 F:      include/media/drv-intf/renesas-ceu.h
10535
10536 MEDIA DRIVERS FOR RENESAS - DRIF
10537 M:      Ramesh Shanmugasundaram <[email protected]>
10538 L:      [email protected]
10539 L:      [email protected]
10540 S:      Supported
10541 T:      git git://linuxtv.org/media_tree.git
10542 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10543 F:      drivers/media/platform/rcar_drif.c
10544
10545 MEDIA DRIVERS FOR RENESAS - FCP
10546 M:      Laurent Pinchart <[email protected]>
10547 L:      [email protected]
10548 L:      [email protected]
10549 S:      Supported
10550 T:      git git://linuxtv.org/media_tree.git
10551 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10552 F:      drivers/media/platform/rcar-fcp.c
10553 F:      include/media/rcar-fcp.h
10554
10555 MEDIA DRIVERS FOR RENESAS - FDP1
10556 M:      Kieran Bingham <[email protected]>
10557 L:      [email protected]
10558 L:      [email protected]
10559 S:      Supported
10560 T:      git git://linuxtv.org/media_tree.git
10561 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10562 F:      drivers/media/platform/rcar_fdp1.c
10563
10564 MEDIA DRIVERS FOR RENESAS - VIN
10565 M:      Niklas Söderlund <[email protected]>
10566 L:      [email protected]
10567 L:      [email protected]
10568 S:      Supported
10569 T:      git git://linuxtv.org/media_tree.git
10570 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10571 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10572 F:      drivers/media/platform/rcar-vin/
10573
10574 MEDIA DRIVERS FOR RENESAS - VSP1
10575 M:      Laurent Pinchart <[email protected]>
10576 M:      Kieran Bingham <[email protected]>
10577 L:      [email protected]
10578 L:      [email protected]
10579 S:      Supported
10580 T:      git git://linuxtv.org/media_tree.git
10581 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10582 F:      drivers/media/platform/vsp1/
10583
10584 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10585 L:      [email protected]
10586 S:      Orphan
10587 W:      https://linuxtv.org
10588 T:      git git://linuxtv.org/media_tree.git
10589 F:      drivers/media/dvb-frontends/stv0910*
10590
10591 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10592 L:      [email protected]
10593 S:      Orphan
10594 W:      https://linuxtv.org
10595 T:      git git://linuxtv.org/media_tree.git
10596 F:      drivers/media/dvb-frontends/stv6111*
10597
10598 MEDIA DRIVERS FOR STM32 - DCMI
10599 M:      Hugues Fruchet <[email protected]>
10600 L:      [email protected]
10601 S:      Supported
10602 T:      git git://linuxtv.org/media_tree.git
10603 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10604 F:      drivers/media/platform/stm32/stm32-dcmi.c
10605
10606 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10607 M:      Mauro Carvalho Chehab <[email protected]>
10608 L:      [email protected]
10609 S:      Maintained
10610 W:      https://linuxtv.org
10611 Q:      http://patchwork.kernel.org/project/linux-media/list/
10612 T:      git git://linuxtv.org/media_tree.git
10613 F:      Documentation/devicetree/bindings/media/
10614 F:      Documentation/media/
10615 F:      drivers/media/
10616 F:      drivers/staging/media/
10617 F:      include/linux/platform_data/media/
10618 F:      include/media/
10619 F:      include/uapi/linux/dvb/
10620 F:      include/uapi/linux/ivtv*
10621 F:      include/uapi/linux/media.h
10622 F:      include/uapi/linux/meye.h
10623 F:      include/uapi/linux/uvcvideo.h
10624 F:      include/uapi/linux/v4l2-*
10625 F:      include/uapi/linux/videodev2.h
10626
10627 MEDIATEK BLUETOOTH DRIVER
10628 M:      Sean Wang <[email protected]>
10629 L:      [email protected]
10630 L:      [email protected] (moderated for non-subscribers)
10631 S:      Maintained
10632 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10633 F:      drivers/bluetooth/btmtkuart.c
10634
10635 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10636 M:      Sean Wang <[email protected]>
10637 L:      [email protected]
10638 S:      Maintained
10639 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10640 F:      drivers/power/reset/mt6323-poweroff.c
10641
10642 MEDIATEK CIR DRIVER
10643 M:      Sean Wang <[email protected]>
10644 S:      Maintained
10645 F:      drivers/media/rc/mtk-cir.c
10646
10647 MEDIATEK DMA DRIVER
10648 M:      Sean Wang <[email protected]>
10649 L:      [email protected]
10650 L:      [email protected] (moderated for non-subscribers)
10651 L:      [email protected] (moderated for non-subscribers)
10652 S:      Maintained
10653 F:      Documentation/devicetree/bindings/dma/mtk-*
10654 F:      drivers/dma/mediatek/
10655
10656 MEDIATEK ETHERNET DRIVER
10657 M:      Felix Fietkau <[email protected]>
10658 M:      John Crispin <[email protected]>
10659 M:      Sean Wang <[email protected]>
10660 M:      Mark Lee <[email protected]>
10661 L:      [email protected]
10662 S:      Maintained
10663 F:      drivers/net/ethernet/mediatek/
10664
10665 MEDIATEK JPEG DRIVER
10666 M:      Rick Chang <[email protected]>
10667 M:      Bin Liu <[email protected]>
10668 S:      Supported
10669 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10670 F:      drivers/media/platform/mtk-jpeg/
10671
10672 MEDIATEK MDP DRIVER
10673 M:      Minghsiu Tsai <[email protected]>
10674 M:      Houlong Wei <[email protected]>
10675 M:      Andrew-CT Chen <[email protected]>
10676 S:      Supported
10677 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10678 F:      drivers/media/platform/mtk-mdp/
10679 F:      drivers/media/platform/mtk-vpu/
10680
10681 MEDIATEK MEDIA DRIVER
10682 M:      Tiffany Lin <[email protected]>
10683 M:      Andrew-CT Chen <[email protected]>
10684 S:      Supported
10685 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10686 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10687 F:      drivers/media/platform/mtk-vcodec/
10688 F:      drivers/media/platform/mtk-vpu/
10689
10690 MEDIATEK MMC/SD/SDIO DRIVER
10691 M:      Chaotian Jing <[email protected]>
10692 S:      Maintained
10693 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10694 F:      drivers/mmc/host/mtk-sd.c
10695
10696 MEDIATEK MT76 WIRELESS LAN DRIVER
10697 M:      Felix Fietkau <[email protected]>
10698 M:      Lorenzo Bianconi <[email protected]>
10699 R:      Ryder Lee <[email protected]>
10700 R:      Roy Luo <[email protected]>
10701 L:      [email protected]
10702 S:      Maintained
10703 F:      drivers/net/wireless/mediatek/mt76/
10704
10705 MEDIATEK MT7601U WIRELESS LAN DRIVER
10706 M:      Jakub Kicinski <[email protected]>
10707 L:      [email protected]
10708 S:      Maintained
10709 F:      drivers/net/wireless/mediatek/mt7601u/
10710
10711 MEDIATEK MT7621/28/88 I2C DRIVER
10712 M:      Stefan Roese <[email protected]>
10713 L:      [email protected]
10714 S:      Maintained
10715 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10716 F:      drivers/i2c/busses/i2c-mt7621.c
10717
10718 MEDIATEK NAND CONTROLLER DRIVER
10719 M:      Xiaolei Li <[email protected]>
10720 L:      [email protected]
10721 S:      Maintained
10722 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10723 F:      drivers/mtd/nand/raw/mtk_*
10724
10725 MEDIATEK PMIC LED DRIVER
10726 M:      Sean Wang <[email protected]>
10727 S:      Maintained
10728 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10729 F:      drivers/leds/leds-mt6323.c
10730
10731 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10732 M:      Sean Wang <[email protected]>
10733 S:      Maintained
10734 F:      drivers/char/hw_random/mtk-rng.c
10735
10736 MEDIATEK SWITCH DRIVER
10737 M:      Sean Wang <[email protected]>
10738 L:      [email protected]
10739 S:      Maintained
10740 F:      drivers/net/dsa/mt7530.*
10741 F:      net/dsa/tag_mtk.c
10742
10743 MEDIATEK USB3 DRD IP DRIVER
10744 M:      Chunfeng Yun <[email protected]>
10745 L:      [email protected] (moderated for non-subscribers)
10746 L:      [email protected] (moderated for non-subscribers)
10747 L:      [email protected] (moderated for non-subscribers)
10748 S:      Maintained
10749 F:      drivers/usb/mtu3/
10750
10751 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10752 M:      Peter Senna Tschudin <[email protected]>
10753 M:      Martin Donnelly <[email protected]>
10754 M:      Martyn Welch <[email protected]>
10755 S:      Maintained
10756 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10757 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10758
10759 MEGARAID SCSI/SAS DRIVERS
10760 M:      Kashyap Desai <[email protected]>
10761 M:      Sumit Saxena <[email protected]>
10762 M:      Shivasharan S <[email protected]>
10763 L:      [email protected]
10764 L:      [email protected]
10765 S:      Maintained
10766 W:      http://www.avagotech.com/support/
10767 F:      Documentation/scsi/megaraid.rst
10768 F:      drivers/scsi/megaraid.*
10769 F:      drivers/scsi/megaraid/
10770
10771 MELEXIS MLX90614 DRIVER
10772 M:      Crt Mori <[email protected]>
10773 L:      [email protected]
10774 S:      Supported
10775 W:      http://www.melexis.com
10776 F:      drivers/iio/temperature/mlx90614.c
10777
10778 MELEXIS MLX90632 DRIVER
10779 M:      Crt Mori <[email protected]>
10780 L:      [email protected]
10781 S:      Supported
10782 W:      http://www.melexis.com
10783 F:      drivers/iio/temperature/mlx90632.c
10784
10785 MELFAS MIP4 TOUCHSCREEN DRIVER
10786 M:      Sangwon Jee <[email protected]>
10787 S:      Supported
10788 W:      http://www.melfas.com
10789 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10790 F:      drivers/input/touchscreen/melfas_mip4.c
10791
10792 MELLANOX ETHERNET DRIVER (mlx4_en)
10793 M:      Tariq Toukan <[email protected]>
10794 L:      [email protected]
10795 S:      Supported
10796 W:      http://www.mellanox.com
10797 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10798 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10799
10800 MELLANOX ETHERNET DRIVER (mlx5e)
10801 M:      Saeed Mahameed <[email protected]>
10802 L:      [email protected]
10803 S:      Supported
10804 W:      http://www.mellanox.com
10805 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10806 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10807
10808 MELLANOX ETHERNET INNOVA DRIVERS
10809 R:      Boris Pismenny <[email protected]>
10810 L:      [email protected]
10811 S:      Supported
10812 W:      http://www.mellanox.com
10813 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10814 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10815 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10816 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10817 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10818
10819 MELLANOX ETHERNET SWITCH DRIVERS
10820 M:      Jiri Pirko <[email protected]>
10821 M:      Ido Schimmel <[email protected]>
10822 L:      [email protected]
10823 S:      Supported
10824 W:      http://www.mellanox.com
10825 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10826 F:      drivers/net/ethernet/mellanox/mlxsw/
10827 F:      tools/testing/selftests/drivers/net/mlxsw/
10828
10829 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10830 M:      [email protected]
10831 L:      [email protected]
10832 S:      Supported
10833 W:      http://www.mellanox.com
10834 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10835 F:      drivers/net/ethernet/mellanox/mlxfw/
10836
10837 MELLANOX HARDWARE PLATFORM SUPPORT
10838 M:      Andy Shevchenko <[email protected]>
10839 M:      Darren Hart <[email protected]>
10840 M:      Vadim Pasternak <[email protected]>
10841 L:      [email protected]
10842 S:      Supported
10843 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
10844 F:      drivers/platform/mellanox/
10845 F:      include/linux/platform_data/mlxreg.h
10846
10847 MELLANOX MLX4 core VPI driver
10848 M:      Tariq Toukan <[email protected]>
10849 L:      [email protected]
10850 L:      [email protected]
10851 S:      Supported
10852 W:      http://www.mellanox.com
10853 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10854 F:      drivers/net/ethernet/mellanox/mlx4/
10855 F:      include/linux/mlx4/
10856
10857 MELLANOX MLX4 IB driver
10858 M:      Yishai Hadas <[email protected]>
10859 L:      [email protected]
10860 S:      Supported
10861 W:      http://www.mellanox.com
10862 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10863 F:      drivers/infiniband/hw/mlx4/
10864 F:      include/linux/mlx4/
10865 F:      include/uapi/rdma/mlx4-abi.h
10866
10867 MELLANOX MLX5 core VPI driver
10868 M:      Saeed Mahameed <[email protected]>
10869 M:      Leon Romanovsky <[email protected]>
10870 L:      [email protected]
10871 L:      [email protected]
10872 S:      Supported
10873 W:      http://www.mellanox.com
10874 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10875 F:      Documentation/networking/device_drivers/mellanox/
10876 F:      drivers/net/ethernet/mellanox/mlx5/core/
10877 F:      include/linux/mlx5/
10878
10879 MELLANOX MLX5 IB driver
10880 M:      Leon Romanovsky <[email protected]>
10881 L:      [email protected]
10882 S:      Supported
10883 W:      http://www.mellanox.com
10884 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10885 F:      drivers/infiniband/hw/mlx5/
10886 F:      include/linux/mlx5/
10887 F:      include/uapi/rdma/mlx5-abi.h
10888
10889 MELLANOX MLXCPLD I2C AND MUX DRIVER
10890 M:      Vadim Pasternak <[email protected]>
10891 M:      Michael Shych <[email protected]>
10892 L:      [email protected]
10893 S:      Supported
10894 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10895 F:      drivers/i2c/busses/i2c-mlxcpld.c
10896 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10897
10898 MELLANOX MLXCPLD LED DRIVER
10899 M:      Vadim Pasternak <[email protected]>
10900 L:      [email protected]
10901 S:      Supported
10902 F:      Documentation/leds/leds-mlxcpld.rst
10903 F:      drivers/leds/leds-mlxcpld.c
10904 F:      drivers/leds/leds-mlxreg.c
10905
10906 MELLANOX PLATFORM DRIVER
10907 M:      Vadim Pasternak <[email protected]>
10908 L:      [email protected]
10909 S:      Supported
10910 F:      drivers/platform/x86/mlx-platform.c
10911
10912 MEMBARRIER SUPPORT
10913 M:      Mathieu Desnoyers <[email protected]>
10914 M:      "Paul E. McKenney" <[email protected]>
10915 L:      [email protected]
10916 S:      Supported
10917 F:      arch/powerpc/include/asm/membarrier.h
10918 F:      include/uapi/linux/membarrier.h
10919 F:      kernel/sched/membarrier.c
10920
10921 MEMBLOCK
10922 M:      Mike Rapoport <[email protected]>
10923 L:      [email protected]
10924 S:      Maintained
10925 F:      Documentation/core-api/boot-time-mm.rst
10926 F:      include/linux/memblock.h
10927 F:      mm/memblock.c
10928
10929 MEMORY MANAGEMENT
10930 M:      Andrew Morton <[email protected]>
10931 L:      [email protected]
10932 S:      Maintained
10933 W:      http://www.linux-mm.org
10934 T:      quilt https://ozlabs.org/~akpm/mmotm/
10935 T:      quilt https://ozlabs.org/~akpm/mmots/
10936 T:      git git://github.com/hnaz/linux-mm.git
10937 F:      include/linux/gfp.h
10938 F:      include/linux/memory_hotplug.h
10939 F:      include/linux/mm.h
10940 F:      include/linux/mmzone.h
10941 F:      include/linux/vmalloc.h
10942 F:      mm/
10943
10944 MEMORY TECHNOLOGY DEVICES (MTD)
10945 M:      Miquel Raynal <[email protected]>
10946 M:      Richard Weinberger <[email protected]>
10947 M:      Vignesh Raghavendra <[email protected]>
10948 L:      [email protected]
10949 S:      Maintained
10950 W:      http://www.linux-mtd.infradead.org/
10951 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10952 C:      irc://irc.oftc.net/mtd
10953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10955 F:      Documentation/devicetree/bindings/mtd/
10956 F:      drivers/mtd/
10957 F:      include/linux/mtd/
10958 F:      include/uapi/mtd/
10959
10960 MEN A21 WATCHDOG DRIVER
10961 M:      Johannes Thumshirn <[email protected]>
10962 L:      [email protected]
10963 S:      Maintained
10964 F:      drivers/watchdog/mena21_wdt.c
10965
10966 MEN CHAMELEON BUS (mcb)
10967 M:      Johannes Thumshirn <[email protected]>
10968 S:      Maintained
10969 F:      Documentation/driver-api/men-chameleon-bus.rst
10970 F:      drivers/mcb/
10971 F:      include/linux/mcb.h
10972
10973 MEN F21BMC (Board Management Controller)
10974 M:      Andreas Werner <[email protected]>
10975 S:      Supported
10976 F:      Documentation/hwmon/menf21bmc.rst
10977 F:      drivers/hwmon/menf21bmc_hwmon.c
10978 F:      drivers/leds/leds-menf21bmc.c
10979 F:      drivers/mfd/menf21bmc.c
10980 F:      drivers/watchdog/menf21bmc_wdt.c
10981
10982 MEN Z069 WATCHDOG DRIVER
10983 M:      Johannes Thumshirn <[email protected]>
10984 L:      [email protected]
10985 S:      Maintained
10986 F:      drivers/watchdog/menz69_wdt.c
10987
10988 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10989 M:      Neil Armstrong <[email protected]>
10990 L:      [email protected]
10991 L:      [email protected]
10992 S:      Supported
10993 W:      http://linux-meson.com/
10994 T:      git git://linuxtv.org/media_tree.git
10995 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
10996 F:      drivers/media/platform/meson/ao-cec-g12a.c
10997 F:      drivers/media/platform/meson/ao-cec.c
10998
10999 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11000 M:      Liang Yang <[email protected]>
11001 L:      [email protected]
11002 S:      Maintained
11003 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11004 F:      drivers/mtd/nand/raw/meson_*
11005
11006 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11007 M:      Maxime Jourdan <[email protected]>
11008 L:      [email protected]
11009 L:      [email protected]
11010 S:      Supported
11011 T:      git git://linuxtv.org/media_tree.git
11012 F:      drivers/staging/media/meson/vdec/
11013
11014 METHODE UDPU SUPPORT
11015 M:      Vladimir Vid <[email protected]>
11016 S:      Maintained
11017 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11018
11019 MHI BUS
11020 M:      Manivannan Sadhasivam <[email protected]>
11021 M:      Hemant Kumar <[email protected]>
11022 L:      [email protected]
11023 S:      Maintained
11024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11025 F:      Documentation/mhi/
11026 F:      drivers/bus/mhi/
11027 F:      include/linux/mhi.h
11028
11029 MICROBLAZE ARCHITECTURE
11030 M:      Michal Simek <[email protected]>
11031 S:      Supported
11032 W:      http://www.monstr.eu/fdt/
11033 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11034 F:      arch/microblaze/
11035
11036 MICROCHIP AT91 SERIAL DRIVER
11037 M:      Richard Genoud <[email protected]>
11038 S:      Maintained
11039 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11040 F:      drivers/tty/serial/atmel_serial.c
11041 F:      drivers/tty/serial/atmel_serial.h
11042
11043 MICROCHIP AT91 USART MFD DRIVER
11044 M:      Radu Pirea <[email protected]>
11045 L:      [email protected]
11046 S:      Supported
11047 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11048 F:      drivers/mfd/at91-usart.c
11049 F:      include/dt-bindings/mfd/at91-usart.h
11050
11051 MICROCHIP AT91 USART SPI DRIVER
11052 M:      Radu Pirea <[email protected]>
11053 L:      [email protected]
11054 S:      Supported
11055 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11056 F:      drivers/spi/spi-at91-usart.c
11057
11058 MICROCHIP AUDIO ASOC DRIVERS
11059 M:      Codrin Ciubotariu <[email protected]>
11060 L:      [email protected] (moderated for non-subscribers)
11061 S:      Supported
11062 F:      sound/soc/atmel
11063
11064 MICROCHIP DMA DRIVER
11065 M:      Ludovic Desroches <[email protected]>
11066 L:      [email protected] (moderated for non-subscribers)
11067 L:      [email protected]
11068 S:      Supported
11069 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11070 F:      drivers/dma/at_hdmac.c
11071 F:      drivers/dma/at_hdmac_regs.h
11072 F:      include/dt-bindings/dma/at91.h
11073 F:      include/linux/platform_data/dma-atmel.h
11074
11075 MICROCHIP ECC DRIVER
11076 M:      Tudor Ambarus <[email protected]>
11077 L:      [email protected]
11078 S:      Maintained
11079 F:      drivers/crypto/atmel-ecc.*
11080
11081 MICROCHIP I2C DRIVER
11082 M:      Ludovic Desroches <[email protected]>
11083 L:      [email protected]
11084 S:      Supported
11085 F:      drivers/i2c/busses/i2c-at91-*.c
11086 F:      drivers/i2c/busses/i2c-at91.h
11087
11088 MICROCHIP ISC DRIVER
11089 M:      Eugen Hristev <[email protected]>
11090 L:      [email protected]
11091 S:      Supported
11092 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11093 F:      drivers/media/platform/atmel/atmel-isc-base.c
11094 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11095 F:      drivers/media/platform/atmel/atmel-isc.h
11096 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11097 F:      include/linux/atmel-isc-media.h
11098
11099 MICROCHIP ISI DRIVER
11100 M:      Eugen Hristev <[email protected]>
11101 L:      [email protected]
11102 S:      Supported
11103 F:      drivers/media/platform/atmel/atmel-isi.c
11104 F:      drivers/media/platform/atmel/atmel-isi.h
11105
11106 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11107 M:      Woojung Huh <[email protected]>
11108 M:      Microchip Linux Driver Support <[email protected]>
11109 L:      [email protected]
11110 S:      Maintained
11111 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11112 F:      drivers/net/dsa/microchip/*
11113 F:      include/linux/platform_data/microchip-ksz.h
11114 F:      net/dsa/tag_ksz.c
11115
11116 MICROCHIP LAN743X ETHERNET DRIVER
11117 M:      Bryan Whitehead <[email protected]>
11118 M:      Microchip Linux Driver Support <[email protected]>
11119 L:      [email protected]
11120 S:      Maintained
11121 F:      drivers/net/ethernet/microchip/lan743x_*
11122
11123 MICROCHIP LCDFB DRIVER
11124 M:      Nicolas Ferre <[email protected]>
11125 L:      [email protected]
11126 S:      Maintained
11127 F:      drivers/video/fbdev/atmel_lcdfb.c
11128 F:      include/video/atmel_lcdc.h
11129
11130 MICROCHIP MCP16502 PMIC DRIVER
11131 M:      Andrei Stefanescu <[email protected]>
11132 L:      [email protected] (moderated for non-subscribers)
11133 S:      Maintained
11134 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11135 F:      drivers/regulator/mcp16502.c
11136
11137 MICROCHIP MCP3911 ADC DRIVER
11138 M:      Marcus Folkesson <[email protected]>
11139 M:      Kent Gustavsson <[email protected]>
11140 L:      [email protected]
11141 S:      Supported
11142 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11143 F:      drivers/iio/adc/mcp3911.c
11144
11145 MICROCHIP MMC/SD/SDIO MCI DRIVER
11146 M:      Ludovic Desroches <[email protected]>
11147 S:      Maintained
11148 F:      drivers/mmc/host/atmel-mci.c
11149
11150 MICROCHIP NAND DRIVER
11151 M:      Tudor Ambarus <[email protected]>
11152 L:      [email protected]
11153 S:      Supported
11154 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11155 F:      drivers/mtd/nand/raw/atmel/*
11156
11157 MICROCHIP PWM DRIVER
11158 M:      Claudiu Beznea <[email protected]>
11159 L:      [email protected] (moderated for non-subscribers)
11160 L:      [email protected]
11161 S:      Supported
11162 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11163 F:      drivers/pwm/pwm-atmel.c
11164
11165 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11166 M:      Ludovic Desroches <[email protected]>
11167 M:      Eugen Hristev <[email protected]>
11168 L:      [email protected]
11169 S:      Supported
11170 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11171 F:      drivers/iio/adc/at91-sama5d2_adc.c
11172 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11173
11174 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11175 M:      Nicolas Ferre <[email protected]>
11176 S:      Supported
11177 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11178
11179 MICROCHIP SPI DRIVER
11180 M:      Nicolas Ferre <[email protected]>
11181 S:      Supported
11182 F:      drivers/spi/spi-atmel.*
11183
11184 MICROCHIP SSC DRIVER
11185 M:      Nicolas Ferre <[email protected]>
11186 L:      [email protected] (moderated for non-subscribers)
11187 S:      Supported
11188 F:      drivers/misc/atmel-ssc.c
11189 F:      include/linux/atmel-ssc.h
11190
11191 MICROCHIP USB251XB DRIVER
11192 M:      Richard Leitner <[email protected]>
11193 L:      [email protected]
11194 S:      Maintained
11195 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11196 F:      drivers/usb/misc/usb251xb.c
11197
11198 MICROCHIP USBA UDC DRIVER
11199 M:      Cristian Birsan <[email protected]>
11200 L:      [email protected] (moderated for non-subscribers)
11201 S:      Supported
11202 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11203
11204 MICROCHIP XDMA DRIVER
11205 M:      Ludovic Desroches <[email protected]>
11206 L:      [email protected]
11207 L:      [email protected]
11208 S:      Supported
11209 F:      drivers/dma/at_xdmac.c
11210
11211 MICROSEMI ETHERNET SWITCH DRIVER
11212 M:      Alexandre Belloni <[email protected]>
11213 M:      Microchip Linux Driver Support <[email protected]>
11214 L:      [email protected]
11215 S:      Supported
11216 F:      drivers/net/ethernet/mscc/
11217 F:      include/soc/mscc/ocelot*
11218
11219 MICROSEMI MIPS SOCS
11220 M:      Alexandre Belloni <[email protected]>
11221 M:      Microchip Linux Driver Support <[email protected]>
11222 L:      [email protected]
11223 S:      Supported
11224 F:      Documentation/devicetree/bindings/mips/mscc.txt
11225 F:      arch/mips/boot/dts/mscc/
11226 F:      arch/mips/configs/generic/board-ocelot.config
11227 F:      arch/mips/generic/board-ocelot.c
11228
11229 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11230 M:      Don Brace <[email protected]>
11231 L:      [email protected]
11232 L:      [email protected]
11233 S:      Supported
11234 F:      Documentation/scsi/smartpqi.rst
11235 F:      drivers/scsi/smartpqi/Kconfig
11236 F:      drivers/scsi/smartpqi/Makefile
11237 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11238 F:      include/linux/cciss*.h
11239 F:      include/uapi/linux/cciss*.h
11240
11241 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11242 M:      Chen Yu <[email protected]>
11243 L:      [email protected]
11244 S:      Supported
11245 F:      drivers/platform/x86/surfacepro3_button.c
11246
11247 MICROTEK X6 SCANNER
11248 M:      Oliver Neukum <[email protected]>
11249 S:      Maintained
11250 F:      drivers/usb/image/microtek.*
11251
11252 MIPS
11253 M:      Thomas Bogendoerfer <[email protected]>
11254 L:      [email protected]
11255 S:      Maintained
11256 W:      http://www.linux-mips.org/
11257 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11259 F:      Documentation/devicetree/bindings/mips/
11260 F:      Documentation/mips/
11261 F:      arch/mips/
11262 F:      drivers/platform/mips/
11263
11264 MIPS BOSTON DEVELOPMENT BOARD
11265 M:      Paul Burton <[email protected]>
11266 L:      [email protected]
11267 S:      Maintained
11268 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11269 F:      arch/mips/boot/dts/img/boston.dts
11270 F:      arch/mips/configs/generic/board-boston.config
11271 F:      drivers/clk/imgtec/clk-boston.c
11272 F:      include/dt-bindings/clock/boston-clock.h
11273
11274 MIPS GENERIC PLATFORM
11275 M:      Paul Burton <[email protected]>
11276 L:      [email protected]
11277 S:      Supported
11278 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11279 F:      arch/mips/generic/
11280 F:      arch/mips/tools/generic-board-config.sh
11281
11282 MIPS RINT INSTRUCTION EMULATION
11283 M:      Aleksandar Markovic <[email protected]>
11284 L:      [email protected]
11285 S:      Supported
11286 F:      arch/mips/math-emu/dp_rint.c
11287 F:      arch/mips/math-emu/sp_rint.c
11288
11289 MIPS/LOONGSON1 ARCHITECTURE
11290 M:      Keguang Zhang <[email protected]>
11291 L:      [email protected]
11292 S:      Maintained
11293 F:      arch/mips/include/asm/mach-loongson32/
11294 F:      arch/mips/loongson32/
11295 F:      drivers/*/*/*loongson1*
11296 F:      drivers/*/*loongson1*
11297
11298 MIPS/LOONGSON2EF ARCHITECTURE
11299 M:      Jiaxun Yang <[email protected]>
11300 L:      [email protected]
11301 S:      Maintained
11302 F:      arch/mips/include/asm/mach-loongson2ef/
11303 F:      arch/mips/loongson2ef/
11304 F:      drivers/*/*/*loongson2*
11305 F:      drivers/*/*loongson2*
11306
11307 MIPS/LOONGSON64 ARCHITECTURE
11308 M:      Huacai Chen <[email protected]>
11309 M:      Jiaxun Yang <[email protected]>
11310 L:      [email protected]
11311 S:      Maintained
11312 F:      arch/mips/include/asm/mach-loongson64/
11313 F:      arch/mips/loongson64/
11314 F:      drivers/*/*/*loongson3*
11315 F:      drivers/*/*loongson3*
11316 F:      drivers/irqchip/irq-loongson*
11317 F:      drivers/platform/mips/cpu_hwmon.c
11318
11319 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11320 M:      Hans Verkuil <[email protected]>
11321 L:      [email protected]
11322 S:      Odd Fixes
11323 W:      https://linuxtv.org
11324 T:      git git://linuxtv.org/media_tree.git
11325 F:      drivers/media/radio/radio-miropcm20*
11326
11327 MMP SUPPORT
11328 R:      Lubomir Rintel <[email protected]>
11329 L:      [email protected] (moderated for non-subscribers)
11330 S:      Odd Fixes
11331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11332 F:      arch/arm/boot/dts/mmp*
11333 F:      arch/arm/mach-mmp/
11334 F:      linux/soc/mmp/
11335
11336 MMP USB PHY DRIVERS
11337 R:      Lubomir Rintel <[email protected]>
11338 L:      [email protected] (moderated for non-subscribers)
11339 S:      Maintained
11340 F:      drivers/phy/marvell/phy-mmp3-usb.c
11341 F:      drivers/phy/marvell/phy-pxa-usb.c
11342
11343 MMU GATHER AND TLB INVALIDATION
11344 M:      Will Deacon <[email protected]>
11345 M:      "Aneesh Kumar K.V" <[email protected]>
11346 M:      Andrew Morton <[email protected]>
11347 M:      Nick Piggin <[email protected]>
11348 M:      Peter Zijlstra <[email protected]>
11349 L:      [email protected]
11350 L:      [email protected]
11351 S:      Maintained
11352 F:      arch/*/include/asm/tlb.h
11353 F:      include/asm-generic/tlb.h
11354 F:      mm/mmu_gather.c
11355
11356 MN88472 MEDIA DRIVER
11357 M:      Antti Palosaari <[email protected]>
11358 L:      [email protected]
11359 S:      Maintained
11360 W:      https://linuxtv.org
11361 W:      http://palosaari.fi/linux/
11362 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11363 F:      drivers/media/dvb-frontends/mn88472*
11364
11365 MN88473 MEDIA DRIVER
11366 M:      Antti Palosaari <[email protected]>
11367 L:      [email protected]
11368 S:      Maintained
11369 W:      https://linuxtv.org
11370 W:      http://palosaari.fi/linux/
11371 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11372 F:      drivers/media/dvb-frontends/mn88473*
11373
11374 MODULE SUPPORT
11375 M:      Jessica Yu <[email protected]>
11376 S:      Maintained
11377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11378 F:      include/linux/module.h
11379 F:      kernel/module.c
11380
11381 MONOLITHIC POWER SYSTEM PMIC DRIVER
11382 M:      Saravanan Sekar <[email protected]>
11383 S:      Maintained
11384 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11385 F:      drivers/regulator/mp5416.c
11386 F:      drivers/regulator/mpq7920.c
11387 F:      drivers/regulator/mpq7920.h
11388
11389 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11390 S:      Orphan
11391 W:      http://popies.net/meye/
11392 F:      Documentation/media/v4l-drivers/meye*
11393 F:      drivers/media/pci/meye/
11394 F:      include/uapi/linux/meye.h
11395
11396 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11397 M:      Jiri Slaby <[email protected]>
11398 S:      Maintained
11399 F:      Documentation/driver-api/serial/moxa-smartio.rst
11400 F:      drivers/tty/mxser.*
11401
11402 MR800 AVERMEDIA USB FM RADIO DRIVER
11403 M:      Alexey Klimov <[email protected]>
11404 L:      [email protected]
11405 S:      Maintained
11406 T:      git git://linuxtv.org/media_tree.git
11407 F:      drivers/media/radio/radio-mr800.c
11408
11409 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11410 M:      Alan Ott <[email protected]>
11411 L:      [email protected]
11412 S:      Maintained
11413 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11414 F:      drivers/net/ieee802154/mrf24j40.c
11415
11416 MSI LAPTOP SUPPORT
11417 M:      "Lee, Chun-Yi" <[email protected]>
11418 L:      [email protected]
11419 S:      Maintained
11420 F:      drivers/platform/x86/msi-laptop.c
11421
11422 MSI WMI SUPPORT
11423 L:      [email protected]
11424 S:      Orphan
11425 F:      drivers/platform/x86/msi-wmi.c
11426
11427 MSI001 MEDIA DRIVER
11428 M:      Antti Palosaari <[email protected]>
11429 L:      [email protected]
11430 S:      Maintained
11431 W:      https://linuxtv.org
11432 W:      http://palosaari.fi/linux/
11433 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11434 T:      git git://linuxtv.org/anttip/media_tree.git
11435 F:      drivers/media/tuners/msi001*
11436
11437 MSI2500 MEDIA DRIVER
11438 M:      Antti Palosaari <[email protected]>
11439 L:      [email protected]
11440 S:      Maintained
11441 W:      https://linuxtv.org
11442 W:      http://palosaari.fi/linux/
11443 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11444 T:      git git://linuxtv.org/anttip/media_tree.git
11445 F:      drivers/media/usb/msi2500/
11446
11447 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11448 M:      Robert Jarzmik <[email protected]>
11449 L:      [email protected]
11450 S:      Maintained
11451 F:      drivers/mtd/devices/docg3*
11452
11453 MT9M032 APTINA SENSOR DRIVER
11454 M:      Laurent Pinchart <[email protected]>
11455 L:      [email protected]
11456 S:      Maintained
11457 T:      git git://linuxtv.org/media_tree.git
11458 F:      drivers/media/i2c/mt9m032.c
11459 F:      include/media/i2c/mt9m032.h
11460
11461 MT9P031 APTINA CAMERA SENSOR
11462 M:      Laurent Pinchart <[email protected]>
11463 L:      [email protected]
11464 S:      Maintained
11465 T:      git git://linuxtv.org/media_tree.git
11466 F:      drivers/media/i2c/mt9p031.c
11467 F:      include/media/i2c/mt9p031.h
11468
11469 MT9T001 APTINA CAMERA SENSOR
11470 M:      Laurent Pinchart <[email protected]>
11471 L:      [email protected]
11472 S:      Maintained
11473 T:      git git://linuxtv.org/media_tree.git
11474 F:      drivers/media/i2c/mt9t001.c
11475 F:      include/media/i2c/mt9t001.h
11476
11477 MT9T112 APTINA CAMERA SENSOR
11478 M:      Jacopo Mondi <[email protected]>
11479 L:      [email protected]
11480 S:      Odd Fixes
11481 T:      git git://linuxtv.org/media_tree.git
11482 F:      drivers/media/i2c/mt9t112.c
11483 F:      include/media/i2c/mt9t112.h
11484
11485 MT9V032 APTINA CAMERA SENSOR
11486 M:      Laurent Pinchart <[email protected]>
11487 L:      [email protected]
11488 S:      Maintained
11489 T:      git git://linuxtv.org/media_tree.git
11490 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11491 F:      drivers/media/i2c/mt9v032.c
11492 F:      include/media/i2c/mt9v032.h
11493
11494 MT9V111 APTINA CAMERA SENSOR
11495 M:      Jacopo Mondi <[email protected]>
11496 L:      [email protected]
11497 S:      Maintained
11498 T:      git git://linuxtv.org/media_tree.git
11499 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11500 F:      drivers/media/i2c/mt9v111.c
11501
11502 MULTIFUNCTION DEVICES (MFD)
11503 M:      Lee Jones <[email protected]>
11504 S:      Supported
11505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11506 F:      Documentation/devicetree/bindings/mfd/
11507 F:      drivers/mfd/
11508 F:      include/dt-bindings/mfd/
11509 F:      include/linux/mfd/
11510
11511 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11512 S:      Orphan
11513 F:      drivers/mmc/host/mmc_spi.c
11514 F:      include/linux/spi/mmc_spi.h
11515
11516 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11517 M:      Ulf Hansson <[email protected]>
11518 L:      [email protected]
11519 S:      Maintained
11520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11521 F:      Documentation/devicetree/bindings/mmc/
11522 F:      drivers/mmc/
11523 F:      include/linux/mmc/
11524 F:      include/uapi/linux/mmc/
11525
11526 MULTIPLEXER SUBSYSTEM
11527 M:      Peter Rosin <[email protected]>
11528 S:      Maintained
11529 F:      Documentation/ABI/testing/sysfs-class-mux*
11530 F:      Documentation/devicetree/bindings/mux/
11531 F:      drivers/mux/
11532 F:      include/dt-bindings/mux/
11533 F:      include/linux/mux/
11534
11535 MULTITECH MULTIPORT CARD (ISICOM)
11536 S:      Orphan
11537 F:      drivers/tty/isicom.c
11538 F:      include/linux/isicom.h
11539
11540 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11541 M:      Bin Liu <[email protected]>
11542 L:      [email protected]
11543 S:      Maintained
11544 F:      drivers/usb/musb/
11545
11546 MXL301RF MEDIA DRIVER
11547 M:      Akihiro Tsukada <[email protected]>
11548 L:      [email protected]
11549 S:      Odd Fixes
11550 F:      drivers/media/tuners/mxl301rf*
11551
11552 MXL5007T MEDIA DRIVER
11553 M:      Michael Krufky <[email protected]>
11554 L:      [email protected]
11555 S:      Maintained
11556 W:      https://linuxtv.org
11557 W:      http://github.com/mkrufky
11558 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11559 T:      git git://linuxtv.org/mkrufky/tuners.git
11560 F:      drivers/media/tuners/mxl5007t.*
11561
11562 MXSFB DRM DRIVER
11563 M:      Marek Vasut <[email protected]>
11564 M:      Stefan Agner <[email protected]>
11565 L:      [email protected]
11566 S:      Supported
11567 T:      git git://anongit.freedesktop.org/drm/drm-misc
11568 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11569 F:      drivers/gpu/drm/mxsfb/
11570
11571 MYLEX DAC960 PCI RAID Controller
11572 M:      Hannes Reinecke <[email protected]>
11573 L:      [email protected]
11574 S:      Supported
11575 F:      drivers/scsi/myrb.*
11576 F:      drivers/scsi/myrs.*
11577
11578 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11579 M:      Chris Lee <[email protected]>
11580 L:      [email protected]
11581 S:      Supported
11582 W:      https://www.cspi.com/ethernet-products/support/downloads/
11583 F:      drivers/net/ethernet/myricom/myri10ge/
11584
11585 NAND FLASH SUBSYSTEM
11586 M:      Miquel Raynal <[email protected]>
11587 R:      Richard Weinberger <[email protected]>
11588 L:      [email protected]
11589 S:      Maintained
11590 W:      http://www.linux-mtd.infradead.org/
11591 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11592 C:      irc://irc.oftc.net/mtd
11593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11594 F:      drivers/mtd/nand/
11595 F:      include/linux/mtd/*nand*.h
11596
11597 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11598 M:      Daniel Mack <[email protected]>
11599 L:      [email protected] (moderated for non-subscribers)
11600 S:      Maintained
11601 W:      http://www.native-instruments.com
11602 F:      sound/usb/caiaq/
11603
11604 NATSEMI ETHERNET DRIVER (DP8381x)
11605 S:      Orphan
11606 F:      drivers/net/ethernet/natsemi/natsemi.c
11607
11608 NCR 5380 SCSI DRIVERS
11609 M:      Finn Thain <[email protected]>
11610 M:      Michael Schmitz <[email protected]>
11611 L:      [email protected]
11612 S:      Maintained
11613 F:      Documentation/scsi/g_NCR5380.rst
11614 F:      drivers/scsi/NCR5380.*
11615 F:      drivers/scsi/arm/cumana_1.c
11616 F:      drivers/scsi/arm/oak.c
11617 F:      drivers/scsi/atari_scsi.*
11618 F:      drivers/scsi/dmx3191d.c
11619 F:      drivers/scsi/g_NCR5380.*
11620 F:      drivers/scsi/mac_scsi.*
11621 F:      drivers/scsi/sun3_scsi.*
11622 F:      drivers/scsi/sun3_scsi_vme.c
11623
11624 NCSI LIBRARY
11625 M:      Samuel Mendoza-Jonas <[email protected]>
11626 S:      Maintained
11627 F:      net/ncsi/
11628
11629 NCT6775 HARDWARE MONITOR DRIVER
11630 M:      Guenter Roeck <[email protected]>
11631 L:      [email protected]
11632 S:      Maintained
11633 F:      Documentation/hwmon/nct6775.rst
11634 F:      drivers/hwmon/nct6775.c
11635
11636 NETDEVSIM
11637 M:      Jakub Kicinski <[email protected]>
11638 S:      Maintained
11639 F:      drivers/net/netdevsim/*
11640
11641 NETEM NETWORK EMULATOR
11642 M:      Stephen Hemminger <[email protected]>
11643 L:      [email protected]
11644 S:      Maintained
11645 F:      net/sched/sch_netem.c
11646
11647 NETERION 10GbE DRIVERS (s2io/vxge)
11648 M:      Jon Mason <[email protected]>
11649 L:      [email protected]
11650 S:      Supported
11651 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11652 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11653 F:      drivers/net/ethernet/neterion/
11654
11655 NETFILTER
11656 M:      Pablo Neira Ayuso <[email protected]>
11657 M:      Jozsef Kadlecsik <[email protected]>
11658 M:      Florian Westphal <[email protected]>
11659 L:      [email protected]
11660 L:      [email protected]
11661 S:      Maintained
11662 W:      http://www.netfilter.org/
11663 W:      http://www.iptables.org/
11664 W:      http://www.nftables.org/
11665 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11668 F:      include/linux/netfilter*
11669 F:      include/linux/netfilter/
11670 F:      include/net/netfilter/
11671 F:      include/uapi/linux/netfilter*
11672 F:      include/uapi/linux/netfilter/
11673 F:      net/*/netfilter.c
11674 F:      net/*/netfilter/
11675 F:      net/bridge/br_netfilter*.c
11676 F:      net/netfilter/
11677
11678 NETROM NETWORK LAYER
11679 M:      Ralf Baechle <[email protected]>
11680 L:      [email protected]
11681 S:      Maintained
11682 W:      http://www.linux-ax25.org/
11683 F:      include/net/netrom.h
11684 F:      include/uapi/linux/netrom.h
11685 F:      net/netrom/
11686
11687 NETRONOME ETHERNET DRIVERS
11688 M:      Jakub Kicinski <[email protected]>
11689 L:      [email protected]
11690 S:      Maintained
11691 F:      drivers/net/ethernet/netronome/
11692
11693 NETWORK BLOCK DEVICE (NBD)
11694 M:      Josef Bacik <[email protected]>
11695 L:      [email protected]
11696 L:      [email protected]
11697 S:      Maintained
11698 F:      Documentation/admin-guide/blockdev/nbd.rst
11699 F:      drivers/block/nbd.c
11700 F:      include/trace/events/nbd.h
11701 F:      include/uapi/linux/nbd.h
11702
11703 NETWORK DROP MONITOR
11704 M:      Neil Horman <[email protected]>
11705 L:      [email protected]
11706 S:      Maintained
11707 W:      https://fedorahosted.org/dropwatch/
11708 F:      include/net/drop_monitor.h
11709 F:      include/uapi/linux/net_dropmon.h
11710 F:      net/core/drop_monitor.c
11711
11712 NETWORKING DRIVERS
11713 M:      "David S. Miller" <[email protected]>
11714 L:      [email protected]
11715 S:      Odd Fixes
11716 W:      http://www.linuxfoundation.org/en/Net
11717 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11720 F:      Documentation/devicetree/bindings/net/
11721 F:      drivers/net/
11722 F:      include/linux/etherdevice.h
11723 F:      include/linux/fcdevice.h
11724 F:      include/linux/fddidevice.h
11725 F:      include/linux/hippidevice.h
11726 F:      include/linux/if_*
11727 F:      include/linux/inetdevice.h
11728 F:      include/linux/netdevice.h
11729 F:      include/uapi/linux/if_*
11730 F:      include/uapi/linux/netdevice.h
11731
11732 NETWORKING DRIVERS (WIRELESS)
11733 M:      Kalle Valo <[email protected]>
11734 L:      [email protected]
11735 S:      Maintained
11736 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11739 F:      Documentation/devicetree/bindings/net/wireless/
11740 F:      drivers/net/wireless/
11741
11742 NETWORKING [DSA]
11743 M:      Andrew Lunn <[email protected]>
11744 M:      Vivien Didelot <[email protected]>
11745 M:      Florian Fainelli <[email protected]>
11746 S:      Maintained
11747 F:      Documentation/devicetree/bindings/net/dsa/
11748 F:      drivers/net/dsa/
11749 F:      include/linux/dsa/
11750 F:      include/linux/platform_data/dsa.h
11751 F:      include/net/dsa.h
11752 F:      net/dsa/
11753
11754 NETWORKING [GENERAL]
11755 M:      "David S. Miller" <[email protected]>
11756 M:      Jakub Kicinski <[email protected]>
11757 L:      [email protected]
11758 S:      Maintained
11759 W:      http://www.linuxfoundation.org/en/Net
11760 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11761 B:      mailto:[email protected]
11762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11764 F:      Documentation/networking/
11765 F:      include/linux/in.h
11766 F:      include/linux/net.h
11767 F:      include/linux/netdevice.h
11768 F:      include/net/
11769 F:      include/uapi/linux/in.h
11770 F:      include/uapi/linux/net.h
11771 F:      include/uapi/linux/net_namespace.h
11772 F:      include/uapi/linux/netdevice.h
11773 F:      lib/net_utils.c
11774 F:      lib/random32.c
11775 F:      net/
11776 F:      tools/testing/selftests/net/
11777
11778 NETWORKING [IPSEC]
11779 M:      Steffen Klassert <[email protected]>
11780 M:      Herbert Xu <[email protected]>
11781 M:      "David S. Miller" <[email protected]>
11782 L:      [email protected]
11783 S:      Maintained
11784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11786 F:      include/net/xfrm.h
11787 F:      include/uapi/linux/xfrm.h
11788 F:      net/ipv4/ah4.c
11789 F:      net/ipv4/esp4*
11790 F:      net/ipv4/ip_vti.c
11791 F:      net/ipv4/ipcomp.c
11792 F:      net/ipv4/xfrm*
11793 F:      net/ipv6/ah6.c
11794 F:      net/ipv6/esp6*
11795 F:      net/ipv6/ip6_vti.c
11796 F:      net/ipv6/ipcomp6.c
11797 F:      net/ipv6/xfrm*
11798 F:      net/key/
11799 F:      net/xfrm/
11800
11801 NETWORKING [IPv4/IPv6]
11802 M:      "David S. Miller" <[email protected]>
11803 M:      Alexey Kuznetsov <[email protected]>
11804 M:      Hideaki YOSHIFUJI <[email protected]>
11805 L:      [email protected]
11806 S:      Maintained
11807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11808 F:      arch/x86/net/*
11809 F:      include/net/ip*
11810 F:      net/ipv4/
11811 F:      net/ipv6/
11812
11813 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11814 M:      Paul Moore <[email protected]>
11815 L:      [email protected]
11816 L:      [email protected]
11817 S:      Maintained
11818 W:      https://github.com/netlabel
11819 F:      Documentation/netlabel/
11820 F:      include/net/calipso.h
11821 F:      include/net/cipso_ipv4.h
11822 F:      include/net/netlabel.h
11823 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11824 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11825 F:      net/ipv4/cipso_ipv4.c
11826 F:      net/ipv6/calipso.c
11827 F:      net/netfilter/xt_CONNSECMARK.c
11828 F:      net/netfilter/xt_SECMARK.c
11829 F:      net/netlabel/
11830
11831 NETWORKING [MPTCP]
11832 M:      Mat Martineau <[email protected]>
11833 M:      Matthieu Baerts <[email protected]>
11834 L:      [email protected]
11835 L:      [email protected]
11836 S:      Maintained
11837 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
11838 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
11839 F:      include/net/mptcp.h
11840 F:      include/uapi/linux/mptcp.h
11841 F:      net/mptcp/
11842 F:      tools/testing/selftests/net/mptcp/
11843
11844 NETWORKING [TCP]
11845 M:      Eric Dumazet <[email protected]>
11846 L:      [email protected]
11847 S:      Maintained
11848 F:      include/linux/tcp.h
11849 F:      include/net/tcp.h
11850 F:      include/trace/events/tcp.h
11851 F:      include/uapi/linux/tcp.h
11852 F:      net/ipv4/syncookies.c
11853 F:      net/ipv4/tcp*.c
11854 F:      net/ipv6/syncookies.c
11855 F:      net/ipv6/tcp*.c
11856
11857 NETWORKING [TLS]
11858 M:      Boris Pismenny <[email protected]>
11859 M:      Aviad Yehezkel <[email protected]>
11860 M:      John Fastabend <[email protected]>
11861 M:      Daniel Borkmann <[email protected]>
11862 M:      Jakub Kicinski <[email protected]>
11863 L:      [email protected]
11864 S:      Maintained
11865 F:      include/net/tls.h
11866 F:      include/uapi/linux/tls.h
11867 F:      net/tls/*
11868
11869 NETWORKING [WIRELESS]
11870 L:      [email protected]
11871 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11872
11873 NETXEN (1/10) GbE SUPPORT
11874 M:      Manish Chopra <[email protected]>
11875 M:      Rahul Verma <[email protected]>
11876 M:      [email protected]
11877 L:      [email protected]
11878 S:      Supported
11879 F:      drivers/net/ethernet/qlogic/netxen/
11880
11881 NET_FAILOVER MODULE
11882 M:      Sridhar Samudrala <[email protected]>
11883 L:      [email protected]
11884 S:      Supported
11885 F:      Documentation/networking/net_failover.rst
11886 F:      drivers/net/net_failover.c
11887 F:      include/net/net_failover.h
11888
11889 NEXTHOP
11890 M:      David Ahern <[email protected]>
11891 L:      [email protected]
11892 S:      Maintained
11893 F:      include/net/netns/nexthop.h
11894 F:      include/net/nexthop.h
11895 F:      include/uapi/linux/nexthop.h
11896 F:      net/ipv4/nexthop.c
11897
11898 NFC SUBSYSTEM
11899 L:      [email protected]
11900 S:      Orphan
11901 F:      Documentation/devicetree/bindings/net/nfc/
11902 F:      drivers/nfc/
11903 F:      include/linux/platform_data/nfcmrvl.h
11904 F:      include/net/nfc/
11905 F:      include/uapi/linux/nfc.h
11906 F:      net/nfc/
11907
11908 NFS, SUNRPC, AND LOCKD CLIENTS
11909 M:      Trond Myklebust <[email protected]>
11910 M:      Anna Schumaker <[email protected]>
11911 L:      [email protected]
11912 S:      Maintained
11913 W:      http://client.linux-nfs.org
11914 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11915 F:      fs/lockd/
11916 F:      fs/nfs/
11917 F:      fs/nfs_common/
11918 F:      include/linux/lockd/
11919 F:      include/linux/nfs*
11920 F:      include/linux/sunrpc/
11921 F:      include/uapi/linux/nfs*
11922 F:      include/uapi/linux/sunrpc/
11923 F:      net/sunrpc/
11924
11925 NILFS2 FILESYSTEM
11926 M:      Ryusuke Konishi <[email protected]>
11927 L:      [email protected]
11928 S:      Supported
11929 W:      https://nilfs.sourceforge.io/
11930 W:      https://nilfs.osdn.jp/
11931 T:      git git://github.com/konis/nilfs2.git
11932 F:      Documentation/filesystems/nilfs2.rst
11933 F:      fs/nilfs2/
11934 F:      include/trace/events/nilfs2.h
11935 F:      include/uapi/linux/nilfs2_api.h
11936 F:      include/uapi/linux/nilfs2_ondisk.h
11937
11938 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11939 M:      YOKOTA Hiroshi <[email protected]>
11940 S:      Maintained
11941 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11942 F:      Documentation/scsi/NinjaSCSI.rst
11943 F:      drivers/scsi/pcmcia/nsp_*
11944
11945 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11946 M:      GOTO Masanori <[email protected]>
11947 M:      YOKOTA Hiroshi <[email protected]>
11948 S:      Maintained
11949 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11950 F:      Documentation/scsi/NinjaSCSI.rst
11951 F:      drivers/scsi/nsp32*
11952
11953 NIOS2 ARCHITECTURE
11954 M:      Ley Foon Tan <[email protected]>
11955 S:      Maintained
11956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11957 F:      arch/nios2/
11958
11959 NOHZ, DYNTICKS SUPPORT
11960 M:      Frederic Weisbecker <[email protected]>
11961 M:      Thomas Gleixner <[email protected]>
11962 M:      Ingo Molnar <[email protected]>
11963 L:      [email protected]
11964 S:      Maintained
11965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11966 F:      include/linux/sched/nohz.h
11967 F:      include/linux/tick.h
11968 F:      kernel/time/tick*.*
11969
11970 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11971 M:      Pavel Machek <[email protected]>
11972 M:      Sakari Ailus <[email protected]>
11973 L:      [email protected]
11974 S:      Maintained
11975 F:      drivers/media/i2c/ad5820.c
11976 F:      drivers/media/i2c/et8ek8
11977
11978 NOKIA N900 POWER SUPPLY DRIVERS
11979 R:      Pali Rohár <[email protected]>
11980 F:      drivers/power/supply/bq2415x_charger.c
11981 F:      drivers/power/supply/bq27xxx_battery.c
11982 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11983 F:      drivers/power/supply/isp1704_charger.c
11984 F:      drivers/power/supply/rx51_battery.c
11985 F:      include/linux/power/bq2415x_charger.h
11986 F:      include/linux/power/bq27xxx_battery.h
11987
11988 NOLIBC HEADER FILE
11989 M:      Willy Tarreau <[email protected]>
11990 S:      Maintained
11991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11992 F:      tools/include/nolibc/
11993
11994 NSDEPS
11995 M:      Matthias Maennich <[email protected]>
11996 S:      Maintained
11997 F:      Documentation/core-api/symbol-namespaces.rst
11998 F:      scripts/nsdeps
11999
12000 NTB AMD DRIVER
12001 M:      Sanjay R Mehta <[email protected]>
12002 M:      Shyam Sundar S K <[email protected]>
12003 L:      [email protected]
12004 S:      Supported
12005 F:      drivers/ntb/hw/amd/
12006
12007 NTB DRIVER CORE
12008 M:      Jon Mason <[email protected]>
12009 M:      Dave Jiang <[email protected]>
12010 M:      Allen Hubbe <[email protected]>
12011 L:      [email protected]
12012 S:      Supported
12013 W:      https://github.com/jonmason/ntb/wiki
12014 T:      git git://github.com/jonmason/ntb.git
12015 F:      drivers/net/ntb_netdev.c
12016 F:      drivers/ntb/
12017 F:      include/linux/ntb.h
12018 F:      include/linux/ntb_transport.h
12019 F:      tools/testing/selftests/ntb/
12020
12021 NTB IDT DRIVER
12022 M:      Serge Semin <[email protected]>
12023 L:      [email protected]
12024 S:      Supported
12025 F:      drivers/ntb/hw/idt/
12026
12027 NTB INTEL DRIVER
12028 M:      Dave Jiang <[email protected]>
12029 L:      [email protected]
12030 S:      Supported
12031 W:      https://github.com/davejiang/linux/wiki
12032 T:      git https://github.com/davejiang/linux.git
12033 F:      drivers/ntb/hw/intel/
12034
12035 NTFS FILESYSTEM
12036 M:      Anton Altaparmakov <[email protected]>
12037 L:      [email protected]
12038 S:      Supported
12039 W:      http://www.tuxera.com/
12040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12041 F:      Documentation/filesystems/ntfs.rst
12042 F:      fs/ntfs/
12043
12044 NUBUS SUBSYSTEM
12045 M:      Finn Thain <[email protected]>
12046 L:      [email protected]
12047 S:      Maintained
12048 F:      arch/*/include/asm/nubus.h
12049 F:      drivers/nubus/
12050 F:      include/linux/nubus.h
12051 F:      include/uapi/linux/nubus.h
12052
12053 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12054 M:      Antonino Daplas <[email protected]>
12055 L:      [email protected]
12056 S:      Maintained
12057 F:      drivers/video/fbdev/nvidia/
12058 F:      drivers/video/fbdev/riva/
12059
12060 NVM EXPRESS DRIVER
12061 M:      Keith Busch <[email protected]>
12062 M:      Jens Axboe <[email protected]>
12063 M:      Christoph Hellwig <[email protected]>
12064 M:      Sagi Grimberg <[email protected]>
12065 L:      [email protected]
12066 S:      Supported
12067 W:      http://git.infradead.org/nvme.git
12068 T:      git://git.infradead.org/nvme.git
12069 F:      drivers/nvme/host/
12070 F:      include/linux/nvme.h
12071 F:      include/uapi/linux/nvme_ioctl.h
12072
12073 NVM EXPRESS FC TRANSPORT DRIVERS
12074 M:      James Smart <[email protected]>
12075 L:      [email protected]
12076 S:      Supported
12077 F:      drivers/nvme/host/fc.c
12078 F:      drivers/nvme/target/fc.c
12079 F:      drivers/nvme/target/fcloop.c
12080 F:      include/linux/nvme-fc-driver.h
12081 F:      include/linux/nvme-fc.h
12082
12083 NVM EXPRESS TARGET DRIVER
12084 M:      Christoph Hellwig <[email protected]>
12085 M:      Sagi Grimberg <[email protected]>
12086 M:      Chaitanya Kulkarni <[email protected]>
12087 L:      [email protected]
12088 S:      Supported
12089 W:      http://git.infradead.org/nvme.git
12090 T:      git://git.infradead.org/nvme.git
12091 F:      drivers/nvme/target/
12092
12093 NVMEM FRAMEWORK
12094 M:      Srinivas Kandagatla <[email protected]>
12095 S:      Maintained
12096 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12097 F:      Documentation/devicetree/bindings/nvmem/
12098 F:      drivers/nvmem/
12099 F:      include/linux/nvmem-consumer.h
12100 F:      include/linux/nvmem-provider.h
12101
12102 NXP FSPI DRIVER
12103 M:      Ashish Kumar <[email protected]>
12104 R:      Yogesh Gaur <[email protected]>
12105 L:      [email protected]
12106 S:      Maintained
12107 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12108 F:      drivers/spi/spi-nxp-fspi.c
12109
12110 NXP FXAS21002C DRIVER
12111 M:      Rui Miguel Silva <[email protected]>
12112 L:      [email protected]
12113 S:      Maintained
12114 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12115 F:      drivers/iio/gyro/fxas21002c.h
12116 F:      drivers/iio/gyro/fxas21002c_core.c
12117 F:      drivers/iio/gyro/fxas21002c_i2c.c
12118 F:      drivers/iio/gyro/fxas21002c_spi.c
12119
12120 NXP SGTL5000 DRIVER
12121 M:      Fabio Estevam <[email protected]>
12122 L:      [email protected] (moderated for non-subscribers)
12123 S:      Maintained
12124 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12125 F:      sound/soc/codecs/sgtl5000*
12126
12127 NXP SJA1105 ETHERNET SWITCH DRIVER
12128 M:      Vladimir Oltean <[email protected]>
12129 L:      [email protected]
12130 S:      Maintained
12131 F:      drivers/net/dsa/sja1105
12132
12133 NXP TDA998X DRM DRIVER
12134 M:      Russell King <[email protected]>
12135 S:      Maintained
12136 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12137 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12138 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12139 F:      include/drm/i2c/tda998x.h
12140 F:      include/dt-bindings/display/tda998x.h
12141 K:      "nxp,tda998x"
12142
12143 NXP TFA9879 DRIVER
12144 M:      Peter Rosin <[email protected]>
12145 L:      [email protected] (moderated for non-subscribers)
12146 S:      Maintained
12147 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12148 F:      sound/soc/codecs/tfa9879*
12149
12150 NXP-NCI NFC DRIVER
12151 M:      Clément Perrochaud <[email protected]>
12152 R:      Charles Gorand <[email protected]>
12153 L:      [email protected] (moderated for non-subscribers)
12154 S:      Supported
12155 F:      drivers/nfc/nxp-nci
12156
12157 OBJAGG
12158 M:      Jiri Pirko <[email protected]>
12159 L:      [email protected]
12160 S:      Supported
12161 F:      include/linux/objagg.h
12162 F:      lib/objagg.c
12163 F:      lib/test_objagg.c
12164
12165 OBJTOOL
12166 M:      Josh Poimboeuf <[email protected]>
12167 M:      Peter Zijlstra <[email protected]>
12168 S:      Supported
12169 F:      tools/objtool/
12170
12171 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12172 M:      Frederic Barrat <[email protected]>
12173 M:      Andrew Donnellan <[email protected]>
12174 L:      [email protected]
12175 S:      Supported
12176 F:      Documentation/userspace-api/accelerators/ocxl.rst
12177 F:      arch/powerpc/include/asm/pnv-ocxl.h
12178 F:      arch/powerpc/platforms/powernv/ocxl.c
12179 F:      drivers/misc/ocxl/
12180 F:      include/misc/ocxl*
12181 F:      include/uapi/misc/ocxl.h
12182
12183 OMAP AUDIO SUPPORT
12184 M:      Peter Ujfalusi <[email protected]>
12185 M:      Jarkko Nikula <[email protected]>
12186 L:      [email protected] (moderated for non-subscribers)
12187 L:      [email protected]
12188 S:      Maintained
12189 F:      sound/soc/ti/n810.c
12190 F:      sound/soc/ti/omap*
12191 F:      sound/soc/ti/rx51.c
12192 F:      sound/soc/ti/sdma-pcm.*
12193
12194 OMAP CLOCK FRAMEWORK SUPPORT
12195 M:      Paul Walmsley <[email protected]>
12196 L:      [email protected]
12197 S:      Maintained
12198 F:      arch/arm/*omap*/*clock*
12199
12200 OMAP DEVICE TREE SUPPORT
12201 M:      Benoît Cousson <[email protected]>
12202 M:      Tony Lindgren <[email protected]>
12203 L:      [email protected]
12204 L:      [email protected]
12205 S:      Maintained
12206 F:      arch/arm/boot/dts/*am3*
12207 F:      arch/arm/boot/dts/*am4*
12208 F:      arch/arm/boot/dts/*am5*
12209 F:      arch/arm/boot/dts/*dra7*
12210 F:      arch/arm/boot/dts/*omap*
12211 F:      arch/arm/boot/dts/logicpd-som-lv*
12212 F:      arch/arm/boot/dts/logicpd-torpedo*
12213
12214 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12215 L:      [email protected]
12216 L:      [email protected]
12217 S:      Orphan
12218 F:      Documentation/arm/omap/dss.rst
12219 F:      drivers/video/fbdev/omap2/
12220
12221 OMAP FRAMEBUFFER SUPPORT
12222 L:      [email protected]
12223 L:      [email protected]
12224 S:      Orphan
12225 F:      drivers/video/fbdev/omap/
12226
12227 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12228 M:      Roger Quadros <[email protected]>
12229 M:      Tony Lindgren <[email protected]>
12230 L:      [email protected]
12231 S:      Maintained
12232 F:      arch/arm/mach-omap2/*gpmc*
12233 F:      drivers/memory/omap-gpmc.c
12234
12235 OMAP GPIO DRIVER
12236 M:      Grygorii Strashko <[email protected]>
12237 M:      Santosh Shilimkar <[email protected]>
12238 M:      Kevin Hilman <[email protected]>
12239 L:      [email protected]
12240 S:      Maintained
12241 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12242 F:      drivers/gpio/gpio-omap.c
12243
12244 OMAP HARDWARE SPINLOCK SUPPORT
12245 M:      Ohad Ben-Cohen <[email protected]>
12246 L:      [email protected]
12247 S:      Maintained
12248 F:      drivers/hwspinlock/omap_hwspinlock.c
12249
12250 OMAP HS MMC SUPPORT
12251 L:      [email protected]
12252 L:      [email protected]
12253 S:      Orphan
12254 F:      drivers/mmc/host/omap_hsmmc.c
12255
12256 OMAP HWMOD DATA
12257 M:      Paul Walmsley <[email protected]>
12258 L:      [email protected]
12259 S:      Maintained
12260 F:      arch/arm/mach-omap2/omap_hwmod*data*
12261
12262 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12263 M:      Benoît Cousson <[email protected]>
12264 L:      [email protected]
12265 S:      Maintained
12266 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12267
12268 OMAP HWMOD SUPPORT
12269 M:      Benoît Cousson <[email protected]>
12270 M:      Paul Walmsley <[email protected]>
12271 L:      [email protected]
12272 S:      Maintained
12273 F:      arch/arm/mach-omap2/omap_hwmod.*
12274
12275 OMAP I2C DRIVER
12276 M:      Vignesh R <[email protected]>
12277 L:      [email protected]
12278 L:      [email protected]
12279 S:      Maintained
12280 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12281 F:      drivers/i2c/busses/i2c-omap.c
12282
12283 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12284 M:      Laurent Pinchart <[email protected]>
12285 L:      [email protected]
12286 S:      Maintained
12287 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12288 F:      drivers/media/platform/omap3isp/
12289 F:      drivers/staging/media/omap4iss/
12290
12291 OMAP MMC SUPPORT
12292 M:      Aaro Koskinen <[email protected]>
12293 L:      [email protected]
12294 S:      Odd Fixes
12295 F:      drivers/mmc/host/omap.c
12296
12297 OMAP POWER MANAGEMENT SUPPORT
12298 M:      Kevin Hilman <[email protected]>
12299 L:      [email protected]
12300 S:      Maintained
12301 F:      arch/arm/*omap*/*pm*
12302 F:      drivers/cpufreq/omap-cpufreq.c
12303
12304 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12305 M:      Rajendra Nayak <[email protected]>
12306 M:      Paul Walmsley <[email protected]>
12307 L:      [email protected]
12308 S:      Maintained
12309 F:      arch/arm/mach-omap2/prm*
12310
12311 OMAP RANDOM NUMBER GENERATOR SUPPORT
12312 M:      Deepak Saxena <[email protected]>
12313 S:      Maintained
12314 F:      drivers/char/hw_random/omap-rng.c
12315
12316 OMAP USB SUPPORT
12317 L:      [email protected]
12318 L:      [email protected]
12319 S:      Orphan
12320 F:      arch/arm/*omap*/usb*
12321 F:      drivers/usb/*/*omap*
12322
12323 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12324 M:      Mark Jackson <[email protected]>
12325 L:      [email protected]
12326 S:      Maintained
12327 F:      arch/arm/boot/dts/am335x-nano.dts
12328
12329 OMAP1 SUPPORT
12330 M:      Aaro Koskinen <[email protected]>
12331 M:      Tony Lindgren <[email protected]>
12332 L:      [email protected]
12333 S:      Maintained
12334 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12336 F:      arch/arm/configs/omap1_defconfig
12337 F:      arch/arm/mach-omap1/
12338 F:      arch/arm/plat-omap/
12339 F:      drivers/i2c/busses/i2c-omap.c
12340 F:      include/linux/platform_data/ams-delta-fiq.h
12341 F:      include/linux/platform_data/i2c-omap.h
12342
12343 OMAP2+ SUPPORT
12344 M:      Tony Lindgren <[email protected]>
12345 L:      [email protected]
12346 S:      Maintained
12347 W:      http://www.muru.com/linux/omap/
12348 W:      http://linux.omap.com/
12349 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12351 F:      arch/arm/configs/omap2plus_defconfig
12352 F:      arch/arm/mach-omap2/
12353 F:      arch/arm/plat-omap/
12354 F:      drivers/bus/ti-sysc.c
12355 F:      drivers/i2c/busses/i2c-omap.c
12356 F:      drivers/irqchip/irq-omap-intc.c
12357 F:      drivers/mfd/*omap*.c
12358 F:      drivers/mfd/menelaus.c
12359 F:      drivers/mfd/palmas.c
12360 F:      drivers/mfd/tps65217.c
12361 F:      drivers/mfd/tps65218.c
12362 F:      drivers/mfd/tps65910.c
12363 F:      drivers/mfd/twl-core.[ch]
12364 F:      drivers/mfd/twl4030*.c
12365 F:      drivers/mfd/twl6030*.c
12366 F:      drivers/mfd/twl6040*.c
12367 F:      drivers/regulator/palmas-regulator*.c
12368 F:      drivers/regulator/pbias-regulator.c
12369 F:      drivers/regulator/tps65217-regulator.c
12370 F:      drivers/regulator/tps65218-regulator.c
12371 F:      drivers/regulator/tps65910-regulator.c
12372 F:      drivers/regulator/twl-regulator.c
12373 F:      drivers/regulator/twl6030-regulator.c
12374 F:      include/linux/platform_data/i2c-omap.h
12375 F:      include/linux/platform_data/ti-sysc.h
12376
12377 OMFS FILESYSTEM
12378 M:      Bob Copeland <[email protected]>
12379 L:      [email protected]
12380 S:      Maintained
12381 F:      Documentation/filesystems/omfs.rst
12382 F:      fs/omfs/
12383
12384 OMNIKEY CARDMAN 4000 DRIVER
12385 M:      Harald Welte <[email protected]>
12386 S:      Maintained
12387 F:      drivers/char/pcmcia/cm4000_cs.c
12388 F:      include/linux/cm4000_cs.h
12389 F:      include/uapi/linux/cm4000_cs.h
12390
12391 OMNIKEY CARDMAN 4040 DRIVER
12392 M:      Harald Welte <[email protected]>
12393 S:      Maintained
12394 F:      drivers/char/pcmcia/cm4040_cs.*
12395
12396 OMNIVISION OV13858 SENSOR DRIVER
12397 M:      Sakari Ailus <[email protected]>
12398 L:      [email protected]
12399 S:      Maintained
12400 T:      git git://linuxtv.org/media_tree.git
12401 F:      drivers/media/i2c/ov13858.c
12402
12403 OMNIVISION OV2680 SENSOR DRIVER
12404 M:      Rui Miguel Silva <[email protected]>
12405 L:      [email protected]
12406 S:      Maintained
12407 T:      git git://linuxtv.org/media_tree.git
12408 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12409 F:      drivers/media/i2c/ov2680.c
12410
12411 OMNIVISION OV2685 SENSOR DRIVER
12412 M:      Shunqian Zheng <[email protected]>
12413 L:      [email protected]
12414 S:      Maintained
12415 T:      git git://linuxtv.org/media_tree.git
12416 F:      drivers/media/i2c/ov2685.c
12417
12418 OMNIVISION OV5640 SENSOR DRIVER
12419 M:      Steve Longerbeam <[email protected]>
12420 L:      [email protected]
12421 S:      Maintained
12422 T:      git git://linuxtv.org/media_tree.git
12423 F:      drivers/media/i2c/ov5640.c
12424
12425 OMNIVISION OV5647 SENSOR DRIVER
12426 M:      Luis Oliveira <[email protected]>
12427 L:      [email protected]
12428 S:      Maintained
12429 T:      git git://linuxtv.org/media_tree.git
12430 F:      drivers/media/i2c/ov5647.c
12431
12432 OMNIVISION OV5670 SENSOR DRIVER
12433 M:      Chiranjeevi Rapolu <[email protected]>
12434 M:      Hyungwoo Yang <[email protected]>
12435 L:      [email protected]
12436 S:      Maintained
12437 T:      git git://linuxtv.org/media_tree.git
12438 F:      drivers/media/i2c/ov5670.c
12439
12440 OMNIVISION OV5675 SENSOR DRIVER
12441 M:      Shawn Tu <[email protected]>
12442 L:      [email protected]
12443 S:      Maintained
12444 T:      git git://linuxtv.org/media_tree.git
12445 F:      drivers/media/i2c/ov5675.c
12446
12447 OMNIVISION OV5695 SENSOR DRIVER
12448 M:      Shunqian Zheng <[email protected]>
12449 L:      [email protected]
12450 S:      Maintained
12451 T:      git git://linuxtv.org/media_tree.git
12452 F:      drivers/media/i2c/ov5695.c
12453
12454 OMNIVISION OV7670 SENSOR DRIVER
12455 M:      Jonathan Corbet <[email protected]>
12456 L:      [email protected]
12457 S:      Maintained
12458 T:      git git://linuxtv.org/media_tree.git
12459 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12460 F:      drivers/media/i2c/ov7670.c
12461
12462 OMNIVISION OV772x SENSOR DRIVER
12463 M:      Jacopo Mondi <[email protected]>
12464 L:      [email protected]
12465 S:      Odd fixes
12466 T:      git git://linuxtv.org/media_tree.git
12467 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12468 F:      drivers/media/i2c/ov772x.c
12469 F:      include/media/i2c/ov772x.h
12470
12471 OMNIVISION OV7740 SENSOR DRIVER
12472 M:      Wenyou Yang <[email protected]>
12473 L:      [email protected]
12474 S:      Maintained
12475 T:      git git://linuxtv.org/media_tree.git
12476 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12477 F:      drivers/media/i2c/ov7740.c
12478
12479 OMNIVISION OV8856 SENSOR DRIVER
12480 M:      Ben Kao <[email protected]>
12481 L:      [email protected]
12482 S:      Maintained
12483 T:      git git://linuxtv.org/media_tree.git
12484 F:      drivers/media/i2c/ov8856.c
12485
12486 OMNIVISION OV9640 SENSOR DRIVER
12487 M:      Petr Cvek <[email protected]>
12488 L:      [email protected]
12489 S:      Maintained
12490 F:      drivers/media/i2c/ov9640.*
12491
12492 OMNIVISION OV9650 SENSOR DRIVER
12493 M:      Sakari Ailus <[email protected]>
12494 R:      Akinobu Mita <[email protected]>
12495 R:      Sylwester Nawrocki <[email protected]>
12496 L:      [email protected]
12497 S:      Maintained
12498 T:      git git://linuxtv.org/media_tree.git
12499 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12500 F:      drivers/media/i2c/ov9650.c
12501
12502 ONENAND FLASH DRIVER
12503 M:      Kyungmin Park <[email protected]>
12504 L:      [email protected]
12505 S:      Maintained
12506 F:      drivers/mtd/nand/onenand/
12507 F:      include/linux/mtd/onenand*.h
12508
12509 ONION OMEGA2+ BOARD
12510 M:      Harvey Hunt <[email protected]>
12511 L:      [email protected]
12512 S:      Maintained
12513 F:      arch/mips/boot/dts/ralink/omega2p.dts
12514
12515 OP-TEE DRIVER
12516 M:      Jens Wiklander <[email protected]>
12517 L:      [email protected]
12518 S:      Maintained
12519 F:      drivers/tee/optee/
12520
12521 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12522 M:      Sumit Garg <[email protected]>
12523 L:      [email protected]
12524 S:      Maintained
12525 F:      drivers/char/hw_random/optee-rng.c
12526
12527 OPA-VNIC DRIVER
12528 M:      Dennis Dalessandro <[email protected]>
12529 M:      Niranjana Vishwanathapura <[email protected]>
12530 L:      [email protected]
12531 S:      Supported
12532 F:      drivers/infiniband/ulp/opa_vnic
12533
12534 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12535 M:      Pantelis Antoniou <[email protected]>
12536 M:      Frank Rowand <[email protected]>
12537 L:      [email protected]
12538 S:      Maintained
12539 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12540 F:      Documentation/devicetree/overlay-notes.txt
12541 F:      drivers/of/overlay.c
12542 F:      drivers/of/resolver.c
12543 K:      of_overlay_notifier_
12544
12545 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12546 M:      Rob Herring <[email protected]>
12547 M:      Frank Rowand <[email protected]>
12548 L:      [email protected]
12549 S:      Maintained
12550 W:      http://www.devicetree.org/
12551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12552 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12553 F:      drivers/of/
12554 F:      include/linux/of*.h
12555 F:      scripts/dtc/
12556
12557 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12558 M:      Rob Herring <[email protected]>
12559 L:      [email protected]
12560 S:      Maintained
12561 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12563 F:      Documentation/devicetree/
12564 F:      arch/*/boot/dts/
12565 F:      include/dt-bindings/
12566
12567 OPENCORES I2C BUS DRIVER
12568 M:      Peter Korsgaard <[email protected]>
12569 M:      Andrew Lunn <[email protected]>
12570 L:      [email protected]
12571 S:      Maintained
12572 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12573 F:      Documentation/i2c/busses/i2c-ocores.rst
12574 F:      drivers/i2c/busses/i2c-ocores.c
12575 F:      include/linux/platform_data/i2c-ocores.h
12576
12577 OPENRISC ARCHITECTURE
12578 M:      Jonas Bonn <[email protected]>
12579 M:      Stefan Kristiansson <[email protected]>
12580 M:      Stafford Horne <[email protected]>
12581 L:      [email protected]
12582 S:      Maintained
12583 W:      http://openrisc.io
12584 T:      git git://github.com/openrisc/linux.git
12585 F:      Documentation/devicetree/bindings/openrisc/
12586 F:      Documentation/openrisc/
12587 F:      arch/openrisc/
12588 F:      drivers/irqchip/irq-ompic.c
12589 F:      drivers/irqchip/irq-or1k-*
12590
12591 OPENVSWITCH
12592 M:      Pravin B Shelar <[email protected]>
12593 L:      [email protected]
12594 L:      [email protected]
12595 S:      Maintained
12596 W:      http://openvswitch.org
12597 F:      include/uapi/linux/openvswitch.h
12598 F:      net/openvswitch/
12599
12600 OPERATING PERFORMANCE POINTS (OPP)
12601 M:      Viresh Kumar <[email protected]>
12602 M:      Nishanth Menon <[email protected]>
12603 M:      Stephen Boyd <[email protected]>
12604 L:      [email protected]
12605 S:      Maintained
12606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12607 F:      Documentation/devicetree/bindings/opp/
12608 F:      Documentation/power/opp.rst
12609 F:      drivers/opp/
12610 F:      include/linux/pm_opp.h
12611
12612 OPL4 DRIVER
12613 M:      Clemens Ladisch <[email protected]>
12614 L:      [email protected] (moderated for non-subscribers)
12615 S:      Maintained
12616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12617 F:      sound/drivers/opl4/
12618
12619 OPROFILE
12620 M:      Robert Richter <[email protected]>
12621 L:      [email protected]
12622 S:      Maintained
12623 F:      arch/*/include/asm/oprofile*.h
12624 F:      arch/*/oprofile/
12625 F:      drivers/oprofile/
12626 F:      include/linux/oprofile.h
12627
12628 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12629 M:      Mark Fasheh <[email protected]>
12630 M:      Joel Becker <[email protected]>
12631 M:      Joseph Qi <[email protected]>
12632 L:      [email protected] (moderated for non-subscribers)
12633 S:      Supported
12634 W:      http://ocfs2.wiki.kernel.org
12635 F:      Documentation/filesystems/dlmfs.rst
12636 F:      Documentation/filesystems/ocfs2.rst
12637 F:      fs/ocfs2/
12638
12639 ORANGEFS FILESYSTEM
12640 M:      Mike Marshall <[email protected]>
12641 R:      Martin Brandenburg <[email protected]>
12642 L:      [email protected]
12643 S:      Supported
12644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12645 F:      Documentation/filesystems/orangefs.rst
12646 F:      fs/orangefs/
12647
12648 ORINOCO DRIVER
12649 L:      [email protected]
12650 S:      Orphan
12651 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12652 W:      http://www.nongnu.org/orinoco/
12653 F:      drivers/net/wireless/intersil/orinoco/
12654
12655 OV2659 OMNIVISION SENSOR DRIVER
12656 M:      "Lad, Prabhakar" <[email protected]>
12657 L:      [email protected]
12658 S:      Maintained
12659 W:      https://linuxtv.org
12660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12661 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12662 F:      drivers/media/i2c/ov2659.c
12663 F:      include/media/i2c/ov2659.h
12664
12665 OVERLAY FILESYSTEM
12666 M:      Miklos Szeredi <[email protected]>
12667 L:      [email protected]
12668 S:      Supported
12669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12670 F:      Documentation/filesystems/overlayfs.rst
12671 F:      fs/overlayfs/
12672
12673 P54 WIRELESS DRIVER
12674 M:      Christian Lamparter <[email protected]>
12675 L:      [email protected]
12676 S:      Maintained
12677 W:      http://wireless.kernel.org/en/users/Drivers/p54
12678 F:      drivers/net/wireless/intersil/p54/
12679
12680 PACKING
12681 M:      Vladimir Oltean <[email protected]>
12682 L:      [email protected]
12683 S:      Supported
12684 F:      Documentation/core-api/packing.rst
12685 F:      include/linux/packing.h
12686 F:      lib/packing.c
12687
12688 PADATA PARALLEL EXECUTION MECHANISM
12689 M:      Steffen Klassert <[email protected]>
12690 L:      [email protected]
12691 S:      Maintained
12692 F:      Documentation/core-api/padata.rst
12693 F:      include/linux/padata.h
12694 F:      kernel/padata.c
12695
12696 PAGE POOL
12697 M:      Jesper Dangaard Brouer <[email protected]>
12698 M:      Ilias Apalodimas <[email protected]>
12699 L:      [email protected]
12700 S:      Supported
12701 F:      include/net/page_pool.h
12702 F:      net/core/page_pool.c
12703
12704 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12705 M:      Harald Welte <[email protected]>
12706 L:      [email protected]
12707 S:      Maintained
12708 F:      drivers/platform/x86/panasonic-laptop.c
12709
12710 PARALLAX PING IIO SENSOR DRIVER
12711 M:      Andreas Klinger <[email protected]>
12712 L:      [email protected]
12713 S:      Maintained
12714 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12715 F:      drivers/iio/proximity/ping.c
12716
12717 PARALLEL LCD/KEYPAD PANEL DRIVER
12718 M:      Willy Tarreau <[email protected]>
12719 M:      Ksenija Stanojevic <[email protected]>
12720 S:      Odd Fixes
12721 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12722 F:      drivers/auxdisplay/panel.c
12723
12724 PARALLEL PORT SUBSYSTEM
12725 M:      Sudip Mukherjee <[email protected]>
12726 M:      Sudip Mukherjee <[email protected]>
12727 L:      [email protected] (subscribers-only)
12728 S:      Maintained
12729 F:      Documentation/driver-api/parport*.rst
12730 F:      drivers/char/ppdev.c
12731 F:      drivers/parport/
12732 F:      include/linux/parport*.h
12733 F:      include/uapi/linux/ppdev.h
12734
12735 PARAVIRT_OPS INTERFACE
12736 M:      Juergen Gross <[email protected]>
12737 M:      Thomas Hellstrom <[email protected]>
12738 M:      "VMware, Inc." <[email protected]>
12739 L:      [email protected]
12740 S:      Supported
12741 F:      Documentation/virt/paravirt_ops.rst
12742 F:      arch/*/include/asm/paravirt*.h
12743 F:      arch/*/kernel/paravirt*
12744 F:      include/linux/hypervisor.h
12745
12746 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12747 M:      Tim Waugh <[email protected]>
12748 L:      [email protected] (subscribers-only)
12749 S:      Maintained
12750 F:      Documentation/admin-guide/blockdev/paride.rst
12751 F:      drivers/block/paride/
12752
12753 PARISC ARCHITECTURE
12754 M:      "James E.J. Bottomley" <[email protected]>
12755 M:      Helge Deller <[email protected]>
12756 L:      [email protected]
12757 S:      Maintained
12758 W:      http://www.parisc-linux.org/
12759 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12762 F:      Documentation/parisc/
12763 F:      arch/parisc/
12764 F:      drivers/char/agp/parisc-agp.c
12765 F:      drivers/input/misc/hp_sdc_rtc.c
12766 F:      drivers/input/serio/gscps2.c
12767 F:      drivers/input/serio/hp_sdc*
12768 F:      drivers/parisc/
12769 F:      drivers/parport/parport_gsc.*
12770 F:      drivers/tty/serial/8250/8250_gsc.c
12771 F:      drivers/video/console/sti*
12772 F:      drivers/video/fbdev/sti*
12773 F:      drivers/video/logo/logo_parisc*
12774 F:      include/linux/hp_sdc.h
12775
12776 PARMAN
12777 M:      Jiri Pirko <[email protected]>
12778 L:      [email protected]
12779 S:      Supported
12780 F:      include/linux/parman.h
12781 F:      lib/parman.c
12782 F:      lib/test_parman.c
12783
12784 PC ENGINES APU BOARD DRIVER
12785 M:      Enrico Weigelt, metux IT consult <[email protected]>
12786 S:      Maintained
12787 F:      drivers/platform/x86/pcengines-apuv2.c
12788
12789 PC87360 HARDWARE MONITORING DRIVER
12790 M:      Jim Cromie <[email protected]>
12791 L:      [email protected]
12792 S:      Maintained
12793 F:      Documentation/hwmon/pc87360.rst
12794 F:      drivers/hwmon/pc87360.c
12795
12796 PC8736x GPIO DRIVER
12797 M:      Jim Cromie <[email protected]>
12798 S:      Maintained
12799 F:      drivers/char/pc8736x_gpio.c
12800
12801 PC87427 HARDWARE MONITORING DRIVER
12802 M:      Jean Delvare <[email protected]>
12803 L:      [email protected]
12804 S:      Maintained
12805 F:      Documentation/hwmon/pc87427.rst
12806 F:      drivers/hwmon/pc87427.c
12807
12808 PCA9532 LED DRIVER
12809 M:      Riku Voipio <[email protected]>
12810 S:      Maintained
12811 F:      drivers/leds/leds-pca9532.c
12812 F:      include/linux/leds-pca9532.h
12813
12814 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12815 M:      Guenter Roeck <[email protected]>
12816 L:      [email protected]
12817 S:      Maintained
12818 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12819
12820 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12821 M:      Khalid Aziz <[email protected]>
12822 S:      Maintained
12823 F:      drivers/firmware/pcdp.*
12824
12825 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12826 M:      Thomas Petazzoni <[email protected]>
12827 L:      [email protected]
12828 L:      [email protected] (moderated for non-subscribers)
12829 S:      Maintained
12830 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12831 F:      drivers/pci/controller/pci-aardvark.c
12832
12833 PCI DRIVER FOR ALTERA PCIE IP
12834 M:      Ley Foon Tan <[email protected]>
12835 L:      [email protected] (moderated for non-subscribers)
12836 L:      [email protected]
12837 S:      Supported
12838 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12839 F:      drivers/pci/controller/pcie-altera.c
12840
12841 PCI DRIVER FOR APPLIEDMICRO XGENE
12842 M:      Toan Le <[email protected]>
12843 L:      [email protected]
12844 L:      [email protected]
12845 S:      Maintained
12846 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12847 F:      drivers/pci/controller/pci-xgene.c
12848
12849 PCI DRIVER FOR ARM VERSATILE PLATFORM
12850 M:      Rob Herring <[email protected]>
12851 L:      [email protected]
12852 L:      [email protected]
12853 S:      Maintained
12854 F:      Documentation/devicetree/bindings/pci/versatile.yaml
12855 F:      drivers/pci/controller/pci-versatile.c
12856
12857 PCI DRIVER FOR ARMADA 8K
12858 M:      Thomas Petazzoni <[email protected]>
12859 L:      [email protected]
12860 L:      [email protected]
12861 S:      Maintained
12862 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12863 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12864
12865 PCI DRIVER FOR CADENCE PCIE IP
12866 M:      Tom Joseph <[email protected]>
12867 L:      [email protected]
12868 S:      Maintained
12869 F:      Documentation/devicetree/bindings/pci/cdns,*
12870 F:      drivers/pci/controller/cadence/
12871
12872 PCI DRIVER FOR FREESCALE LAYERSCAPE
12873 M:      Minghuan Lian <[email protected]>
12874 M:      Mingkai Hu <[email protected]>
12875 M:      Roy Zang <[email protected]>
12876 L:      [email protected]
12877 L:      [email protected]
12878 L:      [email protected]
12879 S:      Maintained
12880 F:      drivers/pci/controller/dwc/*layerscape*
12881
12882 PCI DRIVER FOR GENERIC OF HOSTS
12883 M:      Will Deacon <[email protected]>
12884 L:      [email protected]
12885 L:      [email protected] (moderated for non-subscribers)
12886 S:      Maintained
12887 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
12888 F:      drivers/pci/controller/pci-host-common.c
12889 F:      drivers/pci/controller/pci-host-generic.c
12890
12891 PCI DRIVER FOR IMX6
12892 M:      Richard Zhu <[email protected]>
12893 M:      Lucas Stach <[email protected]>
12894 L:      [email protected]
12895 L:      [email protected] (moderated for non-subscribers)
12896 S:      Maintained
12897 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12898 F:      drivers/pci/controller/dwc/*imx6*
12899
12900 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12901 M:      Jonathan Derrick <[email protected]>
12902 L:      [email protected]
12903 S:      Supported
12904 F:      drivers/pci/controller/vmd.c
12905
12906 PCI DRIVER FOR MICROSEMI SWITCHTEC
12907 M:      Kurt Schwemmer <[email protected]>
12908 M:      Logan Gunthorpe <[email protected]>
12909 L:      [email protected]
12910 S:      Maintained
12911 F:      Documentation/ABI/testing/sysfs-class-switchtec
12912 F:      Documentation/driver-api/switchtec.rst
12913 F:      drivers/ntb/hw/mscc/
12914 F:      drivers/pci/switch/switchtec*
12915 F:      include/linux/switchtec.h
12916 F:      include/uapi/linux/switchtec_ioctl.h
12917
12918 PCI DRIVER FOR MOBIVEIL PCIE IP
12919 M:      Karthikeyan Mitran <[email protected]>
12920 M:      Hou Zhiqiang <[email protected]>
12921 L:      [email protected]
12922 S:      Supported
12923 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12924 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
12925
12926 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12927 M:      Thomas Petazzoni <[email protected]>
12928 M:      Jason Cooper <[email protected]>
12929 L:      [email protected]
12930 L:      [email protected] (moderated for non-subscribers)
12931 S:      Maintained
12932 F:      drivers/pci/controller/*mvebu*
12933
12934 PCI DRIVER FOR NVIDIA TEGRA
12935 M:      Thierry Reding <[email protected]>
12936 L:      [email protected]
12937 L:      [email protected]
12938 S:      Supported
12939 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12940 F:      drivers/pci/controller/pci-tegra.c
12941
12942 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
12943 M:      Hou Zhiqiang <[email protected]>
12944 L:      [email protected]
12945 L:      [email protected]
12946 S:      Maintained
12947 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
12948 F:      drivers/pci/controller/mobibeil/pcie-layerscape-gen4.c
12949
12950 PCI DRIVER FOR RENESAS R-CAR
12951 M:      Marek Vasut <[email protected]>
12952 M:      Yoshihiro Shimoda <[email protected]>
12953 L:      [email protected]
12954 L:      [email protected]
12955 S:      Maintained
12956 F:      drivers/pci/controller/*rcar*
12957
12958 PCI DRIVER FOR SAMSUNG EXYNOS
12959 M:      Jingoo Han <[email protected]>
12960 L:      [email protected]
12961 L:      [email protected] (moderated for non-subscribers)
12962 L:      [email protected] (moderated for non-subscribers)
12963 S:      Maintained
12964 F:      drivers/pci/controller/dwc/pci-exynos.c
12965
12966 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12967 M:      Jingoo Han <[email protected]>
12968 M:      Gustavo Pimentel <[email protected]>
12969 L:      [email protected]
12970 S:      Maintained
12971 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12972 F:      drivers/pci/controller/dwc/*designware*
12973
12974 PCI DRIVER FOR TI DRA7XX
12975 M:      Kishon Vijay Abraham I <[email protected]>
12976 L:      [email protected]
12977 L:      [email protected]
12978 S:      Supported
12979 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12980 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12981
12982 PCI DRIVER FOR TI KEYSTONE
12983 M:      Murali Karicheri <[email protected]>
12984 L:      [email protected]
12985 L:      [email protected] (moderated for non-subscribers)
12986 S:      Maintained
12987 F:      drivers/pci/controller/dwc/pci-keystone.c
12988
12989 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
12990 M:      Linus Walleij <[email protected]>
12991 L:      [email protected]
12992 S:      Maintained
12993 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
12994 F:      drivers/pci/controller/pci-v3-semi.c
12995
12996 PCI ENDPOINT SUBSYSTEM
12997 M:      Kishon Vijay Abraham I <[email protected]>
12998 M:      Lorenzo Pieralisi <[email protected]>
12999 L:      [email protected]
13000 S:      Supported
13001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13002 F:      drivers/misc/pci_endpoint_test.c
13003 F:      drivers/pci/endpoint/
13004 F:      tools/pci/
13005
13006 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13007 M:      Russell Currey <[email protected]>
13008 M:      Sam Bobroff <[email protected]>
13009 M:      Oliver O'Halloran <[email protected]>
13010 L:      [email protected]
13011 S:      Supported
13012 F:      Documentation/PCI/pci-error-recovery.rst
13013 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13014 F:      arch/powerpc/include/*/eeh*.h
13015 F:      arch/powerpc/kernel/eeh*.c
13016 F:      arch/powerpc/platforms/*/eeh*.c
13017 F:      drivers/pci/pcie/aer.c
13018 F:      drivers/pci/pcie/dpc.c
13019 F:      drivers/pci/pcie/err.c
13020
13021 PCI ERROR RECOVERY
13022 M:      Linas Vepstas <[email protected]>
13023 L:      [email protected]
13024 S:      Supported
13025 F:      Documentation/PCI/pci-error-recovery.rst
13026
13027 PCI MSI DRIVER FOR ALTERA MSI IP
13028 M:      Ley Foon Tan <[email protected]>
13029 L:      [email protected] (moderated for non-subscribers)
13030 L:      [email protected]
13031 S:      Supported
13032 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13033 F:      drivers/pci/controller/pcie-altera-msi.c
13034
13035 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13036 M:      Toan Le <[email protected]>
13037 L:      [email protected]
13038 L:      [email protected]
13039 S:      Maintained
13040 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13041 F:      drivers/pci/controller/pci-xgene-msi.c
13042
13043 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13044 M:      Lorenzo Pieralisi <[email protected]>
13045 R:      Andrew Murray <[email protected]>
13046 L:      [email protected]
13047 S:      Supported
13048 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13050 F:      drivers/pci/controller/
13051
13052 PCI SUBSYSTEM
13053 M:      Bjorn Helgaas <[email protected]>
13054 L:      [email protected]
13055 S:      Supported
13056 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13058 F:      Documentation/PCI/
13059 F:      Documentation/devicetree/bindings/pci/
13060 F:      arch/x86/kernel/early-quirks.c
13061 F:      arch/x86/kernel/quirks.c
13062 F:      arch/x86/pci/
13063 F:      drivers/acpi/pci*
13064 F:      drivers/pci/
13065 F:      include/asm-generic/pci*
13066 F:      include/linux/of_pci.h
13067 F:      include/linux/pci*
13068 F:      include/uapi/linux/pci*
13069 F:      lib/pci*
13070
13071 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13072 M:      Jonathan Chocron <[email protected]>
13073 L:      [email protected]
13074 S:      Maintained
13075 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13076 F:      drivers/pci/controller/dwc/pcie-al.c
13077
13078 PCIE DRIVER FOR AMLOGIC MESON
13079 M:      Yue Wang <[email protected]>
13080 L:      [email protected]
13081 L:      [email protected]
13082 S:      Maintained
13083 F:      drivers/pci/controller/dwc/pci-meson.c
13084
13085 PCIE DRIVER FOR AXIS ARTPEC
13086 M:      Jesper Nilsson <[email protected]>
13087 L:      [email protected]
13088 L:      [email protected]
13089 S:      Maintained
13090 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13091 F:      drivers/pci/controller/dwc/*artpec*
13092
13093 PCIE DRIVER FOR CAVIUM THUNDERX
13094 M:      Robert Richter <[email protected]>
13095 L:      [email protected]
13096 L:      [email protected] (moderated for non-subscribers)
13097 S:      Supported
13098 F:      drivers/pci/controller/pci-thunder-*
13099
13100 PCIE DRIVER FOR HISILICON
13101 M:      Zhou Wang <[email protected]>
13102 L:      [email protected]
13103 S:      Maintained
13104 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13105 F:      drivers/pci/controller/dwc/pcie-hisi.c
13106
13107 PCIE DRIVER FOR HISILICON KIRIN
13108 M:      Xiaowei Song <[email protected]>
13109 M:      Binghui Wang <[email protected]>
13110 L:      [email protected]
13111 S:      Maintained
13112 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13113 F:      drivers/pci/controller/dwc/pcie-kirin.c
13114
13115 PCIE DRIVER FOR HISILICON STB
13116 M:      Shawn Guo <[email protected]>
13117 L:      [email protected]
13118 S:      Maintained
13119 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13120 F:      drivers/pci/controller/dwc/pcie-histb.c
13121
13122 PCIE DRIVER FOR MEDIATEK
13123 M:      Ryder Lee <[email protected]>
13124 L:      [email protected]
13125 L:      [email protected]
13126 S:      Supported
13127 F:      Documentation/devicetree/bindings/pci/mediatek*
13128 F:      drivers/pci/controller/*mediatek*
13129
13130 PCIE DRIVER FOR QUALCOMM MSM
13131 M:      Stanimir Varbanov <[email protected]>
13132 L:      [email protected]
13133 L:      [email protected]
13134 S:      Maintained
13135 F:      drivers/pci/controller/dwc/*qcom*
13136
13137 PCIE DRIVER FOR ROCKCHIP
13138 M:      Shawn Lin <[email protected]>
13139 L:      [email protected]
13140 L:      [email protected]
13141 S:      Maintained
13142 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13143 F:      drivers/pci/controller/pcie-rockchip*
13144
13145 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13146 M:      Kunihiko Hayashi <[email protected]>
13147 L:      [email protected]
13148 S:      Maintained
13149 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
13150 F:      drivers/pci/controller/dwc/pcie-uniphier.c
13151
13152 PCIE DRIVER FOR ST SPEAR13XX
13153 M:      Pratyush Anand <[email protected]>
13154 L:      [email protected]
13155 S:      Maintained
13156 F:      drivers/pci/controller/dwc/*spear*
13157
13158 PCMCIA SUBSYSTEM
13159 M:      Dominik Brodowski <[email protected]>
13160 S:      Odd Fixes
13161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13162 F:      Documentation/pcmcia/
13163 F:      drivers/pcmcia/
13164 F:      include/pcmcia/
13165 F:      tools/pcmcia/
13166
13167 PCNET32 NETWORK DRIVER
13168 M:      Don Fry <[email protected]>
13169 L:      [email protected]
13170 S:      Maintained
13171 F:      drivers/net/ethernet/amd/pcnet32.c
13172
13173 PCRYPT PARALLEL CRYPTO ENGINE
13174 M:      Steffen Klassert <[email protected]>
13175 L:      [email protected]
13176 S:      Maintained
13177 F:      crypto/pcrypt.c
13178 F:      include/crypto/pcrypt.h
13179
13180 PEAQ WMI HOTKEYS DRIVER
13181 M:      Hans de Goede <[email protected]>
13182 L:      [email protected]
13183 S:      Maintained
13184 F:      drivers/platform/x86/peaq-wmi.c
13185
13186 PENSANDO ETHERNET DRIVERS
13187 M:      Shannon Nelson <[email protected]>
13188 M:      Pensando Drivers <[email protected]>
13189 L:      [email protected]
13190 S:      Supported
13191 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13192 F:      drivers/net/ethernet/pensando/
13193
13194 PER-CPU MEMORY ALLOCATOR
13195 M:      Dennis Zhou <[email protected]>
13196 M:      Tejun Heo <[email protected]>
13197 M:      Christoph Lameter <[email protected]>
13198 S:      Maintained
13199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13200 F:      arch/*/include/asm/percpu.h
13201 F:      include/linux/percpu*.h
13202 F:      mm/percpu*.c
13203
13204 PER-TASK DELAY ACCOUNTING
13205 M:      Balbir Singh <[email protected]>
13206 S:      Maintained
13207 F:      include/linux/delayacct.h
13208 F:      kernel/delayacct.c
13209
13210 PERFORMANCE EVENTS SUBSYSTEM
13211 M:      Peter Zijlstra <[email protected]>
13212 M:      Ingo Molnar <[email protected]>
13213 M:      Arnaldo Carvalho de Melo <[email protected]>
13214 R:      Mark Rutland <[email protected]>
13215 R:      Alexander Shishkin <[email protected]>
13216 R:      Jiri Olsa <[email protected]>
13217 R:      Namhyung Kim <[email protected]>
13218 L:      [email protected]
13219 S:      Supported
13220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13221 F:      arch/*/events/*
13222 F:      arch/*/events/*/*
13223 F:      arch/*/include/asm/perf_event.h
13224 F:      arch/*/kernel/*/*/perf_event*.c
13225 F:      arch/*/kernel/*/perf_event*.c
13226 F:      arch/*/kernel/perf_callchain.c
13227 F:      arch/*/kernel/perf_event*.c
13228 F:      include/linux/perf_event.h
13229 F:      include/uapi/linux/perf_event.h
13230 F:      kernel/events/*
13231 F:      tools/perf/
13232
13233 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13234 R:      John Garry <[email protected]>
13235 R:      Will Deacon <[email protected]>
13236 L:      [email protected] (moderated for non-subscribers)
13237 S:      Supported
13238 F:      tools/perf/pmu-events/arch/arm64/
13239
13240 PERSONALITY HANDLING
13241 M:      Christoph Hellwig <[email protected]>
13242 L:      [email protected]
13243 S:      Maintained
13244 F:      include/linux/personality.h
13245 F:      include/uapi/linux/personality.h
13246
13247 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13248 M:      Marcus Folkesson <[email protected]>
13249 L:      [email protected]
13250 S:      Maintained
13251 F:      Documentation/input/devices/pxrc.rst
13252 F:      drivers/input/joystick/pxrc.c
13253
13254 PHONET PROTOCOL
13255 M:      Remi Denis-Courmont <[email protected]>
13256 S:      Supported
13257 F:      Documentation/networking/phonet.txt
13258 F:      include/linux/phonet.h
13259 F:      include/net/phonet/
13260 F:      include/uapi/linux/phonet.h
13261 F:      net/phonet/
13262
13263 PHRAM MTD DRIVER
13264 M:      Joern Engel <[email protected]>
13265 L:      [email protected]
13266 S:      Maintained
13267 F:      drivers/mtd/devices/phram.c
13268
13269 PICOLCD HID DRIVER
13270 M:      Bruno Prémont <[email protected]>
13271 L:      [email protected]
13272 S:      Maintained
13273 F:      drivers/hid/hid-picolcd*
13274
13275 PICOXCELL SUPPORT
13276 M:      Jamie Iles <[email protected]>
13277 L:      [email protected] (moderated for non-subscribers)
13278 S:      Supported
13279 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13280 F:      arch/arm/boot/dts/picoxcell*
13281 F:      arch/arm/mach-picoxcell/
13282 F:      drivers/crypto/picoxcell*
13283
13284 PIDFD API
13285 M:      Christian Brauner <[email protected]>
13286 L:      [email protected]
13287 S:      Maintained
13288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13289 F:      samples/pidfd/
13290 F:      tools/testing/selftests/clone3/
13291 F:      tools/testing/selftests/pid_namespace/
13292 F:      tools/testing/selftests/pidfd/
13293 K:      (?i)pidfd
13294 K:      (?i)clone3
13295 K:      \b(clone_args|kernel_clone_args)\b
13296
13297 PIN CONTROL SUBSYSTEM
13298 M:      Linus Walleij <[email protected]>
13299 L:      [email protected]
13300 S:      Maintained
13301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13302 F:      Documentation/devicetree/bindings/pinctrl/
13303 F:      Documentation/driver-api/pinctl.rst
13304 F:      drivers/pinctrl/
13305 F:      include/linux/pinctrl/
13306
13307 PIN CONTROLLER - FREESCALE
13308 M:      Dong Aisheng <[email protected]>
13309 M:      Fabio Estevam <[email protected]>
13310 M:      Shawn Guo <[email protected]>
13311 M:      Stefan Agner <[email protected]>
13312 R:      Pengutronix Kernel Team <[email protected]>
13313 L:      [email protected]
13314 S:      Maintained
13315 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13316 F:      drivers/pinctrl/freescale/
13317
13318 PIN CONTROLLER - INTEL
13319 M:      Mika Westerberg <[email protected]>
13320 M:      Andy Shevchenko <[email protected]>
13321 S:      Maintained
13322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13323 F:      drivers/pinctrl/intel/
13324
13325 PIN CONTROLLER - MEDIATEK
13326 M:      Sean Wang <[email protected]>
13327 L:      [email protected] (moderated for non-subscribers)
13328 S:      Maintained
13329 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13330 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13331 F:      drivers/pinctrl/mediatek/
13332
13333 PIN CONTROLLER - MICROCHIP AT91
13334 M:      Ludovic Desroches <[email protected]>
13335 L:      [email protected] (moderated for non-subscribers)
13336 L:      [email protected]
13337 S:      Supported
13338 F:      drivers/gpio/gpio-sama5d2-piobu.c
13339 F:      drivers/pinctrl/pinctrl-at91*
13340
13341 PIN CONTROLLER - QUALCOMM
13342 M:      Bjorn Andersson <[email protected]>
13343 L:      [email protected]
13344 S:      Maintained
13345 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13346 F:      drivers/pinctrl/qcom/
13347
13348 PIN CONTROLLER - RENESAS
13349 M:      Geert Uytterhoeven <[email protected]>
13350 L:      [email protected]
13351 S:      Maintained
13352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13353 F:      drivers/pinctrl/pinctrl-rz*
13354 F:      drivers/pinctrl/sh-pfc/
13355
13356 PIN CONTROLLER - SAMSUNG
13357 M:      Tomasz Figa <[email protected]>
13358 M:      Krzysztof Kozlowski <[email protected]>
13359 M:      Sylwester Nawrocki <[email protected]>
13360 L:      [email protected] (moderated for non-subscribers)
13361 L:      [email protected] (moderated for non-subscribers)
13362 S:      Maintained
13363 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13365 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13366 F:      drivers/pinctrl/samsung/
13367 F:      include/dt-bindings/pinctrl/samsung.h
13368
13369 PIN CONTROLLER - SINGLE
13370 M:      Tony Lindgren <[email protected]>
13371 M:      Haojian Zhuang <[email protected]>
13372 L:      [email protected] (moderated for non-subscribers)
13373 L:      [email protected]
13374 S:      Maintained
13375 F:      drivers/pinctrl/pinctrl-single.c
13376
13377 PIN CONTROLLER - ST SPEAR
13378 M:      Viresh Kumar <[email protected]>
13379 L:      [email protected] (moderated for non-subscribers)
13380 S:      Maintained
13381 W:      http://www.st.com/spear
13382 F:      drivers/pinctrl/spear/
13383
13384 PISTACHIO SOC SUPPORT
13385 M:      James Hartley <[email protected]>
13386 L:      [email protected]
13387 S:      Odd Fixes
13388 F:      arch/mips/boot/dts/img/pistachio*
13389 F:      arch/mips/configs/pistachio*_defconfig
13390 F:      arch/mips/include/asm/mach-pistachio/
13391 F:      arch/mips/pistachio/
13392
13393 PKTCDVD DRIVER
13394 M:      [email protected]
13395 S:      Orphan
13396 F:      drivers/block/pktcdvd.c
13397 F:      include/linux/pktcdvd.h
13398 F:      include/uapi/linux/pktcdvd.h
13399
13400 PKUNITY SOC DRIVERS
13401 M:      Guan Xuetao <[email protected]>
13402 S:      Maintained
13403 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13404 T:      git git://github.com/gxt/linux.git
13405 F:      drivers/i2c/busses/i2c-puv3.c
13406 F:      drivers/input/serio/i8042-unicore32io.h
13407 F:      drivers/rtc/rtc-puv3.c
13408 F:      drivers/video/fbdev/fb-puv3.c
13409
13410 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13411 M:      Tomasz Duszynski <[email protected]>
13412 S:      Maintained
13413 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13414 F:      drivers/iio/chemical/pms7003.c
13415
13416 PLX DMA DRIVER
13417 M:      Logan Gunthorpe <[email protected]>
13418 S:      Maintained
13419 F:      drivers/dma/plx_dma.c
13420
13421 PM-GRAPH UTILITY
13422 M:      "Todd E Brandt" <[email protected]>
13423 L:      [email protected]
13424 S:      Supported
13425 W:      https://01.org/pm-graph
13426 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13427 T:      git git://github.com/intel/pm-graph
13428 F:      tools/power/pm-graph
13429
13430 PMBUS HARDWARE MONITORING DRIVERS
13431 M:      Guenter Roeck <[email protected]>
13432 L:      [email protected]
13433 S:      Maintained
13434 W:      http://hwmon.wiki.kernel.org/
13435 W:      http://www.roeck-us.net/linux/drivers/
13436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13437 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13438 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13439 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13440 F:      Documentation/hwmon/adm1275.rst
13441 F:      Documentation/hwmon/ibm-cffps.rst
13442 F:      Documentation/hwmon/ir35221.rst
13443 F:      Documentation/hwmon/lm25066.rst
13444 F:      Documentation/hwmon/ltc2978.rst
13445 F:      Documentation/hwmon/ltc3815.rst
13446 F:      Documentation/hwmon/max16064.rst
13447 F:      Documentation/hwmon/max20751.rst
13448 F:      Documentation/hwmon/max31785.rst
13449 F:      Documentation/hwmon/max34440.rst
13450 F:      Documentation/hwmon/max8688.rst
13451 F:      Documentation/hwmon/pmbus-core.rst
13452 F:      Documentation/hwmon/pmbus.rst
13453 F:      Documentation/hwmon/tps40422.rst
13454 F:      Documentation/hwmon/ucd9000.rst
13455 F:      Documentation/hwmon/ucd9200.rst
13456 F:      Documentation/hwmon/zl6100.rst
13457 F:      drivers/hwmon/pmbus/
13458 F:      include/linux/pmbus.h
13459
13460 PMC SIERRA MaxRAID DRIVER
13461 L:      [email protected]
13462 S:      Orphan
13463 W:      http://www.pmc-sierra.com/
13464 F:      drivers/scsi/pmcraid.*
13465
13466 PMC SIERRA PM8001 DRIVER
13467 M:      Jack Wang <[email protected]>
13468 L:      [email protected]
13469 S:      Supported
13470 F:      drivers/scsi/pm8001/
13471
13472 PNI RM3100 IIO DRIVER
13473 M:      Song Qiang <[email protected]>
13474 L:      [email protected]
13475 S:      Maintained
13476 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13477 F:      drivers/iio/magnetometer/rm3100*
13478
13479 PNP SUPPORT
13480 M:      "Rafael J. Wysocki" <[email protected]>
13481 L:      [email protected]
13482 S:      Maintained
13483 F:      drivers/pnp/
13484 F:      include/linux/pnp.h
13485
13486 POSIX CLOCKS and TIMERS
13487 M:      Thomas Gleixner <[email protected]>
13488 L:      [email protected]
13489 S:      Maintained
13490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13491 F:      fs/timerfd.c
13492 F:      include/linux/time_namespace.h
13493 F:      include/linux/timer*
13494 F:      kernel/time/*timer*
13495 F:      kernel/time/namespace.c
13496
13497 POWER MANAGEMENT CORE
13498 M:      "Rafael J. Wysocki" <[email protected]>
13499 L:      [email protected]
13500 S:      Supported
13501 B:      https://bugzilla.kernel.org
13502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13503 F:      drivers/base/power/
13504 F:      drivers/powercap/
13505 F:      include/linux/intel_rapl.h
13506 F:      include/linux/pm.h
13507 F:      include/linux/pm_*
13508 F:      include/linux/powercap.h
13509 F:      kernel/configs/nopm.config
13510
13511 POWER STATE COORDINATION INTERFACE (PSCI)
13512 M:      Mark Rutland <[email protected]>
13513 M:      Lorenzo Pieralisi <[email protected]>
13514 L:      [email protected]
13515 S:      Maintained
13516 F:      drivers/firmware/psci/
13517 F:      include/linux/psci.h
13518 F:      include/uapi/linux/psci.h
13519
13520 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13521 M:      Sebastian Reichel <[email protected]>
13522 L:      [email protected]
13523 S:      Maintained
13524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13525 F:      Documentation/ABI/testing/sysfs-class-power
13526 F:      Documentation/devicetree/bindings/power/supply/
13527 F:      drivers/power/supply/
13528 F:      include/linux/power_supply.h
13529
13530 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13531 M:      Suraj Jitindar Singh <[email protected]>
13532 L:      [email protected]
13533 S:      Maintained
13534 F:      drivers/char/powernv-op-panel.c
13535
13536 PPP OVER ATM (RFC 2364)
13537 M:      Mitchell Blank Jr <[email protected]>
13538 S:      Maintained
13539 F:      include/uapi/linux/atmppp.h
13540 F:      net/atm/pppoatm.c
13541
13542 PPP OVER ETHERNET
13543 M:      Michal Ostrowski <[email protected]>
13544 S:      Maintained
13545 F:      drivers/net/ppp/pppoe.c
13546 F:      drivers/net/ppp/pppox.c
13547
13548 PPP OVER L2TP
13549 M:      James Chapman <[email protected]>
13550 S:      Maintained
13551 F:      include/linux/if_pppol2tp.h
13552 F:      include/uapi/linux/if_pppol2tp.h
13553 F:      net/l2tp/l2tp_ppp.c
13554
13555 PPP PROTOCOL DRIVERS AND COMPRESSORS
13556 M:      Paul Mackerras <[email protected]>
13557 L:      [email protected]
13558 S:      Maintained
13559 F:      drivers/net/ppp/ppp_*
13560
13561 PPS SUPPORT
13562 M:      Rodolfo Giometti <[email protected]>
13563 L:      [email protected] (subscribers-only)
13564 S:      Maintained
13565 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13566 F:      Documentation/ABI/testing/sysfs-pps
13567 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13568 F:      Documentation/driver-api/pps.rst
13569 F:      drivers/pps/
13570 F:      include/linux/pps*.h
13571 F:      include/uapi/linux/pps.h
13572
13573 PPTP DRIVER
13574 M:      Dmitry Kozlov <[email protected]>
13575 L:      [email protected]
13576 S:      Maintained
13577 W:      http://sourceforge.net/projects/accel-pptp
13578 F:      drivers/net/ppp/pptp.c
13579
13580 PRESSURE STALL INFORMATION (PSI)
13581 M:      Johannes Weiner <[email protected]>
13582 S:      Maintained
13583 F:      include/linux/psi*
13584 F:      kernel/sched/psi.c
13585
13586 PRINTK
13587 M:      Petr Mladek <[email protected]>
13588 M:      Sergey Senozhatsky <[email protected]>
13589 R:      Steven Rostedt <[email protected]>
13590 S:      Maintained
13591 F:      include/linux/printk.h
13592 F:      kernel/printk/
13593
13594 PRISM54 WIRELESS DRIVER
13595 M:      Luis Chamberlain <[email protected]>
13596 L:      [email protected]
13597 S:      Obsolete
13598 W:      http://wireless.kernel.org/en/users/Drivers/p54
13599 F:      drivers/net/wireless/intersil/prism54/
13600
13601 PROC FILESYSTEM
13602 R:      Alexey Dobriyan <[email protected]>
13603 L:      [email protected]
13604 L:      [email protected]
13605 S:      Maintained
13606 F:      Documentation/filesystems/proc.rst
13607 F:      fs/proc/
13608 F:      include/linux/proc_fs.h
13609 F:      tools/testing/selftests/proc/
13610
13611 PROC SYSCTL
13612 M:      Luis Chamberlain <[email protected]>
13613 M:      Kees Cook <[email protected]>
13614 M:      Iurii Zaikin <[email protected]>
13615 L:      [email protected]
13616 L:      [email protected]
13617 S:      Maintained
13618 F:      fs/proc/proc_sysctl.c
13619 F:      include/linux/sysctl.h
13620 F:      kernel/sysctl-test.c
13621 F:      kernel/sysctl.c
13622 F:      tools/testing/selftests/sysctl/
13623
13624 PS3 NETWORK SUPPORT
13625 M:      Geoff Levand <[email protected]>
13626 L:      [email protected]
13627 L:      [email protected]
13628 S:      Maintained
13629 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13630
13631 PS3 PLATFORM SUPPORT
13632 M:      Geoff Levand <[email protected]>
13633 L:      [email protected]
13634 S:      Maintained
13635 F:      arch/powerpc/boot/ps3*
13636 F:      arch/powerpc/include/asm/lv1call.h
13637 F:      arch/powerpc/include/asm/ps3*.h
13638 F:      arch/powerpc/platforms/ps3/
13639 F:      drivers/*/ps3*
13640 F:      drivers/ps3/
13641 F:      drivers/rtc/rtc-ps3.c
13642 F:      drivers/usb/host/*ps3.c
13643 F:      sound/ppc/snd_ps3*
13644
13645 PS3VRAM DRIVER
13646 M:      Jim Paris <[email protected]>
13647 M:      Geoff Levand <[email protected]>
13648 L:      [email protected]
13649 S:      Maintained
13650 F:      drivers/block/ps3vram.c
13651
13652 PSAMPLE PACKET SAMPLING SUPPORT
13653 M:      Yotam Gigi <[email protected]>
13654 S:      Maintained
13655 F:      include/net/psample.h
13656 F:      include/uapi/linux/psample.h
13657 F:      net/psample
13658
13659 PSTORE FILESYSTEM
13660 M:      Kees Cook <[email protected]>
13661 M:      Anton Vorontsov <[email protected]>
13662 M:      Colin Cross <[email protected]>
13663 M:      Tony Luck <[email protected]>
13664 S:      Maintained
13665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13666 F:      Documentation/admin-guide/ramoops.rst
13667 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13668 F:      drivers/acpi/apei/erst.c
13669 F:      drivers/firmware/efi/efi-pstore.c
13670 F:      fs/pstore/
13671 F:      include/linux/pstore*
13672 K:      \b(pstore|ramoops)
13673
13674 PTP HARDWARE CLOCK SUPPORT
13675 M:      Richard Cochran <[email protected]>
13676 L:      [email protected]
13677 S:      Maintained
13678 W:      http://linuxptp.sourceforge.net/
13679 F:      Documentation/ABI/testing/sysfs-ptp
13680 F:      Documentation/driver-api/ptp.rst
13681 F:      drivers/net/phy/dp83640*
13682 F:      drivers/ptp/*
13683 F:      include/linux/ptp_cl*
13684
13685 PTRACE SUPPORT
13686 M:      Oleg Nesterov <[email protected]>
13687 S:      Maintained
13688 F:      arch/*/*/ptrace*.c
13689 F:      arch/*/include/asm/ptrace*.h
13690 F:      arch/*/ptrace*.c
13691 F:      include/asm-generic/syscall.h
13692 F:      include/linux/ptrace.h
13693 F:      include/linux/regset.h
13694 F:      include/linux/tracehook.h
13695 F:      include/uapi/linux/ptrace.h
13696 F:      include/uapi/linux/ptrace.h
13697 F:      kernel/ptrace.c
13698
13699 PULSE8-CEC DRIVER
13700 M:      Hans Verkuil <[email protected]>
13701 L:      [email protected]
13702 S:      Maintained
13703 T:      git git://linuxtv.org/media_tree.git
13704 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13705 F:      drivers/media/usb/pulse8-cec/*
13706
13707 PVRUSB2 VIDEO4LINUX DRIVER
13708 M:      Mike Isely <[email protected]>
13709 L:      [email protected]       (subscribers-only)
13710 L:      [email protected]
13711 S:      Maintained
13712 W:      http://www.isely.net/pvrusb2/
13713 T:      git git://linuxtv.org/media_tree.git
13714 F:      Documentation/media/v4l-drivers/pvrusb2*
13715 F:      drivers/media/usb/pvrusb2/
13716
13717 PWC WEBCAM DRIVER
13718 M:      Hans Verkuil <[email protected]>
13719 L:      [email protected]
13720 S:      Odd Fixes
13721 T:      git git://linuxtv.org/media_tree.git
13722 F:      drivers/media/usb/pwc/*
13723 F:      include/trace/events/pwc.h
13724
13725 PWM FAN DRIVER
13726 M:      Kamil Debski <[email protected]>
13727 M:      Bartlomiej Zolnierkiewicz <[email protected]>
13728 L:      [email protected]
13729 S:      Supported
13730 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13731 F:      Documentation/hwmon/pwm-fan.rst
13732 F:      drivers/hwmon/pwm-fan.c
13733
13734 PWM IR Transmitter
13735 M:      Sean Young <[email protected]>
13736 L:      [email protected]
13737 S:      Maintained
13738 F:      drivers/media/rc/pwm-ir-tx.c
13739
13740 PWM SUBSYSTEM
13741 M:      Thierry Reding <[email protected]>
13742 R:      Uwe Kleine-König <[email protected]>
13743 L:      [email protected]
13744 S:      Maintained
13745 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13747 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13748 F:      Documentation/devicetree/bindings/pwm/
13749 F:      Documentation/driver-api/pwm.rst
13750 F:      drivers/gpio/gpio-mvebu.c
13751 F:      drivers/pwm/
13752 F:      drivers/video/backlight/pwm_bl.c
13753 F:      include/linux/pwm.h
13754 F:      include/linux/pwm_backlight.h
13755 K:      pwm_(config|apply_state|ops)
13756
13757 PXA GPIO DRIVER
13758 M:      Robert Jarzmik <[email protected]>
13759 L:      [email protected]
13760 S:      Maintained
13761 F:      drivers/gpio/gpio-pxa.c
13762
13763 PXA MMCI DRIVER
13764 S:      Orphan
13765
13766 PXA RTC DRIVER
13767 M:      Robert Jarzmik <[email protected]>
13768 L:      [email protected]
13769 S:      Maintained
13770
13771 PXA2xx/PXA3xx SUPPORT
13772 M:      Daniel Mack <[email protected]>
13773 M:      Haojian Zhuang <[email protected]>
13774 M:      Robert Jarzmik <[email protected]>
13775 L:      [email protected] (moderated for non-subscribers)
13776 S:      Maintained
13777 T:      git git://github.com/hzhuang1/linux.git
13778 T:      git git://github.com/rjarzmik/linux.git
13779 F:      arch/arm/boot/dts/pxa*
13780 F:      arch/arm/mach-pxa/
13781 F:      drivers/dma/pxa*
13782 F:      drivers/pcmcia/pxa2xx*
13783 F:      drivers/pinctrl/pxa/
13784 F:      drivers/spi/spi-pxa2xx*
13785 F:      drivers/usb/gadget/udc/pxa2*
13786 F:      include/sound/pxa2xx-lib.h
13787 F:      sound/arm/pxa*
13788 F:      sound/soc/pxa/
13789
13790 QAT DRIVER
13791 M:      Giovanni Cabiddu <[email protected]>
13792 L:      [email protected]
13793 S:      Supported
13794 F:      drivers/crypto/qat/
13795
13796 QCOM AUDIO (ASoC) DRIVERS
13797 M:      Patrick Lai <[email protected]>
13798 M:      Banajit Goswami <[email protected]>
13799 L:      [email protected] (moderated for non-subscribers)
13800 S:      Supported
13801 F:      sound/soc/qcom/
13802
13803 QCOM IPA DRIVER
13804 M:      Alex Elder <[email protected]>
13805 L:      [email protected]
13806 S:      Supported
13807 F:      drivers/net/ipa/
13808
13809 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13810 M:      Gabriel Somlo <[email protected]>
13811 M:      "Michael S. Tsirkin" <[email protected]>
13812 L:      [email protected]
13813 S:      Maintained
13814 F:      drivers/firmware/qemu_fw_cfg.c
13815 F:      include/uapi/linux/qemu_fw_cfg.h
13816
13817 QIB DRIVER
13818 M:      Dennis Dalessandro <[email protected]>
13819 M:      Mike Marciniszyn <[email protected]>
13820 L:      [email protected]
13821 S:      Supported
13822 F:      drivers/infiniband/hw/qib/
13823
13824 QLOGIC QL41xxx FCOE DRIVER
13825 M:      [email protected]
13826 L:      [email protected]
13827 S:      Supported
13828 F:      drivers/scsi/qedf/
13829
13830 QLOGIC QL41xxx ISCSI DRIVER
13831 M:      [email protected]
13832 L:      [email protected]
13833 S:      Supported
13834 F:      drivers/scsi/qedi/
13835
13836 QLOGIC QL4xxx ETHERNET DRIVER
13837 M:      Ariel Elior <[email protected]>
13838 M:      [email protected]
13839 L:      [email protected]
13840 S:      Supported
13841 F:      drivers/net/ethernet/qlogic/qed/
13842 F:      drivers/net/ethernet/qlogic/qede/
13843 F:      include/linux/qed/
13844
13845 QLOGIC QL4xxx RDMA DRIVER
13846 M:      Michal Kalderon <[email protected]>
13847 M:      Ariel Elior <[email protected]>
13848 L:      [email protected]
13849 S:      Supported
13850 F:      drivers/infiniband/hw/qedr/
13851 F:      include/uapi/rdma/qedr-abi.h
13852
13853 QLOGIC QLA1280 SCSI DRIVER
13854 M:      Michael Reed <[email protected]>
13855 L:      [email protected]
13856 S:      Maintained
13857 F:      drivers/scsi/qla1280.[ch]
13858
13859 QLOGIC QLA2XXX FC-SCSI DRIVER
13860 M:      Nilesh Javali <[email protected]>
13861 M:      [email protected]
13862 L:      [email protected]
13863 S:      Supported
13864 F:      Documentation/scsi/LICENSE.qla2xxx
13865 F:      drivers/scsi/qla2xxx/
13866
13867 QLOGIC QLA3XXX NETWORK DRIVER
13868 M:      [email protected]
13869 L:      [email protected]
13870 S:      Supported
13871 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13872 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13873
13874 QLOGIC QLA4XXX iSCSI DRIVER
13875 M:      [email protected]
13876 L:      [email protected]
13877 S:      Supported
13878 F:      Documentation/scsi/LICENSE.qla4xxx
13879 F:      drivers/scsi/qla4xxx/
13880
13881 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13882 M:      Shahed Shaikh <[email protected]>
13883 M:      Manish Chopra <[email protected]>
13884 M:      [email protected]
13885 L:      [email protected]
13886 S:      Supported
13887 F:      drivers/net/ethernet/qlogic/qlcnic/
13888
13889 QLOGIC QLGE 10Gb ETHERNET DRIVER
13890 M:      Manish Chopra <[email protected]>
13891 M:      [email protected]
13892 L:      [email protected]
13893 S:      Supported
13894 F:      drivers/staging/qlge/
13895
13896 QM1D1B0004 MEDIA DRIVER
13897 M:      Akihiro Tsukada <[email protected]>
13898 L:      [email protected]
13899 S:      Odd Fixes
13900 F:      drivers/media/tuners/qm1d1b0004*
13901
13902 QM1D1C0042 MEDIA DRIVER
13903 M:      Akihiro Tsukada <[email protected]>
13904 L:      [email protected]
13905 S:      Odd Fixes
13906 F:      drivers/media/tuners/qm1d1c0042*
13907
13908 QNX4 FILESYSTEM
13909 M:      Anders Larsen <[email protected]>
13910 S:      Maintained
13911 W:      http://www.alarsen.net/linux/qnx4fs/
13912 F:      fs/qnx4/
13913 F:      include/uapi/linux/qnx4_fs.h
13914 F:      include/uapi/linux/qnxtypes.h
13915
13916 QORIQ DPAA2 FSL-MC BUS DRIVER
13917 M:      Stuart Yoder <[email protected]>
13918 M:      Laurentiu Tudor <[email protected]>
13919 L:      [email protected]
13920 S:      Maintained
13921 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13922 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13923 F:      drivers/bus/fsl-mc/
13924
13925 QT1010 MEDIA DRIVER
13926 M:      Antti Palosaari <[email protected]>
13927 L:      [email protected]
13928 S:      Maintained
13929 W:      https://linuxtv.org
13930 W:      http://palosaari.fi/linux/
13931 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13932 T:      git git://linuxtv.org/anttip/media_tree.git
13933 F:      drivers/media/tuners/qt1010*
13934
13935 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13936 M:      Kalle Valo <[email protected]>
13937 L:      [email protected]
13938 S:      Supported
13939 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13941 F:      drivers/net/wireless/ath/ath10k/
13942
13943 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
13944 M:      Kalle Valo <[email protected]>
13945 L:      [email protected]
13946 S:      Supported
13947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13948 F:      drivers/net/wireless/ath/ath11k/
13949
13950 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13951 M:      QCA ath9k Development <[email protected]>
13952 L:      [email protected]
13953 S:      Supported
13954 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13955 F:      drivers/net/wireless/ath/ath9k/
13956
13957 QUALCOMM CAMERA SUBSYSTEM DRIVER
13958 M:      Todor Tomov <[email protected]>
13959 L:      [email protected]
13960 S:      Maintained
13961 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13962 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13963 F:      drivers/media/platform/qcom/camss/
13964
13965 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
13966 M:      Niklas Cassel <[email protected]>
13967 L:      [email protected]
13968 L:      [email protected]
13969 S:      Maintained
13970 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
13971 F:      drivers/power/avs/qcom-cpr.c
13972
13973 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13974 M:      Ilia Lin <[email protected]>
13975 L:      [email protected]
13976 S:      Maintained
13977 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13978 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13979
13980 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13981 M:      Timur Tabi <[email protected]>
13982 L:      [email protected]
13983 S:      Maintained
13984 F:      drivers/net/ethernet/qualcomm/emac/
13985
13986 QUALCOMM ETHQOS ETHERNET DRIVER
13987 M:      Vinod Koul <[email protected]>
13988 L:      [email protected]
13989 S:      Maintained
13990 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13991 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13992
13993 QUALCOMM GENERIC INTERFACE I2C DRIVER
13994 M:      Alok Chauhan <[email protected]>
13995 L:      [email protected]
13996 L:      [email protected]
13997 S:      Supported
13998 F:      drivers/i2c/busses/i2c-qcom-geni.c
13999
14000 QUALCOMM HEXAGON ARCHITECTURE
14001 M:      Brian Cain <[email protected]>
14002 L:      [email protected]
14003 S:      Supported
14004 F:      arch/hexagon/
14005
14006 QUALCOMM HIDMA DRIVER
14007 M:      Sinan Kaya <[email protected]>
14008 L:      [email protected]
14009 L:      [email protected]
14010 L:      [email protected]
14011 S:      Supported
14012 F:      drivers/dma/qcom/hidma*
14013
14014 QUALCOMM IOMMU
14015 M:      Rob Clark <[email protected]>
14016 L:      [email protected]
14017 L:      [email protected]
14018 S:      Maintained
14019 F:      drivers/iommu/qcom_iommu.c
14020
14021 QUALCOMM RMNET DRIVER
14022 M:      Subash Abhinov Kasiviswanathan <[email protected]>
14023 M:      Sean Tranchetti <[email protected]>
14024 L:      [email protected]
14025 S:      Maintained
14026 F:      Documentation/networking/device_drivers/qualcomm/rmnet.txt
14027 F:      drivers/net/ethernet/qualcomm/rmnet/
14028 F:      include/linux/if_rmnet.h
14029
14030 QUALCOMM TSENS THERMAL DRIVER
14031 M:      Amit Kucheria <[email protected]>
14032 L:      [email protected]
14033 L:      [email protected]
14034 S:      Maintained
14035 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14036 F:      drivers/thermal/qcom/
14037
14038 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14039 M:      Stanimir Varbanov <[email protected]>
14040 L:      [email protected]
14041 L:      [email protected]
14042 S:      Maintained
14043 T:      git git://linuxtv.org/media_tree.git
14044 F:      Documentation/devicetree/bindings/media/*venus*
14045 F:      drivers/media/platform/qcom/venus/
14046
14047 QUALCOMM WCN36XX WIRELESS DRIVER
14048 M:      Kalle Valo <[email protected]>
14049 L:      [email protected]
14050 S:      Supported
14051 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
14052 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14053 F:      drivers/net/wireless/ath/wcn36xx/
14054
14055 QUANTENNA QTNFMAC WIRELESS DRIVER
14056 M:      Igor Mitsyanko <[email protected]>
14057 M:      Avinash Patil <[email protected]>
14058 M:      Sergey Matyukevich <[email protected]>
14059 L:      [email protected]
14060 S:      Maintained
14061 F:      drivers/net/wireless/quantenna
14062
14063 RADEON and AMDGPU DRM DRIVERS
14064 M:      Alex Deucher <[email protected]>
14065 M:      Christian König <[email protected]>
14066 M:      David (ChunMing) Zhou <[email protected]>
14067 L:      [email protected]
14068 S:      Supported
14069 T:      git git://people.freedesktop.org/~agd5f/linux
14070 F:      drivers/gpu/drm/amd/
14071 F:      drivers/gpu/drm/radeon/
14072 F:      include/uapi/drm/amdgpu_drm.h
14073 F:      include/uapi/drm/radeon_drm.h
14074
14075 RADEON FRAMEBUFFER DISPLAY DRIVER
14076 M:      Benjamin Herrenschmidt <[email protected]>
14077 L:      [email protected]
14078 S:      Maintained
14079 F:      drivers/video/fbdev/aty/radeon*
14080 F:      include/uapi/linux/radeonfb.h
14081
14082 RADIOSHARK RADIO DRIVER
14083 M:      Hans Verkuil <[email protected]>
14084 L:      [email protected]
14085 S:      Maintained
14086 T:      git git://linuxtv.org/media_tree.git
14087 F:      drivers/media/radio/radio-shark.c
14088
14089 RADIOSHARK2 RADIO DRIVER
14090 M:      Hans Verkuil <[email protected]>
14091 L:      [email protected]
14092 S:      Maintained
14093 T:      git git://linuxtv.org/media_tree.git
14094 F:      drivers/media/radio/radio-shark2.c
14095 F:      drivers/media/radio/radio-tea5777.c
14096
14097 RADOS BLOCK DEVICE (RBD)
14098 M:      Ilya Dryomov <[email protected]>
14099 M:      Sage Weil <[email protected]>
14100 R:      Dongsheng Yang <[email protected]>
14101 L:      [email protected]
14102 S:      Supported
14103 W:      http://ceph.com/
14104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
14105 T:      git git://github.com/ceph/ceph-client.git
14106 F:      Documentation/ABI/testing/sysfs-bus-rbd
14107 F:      drivers/block/rbd.c
14108 F:      drivers/block/rbd_types.h
14109
14110 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14111 M:      Paul Mackerras <[email protected]>
14112 L:      [email protected]
14113 S:      Maintained
14114 F:      drivers/video/fbdev/aty/aty128fb.c
14115
14116 RAINSHADOW-CEC DRIVER
14117 M:      Hans Verkuil <[email protected]>
14118 L:      [email protected]
14119 S:      Maintained
14120 T:      git git://linuxtv.org/media_tree.git
14121 F:      drivers/media/usb/rainshadow-cec/*
14122
14123 RALINK MIPS ARCHITECTURE
14124 M:      John Crispin <[email protected]>
14125 L:      [email protected]
14126 S:      Maintained
14127 F:      arch/mips/ralink
14128
14129 RALINK RT2X00 WIRELESS LAN DRIVER
14130 M:      Stanislaw Gruszka <[email protected]>
14131 M:      Helmut Schaa <[email protected]>
14132 L:      [email protected]
14133 S:      Maintained
14134 F:      drivers/net/wireless/ralink/rt2x00/
14135
14136 RAMDISK RAM BLOCK DEVICE DRIVER
14137 M:      Jens Axboe <[email protected]>
14138 S:      Maintained
14139 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14140 F:      drivers/block/brd.c
14141
14142 RANCHU VIRTUAL BOARD FOR MIPS
14143 M:      Miodrag Dinic <[email protected]>
14144 L:      [email protected]
14145 S:      Supported
14146 F:      arch/mips/configs/generic/board-ranchu.config
14147 F:      arch/mips/generic/board-ranchu.c
14148
14149 RANDOM NUMBER DRIVER
14150 M:      "Theodore Ts'o" <[email protected]>
14151 S:      Maintained
14152 F:      drivers/char/random.c
14153
14154 RAPIDIO SUBSYSTEM
14155 M:      Matt Porter <[email protected]>
14156 M:      Alexandre Bounine <[email protected]>
14157 S:      Maintained
14158 F:      drivers/rapidio/
14159
14160 RAS INFRASTRUCTURE
14161 M:      Tony Luck <[email protected]>
14162 M:      Borislav Petkov <[email protected]>
14163 L:      [email protected]
14164 S:      Maintained
14165 F:      Documentation/admin-guide/ras.rst
14166 F:      drivers/ras/
14167 F:      include/linux/ras.h
14168 F:      include/ras/ras_event.h
14169
14170 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14171 L:      [email protected]
14172 S:      Orphan
14173 F:      drivers/net/wireless/ray*
14174
14175 RCMM REMOTE CONTROLS DECODER
14176 M:      Patrick Lerda <[email protected]>
14177 S:      Maintained
14178 F:      drivers/media/rc/ir-rcmm-decoder.c
14179
14180 RCUTORTURE TEST FRAMEWORK
14181 M:      "Paul E. McKenney" <[email protected]>
14182 M:      Josh Triplett <[email protected]>
14183 R:      Steven Rostedt <[email protected]>
14184 R:      Mathieu Desnoyers <[email protected]>
14185 R:      Lai Jiangshan <[email protected]>
14186 L:      [email protected]
14187 S:      Supported
14188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14189 F:      tools/testing/selftests/rcutorture
14190
14191 RDC R-321X SoC
14192 M:      Florian Fainelli <[email protected]>
14193 S:      Maintained
14194
14195 RDC R6040 FAST ETHERNET DRIVER
14196 M:      Florian Fainelli <[email protected]>
14197 L:      [email protected]
14198 S:      Maintained
14199 F:      drivers/net/ethernet/rdc/r6040.c
14200
14201 RDMAVT - RDMA verbs software
14202 M:      Dennis Dalessandro <[email protected]>
14203 M:      Mike Marciniszyn <[email protected]>
14204 L:      [email protected]
14205 S:      Supported
14206 F:      drivers/infiniband/sw/rdmavt
14207
14208 RDS - RELIABLE DATAGRAM SOCKETS
14209 M:      Santosh Shilimkar <[email protected]>
14210 L:      [email protected]
14211 L:      [email protected]
14212 L:      [email protected] (moderated for non-subscribers)
14213 S:      Supported
14214 W:      https://oss.oracle.com/projects/rds/
14215 F:      Documentation/networking/rds.txt
14216 F:      net/rds/
14217
14218 RDT - RESOURCE ALLOCATION
14219 M:      Fenghua Yu <[email protected]>
14220 M:      Reinette Chatre <[email protected]>
14221 L:      [email protected]
14222 S:      Supported
14223 F:      Documentation/x86/resctrl*
14224 F:      arch/x86/include/asm/resctrl_sched.h
14225 F:      arch/x86/kernel/cpu/resctrl/
14226 F:      tools/testing/selftests/resctrl/
14227
14228 READ-COPY UPDATE (RCU)
14229 M:      "Paul E. McKenney" <[email protected]>
14230 M:      Josh Triplett <[email protected]>
14231 R:      Steven Rostedt <[email protected]>
14232 R:      Mathieu Desnoyers <[email protected]>
14233 R:      Lai Jiangshan <[email protected]>
14234 R:      Joel Fernandes <[email protected]>
14235 L:      [email protected]
14236 S:      Supported
14237 W:      http://www.rdrop.com/users/paulmck/RCU/
14238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14239 F:      Documentation/RCU/
14240 F:      include/linux/rcu*
14241 F:      kernel/rcu/
14242 X:      Documentation/RCU/torture.txt
14243 X:      include/linux/srcu*.h
14244 X:      kernel/rcu/srcu*.c
14245
14246 REAL TIME CLOCK (RTC) SUBSYSTEM
14247 M:      Alessandro Zummo <[email protected]>
14248 M:      Alexandre Belloni <[email protected]>
14249 L:      [email protected]
14250 S:      Maintained
14251 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14253 F:      Documentation/admin-guide/rtc.rst
14254 F:      Documentation/devicetree/bindings/rtc/
14255 F:      drivers/rtc/
14256 F:      include/linux/platform_data/rtc-*
14257 F:      include/linux/rtc.h
14258 F:      include/linux/rtc/
14259 F:      include/uapi/linux/rtc.h
14260 F:      tools/testing/selftests/rtc/
14261
14262 REALTEK AUDIO CODECS
14263 M:      Oder Chiou <[email protected]>
14264 S:      Maintained
14265 F:      include/sound/rt*.h
14266 F:      sound/soc/codecs/rt*
14267
14268 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14269 M:      Linus Walleij <[email protected]>
14270 S:      Maintained
14271 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14272 F:      drivers/net/dsa/realtek-smi*
14273 F:      drivers/net/dsa/rtl83*
14274
14275 REALTEK WIRELESS DRIVER (rtlwifi family)
14276 M:      Ping-Ke Shih <[email protected]>
14277 L:      [email protected]
14278 S:      Maintained
14279 W:      http://wireless.kernel.org/
14280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14281 F:      drivers/net/wireless/realtek/rtlwifi/
14282
14283 REALTEK WIRELESS DRIVER (rtw88)
14284 M:      Yan-Hsuan Chuang <[email protected]>
14285 L:      [email protected]
14286 S:      Maintained
14287 F:      drivers/net/wireless/realtek/rtw88/
14288
14289 REDPINE WIRELESS DRIVER
14290 M:      Amitkumar Karwar <[email protected]>
14291 M:      Siva Rebbagondla <[email protected]>
14292 L:      [email protected]
14293 S:      Maintained
14294 F:      drivers/net/wireless/rsi/
14295
14296 REGISTER MAP ABSTRACTION
14297 M:      Mark Brown <[email protected]>
14298 L:      [email protected]
14299 S:      Supported
14300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14301 F:      Documentation/devicetree/bindings/regmap/
14302 F:      drivers/base/regmap/
14303 F:      include/linux/regmap.h
14304
14305 REISERFS FILE SYSTEM
14306 L:      [email protected]
14307 S:      Supported
14308 F:      fs/reiserfs/
14309
14310 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14311 M:      Ohad Ben-Cohen <[email protected]>
14312 M:      Bjorn Andersson <[email protected]>
14313 L:      [email protected]
14314 S:      Maintained
14315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14316 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14317 F:      Documentation/devicetree/bindings/remoteproc/
14318 F:      Documentation/remoteproc.txt
14319 F:      drivers/remoteproc/
14320 F:      include/linux/remoteproc.h
14321 F:      include/linux/remoteproc/
14322
14323 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14324 M:      Ohad Ben-Cohen <[email protected]>
14325 M:      Bjorn Andersson <[email protected]>
14326 L:      [email protected]
14327 S:      Maintained
14328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14329 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14330 F:      Documentation/rpmsg.txt
14331 F:      drivers/rpmsg/
14332 F:      include/linux/rpmsg.h
14333 F:      include/linux/rpmsg/
14334 F:      include/uapi/linux/rpmsg.h
14335 F:      samples/rpmsg/
14336
14337 RENESAS CLOCK DRIVERS
14338 M:      Geert Uytterhoeven <[email protected]>
14339 L:      [email protected]
14340 S:      Supported
14341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14342 F:      drivers/clk/renesas/
14343
14344 RENESAS EMEV2 I2C DRIVER
14345 M:      Wolfram Sang <[email protected]>
14346 S:      Supported
14347 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14348 F:      drivers/i2c/busses/i2c-emev2.c
14349
14350 RENESAS ETHERNET DRIVERS
14351 R:      Sergei Shtylyov <[email protected]>
14352 L:      [email protected]
14353 L:      [email protected]
14354 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14355 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14356 F:      drivers/net/ethernet/renesas/
14357 F:      include/linux/sh_eth.h
14358
14359 RENESAS R-CAR GYROADC DRIVER
14360 M:      Marek Vasut <[email protected]>
14361 L:      [email protected]
14362 S:      Supported
14363 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14364 F:      drivers/iio/adc/rcar-gyroadc.c
14365
14366 RENESAS R-CAR I2C DRIVERS
14367 M:      Wolfram Sang <[email protected]>
14368 S:      Supported
14369 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14370 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14371 F:      drivers/i2c/busses/i2c-rcar.c
14372 F:      drivers/i2c/busses/i2c-sh_mobile.c
14373
14374 RENESAS RIIC DRIVER
14375 M:      Chris Brandt <[email protected]>
14376 S:      Supported
14377 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14378 F:      drivers/i2c/busses/i2c-riic.c
14379
14380 RENESAS USB PHY DRIVER
14381 M:      Yoshihiro Shimoda <[email protected]>
14382 L:      [email protected]
14383 S:      Maintained
14384 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14385
14386 RESET CONTROLLER FRAMEWORK
14387 M:      Philipp Zabel <[email protected]>
14388 S:      Maintained
14389 T:      git git://git.pengutronix.de/git/pza/linux
14390 F:      Documentation/devicetree/bindings/reset/
14391 F:      drivers/reset/
14392 F:      include/dt-bindings/reset/
14393 F:      include/linux/reset-controller.h
14394 F:      include/linux/reset.h
14395 F:      include/linux/reset/
14396 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14397
14398 RESTARTABLE SEQUENCES SUPPORT
14399 M:      Mathieu Desnoyers <[email protected]>
14400 M:      Peter Zijlstra <[email protected]>
14401 M:      "Paul E. McKenney" <[email protected]>
14402 M:      Boqun Feng <[email protected]>
14403 L:      [email protected]
14404 S:      Supported
14405 F:      include/trace/events/rseq.h
14406 F:      include/uapi/linux/rseq.h
14407 F:      kernel/rseq.c
14408 F:      tools/testing/selftests/rseq/
14409
14410 RFKILL
14411 M:      Johannes Berg <[email protected]>
14412 L:      [email protected]
14413 S:      Maintained
14414 W:      http://wireless.kernel.org/
14415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14417 F:      Documentation/ABI/stable/sysfs-class-rfkill
14418 F:      Documentation/driver-api/rfkill.rst
14419 F:      include/linux/rfkill.h
14420 F:      include/uapi/linux/rfkill.h
14421 F:      net/rfkill/
14422
14423 RHASHTABLE
14424 M:      Thomas Graf <[email protected]>
14425 M:      Herbert Xu <[email protected]>
14426 L:      [email protected]
14427 S:      Maintained
14428 F:      include/linux/rhashtable-types.h
14429 F:      include/linux/rhashtable.h
14430 F:      lib/rhashtable.c
14431 F:      lib/test_rhashtable.c
14432
14433 RICOH R5C592 MEMORYSTICK DRIVER
14434 M:      Maxim Levitsky <[email protected]>
14435 S:      Maintained
14436 F:      drivers/memstick/host/r592.*
14437
14438 RICOH SMARTMEDIA/XD DRIVER
14439 M:      Maxim Levitsky <[email protected]>
14440 S:      Maintained
14441 F:      drivers/mtd/nand/raw/r852.c
14442 F:      drivers/mtd/nand/raw/r852.h
14443
14444 RISC-V ARCHITECTURE
14445 M:      Paul Walmsley <[email protected]>
14446 M:      Palmer Dabbelt <[email protected]>
14447 M:      Albert Ou <[email protected]>
14448 L:      [email protected]
14449 S:      Supported
14450 P:      Documentation/riscv/patch-acceptance.rst
14451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14452 F:      arch/riscv/
14453 N:      riscv
14454 K:      riscv
14455
14456 ROCCAT DRIVERS
14457 M:      Stefan Achatz <[email protected]>
14458 S:      Maintained
14459 W:      http://sourceforge.net/projects/roccat/
14460 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14461 F:      drivers/hid/hid-roccat*
14462 F:      include/linux/hid-roccat*
14463
14464 ROCKCHIP ISP V1 DRIVER
14465 M:      Helen Koike <[email protected]>
14466 L:      [email protected]
14467 S:      Maintained
14468 F:      drivers/staging/media/rkisp1/
14469
14470 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14471 M:      Jacob Chen <[email protected]>
14472 M:      Ezequiel Garcia <[email protected]>
14473 L:      [email protected]
14474 S:      Maintained
14475 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
14476 F:      drivers/media/platform/rockchip/rga/
14477
14478 ROCKER DRIVER
14479 M:      Jiri Pirko <[email protected]>
14480 L:      [email protected]
14481 S:      Supported
14482 F:      drivers/net/ethernet/rocker/
14483
14484 ROCKETPORT DRIVER
14485 S:      Maintained
14486 W:      http://www.comtrol.com
14487 F:      Documentation/driver-api/serial/rocket.rst
14488 F:      drivers/tty/rocket*
14489
14490 ROCKETPORT EXPRESS/INFINITY DRIVER
14491 M:      Kevin Cernekee <[email protected]>
14492 L:      [email protected]
14493 S:      Odd Fixes
14494 F:      drivers/tty/serial/rp2.*
14495
14496 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14497 M:      Tomasz Duszynski <[email protected]>
14498 S:      Maintained
14499 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14500 F:      drivers/iio/light/bh1750.c
14501
14502 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14503 M:      Marek Vasut <[email protected]>
14504 L:      [email protected]
14505 L:      [email protected]
14506 S:      Supported
14507 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14508 F:      drivers/gpio/gpio-bd9571mwv.c
14509 F:      drivers/mfd/bd9571mwv.c
14510 F:      drivers/regulator/bd9571mwv-regulator.c
14511 F:      include/linux/mfd/bd9571mwv.h
14512
14513 ROSE NETWORK LAYER
14514 M:      Ralf Baechle <[email protected]>
14515 L:      [email protected]
14516 S:      Maintained
14517 W:      http://www.linux-ax25.org/
14518 F:      include/net/rose.h
14519 F:      include/uapi/linux/rose.h
14520 F:      net/rose/
14521
14522 ROTATION DRIVER FOR ALLWINNER A83T
14523 M:      Jernej Skrabec <[email protected]>
14524 L:      [email protected]
14525 S:      Maintained
14526 T:      git git://linuxtv.org/media_tree.git
14527 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14528 F:      drivers/media/platform/sunxi/sun8i-rotate/
14529
14530 RTL2830 MEDIA DRIVER
14531 M:      Antti Palosaari <[email protected]>
14532 L:      [email protected]
14533 S:      Maintained
14534 W:      https://linuxtv.org
14535 W:      http://palosaari.fi/linux/
14536 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14537 T:      git git://linuxtv.org/anttip/media_tree.git
14538 F:      drivers/media/dvb-frontends/rtl2830*
14539
14540 RTL2832 MEDIA DRIVER
14541 M:      Antti Palosaari <[email protected]>
14542 L:      [email protected]
14543 S:      Maintained
14544 W:      https://linuxtv.org
14545 W:      http://palosaari.fi/linux/
14546 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14547 T:      git git://linuxtv.org/anttip/media_tree.git
14548 F:      drivers/media/dvb-frontends/rtl2832*
14549
14550 RTL2832_SDR MEDIA DRIVER
14551 M:      Antti Palosaari <[email protected]>
14552 L:      [email protected]
14553 S:      Maintained
14554 W:      https://linuxtv.org
14555 W:      http://palosaari.fi/linux/
14556 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14557 T:      git git://linuxtv.org/anttip/media_tree.git
14558 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14559
14560 RTL8180 WIRELESS DRIVER
14561 L:      [email protected]
14562 S:      Orphan
14563 W:      http://wireless.kernel.org/
14564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14565 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14566
14567 RTL8187 WIRELESS DRIVER
14568 M:      Herton Ronaldo Krzesinski <[email protected]>
14569 M:      Hin-Tak Leung <[email protected]>
14570 M:      Larry Finger <[email protected]>
14571 L:      [email protected]
14572 S:      Maintained
14573 W:      http://wireless.kernel.org/
14574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14575 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14576
14577 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14578 M:      Jes Sorensen <[email protected]>
14579 L:      [email protected]
14580 S:      Maintained
14581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14582 F:      drivers/net/wireless/realtek/rtl8xxxu/
14583
14584 RXRPC SOCKETS (AF_RXRPC)
14585 M:      David Howells <[email protected]>
14586 L:      [email protected]
14587 S:      Supported
14588 W:      https://www.infradead.org/~dhowells/kafs/
14589 F:      Documentation/networking/rxrpc.txt
14590 F:      include/keys/rxrpc-type.h
14591 F:      include/net/af_rxrpc.h
14592 F:      include/trace/events/rxrpc.h
14593 F:      include/uapi/linux/rxrpc.h
14594 F:      net/rxrpc/
14595
14596 S3 SAVAGE FRAMEBUFFER DRIVER
14597 M:      Antonino Daplas <[email protected]>
14598 L:      [email protected]
14599 S:      Maintained
14600 F:      drivers/video/fbdev/savage/
14601
14602 S390
14603 M:      Heiko Carstens <[email protected]>
14604 M:      Vasily Gorbik <[email protected]>
14605 M:      Christian Borntraeger <[email protected]>
14606 L:      [email protected]
14607 S:      Supported
14608 W:      http://www.ibm.com/developerworks/linux/linux390/
14609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14610 F:      Documentation/driver-api/s390-drivers.rst
14611 F:      Documentation/s390/
14612 F:      arch/s390/
14613 F:      drivers/s390/
14614
14615 S390 COMMON I/O LAYER
14616 M:      Vineeth Vijayan <[email protected]>
14617 M:      Peter Oberparleiter <[email protected]>
14618 L:      [email protected]
14619 S:      Supported
14620 W:      http://www.ibm.com/developerworks/linux/linux390/
14621 F:      drivers/s390/cio/
14622
14623 S390 DASD DRIVER
14624 M:      Stefan Haberland <[email protected]>
14625 M:      Jan Hoeppner <[email protected]>
14626 L:      [email protected]
14627 S:      Supported
14628 W:      http://www.ibm.com/developerworks/linux/linux390/
14629 F:      block/partitions/ibm.c
14630 F:      drivers/s390/block/dasd*
14631
14632 S390 IOMMU (PCI)
14633 M:      Gerald Schaefer <[email protected]>
14634 L:      [email protected]
14635 S:      Supported
14636 W:      http://www.ibm.com/developerworks/linux/linux390/
14637 F:      drivers/iommu/s390-iommu.c
14638
14639 S390 IUCV NETWORK LAYER
14640 M:      Julian Wiedmann <[email protected]>
14641 M:      Ursula Braun <[email protected]>
14642 L:      [email protected]
14643 S:      Supported
14644 W:      http://www.ibm.com/developerworks/linux/linux390/
14645 F:      drivers/s390/net/*iucv*
14646 F:      include/net/iucv/
14647 F:      net/iucv/
14648
14649 S390 NETWORK DRIVERS
14650 M:      Julian Wiedmann <[email protected]>
14651 M:      Ursula Braun <[email protected]>
14652 L:      [email protected]
14653 S:      Supported
14654 W:      http://www.ibm.com/developerworks/linux/linux390/
14655 F:      drivers/s390/net/
14656
14657 S390 PCI SUBSYSTEM
14658 M:      Niklas Schnelle <[email protected]>
14659 M:      Gerald Schaefer <[email protected]>
14660 L:      [email protected]
14661 S:      Supported
14662 W:      http://www.ibm.com/developerworks/linux/linux390/
14663 F:      arch/s390/pci/
14664 F:      drivers/pci/hotplug/s390_pci_hpc.c
14665
14666 S390 VFIO AP DRIVER
14667 M:      Tony Krowiak <[email protected]>
14668 M:      Pierre Morel <[email protected]>
14669 M:      Halil Pasic <[email protected]>
14670 L:      [email protected]
14671 S:      Supported
14672 W:      http://www.ibm.com/developerworks/linux/linux390/
14673 F:      Documentation/s390/vfio-ap.rst
14674 F:      drivers/s390/crypto/vfio_ap_drv.c
14675 F:      drivers/s390/crypto/vfio_ap_ops.c
14676 F:      drivers/s390/crypto/vfio_ap_private.h
14677
14678 S390 VFIO-CCW DRIVER
14679 M:      Cornelia Huck <[email protected]>
14680 M:      Eric Farman <[email protected]>
14681 R:      Halil Pasic <[email protected]>
14682 L:      [email protected]
14683 L:      [email protected]
14684 S:      Supported
14685 F:      Documentation/s390/vfio-ccw.rst
14686 F:      drivers/s390/cio/vfio_ccw*
14687 F:      include/uapi/linux/vfio_ccw.h
14688
14689 S390 ZCRYPT DRIVER
14690 M:      Harald Freudenberger <[email protected]>
14691 L:      [email protected]
14692 S:      Supported
14693 W:      http://www.ibm.com/developerworks/linux/linux390/
14694 F:      drivers/s390/crypto/
14695
14696 S390 ZFCP DRIVER
14697 M:      Steffen Maier <[email protected]>
14698 M:      Benjamin Block <[email protected]>
14699 L:      [email protected]
14700 S:      Supported
14701 W:      http://www.ibm.com/developerworks/linux/linux390/
14702 F:      drivers/s390/scsi/zfcp_*
14703
14704 S3C24XX SD/MMC Driver
14705 M:      Ben Dooks <[email protected]>
14706 L:      [email protected] (moderated for non-subscribers)
14707 S:      Supported
14708 F:      drivers/mmc/host/s3cmci.*
14709
14710 SAA6588 RDS RECEIVER DRIVER
14711 M:      Hans Verkuil <[email protected]>
14712 L:      [email protected]
14713 S:      Odd Fixes
14714 W:      https://linuxtv.org
14715 T:      git git://linuxtv.org/media_tree.git
14716 F:      drivers/media/i2c/saa6588*
14717
14718 SAA7134 VIDEO4LINUX DRIVER
14719 M:      Mauro Carvalho Chehab <[email protected]>
14720 L:      [email protected]
14721 S:      Odd fixes
14722 W:      https://linuxtv.org
14723 T:      git git://linuxtv.org/media_tree.git
14724 F:      Documentation/media/v4l-drivers/saa7134*
14725 F:      drivers/media/pci/saa7134/
14726
14727 SAA7146 VIDEO4LINUX-2 DRIVER
14728 M:      Hans Verkuil <[email protected]>
14729 L:      [email protected]
14730 S:      Maintained
14731 T:      git git://linuxtv.org/media_tree.git
14732 F:      drivers/media/common/saa7146/
14733 F:      drivers/media/pci/saa7146/
14734 F:      include/media/drv-intf/saa7146*
14735
14736 SAFESETID SECURITY MODULE
14737 M:      Micah Morton <[email protected]>
14738 S:      Supported
14739 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14740 F:      security/safesetid/
14741
14742 SAMSUNG AUDIO (ASoC) DRIVERS
14743 M:      Krzysztof Kozlowski <[email protected]>
14744 M:      Sangbeom Kim <[email protected]>
14745 M:      Sylwester Nawrocki <[email protected]>
14746 L:      [email protected] (moderated for non-subscribers)
14747 S:      Supported
14748 F:      Documentation/devicetree/bindings/sound/samsung*
14749 F:      sound/soc/samsung/
14750
14751 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14752 M:      Krzysztof Kozlowski <[email protected]>
14753 L:      [email protected]
14754 L:      [email protected]
14755 S:      Maintained
14756 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14757 F:      drivers/crypto/exynos-rng.c
14758
14759 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14760 M:      Łukasz Stelmach <[email protected]>
14761 L:      [email protected]
14762 S:      Maintained
14763 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14764 F:      drivers/char/hw_random/exynos-trng.c
14765
14766 SAMSUNG FRAMEBUFFER DRIVER
14767 M:      Jingoo Han <[email protected]>
14768 L:      [email protected]
14769 S:      Maintained
14770 F:      drivers/video/fbdev/s3c-fb.c
14771
14772 SAMSUNG LAPTOP DRIVER
14773 M:      Corentin Chary <[email protected]>
14774 L:      [email protected]
14775 S:      Maintained
14776 F:      drivers/platform/x86/samsung-laptop.c
14777
14778 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14779 M:      Sangbeom Kim <[email protected]>
14780 M:      Krzysztof Kozlowski <[email protected]>
14781 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14782 L:      [email protected]
14783 L:      [email protected]
14784 S:      Supported
14785 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14786 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14787 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14788 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14789 F:      drivers/clk/clk-s2mps11.c
14790 F:      drivers/mfd/sec*.c
14791 F:      drivers/regulator/s2m*.c
14792 F:      drivers/regulator/s5m*.c
14793 F:      drivers/rtc/rtc-s5m.c
14794 F:      include/linux/mfd/samsung/
14795
14796 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14797 M:      Sylwester Nawrocki <[email protected]>
14798 L:      [email protected]
14799 L:      [email protected] (moderated for non-subscribers)
14800 S:      Maintained
14801 F:      drivers/media/platform/s3c-camif/
14802 F:      include/media/drv-intf/s3c_camif.h
14803
14804 SAMSUNG S3FWRN5 NFC DRIVER
14805 M:      Robert Baldyga <[email protected]>
14806 M:      Krzysztof Opasiak <[email protected]>
14807 L:      [email protected] (moderated for non-subscribers)
14808 S:      Supported
14809 F:      drivers/nfc/s3fwrn5
14810
14811 SAMSUNG S5C73M3 CAMERA DRIVER
14812 M:      Kyungmin Park <[email protected]>
14813 M:      Andrzej Hajda <[email protected]>
14814 L:      [email protected]
14815 S:      Supported
14816 F:      drivers/media/i2c/s5c73m3/*
14817
14818 SAMSUNG S5K5BAF CAMERA DRIVER
14819 M:      Kyungmin Park <[email protected]>
14820 M:      Andrzej Hajda <[email protected]>
14821 L:      [email protected]
14822 S:      Supported
14823 F:      drivers/media/i2c/s5k5baf.c
14824
14825 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14826 M:      Krzysztof Kozlowski <[email protected]>
14827 M:      Vladimir Zapolskiy <[email protected]>
14828 M:      Kamil Konieczny <[email protected]>
14829 L:      [email protected]
14830 L:      [email protected]
14831 S:      Maintained
14832 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
14833 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
14834 F:      drivers/crypto/s5p-sss.c
14835
14836 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14837 M:      Kyungmin Park <[email protected]>
14838 M:      Sylwester Nawrocki <[email protected]>
14839 L:      [email protected]
14840 S:      Supported
14841 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14842 F:      drivers/media/platform/exynos4-is/
14843
14844 SAMSUNG SOC CLOCK DRIVERS
14845 M:      Sylwester Nawrocki <[email protected]>
14846 M:      Tomasz Figa <[email protected]>
14847 M:      Chanwoo Choi <[email protected]>
14848 L:      [email protected] (moderated for non-subscribers)
14849 S:      Supported
14850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14851 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14852 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14853 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14854 F:      drivers/clk/samsung/
14855 F:      include/dt-bindings/clock/exynos*.h
14856
14857 SAMSUNG SPI DRIVERS
14858 M:      Kukjin Kim <[email protected]>
14859 M:      Krzysztof Kozlowski <[email protected]>
14860 M:      Andi Shyti <[email protected]>
14861 L:      [email protected]
14862 L:      [email protected] (moderated for non-subscribers)
14863 S:      Maintained
14864 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14865 F:      drivers/spi/spi-s3c*
14866 F:      include/linux/platform_data/spi-s3c64xx.h
14867
14868 SAMSUNG SXGBE DRIVERS
14869 M:      Byungho An <[email protected]>
14870 L:      [email protected]
14871 S:      Supported
14872 F:      drivers/net/ethernet/samsung/sxgbe/
14873
14874 SAMSUNG THERMAL DRIVER
14875 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14876 L:      [email protected]
14877 L:      [email protected]
14878 S:      Supported
14879 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14880 F:      drivers/thermal/samsung/
14881
14882 SAMSUNG USB2 PHY DRIVER
14883 M:      Kamil Debski <[email protected]>
14884 M:      Sylwester Nawrocki <[email protected]>
14885 L:      [email protected]
14886 S:      Supported
14887 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14888 F:      Documentation/driver-api/phy/samsung-usb2.rst
14889 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14890 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14891 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14892 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14893 F:      drivers/phy/samsung/phy-samsung-usb2.c
14894 F:      drivers/phy/samsung/phy-samsung-usb2.h
14895
14896 SC1200 WDT DRIVER
14897 M:      Zwane Mwaikambo <[email protected]>
14898 S:      Maintained
14899 F:      drivers/watchdog/sc1200wdt.c
14900
14901 SCHEDULER
14902 M:      Ingo Molnar <[email protected]>
14903 M:      Peter Zijlstra <[email protected]>
14904 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
14905 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
14906 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
14907 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
14908 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
14909 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
14910 L:      [email protected]
14911 S:      Maintained
14912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14913 F:      include/linux/preempt.h
14914 F:      include/linux/sched.h
14915 F:      include/linux/wait.h
14916 F:      include/uapi/linux/sched.h
14917 F:      kernel/sched/
14918
14919 SCR24X CHIP CARD INTERFACE DRIVER
14920 M:      Lubomir Rintel <[email protected]>
14921 S:      Supported
14922 F:      drivers/char/pcmcia/scr24x_cs.c
14923
14924 SCSI CDROM DRIVER
14925 M:      Jens Axboe <[email protected]>
14926 L:      [email protected]
14927 S:      Maintained
14928 W:      http://www.kernel.dk
14929 F:      drivers/scsi/sr*
14930
14931 SCSI RDMA PROTOCOL (SRP) INITIATOR
14932 M:      Bart Van Assche <[email protected]>
14933 L:      [email protected]
14934 S:      Supported
14935 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14936 F:      drivers/infiniband/ulp/srp/
14937 F:      include/scsi/srp.h
14938
14939 SCSI RDMA PROTOCOL (SRP) TARGET
14940 M:      Bart Van Assche <[email protected]>
14941 L:      [email protected]
14942 L:      [email protected]
14943 S:      Supported
14944 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14945 F:      drivers/infiniband/ulp/srpt/
14946
14947 SCSI SG DRIVER
14948 M:      Doug Gilbert <[email protected]>
14949 L:      [email protected]
14950 S:      Maintained
14951 W:      http://sg.danny.cz/sg
14952 F:      Documentation/scsi/scsi-generic.rst
14953 F:      drivers/scsi/sg.c
14954 F:      include/scsi/sg.h
14955
14956 SCSI SUBSYSTEM
14957 M:      "James E.J. Bottomley" <[email protected]>
14958 M:      "Martin K. Petersen" <[email protected]>
14959 L:      [email protected]
14960 S:      Maintained
14961 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14964 F:      Documentation/devicetree/bindings/scsi/
14965 F:      drivers/scsi/
14966 F:      include/scsi/
14967
14968 SCSI TAPE DRIVER
14969 M:      Kai Mäkisara <[email protected]>
14970 L:      [email protected]
14971 S:      Maintained
14972 F:      Documentation/scsi/st.rst
14973 F:      drivers/scsi/st.*
14974 F:      drivers/scsi/st_*.h
14975
14976 SCSI TARGET SUBSYSTEM
14977 M:      "Martin K. Petersen" <[email protected]>
14978 L:      [email protected]
14979 L:      [email protected]
14980 S:      Supported
14981 W:      http://www.linux-iscsi.org
14982 Q:      https://patchwork.kernel.org/project/target-devel/list/
14983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14984 F:      Documentation/target/
14985 F:      drivers/target/
14986 F:      include/target/
14987
14988 SCTP PROTOCOL
14989 M:      Vlad Yasevich <[email protected]>
14990 M:      Neil Horman <[email protected]>
14991 M:      Marcelo Ricardo Leitner <[email protected]>
14992 L:      [email protected]
14993 S:      Maintained
14994 W:      http://lksctp.sourceforge.net
14995 F:      Documentation/networking/sctp.txt
14996 F:      include/linux/sctp.h
14997 F:      include/net/sctp/
14998 F:      include/uapi/linux/sctp.h
14999 F:      net/sctp/
15000
15001 SCx200 CPU SUPPORT
15002 M:      Jim Cromie <[email protected]>
15003 S:      Odd Fixes
15004 F:      Documentation/i2c/busses/scx200_acb.rst
15005 F:      arch/x86/platform/scx200/
15006 F:      drivers/i2c/busses/scx200*
15007 F:      drivers/mtd/maps/scx200_docflash.c
15008 F:      drivers/watchdog/scx200_wdt.c
15009 F:      include/linux/scx200.h
15010
15011 SCx200 GPIO DRIVER
15012 M:      Jim Cromie <[email protected]>
15013 S:      Maintained
15014 F:      drivers/char/scx200_gpio.c
15015 F:      include/linux/scx200_gpio.h
15016
15017 SCx200 HRT CLOCKSOURCE DRIVER
15018 M:      Jim Cromie <[email protected]>
15019 S:      Maintained
15020 F:      drivers/clocksource/scx200_hrt.c
15021
15022 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15023 M:      Sascha Sommer <[email protected]>
15024 L:      [email protected] (subscribers-only)
15025 S:      Maintained
15026 F:      drivers/mmc/host/sdricoh_cs.c
15027
15028 SECO BOARDS CEC DRIVER
15029 M:      Ettore Chimenti <[email protected]>
15030 S:      Maintained
15031 F:      drivers/media/platform/seco-cec/seco-cec.c
15032 F:      drivers/media/platform/seco-cec/seco-cec.h
15033
15034 SECURE COMPUTING
15035 M:      Kees Cook <[email protected]>
15036 R:      Andy Lutomirski <[email protected]>
15037 R:      Will Drewry <[email protected]>
15038 S:      Supported
15039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15040 F:      Documentation/userspace-api/seccomp_filter.rst
15041 F:      include/linux/seccomp.h
15042 F:      include/uapi/linux/seccomp.h
15043 F:      kernel/seccomp.c
15044 F:      tools/testing/selftests/kselftest_harness.h
15045 F:      tools/testing/selftests/seccomp/*
15046 K:      \bsecure_computing
15047 K:      \bTIF_SECCOMP\b
15048
15049 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15050 M:      Al Cooper <[email protected]>
15051 L:      [email protected]
15052 L:      [email protected]
15053 S:      Maintained
15054 F:      drivers/mmc/host/sdhci-brcmstb*
15055
15056 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15057 M:      Adrian Hunter <[email protected]>
15058 L:      [email protected]
15059 S:      Maintained
15060 F:      drivers/mmc/host/sdhci*
15061 F:      include/linux/mmc/sdhci*
15062
15063 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15064 M:      Ludovic Desroches <[email protected]>
15065 L:      [email protected]
15066 S:      Supported
15067 F:      drivers/mmc/host/sdhci-of-at91.c
15068
15069 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15070 M:      Ben Dooks <[email protected]>
15071 M:      Jaehoon Chung <[email protected]>
15072 L:      [email protected]
15073 S:      Maintained
15074 F:      drivers/mmc/host/sdhci-s3c*
15075
15076 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15077 M:      Viresh Kumar <[email protected]>
15078 L:      [email protected]
15079 S:      Maintained
15080 F:      drivers/mmc/host/sdhci-spear.c
15081
15082 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15083 M:      Kishon Vijay Abraham I <[email protected]>
15084 L:      [email protected]
15085 S:      Maintained
15086 F:      drivers/mmc/host/sdhci-omap.c
15087
15088 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15089 M:      Jonathan Derrick <[email protected]>
15090 M:      Revanth Rajashekar <[email protected]>
15091 L:      [email protected]
15092 S:      Supported
15093 F:      block/opal_proto.h
15094 F:      block/sed*
15095 F:      include/linux/sed*
15096 F:      include/uapi/linux/sed*
15097
15098 SECURITY CONTACT
15099 M:      Security Officers <[email protected]>
15100 S:      Supported
15101
15102 SECURITY SUBSYSTEM
15103 M:      James Morris <[email protected]>
15104 M:      "Serge E. Hallyn" <[email protected]>
15105 L:      [email protected] (suggested Cc:)
15106 S:      Supported
15107 W:      http://kernsec.org/
15108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15109 F:      security/
15110 X:      security/selinux/
15111
15112 SELINUX SECURITY MODULE
15113 M:      Paul Moore <[email protected]>
15114 M:      Stephen Smalley <[email protected]>
15115 M:      Eric Paris <[email protected]>
15116 L:      [email protected]
15117 S:      Supported
15118 W:      https://selinuxproject.org
15119 W:      https://github.com/SELinuxProject
15120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15121 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15122 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15123 F:      Documentation/admin-guide/LSM/SELinux.rst
15124 F:      include/uapi/linux/selinux_netlink.h
15125 F:      scripts/selinux/
15126 F:      security/selinux/
15127
15128 SENSABLE PHANTOM
15129 M:      Jiri Slaby <[email protected]>
15130 S:      Maintained
15131 F:      drivers/misc/phantom.c
15132 F:      include/uapi/linux/phantom.h
15133
15134 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15135 M:      Tomasz Duszynski <[email protected]>
15136 S:      Maintained
15137 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15138 F:      drivers/iio/chemical/sps30.c
15139
15140 SERIAL DEVICE BUS
15141 M:      Rob Herring <[email protected]>
15142 L:      [email protected]
15143 S:      Maintained
15144 F:      Documentation/devicetree/bindings/serial/serial.yaml
15145 F:      drivers/tty/serdev/
15146 F:      include/linux/serdev.h
15147
15148 SERIAL DRIVERS
15149 M:      Greg Kroah-Hartman <[email protected]>
15150 L:      [email protected]
15151 S:      Maintained
15152 F:      Documentation/devicetree/bindings/serial/
15153 F:      drivers/tty/serial/
15154
15155 SERIAL IR RECEIVER
15156 M:      Sean Young <[email protected]>
15157 L:      [email protected]
15158 S:      Maintained
15159 F:      drivers/media/rc/serial_ir.c
15160
15161 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15162 M:      Srinivas Kandagatla <[email protected]>
15163 L:      [email protected] (moderated for non-subscribers)
15164 S:      Maintained
15165 F:      Documentation/devicetree/bindings/slimbus/
15166 F:      drivers/slimbus/
15167 F:      include/linux/slimbus.h
15168
15169 SFC NETWORK DRIVER
15170 M:      Solarflare linux maintainers <[email protected]>
15171 M:      Edward Cree <[email protected]>
15172 M:      Martin Habets <[email protected]>
15173 L:      [email protected]
15174 S:      Supported
15175 F:      drivers/net/ethernet/sfc/
15176
15177 SFF/SFP/SFP+ MODULE SUPPORT
15178 M:      Russell King <[email protected]>
15179 L:      [email protected]
15180 S:      Maintained
15181 F:      drivers/net/phy/phylink.c
15182 F:      drivers/net/phy/sfp*
15183 F:      include/linux/phylink.h
15184 F:      include/linux/sfp.h
15185 K:      phylink
15186
15187 SGI GRU DRIVER
15188 M:      Dimitri Sivanich <[email protected]>
15189 S:      Maintained
15190 F:      drivers/misc/sgi-gru/
15191
15192 SGI XP/XPC/XPNET DRIVER
15193 M:      Cliff Whickman <[email protected]>
15194 M:      Robin Holt <[email protected]>
15195 S:      Maintained
15196 F:      drivers/misc/sgi-xp/
15197
15198 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15199 M:      Ursula Braun <[email protected]>
15200 M:      Karsten Graul <[email protected]>
15201 L:      [email protected]
15202 S:      Supported
15203 W:      http://www.ibm.com/developerworks/linux/linux390/
15204 F:      net/smc/
15205
15206 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15207 M:      Linus Walleij <[email protected]>
15208 L:      [email protected]
15209 S:      Maintained
15210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15211 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15212 F:      drivers/iio/light/gp2ap002.c
15213
15214 SHARP RJ54N1CB0C SENSOR DRIVER
15215 M:      Jacopo Mondi <[email protected]>
15216 L:      [email protected]
15217 S:      Odd fixes
15218 T:      git git://linuxtv.org/media_tree.git
15219 F:      drivers/media/i2c/rj54n1cb0c.c
15220 F:      include/media/i2c/rj54n1cb0c.h
15221
15222 SH_VEU V4L2 MEM2MEM DRIVER
15223 L:      [email protected]
15224 S:      Orphan
15225 F:      drivers/media/platform/sh_veu.c
15226
15227 SH_VOU V4L2 OUTPUT DRIVER
15228 L:      [email protected]
15229 S:      Orphan
15230 F:      drivers/media/platform/sh_vou.c
15231 F:      include/media/drv-intf/sh_vou.h
15232
15233 SI2157 MEDIA DRIVER
15234 M:      Antti Palosaari <[email protected]>
15235 L:      [email protected]
15236 S:      Maintained
15237 W:      https://linuxtv.org
15238 W:      http://palosaari.fi/linux/
15239 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15240 T:      git git://linuxtv.org/anttip/media_tree.git
15241 F:      drivers/media/tuners/si2157*
15242
15243 SI2165 MEDIA DRIVER
15244 M:      Matthias Schwarzott <[email protected]>
15245 L:      [email protected]
15246 S:      Maintained
15247 W:      https://linuxtv.org
15248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15249 F:      drivers/media/dvb-frontends/si2165*
15250
15251 SI2168 MEDIA DRIVER
15252 M:      Antti Palosaari <[email protected]>
15253 L:      [email protected]
15254 S:      Maintained
15255 W:      https://linuxtv.org
15256 W:      http://palosaari.fi/linux/
15257 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15258 T:      git git://linuxtv.org/anttip/media_tree.git
15259 F:      drivers/media/dvb-frontends/si2168*
15260
15261 SI470X FM RADIO RECEIVER I2C DRIVER
15262 M:      Hans Verkuil <[email protected]>
15263 L:      [email protected]
15264 S:      Odd Fixes
15265 W:      https://linuxtv.org
15266 T:      git git://linuxtv.org/media_tree.git
15267 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15268
15269 SI470X FM RADIO RECEIVER USB DRIVER
15270 M:      Hans Verkuil <[email protected]>
15271 L:      [email protected]
15272 S:      Maintained
15273 W:      https://linuxtv.org
15274 T:      git git://linuxtv.org/media_tree.git
15275 F:      drivers/media/radio/si470x/radio-si470x-common.c
15276 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15277 F:      drivers/media/radio/si470x/radio-si470x.h
15278
15279 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15280 M:      Eduardo Valentin <[email protected]>
15281 L:      [email protected]
15282 S:      Odd Fixes
15283 W:      https://linuxtv.org
15284 T:      git git://linuxtv.org/media_tree.git
15285 F:      drivers/media/radio/si4713/si4713.?
15286
15287 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15288 M:      Eduardo Valentin <[email protected]>
15289 L:      [email protected]
15290 S:      Odd Fixes
15291 W:      https://linuxtv.org
15292 T:      git git://linuxtv.org/media_tree.git
15293 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15294
15295 SI4713 FM RADIO TRANSMITTER USB DRIVER
15296 M:      Hans Verkuil <[email protected]>
15297 L:      [email protected]
15298 S:      Maintained
15299 W:      https://linuxtv.org
15300 T:      git git://linuxtv.org/media_tree.git
15301 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15302
15303 SIANO DVB DRIVER
15304 M:      Mauro Carvalho Chehab <[email protected]>
15305 L:      [email protected]
15306 S:      Odd fixes
15307 W:      https://linuxtv.org
15308 T:      git git://linuxtv.org/media_tree.git
15309 F:      drivers/media/common/siano/
15310 F:      drivers/media/mmc/siano/
15311 F:      drivers/media/usb/siano/
15312 F:      drivers/media/usb/siano/
15313
15314 SIFIVE DRIVERS
15315 M:      Palmer Dabbelt <[email protected]>
15316 M:      Paul Walmsley <[email protected]>
15317 L:      [email protected]
15318 S:      Supported
15319 T:      git git://github.com/sifive/riscv-linux.git
15320 N:      sifive
15321 K:      [^@]sifive
15322
15323 SIFIVE FU540 SYSTEM-ON-CHIP
15324 M:      Paul Walmsley <[email protected]>
15325 M:      Palmer Dabbelt <[email protected]>
15326 L:      [email protected]
15327 S:      Supported
15328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15329 N:      fu540
15330 K:      fu540
15331
15332 SIFIVE PDMA DRIVER
15333 M:      Green Wan <[email protected]>
15334 S:      Maintained
15335 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15336 F:      drivers/dma/sf-pdma/
15337
15338 SILEAD TOUCHSCREEN DRIVER
15339 M:      Hans de Goede <[email protected]>
15340 L:      [email protected]
15341 L:      [email protected]
15342 S:      Maintained
15343 F:      drivers/input/touchscreen/silead.c
15344 F:      drivers/platform/x86/touchscreen_dmi.c
15345
15346 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15347 M:      Jérôme Pouiller <[email protected]>
15348 S:      Supported
15349 F:      drivers/staging/wfx/
15350
15351 SILICON MOTION SM712 FRAME BUFFER DRIVER
15352 M:      Sudip Mukherjee <[email protected]>
15353 M:      Teddy Wang <[email protected]>
15354 M:      Sudip Mukherjee <[email protected]>
15355 L:      [email protected]
15356 S:      Maintained
15357 F:      Documentation/fb/sm712fb.rst
15358 F:      drivers/video/fbdev/sm712*
15359
15360 SIMPLE FIRMWARE INTERFACE (SFI)
15361 S:      Obsolete
15362 W:      http://simplefirmware.org/
15363 F:      arch/x86/platform/sfi/
15364 F:      drivers/sfi/
15365 F:      include/linux/sfi*.h
15366
15367 SIMPLEFB FB DRIVER
15368 M:      Hans de Goede <[email protected]>
15369 L:      [email protected]
15370 S:      Maintained
15371 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15372 F:      drivers/video/fbdev/simplefb.c
15373 F:      include/linux/platform_data/simplefb.h
15374
15375 SIMTEC EB110ATX (Chalice CATS)
15376 M:      Vincent Sanders <[email protected]>
15377 M:      Simtec Linux Team <[email protected]>
15378 S:      Supported
15379 W:      http://www.simtec.co.uk/products/EB110ATX/
15380
15381 SIMTEC EB2410ITX (BAST)
15382 M:      Vincent Sanders <[email protected]>
15383 M:      Simtec Linux Team <[email protected]>
15384 S:      Supported
15385 W:      http://www.simtec.co.uk/products/EB2410ITX/
15386 F:      arch/arm/mach-s3c24xx/bast-ide.c
15387 F:      arch/arm/mach-s3c24xx/bast-irq.c
15388 F:      arch/arm/mach-s3c24xx/mach-bast.c
15389
15390 SIOX
15391 M:      Thorsten Scherer <[email protected]>
15392 M:      Uwe Kleine-König <[email protected]>
15393 R:      Pengutronix Kernel Team <[email protected]>
15394 S:      Supported
15395 F:      drivers/gpio/gpio-siox.c
15396 F:      drivers/siox/*
15397 F:      include/trace/events/siox.h
15398
15399 SIPHASH PRF ROUTINES
15400 M:      Jason A. Donenfeld <[email protected]>
15401 S:      Maintained
15402 F:      include/linux/siphash.h
15403 F:      lib/siphash.c
15404 F:      lib/test_siphash.c
15405
15406 SIS 190 ETHERNET DRIVER
15407 M:      Francois Romieu <[email protected]>
15408 L:      [email protected]
15409 S:      Maintained
15410 F:      drivers/net/ethernet/sis/sis190.c
15411
15412 SIS 900/7016 FAST ETHERNET DRIVER
15413 M:      Daniele Venzano <[email protected]>
15414 L:      [email protected]
15415 S:      Maintained
15416 W:      http://www.brownhat.org/sis900.html
15417 F:      drivers/net/ethernet/sis/sis900.*
15418
15419 SIS FRAMEBUFFER DRIVER
15420 M:      Thomas Winischhofer <[email protected]>
15421 S:      Maintained
15422 W:      http://www.winischhofer.net/linuxsisvga.shtml
15423 F:      Documentation/fb/sisfb.rst
15424 F:      drivers/video/fbdev/sis/
15425 F:      include/video/sisfb.h
15426
15427 SIS USB2VGA DRIVER
15428 M:      Thomas Winischhofer <[email protected]>
15429 S:      Maintained
15430 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15431 F:      drivers/usb/misc/sisusbvga/
15432
15433 SLAB ALLOCATOR
15434 M:      Christoph Lameter <[email protected]>
15435 M:      Pekka Enberg <[email protected]>
15436 M:      David Rientjes <[email protected]>
15437 M:      Joonsoo Kim <[email protected]>
15438 M:      Andrew Morton <[email protected]>
15439 L:      [email protected]
15440 S:      Maintained
15441 F:      include/linux/sl?b*.h
15442 F:      mm/sl?b*
15443
15444 SLEEPABLE READ-COPY UPDATE (SRCU)
15445 M:      Lai Jiangshan <[email protected]>
15446 M:      "Paul E. McKenney" <[email protected]>
15447 M:      Josh Triplett <[email protected]>
15448 R:      Steven Rostedt <[email protected]>
15449 R:      Mathieu Desnoyers <[email protected]>
15450 L:      [email protected]
15451 S:      Supported
15452 W:      http://www.rdrop.com/users/paulmck/RCU/
15453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15454 F:      include/linux/srcu*.h
15455 F:      kernel/rcu/srcu*.c
15456
15457 SMACK SECURITY MODULE
15458 M:      Casey Schaufler <[email protected]>
15459 L:      [email protected]
15460 S:      Maintained
15461 W:      http://schaufler-ca.com
15462 T:      git git://github.com/cschaufler/smack-next
15463 F:      Documentation/admin-guide/LSM/Smack.rst
15464 F:      security/smack/
15465
15466 SMC91x ETHERNET DRIVER
15467 M:      Nicolas Pitre <[email protected]>
15468 S:      Odd Fixes
15469 F:      drivers/net/ethernet/smsc/smc91x.*
15470
15471 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15472 M:      Sakari Ailus <[email protected]>
15473 L:      [email protected]
15474 S:      Maintained
15475 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15476 F:      drivers/media/i2c/smiapp-pll.c
15477 F:      drivers/media/i2c/smiapp-pll.h
15478 F:      drivers/media/i2c/smiapp/
15479 F:      include/uapi/linux/smiapp.h
15480
15481 SMM665 HARDWARE MONITOR DRIVER
15482 M:      Guenter Roeck <[email protected]>
15483 L:      [email protected]
15484 S:      Maintained
15485 F:      Documentation/hwmon/smm665.rst
15486 F:      drivers/hwmon/smm665.c
15487
15488 SMSC EMC2103 HARDWARE MONITOR DRIVER
15489 M:      Steve Glendinning <[email protected]>
15490 L:      [email protected]
15491 S:      Maintained
15492 F:      Documentation/hwmon/emc2103.rst
15493 F:      drivers/hwmon/emc2103.c
15494
15495 SMSC SCH5627 HARDWARE MONITOR DRIVER
15496 M:      Hans de Goede <[email protected]>
15497 L:      [email protected]
15498 S:      Supported
15499 F:      Documentation/hwmon/sch5627.rst
15500 F:      drivers/hwmon/sch5627.c
15501
15502 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15503 M:      Steve Glendinning <[email protected]>
15504 L:      [email protected]
15505 S:      Maintained
15506 F:      drivers/video/fbdev/smscufx.c
15507
15508 SMSC47B397 HARDWARE MONITOR DRIVER
15509 M:      Jean Delvare <[email protected]>
15510 L:      [email protected]
15511 S:      Maintained
15512 F:      Documentation/hwmon/smsc47b397.rst
15513 F:      drivers/hwmon/smsc47b397.c
15514
15515 SMSC911x ETHERNET DRIVER
15516 M:      Steve Glendinning <[email protected]>
15517 L:      [email protected]
15518 S:      Maintained
15519 F:      drivers/net/ethernet/smsc/smsc911x.*
15520 F:      include/linux/smsc911x.h
15521
15522 SMSC9420 PCI ETHERNET DRIVER
15523 M:      Steve Glendinning <[email protected]>
15524 L:      [email protected]
15525 S:      Maintained
15526 F:      drivers/net/ethernet/smsc/smsc9420.*
15527
15528 SOC-CAMERA V4L2 SUBSYSTEM
15529 L:      [email protected]
15530 S:      Orphan
15531 T:      git git://linuxtv.org/media_tree.git
15532 F:      drivers/staging/media/soc_camera/
15533 F:      include/media/soc_camera.h
15534
15535 SOCIONEXT (SNI) AVE NETWORK DRIVER
15536 M:      Kunihiko Hayashi <[email protected]>
15537 L:      [email protected]
15538 S:      Maintained
15539 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15540 F:      drivers/net/ethernet/socionext/sni_ave.c
15541
15542 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15543 M:      Jassi Brar <[email protected]>
15544 M:      Ilias Apalodimas <[email protected]>
15545 L:      [email protected]
15546 S:      Maintained
15547 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15548 F:      drivers/net/ethernet/socionext/netsec.c
15549
15550 SOCIONEXT (SNI) Synquacer SPI DRIVER
15551 M:      Masahisa Kojima <[email protected]>
15552 M:      Jassi Brar <[email protected]>
15553 L:      [email protected]
15554 S:      Maintained
15555 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15556 F:      drivers/spi/spi-synquacer.c
15557
15558 SOCIONEXT SYNQUACER I2C DRIVER
15559 M:      Ard Biesheuvel <[email protected]>
15560 L:      [email protected]
15561 S:      Maintained
15562 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15563 F:      drivers/i2c/busses/i2c-synquacer.c
15564
15565 SOCIONEXT UNIPHIER SOUND DRIVER
15566 L:      [email protected] (moderated for non-subscribers)
15567 S:      Orphan
15568 F:      sound/soc/uniphier/
15569
15570 SOEKRIS NET48XX LED SUPPORT
15571 M:      Chris Boot <[email protected]>
15572 S:      Maintained
15573 F:      drivers/leds/leds-net48xx.c
15574
15575 SOFT-IWARP DRIVER (siw)
15576 M:      Bernard Metzler <[email protected]>
15577 L:      [email protected]
15578 S:      Supported
15579 F:      drivers/infiniband/sw/siw/
15580 F:      include/uapi/rdma/siw-abi.h
15581
15582 SOFT-ROCE DRIVER (rxe)
15583 M:      Zhu Yanjun <[email protected]>
15584 L:      [email protected]
15585 S:      Supported
15586 F:      drivers/infiniband/sw/rxe/
15587 F:      include/uapi/rdma/rdma_user_rxe.h
15588
15589 SOFTLOGIC 6x10 MPEG CODEC
15590 M:      Bluecherry Maintainers <[email protected]>
15591 M:      Anton Sviridenko <[email protected]>
15592 M:      Andrey Utkin <[email protected]>
15593 M:      Andrey Utkin <[email protected]>
15594 M:      Ismael Luceno <[email protected]>
15595 L:      [email protected]
15596 S:      Supported
15597 F:      drivers/media/pci/solo6x10/
15598
15599 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15600 M:      James Morse <[email protected]>
15601 L:      [email protected]
15602 S:      Maintained
15603 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15604 F:      drivers/firmware/arm_sdei.c
15605 F:      include/linux/arm_sdei.h
15606 F:      include/uapi/linux/arm_sdei.h
15607
15608 SOFTWARE RAID (Multiple Disks) SUPPORT
15609 M:      Song Liu <[email protected]>
15610 L:      [email protected]
15611 S:      Supported
15612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15613 F:      drivers/md/Kconfig
15614 F:      drivers/md/Makefile
15615 F:      drivers/md/md*
15616 F:      drivers/md/raid*
15617 F:      include/linux/raid/
15618 F:      include/uapi/linux/raid/
15619
15620 SOLIDRUN CLEARFOG SUPPORT
15621 M:      Russell King <[email protected]>
15622 S:      Maintained
15623 F:      arch/arm/boot/dts/armada-388-clearfog*
15624 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15625
15626 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15627 M:      Russell King <[email protected]>
15628 S:      Maintained
15629 F:      arch/arm/boot/dts/imx6*-cubox-i*
15630 F:      arch/arm/boot/dts/imx6*-hummingboard*
15631 F:      arch/arm/boot/dts/imx6*-sr-*
15632
15633 SONIC NETWORK DRIVER
15634 M:      Thomas Bogendoerfer <[email protected]>
15635 L:      [email protected]
15636 S:      Maintained
15637 F:      drivers/net/ethernet/natsemi/sonic.*
15638
15639 SONICS SILICON BACKPLANE DRIVER (SSB)
15640 M:      Michael Buesch <[email protected]>
15641 L:      [email protected]
15642 S:      Maintained
15643 F:      drivers/ssb/
15644 F:      include/linux/ssb/
15645
15646 SONY IMX214 SENSOR DRIVER
15647 M:      Ricardo Ribalda <[email protected]>
15648 L:      [email protected]
15649 S:      Maintained
15650 T:      git git://linuxtv.org/media_tree.git
15651 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15652 F:      drivers/media/i2c/imx214.c
15653
15654 SONY IMX219 SENSOR DRIVER
15655 M:      Dave Stevenson <[email protected]>
15656 L:      [email protected]
15657 S:      Maintained
15658 T:      git git://linuxtv.org/media_tree.git
15659 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15660 F:      drivers/media/i2c/imx219.c
15661
15662 SONY IMX258 SENSOR DRIVER
15663 M:      Sakari Ailus <[email protected]>
15664 L:      [email protected]
15665 S:      Maintained
15666 T:      git git://linuxtv.org/media_tree.git
15667 F:      drivers/media/i2c/imx258.c
15668
15669 SONY IMX274 SENSOR DRIVER
15670 M:      Leon Luo <[email protected]>
15671 L:      [email protected]
15672 S:      Maintained
15673 T:      git git://linuxtv.org/media_tree.git
15674 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15675 F:      drivers/media/i2c/imx274.c
15676
15677 SONY IMX290 SENSOR DRIVER
15678 M:      Manivannan Sadhasivam <[email protected]>
15679 L:      [email protected]
15680 S:      Maintained
15681 T:      git git://linuxtv.org/media_tree.git
15682 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15683 F:      drivers/media/i2c/imx290.c
15684
15685 SONY IMX319 SENSOR DRIVER
15686 M:      Bingbu Cao <[email protected]>
15687 L:      [email protected]
15688 S:      Maintained
15689 T:      git git://linuxtv.org/media_tree.git
15690 F:      drivers/media/i2c/imx319.c
15691
15692 SONY IMX355 SENSOR DRIVER
15693 M:      Tianshu Qiu <[email protected]>
15694 L:      [email protected]
15695 S:      Maintained
15696 T:      git git://linuxtv.org/media_tree.git
15697 F:      drivers/media/i2c/imx355.c
15698
15699 SONY MEMORYSTICK SUBSYSTEM
15700 M:      Maxim Levitsky <[email protected]>
15701 M:      Alex Dubov <[email protected]>
15702 M:      Ulf Hansson <[email protected]>
15703 L:      [email protected]
15704 S:      Maintained
15705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15706 F:      drivers/memstick/
15707 F:      include/linux/memstick.h
15708
15709 SONY VAIO CONTROL DEVICE DRIVER
15710 M:      Mattia Dongili <[email protected]>
15711 L:      [email protected]
15712 S:      Maintained
15713 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15714 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15715 F:      drivers/char/sonypi.c
15716 F:      drivers/platform/x86/sony-laptop.c
15717 F:      include/linux/sony-laptop.h
15718
15719 SOUND
15720 M:      Jaroslav Kysela <[email protected]>
15721 M:      Takashi Iwai <[email protected]>
15722 L:      [email protected] (moderated for non-subscribers)
15723 S:      Maintained
15724 W:      http://www.alsa-project.org/
15725 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15727 F:      Documentation/sound/
15728 F:      include/sound/
15729 F:      include/uapi/sound/
15730 F:      sound/
15731
15732 SOUND - COMPRESSED AUDIO
15733 M:      Vinod Koul <[email protected]>
15734 L:      [email protected] (moderated for non-subscribers)
15735 S:      Supported
15736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15737 F:      Documentation/sound/designs/compress-offload.rst
15738 F:      include/sound/compress_driver.h
15739 F:      include/uapi/sound/compress_*
15740 F:      sound/core/compress_offload.c
15741 F:      sound/soc/soc-compress.c
15742
15743 SOUND - DMAENGINE HELPERS
15744 M:      Lars-Peter Clausen <[email protected]>
15745 S:      Supported
15746 F:      include/sound/dmaengine_pcm.h
15747 F:      sound/core/pcm_dmaengine.c
15748 F:      sound/soc/soc-generic-dmaengine-pcm.c
15749
15750 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15751 M:      Liam Girdwood <[email protected]>
15752 M:      Mark Brown <[email protected]>
15753 L:      [email protected] (moderated for non-subscribers)
15754 S:      Supported
15755 W:      http://alsa-project.org/main/index.php/ASoC
15756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15757 F:      Documentation/devicetree/bindings/sound/
15758 F:      Documentation/sound/soc/
15759 F:      include/dt-bindings/sound/
15760 F:      include/sound/soc*
15761 F:      sound/soc/
15762
15763 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
15764 M:      Pierre-Louis Bossart <[email protected]>
15765 M:      Liam Girdwood <[email protected]>
15766 M:      Ranjani Sridharan <[email protected]>
15767 M:      Kai Vehmanen <[email protected]>
15768 M:      Daniel Baluta <[email protected]>
15769 L:      [email protected] (moderated for non-subscribers)
15770 S:      Supported
15771 W:      https://github.com/thesofproject/linux/
15772 F:      sound/soc/sof/
15773
15774 SOUNDWIRE SUBSYSTEM
15775 M:      Vinod Koul <[email protected]>
15776 M:      Sanyog Kale <[email protected]>
15777 R:      Pierre-Louis Bossart <[email protected]>
15778 L:      [email protected] (moderated for non-subscribers)
15779 S:      Supported
15780 F:      Documentation/driver-api/soundwire/
15781 F:      drivers/soundwire/
15782 F:      include/linux/soundwire/
15783
15784 SP2 MEDIA DRIVER
15785 M:      Olli Salonen <[email protected]>
15786 L:      [email protected]
15787 S:      Maintained
15788 W:      https://linuxtv.org
15789 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15790 F:      drivers/media/dvb-frontends/sp2*
15791
15792 SPARC + UltraSPARC (sparc/sparc64)
15793 M:      "David S. Miller" <[email protected]>
15794 L:      [email protected]
15795 S:      Maintained
15796 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15799 F:      arch/sparc/
15800 F:      drivers/sbus/
15801
15802 SPARC SERIAL DRIVERS
15803 M:      "David S. Miller" <[email protected]>
15804 L:      [email protected]
15805 S:      Maintained
15806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15808 F:      drivers/tty/serial/suncore.c
15809 F:      drivers/tty/serial/sunhv.c
15810 F:      drivers/tty/serial/sunsab.c
15811 F:      drivers/tty/serial/sunsab.h
15812 F:      drivers/tty/serial/sunsu.c
15813 F:      drivers/tty/serial/sunzilog.c
15814 F:      drivers/tty/serial/sunzilog.h
15815 F:      drivers/tty/vcc.c
15816 F:      include/linux/sunserialcore.h
15817
15818 SPARSE CHECKER
15819 M:      "Luc Van Oostenryck" <[email protected]>
15820 L:      [email protected]
15821 S:      Maintained
15822 W:      https://sparse.wiki.kernel.org/
15823 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15824 F:      include/linux/compiler.h
15825
15826 SPEAR CLOCK FRAMEWORK SUPPORT
15827 M:      Viresh Kumar <[email protected]>
15828 L:      [email protected] (moderated for non-subscribers)
15829 S:      Maintained
15830 W:      http://www.st.com/spear
15831 F:      drivers/clk/spear/
15832
15833 SPEAR PLATFORM SUPPORT
15834 M:      Viresh Kumar <[email protected]>
15835 M:      Shiraz Hashim <[email protected]>
15836 L:      [email protected] (moderated for non-subscribers)
15837 S:      Maintained
15838 W:      http://www.st.com/spear
15839 F:      arch/arm/boot/dts/spear*
15840 F:      arch/arm/mach-spear/
15841
15842 SPI NOR SUBSYSTEM
15843 M:      Tudor Ambarus <[email protected]>
15844 L:      [email protected]
15845 S:      Maintained
15846 W:      http://www.linux-mtd.infradead.org/
15847 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15848 C:      irc://irc.oftc.net/mtd
15849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15850 F:      drivers/mtd/spi-nor/
15851 F:      include/linux/mtd/spi-nor.h
15852
15853 SPI SUBSYSTEM
15854 M:      Mark Brown <[email protected]>
15855 L:      [email protected]
15856 S:      Maintained
15857 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15859 F:      Documentation/devicetree/bindings/spi/
15860 F:      Documentation/spi/
15861 F:      drivers/spi/
15862 F:      include/linux/spi/
15863 F:      include/uapi/linux/spi/
15864 F:      tools/spi/
15865
15866 SPIDERNET NETWORK DRIVER for CELL
15867 M:      Ishizaki Kou <[email protected]>
15868 L:      [email protected]
15869 S:      Supported
15870 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15871 F:      drivers/net/ethernet/toshiba/spider_net*
15872
15873 SPMI SUBSYSTEM
15874 R:      Stephen Boyd <[email protected]>
15875 L:      [email protected]
15876 F:      Documentation/devicetree/bindings/spmi/
15877 F:      drivers/spmi/
15878 F:      include/dt-bindings/spmi/spmi.h
15879 F:      include/linux/spmi.h
15880 F:      include/trace/events/spmi.h
15881
15882 SPU FILE SYSTEM
15883 M:      Jeremy Kerr <[email protected]>
15884 L:      [email protected]
15885 S:      Supported
15886 W:      http://www.ibm.com/developerworks/power/cell/
15887 F:      Documentation/filesystems/spufs.txt
15888 F:      arch/powerpc/platforms/cell/spufs/
15889
15890 SQUASHFS FILE SYSTEM
15891 M:      Phillip Lougher <[email protected]>
15892 L:      [email protected] (subscribers-only)
15893 S:      Maintained
15894 W:      http://squashfs.org.uk
15895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15896 F:      Documentation/filesystems/squashfs.rst
15897 F:      fs/squashfs/
15898
15899 SRM (Alpha) environment access
15900 M:      Jan-Benedict Glaw <[email protected]>
15901 S:      Maintained
15902 F:      arch/alpha/kernel/srm_env.c
15903
15904 ST LSM6DSx IMU IIO DRIVER
15905 M:      Lorenzo Bianconi <[email protected]>
15906 L:      [email protected]
15907 S:      Maintained
15908 W:      http://www.st.com/
15909 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15910 F:      drivers/iio/imu/st_lsm6dsx/
15911
15912 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15913 M:      Mickael Guene <[email protected]>
15914 L:      [email protected]
15915 S:      Maintained
15916 T:      git git://linuxtv.org/media_tree.git
15917 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15918 F:      drivers/media/i2c/st-mipid02.c
15919
15920 ST STM32 I2C/SMBUS DRIVER
15921 M:      Pierre-Yves MORDRET <[email protected]>
15922 L:      [email protected]
15923 S:      Maintained
15924 F:      drivers/i2c/busses/i2c-stm32*
15925
15926 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15927 M:      Song Qiang <[email protected]>
15928 L:      [email protected]
15929 S:      Maintained
15930 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15931 F:      drivers/iio/proximity/vl53l0x-i2c.c
15932
15933 STABLE BRANCH
15934 M:      Greg Kroah-Hartman <[email protected]>
15935 M:      Sasha Levin <[email protected]>
15936 L:      [email protected]
15937 S:      Supported
15938 F:      Documentation/process/stable-kernel-rules.rst
15939
15940 STAGING - COMEDI
15941 M:      Ian Abbott <[email protected]>
15942 M:      H Hartley Sweeten <[email protected]>
15943 S:      Odd Fixes
15944 F:      drivers/staging/comedi/
15945
15946 STAGING - FIELDBUS SUBSYSTEM
15947 M:      Sven Van Asbroeck <[email protected]>
15948 S:      Maintained
15949 F:      drivers/staging/fieldbus/*
15950 F:      drivers/staging/fieldbus/Documentation/
15951
15952 STAGING - HMS ANYBUS-S BUS
15953 M:      Sven Van Asbroeck <[email protected]>
15954 S:      Maintained
15955 F:      drivers/staging/fieldbus/anybuss/
15956
15957 STAGING - INDUSTRIAL IO
15958 M:      Jonathan Cameron <[email protected]>
15959 L:      [email protected]
15960 S:      Odd Fixes
15961 F:      Documentation/devicetree/bindings/staging/iio/
15962 F:      drivers/staging/iio/
15963
15964 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15965 M:      Marc Dietrich <[email protected]>
15966 L:      [email protected] (moderated for non-subscribers)
15967 L:      [email protected]
15968 S:      Maintained
15969 F:      drivers/staging/nvec/
15970
15971 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15972 M:      Jens Frederich <[email protected]>
15973 M:      Daniel Drake <[email protected]>
15974 M:      Jon Nettleton <[email protected]>
15975 S:      Maintained
15976 W:      http://wiki.laptop.org/go/DCON
15977 F:      drivers/staging/olpc_dcon/
15978
15979 STAGING - REALTEK RTL8188EU DRIVERS
15980 M:      Larry Finger <[email protected]>
15981 S:      Odd Fixes
15982 F:      drivers/staging/rtl8188eu/
15983
15984 STAGING - REALTEK RTL8712U DRIVERS
15985 M:      Larry Finger <[email protected]>
15986 M:      Florian Schilhabel <[email protected]>.
15987 S:      Odd Fixes
15988 F:      drivers/staging/rtl8712/
15989
15990 STAGING - SEPS525 LCD CONTROLLER DRIVERS
15991 M:      Michael Hennerich <[email protected]>
15992 M:      Beniamin Bia <[email protected]>
15993 L:      [email protected]
15994 S:      Supported
15995 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
15996 F:      drivers/staging/fbtft/fb_seps525.c
15997
15998 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15999 M:      Sudip Mukherjee <[email protected]>
16000 M:      Teddy Wang <[email protected]>
16001 M:      Sudip Mukherjee <[email protected]>
16002 L:      [email protected]
16003 S:      Maintained
16004 F:      drivers/staging/sm750fb/
16005
16006 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
16007 M:      William Hubbs <[email protected]>
16008 M:      Chris Brannon <[email protected]>
16009 M:      Kirk Reiser <[email protected]>
16010 M:      Samuel Thibault <[email protected]>
16011 L:      [email protected]
16012 S:      Odd Fixes
16013 W:      http://www.linux-speakup.org/
16014 F:      drivers/staging/speakup/
16015
16016 STAGING - VIA VT665X DRIVERS
16017 M:      Forest Bond <[email protected]>
16018 S:      Odd Fixes
16019 F:      drivers/staging/vt665?/
16020
16021 STAGING - WILC1000 WIFI DRIVER
16022 M:      Adham Abozaeid <[email protected]>
16023 M:      Ajay Singh <[email protected]>
16024 L:      [email protected]
16025 S:      Supported
16026 F:      drivers/staging/wilc1000/
16027
16028 STAGING SUBSYSTEM
16029 M:      Greg Kroah-Hartman <[email protected]>
16030 L:      [email protected]
16031 S:      Supported
16032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16033 F:      drivers/staging/
16034
16035 STARFIRE/DURALAN NETWORK DRIVER
16036 M:      Ion Badulescu <[email protected]>
16037 S:      Odd Fixes
16038 F:      drivers/net/ethernet/adaptec/starfire*
16039
16040 STEC S1220 SKD DRIVER
16041 M:      Damien Le Moal <[email protected]>
16042 L:      [email protected]
16043 S:      Maintained
16044 F:      drivers/block/skd*[ch]
16045
16046 STI AUDIO (ASoC) DRIVERS
16047 M:      Arnaud Pouliquen <[email protected]>
16048 L:      [email protected] (moderated for non-subscribers)
16049 S:      Maintained
16050 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16051 F:      sound/soc/sti/
16052
16053 STI CEC DRIVER
16054 M:      Benjamin Gaignard <[email protected]>
16055 S:      Maintained
16056 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16057 F:      drivers/media/platform/sti/cec/
16058
16059 STK1160 USB VIDEO CAPTURE DRIVER
16060 M:      Ezequiel Garcia <[email protected]>
16061 L:      [email protected]
16062 S:      Maintained
16063 T:      git git://linuxtv.org/media_tree.git
16064 F:      drivers/media/usb/stk1160/
16065
16066 STM32 AUDIO (ASoC) DRIVERS
16067 M:      Olivier Moysan <[email protected]>
16068 M:      Arnaud Pouliquen <[email protected]>
16069 L:      [email protected] (moderated for non-subscribers)
16070 S:      Maintained
16071 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16072 F:      sound/soc/stm/
16073
16074 STM32 TIMER/LPTIMER DRIVERS
16075 M:      Fabrice Gasnier <[email protected]>
16076 S:      Maintained
16077 F:      Documentation/ABI/testing/*timer-stm32
16078 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16079 F:      drivers/*/stm32-*timer*
16080 F:      drivers/pwm/pwm-stm32*
16081 F:      include/linux/*/stm32-*tim*
16082
16083 STMMAC ETHERNET DRIVER
16084 M:      Giuseppe Cavallaro <[email protected]>
16085 M:      Alexandre Torgue <[email protected]>
16086 M:      Jose Abreu <[email protected]>
16087 L:      [email protected]
16088 S:      Supported
16089 W:      http://www.stlinux.com
16090 F:      Documentation/networking/device_drivers/stmicro/
16091 F:      drivers/net/ethernet/stmicro/stmmac/
16092
16093 SUN3/3X
16094 M:      Sam Creasey <[email protected]>
16095 S:      Maintained
16096 W:      http://sammy.net/sun3/
16097 F:      arch/m68k/include/asm/sun3*
16098 F:      arch/m68k/kernel/*sun3*
16099 F:      arch/m68k/sun3*/
16100 F:      drivers/net/ethernet/i825xx/sun3*
16101
16102 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16103 M:      Hans de Goede <[email protected]>
16104 L:      [email protected]
16105 S:      Maintained
16106 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16107 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16108
16109 SUNDANCE NETWORK DRIVER
16110 M:      Denis Kirjanov <[email protected]>
16111 L:      [email protected]
16112 S:      Maintained
16113 F:      drivers/net/ethernet/dlink/sundance.c
16114
16115 SUPERH
16116 M:      Yoshinori Sato <[email protected]>
16117 M:      Rich Felker <[email protected]>
16118 L:      [email protected]
16119 S:      Maintained
16120 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16121 F:      Documentation/sh/
16122 F:      arch/sh/
16123 F:      drivers/sh/
16124
16125 SUSPEND TO RAM
16126 M:      "Rafael J. Wysocki" <[email protected]>
16127 M:      Len Brown <[email protected]>
16128 M:      Pavel Machek <[email protected]>
16129 L:      [email protected]
16130 S:      Supported
16131 B:      https://bugzilla.kernel.org
16132 F:      Documentation/power/
16133 F:      arch/x86/kernel/acpi/
16134 F:      drivers/base/power/
16135 F:      include/linux/freezer.h
16136 F:      include/linux/pm.h
16137 F:      include/linux/suspend.h
16138 F:      kernel/power/
16139
16140 SVGA HANDLING
16141 M:      Martin Mares <[email protected]>
16142 L:      [email protected]
16143 S:      Maintained
16144 F:      Documentation/admin-guide/svga.rst
16145 F:      arch/x86/boot/video*
16146
16147 SWIOTLB SUBSYSTEM
16148 M:      Konrad Rzeszutek Wilk <[email protected]>
16149 L:      [email protected]
16150 S:      Supported
16151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16152 F:      arch/*/kernel/pci-swiotlb.c
16153 F:      include/linux/swiotlb.h
16154 F:      kernel/dma/swiotlb.c
16155
16156 SWITCHDEV
16157 M:      Jiri Pirko <[email protected]>
16158 M:      Ivan Vecera <[email protected]>
16159 L:      [email protected]
16160 S:      Supported
16161 F:      include/net/switchdev.h
16162 F:      net/switchdev/
16163
16164 SY8106A REGULATOR DRIVER
16165 M:      Icenowy Zheng <[email protected]>
16166 S:      Maintained
16167 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16168 F:      drivers/regulator/sy8106a-regulator.c
16169
16170 SYNC FILE FRAMEWORK
16171 M:      Sumit Semwal <[email protected]>
16172 R:      Gustavo Padovan <[email protected]>
16173 L:      [email protected]
16174 L:      [email protected]
16175 S:      Maintained
16176 T:      git git://anongit.freedesktop.org/drm/drm-misc
16177 F:      Documentation/driver-api/sync_file.rst
16178 F:      drivers/dma-buf/dma-fence*
16179 F:      drivers/dma-buf/sw_sync.c
16180 F:      drivers/dma-buf/sync_*
16181 F:      include/linux/sync_file.h
16182 F:      include/uapi/linux/sync_file.h
16183
16184 SYNOPSYS ARC ARCHITECTURE
16185 M:      Vineet Gupta <[email protected]>
16186 L:      [email protected]
16187 S:      Supported
16188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16189 F:      Documentation/devicetree/bindings/arc/*
16190 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16191 F:      arch/arc/
16192 F:      drivers/clocksource/arc_timer.c
16193 F:      drivers/tty/serial/arc_uart.c
16194
16195 SYNOPSYS ARC HSDK SDP pll clock driver
16196 M:      Eugeniy Paltsev <[email protected]>
16197 S:      Supported
16198 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16199 F:      drivers/clk/clk-hsdk-pll.c
16200
16201 SYNOPSYS ARC SDP clock driver
16202 M:      Eugeniy Paltsev <[email protected]>
16203 S:      Supported
16204 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16205 F:      drivers/clk/axs10x/*
16206
16207 SYNOPSYS ARC SDP platform support
16208 M:      Alexey Brodkin <[email protected]>
16209 S:      Supported
16210 F:      Documentation/devicetree/bindings/arc/axs10*
16211 F:      arch/arc/boot/dts/ax*
16212 F:      arch/arc/plat-axs10x
16213
16214 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16215 M:      Eugeniy Paltsev <[email protected]>
16216 S:      Supported
16217 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16218 F:      drivers/reset/reset-axs10x.c
16219
16220 SYNOPSYS CREG GPIO DRIVER
16221 M:      Eugeniy Paltsev <[email protected]>
16222 S:      Maintained
16223 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16224 F:      drivers/gpio/gpio-creg-snps.c
16225
16226 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16227 R:      Andy Shevchenko <[email protected]>
16228 S:      Maintained
16229 F:      drivers/tty/serial/8250/8250_dw.c
16230 F:      drivers/tty/serial/8250/8250_dwlib.*
16231 F:      drivers/tty/serial/8250/8250_lpss.c
16232
16233 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16234 M:      Hoan Tran <[email protected]>
16235 L:      [email protected]
16236 S:      Maintained
16237 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
16238 F:      drivers/gpio/gpio-dwapb.c
16239
16240 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16241 M:      Eugeniy Paltsev <[email protected]>
16242 S:      Maintained
16243 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16244 F:      drivers/dma/dw-axi-dmac/
16245
16246 SYNOPSYS DESIGNWARE DMAC DRIVER
16247 M:      Viresh Kumar <[email protected]>
16248 R:      Andy Shevchenko <[email protected]>
16249 S:      Maintained
16250 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16251 F:      drivers/dma/dw/
16252 F:      include/dt-bindings/dma/dw-dmac.h
16253 F:      include/linux/dma/dw.h
16254 F:      include/linux/platform_data/dma-dw.h
16255
16256 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16257 M:      Jose Abreu <[email protected]>
16258 L:      [email protected]
16259 S:      Supported
16260 F:      drivers/net/ethernet/synopsys/
16261
16262 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16263 M:      Jose Abreu <[email protected]>
16264 L:      [email protected]
16265 S:      Supported
16266 F:      drivers/net/phy/mdio-xpcs.c
16267 F:      include/linux/mdio-xpcs.h
16268
16269 SYNOPSYS DESIGNWARE I2C DRIVER
16270 M:      Jarkko Nikula <[email protected]>
16271 R:      Andy Shevchenko <[email protected]>
16272 R:      Mika Westerberg <[email protected]>
16273 L:      [email protected]
16274 S:      Maintained
16275 F:      drivers/i2c/busses/i2c-designware-*
16276 F:      include/linux/platform_data/i2c-designware.h
16277
16278 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16279 M:      Jaehoon Chung <[email protected]>
16280 L:      [email protected]
16281 S:      Maintained
16282 F:      drivers/mmc/host/dw_mmc*
16283
16284 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16285 M:      Eugeniy Paltsev <[email protected]>
16286 S:      Supported
16287 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16288 F:      drivers/reset/reset-hsdk.c
16289 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16290
16291 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16292 M:      Prabu Thangamuthu <[email protected]>
16293 M:      Manjunath M B <[email protected]>
16294 L:      [email protected]
16295 S:      Maintained
16296 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16297
16298 SYSTEM CONFIGURATION (SYSCON)
16299 M:      Lee Jones <[email protected]>
16300 M:      Arnd Bergmann <[email protected]>
16301 S:      Supported
16302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16303 F:      drivers/mfd/syscon.c
16304
16305 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16306 M:      Sudeep Holla <[email protected]>
16307 L:      [email protected]
16308 S:      Maintained
16309 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16310 F:      drivers/clk/clk-sc[mp]i.c
16311 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16312 F:      drivers/firmware/arm_scmi/
16313 F:      drivers/firmware/arm_scpi.c
16314 F:      drivers/reset/reset-scmi.c
16315 F:      include/linux/sc[mp]i_protocol.h
16316 F:      include/trace/events/scmi.h
16317
16318 SYSTEM RESET/SHUTDOWN DRIVERS
16319 M:      Sebastian Reichel <[email protected]>
16320 L:      [email protected]
16321 S:      Maintained
16322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16323 F:      Documentation/devicetree/bindings/power/reset/
16324 F:      drivers/power/reset/
16325
16326 SYSTEM TRACE MODULE CLASS
16327 M:      Alexander Shishkin <[email protected]>
16328 S:      Maintained
16329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16330 F:      Documentation/trace/stm.rst
16331 F:      drivers/hwtracing/stm/
16332 F:      include/linux/stm.h
16333 F:      include/uapi/linux/stm.h
16334
16335 SYSTEM76 ACPI DRIVER
16336 M:      Jeremy Soller <[email protected]>
16337 M:      System76 Product Development <[email protected]>
16338 L:      [email protected]
16339 S:      Maintained
16340 F:      drivers/platform/x86/system76_acpi.c
16341
16342 SYSV FILESYSTEM
16343 M:      Christoph Hellwig <[email protected]>
16344 S:      Maintained
16345 F:      Documentation/filesystems/sysv-fs.rst
16346 F:      fs/sysv/
16347 F:      include/linux/sysv_fs.h
16348
16349 TASKSTATS STATISTICS INTERFACE
16350 M:      Balbir Singh <[email protected]>
16351 S:      Maintained
16352 F:      Documentation/accounting/taskstats*
16353 F:      include/linux/taskstats*
16354 F:      kernel/taskstats.c
16355
16356 TC subsystem
16357 M:      Jamal Hadi Salim <[email protected]>
16358 M:      Cong Wang <[email protected]>
16359 M:      Jiri Pirko <[email protected]>
16360 L:      [email protected]
16361 S:      Maintained
16362 F:      include/net/pkt_cls.h
16363 F:      include/net/pkt_sched.h
16364 F:      include/net/tc_act/
16365 F:      include/uapi/linux/pkt_cls.h
16366 F:      include/uapi/linux/pkt_sched.h
16367 F:      include/uapi/linux/tc_act/
16368 F:      include/uapi/linux/tc_ematch/
16369 F:      net/sched/
16370
16371 TC90522 MEDIA DRIVER
16372 M:      Akihiro Tsukada <[email protected]>
16373 L:      [email protected]
16374 S:      Odd Fixes
16375 F:      drivers/media/dvb-frontends/tc90522*
16376
16377 TCP LOW PRIORITY MODULE
16378 M:      "Wong Hoi Sing, Edison" <[email protected]>
16379 M:      "Hung Hing Lun, Mike" <[email protected]>
16380 S:      Maintained
16381 W:      http://tcp-lp-mod.sourceforge.net/
16382 F:      net/ipv4/tcp_lp.c
16383
16384 TDA10071 MEDIA DRIVER
16385 M:      Antti Palosaari <[email protected]>
16386 L:      [email protected]
16387 S:      Maintained
16388 W:      https://linuxtv.org
16389 W:      http://palosaari.fi/linux/
16390 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16391 T:      git git://linuxtv.org/anttip/media_tree.git
16392 F:      drivers/media/dvb-frontends/tda10071*
16393
16394 TDA18212 MEDIA DRIVER
16395 M:      Antti Palosaari <[email protected]>
16396 L:      [email protected]
16397 S:      Maintained
16398 W:      https://linuxtv.org
16399 W:      http://palosaari.fi/linux/
16400 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16401 T:      git git://linuxtv.org/anttip/media_tree.git
16402 F:      drivers/media/tuners/tda18212*
16403
16404 TDA18218 MEDIA DRIVER
16405 M:      Antti Palosaari <[email protected]>
16406 L:      [email protected]
16407 S:      Maintained
16408 W:      https://linuxtv.org
16409 W:      http://palosaari.fi/linux/
16410 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16411 T:      git git://linuxtv.org/anttip/media_tree.git
16412 F:      drivers/media/tuners/tda18218*
16413
16414 TDA18250 MEDIA DRIVER
16415 M:      Olli Salonen <[email protected]>
16416 L:      [email protected]
16417 S:      Maintained
16418 W:      https://linuxtv.org
16419 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16420 T:      git git://linuxtv.org/media_tree.git
16421 F:      drivers/media/tuners/tda18250*
16422
16423 TDA18271 MEDIA DRIVER
16424 M:      Michael Krufky <[email protected]>
16425 L:      [email protected]
16426 S:      Maintained
16427 W:      https://linuxtv.org
16428 W:      http://github.com/mkrufky
16429 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16430 T:      git git://linuxtv.org/mkrufky/tuners.git
16431 F:      drivers/media/tuners/tda18271*
16432
16433 TDA1997x MEDIA DRIVER
16434 M:      Tim Harvey <[email protected]>
16435 L:      [email protected]
16436 S:      Maintained
16437 W:      https://linuxtv.org
16438 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16439 F:      drivers/media/i2c/tda1997x.*
16440
16441 TDA827x MEDIA DRIVER
16442 M:      Michael Krufky <[email protected]>
16443 L:      [email protected]
16444 S:      Maintained
16445 W:      https://linuxtv.org
16446 W:      http://github.com/mkrufky
16447 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16448 T:      git git://linuxtv.org/mkrufky/tuners.git
16449 F:      drivers/media/tuners/tda8290.*
16450
16451 TDA8290 MEDIA DRIVER
16452 M:      Michael Krufky <[email protected]>
16453 L:      [email protected]
16454 S:      Maintained
16455 W:      https://linuxtv.org
16456 W:      http://github.com/mkrufky
16457 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16458 T:      git git://linuxtv.org/mkrufky/tuners.git
16459 F:      drivers/media/tuners/tda8290.*
16460
16461 TDA9840 MEDIA DRIVER
16462 M:      Hans Verkuil <[email protected]>
16463 L:      [email protected]
16464 S:      Maintained
16465 W:      https://linuxtv.org
16466 T:      git git://linuxtv.org/media_tree.git
16467 F:      drivers/media/i2c/tda9840*
16468
16469 TEA5761 TUNER DRIVER
16470 M:      Mauro Carvalho Chehab <[email protected]>
16471 L:      [email protected]
16472 S:      Odd fixes
16473 W:      https://linuxtv.org
16474 T:      git git://linuxtv.org/media_tree.git
16475 F:      drivers/media/tuners/tea5761.*
16476
16477 TEA5767 TUNER DRIVER
16478 M:      Mauro Carvalho Chehab <[email protected]>
16479 L:      [email protected]
16480 S:      Maintained
16481 W:      https://linuxtv.org
16482 T:      git git://linuxtv.org/media_tree.git
16483 F:      drivers/media/tuners/tea5767.*
16484
16485 TEA6415C MEDIA DRIVER
16486 M:      Hans Verkuil <[email protected]>
16487 L:      [email protected]
16488 S:      Maintained
16489 W:      https://linuxtv.org
16490 T:      git git://linuxtv.org/media_tree.git
16491 F:      drivers/media/i2c/tea6415c*
16492
16493 TEA6420 MEDIA DRIVER
16494 M:      Hans Verkuil <[email protected]>
16495 L:      [email protected]
16496 S:      Maintained
16497 W:      https://linuxtv.org
16498 T:      git git://linuxtv.org/media_tree.git
16499 F:      drivers/media/i2c/tea6420*
16500
16501 TEAM DRIVER
16502 M:      Jiri Pirko <[email protected]>
16503 L:      [email protected]
16504 S:      Supported
16505 F:      drivers/net/team/
16506 F:      include/linux/if_team.h
16507 F:      include/uapi/linux/if_team.h
16508
16509 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16510 M:      "Savoir-faire Linux Inc." <[email protected]>
16511 S:      Maintained
16512 F:      arch/x86/platform/ts5500/
16513
16514 TECHNOTREND USB IR RECEIVER
16515 M:      Sean Young <[email protected]>
16516 L:      [email protected]
16517 S:      Maintained
16518 F:      drivers/media/rc/ttusbir.c
16519
16520 TECHWELL TW9910 VIDEO DECODER
16521 L:      [email protected]
16522 S:      Orphan
16523 F:      drivers/media/i2c/tw9910.c
16524 F:      include/media/i2c/tw9910.h
16525
16526 TEE SUBSYSTEM
16527 M:      Jens Wiklander <[email protected]>
16528 L:      [email protected]
16529 S:      Maintained
16530 F:      Documentation/tee.txt
16531 F:      drivers/tee/
16532 F:      include/linux/tee_drv.h
16533 F:      include/uapi/linux/tee.h
16534
16535 TEGRA ARCHITECTURE SUPPORT
16536 M:      Thierry Reding <[email protected]>
16537 M:      Jonathan Hunter <[email protected]>
16538 L:      [email protected]
16539 S:      Supported
16540 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16542 N:      [^a-z]tegra
16543
16544 TEGRA CLOCK DRIVER
16545 M:      Peter De Schrijver <[email protected]>
16546 M:      Prashant Gaikwad <[email protected]>
16547 S:      Supported
16548 F:      drivers/clk/tegra/
16549
16550 TEGRA DMA DRIVERS
16551 M:      Laxman Dewangan <[email protected]>
16552 M:      Jon Hunter <[email protected]>
16553 S:      Supported
16554 F:      drivers/dma/tegra*
16555
16556 TEGRA I2C DRIVER
16557 M:      Laxman Dewangan <[email protected]>
16558 R:      Dmitry Osipenko <[email protected]>
16559 S:      Supported
16560 F:      drivers/i2c/busses/i2c-tegra.c
16561
16562 TEGRA IOMMU DRIVERS
16563 M:      Thierry Reding <[email protected]>
16564 L:      [email protected]
16565 S:      Supported
16566 F:      drivers/iommu/tegra*
16567
16568 TEGRA KBC DRIVER
16569 M:      Laxman Dewangan <[email protected]>
16570 S:      Supported
16571 F:      drivers/input/keyboard/tegra-kbc.c
16572
16573 TEGRA NAND DRIVER
16574 M:      Stefan Agner <[email protected]>
16575 M:      Lucas Stach <[email protected]>
16576 S:      Maintained
16577 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16578 F:      drivers/mtd/nand/raw/tegra_nand.c
16579
16580 TEGRA PWM DRIVER
16581 M:      Thierry Reding <[email protected]>
16582 S:      Supported
16583 F:      drivers/pwm/pwm-tegra.c
16584
16585 TEGRA SERIAL DRIVER
16586 M:      Laxman Dewangan <[email protected]>
16587 S:      Supported
16588 F:      drivers/tty/serial/serial-tegra.c
16589
16590 TEGRA SPI DRIVER
16591 M:      Laxman Dewangan <[email protected]>
16592 S:      Supported
16593 F:      drivers/spi/spi-tegra*
16594
16595 TEGRA XUSB PADCTL DRIVER
16596 M:      JC Kuo <[email protected]>
16597 S:      Supported
16598 F:      drivers/phy/tegra/xusb*
16599
16600 TEHUTI ETHERNET DRIVER
16601 M:      Andy Gospodarek <[email protected]>
16602 L:      [email protected]
16603 S:      Supported
16604 F:      drivers/net/ethernet/tehuti/*
16605
16606 TELECOM CLOCK DRIVER FOR MCPL0010
16607 M:      Mark Gross <[email protected]>
16608 S:      Supported
16609 F:      drivers/char/tlclk.c
16610
16611 TEMPO SEMICONDUCTOR DRIVERS
16612 M:      Steven Eckhoff <[email protected]>
16613 S:      Maintained
16614 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16615 F:      sound/soc/codecs/tscs*.c
16616 F:      sound/soc/codecs/tscs*.h
16617
16618 TENSILICA XTENSA PORT (xtensa)
16619 M:      Chris Zankel <[email protected]>
16620 M:      Max Filippov <[email protected]>
16621 L:      [email protected]
16622 S:      Maintained
16623 T:      git git://github.com/czankel/xtensa-linux.git
16624 F:      arch/xtensa/
16625 F:      drivers/irqchip/irq-xtensa-*
16626
16627 TEXAS INSTRUMENTS ASoC DRIVERS
16628 M:      Peter Ujfalusi <[email protected]>
16629 L:      [email protected] (moderated for non-subscribers)
16630 S:      Maintained
16631 F:      sound/soc/ti/
16632
16633 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
16634 M:      Ricardo Ribalda <[email protected]>
16635 L:      [email protected]
16636 S:      Supported
16637 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16638 F:      drivers/iio/dac/ti-dac7612.c
16639
16640 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
16641 M:      Nishanth Menon <[email protected]>
16642 M:      Tero Kristo <[email protected]>
16643 M:      Santosh Shilimkar <[email protected]>
16644 L:      [email protected]
16645 S:      Maintained
16646 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16647 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16648 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16649 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16650 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16651 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16652 F:      drivers/clk/keystone/sci-clk.c
16653 F:      drivers/firmware/ti_sci*
16654 F:      drivers/irqchip/irq-ti-sci-inta.c
16655 F:      drivers/irqchip/irq-ti-sci-intr.c
16656 F:      drivers/reset/reset-ti-sci.c
16657 F:      drivers/soc/ti/ti_sci_inta_msi.c
16658 F:      drivers/soc/ti/ti_sci_pm_domains.c
16659 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16660 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16661 F:      include/linux/soc/ti/ti_sci_protocol.h
16662
16663 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16664 M:      Hans Verkuil <[email protected]>
16665 L:      [email protected]
16666 S:      Maintained
16667 W:      https://linuxtv.org
16668 T:      git git://linuxtv.org/media_tree.git
16669 F:      drivers/media/radio/radio-raremono.c
16670
16671 THERMAL
16672 M:      Zhang Rui <[email protected]>
16673 M:      Daniel Lezcano <[email protected]>
16674 R:      Amit Kucheria <[email protected]>
16675 L:      [email protected]
16676 S:      Supported
16677 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16679 F:      Documentation/devicetree/bindings/thermal/
16680 F:      drivers/thermal/
16681 F:      include/linux/cpu_cooling.h
16682 F:      include/linux/thermal.h
16683 F:      include/uapi/linux/thermal.h
16684
16685 THERMAL DRIVER FOR AMLOGIC SOCS
16686 M:      Guillaume La Roque <[email protected]>
16687 L:      [email protected]
16688 L:      [email protected]
16689 S:      Supported
16690 W:      http://linux-meson.com/
16691 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16692 F:      drivers/thermal/amlogic_thermal.c
16693
16694 THERMAL/CPU_COOLING
16695 M:      Amit Daniel Kachhap <[email protected]>
16696 M:      Daniel Lezcano <[email protected]>
16697 M:      Viresh Kumar <[email protected]>
16698 M:      Javi Merino <[email protected]>
16699 L:      [email protected]
16700 S:      Supported
16701 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16702 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16703 F:      drivers/thermal/cpufreq_cooling.c
16704 F:      drivers/thermal/cpuidle_cooling.c
16705 F:      include/linux/cpu_cooling.h
16706
16707 THINKPAD ACPI EXTRAS DRIVER
16708 M:      Henrique de Moraes Holschuh <[email protected]>
16709 L:      [email protected]
16710 L:      [email protected]
16711 S:      Maintained
16712 W:      http://ibm-acpi.sourceforge.net
16713 W:      http://thinkwiki.org/wiki/Ibm-acpi
16714 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16715 F:      drivers/platform/x86/thinkpad_acpi.c
16716
16717 THUNDERBOLT DRIVER
16718 M:      Andreas Noever <[email protected]>
16719 M:      Michael Jamet <[email protected]>
16720 M:      Mika Westerberg <[email protected]>
16721 M:      Yehezkel Bernat <[email protected]>
16722 L:      [email protected]
16723 S:      Maintained
16724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16725 F:      Documentation/admin-guide/thunderbolt.rst
16726 F:      drivers/thunderbolt/
16727 F:      include/linux/thunderbolt.h
16728
16729 THUNDERBOLT NETWORK DRIVER
16730 M:      Michael Jamet <[email protected]>
16731 M:      Mika Westerberg <[email protected]>
16732 M:      Yehezkel Bernat <[email protected]>
16733 L:      [email protected]
16734 S:      Maintained
16735 F:      drivers/net/thunderbolt.c
16736
16737 THUNDERX GPIO DRIVER
16738 M:      Robert Richter <[email protected]>
16739 S:      Maintained
16740 F:      drivers/gpio/gpio-thunderx.c
16741
16742 TI AM437X VPFE DRIVER
16743 M:      "Lad, Prabhakar" <[email protected]>
16744 L:      [email protected]
16745 S:      Maintained
16746 W:      https://linuxtv.org
16747 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16748 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16749 F:      drivers/media/platform/am437x/
16750
16751 TI BANDGAP AND THERMAL DRIVER
16752 M:      Eduardo Valentin <[email protected]>
16753 M:      Keerthy <[email protected]>
16754 L:      [email protected]
16755 L:      [email protected]
16756 S:      Maintained
16757 F:      drivers/thermal/ti-soc-thermal/
16758
16759 TI BQ27XXX POWER SUPPLY DRIVER
16760 R:      Andrew F. Davis <[email protected]>
16761 F:      drivers/power/supply/bq27xxx_battery.c
16762 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16763 F:      include/linux/power/bq27xxx_battery.h
16764
16765 TI CDCE706 CLOCK DRIVER
16766 M:      Max Filippov <[email protected]>
16767 S:      Maintained
16768 F:      drivers/clk/clk-cdce706.c
16769
16770 TI CLOCK DRIVER
16771 M:      Tero Kristo <[email protected]>
16772 L:      [email protected]
16773 S:      Maintained
16774 F:      drivers/clk/ti/
16775 F:      include/linux/clk/ti.h
16776
16777 TI DAVINCI MACHINE SUPPORT
16778 M:      Sekhar Nori <[email protected]>
16779 R:      Bartosz Golaszewski <[email protected]>
16780 L:      [email protected] (moderated for non-subscribers)
16781 S:      Supported
16782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16783 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16784 F:      arch/arm/boot/dts/da850*
16785 F:      arch/arm/mach-davinci/
16786 F:      drivers/i2c/busses/i2c-davinci.c
16787
16788 TI DAVINCI SERIES CLOCK DRIVER
16789 M:      David Lechner <[email protected]>
16790 R:      Sekhar Nori <[email protected]>
16791 S:      Maintained
16792 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16793 F:      drivers/clk/davinci/
16794
16795 TI DAVINCI SERIES GPIO DRIVER
16796 M:      Keerthy <[email protected]>
16797 L:      [email protected]
16798 S:      Maintained
16799 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16800 F:      drivers/gpio/gpio-davinci.c
16801
16802 TI DAVINCI SERIES MEDIA DRIVER
16803 M:      "Lad, Prabhakar" <[email protected]>
16804 L:      [email protected]
16805 S:      Maintained
16806 W:      https://linuxtv.org
16807 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16808 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16809 F:      drivers/media/platform/davinci/
16810 F:      include/media/davinci/
16811
16812 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
16813 R:      David Lechner <[email protected]>
16814 L:      [email protected]
16815 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
16816 F:      drivers/counter/ti-eqep.c
16817
16818 TI ETHERNET SWITCH DRIVER (CPSW)
16819 R:      Grygorii Strashko <[email protected]>
16820 L:      [email protected]
16821 L:      [email protected]
16822 S:      Maintained
16823 F:      drivers/net/ethernet/ti/cpsw*
16824 F:      drivers/net/ethernet/ti/davinci*
16825
16826 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16827 M:      Alex Dubov <[email protected]>
16828 S:      Maintained
16829 W:      http://tifmxx.berlios.de/
16830 F:      drivers/memstick/host/tifm_ms.c
16831 F:      drivers/misc/tifm*
16832 F:      drivers/mmc/host/tifm_sd.c
16833 F:      include/linux/tifm.h
16834
16835 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16836 M:      Santosh Shilimkar <[email protected]>
16837 L:      [email protected]
16838 L:      [email protected] (moderated for non-subscribers)
16839 S:      Maintained
16840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16841 F:      drivers/soc/ti/*
16842
16843 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16844 M:      M R Swami Reddy <[email protected]>
16845 M:      Vishwas A Deshpande <[email protected]>
16846 L:      [email protected] (moderated for non-subscribers)
16847 S:      Maintained
16848 F:      sound/soc/codecs/isabelle*
16849 F:      sound/soc/codecs/lm49453*
16850
16851 TI LP855x BACKLIGHT DRIVER
16852 M:      Milo Kim <[email protected]>
16853 S:      Maintained
16854 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16855 F:      drivers/video/backlight/lp855x_bl.c
16856 F:      include/linux/platform_data/lp855x.h
16857
16858 TI LP8727 CHARGER DRIVER
16859 M:      Milo Kim <[email protected]>
16860 S:      Maintained
16861 F:      drivers/power/supply/lp8727_charger.c
16862 F:      include/linux/platform_data/lp8727.h
16863
16864 TI LP8788 MFD DRIVER
16865 M:      Milo Kim <[email protected]>
16866 S:      Maintained
16867 F:      drivers/iio/adc/lp8788_adc.c
16868 F:      drivers/leds/leds-lp8788.c
16869 F:      drivers/mfd/lp8788*.c
16870 F:      drivers/power/supply/lp8788-charger.c
16871 F:      drivers/regulator/lp8788-*.c
16872 F:      include/linux/mfd/lp8788*.h
16873
16874 TI NETCP ETHERNET DRIVER
16875 M:      Wingman Kwok <[email protected]>
16876 M:      Murali Karicheri <[email protected]>
16877 L:      [email protected]
16878 S:      Maintained
16879 F:      drivers/net/ethernet/ti/netcp*
16880
16881 TI PCM3060 ASoC CODEC DRIVER
16882 M:      Kirill Marinushkin <[email protected]>
16883 L:      [email protected] (moderated for non-subscribers)
16884 S:      Maintained
16885 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16886 F:      sound/soc/codecs/pcm3060*
16887
16888 TI TAS571X FAMILY ASoC CODEC DRIVER
16889 M:      Kevin Cernekee <[email protected]>
16890 L:      [email protected] (moderated for non-subscribers)
16891 S:      Odd Fixes
16892 F:      sound/soc/codecs/tas571x*
16893
16894 TI TCAN4X5X DEVICE DRIVER
16895 M:      Dan Murphy <[email protected]>
16896 L:      [email protected]
16897 S:      Maintained
16898 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
16899 F:      drivers/net/can/m_can/tcan4x5x.c
16900
16901 TI TRF7970A NFC DRIVER
16902 M:      Mark Greer <[email protected]>
16903 L:      [email protected]
16904 L:      [email protected] (moderated for non-subscribers)
16905 S:      Supported
16906 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16907 F:      drivers/nfc/trf7970a.c
16908
16909 TI TWL4030 SERIES SOC CODEC DRIVER
16910 M:      Peter Ujfalusi <[email protected]>
16911 L:      [email protected] (moderated for non-subscribers)
16912 S:      Maintained
16913 F:      sound/soc/codecs/twl4030*
16914
16915 TI VPE/CAL DRIVERS
16916 M:      Benoit Parrot <[email protected]>
16917 L:      [email protected]
16918 S:      Maintained
16919 W:      http://linuxtv.org/
16920 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16921 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
16922 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
16923 F:      drivers/media/platform/ti-vpe/
16924
16925 TI WILINK WIRELESS DRIVERS
16926 L:      [email protected]
16927 S:      Orphan
16928 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16929 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16931 F:      drivers/net/wireless/ti/
16932 F:      include/linux/wl12xx.h
16933
16934 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16935 M:      John Stultz <[email protected]>
16936 M:      Thomas Gleixner <[email protected]>
16937 R:      Stephen Boyd <[email protected]>
16938 L:      [email protected]
16939 S:      Supported
16940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16941 F:      include/linux/clocksource.h
16942 F:      include/linux/time.h
16943 F:      include/linux/timex.h
16944 F:      include/uapi/linux/time.h
16945 F:      include/uapi/linux/timex.h
16946 F:      kernel/time/alarmtimer.c
16947 F:      kernel/time/clocksource.c
16948 F:      kernel/time/ntp.c
16949 F:      kernel/time/time*.c
16950 F:      tools/testing/selftests/timers/
16951
16952 TIPC NETWORK LAYER
16953 M:      Jon Maloy <[email protected]>
16954 M:      Ying Xue <[email protected]>
16955 L:      [email protected] (core kernel code)
16956 L:      [email protected] (user apps, general discussion)
16957 S:      Maintained
16958 W:      http://tipc.sourceforge.net/
16959 F:      include/uapi/linux/tipc*.h
16960 F:      net/tipc/
16961
16962 TLAN NETWORK DRIVER
16963 M:      Samuel Chessman <[email protected]>
16964 L:      [email protected] (subscribers-only)
16965 S:      Maintained
16966 W:      http://sourceforge.net/projects/tlan/
16967 F:      Documentation/networking/device_drivers/ti/tlan.txt
16968 F:      drivers/net/ethernet/ti/tlan.*
16969
16970 TM6000 VIDEO4LINUX DRIVER
16971 M:      Mauro Carvalho Chehab <[email protected]>
16972 L:      [email protected]
16973 S:      Odd fixes
16974 W:      https://linuxtv.org
16975 T:      git git://linuxtv.org/media_tree.git
16976 F:      Documentation/media/v4l-drivers/tm6000*
16977 F:      drivers/media/usb/tm6000/
16978
16979 TMIO/SDHI MMC DRIVER
16980 M:      Wolfram Sang <[email protected]>
16981 L:      [email protected]
16982 S:      Supported
16983 F:      drivers/mmc/host/renesas_sdhi*
16984 F:      drivers/mmc/host/tmio_mmc*
16985 F:      include/linux/mfd/tmio.h
16986
16987 TMP401 HARDWARE MONITOR DRIVER
16988 M:      Guenter Roeck <[email protected]>
16989 L:      [email protected]
16990 S:      Maintained
16991 F:      Documentation/hwmon/tmp401.rst
16992 F:      drivers/hwmon/tmp401.c
16993
16994 TMP513 HARDWARE MONITOR DRIVER
16995 M:      Eric Tremblay <[email protected]>
16996 L:      [email protected]
16997 S:      Maintained
16998 F:      Documentation/hwmon/tmp513.rst
16999 F:      drivers/hwmon/tmp513.c
17000
17001 TMPFS (SHMEM FILESYSTEM)
17002 M:      Hugh Dickins <[email protected]>
17003 L:      [email protected]
17004 S:      Maintained
17005 F:      include/linux/shmem_fs.h
17006 F:      mm/shmem.c
17007
17008 TOMOYO SECURITY MODULE
17009 M:      Kentaro Takeda <[email protected]>
17010 M:      Tetsuo Handa <[email protected]>
17011 L:      [email protected] (subscribers-only, for developers in English)
17012 L:      [email protected] (subscribers-only, for users in English)
17013 L:      [email protected] (subscribers-only, for developers in Japanese)
17014 L:      [email protected] (subscribers-only, for users in Japanese)
17015 S:      Maintained
17016 W:      https://tomoyo.osdn.jp/
17017 F:      security/tomoyo/
17018
17019 TOPSTAR LAPTOP EXTRAS DRIVER
17020 M:      Herton Ronaldo Krzesinski <[email protected]>
17021 L:      [email protected]
17022 S:      Maintained
17023 F:      drivers/platform/x86/topstar-laptop.c
17024
17025 TORTURE-TEST MODULES
17026 M:      Davidlohr Bueso <[email protected]>
17027 M:      "Paul E. McKenney" <[email protected]>
17028 M:      Josh Triplett <[email protected]>
17029 L:      [email protected]
17030 S:      Supported
17031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17032 F:      Documentation/RCU/torture.txt
17033 F:      kernel/locking/locktorture.c
17034 F:      kernel/rcu/rcuperf.c
17035 F:      kernel/rcu/rcutorture.c
17036 F:      kernel/torture.c
17037
17038 TOSHIBA ACPI EXTRAS DRIVER
17039 M:      Azael Avalos <[email protected]>
17040 L:      [email protected]
17041 S:      Maintained
17042 F:      drivers/platform/x86/toshiba_acpi.c
17043
17044 TOSHIBA BLUETOOTH DRIVER
17045 M:      Azael Avalos <[email protected]>
17046 L:      [email protected]
17047 S:      Maintained
17048 F:      drivers/platform/x86/toshiba_bluetooth.c
17049
17050 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17051 M:      Azael Avalos <[email protected]>
17052 L:      [email protected]
17053 S:      Maintained
17054 F:      drivers/platform/x86/toshiba_haps.c
17055
17056 TOSHIBA SMM DRIVER
17057 M:      Jonathan Buzzard <[email protected]>
17058 S:      Maintained
17059 W:      http://www.buzzard.org.uk/toshiba/
17060 F:      drivers/char/toshiba.c
17061 F:      include/linux/toshiba.h
17062 F:      include/uapi/linux/toshiba.h
17063
17064 TOSHIBA TC358743 DRIVER
17065 M:      Mats Randgaard <[email protected]>
17066 L:      [email protected]
17067 S:      Maintained
17068 F:      drivers/media/i2c/tc358743*
17069 F:      include/media/i2c/tc358743.h
17070
17071 TOSHIBA WMI HOTKEYS DRIVER
17072 M:      Azael Avalos <[email protected]>
17073 L:      [email protected]
17074 S:      Maintained
17075 F:      drivers/platform/x86/toshiba-wmi.c
17076
17077 TPM DEVICE DRIVER
17078 M:      Peter Huewe <[email protected]>
17079 M:      Jarkko Sakkinen <[email protected]>
17080 R:      Jason Gunthorpe <[email protected]>
17081 L:      [email protected]
17082 S:      Maintained
17083 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17084 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17085 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17086 F:      drivers/char/tpm/
17087
17088 TRACING
17089 M:      Steven Rostedt <[email protected]>
17090 M:      Ingo Molnar <[email protected]>
17091 S:      Maintained
17092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17093 F:      Documentation/trace/ftrace.rst
17094 F:      arch/*/*/*/ftrace.h
17095 F:      arch/*/kernel/ftrace.c
17096 F:      include/*/ftrace.h
17097 F:      include/linux/trace*.h
17098 F:      include/trace/
17099 F:      kernel/trace/
17100 F:      tools/testing/selftests/ftrace/
17101
17102 TRACING MMIO ACCESSES (MMIOTRACE)
17103 M:      Steven Rostedt <[email protected]>
17104 M:      Ingo Molnar <[email protected]>
17105 R:      Karol Herbst <[email protected]>
17106 R:      Pekka Paalanen <[email protected]>
17107 L:      [email protected]
17108 L:      [email protected]
17109 S:      Maintained
17110 F:      arch/x86/mm/kmmio.c
17111 F:      arch/x86/mm/mmio-mod.c
17112 F:      arch/x86/mm/testmmiotrace.c
17113 F:      include/linux/mmiotrace.h
17114 F:      kernel/trace/trace_mmiotrace.c
17115
17116 TRIVIAL PATCHES
17117 M:      Jiri Kosina <[email protected]>
17118 S:      Maintained
17119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17120 K:      ^Subject:.*(?i)trivial
17121
17122 TTY LAYER
17123 M:      Greg Kroah-Hartman <[email protected]>
17124 M:      Jiri Slaby <[email protected]>
17125 S:      Supported
17126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17127 F:      Documentation/driver-api/serial/
17128 F:      drivers/tty/
17129 F:      drivers/tty/serial/serial_core.c
17130 F:      include/linux/serial.h
17131 F:      include/linux/serial_core.h
17132 F:      include/linux/tty.h
17133 F:      include/uapi/linux/serial.h
17134 F:      include/uapi/linux/serial_core.h
17135 F:      include/uapi/linux/tty.h
17136
17137 TUA9001 MEDIA DRIVER
17138 M:      Antti Palosaari <[email protected]>
17139 L:      [email protected]
17140 S:      Maintained
17141 W:      https://linuxtv.org
17142 W:      http://palosaari.fi/linux/
17143 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17144 T:      git git://linuxtv.org/anttip/media_tree.git
17145 F:      drivers/media/tuners/tua9001*
17146
17147 TULIP NETWORK DRIVERS
17148 L:      [email protected]
17149 L:      [email protected]
17150 S:      Orphan
17151 F:      drivers/net/ethernet/dec/tulip/
17152
17153 TUN/TAP driver
17154 M:      Maxim Krasnyansky <[email protected]>
17155 S:      Maintained
17156 W:      http://vtun.sourceforge.net/tun
17157 F:      Documentation/networking/tuntap.txt
17158 F:      arch/um/os-Linux/drivers/
17159
17160 TURBOCHANNEL SUBSYSTEM
17161 M:      "Maciej W. Rozycki" <[email protected]>
17162 M:      Ralf Baechle <[email protected]>
17163 L:      [email protected]
17164 S:      Maintained
17165 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17166 F:      drivers/tc/
17167 F:      include/linux/tc.h
17168
17169 TURBOSTAT UTILITY
17170 M:      "Len Brown" <[email protected]>
17171 L:      [email protected]
17172 S:      Supported
17173 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17174 B:      https://bugzilla.kernel.org
17175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17176 F:      tools/power/x86/turbostat/
17177
17178 TW5864 VIDEO4LINUX DRIVER
17179 M:      Bluecherry Maintainers <[email protected]>
17180 M:      Anton Sviridenko <[email protected]>
17181 M:      Andrey Utkin <[email protected]>
17182 M:      Andrey Utkin <[email protected]>
17183 L:      [email protected]
17184 S:      Supported
17185 F:      drivers/media/pci/tw5864/
17186
17187 TW68 VIDEO4LINUX DRIVER
17188 M:      Hans Verkuil <[email protected]>
17189 L:      [email protected]
17190 S:      Odd Fixes
17191 W:      https://linuxtv.org
17192 T:      git git://linuxtv.org/media_tree.git
17193 F:      drivers/media/pci/tw68/
17194
17195 TW686X VIDEO4LINUX DRIVER
17196 M:      Ezequiel Garcia <[email protected]>
17197 L:      [email protected]
17198 S:      Maintained
17199 W:      http://linuxtv.org
17200 T:      git git://linuxtv.org/media_tree.git
17201 F:      drivers/media/pci/tw686x/
17202
17203 UACCE ACCELERATOR FRAMEWORK
17204 M:      Zhangfei Gao <[email protected]>
17205 M:      Zhou Wang <[email protected]>
17206 L:      [email protected]
17207 L:      [email protected]
17208 S:      Maintained
17209 F:      Documentation/ABI/testing/sysfs-driver-uacce
17210 F:      Documentation/misc-devices/uacce.rst
17211 F:      drivers/misc/uacce/
17212 F:      include/linux/uacce.h
17213 F:      include/uapi/misc/uacce/
17214
17215 UBI FILE SYSTEM (UBIFS)
17216 M:      Richard Weinberger <[email protected]>
17217 L:      [email protected]
17218 S:      Supported
17219 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17222 F:      Documentation/filesystems/ubifs.rst
17223 F:      fs/ubifs/
17224
17225 UCLINUX (M68KNOMMU AND COLDFIRE)
17226 M:      Greg Ungerer <[email protected]>
17227 L:      [email protected]
17228 L:      [email protected]  (subscribers-only)
17229 S:      Maintained
17230 W:      http://www.linux-m68k.org/
17231 W:      http://www.uclinux.org/
17232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17233 F:      arch/m68k/*/*_no.*
17234 F:      arch/m68k/68*/
17235 F:      arch/m68k/coldfire/
17236 F:      arch/m68k/include/asm/*_no.*
17237
17238 UDF FILESYSTEM
17239 M:      Jan Kara <[email protected]>
17240 S:      Maintained
17241 F:      Documentation/filesystems/udf.rst
17242 F:      fs/udf/
17243
17244 UDRAW TABLET
17245 M:      Bastien Nocera <[email protected]>
17246 L:      [email protected]
17247 S:      Maintained
17248 F:      drivers/hid/hid-udraw-ps3.c
17249
17250 UFS FILESYSTEM
17251 M:      Evgeniy Dushistov <[email protected]>
17252 S:      Maintained
17253 F:      Documentation/admin-guide/ufs.rst
17254 F:      fs/ufs/
17255
17256 UHID USERSPACE HID IO DRIVER
17257 M:      David Herrmann <[email protected]>
17258 L:      [email protected]
17259 S:      Maintained
17260 F:      drivers/hid/uhid.c
17261 F:      include/uapi/linux/uhid.h
17262
17263 ULPI BUS
17264 M:      Heikki Krogerus <[email protected]>
17265 L:      [email protected]
17266 S:      Maintained
17267 F:      drivers/usb/common/ulpi.c
17268 F:      include/linux/ulpi/
17269
17270 UNICODE SUBSYSTEM
17271 M:      Gabriel Krisman Bertazi <[email protected]>
17272 L:      [email protected]
17273 S:      Supported
17274 F:      fs/unicode/
17275
17276 UNICORE32 ARCHITECTURE
17277 M:      Guan Xuetao <[email protected]>
17278 S:      Maintained
17279 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17280 T:      git git://github.com/gxt/linux.git
17281 F:      arch/unicore32/
17282
17283 UNIFDEF
17284 M:      Tony Finch <[email protected]>
17285 S:      Maintained
17286 W:      http://dotat.at/prog/unifdef
17287 F:      scripts/unifdef.c
17288
17289 UNIFORM CDROM DRIVER
17290 M:      Jens Axboe <[email protected]>
17291 S:      Maintained
17292 W:      http://www.kernel.dk
17293 F:      Documentation/cdrom/
17294 F:      drivers/cdrom/cdrom.c
17295 F:      include/linux/cdrom.h
17296 F:      include/uapi/linux/cdrom.h
17297
17298 UNISYS S-PAR DRIVERS
17299 M:      David Kershner <[email protected]>
17300 L:      [email protected] (Unisys internal)
17301 S:      Supported
17302 F:      drivers/staging/unisys/
17303 F:      drivers/visorbus/
17304 F:      include/linux/visorbus.h
17305
17306 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17307 R:      Alim Akhtar <[email protected]>
17308 R:      Avri Altman <[email protected]>
17309 L:      [email protected]
17310 S:      Supported
17311 F:      Documentation/scsi/ufs.rst
17312 F:      drivers/scsi/ufs/
17313
17314 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17315 M:      Pedro Sousa <[email protected]>
17316 L:      [email protected]
17317 S:      Supported
17318 F:      drivers/scsi/ufs/*dwc*
17319
17320 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17321 M:      Stanley Chu <[email protected]>
17322 L:      [email protected]
17323 L:      [email protected] (moderated for non-subscribers)
17324 S:      Maintained
17325 F:      drivers/scsi/ufs/ufs-mediatek*
17326
17327 UNSORTED BLOCK IMAGES (UBI)
17328 M:      Richard Weinberger <[email protected]>
17329 L:      [email protected]
17330 S:      Supported
17331 W:      http://www.linux-mtd.infradead.org/
17332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17334 F:      drivers/mtd/ubi/
17335 F:      include/linux/mtd/ubi.h
17336 F:      include/uapi/mtd/ubi-user.h
17337
17338 USB "USBNET" DRIVER FRAMEWORK
17339 M:      Oliver Neukum <[email protected]>
17340 L:      [email protected]
17341 S:      Maintained
17342 W:      http://www.linux-usb.org/usbnet
17343 F:      drivers/net/usb/usbnet.c
17344 F:      include/linux/usb/usbnet.h
17345
17346 USB ACM DRIVER
17347 M:      Oliver Neukum <[email protected]>
17348 L:      [email protected]
17349 S:      Maintained
17350 F:      Documentation/usb/acm.rst
17351 F:      drivers/usb/class/cdc-acm.*
17352
17353 USB APPLE MFI FASTCHARGE DRIVER
17354 M:      Bastien Nocera <[email protected]>
17355 L:      [email protected]
17356 S:      Maintained
17357 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17358
17359 USB AR5523 WIRELESS DRIVER
17360 M:      Pontus Fuchs <[email protected]>
17361 L:      [email protected]
17362 S:      Maintained
17363 F:      drivers/net/wireless/ath/ar5523/
17364
17365 USB ATTACHED SCSI
17366 M:      Oliver Neukum <[email protected]>
17367 L:      [email protected]
17368 L:      [email protected]
17369 S:      Maintained
17370 F:      drivers/usb/storage/uas.c
17371
17372 USB CDC ETHERNET DRIVER
17373 M:      Oliver Neukum <[email protected]>
17374 L:      [email protected]
17375 S:      Maintained
17376 F:      drivers/net/usb/cdc_*.c
17377 F:      include/uapi/linux/usb/cdc.h
17378
17379 USB CHAOSKEY DRIVER
17380 M:      Keith Packard <[email protected]>
17381 L:      [email protected]
17382 S:      Maintained
17383 F:      drivers/usb/misc/chaoskey.c
17384
17385 USB CYPRESS C67X00 DRIVER
17386 M:      Peter Korsgaard <[email protected]>
17387 L:      [email protected]
17388 S:      Maintained
17389 F:      drivers/usb/c67x00/
17390
17391 USB DAVICOM DM9601 DRIVER
17392 M:      Peter Korsgaard <[email protected]>
17393 L:      [email protected]
17394 S:      Maintained
17395 W:      http://www.linux-usb.org/usbnet
17396 F:      drivers/net/usb/dm9601.c
17397
17398 USB EHCI DRIVER
17399 M:      Alan Stern <[email protected]>
17400 L:      [email protected]
17401 S:      Maintained
17402 F:      Documentation/usb/ehci.rst
17403 F:      drivers/usb/host/ehci*
17404
17405 USB GADGET/PERIPHERAL SUBSYSTEM
17406 M:      Felipe Balbi <[email protected]>
17407 L:      [email protected]
17408 S:      Maintained
17409 W:      http://www.linux-usb.org/gadget
17410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17411 F:      drivers/usb/gadget/
17412 F:      include/linux/usb/gadget*
17413
17414 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17415 M:      Jiri Kosina <[email protected]>
17416 M:      Benjamin Tissoires <[email protected]>
17417 L:      [email protected]
17418 S:      Maintained
17419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17420 F:      Documentation/hid/hiddev.rst
17421 F:      drivers/hid/usbhid/
17422
17423 USB INTEL XHCI ROLE MUX DRIVER
17424 M:      Hans de Goede <[email protected]>
17425 L:      [email protected]
17426 S:      Maintained
17427 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17428
17429 USB IP DRIVER FOR HISILICON KIRIN
17430 M:      Yu Chen <[email protected]>
17431 M:      Binghui Wang <[email protected]>
17432 L:      [email protected]
17433 S:      Maintained
17434 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17435 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17436
17437 USB ISP116X DRIVER
17438 M:      Olav Kongas <[email protected]>
17439 L:      [email protected]
17440 S:      Maintained
17441 F:      drivers/usb/host/isp116x*
17442 F:      include/linux/usb/isp116x.h
17443
17444 USB LAN78XX ETHERNET DRIVER
17445 M:      Woojung Huh <[email protected]>
17446 M:      Microchip Linux Driver Support <[email protected]>
17447 L:      [email protected]
17448 S:      Maintained
17449 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17450 F:      drivers/net/usb/lan78xx.*
17451 F:      include/dt-bindings/net/microchip-lan78xx.h
17452
17453 USB MASS STORAGE DRIVER
17454 M:      Alan Stern <[email protected]>
17455 L:      [email protected]
17456 L:      [email protected]
17457 S:      Maintained
17458 F:      drivers/usb/storage/
17459
17460 USB MIDI DRIVER
17461 M:      Clemens Ladisch <[email protected]>
17462 L:      [email protected] (moderated for non-subscribers)
17463 S:      Maintained
17464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17465 F:      sound/usb/midi.*
17466
17467 USB NETWORKING DRIVERS
17468 L:      [email protected]
17469 S:      Odd Fixes
17470 F:      drivers/net/usb/
17471
17472 USB OHCI DRIVER
17473 M:      Alan Stern <[email protected]>
17474 L:      [email protected]
17475 S:      Maintained
17476 F:      Documentation/usb/ohci.rst
17477 F:      drivers/usb/host/ohci*
17478
17479 USB OTG FSM (Finite State Machine)
17480 M:      Peter Chen <[email protected]>
17481 L:      [email protected]
17482 S:      Maintained
17483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17484 F:      drivers/usb/common/usb-otg-fsm.c
17485
17486 USB OVER IP DRIVER
17487 M:      Valentina Manea <[email protected]>
17488 M:      Shuah Khan <[email protected]>
17489 M:      Shuah Khan <[email protected]>
17490 L:      [email protected]
17491 S:      Maintained
17492 F:      Documentation/usb/usbip_protocol.rst
17493 F:      drivers/usb/usbip/
17494 F:      tools/testing/selftests/drivers/usb/usbip/
17495 F:      tools/usb/usbip/
17496
17497 USB PEGASUS DRIVER
17498 M:      Petko Manolov <[email protected]>
17499 L:      [email protected]
17500 L:      [email protected]
17501 S:      Maintained
17502 W:      https://github.com/petkan/pegasus
17503 T:      git git://github.com/petkan/pegasus.git
17504 F:      drivers/net/usb/pegasus.*
17505
17506 USB PHY LAYER
17507 M:      Felipe Balbi <[email protected]>
17508 L:      [email protected]
17509 S:      Maintained
17510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17511 F:      drivers/usb/phy/
17512
17513 USB PRINTER DRIVER (usblp)
17514 M:      Pete Zaitcev <[email protected]>
17515 L:      [email protected]
17516 S:      Supported
17517 F:      drivers/usb/class/usblp.c
17518
17519 USB QMI WWAN NETWORK DRIVER
17520 M:      Bjørn Mork <[email protected]>
17521 L:      [email protected]
17522 S:      Maintained
17523 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17524 F:      drivers/net/usb/qmi_wwan.c
17525
17526 USB RTL8150 DRIVER
17527 M:      Petko Manolov <[email protected]>
17528 L:      [email protected]
17529 L:      [email protected]
17530 S:      Maintained
17531 W:      https://github.com/petkan/rtl8150
17532 T:      git git://github.com/petkan/rtl8150.git
17533 F:      drivers/net/usb/rtl8150.c
17534
17535 USB SERIAL SUBSYSTEM
17536 M:      Johan Hovold <[email protected]>
17537 L:      [email protected]
17538 S:      Maintained
17539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17540 F:      Documentation/usb/usb-serial.rst
17541 F:      drivers/usb/serial/
17542 F:      include/linux/usb/serial.h
17543
17544 USB SMSC75XX ETHERNET DRIVER
17545 M:      Steve Glendinning <[email protected]>
17546 L:      [email protected]
17547 S:      Maintained
17548 F:      drivers/net/usb/smsc75xx.*
17549
17550 USB SMSC95XX ETHERNET DRIVER
17551 M:      Steve Glendinning <[email protected]>
17552 M:      Microchip Linux Driver Support <[email protected]>
17553 L:      [email protected]
17554 S:      Maintained
17555 F:      drivers/net/usb/smsc95xx.*
17556
17557 USB SUBSYSTEM
17558 M:      Greg Kroah-Hartman <[email protected]>
17559 L:      [email protected]
17560 S:      Supported
17561 W:      http://www.linux-usb.org
17562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17563 F:      Documentation/devicetree/bindings/usb/
17564 F:      Documentation/usb/
17565 F:      drivers/usb/
17566 F:      include/linux/usb.h
17567 F:      include/linux/usb/
17568
17569 USB TYPEC BUS FOR ALTERNATE MODES
17570 M:      Heikki Krogerus <[email protected]>
17571 L:      [email protected]
17572 S:      Maintained
17573 F:      Documentation/ABI/testing/sysfs-bus-typec
17574 F:      Documentation/driver-api/usb/typec_bus.rst
17575 F:      drivers/usb/typec/altmodes/
17576 F:      include/linux/usb/typec_altmode.h
17577
17578 USB TYPEC CLASS
17579 M:      Heikki Krogerus <[email protected]>
17580 L:      [email protected]
17581 S:      Maintained
17582 F:      Documentation/ABI/testing/sysfs-class-typec
17583 F:      Documentation/driver-api/usb/typec.rst
17584 F:      drivers/usb/typec/
17585 F:      include/linux/usb/typec.h
17586
17587 USB TYPEC PI3USB30532 MUX DRIVER
17588 M:      Hans de Goede <[email protected]>
17589 L:      [email protected]
17590 S:      Maintained
17591 F:      drivers/usb/typec/mux/pi3usb30532.c
17592
17593 USB TYPEC PORT CONTROLLER DRIVERS
17594 M:      Guenter Roeck <[email protected]>
17595 L:      [email protected]
17596 S:      Maintained
17597 F:      drivers/usb/typec/tcpm/
17598
17599 USB UHCI DRIVER
17600 M:      Alan Stern <[email protected]>
17601 L:      [email protected]
17602 S:      Maintained
17603 F:      drivers/usb/host/uhci*
17604
17605 USB VIDEO CLASS
17606 M:      Laurent Pinchart <[email protected]>
17607 L:      [email protected] (subscribers-only)
17608 L:      [email protected]
17609 S:      Maintained
17610 W:      http://www.ideasonboard.org/uvc/
17611 T:      git git://linuxtv.org/media_tree.git
17612 F:      drivers/media/usb/uvc/
17613 F:      include/uapi/linux/uvcvideo.h
17614
17615 USB VISION DRIVER
17616 M:      Hans Verkuil <[email protected]>
17617 L:      [email protected]
17618 S:      Odd Fixes
17619 W:      https://linuxtv.org
17620 T:      git git://linuxtv.org/media_tree.git
17621 F:      drivers/staging/media/usbvision/
17622
17623 USB WEBCAM GADGET
17624 M:      Laurent Pinchart <[email protected]>
17625 L:      [email protected]
17626 S:      Maintained
17627 F:      drivers/usb/gadget/function/*uvc*
17628 F:      drivers/usb/gadget/legacy/webcam.c
17629 F:      include/uapi/linux/usb/g_uvc.h
17630
17631 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17632 M:      Jussi Kivilinna <[email protected]>
17633 L:      [email protected]
17634 S:      Maintained
17635 F:      drivers/net/wireless/rndis_wlan.c
17636
17637 USB XHCI DRIVER
17638 M:      Mathias Nyman <[email protected]>
17639 L:      [email protected]
17640 S:      Supported
17641 F:      drivers/usb/host/pci-quirks*
17642 F:      drivers/usb/host/xhci*
17643
17644 USB ZD1201 DRIVER
17645 L:      [email protected]
17646 S:      Orphan
17647 W:      http://linux-lc100020.sourceforge.net
17648 F:      drivers/net/wireless/zydas/zd1201.*
17649
17650 USB ZR364XX DRIVER
17651 M:      Antoine Jacquet <[email protected]>
17652 L:      [email protected]
17653 L:      [email protected]
17654 S:      Maintained
17655 W:      http://royale.zerezo.com/zr364xx/
17656 T:      git git://linuxtv.org/media_tree.git
17657 F:      Documentation/media/v4l-drivers/zr364xx*
17658 F:      drivers/media/usb/zr364xx/
17659
17660 USER-MODE LINUX (UML)
17661 M:      Jeff Dike <[email protected]>
17662 M:      Richard Weinberger <[email protected]>
17663 M:      Anton Ivanov <[email protected]>
17664 L:      [email protected]
17665 S:      Maintained
17666 W:      http://user-mode-linux.sourceforge.net
17667 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17669 F:      Documentation/virt/uml/
17670 F:      arch/um/
17671 F:      arch/x86/um/
17672 F:      fs/hostfs/
17673
17674 USERSPACE COPYIN/COPYOUT (UIOVEC)
17675 M:      Alexander Viro <[email protected]>
17676 S:      Maintained
17677 F:      include/linux/uio.h
17678 F:      lib/iov_iter.c
17679
17680 USERSPACE DMA BUFFER DRIVER
17681 M:      Gerd Hoffmann <[email protected]>
17682 L:      [email protected]
17683 S:      Maintained
17684 T:      git git://anongit.freedesktop.org/drm/drm-misc
17685 F:      drivers/dma-buf/udmabuf.c
17686 F:      include/uapi/linux/udmabuf.h
17687
17688 USERSPACE I/O (UIO)
17689 M:      Greg Kroah-Hartman <[email protected]>
17690 S:      Maintained
17691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17692 F:      Documentation/driver-api/uio-howto.rst
17693 F:      drivers/uio/
17694 F:      include/linux/uio_driver.h
17695
17696 UTIL-LINUX PACKAGE
17697 M:      Karel Zak <[email protected]>
17698 L:      [email protected]
17699 S:      Maintained
17700 W:      http://en.wikipedia.org/wiki/Util-linux
17701 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17702
17703 UUID HELPERS
17704 M:      Christoph Hellwig <[email protected]>
17705 R:      Andy Shevchenko <[email protected]>
17706 L:      [email protected]
17707 S:      Maintained
17708 T:      git git://git.infradead.org/users/hch/uuid.git
17709 F:      include/linux/uuid.h
17710 F:      include/uapi/linux/uuid.h
17711 F:      lib/test_uuid.c
17712 F:      lib/uuid.c
17713
17714 UVESAFB DRIVER
17715 M:      Michal Januszewski <[email protected]>
17716 L:      [email protected]
17717 S:      Maintained
17718 W:      https://github.com/mjanusz/v86d
17719 F:      Documentation/fb/uvesafb.rst
17720 F:      drivers/video/fbdev/uvesafb.*
17721
17722 Ux500 CLOCK DRIVERS
17723 M:      Ulf Hansson <[email protected]>
17724 L:      [email protected]
17725 L:      [email protected] (moderated for non-subscribers)
17726 S:      Maintained
17727 F:      drivers/clk/ux500/
17728
17729 VF610 NAND DRIVER
17730 M:      Stefan Agner <[email protected]>
17731 L:      [email protected]
17732 S:      Supported
17733 F:      drivers/mtd/nand/raw/vf610_nfc.c
17734
17735 VFAT/FAT/MSDOS FILESYSTEM
17736 M:      OGAWA Hirofumi <[email protected]>
17737 S:      Maintained
17738 F:      Documentation/filesystems/vfat.rst
17739 F:      fs/fat/
17740
17741 VFIO DRIVER
17742 M:      Alex Williamson <[email protected]>
17743 R:      Cornelia Huck <[email protected]>
17744 L:      [email protected]
17745 S:      Maintained
17746 T:      git git://github.com/awilliam/linux-vfio.git
17747 F:      Documentation/driver-api/vfio.rst
17748 F:      drivers/vfio/
17749 F:      include/linux/vfio.h
17750 F:      include/uapi/linux/vfio.h
17751
17752 VFIO MEDIATED DEVICE DRIVERS
17753 M:      Kirti Wankhede <[email protected]>
17754 L:      [email protected]
17755 S:      Maintained
17756 F:      Documentation/driver-api/vfio-mediated-device.rst
17757 F:      drivers/vfio/mdev/
17758 F:      include/linux/mdev.h
17759 F:      samples/vfio-mdev/
17760
17761 VFIO PLATFORM DRIVER
17762 M:      Eric Auger <[email protected]>
17763 L:      [email protected]
17764 S:      Maintained
17765 F:      drivers/vfio/platform/
17766
17767 VGA_SWITCHEROO
17768 R:      Lukas Wunner <[email protected]>
17769 S:      Maintained
17770 T:      git git://anongit.freedesktop.org/drm/drm-misc
17771 F:      Documentation/gpu/vga-switcheroo.rst
17772 F:      drivers/gpu/vga/vga_switcheroo.c
17773 F:      include/linux/vga_switcheroo.h
17774
17775 VIA RHINE NETWORK DRIVER
17776 S:      Orphan
17777 F:      drivers/net/ethernet/via/via-rhine.c
17778
17779 VIA SD/MMC CARD CONTROLLER DRIVER
17780 M:      Bruce Chang <[email protected]>
17781 M:      Harald Welte <[email protected]>
17782 S:      Maintained
17783 F:      drivers/mmc/host/via-sdmmc.c
17784
17785 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17786 M:      Florian Tobias Schandinat <[email protected]>
17787 L:      [email protected]
17788 S:      Maintained
17789 F:      drivers/video/fbdev/via/
17790 F:      include/linux/via-core.h
17791 F:      include/linux/via-gpio.h
17792 F:      include/linux/via_i2c.h
17793
17794 VIA VELOCITY NETWORK DRIVER
17795 M:      Francois Romieu <[email protected]>
17796 L:      [email protected]
17797 S:      Maintained
17798 F:      drivers/net/ethernet/via/via-velocity.*
17799
17800 VICODEC VIRTUAL CODEC DRIVER
17801 M:      Hans Verkuil <[email protected]>
17802 L:      [email protected]
17803 S:      Maintained
17804 W:      https://linuxtv.org
17805 T:      git git://linuxtv.org/media_tree.git
17806 F:      drivers/media/platform/vicodec/*
17807
17808 VIDEO I2C POLLING DRIVER
17809 M:      Matt Ranostay <[email protected]>
17810 L:      [email protected]
17811 S:      Maintained
17812 F:      drivers/media/i2c/video-i2c.c
17813
17814 VIDEO MULTIPLEXER DRIVER
17815 M:      Philipp Zabel <[email protected]>
17816 L:      [email protected]
17817 S:      Maintained
17818 F:      drivers/media/platform/video-mux.c
17819
17820 VIDEOBUF2 FRAMEWORK
17821 M:      Pawel Osciak <[email protected]>
17822 M:      Marek Szyprowski <[email protected]>
17823 M:      Kyungmin Park <[email protected]>
17824 R:      Tomasz Figa <[email protected]>
17825 L:      [email protected]
17826 S:      Maintained
17827 F:      drivers/media/common/videobuf2/*
17828 F:      include/media/videobuf2-*
17829
17830 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17831 M:      Helen Koike <[email protected]>
17832 R:      Shuah Khan <[email protected]>
17833 L:      [email protected]
17834 S:      Maintained
17835 W:      https://linuxtv.org
17836 T:      git git://linuxtv.org/media_tree.git
17837 F:      drivers/media/platform/vimc/*
17838
17839 VIRT LIB
17840 M:      Alex Williamson <[email protected]>
17841 M:      Paolo Bonzini <[email protected]>
17842 L:      [email protected]
17843 S:      Supported
17844 F:      virt/lib/
17845
17846 VIRTIO AND VHOST VSOCK DRIVER
17847 M:      Stefan Hajnoczi <[email protected]>
17848 M:      Stefano Garzarella <[email protected]>
17849 L:      [email protected]
17850 L:      [email protected]
17851 L:      [email protected]
17852 S:      Maintained
17853 F:      drivers/net/vsockmon.c
17854 F:      drivers/vhost/vsock.c
17855 F:      include/linux/virtio_vsock.h
17856 F:      include/uapi/linux/virtio_vsock.h
17857 F:      include/uapi/linux/vm_sockets_diag.h
17858 F:      include/uapi/linux/vsockmon.h
17859 F:      net/vmw_vsock/af_vsock_tap.c
17860 F:      net/vmw_vsock/diag.c
17861 F:      net/vmw_vsock/virtio_transport.c
17862 F:      net/vmw_vsock/virtio_transport_common.c
17863 F:      net/vmw_vsock/vsock_loopback.c
17864 F:      tools/testing/vsock/
17865
17866 VIRTIO BLOCK AND SCSI DRIVERS
17867 M:      "Michael S. Tsirkin" <[email protected]>
17868 M:      Jason Wang <[email protected]>
17869 R:      Paolo Bonzini <[email protected]>
17870 R:      Stefan Hajnoczi <[email protected]>
17871 L:      [email protected]
17872 S:      Maintained
17873 F:      drivers/block/virtio_blk.c
17874 F:      drivers/scsi/virtio_scsi.c
17875 F:      drivers/vhost/scsi.c
17876 F:      include/uapi/linux/virtio_blk.h
17877 F:      include/uapi/linux/virtio_scsi.h
17878
17879 VIRTIO CONSOLE DRIVER
17880 M:      Amit Shah <[email protected]>
17881 L:      [email protected]
17882 S:      Maintained
17883 F:      drivers/char/virtio_console.c
17884 F:      include/linux/virtio_console.h
17885 F:      include/uapi/linux/virtio_console.h
17886
17887 VIRTIO CORE AND NET DRIVERS
17888 M:      "Michael S. Tsirkin" <[email protected]>
17889 M:      Jason Wang <[email protected]>
17890 L:      [email protected]
17891 S:      Maintained
17892 F:      Documentation/devicetree/bindings/virtio/
17893 F:      drivers/block/virtio_blk.c
17894 F:      drivers/crypto/virtio/
17895 F:      drivers/net/virtio_net.c
17896 F:      drivers/vdpa/
17897 F:      drivers/virtio/
17898 F:      include/linux/vdpa.h
17899 F:      include/linux/virtio*.h
17900 F:      include/uapi/linux/virtio_*.h
17901 F:      mm/balloon_compaction.c
17902 F:      tools/virtio/
17903
17904 VIRTIO CRYPTO DRIVER
17905 M:      Gonglei <[email protected]>
17906 L:      [email protected]
17907 L:      [email protected]
17908 S:      Maintained
17909 F:      drivers/crypto/virtio/
17910 F:      include/uapi/linux/virtio_crypto.h
17911
17912 VIRTIO DRIVERS FOR S390
17913 M:      Cornelia Huck <[email protected]>
17914 M:      Halil Pasic <[email protected]>
17915 L:      [email protected]
17916 L:      [email protected]
17917 L:      [email protected]
17918 S:      Supported
17919 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17920 F:      drivers/s390/virtio/
17921
17922 VIRTIO FILE SYSTEM
17923 M:      Vivek Goyal <[email protected]>
17924 M:      Stefan Hajnoczi <[email protected]>
17925 M:      Miklos Szeredi <[email protected]>
17926 L:      [email protected]
17927 L:      [email protected]
17928 S:      Supported
17929 W:      https://virtio-fs.gitlab.io/
17930 F:      Documentation/filesystems/virtiofs.rst
17931 F:      fs/fuse/virtio_fs.c
17932 F:      include/uapi/linux/virtio_fs.h
17933
17934 VIRTIO GPU DRIVER
17935 M:      David Airlie <[email protected]>
17936 M:      Gerd Hoffmann <[email protected]>
17937 L:      [email protected]
17938 L:      [email protected]
17939 S:      Maintained
17940 T:      git git://anongit.freedesktop.org/drm/drm-misc
17941 F:      drivers/gpu/drm/virtio/
17942 F:      include/uapi/linux/virtio_gpu.h
17943
17944 VIRTIO HOST (VHOST)
17945 M:      "Michael S. Tsirkin" <[email protected]>
17946 M:      Jason Wang <[email protected]>
17947 L:      [email protected]
17948 L:      [email protected]
17949 L:      [email protected]
17950 S:      Maintained
17951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17952 F:      drivers/vhost/
17953 F:      include/linux/vhost_iotlb.h
17954 F:      include/uapi/linux/vhost.h
17955
17956 VIRTIO INPUT DRIVER
17957 M:      Gerd Hoffmann <[email protected]>
17958 S:      Maintained
17959 F:      drivers/virtio/virtio_input.c
17960 F:      include/uapi/linux/virtio_input.h
17961
17962 VIRTIO IOMMU DRIVER
17963 M:      Jean-Philippe Brucker <[email protected]>
17964 L:      [email protected]
17965 S:      Maintained
17966 F:      drivers/iommu/virtio-iommu.c
17967 F:      include/uapi/linux/virtio_iommu.h
17968
17969 VIRTUAL BOX GUEST DEVICE DRIVER
17970 M:      Hans de Goede <[email protected]>
17971 M:      Arnd Bergmann <[email protected]>
17972 M:      Greg Kroah-Hartman <[email protected]>
17973 S:      Maintained
17974 F:      drivers/virt/vboxguest/
17975 F:      include/linux/vbox_utils.h
17976 F:      include/uapi/linux/vbox*.h
17977
17978 VIRTUAL BOX SHARED FOLDER VFS DRIVER
17979 M:      Hans de Goede <[email protected]>
17980 L:      [email protected]
17981 S:      Maintained
17982 F:      fs/vboxsf/*
17983
17984 VIRTUAL SERIO DEVICE DRIVER
17985 M:      Stephen Chandler Paul <[email protected]>
17986 S:      Maintained
17987 F:      drivers/input/serio/userio.c
17988 F:      include/uapi/linux/userio.h
17989
17990 VITESSE FELIX ETHERNET SWITCH DRIVER
17991 M:      Vladimir Oltean <[email protected]>
17992 M:      Claudiu Manoil <[email protected]>
17993 L:      [email protected]
17994 S:      Maintained
17995 F:      drivers/net/dsa/ocelot/*
17996 F:      net/dsa/tag_ocelot.c
17997
17998 VIVID VIRTUAL VIDEO DRIVER
17999 M:      Hans Verkuil <[email protected]>
18000 L:      [email protected]
18001 S:      Maintained
18002 W:      https://linuxtv.org
18003 T:      git git://linuxtv.org/media_tree.git
18004 F:      drivers/media/platform/vivid/*
18005
18006 VLYNQ BUS
18007 M:      Florian Fainelli <[email protected]>
18008 L:      [email protected] (subscribers-only)
18009 S:      Maintained
18010 F:      drivers/vlynq/vlynq.c
18011 F:      include/linux/vlynq.h
18012
18013 VME SUBSYSTEM
18014 M:      Martyn Welch <[email protected]>
18015 M:      Manohar Vanga <[email protected]>
18016 M:      Greg Kroah-Hartman <[email protected]>
18017 L:      [email protected]
18018 S:      Maintained
18019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18020 F:      Documentation/driver-api/vme.rst
18021 F:      drivers/staging/vme/
18022 F:      drivers/vme/
18023 F:      include/linux/vme*
18024
18025 VMWARE BALLOON DRIVER
18026 M:      Nadav Amit <[email protected]>
18027 M:      "VMware, Inc." <[email protected]>
18028 L:      [email protected]
18029 S:      Maintained
18030 F:      drivers/misc/vmw_balloon.c
18031
18032 VMWARE HYPERVISOR INTERFACE
18033 M:      Thomas Hellstrom <[email protected]>
18034 M:      "VMware, Inc." <[email protected]>
18035 L:      [email protected]
18036 S:      Supported
18037 F:      arch/x86/include/asm/vmware.h
18038 F:      arch/x86/kernel/cpu/vmware.c
18039
18040 VMWARE PVRDMA DRIVER
18041 M:      Adit Ranadive <[email protected]>
18042 M:      VMware PV-Drivers <[email protected]>
18043 L:      [email protected]
18044 S:      Maintained
18045 F:      drivers/infiniband/hw/vmw_pvrdma/
18046
18047 VMware PVSCSI driver
18048 M:      Jim Gill <[email protected]>
18049 M:      VMware PV-Drivers <[email protected]>
18050 L:      [email protected]
18051 S:      Maintained
18052 F:      drivers/scsi/vmw_pvscsi.c
18053 F:      drivers/scsi/vmw_pvscsi.h
18054
18055 VMWARE VIRTUAL PTP CLOCK DRIVER
18056 M:      Vivek Thampi <[email protected]>
18057 M:      "VMware, Inc." <[email protected]>
18058 L:      [email protected]
18059 S:      Supported
18060 F:      drivers/ptp/ptp_vmw.c
18061
18062 VMWARE VMMOUSE SUBDRIVER
18063 M:      "VMware Graphics" <[email protected]>
18064 M:      "VMware, Inc." <[email protected]>
18065 L:      [email protected]
18066 S:      Maintained
18067 F:      drivers/input/mouse/vmmouse.c
18068 F:      drivers/input/mouse/vmmouse.h
18069
18070 VMWARE VMXNET3 ETHERNET DRIVER
18071 M:      Ronak Doshi <[email protected]>
18072 M:      "VMware, Inc." <[email protected]>
18073 L:      [email protected]
18074 S:      Maintained
18075 F:      drivers/net/vmxnet3/
18076
18077 VOCORE VOCORE2 BOARD
18078 M:      Harvey Hunt <[email protected]>
18079 L:      [email protected]
18080 S:      Maintained
18081 F:      arch/mips/boot/dts/ralink/vocore2.dts
18082
18083 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18084 M:      Liam Girdwood <[email protected]>
18085 M:      Mark Brown <[email protected]>
18086 L:      [email protected]
18087 S:      Supported
18088 W:      http://www.slimlogic.co.uk/?p=48
18089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18090 F:      Documentation/devicetree/bindings/regulator/
18091 F:      Documentation/power/regulator/
18092 F:      drivers/regulator/
18093 F:      include/dt-bindings/regulator/
18094 F:      include/linux/regulator/
18095 K:      regulator_get_optional
18096
18097 VRF
18098 M:      David Ahern <[email protected]>
18099 M:      Shrijeet Mukherjee <[email protected]>
18100 L:      [email protected]
18101 S:      Maintained
18102 F:      Documentation/networking/vrf.txt
18103 F:      drivers/net/vrf.c
18104
18105 VSPRINTF
18106 M:      Petr Mladek <[email protected]>
18107 M:      Steven Rostedt <[email protected]>
18108 M:      Sergey Senozhatsky <[email protected]>
18109 R:      Andy Shevchenko <[email protected]>
18110 R:      Rasmus Villemoes <[email protected]>
18111 S:      Maintained
18112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18113 F:      Documentation/core-api/printk-formats.rst
18114 F:      lib/test_printf.c
18115 F:      lib/vsprintf.c
18116
18117 VT1211 HARDWARE MONITOR DRIVER
18118 M:      Juerg Haefliger <[email protected]>
18119 L:      [email protected]
18120 S:      Maintained
18121 F:      Documentation/hwmon/vt1211.rst
18122 F:      drivers/hwmon/vt1211.c
18123
18124 VT8231 HARDWARE MONITOR DRIVER
18125 M:      Roger Lucas <[email protected]>
18126 L:      [email protected]
18127 S:      Maintained
18128 F:      drivers/hwmon/vt8231.c
18129
18130 VUB300 USB to SDIO/SD/MMC bridge chip
18131 L:      [email protected]
18132 S:      Orphan
18133 F:      drivers/mmc/host/vub300.c
18134
18135 W1 DALLAS'S 1-WIRE BUS
18136 M:      Evgeniy Polyakov <[email protected]>
18137 S:      Maintained
18138 F:      Documentation/devicetree/bindings/w1/
18139 F:      Documentation/w1/
18140 F:      drivers/w1/
18141 F:      include/linux/w1.h
18142
18143 W83791D HARDWARE MONITORING DRIVER
18144 M:      Marc Hulsman <[email protected]>
18145 L:      [email protected]
18146 S:      Maintained
18147 F:      Documentation/hwmon/w83791d.rst
18148 F:      drivers/hwmon/w83791d.c
18149
18150 W83793 HARDWARE MONITORING DRIVER
18151 M:      Rudolf Marek <[email protected]>
18152 L:      [email protected]
18153 S:      Maintained
18154 F:      Documentation/hwmon/w83793.rst
18155 F:      drivers/hwmon/w83793.c
18156
18157 W83795 HARDWARE MONITORING DRIVER
18158 M:      Jean Delvare <[email protected]>
18159 L:      [email protected]
18160 S:      Maintained
18161 F:      drivers/hwmon/w83795.c
18162
18163 W83L51xD SD/MMC CARD INTERFACE DRIVER
18164 M:      Pierre Ossman <[email protected]>
18165 S:      Maintained
18166 F:      drivers/mmc/host/wbsd.*
18167
18168 WACOM PROTOCOL 4 SERIAL TABLETS
18169 M:      Julian Squires <[email protected]>
18170 M:      Hans de Goede <[email protected]>
18171 L:      [email protected]
18172 S:      Maintained
18173 F:      drivers/input/tablet/wacom_serial4.c
18174
18175 WATCHDOG DEVICE DRIVERS
18176 M:      Wim Van Sebroeck <[email protected]>
18177 M:      Guenter Roeck <[email protected]>
18178 L:      [email protected]
18179 S:      Maintained
18180 W:      http://www.linux-watchdog.org/
18181 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18182 F:      Documentation/devicetree/bindings/watchdog/
18183 F:      Documentation/watchdog/
18184 F:      drivers/watchdog/
18185 F:      include/linux/watchdog.h
18186 F:      include/uapi/linux/watchdog.h
18187
18188 WHISKEYCOVE PMIC GPIO DRIVER
18189 M:      Kuppuswamy Sathyanarayanan <[email protected]>
18190 L:      [email protected]
18191 S:      Maintained
18192 F:      drivers/gpio/gpio-wcove.c
18193
18194 WHWAVE RTC DRIVER
18195 M:      Dianlong Li <[email protected]>
18196 L:      [email protected]
18197 S:      Maintained
18198 F:      drivers/rtc/rtc-sd3078.c
18199
18200 WIIMOTE HID DRIVER
18201 M:      David Herrmann <[email protected]>
18202 L:      [email protected]
18203 S:      Maintained
18204 F:      drivers/hid/hid-wiimote*
18205
18206 WILOCITY WIL6210 WIRELESS DRIVER
18207 M:      Maya Erez <[email protected]>
18208 L:      [email protected]
18209 L:      [email protected]
18210 S:      Supported
18211 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
18212 F:      drivers/net/wireless/ath/wil6210/
18213
18214 WIMAX STACK
18215 M:      Inaky Perez-Gonzalez <[email protected]>
18216 M:      [email protected]
18217 L:      [email protected] (subscribers-only)
18218 S:      Supported
18219 W:      http://linuxwimax.org
18220 F:      Documentation/admin-guide/wimax/wimax.rst
18221 F:      include/linux/wimax/debug.h
18222 F:      include/net/wimax.h
18223 F:      include/uapi/linux/wimax.h
18224 F:      net/wimax/
18225
18226 WINBOND CIR DRIVER
18227 M:      David Härdeman <[email protected]>
18228 S:      Maintained
18229 F:      drivers/media/rc/winbond-cir.c
18230
18231 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18232 M:      William Breathitt Gray <[email protected]>
18233 L:      [email protected]
18234 S:      Maintained
18235 F:      drivers/watchdog/ebc-c384_wdt.c
18236
18237 WINSYSTEMS WS16C48 GPIO DRIVER
18238 M:      William Breathitt Gray <[email protected]>
18239 L:      [email protected]
18240 S:      Maintained
18241 F:      drivers/gpio/gpio-ws16c48.c
18242
18243 WIREGUARD SECURE NETWORK TUNNEL
18244 M:      Jason A. Donenfeld <[email protected]>
18245 L:      [email protected]
18246 L:      [email protected]
18247 S:      Maintained
18248 F:      drivers/net/wireguard/
18249 F:      tools/testing/selftests/wireguard/
18250
18251 WISTRON LAPTOP BUTTON DRIVER
18252 M:      Miloslav Trmac <[email protected]>
18253 S:      Maintained
18254 F:      drivers/input/misc/wistron_btns.c
18255
18256 WL3501 WIRELESS PCMCIA CARD DRIVER
18257 L:      [email protected]
18258 S:      Odd fixes
18259 F:      drivers/net/wireless/wl3501*
18260
18261 WOLFSON MICROELECTRONICS DRIVERS
18262 L:      [email protected]
18263 S:      Supported
18264 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18265 T:      git https://github.com/CirrusLogic/linux-drivers.git
18266 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
18267 F:      Documentation/devicetree/bindings/mfd/arizona.txt
18268 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18269 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
18270 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
18271 F:      Documentation/hwmon/wm83??.rst
18272 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18273 F:      drivers/clk/clk-wm83*.c
18274 F:      drivers/extcon/extcon-arizona.c
18275 F:      drivers/gpio/gpio-*wm*.c
18276 F:      drivers/gpio/gpio-arizona.c
18277 F:      drivers/hwmon/wm83??-hwmon.c
18278 F:      drivers/input/misc/wm831x-on.c
18279 F:      drivers/input/touchscreen/wm831x-ts.c
18280 F:      drivers/input/touchscreen/wm97*.c
18281 F:      drivers/leds/leds-wm83*.c
18282 F:      drivers/mfd/arizona*
18283 F:      drivers/mfd/cs47l24*
18284 F:      drivers/mfd/wm*.c
18285 F:      drivers/power/supply/wm83*.c
18286 F:      drivers/regulator/arizona*
18287 F:      drivers/regulator/wm8*.c
18288 F:      drivers/rtc/rtc-wm83*.c
18289 F:      drivers/video/backlight/wm83*_bl.c
18290 F:      drivers/watchdog/wm83*_wdt.c
18291 F:      include/linux/mfd/arizona/
18292 F:      include/linux/mfd/wm831x/
18293 F:      include/linux/mfd/wm8350/
18294 F:      include/linux/mfd/wm8400*
18295 F:      include/linux/regulator/arizona*
18296 F:      include/linux/wm97xx.h
18297 F:      include/sound/wm????.h
18298 F:      sound/soc/codecs/arizona.?
18299 F:      sound/soc/codecs/cs47l24*
18300 F:      sound/soc/codecs/wm*
18301
18302 WORKQUEUE
18303 M:      Tejun Heo <[email protected]>
18304 R:      Lai Jiangshan <[email protected]>
18305 S:      Maintained
18306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18307 F:      Documentation/core-api/workqueue.rst
18308 F:      include/linux/workqueue.h
18309 F:      kernel/workqueue.c
18310
18311 X-POWERS AXP288 PMIC DRIVERS
18312 M:      Hans de Goede <[email protected]>
18313 S:      Maintained
18314 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18315 N:      axp288
18316
18317 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18318 M:      Chen-Yu Tsai <[email protected]>
18319 L:      [email protected]
18320 S:      Maintained
18321 N:      axp[128]
18322
18323 X.25 NETWORK LAYER
18324 M:      Andrew Hendry <[email protected]>
18325 L:      [email protected]
18326 S:      Odd Fixes
18327 F:      Documentation/networking/x25*
18328 F:      include/net/x25*
18329 F:      net/x25/
18330
18331 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18332 M:      Thomas Gleixner <[email protected]>
18333 M:      Ingo Molnar <[email protected]>
18334 M:      Borislav Petkov <[email protected]>
18335 M:      [email protected]
18336 R:      "H. Peter Anvin" <[email protected]>
18337 L:      [email protected]
18338 S:      Maintained
18339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18340 F:      Documentation/devicetree/bindings/x86/
18341 F:      Documentation/x86/
18342 F:      arch/x86/
18343
18344 X86 ENTRY CODE
18345 M:      Andy Lutomirski <[email protected]>
18346 L:      [email protected]
18347 S:      Maintained
18348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18349 F:      arch/x86/entry/
18350
18351 X86 MCE INFRASTRUCTURE
18352 M:      Tony Luck <[email protected]>
18353 M:      Borislav Petkov <[email protected]>
18354 L:      [email protected]
18355 S:      Maintained
18356 F:      arch/x86/kernel/cpu/mce/*
18357
18358 X86 MICROCODE UPDATE SUPPORT
18359 M:      Borislav Petkov <[email protected]>
18360 S:      Maintained
18361 F:      arch/x86/kernel/cpu/microcode/*
18362
18363 X86 MM
18364 M:      Dave Hansen <[email protected]>
18365 M:      Andy Lutomirski <[email protected]>
18366 M:      Peter Zijlstra <[email protected]>
18367 L:      [email protected]
18368 S:      Maintained
18369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18370 F:      arch/x86/mm/
18371
18372 X86 PLATFORM DRIVERS
18373 M:      Darren Hart <[email protected]>
18374 M:      Andy Shevchenko <[email protected]>
18375 L:      [email protected]
18376 S:      Odd Fixes
18377 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18378 F:      drivers/platform/olpc/
18379 F:      drivers/platform/x86/
18380
18381 X86 PLATFORM DRIVERS - ARCH
18382 R:      Darren Hart <[email protected]>
18383 R:      Andy Shevchenko <[email protected]>
18384 L:      [email protected]
18385 L:      [email protected]
18386 S:      Maintained
18387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18388 F:      arch/x86/platform
18389
18390 X86 VDSO
18391 M:      Andy Lutomirski <[email protected]>
18392 L:      [email protected]
18393 S:      Maintained
18394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18395 F:      arch/x86/entry/vdso/
18396
18397 XARRAY
18398 M:      Matthew Wilcox <[email protected]>
18399 L:      [email protected]
18400 S:      Supported
18401 F:      Documentation/core-api/xarray.rst
18402 F:      include/linux/idr.h
18403 F:      include/linux/xarray.h
18404 F:      lib/idr.c
18405 F:      lib/xarray.c
18406 F:      tools/testing/radix-tree
18407
18408 XBOX DVD IR REMOTE
18409 M:      Benjamin Valentin <[email protected]>
18410 S:      Maintained
18411 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18412 F:      drivers/media/rc/xbox_remote.c
18413
18414 XC2028/3028 TUNER DRIVER
18415 M:      Mauro Carvalho Chehab <[email protected]>
18416 L:      [email protected]
18417 S:      Maintained
18418 W:      https://linuxtv.org
18419 T:      git git://linuxtv.org/media_tree.git
18420 F:      drivers/media/tuners/tuner-xc2028.*
18421
18422 XDP (eXpress Data Path)
18423 M:      Alexei Starovoitov <[email protected]>
18424 M:      Daniel Borkmann <[email protected]>
18425 M:      David S. Miller <[email protected]>
18426 M:      Jakub Kicinski <[email protected]>
18427 M:      Jesper Dangaard Brouer <[email protected]>
18428 M:      John Fastabend <[email protected]>
18429 L:      [email protected]
18430 L:      [email protected]
18431 S:      Supported
18432 F:      include/net/xdp.h
18433 F:      include/trace/events/xdp.h
18434 F:      kernel/bpf/cpumap.c
18435 F:      kernel/bpf/devmap.c
18436 F:      net/core/xdp.c
18437 N:      xdp
18438 K:      xdp
18439
18440 XDP SOCKETS (AF_XDP)
18441 M:      Björn Töpel <[email protected]>
18442 M:      Magnus Karlsson <[email protected]>
18443 R:      Jonathan Lemon <[email protected]>
18444 L:      [email protected]
18445 L:      [email protected]
18446 S:      Maintained
18447 F:      kernel/bpf/xskmap.c
18448 F:      net/xdp/
18449
18450 XEN BLOCK SUBSYSTEM
18451 M:      Konrad Rzeszutek Wilk <[email protected]>
18452 M:      Roger Pau Monné <[email protected]>
18453 L:      [email protected] (moderated for non-subscribers)
18454 S:      Supported
18455 F:      drivers/block/xen*
18456 F:      drivers/block/xen-blkback/*
18457
18458 XEN HYPERVISOR ARM
18459 M:      Stefano Stabellini <[email protected]>
18460 L:      [email protected] (moderated for non-subscribers)
18461 S:      Maintained
18462 F:      arch/arm/include/asm/xen/
18463 F:      arch/arm/xen/
18464
18465 XEN HYPERVISOR ARM64
18466 M:      Stefano Stabellini <[email protected]>
18467 L:      [email protected] (moderated for non-subscribers)
18468 S:      Maintained
18469 F:      arch/arm64/include/asm/xen/
18470 F:      arch/arm64/xen/
18471
18472 XEN HYPERVISOR INTERFACE
18473 M:      Boris Ostrovsky <[email protected]>
18474 M:      Juergen Gross <[email protected]>
18475 R:      Stefano Stabellini <[email protected]>
18476 L:      [email protected] (moderated for non-subscribers)
18477 S:      Supported
18478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18479 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18480 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18481 F:      arch/x86/include/asm/pvclock-abi.h
18482 F:      arch/x86/include/asm/xen/
18483 F:      arch/x86/platform/pvh/
18484 F:      arch/x86/xen/
18485 F:      drivers/*/xen-*front.c
18486 F:      drivers/xen/
18487 F:      include/uapi/xen/
18488 F:      include/xen/
18489
18490 XEN NETWORK BACKEND DRIVER
18491 M:      Wei Liu <[email protected]>
18492 M:      Paul Durrant <[email protected]>
18493 L:      [email protected] (moderated for non-subscribers)
18494 L:      [email protected]
18495 S:      Supported
18496 F:      drivers/net/xen-netback/*
18497
18498 XEN PCI SUBSYSTEM
18499 M:      Konrad Rzeszutek Wilk <[email protected]>
18500 L:      [email protected] (moderated for non-subscribers)
18501 S:      Supported
18502 F:      arch/x86/pci/*xen*
18503 F:      drivers/pci/*xen*
18504
18505 XEN PVSCSI DRIVERS
18506 M:      Juergen Gross <[email protected]>
18507 L:      [email protected] (moderated for non-subscribers)
18508 L:      [email protected]
18509 S:      Supported
18510 F:      drivers/scsi/xen-scsifront.c
18511 F:      drivers/xen/xen-scsiback.c
18512 F:      include/xen/interface/io/vscsiif.h
18513
18514 XEN SOUND FRONTEND DRIVER
18515 M:      Oleksandr Andrushchenko <[email protected]>
18516 L:      [email protected] (moderated for non-subscribers)
18517 L:      [email protected] (moderated for non-subscribers)
18518 S:      Supported
18519 F:      sound/xen/*
18520
18521 XEN SWIOTLB SUBSYSTEM
18522 M:      Konrad Rzeszutek Wilk <[email protected]>
18523 L:      [email protected] (moderated for non-subscribers)
18524 L:      [email protected]
18525 S:      Supported
18526 F:      arch/x86/xen/*swiotlb*
18527 F:      drivers/xen/*swiotlb*
18528
18529 XFS FILESYSTEM
18530 M:      Darrick J. Wong <[email protected]>
18531 M:      [email protected]
18532 L:      [email protected]
18533 S:      Supported
18534 W:      http://xfs.org/
18535 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18536 F:      Documentation/ABI/testing/sysfs-fs-xfs
18537 F:      Documentation/admin-guide/xfs.rst
18538 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
18539 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
18540 F:      fs/xfs/
18541 F:      include/uapi/linux/dqblk_xfs.h
18542 F:      include/uapi/linux/fsmap.h
18543
18544 XILINX AXI ETHERNET DRIVER
18545 M:      Radhey Shyam Pandey <[email protected]>
18546 S:      Maintained
18547 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18548
18549 XILINX CAN DRIVER
18550 M:      Appana Durga Kedareswara rao <[email protected]>
18551 R:      Naga Sureshkumar Relli <[email protected]>
18552 L:      [email protected]
18553 S:      Maintained
18554 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18555 F:      drivers/net/can/xilinx_can.c
18556
18557 XILINX SD-FEC IP CORES
18558 M:      Derek Kiernan <[email protected]>
18559 M:      Dragan Cvetic <[email protected]>
18560 S:      Maintained
18561 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18562 F:      Documentation/misc-devices/xilinx_sdfec.rst
18563 F:      drivers/misc/Kconfig
18564 F:      drivers/misc/Makefile
18565 F:      drivers/misc/xilinx_sdfec.c
18566 F:      include/uapi/misc/xilinx_sdfec.h
18567
18568 XILINX UARTLITE SERIAL DRIVER
18569 M:      Peter Korsgaard <[email protected]>
18570 L:      [email protected]
18571 S:      Maintained
18572 F:      drivers/tty/serial/uartlite.c
18573
18574 XILINX VIDEO IP CORES
18575 M:      Hyun Kwon <[email protected]>
18576 M:      Laurent Pinchart <[email protected]>
18577 L:      [email protected]
18578 S:      Supported
18579 T:      git git://linuxtv.org/media_tree.git
18580 F:      Documentation/devicetree/bindings/media/xilinx/
18581 F:      drivers/media/platform/xilinx/
18582 F:      include/uapi/linux/xilinx-v4l2-controls.h
18583
18584 XILLYBUS DRIVER
18585 M:      Eli Billauer <[email protected]>
18586 L:      [email protected]
18587 S:      Supported
18588 F:      drivers/char/xillybus/
18589
18590 XLP9XX I2C DRIVER
18591 M:      George Cherian <[email protected]>
18592 L:      [email protected]
18593 S:      Supported
18594 W:      http://www.marvell.com
18595 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18596 F:      drivers/i2c/busses/i2c-xlp9xx.c
18597
18598 XRA1403 GPIO EXPANDER
18599 M:      Nandor Han <[email protected]>
18600 M:      Semi Malinen <[email protected]>
18601 L:      [email protected]
18602 S:      Maintained
18603 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18604 F:      drivers/gpio/gpio-xra1403.c
18605
18606 XTENSA XTFPGA PLATFORM SUPPORT
18607 M:      Max Filippov <[email protected]>
18608 L:      [email protected]
18609 S:      Maintained
18610 F:      drivers/spi/spi-xtensa-xtfpga.c
18611 F:      sound/soc/xtensa/xtfpga-i2s.c
18612
18613 YAM DRIVER FOR AX.25
18614 M:      Jean-Paul Roubelat <[email protected]>
18615 L:      [email protected]
18616 S:      Maintained
18617 F:      drivers/net/hamradio/yam*
18618 F:      include/linux/yam.h
18619
18620 YAMA SECURITY MODULE
18621 M:      Kees Cook <[email protected]>
18622 S:      Supported
18623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18624 F:      Documentation/admin-guide/LSM/Yama.rst
18625 F:      security/yama/
18626
18627 YEALINK PHONE DRIVER
18628 M:      Henk Vergonet <[email protected]>
18629 L:      [email protected]
18630 S:      Maintained
18631 F:      Documentation/input/devices/yealink.rst
18632 F:      drivers/input/misc/yealink.*
18633
18634 Z8530 DRIVER FOR AX.25
18635 M:      Joerg Reuter <[email protected]>
18636 L:      [email protected]
18637 S:      Maintained
18638 W:      http://yaina.de/jreuter/
18639 W:      http://www.qsl.net/dl1bke/
18640 F:      Documentation/networking/z8530drv.txt
18641 F:      drivers/net/hamradio/*scc.c
18642 F:      drivers/net/hamradio/z8530.h
18643
18644 ZBUD COMPRESSED PAGE ALLOCATOR
18645 M:      Seth Jennings <[email protected]>
18646 M:      Dan Streetman <[email protected]>
18647 L:      [email protected]
18648 S:      Maintained
18649 F:      include/linux/zbud.h
18650 F:      mm/zbud.c
18651
18652 ZD1211RW WIRELESS DRIVER
18653 M:      Daniel Drake <[email protected]>
18654 M:      Ulrich Kunitz <[email protected]>
18655 L:      [email protected]
18656 L:      [email protected] (subscribers-only)
18657 S:      Maintained
18658 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18659 F:      drivers/net/wireless/zydas/zd1211rw/
18660
18661 ZD1301 MEDIA DRIVER
18662 M:      Antti Palosaari <[email protected]>
18663 L:      [email protected]
18664 S:      Maintained
18665 W:      https://linuxtv.org/
18666 W:      http://palosaari.fi/linux/
18667 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18668 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18669
18670 ZD1301_DEMOD MEDIA DRIVER
18671 M:      Antti Palosaari <[email protected]>
18672 L:      [email protected]
18673 S:      Maintained
18674 W:      https://linuxtv.org/
18675 W:      http://palosaari.fi/linux/
18676 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18677 F:      drivers/media/dvb-frontends/zd1301_demod*
18678
18679 ZHAOXIN PROCESSOR SUPPORT
18680 M:      Tony W Wang-oc <[email protected]>
18681 L:      [email protected]
18682 S:      Maintained
18683 F:      arch/x86/kernel/cpu/zhaoxin.c
18684
18685 ZONEFS FILESYSTEM
18686 M:      Damien Le Moal <[email protected]>
18687 M:      Naohiro Aota <[email protected]>
18688 R:      Johannes Thumshirn <[email protected]>
18689 L:      [email protected]
18690 S:      Maintained
18691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18692 F:      Documentation/filesystems/zonefs.rst
18693 F:      fs/zonefs/
18694
18695 ZPOOL COMPRESSED PAGE STORAGE API
18696 M:      Dan Streetman <[email protected]>
18697 L:      [email protected]
18698 S:      Maintained
18699 F:      include/linux/zpool.h
18700 F:      mm/zpool.c
18701
18702 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18703 M:      Minchan Kim <[email protected]>
18704 M:      Nitin Gupta <[email protected]>
18705 R:      Sergey Senozhatsky <[email protected]>
18706 L:      [email protected]
18707 S:      Maintained
18708 F:      Documentation/admin-guide/blockdev/zram.rst
18709 F:      drivers/block/zram/
18710
18711 ZS DECSTATION Z85C30 SERIAL DRIVER
18712 M:      "Maciej W. Rozycki" <[email protected]>
18713 S:      Maintained
18714 F:      drivers/tty/serial/zs.*
18715
18716 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18717 M:      Minchan Kim <[email protected]>
18718 M:      Nitin Gupta <[email protected]>
18719 R:      Sergey Senozhatsky <[email protected]>
18720 L:      [email protected]
18721 S:      Maintained
18722 F:      Documentation/vm/zsmalloc.rst
18723 F:      include/linux/zsmalloc.h
18724 F:      mm/zsmalloc.c
18725
18726 ZSWAP COMPRESSED SWAP CACHING
18727 M:      Seth Jennings <[email protected]>
18728 M:      Dan Streetman <[email protected]>
18729 M:      Vitaly Wool <[email protected]>
18730 L:      [email protected]
18731 S:      Maintained
18732 F:      mm/zswap.c
18733
18734 THE REST
18735 M:      Linus Torvalds <[email protected]>
18736 L:      [email protected]
18737 S:      Buried alive in reporters
18738 Q:      http://patchwork.kernel.org/project/LKML/list/
18739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18740 F:      *
18741 F:      */
This page took 1.036989 seconds and 4 git commands to generate.