]> Git Repo - linux.git/blob - MAINTAINERS
Merge tag 'drm-fixes-2020-06-26' of git://anongit.freedesktop.org/drm/drm
[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.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <[email protected]>
155 L:      [email protected]
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <[email protected]>
161 L:      [email protected]
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <[email protected]>
168 L:      [email protected]
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <[email protected]>
174 M:      Jukka Rissanen <[email protected]>
175 L:      [email protected]
176 L:      [email protected]
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <[email protected]>
184 L:      [email protected]
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <[email protected]>
190 L:      [email protected]
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      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 M:      Syed Nayyar Waris <[email protected]>
298 L:      [email protected]
299 S:      Maintained
300 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
301 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <[email protected]>
306 L:      [email protected]
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <[email protected]>
312 L:      [email protected]
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <[email protected]>
318 L:      [email protected]
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <[email protected]>
324 L:      [email protected]
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <[email protected]>
331 L:      [email protected]
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <[email protected]>
337 M:      Len Brown <[email protected]>
338 L:      [email protected]
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <[email protected]>
358 M:      Len Brown <[email protected]>
359 R:      James Morse <[email protected]>
360 R:      Tony Luck <[email protected]>
361 R:      Borislav Petkov <[email protected]>
362 L:      [email protected]
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <[email protected]>
367 M:      Erik Kaneda <[email protected]>
368 M:      "Rafael J. Wysocki" <[email protected]>
369 L:      [email protected]
370 L:      [email protected]
371 S:      Supported
372 W:      https://acpica.org/
373 W:      https://github.com/acpica/acpica/
374 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
375 B:      https://bugzilla.kernel.org
376 B:      https://bugs.acpica.org
377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 F:      drivers/acpi/acpica/
379 F:      include/acpi/
380 F:      tools/power/acpi/
381
382 ACPI FAN DRIVER
383 M:      Zhang Rui <[email protected]>
384 L:      [email protected]
385 S:      Supported
386 W:      https://01.org/linux-acpi
387 B:      https://bugzilla.kernel.org
388 F:      drivers/acpi/fan.c
389
390 ACPI FOR ARM64 (ACPI/arm64)
391 M:      Lorenzo Pieralisi <[email protected]>
392 M:      Hanjun Guo <[email protected]>
393 M:      Sudeep Holla <[email protected]>
394 L:      [email protected]
395 L:      [email protected] (moderated for non-subscribers)
396 S:      Maintained
397 F:      drivers/acpi/arm64
398
399 ACPI I2C MULTI INSTANTIATE DRIVER
400 M:      Hans de Goede <[email protected]>
401 L:      [email protected]
402 S:      Maintained
403 F:      drivers/platform/x86/i2c-multi-instantiate.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <[email protected]>
407 M:      Len Brown <[email protected]>
408 R:      Andy Shevchenko <[email protected]>
409 R:      Mika Westerberg <[email protected]>
410 L:      [email protected]
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Zhang Rui <[email protected]>
419 L:      [email protected]
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M:      Zhang Rui <[email protected]>
427 L:      [email protected]
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI WMI DRIVER
434 L:      [email protected]
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 AD1889 ALSA SOUND DRIVER
440 L:      [email protected]
441 S:      Maintained
442 W:      https://parisc.wiki.kernel.org/index.php/AD1889
443 F:      sound/pci/ad1889.*
444
445 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
446 M:      Michael Hennerich <[email protected]>
447 S:      Supported
448 W:      http://wiki.analog.com/AD5254
449 W:      http://ez.analog.com/community/linux-device-drivers
450 F:      drivers/misc/ad525x_dpot.c
451
452 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
453 M:      Michael Hennerich <[email protected]>
454 S:      Supported
455 W:      http://wiki.analog.com/AD5398
456 W:      http://ez.analog.com/community/linux-device-drivers
457 F:      drivers/regulator/ad5398.c
458
459 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
460 M:      Michael Hennerich <[email protected]>
461 S:      Supported
462 W:      http://wiki.analog.com/AD7142
463 W:      http://ez.analog.com/community/linux-device-drivers
464 F:      drivers/input/misc/ad714x.c
465
466 AD7877 TOUCHSCREEN DRIVER
467 M:      Michael Hennerich <[email protected]>
468 S:      Supported
469 W:      http://wiki.analog.com/AD7877
470 W:      http://ez.analog.com/community/linux-device-drivers
471 F:      drivers/input/touchscreen/ad7877.c
472
473 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
474 M:      Michael Hennerich <[email protected]>
475 S:      Supported
476 W:      http://wiki.analog.com/AD7879
477 W:      http://ez.analog.com/community/linux-device-drivers
478 F:      drivers/input/touchscreen/ad7879.c
479
480 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
481 M:      Jiri Kosina <[email protected]>
482 S:      Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M:      Michael Hennerich <[email protected]>
486 L:      [email protected]
487 S:      Supported
488 W:      https://wiki.analog.com/ADF7242
489 W:      http://ez.analog.com/community/linux-device-drivers
490 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
491 F:      drivers/net/ieee802154/adf7242.c
492
493 ADM1025 HARDWARE MONITOR DRIVER
494 M:      Jean Delvare <[email protected]>
495 L:      [email protected]
496 S:      Maintained
497 F:      Documentation/hwmon/adm1025.rst
498 F:      drivers/hwmon/adm1025.c
499
500 ADM1029 HARDWARE MONITOR DRIVER
501 M:      Corentin Labbe <[email protected]>
502 L:      [email protected]
503 S:      Maintained
504 F:      drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L:      [email protected]
508 S:      Orphan
509 W:      https://wireless.wiki.kernel.org/
510 F:      drivers/net/wireless/admtek/adm8211.*
511
512 ADP1653 FLASH CONTROLLER DRIVER
513 M:      Sakari Ailus <[email protected]>
514 L:      [email protected]
515 S:      Maintained
516 F:      drivers/media/i2c/adp1653.c
517 F:      include/media/i2c/adp1653.h
518
519 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
520 M:      Michael Hennerich <[email protected]>
521 S:      Supported
522 W:      http://wiki.analog.com/ADP5520
523 W:      http://ez.analog.com/community/linux-device-drivers
524 F:      drivers/gpio/gpio-adp5520.c
525 F:      drivers/input/keyboard/adp5520-keys.c
526 F:      drivers/leds/leds-adp5520.c
527 F:      drivers/mfd/adp5520.c
528 F:      drivers/video/backlight/adp5520_bl.c
529
530 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
531 M:      Michael Hennerich <[email protected]>
532 S:      Supported
533 W:      http://wiki.analog.com/ADP5588
534 W:      http://ez.analog.com/community/linux-device-drivers
535 F:      drivers/gpio/gpio-adp5588.c
536 F:      drivers/input/keyboard/adp5588-keys.c
537
538 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
539 M:      Michael Hennerich <[email protected]>
540 S:      Supported
541 W:      http://wiki.analog.com/ADP8860
542 W:      http://ez.analog.com/community/linux-device-drivers
543 F:      drivers/video/backlight/adp8860_bl.c
544
545 ADT746X FAN DRIVER
546 M:      Colin Leroy <[email protected]>
547 S:      Maintained
548 F:      drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M:      Jean Delvare <[email protected]>
552 L:      [email protected]
553 S:      Maintained
554 F:      Documentation/hwmon/adt7475.rst
555 F:      drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M:      Matthew Wilcox <[email protected]>
559 M:      Hannes Reinecke <[email protected]>
560 L:      [email protected]
561 S:      Maintained
562 F:      Documentation/scsi/advansys.rst
563 F:      drivers/scsi/advansys.c
564
565 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
566 M:      Michael Hennerich <[email protected]>
567 S:      Supported
568 W:      http://wiki.analog.com/ADXL345
569 W:      http://ez.analog.com/community/linux-device-drivers
570 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
571 F:      drivers/input/misc/adxl34x.c
572
573 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
574 M:      Michael Hennerich <[email protected]>
575 S:      Supported
576 W:      http://ez.analog.com/community/linux-device-drivers
577 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
578 F:      drivers/iio/accel/adxl372.c
579 F:      drivers/iio/accel/adxl372_i2c.c
580 F:      drivers/iio/accel/adxl372_spi.c
581
582 AF9013 MEDIA DRIVER
583 M:      Antti Palosaari <[email protected]>
584 L:      [email protected]
585 S:      Maintained
586 W:      https://linuxtv.org
587 W:      http://palosaari.fi/linux/
588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
589 T:      git git://linuxtv.org/anttip/media_tree.git
590 F:      drivers/media/dvb-frontends/af9013*
591
592 AF9033 MEDIA DRIVER
593 M:      Antti Palosaari <[email protected]>
594 L:      [email protected]
595 S:      Maintained
596 W:      https://linuxtv.org
597 W:      http://palosaari.fi/linux/
598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
599 T:      git git://linuxtv.org/anttip/media_tree.git
600 F:      drivers/media/dvb-frontends/af9033*
601
602 AFFS FILE SYSTEM
603 M:      David Sterba <[email protected]>
604 L:      [email protected]
605 S:      Odd Fixes
606 F:      Documentation/filesystems/affs.rst
607 F:      fs/affs/
608
609 AFS FILESYSTEM
610 M:      David Howells <[email protected]>
611 L:      [email protected]
612 S:      Supported
613 W:      https://www.infradead.org/~dhowells/kafs/
614 F:      Documentation/filesystems/afs.rst
615 F:      fs/afs/
616 F:      include/trace/events/afs.h
617
618 AGPGART DRIVER
619 M:      David Airlie <[email protected]>
620 S:      Maintained
621 T:      git git://anongit.freedesktop.org/drm/drm
622 F:      drivers/char/agp/
623 F:      include/linux/agp*
624 F:      include/uapi/linux/agp*
625
626 AHA152X SCSI DRIVER
627 M:      "Juergen E. Fischer" <[email protected]>
628 L:      [email protected]
629 S:      Maintained
630 F:      drivers/scsi/aha152x*
631 F:      drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M:      Hannes Reinecke <[email protected]>
635 L:      [email protected]
636 S:      Maintained
637 F:      drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M:      Hans Verkuil <[email protected]>
641 L:      [email protected]
642 S:      Maintained
643 W:      https://linuxtv.org
644 T:      git git://linuxtv.org/media_tree.git
645 F:      drivers/media/radio/radio-aimslab*
646
647 AIO
648 M:      Benjamin LaHaise <[email protected]>
649 L:      [email protected]
650 S:      Supported
651 F:      fs/aio.c
652 F:      include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M:      Antti Palosaari <[email protected]>
656 L:      [email protected]
657 S:      Maintained
658 W:      https://linuxtv.org
659 W:      http://palosaari.fi/linux/
660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
661 T:      git git://linuxtv.org/anttip/media_tree.git
662 F:      drivers/media/usb/airspy/
663
664 ALACRITECH GIGABIT ETHERNET DRIVER
665 M:      Lino Sanfilippo <[email protected]>
666 S:      Maintained
667 F:      drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M:      Duncan Sands <[email protected]>
671 L:      [email protected]
672 S:      Maintained
673 W:      http://www.linux-usb.org/SpeedTouch/
674 F:      drivers/usb/atm/speedtch.c
675 F:      drivers/usb/atm/usbatm.c
676
677 ALCHEMY AU1XX0 MMC DRIVER
678 M:      Manuel Lauss <[email protected]>
679 S:      Maintained
680 F:      drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M:      Rudolf Marek <[email protected]>
684 L:      [email protected]
685 S:      Maintained
686 F:      Documentation/i2c/busses/i2c-ali1563.rst
687 F:      drivers/i2c/busses/i2c-ali1563.c
688
689 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
690 M:      Tomislav Denis <[email protected]>
691 L:      [email protected]
692 S:      Maintained
693 W:      http://www.allsensors.com/
694 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
695 F:      drivers/iio/pressure/dlhl60d.c
696
697 ALLEGRO DVT VIDEO IP CORE DRIVER
698 M:      Michael Tretter <[email protected]>
699 R:      Pengutronix Kernel Team <[email protected]>
700 L:      [email protected]
701 S:      Maintained
702 F:      drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M:      Maxime Ripard <[email protected]>
706 L:      [email protected]
707 S:      Maintained
708 T:      git git://linuxtv.org/media_tree.git
709 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
710 F:      drivers/media/platform/sunxi/sun4i-csi/
711
712 ALLWINNER CPUFREQ DRIVER
713 M:      Yangtao Li <[email protected]>
714 L:      [email protected]
715 S:      Maintained
716 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
717 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
718
719 ALLWINNER CRYPTO DRIVERS
720 M:      Corentin Labbe <[email protected]>
721 L:      [email protected]
722 S:      Maintained
723 F:      drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M:      Vasily Khoruzhick <[email protected]>
727 M:      Yangtao Li <[email protected]>
728 L:      [email protected]
729 S:      Maintained
730 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
731 F:      drivers/thermal/sun8i_thermal.c
732
733 ALLWINNER VPU DRIVER
734 M:      Maxime Ripard <[email protected]>
735 M:      Paul Kocialkowski <[email protected]>
736 L:      [email protected]
737 S:      Maintained
738 F:      drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M:      Richard Henderson <[email protected]>
742 M:      Ivan Kokshaysky <[email protected]>
743 M:      Matt Turner <[email protected]>
744 L:      [email protected]
745 S:      Odd Fixes
746 F:      arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R:      Pali Rohár <[email protected]>
750 F:      drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M:      Thor Thayer <[email protected]>
754 S:      Maintained
755 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
756 F:      drivers/i2c/busses/i2c-altera.c
757
758 ALTERA MAILBOX DRIVER
759 M:      Ley Foon Tan <[email protected]>
760 S:      Maintained
761 F:      drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M:      Joyce Ooi <[email protected]>
765 L:      [email protected]
766 S:      Maintained
767 F:      drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M:      Thor Thayer <[email protected]>
771 S:      Maintained
772 F:      drivers/mfd/altera-sysmgr.c
773 F:      include/linux/mfd/altera-sysmgr.h
774
775 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
776 M:      Thor Thayer <[email protected]>
777 S:      Maintained
778 F:      drivers/gpio/gpio-altera-a10sr.c
779 F:      drivers/mfd/altera-a10sr.c
780 F:      drivers/reset/reset-a10sr.c
781 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
782 F:      include/linux/mfd/altera-a10sr.h
783
784 ALTERA TRIPLE SPEED ETHERNET DRIVER
785 M:      Thor Thayer <[email protected]>
786 L:      [email protected]
787 S:      Maintained
788 F:      drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M:      Tobias Klauser <[email protected]>
792 L:      [email protected]
793 S:      Maintained
794 F:      drivers/tty/serial/altera_jtaguart.c
795 F:      drivers/tty/serial/altera_uart.c
796 F:      include/linux/altera_jtaguart.h
797 F:      include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M:      Talel Shenhar <[email protected]>
801 S:      Maintained
802 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F:      drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
806 M:      Talel Shenhar <[email protected]>
807 S:      Maintained
808 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
809 F:      drivers/thermal/thermal_mmio.c
810
811 AMAZON ETHERNET DRIVERS
812 M:      Netanel Belgazal <[email protected]>
813 M:      Arthur Kiyanovski <[email protected]>
814 R:      Guy Tzalik <[email protected]>
815 R:      Saeed Bishara <[email protected]>
816 R:      Zorik Machulsky <[email protected]>
817 L:      [email protected]
818 S:      Supported
819 F:      Documentation/networking/device_drivers/amazon/ena.rst
820 F:      drivers/net/ethernet/amazon/
821
822 AMAZON RDMA EFA DRIVER
823 M:      Gal Pressman <[email protected]>
824 R:      Yossi Leybovich <[email protected]>
825 L:      [email protected]
826 S:      Supported
827 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
828 F:      drivers/infiniband/hw/efa/
829 F:      include/uapi/rdma/efa-abi.h
830
831 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
832 M:      Tom Lendacky <[email protected]>
833 L:      [email protected]
834 S:      Supported
835 F:      drivers/crypto/ccp/
836 F:      include/linux/ccp.h
837
838 AMD DISPLAY CORE
839 M:      Harry Wentland <[email protected]>
840 M:      Leo Li <[email protected]>
841 L:      [email protected]
842 S:      Supported
843 T:      git git://people.freedesktop.org/~agd5f/linux
844 F:      drivers/gpu/drm/amd/display/
845
846 AMD ENERGY DRIVER
847 M:      Naveen Krishna Chatradhi <[email protected]>
848 L:      [email protected]
849 S:      Maintained
850 F:      Documentation/hwmon/amd_energy.rst
851 F:      drivers/hwmon/amd_energy.c
852
853 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
854 M:      Huang Rui <[email protected]>
855 L:      [email protected]
856 S:      Supported
857 F:      Documentation/hwmon/fam15h_power.rst
858 F:      drivers/hwmon/fam15h_power.c
859
860 AMD FCH GPIO DRIVER
861 M:      Enrico Weigelt, metux IT consult <[email protected]>
862 L:      [email protected]
863 S:      Maintained
864 F:      drivers/gpio/gpio-amd-fch.c
865 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
866
867 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
868 L:      [email protected] (moderated for non-subscribers)
869 S:      Orphan
870 F:      drivers/usb/gadget/udc/amd5536udc.*
871
872 AMD GEODE PROCESSOR/CHIPSET SUPPORT
873 M:      Andres Salomon <[email protected]>
874 L:      [email protected] (moderated for non-subscribers)
875 S:      Supported
876 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
877 F:      arch/x86/include/asm/geode.h
878 F:      drivers/char/hw_random/geode-rng.c
879 F:      drivers/crypto/geode*
880 F:      drivers/video/fbdev/geode/
881
882 AMD IOMMU (AMD-VI)
883 M:      Joerg Roedel <[email protected]>
884 L:      [email protected]
885 S:      Maintained
886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
887 F:      drivers/iommu/amd/
888 F:      include/linux/amd-iommu.h
889
890 AMD KFD
891 M:      Felix Kuehling <[email protected]>
892 L:      [email protected]
893 S:      Supported
894 T:      git git://people.freedesktop.org/~agd5f/linux
895 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
896 F:      drivers/gpu/drm/amd/amdkfd/
897 F:      drivers/gpu/drm/amd/include/cik_structs.h
898 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
899 F:      drivers/gpu/drm/amd/include/v9_structs.h
900 F:      drivers/gpu/drm/amd/include/vi_structs.h
901 F:      include/uapi/linux/kfd_ioctl.h
902
903 AMD SPI DRIVER
904 M:      Sanjay R Mehta <[email protected]>
905 S:      Maintained
906 F:      drivers/spi/spi-amd.c
907
908 AMD MP2 I2C DRIVER
909 M:      Elie Morisse <[email protected]>
910 M:      Nehal Shah <[email protected]>
911 M:      Shyam Sundar S K <[email protected]>
912 L:      [email protected]
913 S:      Maintained
914 F:      drivers/i2c/busses/i2c-amd-mp2*
915
916 AMD POWERPLAY
917 M:      Evan Quan <[email protected]>
918 L:      [email protected]
919 S:      Supported
920 T:      git git://people.freedesktop.org/~agd5f/linux
921 F:      drivers/gpu/drm/amd/powerplay/
922
923 AMD SEATTLE DEVICE TREE SUPPORT
924 M:      Brijesh Singh <[email protected]>
925 M:      Suravee Suthikulpanit <[email protected]>
926 M:      Tom Lendacky <[email protected]>
927 S:      Supported
928 F:      arch/arm64/boot/dts/amd/
929
930 AMD XGBE DRIVER
931 M:      Tom Lendacky <[email protected]>
932 L:      [email protected]
933 S:      Supported
934 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
935 F:      drivers/net/ethernet/amd/xgbe/
936
937 ANALOG DEVICES INC AD5686 DRIVER
938 M:      Michael Hennerich <[email protected]>
939 L:      [email protected]
940 S:      Supported
941 W:      http://ez.analog.com/community/linux-device-drivers
942 F:      drivers/iio/dac/ad5686*
943 F:      drivers/iio/dac/ad5696*
944
945 ANALOG DEVICES INC AD5758 DRIVER
946 M:      Michael Hennerich <[email protected]>
947 L:      [email protected]
948 S:      Supported
949 W:      http://ez.analog.com/community/linux-device-drivers
950 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
951 F:      drivers/iio/dac/ad5758.c
952
953 ANALOG DEVICES INC AD7091R5 DRIVER
954 M:      Beniamin Bia <[email protected]>
955 L:      [email protected]
956 S:      Supported
957 W:      http://ez.analog.com/community/linux-device-drivers
958 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
959 F:      drivers/iio/adc/ad7091r5.c
960
961 ANALOG DEVICES INC AD7124 DRIVER
962 M:      Michael Hennerich <[email protected]>
963 L:      [email protected]
964 S:      Supported
965 W:      http://ez.analog.com/community/linux-device-drivers
966 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
967 F:      drivers/iio/adc/ad7124.c
968
969 ANALOG DEVICES INC AD7192 DRIVER
970 M:      Alexandru Tachici <[email protected]>
971 L:      [email protected]
972 S:      Supported
973 W:      http://ez.analog.com/community/linux-device-drivers
974 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
975 F:      drivers/iio/adc/ad7192.c
976
977 ANALOG DEVICES INC AD7292 DRIVER
978 M:      Marcelo Schmitt <[email protected]>
979 L:      [email protected]
980 S:      Supported
981 W:      http://ez.analog.com/community/linux-device-drivers
982 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
983 F:      drivers/iio/adc/ad7292.c
984
985 ANALOG DEVICES INC AD7606 DRIVER
986 M:      Michael Hennerich <[email protected]>
987 M:      Beniamin Bia <[email protected]>
988 L:      [email protected]
989 S:      Supported
990 W:      http://ez.analog.com/community/linux-device-drivers
991 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
992 F:      drivers/iio/adc/ad7606.c
993
994 ANALOG DEVICES INC AD7768-1 DRIVER
995 M:      Michael Hennerich <[email protected]>
996 L:      [email protected]
997 S:      Supported
998 W:      http://ez.analog.com/community/linux-device-drivers
999 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
1000 F:      drivers/iio/adc/ad7768-1.c
1001
1002 ANALOG DEVICES INC AD7780 DRIVER
1003 M:      Michael Hennerich <[email protected]>
1004 M:      Renato Lui Geh <[email protected]>
1005 L:      [email protected]
1006 S:      Supported
1007 W:      http://ez.analog.com/community/linux-device-drivers
1008 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1009 F:      drivers/iio/adc/ad7780.c
1010
1011 ANALOG DEVICES INC AD9389B DRIVER
1012 M:      Hans Verkuil <[email protected]>
1013 L:      [email protected]
1014 S:      Maintained
1015 F:      drivers/media/i2c/ad9389b*
1016
1017 ANALOG DEVICES INC ADGS1408 DRIVER
1018 M:      Mircea Caprioru <[email protected]>
1019 S:      Supported
1020 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1021 F:      drivers/mux/adgs1408.c
1022
1023 ANALOG DEVICES INC ADIN DRIVER
1024 M:      Alexandru Ardelean <[email protected]>
1025 L:      [email protected]
1026 S:      Supported
1027 W:      http://ez.analog.com/community/linux-device-drivers
1028 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1029 F:      drivers/net/phy/adin.c
1030
1031 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1032 M:      Alexandru Ardelean <[email protected]>
1033 L:      [email protected]
1034 S:      Supported
1035 F:      drivers/iio/imu/adis.c
1036 F:      include/linux/iio/imu/adis.h
1037
1038 ANALOG DEVICES INC ADIS16460 DRIVER
1039 M:      Dragos Bogdan <[email protected]>
1040 L:      [email protected]
1041 S:      Supported
1042 W:      http://ez.analog.com/community/linux-device-drivers
1043 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1044 F:      drivers/iio/imu/adis16460.c
1045
1046 ANALOG DEVICES INC ADIS16475 DRIVER
1047 M:      Nuno Sa <[email protected]>
1048 L:      [email protected]
1049 W:      http://ez.analog.com/community/linux-device-drivers
1050 S:      Supported
1051 F:      drivers/iio/imu/adis16475.c
1052 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1053
1054 ANALOG DEVICES INC ADM1177 DRIVER
1055 M:      Beniamin Bia <[email protected]>
1056 M:      Michael Hennerich <[email protected]>
1057 L:      [email protected]
1058 S:      Supported
1059 W:      http://ez.analog.com/community/linux-device-drivers
1060 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1061 F:      drivers/hwmon/adm1177.c
1062
1063 ANALOG DEVICES INC ADP5061 DRIVER
1064 M:      Michael Hennerich <[email protected]>
1065 L:      [email protected]
1066 S:      Supported
1067 W:      http://ez.analog.com/community/linux-device-drivers
1068 F:      drivers/power/supply/adp5061.c
1069
1070 ANALOG DEVICES INC ADV7180 DRIVER
1071 M:      Lars-Peter Clausen <[email protected]>
1072 L:      [email protected]
1073 S:      Supported
1074 W:      http://ez.analog.com/community/linux-device-drivers
1075 F:      drivers/media/i2c/adv7180.c
1076
1077 ANALOG DEVICES INC ADV748X DRIVER
1078 M:      Kieran Bingham <[email protected]>
1079 L:      [email protected]
1080 S:      Maintained
1081 F:      drivers/media/i2c/adv748x/*
1082
1083 ANALOG DEVICES INC ADV7511 DRIVER
1084 M:      Hans Verkuil <[email protected]>
1085 L:      [email protected]
1086 S:      Maintained
1087 F:      drivers/media/i2c/adv7511*
1088
1089 ANALOG DEVICES INC ADV7604 DRIVER
1090 M:      Hans Verkuil <[email protected]>
1091 L:      [email protected]
1092 S:      Maintained
1093 F:      drivers/media/i2c/adv7604*
1094
1095 ANALOG DEVICES INC ADV7842 DRIVER
1096 M:      Hans Verkuil <[email protected]>
1097 L:      [email protected]
1098 S:      Maintained
1099 F:      drivers/media/i2c/adv7842*
1100
1101 ANALOG DEVICES INC ASOC CODEC DRIVERS
1102 M:      Lars-Peter Clausen <[email protected]>
1103 M:      Nuno Sá <[email protected]>
1104 L:      [email protected] (moderated for non-subscribers)
1105 S:      Supported
1106 W:      http://wiki.analog.com/
1107 W:      http://ez.analog.com/community/linux-device-drivers
1108 F:      sound/soc/codecs/ad1*
1109 F:      sound/soc/codecs/ad7*
1110 F:      sound/soc/codecs/adau*
1111 F:      sound/soc/codecs/adav*
1112 F:      sound/soc/codecs/sigmadsp.*
1113 F:      sound/soc/codecs/ssm*
1114
1115 ANALOG DEVICES INC DMA DRIVERS
1116 M:      Lars-Peter Clausen <[email protected]>
1117 S:      Supported
1118 W:      http://ez.analog.com/community/linux-device-drivers
1119 F:      drivers/dma/dma-axi-dmac.c
1120
1121 ANALOG DEVICES INC HMC425A DRIVER
1122 M:      Beniamin Bia <[email protected]>
1123 M:      Michael Hennerich <[email protected]>
1124 L:      [email protected]
1125 S:      Supported
1126 W:      http://ez.analog.com/community/linux-device-drivers
1127 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1128 F:      drivers/iio/amplifiers/hmc425a.c
1129
1130 ANALOG DEVICES INC IIO DRIVERS
1131 M:      Lars-Peter Clausen <[email protected]>
1132 M:      Michael Hennerich <[email protected]>
1133 S:      Supported
1134 W:      http://wiki.analog.com/
1135 W:      http://ez.analog.com/community/linux-device-drivers
1136 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1137 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1138 F:      drivers/iio/*/ad*
1139 F:      drivers/iio/adc/ltc249*
1140 F:      drivers/staging/iio/*/ad*
1141 X:      drivers/iio/*/adjd*
1142
1143 ANALOGBITS PLL LIBRARIES
1144 M:      Paul Walmsley <[email protected]>
1145 S:      Supported
1146 F:      drivers/clk/analogbits/*
1147 F:      include/linux/clk/analogbits*
1148
1149 ANDES ARCHITECTURE
1150 M:      Nick Hu <[email protected]>
1151 M:      Greentime Hu <[email protected]>
1152 M:      Vincent Chen <[email protected]>
1153 S:      Supported
1154 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1155 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1156 F:      Documentation/devicetree/bindings/nds32/
1157 F:      arch/nds32/
1158 N:      nds32
1159 K:      nds32
1160
1161 ANDROID CONFIG FRAGMENTS
1162 M:      Rob Herring <[email protected]>
1163 S:      Supported
1164 F:      kernel/configs/android*
1165
1166 ANDROID DRIVERS
1167 M:      Greg Kroah-Hartman <[email protected]>
1168 M:      Arve Hjønnevåg <[email protected]>
1169 M:      Todd Kjos <[email protected]>
1170 M:      Martijn Coenen <[email protected]>
1171 M:      Joel Fernandes <[email protected]>
1172 M:      Christian Brauner <[email protected]>
1173 L:      [email protected]
1174 S:      Supported
1175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1176 F:      drivers/android/
1177 F:      drivers/staging/android/
1178
1179 ANDROID GOLDFISH PIC DRIVER
1180 M:      Miodrag Dinic <[email protected]>
1181 S:      Supported
1182 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1183 F:      drivers/irqchip/irq-goldfish-pic.c
1184
1185 ANDROID GOLDFISH RTC DRIVER
1186 M:      Miodrag Dinic <[email protected]>
1187 S:      Supported
1188 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1189 F:      drivers/rtc/rtc-goldfish.c
1190
1191 ANDROID ION DRIVER
1192 M:      Laura Abbott <[email protected]>
1193 M:      Sumit Semwal <[email protected]>
1194 L:      [email protected]
1195 L:      [email protected]
1196 L:      [email protected] (moderated for non-subscribers)
1197 S:      Supported
1198 F:      drivers/staging/android/ion
1199 F:      drivers/staging/android/uapi/ion.h
1200
1201 AOA (Apple Onboard Audio) ALSA DRIVER
1202 M:      Johannes Berg <[email protected]>
1203 L:      [email protected]
1204 L:      [email protected] (moderated for non-subscribers)
1205 S:      Maintained
1206 F:      sound/aoa/
1207
1208 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1209 M:      William Breathitt Gray <[email protected]>
1210 L:      [email protected]
1211 S:      Maintained
1212 F:      drivers/iio/adc/stx104.c
1213
1214 APM DRIVER
1215 M:      Jiri Kosina <[email protected]>
1216 S:      Odd fixes
1217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1218 F:      arch/x86/kernel/apm_32.c
1219 F:      drivers/char/apm-emulation.c
1220 F:      include/linux/apm_bios.h
1221 F:      include/uapi/linux/apm_bios.h
1222
1223 APPARMOR SECURITY MODULE
1224 M:      John Johansen <[email protected]>
1225 L:      [email protected] (subscribers-only, general discussion)
1226 S:      Supported
1227 W:      wiki.apparmor.net
1228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1229 F:      Documentation/admin-guide/LSM/apparmor.rst
1230 F:      security/apparmor/
1231
1232 APPLE BCM5974 MULTITOUCH DRIVER
1233 M:      Henrik Rydberg <[email protected]>
1234 L:      [email protected]
1235 S:      Odd fixes
1236 F:      drivers/input/mouse/bcm5974.c
1237
1238 APPLE SMC DRIVER
1239 M:      Henrik Rydberg <[email protected]>
1240 L:      [email protected]
1241 S:      Odd fixes
1242 F:      drivers/hwmon/applesmc.c
1243
1244 APPLETALK NETWORK LAYER
1245 L:      [email protected]
1246 S:      Odd fixes
1247 F:      drivers/net/appletalk/
1248 F:      include/linux/atalk.h
1249 F:      include/uapi/linux/atalk.h
1250 F:      net/appletalk/
1251
1252 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1253 M:      Khuong Dinh <[email protected]>
1254 S:      Supported
1255 F:      arch/arm64/boot/dts/apm/
1256
1257 APPLIED MICRO (APM) X-GENE SOC EDAC
1258 M:      Khuong Dinh <[email protected]>
1259 S:      Supported
1260 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1261 F:      drivers/edac/xgene_edac.c
1262
1263 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1264 M:      Iyappan Subramanian <[email protected]>
1265 M:      Keyur Chudgar <[email protected]>
1266 S:      Supported
1267 F:      drivers/net/ethernet/apm/xgene-v2/
1268
1269 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1270 M:      Iyappan Subramanian <[email protected]>
1271 M:      Keyur Chudgar <[email protected]>
1272 M:      Quan Nguyen <[email protected]>
1273 S:      Supported
1274 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1275 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1276 F:      drivers/net/ethernet/apm/xgene/
1277 F:      drivers/net/phy/mdio-xgene.c
1278
1279 APPLIED MICRO (APM) X-GENE SOC PMU
1280 M:      Khuong Dinh <[email protected]>
1281 S:      Supported
1282 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1283 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1284 F:      drivers/perf/xgene_pmu.c
1285
1286 APTINA CAMERA SENSOR PLL
1287 M:      Laurent Pinchart <[email protected]>
1288 L:      [email protected]
1289 S:      Maintained
1290 F:      drivers/media/i2c/aptina-pll.*
1291
1292 AQUANTIA ETHERNET DRIVER (atlantic)
1293 M:      Igor Russkikh <[email protected]>
1294 L:      [email protected]
1295 S:      Supported
1296 W:      https://www.marvell.com/
1297 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1298 F:      Documentation/networking/device_drivers/aquantia/atlantic.rst
1299 F:      drivers/net/ethernet/aquantia/atlantic/
1300
1301 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1302 M:      Egor Pomozov <[email protected]>
1303 L:      [email protected]
1304 S:      Supported
1305 W:      http://www.aquantia.com
1306 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1307
1308 ARASAN NAND CONTROLLER DRIVER
1309 M:      Naga Sureshkumar Relli <[email protected]>
1310 L:      [email protected]
1311 S:      Maintained
1312 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1313 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1314
1315 ARC FRAMEBUFFER DRIVER
1316 M:      Jaya Kumar <[email protected]>
1317 S:      Maintained
1318 F:      drivers/video/fbdev/arcfb.c
1319 F:      drivers/video/fbdev/core/fb_defio.c
1320
1321 ARC PGU DRM DRIVER
1322 M:      Alexey Brodkin <[email protected]>
1323 S:      Supported
1324 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1325 F:      drivers/gpu/drm/arc/
1326
1327 ARCNET NETWORK LAYER
1328 M:      Michael Grzeschik <[email protected]>
1329 L:      [email protected]
1330 S:      Maintained
1331 F:      drivers/net/arcnet/
1332 F:      include/uapi/linux/if_arcnet.h
1333
1334 ARM ARCHITECTED TIMER DRIVER
1335 M:      Mark Rutland <[email protected]>
1336 M:      Marc Zyngier <[email protected]>
1337 L:      [email protected] (moderated for non-subscribers)
1338 S:      Maintained
1339 F:      arch/arm/include/asm/arch_timer.h
1340 F:      arch/arm64/include/asm/arch_timer.h
1341 F:      drivers/clocksource/arm_arch_timer.c
1342
1343 ARM HDLCD DRM DRIVER
1344 M:      Liviu Dudau <[email protected]>
1345 S:      Supported
1346 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1347 F:      drivers/gpu/drm/arm/hdlcd_*
1348
1349 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1350 M:      Linus Walleij <[email protected]>
1351 L:      [email protected] (moderated for non-subscribers)
1352 S:      Maintained
1353 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1354 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1355 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1356 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1357 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1358 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1359 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1360 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1361 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1362 F:      arch/arm/boot/dts/arm-realview-*
1363 F:      arch/arm/boot/dts/integrator*
1364 F:      arch/arm/boot/dts/versatile*
1365 F:      arch/arm/mach-integrator/
1366 F:      arch/arm/mach-realview/
1367 F:      arch/arm/mach-versatile/
1368 F:      arch/arm/plat-versatile/
1369 F:      drivers/bus/arm-integrator-lm.c
1370 F:      drivers/clk/versatile/
1371 F:      drivers/i2c/busses/i2c-versatile.c
1372 F:      drivers/irqchip/irq-versatile-fpga.c
1373 F:      drivers/mtd/maps/physmap-versatile.*
1374 F:      drivers/power/reset/arm-versatile-reboot.c
1375 F:      drivers/soc/versatile/
1376
1377 ARM KOMEDA DRM-KMS DRIVER
1378 M:      James (Qian) Wang <[email protected]>
1379 M:      Liviu Dudau <[email protected]>
1380 M:      Mihail Atanassov <[email protected]>
1381 L:      Mali DP Maintainers <[email protected]>
1382 S:      Supported
1383 T:      git git://anongit.freedesktop.org/drm/drm-misc
1384 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1385 F:      Documentation/gpu/komeda-kms.rst
1386 F:      drivers/gpu/drm/arm/display/include/
1387 F:      drivers/gpu/drm/arm/display/komeda/
1388
1389 ARM MALI PANFROST DRM DRIVER
1390 M:      Rob Herring <[email protected]>
1391 M:      Tomeu Vizoso <[email protected]>
1392 R:      Steven Price <[email protected]>
1393 R:      Alyssa Rosenzweig <[email protected]>
1394 L:      [email protected]
1395 S:      Supported
1396 T:      git git://anongit.freedesktop.org/drm/drm-misc
1397 F:      drivers/gpu/drm/panfrost/
1398 F:      include/uapi/drm/panfrost_drm.h
1399
1400 ARM MALI-DP DRM DRIVER
1401 M:      Liviu Dudau <[email protected]>
1402 M:      Brian Starkey <[email protected]>
1403 L:      Mali DP Maintainers <[email protected]>
1404 S:      Supported
1405 T:      git git://anongit.freedesktop.org/drm/drm-misc
1406 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1407 F:      Documentation/gpu/afbc.rst
1408 F:      drivers/gpu/drm/arm/
1409
1410 ARM MFM AND FLOPPY DRIVERS
1411 M:      Ian Molton <[email protected]>
1412 S:      Maintained
1413 F:      arch/arm/include/asm/floppy.h
1414 F:      arch/arm/mach-rpc/floppydma.S
1415
1416 ARM PMU PROFILING AND DEBUGGING
1417 M:      Will Deacon <[email protected]>
1418 M:      Mark Rutland <[email protected]>
1419 L:      [email protected] (moderated for non-subscribers)
1420 S:      Maintained
1421 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1422 F:      Documentation/devicetree/bindings/perf/
1423 F:      arch/arm*/include/asm/hw_breakpoint.h
1424 F:      arch/arm*/include/asm/perf_event.h
1425 F:      arch/arm*/kernel/hw_breakpoint.c
1426 F:      arch/arm*/kernel/perf_*
1427 F:      arch/arm/oprofile/common.c
1428 F:      drivers/perf/*
1429 F:      include/linux/perf/arm_pmu.h
1430
1431 ARM PORT
1432 M:      Russell King <[email protected]>
1433 L:      [email protected] (moderated for non-subscribers)
1434 S:      Odd Fixes
1435 W:      http://www.armlinux.org.uk/
1436 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1437 F:      arch/arm/
1438 X:      arch/arm/boot/dts/
1439
1440 ARM PRIMECELL AACI PL041 DRIVER
1441 M:      Russell King <[email protected]>
1442 S:      Odd Fixes
1443 F:      sound/arm/aaci.*
1444
1445 ARM PRIMECELL BUS SUPPORT
1446 M:      Russell King <[email protected]>
1447 S:      Odd Fixes
1448 F:      drivers/amba/
1449 F:      include/linux/amba/bus.h
1450
1451 ARM PRIMECELL CLCD PL110 DRIVER
1452 M:      Russell King <[email protected]>
1453 S:      Odd Fixes
1454 F:      drivers/video/fbdev/amba-clcd.*
1455
1456 ARM PRIMECELL KMI PL050 DRIVER
1457 M:      Russell King <[email protected]>
1458 S:      Odd Fixes
1459 F:      drivers/input/serio/ambakmi.*
1460 F:      include/linux/amba/kmi.h
1461
1462 ARM PRIMECELL MMCI PL180/1 DRIVER
1463 M:      Russell King <[email protected]>
1464 S:      Odd Fixes
1465 F:      drivers/mmc/host/mmci.*
1466 F:      include/linux/amba/mmci.h
1467
1468 ARM PRIMECELL SSP PL022 SPI DRIVER
1469 M:      Linus Walleij <[email protected]>
1470 L:      [email protected] (moderated for non-subscribers)
1471 S:      Maintained
1472 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1473 F:      drivers/spi/spi-pl022.c
1474
1475 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1476 M:      Russell King <[email protected]>
1477 S:      Odd Fixes
1478 F:      drivers/tty/serial/amba-pl01*.c
1479 F:      include/linux/amba/serial.h
1480
1481 ARM PRIMECELL VIC PL190/PL192 DRIVER
1482 M:      Linus Walleij <[email protected]>
1483 L:      [email protected] (moderated for non-subscribers)
1484 S:      Maintained
1485 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1486 F:      drivers/irqchip/irq-vic.c
1487
1488 ARM SMC WATCHDOG DRIVER
1489 M:      Julius Werner <[email protected]>
1490 R:      Evan Benn <[email protected]>
1491 S:      Maintained
1492 F:      devicetree/bindings/watchdog/arm-smc-wdt.yaml
1493 F:      drivers/watchdog/arm_smc_wdt.c
1494
1495 ARM SMMU DRIVERS
1496 M:      Will Deacon <[email protected]>
1497 R:      Robin Murphy <[email protected]>
1498 L:      [email protected] (moderated for non-subscribers)
1499 S:      Maintained
1500 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1501 F:      drivers/iommu/arm-smmu*
1502 F:      drivers/iommu/io-pgtable-arm-v7s.c
1503 F:      drivers/iommu/io-pgtable-arm.c
1504
1505 ARM SUB-ARCHITECTURES
1506 L:      [email protected] (moderated for non-subscribers)
1507 S:      Maintained
1508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1509 F:      arch/arm/mach-*/
1510 F:      arch/arm/plat-*/
1511
1512 ARM/ACTIONS SEMI ARCHITECTURE
1513 M:      Andreas Färber <[email protected]>
1514 M:      Manivannan Sadhasivam <[email protected]>
1515 L:      [email protected] (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      Documentation/devicetree/bindings/arm/actions.yaml
1518 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1519 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1520 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1521 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1522 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1523 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1524 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1525 F:      arch/arm/boot/dts/owl-*
1526 F:      arch/arm/mach-actions/
1527 F:      arch/arm64/boot/dts/actions/
1528 F:      drivers/clk/actions/
1529 F:      drivers/clocksource/timer-owl*
1530 F:      drivers/dma/owl-dma.c
1531 F:      drivers/i2c/busses/i2c-owl.c
1532 F:      drivers/mmc/host/owl-mmc.c
1533 F:      drivers/pinctrl/actions/*
1534 F:      drivers/soc/actions/
1535 F:      include/dt-bindings/power/owl-*
1536 F:      include/linux/soc/actions/
1537 N:      owl
1538
1539 ARM/ADS SPHERE MACHINE SUPPORT
1540 M:      Lennert Buytenhek <[email protected]>
1541 L:      [email protected] (moderated for non-subscribers)
1542 S:      Maintained
1543
1544 ARM/AFEB9260 MACHINE SUPPORT
1545 M:      Sergey Lapin <[email protected]>
1546 L:      [email protected] (moderated for non-subscribers)
1547 S:      Maintained
1548
1549 ARM/AJECO 1ARM MACHINE SUPPORT
1550 M:      Lennert Buytenhek <[email protected]>
1551 L:      [email protected] (moderated for non-subscribers)
1552 S:      Maintained
1553
1554 ARM/Allwinner SoC Clock Support
1555 M:      Emilio López <[email protected]>
1556 S:      Maintained
1557 F:      drivers/clk/sunxi/
1558
1559 ARM/Allwinner sunXi SoC support
1560 M:      Maxime Ripard <[email protected]>
1561 M:      Chen-Yu Tsai <[email protected]>
1562 L:      [email protected] (moderated for non-subscribers)
1563 S:      Maintained
1564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1565 F:      arch/arm/mach-sunxi/
1566 F:      arch/arm64/boot/dts/allwinner/
1567 F:      drivers/clk/sunxi-ng/
1568 F:      drivers/pinctrl/sunxi/
1569 F:      drivers/soc/sunxi/
1570 N:      sun[x456789]i
1571 N:      sun50i
1572
1573 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1574 M:      Neil Armstrong <[email protected]>
1575 M:      Jerome Brunet <[email protected]>
1576 L:      [email protected]
1577 S:      Maintained
1578 F:      Documentation/devicetree/bindings/clock/amlogic*
1579 F:      drivers/clk/meson/
1580 F:      include/dt-bindings/clock/gxbb*
1581 F:      include/dt-bindings/clock/meson*
1582
1583 ARM/Amlogic Meson SoC Crypto Drivers
1584 M:      Corentin Labbe <[email protected]>
1585 L:      [email protected]
1586 L:      [email protected]
1587 S:      Maintained
1588 F:      Documentation/devicetree/bindings/crypto/amlogic*
1589 F:      drivers/crypto/amlogic/
1590
1591 ARM/Amlogic Meson SoC Sound Drivers
1592 M:      Jerome Brunet <[email protected]>
1593 L:      [email protected] (moderated for non-subscribers)
1594 S:      Maintained
1595 F:      Documentation/devicetree/bindings/sound/amlogic*
1596 F:      sound/soc/meson/
1597
1598 ARM/Amlogic Meson SoC support
1599 M:      Kevin Hilman <[email protected]>
1600 L:      [email protected] (moderated for non-subscribers)
1601 L:      [email protected]
1602 S:      Maintained
1603 W:      http://linux-meson.com/
1604 F:      arch/arm/boot/dts/meson*
1605 F:      arch/arm/mach-meson/
1606 F:      arch/arm64/boot/dts/amlogic/
1607 F:      drivers/mmc/host/meson*
1608 F:      drivers/pinctrl/meson/
1609 F:      drivers/rtc/rtc-meson*
1610 F:      drivers/soc/amlogic/
1611 N:      meson
1612
1613 ARM/Annapurna Labs ALPINE ARCHITECTURE
1614 M:      Tsahee Zidenberg <[email protected]>
1615 M:      Antoine Tenart <[email protected]>
1616 L:      [email protected] (moderated for non-subscribers)
1617 S:      Maintained
1618 F:      arch/arm/boot/dts/alpine*
1619 F:      arch/arm/mach-alpine/
1620 F:      arch/arm64/boot/dts/al/
1621 F:      drivers/*/*alpine*
1622
1623 ARM/ARTPEC MACHINE SUPPORT
1624 M:      Jesper Nilsson <[email protected]>
1625 M:      Lars Persson <[email protected]>
1626 L:      [email protected]
1627 S:      Maintained
1628 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1629 F:      arch/arm/boot/dts/artpec6*
1630 F:      arch/arm/mach-artpec
1631 F:      drivers/clk/axis
1632 F:      drivers/crypto/axis
1633 F:      drivers/mmc/host/usdhi6rol0.c
1634 F:      drivers/pinctrl/pinctrl-artpec*
1635
1636 ARM/ASPEED I2C DRIVER
1637 M:      Brendan Higgins <[email protected]>
1638 R:      Benjamin Herrenschmidt <[email protected]>
1639 R:      Joel Stanley <[email protected]>
1640 L:      [email protected]
1641 L:      [email protected] (moderated for non-subscribers)
1642 S:      Maintained
1643 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1644 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1645 F:      drivers/i2c/busses/i2c-aspeed.c
1646 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1647
1648 ARM/ASPEED MACHINE SUPPORT
1649 M:      Joel Stanley <[email protected]>
1650 R:      Andrew Jeffery <[email protected]>
1651 L:      [email protected] (moderated for non-subscribers)
1652 L:      [email protected] (moderated for non-subscribers)
1653 S:      Supported
1654 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1656 F:      arch/arm/boot/dts/aspeed-*
1657 F:      arch/arm/mach-aspeed/
1658 N:      aspeed
1659
1660 ARM/BITMAIN ARCHITECTURE
1661 M:      Manivannan Sadhasivam <[email protected]>
1662 L:      [email protected] (moderated for non-subscribers)
1663 S:      Maintained
1664 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1665 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1666 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1667 F:      arch/arm64/boot/dts/bitmain/
1668 F:      drivers/clk/clk-bm1880.c
1669 F:      drivers/pinctrl/pinctrl-bm1880.c
1670
1671 ARM/CALXEDA HIGHBANK ARCHITECTURE
1672 M:      Andre Przywara <[email protected]>
1673 L:      [email protected] (moderated for non-subscribers)
1674 S:      Maintained
1675 F:      arch/arm/boot/dts/ecx-*.dts*
1676 F:      arch/arm/boot/dts/highbank.dts
1677 F:      arch/arm/mach-highbank/
1678
1679 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1680 M:      Krzysztof Halasa <[email protected]>
1681 S:      Maintained
1682 F:      arch/arm/mach-cns3xxx/
1683
1684 ARM/CAVIUM THUNDER NETWORK DRIVER
1685 M:      Sunil Goutham <[email protected]>
1686 M:      Robert Richter <[email protected]>
1687 L:      [email protected] (moderated for non-subscribers)
1688 S:      Supported
1689 F:      drivers/net/ethernet/cavium/thunder/
1690
1691 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1692 M:      Lukasz Majewski <[email protected]>
1693 L:      [email protected] (moderated for non-subscribers)
1694 S:      Maintained
1695 F:      arch/arm/mach-ep93xx/ts72xx.c
1696
1697 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1698 M:      Alexander Shiyan <[email protected]>
1699 L:      [email protected] (moderated for non-subscribers)
1700 S:      Odd Fixes
1701 N:      clps711x
1702
1703 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1704 M:      Lennert Buytenhek <[email protected]>
1705 L:      [email protected] (moderated for non-subscribers)
1706 S:      Maintained
1707
1708 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1709 M:      Hartley Sweeten <[email protected]>
1710 M:      Alexander Sverdlin <[email protected]>
1711 L:      [email protected] (moderated for non-subscribers)
1712 S:      Maintained
1713 F:      arch/arm/mach-ep93xx/
1714 F:      arch/arm/mach-ep93xx/include/mach/
1715
1716 ARM/CLKDEV SUPPORT
1717 M:      Russell King <[email protected]>
1718 L:      [email protected] (moderated for non-subscribers)
1719 S:      Maintained
1720 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1721 F:      drivers/clk/clkdev.c
1722
1723 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1724 M:      Baruch Siach <[email protected]>
1725 L:      [email protected] (moderated for non-subscribers)
1726 S:      Maintained
1727 F:      arch/arm/boot/dts/cx92755*
1728 N:      digicolor
1729
1730 ARM/CONTEC MICRO9 MACHINE SUPPORT
1731 M:      Hubert Feurstein <[email protected]>
1732 S:      Maintained
1733 F:      arch/arm/mach-ep93xx/micro9.c
1734
1735 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1736 M:      Mathieu Poirier <[email protected]>
1737 R:      Suzuki K Poulose <[email protected]>
1738 R:      Mike Leach <[email protected]>
1739 L:      [email protected] (moderated for non-subscribers)
1740 S:      Maintained
1741 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1742 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1743 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1744 F:      Documentation/devicetree/bindings/arm/coresight.txt
1745 F:      Documentation/trace/coresight/*
1746 F:      drivers/hwtracing/coresight/*
1747 F:      include/dt-bindings/arm/coresight-cti-dt.h
1748 F:      tools/perf/arch/arm/util/auxtrace.c
1749 F:      tools/perf/arch/arm/util/cs-etm.c
1750 F:      tools/perf/arch/arm/util/cs-etm.h
1751 F:      tools/perf/arch/arm/util/pmu.c
1752 F:      tools/perf/util/cs-etm-decoder/*
1753 F:      tools/perf/util/cs-etm.*
1754
1755 ARM/CORGI MACHINE SUPPORT
1756 M:      Richard Purdie <[email protected]>
1757 S:      Maintained
1758
1759 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1760 M:      Hans Ulli Kroll <[email protected]>
1761 M:      Linus Walleij <[email protected]>
1762 L:      [email protected] (moderated for non-subscribers)
1763 S:      Maintained
1764 T:      git git://github.com/ulli-kroll/linux.git
1765 F:      Documentation/devicetree/bindings/arm/gemini.txt
1766 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1767 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1768 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1769 F:      arch/arm/mach-gemini/
1770 F:      drivers/net/ethernet/cortina/
1771 F:      drivers/pinctrl/pinctrl-gemini.c
1772 F:      drivers/rtc/rtc-ftrtc010.c
1773
1774 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1775 M:      Barry Song <[email protected]>
1776 L:      [email protected] (moderated for non-subscribers)
1777 S:      Maintained
1778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1779 F:      arch/arm/boot/dts/prima2*
1780 F:      arch/arm/mach-prima2/
1781 F:      drivers/clk/sirf/
1782 F:      drivers/clocksource/timer-atlas7.c
1783 F:      drivers/clocksource/timer-prima2.c
1784 X:      drivers/gnss
1785 N:      [^a-z]sirf
1786
1787 ARM/CZ.NIC TURRIS MOX SUPPORT
1788 M:      Marek Behun <[email protected]>
1789 S:      Maintained
1790 W:      http://mox.turris.cz
1791 F:      Documentation/ABI/testing/debugfs-moxtet
1792 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1793 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1794 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1795 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1796 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1797 F:      drivers/bus/moxtet.c
1798 F:      drivers/firmware/turris-mox-rwtm.c
1799 F:      drivers/gpio/gpio-moxtet.c
1800 F:      include/linux/moxtet.h
1801
1802 ARM/EBSA110 MACHINE SUPPORT
1803 M:      Russell King <[email protected]>
1804 L:      [email protected] (moderated for non-subscribers)
1805 S:      Maintained
1806 W:      http://www.armlinux.org.uk/
1807 F:      arch/arm/mach-ebsa110/
1808 F:      drivers/net/ethernet/amd/am79c961a.*
1809
1810 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1811 M:      Uwe Kleine-König <[email protected]>
1812 R:      Pengutronix Kernel Team <[email protected]>
1813 L:      [email protected] (moderated for non-subscribers)
1814 S:      Maintained
1815 N:      efm32
1816
1817 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1818 M:      Robert Jarzmik <[email protected]>
1819 L:      [email protected] (moderated for non-subscribers)
1820 S:      Maintained
1821 F:      arch/arm/mach-pxa/ezx.c
1822
1823 ARM/FARADAY FA526 PORT
1824 M:      Hans Ulli Kroll <[email protected]>
1825 L:      [email protected] (moderated for non-subscribers)
1826 S:      Maintained
1827 T:      git git://git.berlios.de/gemini-board
1828 F:      arch/arm/mm/*-fa*
1829
1830 ARM/FOOTBRIDGE ARCHITECTURE
1831 M:      Russell King <[email protected]>
1832 L:      [email protected] (moderated for non-subscribers)
1833 S:      Maintained
1834 W:      http://www.armlinux.org.uk/
1835 F:      arch/arm/include/asm/hardware/dec21285.h
1836 F:      arch/arm/mach-footbridge/
1837
1838 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1839 M:      Shawn Guo <[email protected]>
1840 M:      Sascha Hauer <[email protected]>
1841 R:      Pengutronix Kernel Team <[email protected]>
1842 R:      Fabio Estevam <[email protected]>
1843 R:      NXP Linux Team <[email protected]>
1844 L:      [email protected] (moderated for non-subscribers)
1845 S:      Maintained
1846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1847 X:      drivers/media/i2c/
1848 N:      imx
1849 N:      mxs
1850
1851 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1852 M:      Shawn Guo <[email protected]>
1853 M:      Li Yang <[email protected]>
1854 L:      [email protected] (moderated for non-subscribers)
1855 S:      Maintained
1856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1857 F:      arch/arm/boot/dts/ls1021a*
1858 F:      arch/arm64/boot/dts/freescale/fsl-*
1859 F:      arch/arm64/boot/dts/freescale/qoriq-*
1860
1861 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1862 M:      Shawn Guo <[email protected]>
1863 M:      Sascha Hauer <[email protected]>
1864 R:      Pengutronix Kernel Team <[email protected]>
1865 R:      Stefan Agner <[email protected]>
1866 L:      [email protected] (moderated for non-subscribers)
1867 S:      Maintained
1868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1869 F:      arch/arm/boot/dts/vf*
1870 F:      arch/arm/mach-imx/*vf610*
1871
1872 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1873 M:      Lennert Buytenhek <[email protected]>
1874 L:      [email protected] (moderated for non-subscribers)
1875 S:      Maintained
1876
1877 ARM/GUMSTIX MACHINE SUPPORT
1878 M:      Steve Sakoman <[email protected]>
1879 L:      [email protected] (moderated for non-subscribers)
1880 S:      Maintained
1881
1882 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1883 M:      Philipp Zabel <[email protected]>
1884 M:      Paul Parsons <[email protected]>
1885 L:      [email protected] (moderated for non-subscribers)
1886 S:      Maintained
1887 F:      arch/arm/mach-pxa/hx4700.c
1888 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1889 F:      sound/soc/pxa/hx4700.c
1890
1891 ARM/HISILICON SOC SUPPORT
1892 M:      Wei Xu <[email protected]>
1893 L:      [email protected] (moderated for non-subscribers)
1894 S:      Supported
1895 W:      http://www.hisilicon.com
1896 T:      git git://github.com/hisilicon/linux-hisi.git
1897 F:      arch/arm/boot/dts/hi3*
1898 F:      arch/arm/boot/dts/hip*
1899 F:      arch/arm/boot/dts/hisi*
1900 F:      arch/arm/mach-hisi/
1901 F:      arch/arm64/boot/dts/hisilicon/
1902
1903 ARM/HP JORNADA 7XX MACHINE SUPPORT
1904 M:      Kristoffer Ericson <[email protected]>
1905 S:      Maintained
1906 W:      www.jlime.com
1907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1908 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1909 F:      arch/arm/mach-sa1100/jornada720.c
1910
1911 ARM/IGEP MACHINE SUPPORT
1912 M:      Enric Balletbo i Serra <[email protected]>
1913 M:      Javier Martinez Canillas <[email protected]>
1914 L:      [email protected]
1915 L:      [email protected] (moderated for non-subscribers)
1916 S:      Maintained
1917 F:      arch/arm/boot/dts/omap3-igep*
1918
1919 ARM/INCOME PXA270 SUPPORT
1920 M:      Marek Vasut <[email protected]>
1921 L:      [email protected] (moderated for non-subscribers)
1922 S:      Maintained
1923 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1924
1925 ARM/INTEL IOP32X ARM ARCHITECTURE
1926 M:      Lennert Buytenhek <[email protected]>
1927 L:      [email protected] (moderated for non-subscribers)
1928 S:      Maintained
1929
1930 ARM/INTEL IQ81342EX MACHINE SUPPORT
1931 M:      Lennert Buytenhek <[email protected]>
1932 L:      [email protected] (moderated for non-subscribers)
1933 S:      Maintained
1934
1935 ARM/INTEL IXDP2850 MACHINE SUPPORT
1936 M:      Lennert Buytenhek <[email protected]>
1937 L:      [email protected] (moderated for non-subscribers)
1938 S:      Maintained
1939
1940 ARM/INTEL IXP4XX ARM ARCHITECTURE
1941 M:      Linus Walleij <[email protected]>
1942 M:      Imre Kaloz <[email protected]>
1943 M:      Krzysztof Halasa <[email protected]>
1944 L:      [email protected] (moderated for non-subscribers)
1945 S:      Maintained
1946 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1947 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1948 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1949 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1950 F:      arch/arm/mach-ixp4xx/
1951 F:      drivers/clocksource/timer-ixp4xx.c
1952 F:      drivers/gpio/gpio-ixp4xx.c
1953 F:      drivers/irqchip/irq-ixp4xx.c
1954 F:      include/linux/irqchip/irq-ixp4xx.h
1955 F:      include/linux/platform_data/timer-ixp4xx.h
1956
1957 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1958 M:      Jonathan Cameron <[email protected]>
1959 L:      [email protected] (moderated for non-subscribers)
1960 S:      Maintained
1961 F:      arch/arm/mach-pxa/stargate2.c
1962 F:      drivers/pcmcia/pxa2xx_stargate2.c
1963
1964 ARM/INTEL XSC3 (MANZANO) ARM CORE
1965 M:      Lennert Buytenhek <[email protected]>
1966 L:      [email protected] (moderated for non-subscribers)
1967 S:      Maintained
1968
1969 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1970 M:      Lennert Buytenhek <[email protected]>
1971 L:      [email protected] (moderated for non-subscribers)
1972 S:      Maintained
1973
1974 ARM/LG1K ARCHITECTURE
1975 M:      Chanho Min <[email protected]>
1976 L:      [email protected] (moderated for non-subscribers)
1977 S:      Maintained
1978 F:      arch/arm64/boot/dts/lg/
1979
1980 ARM/LOGICPD PXA270 MACHINE SUPPORT
1981 M:      Lennert Buytenhek <[email protected]>
1982 L:      [email protected] (moderated for non-subscribers)
1983 S:      Maintained
1984
1985 ARM/LPC18XX ARCHITECTURE
1986 M:      Vladimir Zapolskiy <[email protected]>
1987 L:      [email protected] (moderated for non-subscribers)
1988 S:      Maintained
1989 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1990 F:      arch/arm/boot/dts/lpc43*
1991 F:      drivers/i2c/busses/i2c-lpc2k.c
1992 F:      drivers/memory/pl172.c
1993 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1994 F:      drivers/rtc/rtc-lpc24xx.c
1995 N:      lpc18xx
1996
1997 ARM/LPC32XX SOC SUPPORT
1998 M:      Vladimir Zapolskiy <[email protected]>
1999 M:      Sylvain Lemieux <[email protected]>
2000 L:      [email protected] (moderated for non-subscribers)
2001 S:      Maintained
2002 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2003 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2004 F:      arch/arm/boot/dts/lpc32*
2005 F:      arch/arm/mach-lpc32xx/
2006 F:      drivers/i2c/busses/i2c-pnx.c
2007 F:      drivers/net/ethernet/nxp/lpc_eth.c
2008 F:      drivers/usb/host/ohci-nxp.c
2009 F:      drivers/watchdog/pnx4008_wdt.c
2010 N:      lpc32xx
2011
2012 ARM/MAGICIAN MACHINE SUPPORT
2013 M:      Philipp Zabel <[email protected]>
2014 S:      Maintained
2015
2016 ARM/Marvell Dove/MV78xx0/Orion SOC support
2017 M:      Jason Cooper <[email protected]>
2018 M:      Andrew Lunn <[email protected]>
2019 M:      Sebastian Hesselbarth <[email protected]>
2020 M:      Gregory Clement <[email protected]>
2021 L:      [email protected] (moderated for non-subscribers)
2022 S:      Maintained
2023 T:      git git://git.infradead.org/linux-mvebu.git
2024 F:      Documentation/devicetree/bindings/soc/dove/
2025 F:      arch/arm/boot/dts/dove*
2026 F:      arch/arm/boot/dts/orion5x*
2027 F:      arch/arm/mach-dove/
2028 F:      arch/arm/mach-mv78xx0/
2029 F:      arch/arm/mach-orion5x/
2030 F:      arch/arm/plat-orion/
2031 F:      drivers/soc/dove/
2032
2033 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2034 M:      Jason Cooper <[email protected]>
2035 M:      Andrew Lunn <[email protected]>
2036 M:      Gregory Clement <[email protected]>
2037 M:      Sebastian Hesselbarth <[email protected]>
2038 L:      [email protected] (moderated for non-subscribers)
2039 S:      Maintained
2040 T:      git git://git.infradead.org/linux-mvebu.git
2041 F:      arch/arm/boot/dts/armada*
2042 F:      arch/arm/boot/dts/kirkwood*
2043 F:      arch/arm/configs/mvebu_*_defconfig
2044 F:      arch/arm/mach-mvebu/
2045 F:      arch/arm64/boot/dts/marvell/armada*
2046 F:      arch/arm64/boot/dts/marvell/cn913*
2047 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2048 F:      drivers/cpufreq/armada-8k-cpufreq.c
2049 F:      drivers/cpufreq/mvebu-cpufreq.c
2050 F:      drivers/irqchip/irq-armada-370-xp.c
2051 F:      drivers/irqchip/irq-mvebu-*
2052 F:      drivers/pinctrl/mvebu/
2053 F:      drivers/rtc/rtc-armada38x.c
2054
2055 ARM/Mediatek RTC DRIVER
2056 M:      Eddie Huang <[email protected]>
2057 M:      Sean Wang <[email protected]>
2058 L:      [email protected] (moderated for non-subscribers)
2059 L:      [email protected] (moderated for non-subscribers)
2060 S:      Maintained
2061 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2062 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2063 F:      drivers/rtc/rtc-mt2712.c
2064 F:      drivers/rtc/rtc-mt6397.c
2065 F:      drivers/rtc/rtc-mt7622.c
2066
2067 ARM/Mediatek SoC support
2068 M:      Matthias Brugger <[email protected]>
2069 L:      [email protected] (moderated for non-subscribers)
2070 L:      [email protected] (moderated for non-subscribers)
2071 S:      Maintained
2072 W:      https://mtk.bcnfs.org/
2073 C:      irc://chat.freenode.net/linux-mediatek
2074 F:      arch/arm/boot/dts/mt6*
2075 F:      arch/arm/boot/dts/mt7*
2076 F:      arch/arm/boot/dts/mt8*
2077 F:      arch/arm/mach-mediatek/
2078 F:      arch/arm64/boot/dts/mediatek/
2079 F:      drivers/soc/mediatek/
2080 N:      mtk
2081 N:      mt[678]
2082 K:      mediatek
2083
2084 ARM/Mediatek USB3 PHY DRIVER
2085 M:      Chunfeng Yun <[email protected]>
2086 L:      [email protected] (moderated for non-subscribers)
2087 L:      [email protected] (moderated for non-subscribers)
2088 S:      Maintained
2089 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2090 F:      drivers/phy/mediatek/
2091
2092 ARM/Microchip (AT91) SoC support
2093 M:      Nicolas Ferre <[email protected]>
2094 M:      Alexandre Belloni <[email protected]>
2095 M:      Ludovic Desroches <[email protected]>
2096 L:      [email protected] (moderated for non-subscribers)
2097 S:      Supported
2098 W:      http://www.linux4sam.org
2099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2100 F:      arch/arm/boot/dts/at91*.dts
2101 F:      arch/arm/boot/dts/at91*.dtsi
2102 F:      arch/arm/boot/dts/sama*.dts
2103 F:      arch/arm/boot/dts/sama*.dtsi
2104 F:      arch/arm/include/debug/at91.S
2105 F:      arch/arm/mach-at91/
2106 F:      drivers/memory/atmel*
2107 F:      drivers/watchdog/sama5d4_wdt.c
2108 F:      include/soc/at91/
2109 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2110 X:      drivers/net/wireless/atmel/
2111 N:      at91
2112 N:      atmel
2113
2114 ARM/MIOA701 MACHINE SUPPORT
2115 M:      Robert Jarzmik <[email protected]>
2116 L:      [email protected] (moderated for non-subscribers)
2117 S:      Maintained
2118 F:      arch/arm/mach-pxa/mioa701.c
2119
2120 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2121 M:      Michael Petchkovsky <[email protected]>
2122 S:      Maintained
2123
2124 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2125 M:      Linus Walleij <[email protected]>
2126 L:      [email protected] (moderated for non-subscribers)
2127 S:      Maintained
2128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2129 F:      Documentation/devicetree/bindings/arm/ste-*
2130 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2131 F:      Documentation/devicetree/bindings/arm/ux500/
2132 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2133 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2134 F:      arch/arm/boot/dts/ste-*
2135 F:      arch/arm/mach-nomadik/
2136 F:      arch/arm/mach-u300/
2137 F:      arch/arm/mach-ux500/
2138 F:      drivers/clk/clk-nomadik.c
2139 F:      drivers/clk/clk-u300.c
2140 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2141 F:      drivers/clocksource/timer-u300.c
2142 F:      drivers/dma/coh901318*
2143 F:      drivers/dma/ste_dma40*
2144 F:      drivers/hwspinlock/u8500_hsem.c
2145 F:      drivers/i2c/busses/i2c-nomadik.c
2146 F:      drivers/i2c/busses/i2c-stu300.c
2147 F:      drivers/iio/adc/ab8500-gpadc.c
2148 F:      drivers/mfd/ab3100*
2149 F:      drivers/mfd/ab8500*
2150 F:      drivers/mfd/abx500*
2151 F:      drivers/mfd/db8500*
2152 F:      drivers/mfd/dbx500*
2153 F:      drivers/pinctrl/nomadik/
2154 F:      drivers/pinctrl/pinctrl-coh901*
2155 F:      drivers/pinctrl/pinctrl-u300.c
2156 F:      drivers/rtc/rtc-ab3100.c
2157 F:      drivers/rtc/rtc-ab8500.c
2158 F:      drivers/rtc/rtc-coh901331.c
2159 F:      drivers/rtc/rtc-pl031.c
2160 F:      drivers/soc/ux500/
2161 F:      drivers/watchdog/coh901327_wdt.c
2162
2163 ARM/NUVOTON NPCM ARCHITECTURE
2164 M:      Avi Fishman <[email protected]>
2165 M:      Tomer Maimon <[email protected]>
2166 M:      Tali Perry <[email protected]>
2167 R:      Patrick Venture <[email protected]>
2168 R:      Nancy Yuen <[email protected]>
2169 R:      Benjamin Fair <[email protected]>
2170 L:      [email protected] (moderated for non-subscribers)
2171 S:      Supported
2172 F:      Documentation/devicetree/bindings/*/*/*npcm*
2173 F:      Documentation/devicetree/bindings/*/*npcm*
2174 F:      arch/arm/boot/dts/nuvoton-npcm*
2175 F:      arch/arm/mach-npcm/
2176 F:      drivers/*/*npcm*
2177 F:      drivers/*/*/*npcm*
2178 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2179
2180 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2181 L:      [email protected] (subscribers-only)
2182 S:      Orphan
2183 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2184 F:      arch/arm/mach-s3c24xx/gta02.h
2185 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2186
2187 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2188 M:      Alexander Clouter <[email protected]>
2189 L:      [email protected] (moderated for non-subscribers)
2190 S:      Maintained
2191 W:      http://www.digriz.org.uk/ts78xx/kernel
2192 F:      arch/arm/mach-orion5x/ts78xx-*
2193
2194 ARM/OXNAS platform support
2195 M:      Neil Armstrong <[email protected]>
2196 L:      [email protected] (moderated for non-subscribers)
2197 L:      [email protected] (moderated for non-subscribers)
2198 S:      Maintained
2199 F:      arch/arm/boot/dts/ox8*.dts*
2200 F:      arch/arm/mach-oxnas/
2201 F:      drivers/power/reset/oxnas-restart.c
2202 N:      oxnas
2203
2204 ARM/PALM TREO SUPPORT
2205 M:      Tomas Cech <[email protected]>
2206 L:      [email protected]
2207 S:      Maintained
2208 W:      http://hackndev.com
2209 F:      arch/arm/mach-pxa/palmtreo.*
2210
2211 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2212 M:      Marek Vasut <[email protected]>
2213 L:      [email protected]
2214 S:      Maintained
2215 W:      http://hackndev.com
2216 F:      arch/arm/mach-pxa/include/mach/palmld.h
2217 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2218 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2219 F:      arch/arm/mach-pxa/palmld.c
2220 F:      arch/arm/mach-pxa/palmt5.*
2221 F:      arch/arm/mach-pxa/palmtc.c
2222 F:      arch/arm/mach-pxa/palmte2.*
2223 F:      arch/arm/mach-pxa/palmtx.c
2224
2225 ARM/PALMZ72 SUPPORT
2226 M:      Sergey Lapin <[email protected]>
2227 L:      [email protected]
2228 S:      Maintained
2229 W:      http://hackndev.com
2230 F:      arch/arm/mach-pxa/palmz72.*
2231
2232 ARM/PLEB SUPPORT
2233 M:      Peter Chubb <[email protected]>
2234 S:      Maintained
2235 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2236
2237 ARM/PT DIGITAL BOARD PORT
2238 M:      Stefan Eletzhofer <[email protected]>
2239 L:      [email protected] (moderated for non-subscribers)
2240 S:      Maintained
2241 W:      http://www.armlinux.org.uk/
2242
2243 ARM/QUALCOMM SUPPORT
2244 M:      Andy Gross <[email protected]>
2245 M:      Bjorn Andersson <[email protected]>
2246 L:      [email protected]
2247 S:      Maintained
2248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2249 F:      Documentation/devicetree/bindings/*/qcom*
2250 F:      Documentation/devicetree/bindings/soc/qcom/
2251 F:      arch/arm/boot/dts/qcom-*.dts
2252 F:      arch/arm/boot/dts/qcom-*.dtsi
2253 F:      arch/arm/mach-qcom/
2254 F:      arch/arm64/boot/dts/qcom/
2255 F:      drivers/*/*/qcom*
2256 F:      drivers/*/*/qcom/
2257 F:      drivers/*/pm8???-*
2258 F:      drivers/*/qcom*
2259 F:      drivers/*/qcom/
2260 F:      drivers/bluetooth/btqcomsmd.c
2261 F:      drivers/clocksource/timer-qcom.c
2262 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2263 F:      drivers/extcon/extcon-qcom*
2264 F:      drivers/i2c/busses/i2c-qcom-geni.c
2265 F:      drivers/i2c/busses/i2c-qup.c
2266 F:      drivers/iommu/msm*
2267 F:      drivers/mfd/ssbi.c
2268 F:      drivers/mmc/host/mmci_qcom*
2269 F:      drivers/mmc/host/sdhci-msm.c
2270 F:      drivers/pci/controller/dwc/pcie-qcom.c
2271 F:      drivers/phy/qualcomm/
2272 F:      drivers/power/*/msm*
2273 F:      drivers/reset/reset-qcom-*
2274 F:      drivers/scsi/ufs/ufs-qcom.*
2275 F:      drivers/spi/spi-geni-qcom.c
2276 F:      drivers/spi/spi-qcom-qspi.c
2277 F:      drivers/spi/spi-qup.c
2278 F:      drivers/tty/serial/msm_serial.c
2279 F:      drivers/usb/dwc3/dwc3-qcom.c
2280 F:      include/dt-bindings/*/qcom*
2281 F:      include/linux/*/qcom*
2282
2283 ARM/RADISYS ENP2611 MACHINE SUPPORT
2284 M:      Lennert Buytenhek <[email protected]>
2285 L:      [email protected] (moderated for non-subscribers)
2286 S:      Maintained
2287
2288 ARM/RDA MICRO ARCHITECTURE
2289 M:      Manivannan Sadhasivam <[email protected]>
2290 L:      [email protected] (moderated for non-subscribers)
2291 L:      [email protected] (moderated for non-subscribers)
2292 S:      Maintained
2293 F:      Documentation/devicetree/bindings/arm/rda.yaml
2294 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2295 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2296 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2297 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2298 F:      arch/arm/boot/dts/rda8810pl-*
2299 F:      drivers/clocksource/timer-rda.c
2300 F:      drivers/gpio/gpio-rda.c
2301 F:      drivers/irqchip/irq-rda-intc.c
2302 F:      drivers/tty/serial/rda-uart.c
2303
2304 ARM/REALTEK ARCHITECTURE
2305 M:      Andreas Färber <[email protected]>
2306 L:      [email protected] (moderated for non-subscribers)
2307 L:      [email protected] (moderated for non-subscribers)
2308 S:      Maintained
2309 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2310 F:      arch/arm/boot/dts/rtd*
2311 F:      arch/arm/mach-realtek/
2312 F:      arch/arm64/boot/dts/realtek/
2313
2314 ARM/RENESAS ARM64 ARCHITECTURE
2315 M:      Geert Uytterhoeven <[email protected]>
2316 M:      Magnus Damm <[email protected]>
2317 L:      [email protected]
2318 S:      Supported
2319 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2321 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2322 F:      arch/arm64/boot/dts/renesas/
2323 F:      drivers/soc/renesas/
2324 F:      include/linux/soc/renesas/
2325
2326 ARM/RISCPC ARCHITECTURE
2327 M:      Russell King <[email protected]>
2328 L:      [email protected] (moderated for non-subscribers)
2329 S:      Maintained
2330 W:      http://www.armlinux.org.uk/
2331 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2332 F:      arch/arm/include/asm/hardware/ioc.h
2333 F:      arch/arm/include/asm/hardware/iomd.h
2334 F:      arch/arm/include/asm/hardware/memc.h
2335 F:      arch/arm/mach-rpc/
2336 F:      drivers/net/ethernet/8390/etherh.c
2337 F:      drivers/net/ethernet/i825xx/ether1*
2338 F:      drivers/net/ethernet/seeq/ether3*
2339 F:      drivers/scsi/arm/
2340
2341 ARM/Rockchip SoC support
2342 M:      Heiko Stuebner <[email protected]>
2343 L:      [email protected] (moderated for non-subscribers)
2344 L:      [email protected]
2345 S:      Maintained
2346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2347 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2348 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2349 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2350 F:      arch/arm/boot/dts/rk3*
2351 F:      arch/arm/boot/dts/rv1108*
2352 F:      arch/arm/mach-rockchip/
2353 F:      drivers/*/*/*rockchip*
2354 F:      drivers/*/*rockchip*
2355 F:      drivers/clk/rockchip/
2356 F:      drivers/i2c/busses/i2c-rk3x.c
2357 F:      sound/soc/rockchip/
2358 N:      rockchip
2359
2360 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2361 M:      Kukjin Kim <[email protected]>
2362 M:      Krzysztof Kozlowski <[email protected]>
2363 L:      [email protected] (moderated for non-subscribers)
2364 L:      [email protected] (moderated for non-subscribers)
2365 S:      Maintained
2366 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2367 F:      Documentation/arm/samsung/
2368 F:      Documentation/devicetree/bindings/arm/samsung/
2369 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2370 F:      arch/arm/boot/dts/exynos*
2371 F:      arch/arm/boot/dts/s3c*
2372 F:      arch/arm/boot/dts/s5p*
2373 F:      arch/arm/mach-exynos*/
2374 F:      arch/arm/mach-s3c24*/
2375 F:      arch/arm/mach-s3c64xx/
2376 F:      arch/arm/mach-s5p*/
2377 F:      arch/arm/plat-samsung/
2378 F:      arch/arm64/boot/dts/exynos/
2379 F:      drivers/*/*/*s3c24*
2380 F:      drivers/*/*s3c24*
2381 F:      drivers/*/*s3c64xx*
2382 F:      drivers/*/*s5pv210*
2383 F:      drivers/memory/samsung/
2384 F:      drivers/soc/samsung/
2385 F:      drivers/tty/serial/samsung*
2386 F:      include/linux/soc/samsung/
2387 N:      exynos
2388
2389 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2390 M:      Kyungmin Park <[email protected]>
2391 L:      [email protected] (moderated for non-subscribers)
2392 S:      Maintained
2393 F:      arch/arm/mach-s5pv210/
2394
2395 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2396 M:      Kyungmin Park <[email protected]>
2397 M:      Kamil Debski <[email protected]>
2398 M:      Andrzej Hajda <[email protected]>
2399 L:      [email protected]
2400 L:      [email protected]
2401 S:      Maintained
2402 F:      drivers/media/platform/s5p-g2d/
2403
2404 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2405 M:      Marek Szyprowski <[email protected]>
2406 L:      [email protected] (moderated for non-subscribers)
2407 L:      [email protected]
2408 S:      Maintained
2409 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2410 F:      drivers/media/platform/s5p-cec/
2411
2412 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2413 M:      Andrzej Pietrasiewicz <[email protected]>
2414 M:      Jacek Anaszewski <[email protected]>
2415 M:      Sylwester Nawrocki <[email protected]>
2416 L:      [email protected]
2417 L:      [email protected]
2418 S:      Maintained
2419 F:      drivers/media/platform/s5p-jpeg/
2420
2421 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2422 M:      Kyungmin Park <[email protected]>
2423 M:      Kamil Debski <[email protected]>
2424 M:      Jeongtae Park <[email protected]>
2425 M:      Andrzej Hajda <[email protected]>
2426 L:      [email protected]
2427 L:      [email protected]
2428 S:      Maintained
2429 F:      drivers/media/platform/s5p-mfc/
2430
2431 ARM/SHMOBILE ARM ARCHITECTURE
2432 M:      Geert Uytterhoeven <[email protected]>
2433 M:      Magnus Damm <[email protected]>
2434 L:      [email protected]
2435 S:      Supported
2436 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2438 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2439 F:      arch/arm/boot/dts/emev2*
2440 F:      arch/arm/boot/dts/gr-peach*
2441 F:      arch/arm/boot/dts/iwg20d-q7*
2442 F:      arch/arm/boot/dts/r7s*
2443 F:      arch/arm/boot/dts/r8a*
2444 F:      arch/arm/boot/dts/r9a*
2445 F:      arch/arm/boot/dts/sh*
2446 F:      arch/arm/configs/shmobile_defconfig
2447 F:      arch/arm/include/debug/renesas-scif.S
2448 F:      arch/arm/mach-shmobile/
2449 F:      drivers/soc/renesas/
2450 F:      include/linux/soc/renesas/
2451
2452 ARM/SOCFPGA ARCHITECTURE
2453 M:      Dinh Nguyen <[email protected]>
2454 S:      Maintained
2455 W:      http://www.rocketboards.org
2456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2457 F:      arch/arm/boot/dts/socfpga*
2458 F:      arch/arm/configs/socfpga_defconfig
2459 F:      arch/arm/mach-socfpga/
2460 F:      arch/arm64/boot/dts/altera/
2461 F:      arch/arm64/boot/dts/intel/
2462
2463 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2464 M:      Dinh Nguyen <[email protected]>
2465 S:      Maintained
2466 F:      drivers/clk/socfpga/
2467
2468 ARM/SOCFPGA EDAC SUPPORT
2469 M:      Thor Thayer <[email protected]>
2470 S:      Maintained
2471 F:      drivers/edac/altera_edac.
2472
2473 ARM/SPREADTRUM SoC SUPPORT
2474 M:      Orson Zhai <[email protected]>
2475 M:      Baolin Wang <[email protected]>
2476 M:      Chunyan Zhang <[email protected]>
2477 S:      Maintained
2478 F:      arch/arm64/boot/dts/sprd
2479 N:      sprd
2480 N:      sc27xx
2481 N:      sc2731
2482
2483 ARM/STI ARCHITECTURE
2484 M:      Patrice Chotard <[email protected]>
2485 L:      [email protected] (moderated for non-subscribers)
2486 S:      Maintained
2487 W:      http://www.stlinux.com
2488 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2489 F:      arch/arm/boot/dts/sti*
2490 F:      arch/arm/mach-sti/
2491 F:      drivers/ata/ahci_st.c
2492 F:      drivers/char/hw_random/st-rng.c
2493 F:      drivers/clocksource/arm_global_timer.c
2494 F:      drivers/clocksource/clksrc_st_lpc.c
2495 F:      drivers/cpufreq/sti-cpufreq.c
2496 F:      drivers/dma/st_fdma*
2497 F:      drivers/i2c/busses/i2c-st.c
2498 F:      drivers/media/platform/sti/c8sectpfe/
2499 F:      drivers/media/rc/st_rc.c
2500 F:      drivers/mmc/host/sdhci-st.c
2501 F:      drivers/phy/st/phy-miphy28lp.c
2502 F:      drivers/phy/st/phy-stih407-usb.c
2503 F:      drivers/pinctrl/pinctrl-st.c
2504 F:      drivers/remoteproc/st_remoteproc.c
2505 F:      drivers/remoteproc/st_slim_rproc.c
2506 F:      drivers/reset/sti/
2507 F:      drivers/rtc/rtc-st-lpc.c
2508 F:      drivers/tty/serial/st-asc.c
2509 F:      drivers/usb/dwc3/dwc3-st.c
2510 F:      drivers/usb/host/ehci-st.c
2511 F:      drivers/usb/host/ohci-st.c
2512 F:      drivers/watchdog/st_lpc_wdt.c
2513 F:      include/linux/remoteproc/st_slim_rproc.h
2514
2515 ARM/STM32 ARCHITECTURE
2516 M:      Maxime Coquelin <[email protected]>
2517 M:      Alexandre Torgue <[email protected]>
2518 L:      [email protected] (moderated for non-subscribers)
2519 L:      [email protected] (moderated for non-subscribers)
2520 S:      Maintained
2521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2522 F:      arch/arm/boot/dts/stm32*
2523 F:      arch/arm/mach-stm32/
2524 F:      drivers/clocksource/armv7m_systick.c
2525 N:      stm32
2526 N:      stm
2527
2528 ARM/Synaptics SoC support
2529 M:      Jisheng Zhang <[email protected]>
2530 M:      Sebastian Hesselbarth <[email protected]>
2531 L:      [email protected] (moderated for non-subscribers)
2532 S:      Maintained
2533 F:      arch/arm/boot/dts/berlin*
2534 F:      arch/arm/mach-berlin/
2535 F:      arch/arm64/boot/dts/synaptics/
2536
2537 ARM/TANGO ARCHITECTURE
2538 M:      Marc Gonzalez <[email protected]>
2539 M:      Mans Rullgard <[email protected]>
2540 L:      [email protected]
2541 S:      Odd Fixes
2542 N:      tango
2543
2544 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2545 M:      Lennert Buytenhek <[email protected]>
2546 L:      [email protected] (moderated for non-subscribers)
2547 S:      Maintained
2548
2549 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2550 M:      Hans Verkuil <[email protected]>
2551 L:      [email protected]
2552 L:      [email protected]
2553 S:      Maintained
2554 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2555 F:      drivers/media/platform/tegra-cec/
2556
2557 ARM/TETON BGA MACHINE SUPPORT
2558 M:      "Mark F. Brown" <[email protected]>
2559 L:      [email protected] (moderated for non-subscribers)
2560 S:      Maintained
2561
2562 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2563 M:      Santosh Shilimkar <[email protected]>
2564 L:      [email protected]
2565 S:      Maintained
2566 F:      drivers/memory/*emif*
2567
2568 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2569 M:      Santosh Shilimkar <[email protected]>
2570 L:      [email protected] (moderated for non-subscribers)
2571 S:      Maintained
2572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2573 F:      arch/arm/boot/dts/keystone-*
2574 F:      arch/arm/mach-keystone/
2575
2576 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2577 M:      Santosh Shilimkar <[email protected]>
2578 L:      [email protected]
2579 S:      Maintained
2580 F:      drivers/clk/keystone/
2581
2582 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2583 M:      Santosh Shilimkar <[email protected]>
2584 L:      [email protected] (moderated for non-subscribers)
2585 L:      [email protected]
2586 S:      Maintained
2587 F:      drivers/clocksource/timer-keystone.c
2588
2589 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2590 M:      Santosh Shilimkar <[email protected]>
2591 L:      [email protected]
2592 S:      Maintained
2593 F:      drivers/power/reset/keystone-reset.c
2594
2595 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2596 M:      Tero Kristo <[email protected]>
2597 M:      Nishanth Menon <[email protected]>
2598 L:      [email protected] (moderated for non-subscribers)
2599 S:      Supported
2600 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2601 F:      arch/arm64/boot/dts/ti/Makefile
2602 F:      arch/arm64/boot/dts/ti/k3-*
2603 F:      include/dt-bindings/pinctrl/k3.h
2604
2605 ARM/THECUS N2100 MACHINE SUPPORT
2606 M:      Lennert Buytenhek <[email protected]>
2607 L:      [email protected] (moderated for non-subscribers)
2608 S:      Maintained
2609
2610 ARM/TOSA MACHINE SUPPORT
2611 M:      Dmitry Eremin-Solenikov <[email protected]>
2612 M:      Dirk Opfer <[email protected]>
2613 S:      Maintained
2614
2615 ARM/UNIPHIER ARCHITECTURE
2616 M:      Masahiro Yamada <[email protected]>
2617 L:      [email protected] (moderated for non-subscribers)
2618 S:      Maintained
2619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2620 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2621 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2622 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2623 F:      arch/arm/boot/dts/uniphier*
2624 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2625 F:      arch/arm/mach-uniphier/
2626 F:      arch/arm/mm/cache-uniphier.c
2627 F:      arch/arm64/boot/dts/socionext/uniphier*
2628 F:      drivers/bus/uniphier-system-bus.c
2629 F:      drivers/clk/uniphier/
2630 F:      drivers/dma/uniphier-mdmac.c
2631 F:      drivers/gpio/gpio-uniphier.c
2632 F:      drivers/i2c/busses/i2c-uniphier*
2633 F:      drivers/irqchip/irq-uniphier-aidet.c
2634 F:      drivers/mmc/host/uniphier-sd.c
2635 F:      drivers/pinctrl/uniphier/
2636 F:      drivers/reset/reset-uniphier.c
2637 F:      drivers/tty/serial/8250/8250_uniphier.c
2638 N:      uniphier
2639
2640 ARM/VERSATILE EXPRESS PLATFORM
2641 M:      Liviu Dudau <[email protected]>
2642 M:      Sudeep Holla <[email protected]>
2643 M:      Lorenzo Pieralisi <[email protected]>
2644 L:      [email protected] (moderated for non-subscribers)
2645 S:      Maintained
2646 F:      */*/*/vexpress*
2647 F:      */*/vexpress*
2648 F:      arch/arm/boot/dts/vexpress*
2649 F:      arch/arm/mach-vexpress/
2650 F:      arch/arm64/boot/dts/arm/
2651 F:      drivers/clk/versatile/clk-vexpress-osc.c
2652 F:      drivers/clocksource/timer-versatile.c
2653 N:      mps2
2654
2655 ARM/VFP SUPPORT
2656 M:      Russell King <[email protected]>
2657 L:      [email protected] (moderated for non-subscribers)
2658 S:      Maintained
2659 W:      http://www.armlinux.org.uk/
2660 F:      arch/arm/vfp/
2661
2662 ARM/VOIPAC PXA270 SUPPORT
2663 M:      Marek Vasut <[email protected]>
2664 L:      [email protected] (moderated for non-subscribers)
2665 S:      Maintained
2666 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2667 F:      arch/arm/mach-pxa/vpac270.c
2668
2669 ARM/VT8500 ARM ARCHITECTURE
2670 M:      Tony Prisk <[email protected]>
2671 L:      [email protected] (moderated for non-subscribers)
2672 S:      Maintained
2673 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2674 F:      arch/arm/mach-vt8500/
2675 F:      drivers/clocksource/timer-vt8500.c
2676 F:      drivers/i2c/busses/i2c-wmt.c
2677 F:      drivers/mmc/host/wmt-sdmmc.c
2678 F:      drivers/pwm/pwm-vt8500.c
2679 F:      drivers/rtc/rtc-vt8500.c
2680 F:      drivers/tty/serial/vt8500_serial.c
2681 F:      drivers/usb/host/ehci-platform.c
2682 F:      drivers/usb/host/uhci-platform.c
2683 F:      drivers/video/fbdev/vt8500lcdfb.*
2684 F:      drivers/video/fbdev/wm8505fb*
2685 F:      drivers/video/fbdev/wmt_ge_rops.*
2686
2687 ARM/ZIPIT Z2 SUPPORT
2688 M:      Marek Vasut <[email protected]>
2689 L:      [email protected] (moderated for non-subscribers)
2690 S:      Maintained
2691 F:      arch/arm/mach-pxa/include/mach/z2.h
2692 F:      arch/arm/mach-pxa/z2.c
2693
2694 ARM/ZTE ARCHITECTURE
2695 M:      Jun Nie <[email protected]>
2696 M:      Shawn Guo <[email protected]>
2697 L:      [email protected] (moderated for non-subscribers)
2698 S:      Maintained
2699 F:      Documentation/devicetree/bindings/arm/zte.yaml
2700 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2701 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2702 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2703 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2704 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2705 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2706 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2707 F:      Documentation/devicetree/bindings/soc/zte/
2708 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2709 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2710 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2711 F:      arch/arm/boot/dts/zx2967*
2712 F:      arch/arm/mach-zx/
2713 F:      arch/arm64/boot/dts/zte/
2714 F:      drivers/clk/zte/
2715 F:      drivers/dma/zx_dma.c
2716 F:      drivers/gpio/gpio-zx.c
2717 F:      drivers/i2c/busses/i2c-zx2967.c
2718 F:      drivers/mmc/host/dw_mmc-zx.*
2719 F:      drivers/pinctrl/zte/
2720 F:      drivers/soc/zte/
2721 F:      drivers/thermal/zx2967_thermal.c
2722 F:      drivers/watchdog/zx2967_wdt.c
2723 F:      include/dt-bindings/clock/zx2967*.h
2724 F:      include/dt-bindings/soc/zte,*.h
2725 F:      sound/soc/codecs/zx_aud96p22.c
2726 F:      sound/soc/zte/
2727
2728 ARM/ZYNQ ARCHITECTURE
2729 M:      Michal Simek <[email protected]>
2730 L:      [email protected] (moderated for non-subscribers)
2731 S:      Supported
2732 W:      http://wiki.xilinx.com
2733 T:      git https://github.com/Xilinx/linux-xlnx.git
2734 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2735 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2736 F:      arch/arm/mach-zynq/
2737 F:      drivers/block/xsysace.c
2738 F:      drivers/clocksource/timer-cadence-ttc.c
2739 F:      drivers/cpuidle/cpuidle-zynq.c
2740 F:      drivers/edac/synopsys_edac.c
2741 F:      drivers/i2c/busses/i2c-cadence.c
2742 F:      drivers/i2c/busses/i2c-xiic.c
2743 F:      drivers/mmc/host/sdhci-of-arasan.c
2744 N:      zynq
2745 N:      xilinx
2746
2747 ARM64 PORT (AARCH64 ARCHITECTURE)
2748 M:      Catalin Marinas <[email protected]>
2749 M:      Will Deacon <[email protected]>
2750 L:      [email protected] (moderated for non-subscribers)
2751 S:      Maintained
2752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2753 F:      Documentation/arm64/
2754 F:      arch/arm64/
2755 F:      tools/testing/selftests/arm64/
2756 X:      arch/arm64/boot/dts/
2757
2758 AS3645A LED FLASH CONTROLLER DRIVER
2759 M:      Sakari Ailus <[email protected]>
2760 L:      [email protected]
2761 S:      Maintained
2762 F:      drivers/leds/leds-as3645a.c
2763
2764 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2765 M:      Tianshu Qiu <[email protected]>
2766 L:      [email protected]
2767 S:      Maintained
2768 T:      git git://linuxtv.org/media_tree.git
2769 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2770 F:      drivers/media/i2c/ak7375.c
2771
2772 ASAHI KASEI AK8974 DRIVER
2773 M:      Linus Walleij <[email protected]>
2774 L:      [email protected]
2775 S:      Supported
2776 W:      http://www.akm.com/
2777 F:      drivers/iio/magnetometer/ak8974.c
2778
2779 ASC7621 HARDWARE MONITOR DRIVER
2780 M:      George Joseph <[email protected]>
2781 L:      [email protected]
2782 S:      Maintained
2783 F:      Documentation/hwmon/asc7621.rst
2784 F:      drivers/hwmon/asc7621.c
2785
2786 ASPEED PINCTRL DRIVERS
2787 M:      Andrew Jeffery <[email protected]>
2788 L:      [email protected] (moderated for non-subscribers)
2789 L:      [email protected] (moderated for non-subscribers)
2790 L:      [email protected]
2791 S:      Maintained
2792 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2793 F:      drivers/pinctrl/aspeed/
2794
2795 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2796 M:      Eddie James <[email protected]>
2797 L:      [email protected] (moderated for non-subscribers)
2798 S:      Maintained
2799 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2800 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2801 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2802
2803 ASPEED VIDEO ENGINE DRIVER
2804 M:      Eddie James <[email protected]>
2805 L:      [email protected]
2806 L:      [email protected] (moderated for non-subscribers)
2807 S:      Maintained
2808 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2809 F:      drivers/media/platform/aspeed-video.c
2810
2811 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2812 M:      Corentin Chary <[email protected]>
2813 L:      [email protected]
2814 L:      [email protected]
2815 S:      Maintained
2816 W:      http://acpi4asus.sf.net
2817 F:      drivers/platform/x86/asus*.c
2818 F:      drivers/platform/x86/eeepc*.c
2819
2820 ASUS WIRELESS RADIO CONTROL DRIVER
2821 M:      João Paulo Rechi Vita <[email protected]>
2822 L:      [email protected]
2823 S:      Maintained
2824 F:      drivers/platform/x86/asus-wireless.c
2825
2826 ASYMMETRIC KEYS
2827 M:      David Howells <[email protected]>
2828 L:      [email protected]
2829 S:      Maintained
2830 F:      Documentation/crypto/asymmetric-keys.txt
2831 F:      crypto/asymmetric_keys/
2832 F:      include/crypto/pkcs7.h
2833 F:      include/crypto/public_key.h
2834 F:      include/linux/verification.h
2835
2836 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2837 R:      Dan Williams <[email protected]>
2838 S:      Odd fixes
2839 W:      http://sourceforge.net/projects/xscaleiop
2840 F:      Documentation/crypto/async-tx-api.txt
2841 F:      crypto/async_tx/
2842 F:      drivers/dma/
2843 F:      include/linux/async_tx.h
2844 F:      include/linux/dmaengine.h
2845
2846 AT24 EEPROM DRIVER
2847 M:      Bartosz Golaszewski <[email protected]>
2848 L:      [email protected]
2849 S:      Maintained
2850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2851 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2852 F:      drivers/misc/eeprom/at24.c
2853
2854 ATA OVER ETHERNET (AOE) DRIVER
2855 M:      "Justin Sanders" <[email protected]>
2856 S:      Supported
2857 W:      http://www.openaoe.org/
2858 F:      Documentation/admin-guide/aoe/
2859 F:      drivers/block/aoe/
2860
2861 ATHEROS 71XX/9XXX GPIO DRIVER
2862 M:      Alban Bedel <[email protected]>
2863 S:      Maintained
2864 W:      https://github.com/AlbanBedel/linux
2865 T:      git git://github.com/AlbanBedel/linux
2866 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2867 F:      drivers/gpio/gpio-ath79.c
2868
2869 ATHEROS 71XX/9XXX USB PHY DRIVER
2870 M:      Alban Bedel <[email protected]>
2871 S:      Maintained
2872 W:      https://github.com/AlbanBedel/linux
2873 T:      git git://github.com/AlbanBedel/linux
2874 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2875 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2876
2877 ATHEROS ATH GENERIC UTILITIES
2878 M:      Kalle Valo <[email protected]>
2879 L:      [email protected]
2880 S:      Supported
2881 F:      drivers/net/wireless/ath/*
2882
2883 ATHEROS ATH5K WIRELESS DRIVER
2884 M:      Jiri Slaby <[email protected]>
2885 M:      Nick Kossifidis <[email protected]>
2886 M:      Luis Chamberlain <[email protected]>
2887 L:      [email protected]
2888 S:      Maintained
2889 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2890 F:      drivers/net/wireless/ath/ath5k/
2891
2892 ATHEROS ATH6KL WIRELESS DRIVER
2893 M:      Kalle Valo <[email protected]>
2894 L:      [email protected]
2895 S:      Supported
2896 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2898 F:      drivers/net/wireless/ath/ath6kl/
2899
2900 ATI_REMOTE2 DRIVER
2901 M:      Ville Syrjala <[email protected]>
2902 S:      Maintained
2903 F:      drivers/input/misc/ati_remote2.c
2904
2905 ATK0110 HWMON DRIVER
2906 M:      Luca Tettamanti <[email protected]>
2907 L:      [email protected]
2908 S:      Maintained
2909 F:      drivers/hwmon/asus_atk0110.c
2910
2911 ATLX ETHERNET DRIVERS
2912 M:      Jay Cliburn <[email protected]>
2913 M:      Chris Snook <[email protected]>
2914 L:      [email protected]
2915 S:      Maintained
2916 W:      http://sourceforge.net/projects/atl1
2917 W:      http://atl1.sourceforge.net
2918 F:      drivers/net/ethernet/atheros/
2919
2920 ATM
2921 M:      Chas Williams <[email protected]>
2922 L:      [email protected] (moderated for non-subscribers)
2923 L:      [email protected]
2924 S:      Maintained
2925 W:      http://linux-atm.sourceforge.net
2926 F:      drivers/atm/
2927 F:      include/linux/atm*
2928 F:      include/uapi/linux/atm*
2929
2930 ATMEL MACB ETHERNET DRIVER
2931 M:      Nicolas Ferre <[email protected]>
2932 S:      Supported
2933 F:      drivers/net/ethernet/cadence/
2934
2935 ATMEL MAXTOUCH DRIVER
2936 M:      Nick Dyer <[email protected]>
2937 S:      Maintained
2938 T:      git git://github.com/ndyer/linux.git
2939 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2940 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2941
2942 ATMEL WIRELESS DRIVER
2943 M:      Simon Kelley <[email protected]>
2944 L:      [email protected]
2945 S:      Maintained
2946 W:      http://www.thekelleys.org.uk/atmel
2947 W:      http://atmelwlandriver.sourceforge.net/
2948 F:      drivers/net/wireless/atmel/atmel*
2949
2950 ATOMIC INFRASTRUCTURE
2951 M:      Will Deacon <[email protected]>
2952 M:      Peter Zijlstra <[email protected]>
2953 R:      Boqun Feng <[email protected]>
2954 L:      [email protected]
2955 S:      Maintained
2956 F:      arch/*/include/asm/atomic*.h
2957 F:      include/*/atomic*.h
2958 F:      scripts/atomic/
2959
2960 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2961 M:      Bradley Grove <[email protected]>
2962 L:      [email protected]
2963 S:      Supported
2964 W:      http://www.attotech.com
2965 F:      drivers/scsi/esas2r
2966
2967 ATUSB IEEE 802.15.4 RADIO DRIVER
2968 M:      Stefan Schmidt <[email protected]>
2969 L:      [email protected]
2970 S:      Maintained
2971 F:      drivers/net/ieee802154/at86rf230.h
2972 F:      drivers/net/ieee802154/atusb.c
2973 F:      drivers/net/ieee802154/atusb.h
2974
2975 AUDIT SUBSYSTEM
2976 M:      Paul Moore <[email protected]>
2977 M:      Eric Paris <[email protected]>
2978 L:      [email protected] (moderated for non-subscribers)
2979 S:      Supported
2980 W:      https://github.com/linux-audit
2981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2982 F:      include/linux/audit.h
2983 F:      include/uapi/linux/audit.h
2984 F:      kernel/audit*
2985
2986 AUXILIARY DISPLAY DRIVERS
2987 M:      Miguel Ojeda Sandonis <[email protected]>
2988 S:      Maintained
2989 F:      drivers/auxdisplay/
2990 F:      include/linux/cfag12864b.h
2991
2992 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2993 M:      Andreas Klinger <[email protected]>
2994 L:      [email protected]
2995 S:      Maintained
2996 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2997 F:      drivers/iio/adc/hx711.c
2998
2999 AX.25 NETWORK LAYER
3000 M:      Ralf Baechle <[email protected]>
3001 L:      [email protected]
3002 S:      Maintained
3003 W:      http://www.linux-ax25.org/
3004 F:      include/net/ax25.h
3005 F:      include/uapi/linux/ax25.h
3006 F:      net/ax25/
3007
3008 AXENTIA ARM DEVICES
3009 M:      Peter Rosin <[email protected]>
3010 L:      [email protected] (moderated for non-subscribers)
3011 S:      Maintained
3012 F:      arch/arm/boot/dts/at91-linea.dtsi
3013 F:      arch/arm/boot/dts/at91-natte.dtsi
3014 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3015 F:      arch/arm/boot/dts/at91-tse850-3.dts
3016
3017 AXENTIA ASOC DRIVERS
3018 M:      Peter Rosin <[email protected]>
3019 L:      [email protected] (moderated for non-subscribers)
3020 S:      Maintained
3021 F:      Documentation/devicetree/bindings/sound/axentia,*
3022 F:      sound/soc/atmel/tse850-pcm5142.c
3023
3024 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3025 M:      Nuno Sá <[email protected]>
3026 L:      [email protected]
3027 S:      Supported
3028 W:      http://ez.analog.com/community/linux-device-drivers
3029 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3030 F:      drivers/hwmon/axi-fan-control.c
3031
3032 AXXIA I2C CONTROLLER
3033 M:      Krzysztof Adamski <[email protected]>
3034 L:      [email protected]
3035 S:      Maintained
3036 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3037 F:      drivers/i2c/busses/i2c-axxia.c
3038
3039 AZ6007 DVB DRIVER
3040 M:      Mauro Carvalho Chehab <[email protected]>
3041 L:      [email protected]
3042 S:      Maintained
3043 W:      https://linuxtv.org
3044 T:      git git://linuxtv.org/media_tree.git
3045 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3046
3047 AZTECH FM RADIO RECEIVER DRIVER
3048 M:      Hans Verkuil <[email protected]>
3049 L:      [email protected]
3050 S:      Maintained
3051 W:      https://linuxtv.org
3052 T:      git git://linuxtv.org/media_tree.git
3053 F:      drivers/media/radio/radio-aztech*
3054
3055 B43 WIRELESS DRIVER
3056 L:      [email protected]
3057 L:      [email protected]
3058 S:      Odd Fixes
3059 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3060 F:      drivers/net/wireless/broadcom/b43/
3061
3062 B43LEGACY WIRELESS DRIVER
3063 M:      Larry Finger <[email protected]>
3064 L:      [email protected]
3065 L:      [email protected]
3066 S:      Maintained
3067 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3068 F:      drivers/net/wireless/broadcom/b43legacy/
3069
3070 BACKLIGHT CLASS/SUBSYSTEM
3071 M:      Lee Jones <[email protected]>
3072 M:      Daniel Thompson <[email protected]>
3073 M:      Jingoo Han <[email protected]>
3074 L:      [email protected]
3075 S:      Maintained
3076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3077 F:      Documentation/ABI/stable/sysfs-class-backlight
3078 F:      Documentation/ABI/testing/sysfs-class-backlight
3079 F:      Documentation/devicetree/bindings/leds/backlight
3080 F:      drivers/video/backlight/
3081 F:      include/linux/backlight.h
3082 F:      include/linux/pwm_backlight.h
3083
3084 BATMAN ADVANCED
3085 M:      Marek Lindner <[email protected]>
3086 M:      Simon Wunderlich <[email protected]>
3087 M:      Antonio Quartulli <[email protected]>
3088 M:      Sven Eckelmann <[email protected]>
3089 L:      [email protected] (moderated for non-subscribers)
3090 S:      Maintained
3091 W:      https://www.open-mesh.org/
3092 Q:      https://patchwork.open-mesh.org/project/batman/list/
3093 B:      https://www.open-mesh.org/projects/batman-adv/issues
3094 C:      irc://chat.freenode.net/batman
3095 T:      git https://git.open-mesh.org/linux-merge.git
3096 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3097 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3098 F:      Documentation/networking/batman-adv.rst
3099 F:      include/uapi/linux/batadv_packet.h
3100 F:      include/uapi/linux/batman_adv.h
3101 F:      net/batman-adv/
3102
3103 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3104 M:      Thomas Sailer <[email protected]>
3105 L:      [email protected]
3106 S:      Maintained
3107 W:      http://www.baycom.org/~tom/ham/ham.html
3108 F:      drivers/net/hamradio/baycom*
3109
3110 BCACHE (BLOCK LAYER CACHE)
3111 M:      Coly Li <[email protected]>
3112 M:      Kent Overstreet <[email protected]>
3113 L:      [email protected]
3114 S:      Maintained
3115 W:      http://bcache.evilpiepirate.org
3116 C:      irc://irc.oftc.net/bcache
3117 F:      drivers/md/bcache/
3118
3119 BDISP ST MEDIA DRIVER
3120 M:      Fabien Dessenne <[email protected]>
3121 L:      [email protected]
3122 S:      Supported
3123 W:      https://linuxtv.org
3124 T:      git git://linuxtv.org/media_tree.git
3125 F:      drivers/media/platform/sti/bdisp
3126
3127 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3128 M:      Dariusz Marcinkiewicz <[email protected]>
3129 L:      [email protected]
3130 S:      Maintained
3131 F:      drivers/net/ethernet/ec_bhf.c
3132
3133 BEFS FILE SYSTEM
3134 M:      Luis de Bethencourt <[email protected]>
3135 M:      Salah Triki <[email protected]>
3136 S:      Maintained
3137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3138 F:      Documentation/filesystems/befs.rst
3139 F:      fs/befs/
3140
3141 BFQ I/O SCHEDULER
3142 M:      Paolo Valente <[email protected]>
3143 M:      Jens Axboe <[email protected]>
3144 L:      [email protected]
3145 S:      Maintained
3146 F:      Documentation/block/bfq-iosched.rst
3147 F:      block/bfq-*
3148
3149 BFS FILE SYSTEM
3150 M:      "Tigran A. Aivazian" <[email protected]>
3151 S:      Maintained
3152 F:      Documentation/filesystems/bfs.rst
3153 F:      fs/bfs/
3154 F:      include/uapi/linux/bfs_fs.h
3155
3156 BLINKM RGB LED DRIVER
3157 M:      Jan-Simon Moeller <[email protected]>
3158 S:      Maintained
3159 F:      drivers/leds/leds-blinkm.c
3160
3161 BLOCK LAYER
3162 M:      Jens Axboe <[email protected]>
3163 L:      [email protected]
3164 S:      Maintained
3165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3166 F:      block/
3167 F:      drivers/block/
3168 F:      kernel/trace/blktrace.c
3169 F:      lib/sbitmap.c
3170
3171 BLOCK2MTD DRIVER
3172 M:      Joern Engel <[email protected]>
3173 L:      [email protected]
3174 S:      Maintained
3175 F:      drivers/mtd/devices/block2mtd.c
3176
3177 BLUETOOTH DRIVERS
3178 M:      Marcel Holtmann <[email protected]>
3179 M:      Johan Hedberg <[email protected]>
3180 L:      [email protected]
3181 S:      Maintained
3182 W:      http://www.bluez.org/
3183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3185 F:      drivers/bluetooth/
3186
3187 BLUETOOTH SUBSYSTEM
3188 M:      Marcel Holtmann <[email protected]>
3189 M:      Johan Hedberg <[email protected]>
3190 L:      [email protected]
3191 S:      Maintained
3192 W:      http://www.bluez.org/
3193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3195 F:      include/net/bluetooth/
3196 F:      net/bluetooth/
3197
3198 BONDING DRIVER
3199 M:      Jay Vosburgh <[email protected]>
3200 M:      Veaceslav Falico <[email protected]>
3201 M:      Andy Gospodarek <[email protected]>
3202 L:      [email protected]
3203 S:      Supported
3204 W:      http://sourceforge.net/projects/bonding/
3205 F:      drivers/net/bonding/
3206 F:      include/uapi/linux/if_bonding.h
3207
3208 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3209 M:      Dan Robertson <[email protected]>
3210 L:      [email protected]
3211 S:      Maintained
3212 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3213 F:      drivers/iio/accel/bma400*
3214
3215 BPF (Safe dynamic programs and tools)
3216 M:      Alexei Starovoitov <[email protected]>
3217 M:      Daniel Borkmann <[email protected]>
3218 R:      Martin KaFai Lau <[email protected]>
3219 R:      Song Liu <[email protected]>
3220 R:      Yonghong Song <[email protected]>
3221 R:      Andrii Nakryiko <[email protected]>
3222 R:      John Fastabend <[email protected]>
3223 R:      KP Singh <[email protected]>
3224 L:      [email protected]
3225 L:      [email protected]
3226 S:      Supported
3227 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3230 F:      Documentation/bpf/
3231 F:      Documentation/networking/filter.rst
3232 F:      arch/*/net/*
3233 F:      include/linux/bpf*
3234 F:      include/linux/filter.h
3235 F:      include/trace/events/xdp.h
3236 F:      include/uapi/linux/bpf*
3237 F:      include/uapi/linux/filter.h
3238 F:      kernel/bpf/
3239 F:      kernel/trace/bpf_trace.c
3240 F:      lib/test_bpf.c
3241 F:      net/bpf/
3242 F:      net/core/filter.c
3243 F:      net/sched/act_bpf.c
3244 F:      net/sched/cls_bpf.c
3245 F:      samples/bpf/
3246 F:      tools/bpf/
3247 F:      tools/lib/bpf/
3248 F:      tools/testing/selftests/bpf/
3249 N:      bpf
3250 K:      bpf
3251
3252 BPF JIT for ARM
3253 M:      Shubham Bansal <[email protected]>
3254 L:      [email protected]
3255 L:      [email protected]
3256 S:      Maintained
3257 F:      arch/arm/net/
3258
3259 BPF JIT for ARM64
3260 M:      Daniel Borkmann <[email protected]>
3261 M:      Alexei Starovoitov <[email protected]>
3262 M:      Zi Shen Lim <[email protected]>
3263 L:      [email protected]
3264 L:      [email protected]
3265 S:      Supported
3266 F:      arch/arm64/net/
3267
3268 BPF JIT for MIPS (32-BIT AND 64-BIT)
3269 M:      Paul Burton <[email protected]>
3270 L:      [email protected]
3271 L:      [email protected]
3272 S:      Maintained
3273 F:      arch/mips/net/
3274
3275 BPF JIT for NFP NICs
3276 M:      Jakub Kicinski <[email protected]>
3277 L:      [email protected]
3278 L:      [email protected]
3279 S:      Supported
3280 F:      drivers/net/ethernet/netronome/nfp/bpf/
3281
3282 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3283 M:      Naveen N. Rao <[email protected]>
3284 M:      Sandipan Das <[email protected]>
3285 L:      [email protected]
3286 L:      [email protected]
3287 S:      Maintained
3288 F:      arch/powerpc/net/
3289
3290 BPF JIT for RISC-V (32-bit)
3291 M:      Luke Nelson <[email protected]>
3292 M:      Xi Wang <[email protected]>
3293 L:      [email protected]
3294 L:      [email protected]
3295 S:      Maintained
3296 F:      arch/riscv/net/
3297 X:      arch/riscv/net/bpf_jit_comp64.c
3298
3299 BPF JIT for RISC-V (64-bit)
3300 M:      Björn Töpel <[email protected]>
3301 L:      [email protected]
3302 L:      [email protected]
3303 S:      Maintained
3304 F:      arch/riscv/net/
3305 X:      arch/riscv/net/bpf_jit_comp32.c
3306
3307 BPF JIT for S390
3308 M:      Ilya Leoshkevich <[email protected]>
3309 M:      Heiko Carstens <[email protected]>
3310 M:      Vasily Gorbik <[email protected]>
3311 L:      [email protected]
3312 L:      [email protected]
3313 S:      Maintained
3314 F:      arch/s390/net/
3315 X:      arch/s390/net/pnet.c
3316
3317 BPF JIT for SPARC (32-BIT AND 64-BIT)
3318 M:      David S. Miller <[email protected]>
3319 L:      [email protected]
3320 L:      [email protected]
3321 S:      Maintained
3322 F:      arch/sparc/net/
3323
3324 BPF JIT for X86 32-BIT
3325 M:      Wang YanQing <[email protected]>
3326 L:      [email protected]
3327 L:      [email protected]
3328 S:      Maintained
3329 F:      arch/x86/net/bpf_jit_comp32.c
3330
3331 BPF JIT for X86 64-BIT
3332 M:      Alexei Starovoitov <[email protected]>
3333 M:      Daniel Borkmann <[email protected]>
3334 L:      [email protected]
3335 L:      [email protected]
3336 S:      Supported
3337 F:      arch/x86/net/
3338 X:      arch/x86/net/bpf_jit_comp32.c
3339
3340 BROADCOM B44 10/100 ETHERNET DRIVER
3341 M:      Michael Chan <[email protected]>
3342 L:      [email protected]
3343 S:      Supported
3344 F:      drivers/net/ethernet/broadcom/b44.*
3345
3346 BROADCOM B53 ETHERNET SWITCH DRIVER
3347 M:      Florian Fainelli <[email protected]>
3348 L:      [email protected]
3349 L:      [email protected] (subscribers-only)
3350 S:      Supported
3351 F:      drivers/net/dsa/b53/*
3352 F:      include/linux/platform_data/b53.h
3353
3354 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3355 M:      Nicolas Saenz Julienne <[email protected]>
3356 L:      [email protected]
3357 L:      [email protected] (moderated for non-subscribers)
3358 L:      [email protected] (moderated for non-subscribers)
3359 S:      Maintained
3360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3361 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3362 F:      drivers/pci/controller/pcie-brcmstb.c
3363 F:      drivers/staging/vc04_services
3364 N:      bcm2711
3365 N:      bcm2835
3366
3367 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3368 M:      Florian Fainelli <[email protected]>
3369 M:      Ray Jui <[email protected]>
3370 M:      Scott Branden <[email protected]>
3371 M:      [email protected]
3372 S:      Maintained
3373 T:      git git://github.com/broadcom/mach-bcm
3374 F:      arch/arm/mach-bcm/
3375 N:      bcm281*
3376 N:      bcm113*
3377 N:      bcm216*
3378 N:      kona
3379
3380 BROADCOM BCM47XX MIPS ARCHITECTURE
3381 M:      Hauke Mehrtens <[email protected]>
3382 M:      Rafał Miłecki <[email protected]>
3383 L:      [email protected]
3384 S:      Maintained
3385 F:      Documentation/devicetree/bindings/mips/brcm/
3386 F:      arch/mips/bcm47xx/*
3387 F:      arch/mips/include/asm/mach-bcm47xx/*
3388
3389 BROADCOM BCM5301X ARM ARCHITECTURE
3390 M:      Hauke Mehrtens <[email protected]>
3391 M:      Rafał Miłecki <[email protected]>
3392 M:      [email protected]
3393 L:      [email protected]
3394 S:      Maintained
3395 F:      arch/arm/boot/dts/bcm470*
3396 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3397 F:      arch/arm/boot/dts/bcm953012*
3398 F:      arch/arm/mach-bcm/bcm_5301x.c
3399
3400 BROADCOM BCM53573 ARM ARCHITECTURE
3401 M:      Rafał Miłecki <[email protected]>
3402 L:      [email protected]
3403 L:      [email protected]
3404 S:      Maintained
3405 F:      arch/arm/boot/dts/bcm47189*
3406 F:      arch/arm/boot/dts/bcm53573*
3407
3408 BROADCOM BCM63XX ARM ARCHITECTURE
3409 M:      Florian Fainelli <[email protected]>
3410 M:      [email protected]
3411 L:      [email protected] (moderated for non-subscribers)
3412 S:      Maintained
3413 T:      git git://github.com/broadcom/stblinux.git
3414 N:      bcm63xx
3415
3416 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3417 M:      Kevin Cernekee <[email protected]>
3418 L:      [email protected]
3419 S:      Maintained
3420 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3421
3422 BROADCOM BCM7XXX ARM ARCHITECTURE
3423 M:      Florian Fainelli <[email protected]>
3424 M:      [email protected]
3425 L:      [email protected] (moderated for non-subscribers)
3426 S:      Maintained
3427 T:      git git://github.com/broadcom/stblinux.git
3428 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3429 F:      arch/arm/boot/dts/bcm7*.dts*
3430 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3431 F:      arch/arm/mach-bcm/*brcmstb*
3432 F:      arch/arm/mm/cache-b15-rac.c
3433 F:      drivers/bus/brcmstb_gisb.c
3434 F:      drivers/pci/controller/pcie-brcmstb.c
3435 N:      brcmstb
3436
3437 BROADCOM BMIPS CPUFREQ DRIVER
3438 M:      Markus Mayer <[email protected]>
3439 M:      [email protected]
3440 L:      [email protected]
3441 S:      Maintained
3442 F:      drivers/cpufreq/bmips-cpufreq.c
3443
3444 BROADCOM BMIPS MIPS ARCHITECTURE
3445 M:      Florian Fainelli <[email protected]>
3446 L:      [email protected]
3447 L:      [email protected]
3448 S:      Maintained
3449 T:      git git://github.com/broadcom/stblinux.git
3450 F:      arch/mips/bmips/*
3451 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3452 F:      arch/mips/include/asm/mach-bmips/*
3453 F:      arch/mips/kernel/*bmips*
3454 F:      drivers/irqchip/irq-bcm63*
3455 F:      drivers/irqchip/irq-bcm7*
3456 F:      drivers/irqchip/irq-brcmstb*
3457 F:      include/linux/bcm963xx_nvram.h
3458 F:      include/linux/bcm963xx_tag.h
3459
3460 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3461 M:      Rasesh Mody <[email protected]>
3462 M:      [email protected]
3463 L:      [email protected]
3464 S:      Supported
3465 F:      drivers/net/ethernet/broadcom/bnx2.*
3466 F:      drivers/net/ethernet/broadcom/bnx2_*
3467
3468 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3469 M:      [email protected]
3470 L:      [email protected]
3471 S:      Supported
3472 F:      drivers/scsi/bnx2fc/
3473
3474 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3475 M:      [email protected]
3476 L:      [email protected]
3477 S:      Supported
3478 F:      drivers/scsi/bnx2i/
3479
3480 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3481 M:      Ariel Elior <[email protected]>
3482 M:      Sudarsana Kalluru <[email protected]>
3483 M:      [email protected]
3484 L:      [email protected]
3485 S:      Supported
3486 F:      drivers/net/ethernet/broadcom/bnx2x/
3487
3488 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3489 M:      Michael Chan <[email protected]>
3490 L:      [email protected]
3491 S:      Supported
3492 F:      drivers/net/ethernet/broadcom/bnxt/
3493
3494 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3495 M:      Arend van Spriel <[email protected]>
3496 M:      Franky Lin <[email protected]>
3497 M:      Hante Meuleman <[email protected]>
3498 M:      Chi-Hsien Lin <[email protected]>
3499 M:      Wright Feng <[email protected]>
3500 L:      [email protected]
3501 L:      [email protected]
3502 L:      [email protected]
3503 S:      Supported
3504 F:      drivers/net/wireless/broadcom/brcm80211/
3505
3506 BROADCOM BRCMSTB GPIO DRIVER
3507 M:      Gregory Fong <[email protected]>
3508 L:      [email protected]
3509 S:      Supported
3510 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3511 F:      drivers/gpio/gpio-brcmstb.c
3512
3513 BROADCOM BRCMSTB I2C DRIVER
3514 M:      Kamal Dasu <[email protected]>
3515 L:      [email protected]
3516 L:      [email protected]
3517 S:      Supported
3518 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3519 F:      drivers/i2c/busses/i2c-brcmstb.c
3520
3521 BROADCOM BRCMSTB USB EHCI DRIVER
3522 M:      Al Cooper <[email protected]>
3523 L:      [email protected]
3524 L:      [email protected]
3525 S:      Maintained
3526 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3527 F:      drivers/usb/host/ehci-brcm.*
3528
3529 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3530 M:      Al Cooper <[email protected]>
3531 L:      [email protected]
3532 L:      [email protected]
3533 S:      Maintained
3534 F:      drivers/phy/broadcom/phy-brcm-usb*
3535
3536 BROADCOM GENET ETHERNET DRIVER
3537 M:      Doug Berger <[email protected]>
3538 M:      Florian Fainelli <[email protected]>
3539 L:      [email protected]
3540 L:      [email protected]
3541 S:      Supported
3542 F:      drivers/net/ethernet/broadcom/genet/
3543
3544 BROADCOM IPROC ARM ARCHITECTURE
3545 M:      Ray Jui <[email protected]>
3546 M:      Scott Branden <[email protected]>
3547 M:      [email protected]
3548 L:      [email protected] (moderated for non-subscribers)
3549 S:      Maintained
3550 T:      git git://github.com/broadcom/cygnus-linux.git
3551 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3552 F:      arch/arm64/boot/dts/broadcom/stingray/*
3553 F:      drivers/clk/bcm/clk-ns*
3554 F:      drivers/clk/bcm/clk-sr*
3555 F:      drivers/pinctrl/bcm/pinctrl-ns*
3556 F:      include/dt-bindings/clock/bcm-sr*
3557 N:      iproc
3558 N:      cygnus
3559 N:      bcm[-_]nsp
3560 N:      bcm9113*
3561 N:      bcm9583*
3562 N:      bcm9585*
3563 N:      bcm9586*
3564 N:      bcm988312
3565 N:      bcm113*
3566 N:      bcm583*
3567 N:      bcm585*
3568 N:      bcm586*
3569 N:      bcm88312
3570 N:      hr2
3571 N:      stingray
3572
3573 BROADCOM KONA GPIO DRIVER
3574 M:      Ray Jui <[email protected]>
3575 L:      [email protected]
3576 S:      Supported
3577 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3578 F:      drivers/gpio/gpio-bcm-kona.c
3579
3580 BROADCOM NETXTREME-E ROCE DRIVER
3581 M:      Selvin Xavier <[email protected]>
3582 M:      Devesh Sharma <[email protected]>
3583 M:      Somnath Kotur <[email protected]>
3584 M:      Sriharsha Basavapatna <[email protected]>
3585 L:      [email protected]
3586 S:      Supported
3587 W:      http://www.broadcom.com
3588 F:      drivers/infiniband/hw/bnxt_re/
3589 F:      include/uapi/rdma/bnxt_re-abi.h
3590
3591 BROADCOM NVRAM DRIVER
3592 M:      Rafał Miłecki <[email protected]>
3593 L:      [email protected]
3594 S:      Maintained
3595 F:      drivers/firmware/broadcom/*
3596
3597 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3598 M:      Rafał Miłecki <[email protected]>
3599 L:      [email protected]
3600 S:      Maintained
3601 F:      drivers/bcma/
3602 F:      include/linux/bcma/
3603
3604 BROADCOM SPI DRIVER
3605 M:      Kamal Dasu <[email protected]>
3606 M:      [email protected]
3607 S:      Maintained
3608 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3609 F:      drivers/spi/spi-bcm-qspi.*
3610 F:      drivers/spi/spi-brcmstb-qspi.c
3611 F:      drivers/spi/spi-iproc-qspi.c
3612
3613 BROADCOM STB AVS CPUFREQ DRIVER
3614 M:      Markus Mayer <[email protected]>
3615 M:      [email protected]
3616 L:      [email protected]
3617 S:      Maintained
3618 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3619 F:      drivers/cpufreq/brcmstb*
3620
3621 BROADCOM STB AVS TMON DRIVER
3622 M:      Markus Mayer <[email protected]>
3623 M:      [email protected]
3624 L:      [email protected]
3625 S:      Maintained
3626 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3627 F:      drivers/thermal/broadcom/brcmstb*
3628
3629 BROADCOM STB DPFE DRIVER
3630 M:      Markus Mayer <[email protected]>
3631 M:      [email protected]
3632 L:      [email protected] (moderated for non-subscribers)
3633 S:      Maintained
3634 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3635 F:      drivers/memory/brcmstb_dpfe.c
3636
3637 BROADCOM STB NAND FLASH DRIVER
3638 M:      Brian Norris <[email protected]>
3639 M:      Kamal Dasu <[email protected]>
3640 L:      [email protected]
3641 L:      [email protected]
3642 S:      Maintained
3643 F:      drivers/mtd/nand/raw/brcmnand/
3644
3645 BROADCOM SYSTEMPORT ETHERNET DRIVER
3646 M:      Florian Fainelli <[email protected]>
3647 L:      [email protected]
3648 L:      [email protected]
3649 S:      Supported
3650 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3651
3652 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3653 M:      Siva Reddy Kallam <[email protected]>
3654 M:      Prashant Sreedharan <[email protected]>
3655 M:      Michael Chan <[email protected]>
3656 L:      [email protected]
3657 S:      Supported
3658 F:      drivers/net/ethernet/broadcom/tg3.*
3659
3660 BROCADE BFA FC SCSI DRIVER
3661 M:      Anil Gurumurthy <[email protected]>
3662 M:      Sudarsana Kalluru <[email protected]>
3663 L:      [email protected]
3664 S:      Supported
3665 F:      drivers/scsi/bfa/
3666
3667 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3668 M:      Rasesh Mody <[email protected]>
3669 M:      Sudarsana Kalluru <[email protected]>
3670 M:      [email protected]
3671 L:      [email protected]
3672 S:      Supported
3673 F:      drivers/net/ethernet/brocade/bna/
3674
3675 BSG (block layer generic sg v4 driver)
3676 M:      FUJITA Tomonori <[email protected]>
3677 L:      [email protected]
3678 S:      Supported
3679 F:      block/bsg.c
3680 F:      include/linux/bsg.h
3681 F:      include/uapi/linux/bsg.h
3682
3683 BT87X AUDIO DRIVER
3684 M:      Clemens Ladisch <[email protected]>
3685 L:      [email protected] (moderated for non-subscribers)
3686 S:      Maintained
3687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3688 F:      Documentation/sound/cards/bt87x.rst
3689 F:      sound/pci/bt87x.c
3690
3691 BT8XXGPIO DRIVER
3692 M:      Michael Buesch <[email protected]>
3693 S:      Maintained
3694 W:      http://bu3sch.de/btgpio.php
3695 F:      drivers/gpio/gpio-bt8xx.c
3696
3697 BTRFS FILE SYSTEM
3698 M:      Chris Mason <[email protected]>
3699 M:      Josef Bacik <[email protected]>
3700 M:      David Sterba <[email protected]>
3701 L:      [email protected]
3702 S:      Maintained
3703 W:      http://btrfs.wiki.kernel.org/
3704 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3706 F:      Documentation/filesystems/btrfs.rst
3707 F:      fs/btrfs/
3708 F:      include/linux/btrfs*
3709 F:      include/uapi/linux/btrfs*
3710
3711 BTTV VIDEO4LINUX DRIVER
3712 M:      Mauro Carvalho Chehab <[email protected]>
3713 L:      [email protected]
3714 S:      Odd fixes
3715 W:      https://linuxtv.org
3716 T:      git git://linuxtv.org/media_tree.git
3717 F:      Documentation/driver-api/media/drivers/bttv*
3718 F:      drivers/media/pci/bt8xx/bttv*
3719
3720 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3721 M:      Chanwoo Choi <[email protected]>
3722 L:      [email protected]
3723 L:      [email protected]
3724 S:      Maintained
3725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3726 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3727 F:      drivers/devfreq/exynos-bus.c
3728
3729 BUSLOGIC SCSI DRIVER
3730 M:      Khalid Aziz <[email protected]>
3731 L:      [email protected]
3732 S:      Maintained
3733 F:      drivers/scsi/BusLogic.*
3734 F:      drivers/scsi/FlashPoint.*
3735
3736 C-MEDIA CMI8788 DRIVER
3737 M:      Clemens Ladisch <[email protected]>
3738 L:      [email protected] (moderated for non-subscribers)
3739 S:      Maintained
3740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3741 F:      sound/pci/oxygen/
3742
3743 C-SKY ARCHITECTURE
3744 M:      Guo Ren <[email protected]>
3745 L:      [email protected]
3746 S:      Supported
3747 T:      git https://github.com/c-sky/csky-linux.git
3748 F:      Documentation/devicetree/bindings/csky/
3749 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3750 F:      Documentation/devicetree/bindings/timer/csky,*
3751 F:      arch/csky/
3752 F:      drivers/clocksource/timer-gx6605s.c
3753 F:      drivers/clocksource/timer-mp-csky.c
3754 F:      drivers/irqchip/irq-csky-*
3755 N:      csky
3756 K:      csky
3757
3758 C6X ARCHITECTURE
3759 M:      Mark Salter <[email protected]>
3760 M:      Aurelien Jacquiot <[email protected]>
3761 L:      [email protected]
3762 S:      Maintained
3763 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3764 F:      arch/c6x/
3765
3766 CA8210 IEEE-802.15.4 RADIO DRIVER
3767 M:      Harry Morris <[email protected]>
3768 L:      [email protected]
3769 S:      Maintained
3770 W:      https://github.com/Cascoda/ca8210-linux.git
3771 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3772 F:      drivers/net/ieee802154/ca8210.c
3773
3774 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3775 M:      David Howells <[email protected]>
3776 L:      [email protected] (moderated for non-subscribers)
3777 S:      Supported
3778 F:      Documentation/filesystems/caching/cachefiles.rst
3779 F:      fs/cachefiles/
3780
3781 CADENCE MIPI-CSI2 BRIDGES
3782 M:      Maxime Ripard <[email protected]>
3783 L:      [email protected]
3784 S:      Maintained
3785 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3786 F:      drivers/media/platform/cadence/cdns-csi2*
3787
3788 CADENCE NAND DRIVER
3789 L:      [email protected]
3790 S:      Orphan
3791 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3792 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3793
3794 CADET FM/AM RADIO RECEIVER DRIVER
3795 M:      Hans Verkuil <[email protected]>
3796 L:      [email protected]
3797 S:      Maintained
3798 W:      https://linuxtv.org
3799 T:      git git://linuxtv.org/media_tree.git
3800 F:      drivers/media/radio/radio-cadet*
3801
3802 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3803 M:      Jonathan Corbet <[email protected]>
3804 L:      [email protected]
3805 S:      Maintained
3806 T:      git git://linuxtv.org/media_tree.git
3807 F:      Documentation/admin-guide/media/cafe_ccic*
3808 F:      drivers/media/platform/marvell-ccic/
3809
3810 CAIF NETWORK LAYER
3811 L:      [email protected]
3812 S:      Orphan
3813 F:      Documentation/networking/caif/
3814 F:      drivers/net/caif/
3815 F:      include/net/caif/
3816 F:      include/uapi/linux/caif/
3817 F:      net/caif/
3818
3819 CAKE QDISC
3820 M:      Toke Høiland-Jørgensen <[email protected]>
3821 L:      [email protected] (moderated for non-subscribers)
3822 S:      Maintained
3823 F:      net/sched/sch_cake.c
3824
3825 CAN NETWORK DRIVERS
3826 M:      Wolfgang Grandegger <[email protected]>
3827 M:      Marc Kleine-Budde <[email protected]>
3828 L:      [email protected]
3829 S:      Maintained
3830 W:      https://github.com/linux-can
3831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3833 F:      Documentation/devicetree/bindings/net/can/
3834 F:      drivers/net/can/
3835 F:      include/linux/can/dev.h
3836 F:      include/linux/can/led.h
3837 F:      include/linux/can/platform/
3838 F:      include/linux/can/rx-offload.h
3839 F:      include/uapi/linux/can/error.h
3840 F:      include/uapi/linux/can/netlink.h
3841 F:      include/uapi/linux/can/vxcan.h
3842
3843 CAN NETWORK LAYER
3844 M:      Oliver Hartkopp <[email protected]>
3845 M:      Marc Kleine-Budde <[email protected]>
3846 L:      [email protected]
3847 S:      Maintained
3848 W:      https://github.com/linux-can
3849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3851 F:      Documentation/networking/can.rst
3852 F:      include/linux/can/core.h
3853 F:      include/linux/can/skb.h
3854 F:      include/net/netns/can.h
3855 F:      include/uapi/linux/can.h
3856 F:      include/uapi/linux/can/bcm.h
3857 F:      include/uapi/linux/can/gw.h
3858 F:      include/uapi/linux/can/raw.h
3859 F:      net/can/
3860
3861 CAN-J1939 NETWORK LAYER
3862 M:      Robin van der Gracht <[email protected]>
3863 M:      Oleksij Rempel <[email protected]>
3864 R:      Pengutronix Kernel Team <[email protected]>
3865 L:      [email protected]
3866 S:      Maintained
3867 F:      Documentation/networking/j1939.rst
3868 F:      include/uapi/linux/can/j1939.h
3869 F:      net/can/j1939/
3870
3871 CAPABILITIES
3872 M:      Serge Hallyn <[email protected]>
3873 L:      [email protected]
3874 S:      Supported
3875 F:      include/linux/capability.h
3876 F:      include/uapi/linux/capability.h
3877 F:      kernel/capability.c
3878 F:      security/commoncap.c
3879
3880 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3881 M:      Kevin Tsai <[email protected]>
3882 S:      Maintained
3883 F:      drivers/iio/light/cm*
3884
3885 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3886 M:      Christian Lamparter <[email protected]>
3887 L:      [email protected]
3888 S:      Maintained
3889 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3890 F:      drivers/net/wireless/ath/carl9170/
3891
3892 CAVIUM I2C DRIVER
3893 M:      Robert Richter <[email protected]>
3894 S:      Supported
3895 W:      http://www.marvell.com
3896 F:      drivers/i2c/busses/i2c-octeon*
3897 F:      drivers/i2c/busses/i2c-thunderx*
3898
3899 CAVIUM LIQUIDIO NETWORK DRIVER
3900 M:      Derek Chickles <[email protected]>
3901 M:      Satanand Burla <[email protected]>
3902 M:      Felix Manlunas <[email protected]>
3903 L:      [email protected]
3904 S:      Supported
3905 W:      http://www.marvell.com
3906 F:      drivers/net/ethernet/cavium/liquidio/
3907
3908 CAVIUM MMC DRIVER
3909 M:      Robert Richter <[email protected]>
3910 S:      Supported
3911 W:      http://www.marvell.com
3912 F:      drivers/mmc/host/cavium*
3913
3914 CAVIUM OCTEON-TX CRYPTO DRIVER
3915 M:      George Cherian <[email protected]>
3916 L:      [email protected]
3917 S:      Supported
3918 W:      http://www.marvell.com
3919 F:      drivers/crypto/cavium/cpt/
3920
3921 CAVIUM THUNDERX2 ARM64 SOC
3922 M:      Robert Richter <[email protected]>
3923 L:      [email protected] (moderated for non-subscribers)
3924 S:      Maintained
3925 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3926 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3927
3928 CC2520 IEEE-802.15.4 RADIO DRIVER
3929 M:      Varka Bhadram <[email protected]>
3930 L:      [email protected]
3931 S:      Maintained
3932 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3933 F:      drivers/net/ieee802154/cc2520.c
3934 F:      include/linux/spi/cc2520.h
3935
3936 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3937 M:      Gilad Ben-Yossef <[email protected]>
3938 L:      [email protected]
3939 S:      Supported
3940 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3941 F:      drivers/crypto/ccree/
3942
3943 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
3944 M:      Hadar Gat <[email protected]>
3945 L:      [email protected]
3946 S:      Supported
3947 F:      drivers/char/hw_random/cctrng.c
3948 F:      drivers/char/hw_random/cctrng.h
3949 F:      Documentation/devicetree/bindings/rng/arm-cctrng.txt
3950 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3951
3952 CEC FRAMEWORK
3953 M:      Hans Verkuil <[email protected]>
3954 L:      [email protected]
3955 S:      Supported
3956 W:      http://linuxtv.org
3957 T:      git git://linuxtv.org/media_tree.git
3958 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3959 F:      Documentation/devicetree/bindings/media/cec.txt
3960 F:      Documentation/driver-api/media/cec-core.rst
3961 F:      Documentation/userspace-api/media/cec
3962 F:      drivers/media/cec/
3963 F:      drivers/media/rc/keymaps/rc-cec.c
3964 F:      include/media/cec-notifier.h
3965 F:      include/media/cec.h
3966 F:      include/uapi/linux/cec-funcs.h
3967 F:      include/uapi/linux/cec.h
3968
3969 CEC GPIO DRIVER
3970 M:      Hans Verkuil <[email protected]>
3971 L:      [email protected]
3972 S:      Supported
3973 W:      http://linuxtv.org
3974 T:      git git://linuxtv.org/media_tree.git
3975 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3976 F:      drivers/media/platform/cec-gpio/
3977
3978 CELL BROADBAND ENGINE ARCHITECTURE
3979 M:      Arnd Bergmann <[email protected]>
3980 L:      [email protected]
3981 S:      Supported
3982 W:      http://www.ibm.com/developerworks/power/cell/
3983 F:      arch/powerpc/include/asm/cell*.h
3984 F:      arch/powerpc/include/asm/spu*.h
3985 F:      arch/powerpc/include/uapi/asm/spu*.h
3986 F:      arch/powerpc/oprofile/*cell*
3987 F:      arch/powerpc/platforms/cell/
3988
3989 CELLWISE CW2015 BATTERY DRIVER
3990 M:      Tobias Schrammm <[email protected]>
3991 S:      Maintained
3992 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
3993 F:      drivers/power/supply/cw2015_battery.c
3994
3995 CEPH COMMON CODE (LIBCEPH)
3996 M:      Ilya Dryomov <[email protected]>
3997 M:      Jeff Layton <[email protected]>
3998 L:      [email protected]
3999 S:      Supported
4000 W:      http://ceph.com/
4001 T:      git git://github.com/ceph/ceph-client.git
4002 F:      include/linux/ceph/
4003 F:      include/linux/crush/
4004 F:      net/ceph/
4005
4006 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4007 M:      Jeff Layton <[email protected]>
4008 M:      Ilya Dryomov <[email protected]>
4009 L:      [email protected]
4010 S:      Supported
4011 W:      http://ceph.com/
4012 T:      git git://github.com/ceph/ceph-client.git
4013 F:      Documentation/filesystems/ceph.rst
4014 F:      fs/ceph/
4015
4016 CERTIFICATE HANDLING
4017 M:      David Howells <[email protected]>
4018 M:      David Woodhouse <[email protected]>
4019 L:      [email protected]
4020 S:      Maintained
4021 F:      Documentation/admin-guide/module-signing.rst
4022 F:      certs/
4023 F:      scripts/extract-cert.c
4024 F:      scripts/sign-file.c
4025
4026 CFAG12864B LCD DRIVER
4027 M:      Miguel Ojeda Sandonis <[email protected]>
4028 S:      Maintained
4029 F:      drivers/auxdisplay/cfag12864b.c
4030 F:      include/linux/cfag12864b.h
4031
4032 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4033 M:      Miguel Ojeda Sandonis <[email protected]>
4034 S:      Maintained
4035 F:      drivers/auxdisplay/cfag12864bfb.c
4036 F:      include/linux/cfag12864b.h
4037
4038 CHAR and MISC DRIVERS
4039 M:      Arnd Bergmann <[email protected]>
4040 M:      Greg Kroah-Hartman <[email protected]>
4041 S:      Supported
4042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4043 F:      drivers/char/
4044 F:      drivers/misc/
4045 F:      include/linux/miscdevice.h
4046
4047 CHECKPATCH
4048 M:      Andy Whitcroft <[email protected]>
4049 M:      Joe Perches <[email protected]>
4050 S:      Maintained
4051 F:      scripts/checkpatch.pl
4052
4053 CHINESE DOCUMENTATION
4054 M:      Harry Wei <[email protected]>
4055 M:      Alex Shi <[email protected]>
4056 L:      [email protected] (subscribers-only)
4057 S:      Maintained
4058 F:      Documentation/translations/zh_CN/
4059
4060 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4061 M:      Peter Chen <[email protected]>
4062 L:      [email protected]
4063 S:      Maintained
4064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4065 F:      drivers/usb/chipidea/
4066
4067 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4068 M:      Hans de Goede <[email protected]>
4069 L:      [email protected]
4070 S:      Maintained
4071 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4072 F:      drivers/input/touchscreen/chipone_icn8318.c
4073
4074 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4075 M:      Hans de Goede <[email protected]>
4076 L:      [email protected]
4077 S:      Maintained
4078 F:      drivers/input/touchscreen/chipone_icn8505.c
4079
4080 CHROME HARDWARE PLATFORM SUPPORT
4081 M:      Benson Leung <[email protected]>
4082 M:      Enric Balletbo i Serra <[email protected]>
4083 S:      Maintained
4084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4085 F:      drivers/platform/chrome/
4086
4087 CHROMEOS EC CODEC DRIVER
4088 M:      Cheng-Yi Chiang <[email protected]>
4089 R:      Enric Balletbo i Serra <[email protected]>
4090 R:      Guenter Roeck <[email protected]>
4091 S:      Maintained
4092 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4093 F:      sound/soc/codecs/cros_ec_codec.*
4094
4095 CHROMEOS EC SUBDRIVERS
4096 M:      Benson Leung <[email protected]>
4097 M:      Enric Balletbo i Serra <[email protected]>
4098 R:      Guenter Roeck <[email protected]>
4099 S:      Maintained
4100 F:      drivers/power/supply/cros_usbpd-charger.c
4101 N:      cros_ec
4102 N:      cros-ec
4103
4104 CIRRUS LOGIC AUDIO CODEC DRIVERS
4105 M:      James Schulman <[email protected]>
4106 M:      David Rhodes <[email protected]>
4107 L:      [email protected] (moderated for non-subscribers)
4108 S:      Maintained
4109 F:      sound/soc/codecs/cs*
4110
4111 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4112 M:      Hartley Sweeten <[email protected]>
4113 L:      [email protected]
4114 S:      Maintained
4115 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4116
4117 CIRRUS LOGIC LOCHNAGAR DRIVER
4118 M:      Charles Keepax <[email protected]>
4119 M:      Richard Fitzgerald <[email protected]>
4120 L:      [email protected]
4121 S:      Supported
4122 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4123 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4124 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4125 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4126 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4127 F:      Documentation/hwmon/lochnagar.rst
4128 F:      drivers/clk/clk-lochnagar.c
4129 F:      drivers/hwmon/lochnagar-hwmon.c
4130 F:      drivers/mfd/lochnagar-i2c.c
4131 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4132 F:      drivers/regulator/lochnagar-regulator.c
4133 F:      include/dt-bindings/clk/lochnagar.h
4134 F:      include/dt-bindings/pinctrl/lochnagar.h
4135 F:      include/linux/mfd/lochnagar*
4136 F:      sound/soc/codecs/lochnagar-sc.c
4137
4138 CIRRUS LOGIC MADERA CODEC DRIVERS
4139 M:      Charles Keepax <[email protected]>
4140 M:      Richard Fitzgerald <[email protected]>
4141 L:      [email protected] (moderated for non-subscribers)
4142 L:      [email protected]
4143 S:      Supported
4144 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4145 T:      git https://github.com/CirrusLogic/linux-drivers.git
4146 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4147 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4148 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4149 F:      drivers/gpio/gpio-madera*
4150 F:      drivers/irqchip/irq-madera*
4151 F:      drivers/mfd/cs47l*
4152 F:      drivers/mfd/madera*
4153 F:      drivers/pinctrl/cirrus/*
4154 F:      include/dt-bindings/sound/madera*
4155 F:      include/linux/irqchip/irq-madera*
4156 F:      include/linux/mfd/madera/*
4157 F:      include/sound/madera*
4158 F:      sound/soc/codecs/cs47l*
4159 F:      sound/soc/codecs/madera*
4160
4161 CISCO FCOE HBA DRIVER
4162 M:      Satish Kharat <[email protected]>
4163 M:      Sesidhar Baddela <[email protected]>
4164 M:      Karan Tilak Kumar <[email protected]>
4165 L:      [email protected]
4166 S:      Supported
4167 F:      drivers/scsi/fnic/
4168
4169 CISCO SCSI HBA DRIVER
4170 M:      Karan Tilak Kumar <[email protected]>
4171 M:      Sesidhar Baddela <[email protected]>
4172 L:      [email protected]
4173 S:      Supported
4174 F:      drivers/scsi/snic/
4175
4176 CISCO VIC ETHERNET NIC DRIVER
4177 M:      Christian Benvenuti <[email protected]>
4178 M:      Govindarajulu Varadarajan <[email protected]>
4179 S:      Supported
4180 F:      drivers/net/ethernet/cisco/enic/
4181
4182 CISCO VIC LOW LATENCY NIC DRIVER
4183 M:      Christian Benvenuti <[email protected]>
4184 M:      Nelson Escobar <[email protected]>
4185 M:      Parvi Kaustubhi <[email protected]>
4186 S:      Supported
4187 F:      drivers/infiniband/hw/usnic/
4188
4189 CLANG-FORMAT FILE
4190 M:      Miguel Ojeda <[email protected]>
4191 S:      Maintained
4192 F:      .clang-format
4193
4194 CLANG/LLVM BUILD SUPPORT
4195 L:      [email protected]
4196 S:      Supported
4197 W:      https://clangbuiltlinux.github.io/
4198 B:      https://github.com/ClangBuiltLinux/linux/issues
4199 C:      irc://chat.freenode.net/clangbuiltlinux
4200 F:      Documentation/kbuild/llvm.rst
4201 K:      \b(?i:clang|llvm)\b
4202
4203 CLEANCACHE API
4204 M:      Konrad Rzeszutek Wilk <[email protected]>
4205 L:      [email protected]
4206 S:      Maintained
4207 F:      include/linux/cleancache.h
4208 F:      mm/cleancache.c
4209
4210 CLK API
4211 M:      Russell King <[email protected]>
4212 L:      [email protected]
4213 S:      Maintained
4214 F:      include/linux/clk.h
4215
4216 CLOCKSOURCE, CLOCKEVENT DRIVERS
4217 M:      Daniel Lezcano <[email protected]>
4218 M:      Thomas Gleixner <[email protected]>
4219 L:      [email protected]
4220 S:      Supported
4221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4222 F:      Documentation/devicetree/bindings/timer/
4223 F:      drivers/clocksource/
4224
4225 CMPC ACPI DRIVER
4226 M:      Thadeu Lima de Souza Cascardo <[email protected]>
4227 M:      Daniel Oliveira Nascimento <[email protected]>
4228 L:      [email protected]
4229 S:      Supported
4230 F:      drivers/platform/x86/classmate-laptop.c
4231
4232 COBALT MEDIA DRIVER
4233 M:      Hans Verkuil <[email protected]>
4234 L:      [email protected]
4235 S:      Supported
4236 W:      https://linuxtv.org
4237 T:      git git://linuxtv.org/media_tree.git
4238 F:      drivers/media/pci/cobalt/
4239
4240 COCCINELLE/Semantic Patches (SmPL)
4241 M:      Julia Lawall <[email protected]>
4242 M:      Gilles Muller <[email protected]>
4243 M:      Nicolas Palix <[email protected]>
4244 M:      Michal Marek <[email protected]>
4245 L:      [email protected] (moderated for non-subscribers)
4246 S:      Supported
4247 W:      http://coccinelle.lip6.fr/
4248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4249 F:      Documentation/dev-tools/coccinelle.rst
4250 F:      scripts/coccicheck
4251 F:      scripts/coccinelle/
4252
4253 CODA FILE SYSTEM
4254 M:      Jan Harkes <[email protected]>
4255 M:      [email protected]
4256 L:      [email protected]
4257 S:      Maintained
4258 W:      http://www.coda.cs.cmu.edu/
4259 F:      Documentation/filesystems/coda.rst
4260 F:      fs/coda/
4261 F:      include/linux/coda*.h
4262 F:      include/uapi/linux/coda*.h
4263
4264 CODA V4L2 MEM2MEM DRIVER
4265 M:      Philipp Zabel <[email protected]>
4266 L:      [email protected]
4267 S:      Maintained
4268 F:      Documentation/devicetree/bindings/media/coda.txt
4269 F:      drivers/media/platform/coda/
4270
4271 CODE OF CONDUCT
4272 M:      Greg Kroah-Hartman <[email protected]>
4273 S:      Supported
4274 F:      Documentation/process/code-of-conduct-interpretation.rst
4275 F:      Documentation/process/code-of-conduct.rst
4276
4277 COMMON CLK FRAMEWORK
4278 M:      Michael Turquette <[email protected]>
4279 M:      Stephen Boyd <[email protected]>
4280 L:      [email protected]
4281 S:      Maintained
4282 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4284 F:      Documentation/devicetree/bindings/clock/
4285 F:      drivers/clk/
4286 F:      include/linux/clk-pr*
4287 F:      include/linux/clk/
4288 F:      include/linux/of_clk.h
4289 X:      drivers/clk/clkdev.c
4290
4291 COMMON INTERNET FILE SYSTEM (CIFS)
4292 M:      Steve French <[email protected]>
4293 L:      [email protected]
4294 L:      [email protected] (moderated for non-subscribers)
4295 S:      Supported
4296 W:      http://linux-cifs.samba.org/
4297 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4298 F:      Documentation/admin-guide/cifs/
4299 F:      fs/cifs/
4300
4301 COMPACTPCI HOTPLUG CORE
4302 M:      Scott Murray <[email protected]>
4303 L:      [email protected]
4304 S:      Maintained
4305 F:      drivers/pci/hotplug/cpci_hotplug*
4306
4307 COMPACTPCI HOTPLUG GENERIC DRIVER
4308 M:      Scott Murray <[email protected]>
4309 L:      [email protected]
4310 S:      Maintained
4311 F:      drivers/pci/hotplug/cpcihp_generic.c
4312
4313 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4314 M:      Scott Murray <[email protected]>
4315 L:      [email protected]
4316 S:      Maintained
4317 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4318
4319 COMPAL LAPTOP SUPPORT
4320 M:      Cezary Jackiewicz <[email protected]>
4321 L:      [email protected]
4322 S:      Maintained
4323 F:      drivers/platform/x86/compal-laptop.c
4324
4325 COMPILER ATTRIBUTES
4326 M:      Miguel Ojeda <[email protected]>
4327 S:      Maintained
4328 F:      include/linux/compiler_attributes.h
4329
4330 CONEXANT ACCESSRUNNER USB DRIVER
4331 L:      [email protected]
4332 S:      Orphan
4333 W:      http://accessrunner.sourceforge.net/
4334 F:      drivers/usb/atm/cxacru.c
4335
4336 CONFIGFS
4337 M:      Joel Becker <[email protected]>
4338 M:      Christoph Hellwig <[email protected]>
4339 S:      Supported
4340 T:      git git://git.infradead.org/users/hch/configfs.git
4341 F:      fs/configfs/
4342 F:      include/linux/configfs.h
4343
4344 CONNECTOR
4345 M:      Evgeniy Polyakov <[email protected]>
4346 L:      [email protected]
4347 S:      Maintained
4348 F:      drivers/connector/
4349
4350 CONTROL GROUP (CGROUP)
4351 M:      Tejun Heo <[email protected]>
4352 M:      Li Zefan <[email protected]>
4353 M:      Johannes Weiner <[email protected]>
4354 L:      [email protected]
4355 S:      Maintained
4356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4357 F:      Documentation/admin-guide/cgroup-v1/
4358 F:      Documentation/admin-guide/cgroup-v2.rst
4359 F:      include/linux/cgroup*
4360 F:      kernel/cgroup/
4361
4362 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4363 M:      Tejun Heo <[email protected]>
4364 M:      Jens Axboe <[email protected]>
4365 L:      [email protected]
4366 L:      [email protected]
4367 T:      git git://git.kernel.dk/linux-block
4368 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4369 F:      block/bfq-cgroup.c
4370 F:      block/blk-cgroup.c
4371 F:      block/blk-iolatency.c
4372 F:      block/blk-throttle.c
4373 F:      include/linux/blk-cgroup.h
4374
4375 CONTROL GROUP - CPUSET
4376 M:      Li Zefan <[email protected]>
4377 L:      [email protected]
4378 S:      Maintained
4379 W:      http://www.bullopensource.org/cpuset/
4380 W:      http://oss.sgi.com/projects/cpusets/
4381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4382 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4383 F:      include/linux/cpuset.h
4384 F:      kernel/cgroup/cpuset.c
4385
4386 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4387 M:      Johannes Weiner <[email protected]>
4388 M:      Michal Hocko <[email protected]>
4389 M:      Vladimir Davydov <[email protected]>
4390 L:      [email protected]
4391 L:      [email protected]
4392 S:      Maintained
4393 F:      mm/memcontrol.c
4394 F:      mm/swap_cgroup.c
4395
4396 CORETEMP HARDWARE MONITORING DRIVER
4397 M:      Fenghua Yu <[email protected]>
4398 L:      [email protected]
4399 S:      Maintained
4400 F:      Documentation/hwmon/coretemp.rst
4401 F:      drivers/hwmon/coretemp.c
4402
4403 COSA/SRP SYNC SERIAL DRIVER
4404 M:      Jan "Yenya" Kasprzak <[email protected]>
4405 S:      Maintained
4406 W:      http://www.fi.muni.cz/~kas/cosa/
4407 F:      drivers/net/wan/cosa*
4408
4409 COUNTER SUBSYSTEM
4410 M:      William Breathitt Gray <[email protected]>
4411 L:      [email protected]
4412 S:      Maintained
4413 F:      Documentation/ABI/testing/sysfs-bus-counter*
4414 F:      Documentation/driver-api/generic-counter.rst
4415 F:      drivers/counter/
4416 F:      include/linux/counter.h
4417 F:      include/linux/counter_enum.h
4418
4419 CPMAC ETHERNET DRIVER
4420 M:      Florian Fainelli <[email protected]>
4421 L:      [email protected]
4422 S:      Maintained
4423 F:      drivers/net/ethernet/ti/cpmac.c
4424
4425 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4426 M:      Viresh Kumar <[email protected]>
4427 M:      Sudeep Holla <[email protected]>
4428 L:      [email protected]
4429 S:      Maintained
4430 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4431 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4432
4433 CPU FREQUENCY SCALING FRAMEWORK
4434 M:      "Rafael J. Wysocki" <[email protected]>
4435 M:      Viresh Kumar <[email protected]>
4436 L:      [email protected]
4437 S:      Maintained
4438 B:      https://bugzilla.kernel.org
4439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4441 F:      Documentation/admin-guide/pm/cpufreq.rst
4442 F:      Documentation/admin-guide/pm/intel_pstate.rst
4443 F:      Documentation/cpu-freq/
4444 F:      Documentation/devicetree/bindings/cpufreq/
4445 F:      drivers/cpufreq/
4446 F:      include/linux/cpufreq.h
4447 F:      include/linux/sched/cpufreq.h
4448 F:      kernel/sched/cpufreq*.c
4449 F:      tools/testing/selftests/cpufreq/
4450
4451 CPU IDLE TIME MANAGEMENT FRAMEWORK
4452 M:      "Rafael J. Wysocki" <[email protected]>
4453 M:      Daniel Lezcano <[email protected]>
4454 L:      [email protected]
4455 S:      Maintained
4456 B:      https://bugzilla.kernel.org
4457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4458 F:      Documentation/admin-guide/pm/cpuidle.rst
4459 F:      Documentation/driver-api/pm/cpuidle.rst
4460 F:      drivers/cpuidle/*
4461 F:      include/linux/cpuidle.h
4462
4463 CPU POWER MONITORING SUBSYSTEM
4464 M:      Thomas Renninger <[email protected]>
4465 M:      Shuah Khan <[email protected]>
4466 M:      Shuah Khan <[email protected]>
4467 L:      [email protected]
4468 S:      Maintained
4469 F:      tools/power/cpupower/
4470
4471 CPUID/MSR DRIVER
4472 M:      "H. Peter Anvin" <[email protected]>
4473 S:      Maintained
4474 F:      arch/x86/kernel/cpuid.c
4475 F:      arch/x86/kernel/msr.c
4476
4477 CPUIDLE DRIVER - ARM BIG LITTLE
4478 M:      Lorenzo Pieralisi <[email protected]>
4479 M:      Daniel Lezcano <[email protected]>
4480 L:      [email protected]
4481 L:      [email protected]
4482 S:      Maintained
4483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4484 F:      drivers/cpuidle/cpuidle-big_little.c
4485
4486 CPUIDLE DRIVER - ARM EXYNOS
4487 M:      Bartlomiej Zolnierkiewicz <[email protected]>
4488 M:      Daniel Lezcano <[email protected]>
4489 M:      Kukjin Kim <[email protected]>
4490 L:      [email protected]
4491 L:      [email protected]
4492 S:      Supported
4493 F:      arch/arm/mach-exynos/pm.c
4494 F:      drivers/cpuidle/cpuidle-exynos.c
4495
4496 CPUIDLE DRIVER - ARM PSCI
4497 M:      Lorenzo Pieralisi <[email protected]>
4498 M:      Sudeep Holla <[email protected]>
4499 L:      [email protected]
4500 L:      [email protected]
4501 S:      Supported
4502 F:      drivers/cpuidle/cpuidle-psci.c
4503
4504 CRAMFS FILESYSTEM
4505 M:      Nicolas Pitre <[email protected]>
4506 S:      Maintained
4507 F:      Documentation/filesystems/cramfs.rst
4508 F:      fs/cramfs/
4509
4510 CREATIVE SB0540
4511 M:      Bastien Nocera <[email protected]>
4512 L:      [email protected]
4513 S:      Maintained
4514 F:      drivers/hid/hid-creative-sb0540.c
4515
4516 CRYPTO API
4517 M:      Herbert Xu <[email protected]>
4518 M:      "David S. Miller" <[email protected]>
4519 L:      [email protected]
4520 S:      Maintained
4521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4523 F:      Documentation/crypto/
4524 F:      Documentation/devicetree/bindings/crypto/
4525 F:      arch/*/crypto/
4526 F:      crypto/
4527 F:      drivers/crypto/
4528 F:      include/crypto/
4529 F:      include/linux/crypto*
4530 F:      lib/crypto/
4531
4532 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4533 M:      Neil Horman <[email protected]>
4534 L:      [email protected]
4535 S:      Maintained
4536 F:      crypto/ansi_cprng.c
4537 F:      crypto/rng.c
4538
4539 CS3308 MEDIA DRIVER
4540 M:      Hans Verkuil <[email protected]>
4541 L:      [email protected]
4542 S:      Odd Fixes
4543 W:      http://linuxtv.org
4544 T:      git git://linuxtv.org/media_tree.git
4545 F:      drivers/media/i2c/cs3308.c
4546
4547 CS5535 Audio ALSA driver
4548 M:      Jaya Kumar <[email protected]>
4549 S:      Maintained
4550 F:      sound/pci/cs5535audio/
4551
4552 CSI DRIVERS FOR ALLWINNER V3s
4553 M:      Yong Deng <[email protected]>
4554 L:      [email protected]
4555 S:      Maintained
4556 T:      git git://linuxtv.org/media_tree.git
4557 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4558 F:      drivers/media/platform/sunxi/sun6i-csi/
4559
4560 CW1200 WLAN driver
4561 M:      Solomon Peachy <[email protected]>
4562 S:      Maintained
4563 F:      drivers/net/wireless/st/cw1200/
4564
4565 CX18 VIDEO4LINUX DRIVER
4566 M:      Andy Walls <[email protected]>
4567 L:      [email protected]
4568 S:      Maintained
4569 W:      https://linuxtv.org
4570 T:      git git://linuxtv.org/media_tree.git
4571 F:      drivers/media/pci/cx18/
4572 F:      include/uapi/linux/ivtv*
4573
4574 CX2341X MPEG ENCODER HELPER MODULE
4575 M:      Hans Verkuil <[email protected]>
4576 L:      [email protected]
4577 S:      Maintained
4578 W:      https://linuxtv.org
4579 T:      git git://linuxtv.org/media_tree.git
4580 F:      drivers/media/common/cx2341x*
4581 F:      include/media/drv-intf/cx2341x.h
4582
4583 CX24120 MEDIA DRIVER
4584 M:      Jemma Denson <[email protected]>
4585 M:      Patrick Boettcher <[email protected]>
4586 L:      [email protected]
4587 S:      Maintained
4588 W:      https://linuxtv.org
4589 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4590 F:      drivers/media/dvb-frontends/cx24120*
4591
4592 CX88 VIDEO4LINUX DRIVER
4593 M:      Mauro Carvalho Chehab <[email protected]>
4594 L:      [email protected]
4595 S:      Odd fixes
4596 W:      https://linuxtv.org
4597 T:      git git://linuxtv.org/media_tree.git
4598 F:      Documentation/driver-api/media/drivers/cx88*
4599 F:      drivers/media/pci/cx88/
4600
4601 CXD2820R MEDIA DRIVER
4602 M:      Antti Palosaari <[email protected]>
4603 L:      [email protected]
4604 S:      Maintained
4605 W:      https://linuxtv.org
4606 W:      http://palosaari.fi/linux/
4607 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4608 T:      git git://linuxtv.org/anttip/media_tree.git
4609 F:      drivers/media/dvb-frontends/cxd2820r*
4610
4611 CXGB3 ETHERNET DRIVER (CXGB3)
4612 M:      Vishal Kulkarni <[email protected]>
4613 L:      [email protected]
4614 S:      Supported
4615 W:      http://www.chelsio.com
4616 F:      drivers/net/ethernet/chelsio/cxgb3/
4617
4618 CXGB3 ISCSI DRIVER (CXGB3I)
4619 M:      Karen Xie <[email protected]>
4620 L:      [email protected]
4621 S:      Supported
4622 W:      http://www.chelsio.com
4623 F:      drivers/scsi/cxgbi/cxgb3i
4624
4625 CXGB4 CRYPTO DRIVER (chcr)
4626 M:      Ayush Sawal <[email protected]>
4627 M:      Vinay Kumar Yadav <[email protected]>
4628 M:      Rohit Maheshwari <[email protected]>
4629 L:      [email protected]
4630 S:      Supported
4631 W:      http://www.chelsio.com
4632 F:      drivers/crypto/chelsio
4633
4634 CXGB4 ETHERNET DRIVER (CXGB4)
4635 M:      Vishal Kulkarni <[email protected]>
4636 L:      [email protected]
4637 S:      Supported
4638 W:      http://www.chelsio.com
4639 F:      drivers/net/ethernet/chelsio/cxgb4/
4640
4641 CXGB4 ISCSI DRIVER (CXGB4I)
4642 M:      Karen Xie <[email protected]>
4643 L:      [email protected]
4644 S:      Supported
4645 W:      http://www.chelsio.com
4646 F:      drivers/scsi/cxgbi/cxgb4i
4647
4648 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4649 M:      Potnuri Bharat Teja <[email protected]>
4650 L:      [email protected]
4651 S:      Supported
4652 W:      http://www.openfabrics.org
4653 F:      drivers/infiniband/hw/cxgb4/
4654 F:      include/uapi/rdma/cxgb4-abi.h
4655
4656 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4657 M:      Vishal Kulkarni <[email protected]>
4658 L:      [email protected]
4659 S:      Supported
4660 W:      http://www.chelsio.com
4661 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4662
4663 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4664 M:      Frederic Barrat <[email protected]>
4665 M:      Andrew Donnellan <[email protected]>
4666 L:      [email protected]
4667 S:      Supported
4668 F:      Documentation/ABI/testing/sysfs-class-cxl
4669 F:      Documentation/powerpc/cxl.rst
4670 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4671 F:      drivers/misc/cxl/
4672 F:      include/misc/cxl*
4673 F:      include/uapi/misc/cxl.h
4674
4675 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4676 M:      Manoj N. Kumar <[email protected]>
4677 M:      Matthew R. Ochs <[email protected]>
4678 M:      Uma Krishnan <[email protected]>
4679 L:      [email protected]
4680 S:      Supported
4681 F:      Documentation/powerpc/cxlflash.rst
4682 F:      drivers/scsi/cxlflash/
4683 F:      include/uapi/scsi/cxlflash_ioctl.h
4684
4685 CYBERPRO FB DRIVER
4686 M:      Russell King <[email protected]>
4687 L:      [email protected] (moderated for non-subscribers)
4688 S:      Maintained
4689 W:      http://www.armlinux.org.uk/
4690 F:      drivers/video/fbdev/cyber2000fb.*
4691
4692 CYCLADES ASYNC MUX DRIVER
4693 S:      Orphan
4694 W:      http://www.cyclades.com/
4695 F:      drivers/tty/cyclades.c
4696 F:      include/linux/cyclades.h
4697 F:      include/uapi/linux/cyclades.h
4698
4699 CYCLADES PC300 DRIVER
4700 S:      Orphan
4701 W:      http://www.cyclades.com/
4702 F:      drivers/net/wan/pc300*
4703
4704 CYPRESS_FIRMWARE MEDIA DRIVER
4705 M:      Antti Palosaari <[email protected]>
4706 L:      [email protected]
4707 S:      Maintained
4708 W:      https://linuxtv.org
4709 W:      http://palosaari.fi/linux/
4710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4711 T:      git git://linuxtv.org/anttip/media_tree.git
4712 F:      drivers/media/common/cypress_firmware*
4713
4714 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4715 M:      Linus Walleij <[email protected]>
4716 L:      [email protected]
4717 S:      Maintained
4718 F:      drivers/input/touchscreen/cy8ctma140.c
4719
4720 CYTTSP TOUCHSCREEN DRIVER
4721 M:      Ferruh Yigit <[email protected]>
4722 L:      [email protected]
4723 S:      Supported
4724 F:      drivers/input/touchscreen/cyttsp*
4725 F:      include/linux/input/cyttsp.h
4726
4727 D-LINK DIR-685 TOUCHKEYS DRIVER
4728 M:      Linus Walleij <[email protected]>
4729 L:      [email protected]
4730 S:      Supported
4731 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4732
4733 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4734 M:      Joshua Kinard <[email protected]>
4735 S:      Maintained
4736 F:      drivers/rtc/rtc-ds1685.c
4737 F:      include/linux/rtc/ds1685.h
4738
4739 DAMA SLAVE for AX.25
4740 M:      Joerg Reuter <[email protected]>
4741 L:      [email protected]
4742 S:      Maintained
4743 W:      http://yaina.de/jreuter/
4744 W:      http://www.qsl.net/dl1bke/
4745 F:      net/ax25/af_ax25.c
4746 F:      net/ax25/ax25_dev.c
4747 F:      net/ax25/ax25_ds_*
4748 F:      net/ax25/ax25_in.c
4749 F:      net/ax25/ax25_out.c
4750 F:      net/ax25/ax25_timer.c
4751 F:      net/ax25/sysctl_net_ax25.c
4752
4753 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4754 L:      [email protected]
4755 S:      Orphan
4756 F:      Documentation/networking/device_drivers/dec/dmfe.rst
4757 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4758
4759 DC390/AM53C974 SCSI driver
4760 M:      Hannes Reinecke <[email protected]>
4761 L:      [email protected]
4762 S:      Maintained
4763 F:      drivers/scsi/am53c974.c
4764
4765 DC395x SCSI driver
4766 M:      Oliver Neukum <[email protected]>
4767 M:      Ali Akcaagac <[email protected]>
4768 M:      Jamie Lenehan <[email protected]>
4769 L:      [email protected]
4770 S:      Maintained
4771 W:      http://twibble.org/dist/dc395x/
4772 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4773 F:      Documentation/scsi/dc395x.rst
4774 F:      drivers/scsi/dc395x.*
4775
4776 DCCP PROTOCOL
4777 M:      Gerrit Renker <[email protected]>
4778 L:      [email protected]
4779 S:      Maintained
4780 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4781 F:      include/linux/dccp.h
4782 F:      include/linux/tfrc.h
4783 F:      include/uapi/linux/dccp.h
4784 F:      net/dccp/
4785
4786 DECnet NETWORK LAYER
4787 L:      [email protected]
4788 S:      Orphan
4789 W:      http://linux-decnet.sourceforge.net
4790 F:      Documentation/networking/decnet.rst
4791 F:      net/decnet/
4792
4793 DECSTATION PLATFORM SUPPORT
4794 M:      "Maciej W. Rozycki" <[email protected]>
4795 L:      [email protected]
4796 S:      Maintained
4797 W:      http://www.linux-mips.org/wiki/DECstation
4798 F:      arch/mips/dec/
4799 F:      arch/mips/include/asm/dec/
4800 F:      arch/mips/include/asm/mach-dec/
4801
4802 DEFXX FDDI NETWORK DRIVER
4803 M:      "Maciej W. Rozycki" <[email protected]>
4804 S:      Maintained
4805 F:      drivers/net/fddi/defxx.*
4806
4807 DEFZA FDDI NETWORK DRIVER
4808 M:      "Maciej W. Rozycki" <[email protected]>
4809 S:      Maintained
4810 F:      drivers/net/fddi/defza.*
4811
4812 DEINTERLACE DRIVERS FOR ALLWINNER H3
4813 M:      Jernej Skrabec <[email protected]>
4814 L:      [email protected]
4815 S:      Maintained
4816 T:      git git://linuxtv.org/media_tree.git
4817 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4818 F:      drivers/media/platform/sunxi/sun8i-di/
4819
4820 DELL LAPTOP DRIVER
4821 M:      Matthew Garrett <[email protected]>
4822 M:      Pali Rohár <[email protected]>
4823 L:      [email protected]
4824 S:      Maintained
4825 F:      drivers/platform/x86/dell-laptop.c
4826
4827 DELL LAPTOP FREEFALL DRIVER
4828 M:      Pali Rohár <[email protected]>
4829 S:      Maintained
4830 F:      drivers/platform/x86/dell-smo8800.c
4831
4832 DELL LAPTOP RBTN DRIVER
4833 M:      Pali Rohár <[email protected]>
4834 S:      Maintained
4835 F:      drivers/platform/x86/dell-rbtn.*
4836
4837 DELL LAPTOP SMM DRIVER
4838 M:      Pali Rohár <[email protected]>
4839 S:      Maintained
4840 F:      drivers/hwmon/dell-smm-hwmon.c
4841 F:      include/uapi/linux/i8k.h
4842
4843 DELL REMOTE BIOS UPDATE DRIVER
4844 M:      Stuart Hayes <[email protected]>
4845 L:      [email protected]
4846 S:      Maintained
4847 F:      drivers/platform/x86/dell_rbu.c
4848
4849 DELL SMBIOS DRIVER
4850 M:      Pali Rohár <[email protected]>
4851 M:      Mario Limonciello <[email protected]>
4852 L:      [email protected]
4853 S:      Maintained
4854 F:      drivers/platform/x86/dell-smbios.*
4855
4856 DELL SMBIOS SMM DRIVER
4857 M:      Mario Limonciello <[email protected]>
4858 L:      [email protected]
4859 S:      Maintained
4860 F:      drivers/platform/x86/dell-smbios-smm.c
4861
4862 DELL SMBIOS WMI DRIVER
4863 M:      Mario Limonciello <[email protected]>
4864 L:      [email protected]
4865 S:      Maintained
4866 F:      drivers/platform/x86/dell-smbios-wmi.c
4867 F:      tools/wmi/dell-smbios-example.c
4868
4869 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4870 M:      Stuart Hayes <[email protected]>
4871 L:      [email protected]
4872 S:      Maintained
4873 F:      Documentation/driver-api/dcdbas.rst
4874 F:      drivers/platform/x86/dcdbas.*
4875
4876 DELL WMI DESCRIPTOR DRIVER
4877 M:      Mario Limonciello <[email protected]>
4878 S:      Maintained
4879 F:      drivers/platform/x86/dell-wmi-descriptor.c
4880
4881 DELL WMI NOTIFICATIONS DRIVER
4882 M:      Matthew Garrett <[email protected]>
4883 M:      Pali Rohár <[email protected]>
4884 S:      Maintained
4885 F:      drivers/platform/x86/dell-wmi.c
4886
4887 DELTA ST MEDIA DRIVER
4888 M:      Hugues Fruchet <[email protected]>
4889 L:      [email protected]
4890 S:      Supported
4891 W:      https://linuxtv.org
4892 T:      git git://linuxtv.org/media_tree.git
4893 F:      drivers/media/platform/sti/delta
4894
4895 DENALI NAND DRIVER
4896 M:      Masahiro Yamada <[email protected]>
4897 L:      [email protected]
4898 S:      Supported
4899 F:      drivers/mtd/nand/raw/denali*
4900
4901 DESIGNWARE EDMA CORE IP DRIVER
4902 M:      Gustavo Pimentel <[email protected]>
4903 L:      [email protected]
4904 S:      Maintained
4905 F:      drivers/dma/dw-edma/
4906 F:      include/linux/dma/edma.h
4907
4908 DESIGNWARE USB2 DRD IP DRIVER
4909 M:      Minas Harutyunyan <[email protected]>
4910 L:      [email protected]
4911 S:      Maintained
4912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4913 F:      drivers/usb/dwc2/
4914
4915 DESIGNWARE USB3 DRD IP DRIVER
4916 M:      Felipe Balbi <[email protected]>
4917 L:      [email protected]
4918 S:      Maintained
4919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4920 F:      drivers/usb/dwc3/
4921
4922 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4923 M:      Andreas Klinger <[email protected]>
4924 L:      [email protected]
4925 S:      Maintained
4926 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4927 F:      drivers/iio/proximity/srf*.c
4928
4929 DEVICE COREDUMP (DEV_COREDUMP)
4930 M:      Johannes Berg <[email protected]>
4931 L:      [email protected]
4932 S:      Maintained
4933 F:      drivers/base/devcoredump.c
4934 F:      include/linux/devcoredump.h
4935
4936 DEVICE DIRECT ACCESS (DAX)
4937 M:      Dan Williams <[email protected]>
4938 M:      Vishal Verma <[email protected]>
4939 M:      Dave Jiang <[email protected]>
4940 L:      [email protected]
4941 S:      Supported
4942 F:      drivers/dax/
4943
4944 DEVICE FREQUENCY (DEVFREQ)
4945 M:      MyungJoo Ham <[email protected]>
4946 M:      Kyungmin Park <[email protected]>
4947 M:      Chanwoo Choi <[email protected]>
4948 L:      [email protected]
4949 S:      Maintained
4950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4951 F:      Documentation/devicetree/bindings/devfreq/
4952 F:      drivers/devfreq/
4953 F:      include/linux/devfreq.h
4954 F:      include/trace/events/devfreq.h
4955
4956 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4957 M:      Chanwoo Choi <[email protected]>
4958 L:      [email protected]
4959 S:      Supported
4960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4961 F:      Documentation/devicetree/bindings/devfreq/event/
4962 F:      drivers/devfreq/devfreq-event.c
4963 F:      drivers/devfreq/event/
4964 F:      include/dt-bindings/pmu/exynos_ppmu.h
4965 F:      include/linux/devfreq-event.h
4966
4967 DEVICE NUMBER REGISTRY
4968 M:      Torben Mathiasen <[email protected]>
4969 S:      Maintained
4970 W:      http://lanana.org/docs/device-list/index.html
4971
4972 DEVICE-MAPPER  (LVM)
4973 M:      Alasdair Kergon <[email protected]>
4974 M:      Mike Snitzer <[email protected]>
4975 M:      [email protected]
4976 L:      [email protected]
4977 S:      Maintained
4978 W:      http://sources.redhat.com/dm
4979 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4981 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4982 F:      Documentation/admin-guide/device-mapper/
4983 F:      drivers/md/Kconfig
4984 F:      drivers/md/Makefile
4985 F:      drivers/md/dm*
4986 F:      drivers/md/persistent-data/
4987 F:      include/linux/device-mapper.h
4988 F:      include/linux/dm-*.h
4989 F:      include/uapi/linux/dm-*.h
4990
4991 DEVLINK
4992 M:      Jiri Pirko <[email protected]>
4993 L:      [email protected]
4994 S:      Supported
4995 F:      Documentation/networking/devlink
4996 F:      include/net/devlink.h
4997 F:      include/uapi/linux/devlink.h
4998 F:      net/core/devlink.c
4999
5000 DIALOG SEMICONDUCTOR DRIVERS
5001 M:      Support Opensource <[email protected]>
5002 S:      Supported
5003 W:      http://www.dialog-semiconductor.com/products
5004 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5005 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5006 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5007 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5008 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5009 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5010 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5011 F:      Documentation/hwmon/da90??.rst
5012 F:      drivers/gpio/gpio-da90??.c
5013 F:      drivers/hwmon/da90??-hwmon.c
5014 F:      drivers/iio/adc/da91??-*.c
5015 F:      drivers/input/misc/da90??_onkey.c
5016 F:      drivers/input/touchscreen/da9052_tsi.c
5017 F:      drivers/leds/leds-da90??.c
5018 F:      drivers/mfd/da903x.c
5019 F:      drivers/mfd/da90??-*.c
5020 F:      drivers/mfd/da91??-*.c
5021 F:      drivers/pinctrl/pinctrl-da90??.c
5022 F:      drivers/power/supply/da9052-battery.c
5023 F:      drivers/power/supply/da91??-*.c
5024 F:      drivers/regulator/da903x.c
5025 F:      drivers/regulator/da9???-regulator.[ch]
5026 F:      drivers/regulator/slg51000-regulator.[ch]
5027 F:      drivers/rtc/rtc-da90??.c
5028 F:      drivers/thermal/da90??-thermal.c
5029 F:      drivers/video/backlight/da90??_bl.c
5030 F:      drivers/watchdog/da90??_wdt.c
5031 F:      include/linux/mfd/da903x.h
5032 F:      include/linux/mfd/da9052/
5033 F:      include/linux/mfd/da9055/
5034 F:      include/linux/mfd/da9062/
5035 F:      include/linux/mfd/da9063/
5036 F:      include/linux/mfd/da9150/
5037 F:      include/linux/regulator/da9211.h
5038 F:      include/sound/da[79]*.h
5039 F:      sound/soc/codecs/da[79]*.[ch]
5040
5041 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5042 M:      William Breathitt Gray <[email protected]>
5043 L:      [email protected]
5044 S:      Maintained
5045 F:      drivers/gpio/gpio-gpio-mm.c
5046
5047 DIOLAN U2C-12 I2C DRIVER
5048 M:      Guenter Roeck <[email protected]>
5049 L:      [email protected]
5050 S:      Maintained
5051 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5052
5053 DIRECTORY NOTIFICATION (DNOTIFY)
5054 M:      Jan Kara <[email protected]>
5055 R:      Amir Goldstein <[email protected]>
5056 L:      [email protected]
5057 S:      Maintained
5058 F:      Documentation/filesystems/dnotify.rst
5059 F:      fs/notify/dnotify/
5060 F:      include/linux/dnotify.h
5061
5062 DISK GEOMETRY AND PARTITION HANDLING
5063 M:      Andries Brouwer <[email protected]>
5064 S:      Maintained
5065 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5066 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5067 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5068
5069 DISKQUOTA
5070 M:      Jan Kara <[email protected]>
5071 S:      Maintained
5072 F:      Documentation/filesystems/quota.rst
5073 F:      fs/quota/
5074 F:      include/linux/quota*.h
5075 F:      include/uapi/linux/quota*.h
5076
5077 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5078 M:      Bernie Thompson <[email protected]>
5079 L:      [email protected]
5080 S:      Maintained
5081 W:      http://plugable.com/category/projects/udlfb/
5082 F:      Documentation/fb/udlfb.rst
5083 F:      drivers/video/fbdev/udlfb.c
5084 F:      include/video/udlfb.h
5085
5086 DISTRIBUTED LOCK MANAGER (DLM)
5087 M:      Christine Caulfield <[email protected]>
5088 M:      David Teigland <[email protected]>
5089 L:      [email protected]
5090 S:      Supported
5091 W:      http://sources.redhat.com/cluster/
5092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5093 F:      fs/dlm/
5094
5095 DMA BUFFER SHARING FRAMEWORK
5096 M:      Sumit Semwal <[email protected]>
5097 L:      [email protected]
5098 L:      [email protected]
5099 L:      [email protected] (moderated for non-subscribers)
5100 S:      Maintained
5101 T:      git git://anongit.freedesktop.org/drm/drm-misc
5102 F:      Documentation/driver-api/dma-buf.rst
5103 F:      drivers/dma-buf/
5104 F:      include/linux/*fence.h
5105 F:      include/linux/dma-buf*
5106 F:      include/linux/dma-resv.h
5107 K:      \bdma_(?:buf|fence|resv)\b
5108
5109 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5110 M:      Vinod Koul <[email protected]>
5111 L:      [email protected]
5112 S:      Maintained
5113 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5114 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
5115 F:      Documentation/devicetree/bindings/dma/
5116 F:      Documentation/driver-api/dmaengine/
5117 F:      drivers/dma/
5118 F:      include/linux/dmaengine.h
5119 F:      include/linux/of_dma.h
5120
5121 DMA MAPPING HELPERS
5122 M:      Christoph Hellwig <[email protected]>
5123 M:      Marek Szyprowski <[email protected]>
5124 R:      Robin Murphy <[email protected]>
5125 L:      [email protected]
5126 S:      Supported
5127 W:      http://git.infradead.org/users/hch/dma-mapping.git
5128 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5129 F:      include/asm-generic/dma-mapping.h
5130 F:      include/linux/dma-direct.h
5131 F:      include/linux/dma-mapping.h
5132 F:      include/linux/dma-noncoherent.h
5133 F:      kernel/dma/
5134
5135 DMA-BUF HEAPS FRAMEWORK
5136 M:      Sumit Semwal <[email protected]>
5137 R:      Andrew F. Davis <[email protected]>
5138 R:      Benjamin Gaignard <[email protected]>
5139 R:      Liam Mark <[email protected]>
5140 R:      Laura Abbott <[email protected]>
5141 R:      Brian Starkey <[email protected]>
5142 R:      John Stultz <[email protected]>
5143 L:      [email protected]
5144 L:      [email protected]
5145 L:      [email protected] (moderated for non-subscribers)
5146 S:      Maintained
5147 T:      git git://anongit.freedesktop.org/drm/drm-misc
5148 F:      drivers/dma-buf/dma-heap.c
5149 F:      drivers/dma-buf/heaps/*
5150 F:      include/linux/dma-heap.h
5151 F:      include/uapi/linux/dma-heap.h
5152
5153 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5154 M:      Lukasz Luba <[email protected]>
5155 L:      [email protected]
5156 L:      [email protected]
5157 S:      Maintained
5158 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5159 F:      drivers/memory/samsung/exynos5422-dmc.c
5160
5161 DME1737 HARDWARE MONITOR DRIVER
5162 M:      Juerg Haefliger <[email protected]>
5163 L:      [email protected]
5164 S:      Maintained
5165 F:      Documentation/hwmon/dme1737.rst
5166 F:      drivers/hwmon/dme1737.c
5167
5168 DMI/SMBIOS SUPPORT
5169 M:      Jean Delvare <[email protected]>
5170 S:      Maintained
5171 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5172 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5173 F:      drivers/firmware/dmi-id.c
5174 F:      drivers/firmware/dmi_scan.c
5175 F:      include/linux/dmi.h
5176
5177 DOCUMENTATION
5178 M:      Jonathan Corbet <[email protected]>
5179 L:      [email protected]
5180 S:      Maintained
5181 T:      git git://git.lwn.net/linux.git docs-next
5182 F:      Documentation/
5183 F:      scripts/documentation-file-ref-check
5184 F:      scripts/kernel-doc
5185 F:      scripts/sphinx-pre-install
5186 X:      Documentation/ABI/
5187 X:      Documentation/admin-guide/media/
5188 X:      Documentation/devicetree/
5189 X:      Documentation/driver-api/media/
5190 X:      Documentation/firmware-guide/acpi/
5191 X:      Documentation/i2c/
5192 X:      Documentation/power/
5193 X:      Documentation/spi/
5194 X:      Documentation/userspace-api/media/
5195
5196 DOCUMENTATION SCRIPTS
5197 M:      Mauro Carvalho Chehab <[email protected]>
5198 L:      [email protected]
5199 S:      Maintained
5200 F:      Documentation/sphinx/parse-headers.pl
5201 F:      scripts/documentation-file-ref-check
5202 F:      scripts/sphinx-pre-install
5203
5204 DOCUMENTATION/ITALIAN
5205 M:      Federico Vaga <[email protected]>
5206 L:      [email protected]
5207 S:      Maintained
5208 F:      Documentation/translations/it_IT
5209
5210 DONGWOON DW9714 LENS VOICE COIL DRIVER
5211 M:      Sakari Ailus <[email protected]>
5212 L:      [email protected]
5213 S:      Maintained
5214 T:      git git://linuxtv.org/media_tree.git
5215 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5216 F:      drivers/media/i2c/dw9714.c
5217
5218 DONGWOON DW9807 LENS VOICE COIL DRIVER
5219 M:      Sakari Ailus <[email protected]>
5220 L:      [email protected]
5221 S:      Maintained
5222 T:      git git://linuxtv.org/media_tree.git
5223 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5224 F:      drivers/media/i2c/dw9807-vcm.c
5225
5226 DOUBLETALK DRIVER
5227 M:      "James R. Van Zandt" <[email protected]>
5228 L:      [email protected]
5229 S:      Maintained
5230 F:      drivers/char/dtlk.c
5231 F:      include/linux/dtlk.h
5232
5233 DPAA2 DATAPATH I/O (DPIO) DRIVER
5234 M:      Roy Pledge <[email protected]>
5235 L:      [email protected]
5236 S:      Maintained
5237 F:      drivers/soc/fsl/dpio
5238
5239 DPAA2 ETHERNET DRIVER
5240 M:      Ioana Ciornei <[email protected]>
5241 M:      Ioana Radulescu <[email protected]>
5242 L:      [email protected]
5243 S:      Maintained
5244 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5245 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5246 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5247 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5248 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5249 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5250 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5251 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5252 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5253
5254 DPAA2 ETHERNET SWITCH DRIVER
5255 M:      Ioana Radulescu <[email protected]>
5256 M:      Ioana Ciornei <[email protected]>
5257 L:      [email protected]
5258 S:      Maintained
5259 F:      drivers/staging/fsl-dpaa2/ethsw
5260
5261 DPT_I2O SCSI RAID DRIVER
5262 M:      Adaptec OEM Raid Solutions <[email protected]>
5263 L:      [email protected]
5264 S:      Maintained
5265 W:      http://www.adaptec.com/
5266 F:      drivers/scsi/dpt*
5267 F:      drivers/scsi/dpt/
5268
5269 DRBD DRIVER
5270 M:      Philipp Reisner <[email protected]>
5271 M:      Lars Ellenberg <[email protected]>
5272 L:      [email protected]
5273 S:      Supported
5274 W:      http://www.drbd.org
5275 T:      git git://git.linbit.com/linux-drbd.git
5276 T:      git git://git.linbit.com/drbd-8.4.git
5277 F:      Documentation/admin-guide/blockdev/
5278 F:      drivers/block/drbd/
5279 F:      lib/lru_cache.c
5280
5281 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5282 M:      Greg Kroah-Hartman <[email protected]>
5283 R:      "Rafael J. Wysocki" <[email protected]>
5284 S:      Supported
5285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5286 F:      Documentation/core-api/kobject.rst
5287 F:      drivers/base/
5288 F:      fs/debugfs/
5289 F:      fs/sysfs/
5290 F:      include/linux/debugfs.h
5291 F:      include/linux/kobj*
5292 F:      lib/kobj*
5293
5294 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5295 M:      Kevin Hilman <[email protected]>
5296 M:      Nishanth Menon <[email protected]>
5297 L:      [email protected]
5298 S:      Maintained
5299 F:      drivers/power/avs/
5300 F:      include/linux/power/smartreflex.h
5301
5302 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5303 M:      Maxime Ripard <[email protected]>
5304 M:      Chen-Yu Tsai <[email protected]>
5305 R:      Jernej Skrabec <[email protected]>
5306 L:      [email protected]
5307 S:      Supported
5308 T:      git git://anongit.freedesktop.org/drm/drm-misc
5309 F:      drivers/gpu/drm/sun4i/sun8i*
5310
5311 DRM DRIVER FOR ARM PL111 CLCD
5312 M:      Eric Anholt <[email protected]>
5313 S:      Supported
5314 T:      git git://anongit.freedesktop.org/drm/drm-misc
5315 F:      drivers/gpu/drm/pl111/
5316
5317 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5318 M:      Linus Walleij <[email protected]>
5319 S:      Maintained
5320 T:      git git://anongit.freedesktop.org/drm/drm-misc
5321 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5322 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5323
5324 DRM DRIVER FOR ASPEED BMC GFX
5325 M:      Joel Stanley <[email protected]>
5326 L:      [email protected]
5327 S:      Supported
5328 T:      git git://anongit.freedesktop.org/drm/drm-misc
5329 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5330 F:      drivers/gpu/drm/aspeed/
5331
5332 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5333 M:      Dave Airlie <[email protected]>
5334 S:      Odd Fixes
5335 F:      drivers/gpu/drm/ast/
5336
5337 DRM DRIVER FOR BOCHS VIRTUAL GPU
5338 M:      Gerd Hoffmann <[email protected]>
5339 L:      [email protected]
5340 S:      Maintained
5341 T:      git git://anongit.freedesktop.org/drm/drm-misc
5342 F:      drivers/gpu/drm/bochs/
5343
5344 DRM DRIVER FOR BOE HIMAX8279D PANELS
5345 M:      Jerry Han <[email protected]>
5346 S:      Maintained
5347 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5348 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5349
5350 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5351 M:      Linus Walleij <[email protected]>
5352 S:      Maintained
5353 T:      git git://anongit.freedesktop.org/drm/drm-misc
5354 F:      drivers/gpu/drm/tve200/
5355
5356 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5357 M:      Icenowy Zheng <[email protected]>
5358 S:      Maintained
5359 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5360 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5361
5362 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5363 M:      Jagan Teki <[email protected]>
5364 S:      Maintained
5365 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5366 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5367
5368 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5369 M:      Hans de Goede <[email protected]>
5370 S:      Maintained
5371 T:      git git://anongit.freedesktop.org/drm/drm-misc
5372 F:      drivers/gpu/drm/tiny/gm12u320.c
5373
5374 DRM DRIVER FOR HX8357D PANELS
5375 M:      Eric Anholt <[email protected]>
5376 S:      Maintained
5377 T:      git git://anongit.freedesktop.org/drm/drm-misc
5378 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5379 F:      drivers/gpu/drm/tiny/hx8357d.c
5380
5381 DRM DRIVER FOR ILITEK ILI9225 PANELS
5382 M:      David Lechner <[email protected]>
5383 S:      Maintained
5384 T:      git git://anongit.freedesktop.org/drm/drm-misc
5385 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5386 F:      drivers/gpu/drm/tiny/ili9225.c
5387
5388 DRM DRIVER FOR ILITEK ILI9486 PANELS
5389 M:      Kamlesh Gurudasani <[email protected]>
5390 S:      Maintained
5391 T:      git git://anongit.freedesktop.org/drm/drm-misc
5392 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5393 F:      drivers/gpu/drm/tiny/ili9486.c
5394
5395 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5396 S:      Orphan / Obsolete
5397 F:      drivers/gpu/drm/i810/
5398 F:      include/uapi/drm/i810_drm.h
5399
5400 DRM DRIVER FOR LVDS PANELS
5401 M:      Laurent Pinchart <[email protected]>
5402 L:      [email protected]
5403 T:      git git://anongit.freedesktop.org/drm/drm-misc
5404 S:      Maintained
5405 F:      drivers/gpu/drm/panel/panel-lvds.c
5406 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5407
5408 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5409 S:      Orphan / Obsolete
5410 F:      drivers/gpu/drm/mga/
5411 F:      include/uapi/drm/mga_drm.h
5412
5413 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5414 M:      Dave Airlie <[email protected]>
5415 S:      Odd Fixes
5416 F:      drivers/gpu/drm/mgag200/
5417
5418 DRM DRIVER FOR MI0283QT
5419 M:      Noralf Trønnes <[email protected]>
5420 S:      Maintained
5421 T:      git git://anongit.freedesktop.org/drm/drm-misc
5422 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5423 F:      drivers/gpu/drm/tiny/mi0283qt.c
5424
5425 DRM DRIVER FOR MSM ADRENO GPU
5426 M:      Rob Clark <[email protected]>
5427 M:      Sean Paul <[email protected]>
5428 L:      [email protected]
5429 L:      [email protected]
5430 L:      [email protected]
5431 S:      Maintained
5432 T:      git https://gitlab.freedesktop.org/drm/msm.git
5433 F:      Documentation/devicetree/bindings/display/msm/
5434 F:      drivers/gpu/drm/msm/
5435 F:      include/uapi/drm/msm_drm.h
5436
5437 DRM DRIVER FOR NOVATEK NT35510 PANELS
5438 M:      Linus Walleij <[email protected]>
5439 S:      Maintained
5440 T:      git git://anongit.freedesktop.org/drm/drm-misc
5441 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5442 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5443
5444 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5445 M:      Ben Skeggs <[email protected]>
5446 L:      [email protected]
5447 L:      [email protected]
5448 S:      Supported
5449 T:      git git://github.com/skeggsb/linux
5450 F:      drivers/gpu/drm/nouveau/
5451 F:      include/uapi/drm/nouveau_drm.h
5452
5453 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5454 M:      Stefan Mavrodiev <[email protected]>
5455 S:      Maintained
5456 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5457 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5458
5459 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5460 M:      Noralf Trønnes <[email protected]>
5461 S:      Maintained
5462 T:      git git://anongit.freedesktop.org/drm/drm-misc
5463 F:      Documentation/devicetree/bindings/display/repaper.txt
5464 F:      drivers/gpu/drm/tiny/repaper.c
5465
5466 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5467 M:      Dave Airlie <[email protected]>
5468 M:      Gerd Hoffmann <[email protected]>
5469 L:      [email protected]
5470 S:      Obsolete
5471 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5472 T:      git git://anongit.freedesktop.org/drm/drm-misc
5473 F:      drivers/gpu/drm/tiny/cirrus.c
5474
5475 DRM DRIVER FOR QXL VIRTUAL GPU
5476 M:      Dave Airlie <[email protected]>
5477 M:      Gerd Hoffmann <[email protected]>
5478 L:      [email protected]
5479 L:      [email protected]
5480 S:      Maintained
5481 T:      git git://anongit.freedesktop.org/drm/drm-misc
5482 F:      drivers/gpu/drm/qxl/
5483 F:      include/uapi/drm/qxl_drm.h
5484
5485 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5486 S:      Orphan / Obsolete
5487 F:      drivers/gpu/drm/r128/
5488 F:      include/uapi/drm/r128_drm.h
5489
5490 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5491 M:      Robert Chiras <[email protected]>
5492 S:      Maintained
5493 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5494 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5495
5496 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5497 M:      Guido Günther <[email protected]>
5498 R:      Purism Kernel Team <[email protected]>
5499 S:      Maintained
5500 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5501 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5502
5503 DRM DRIVER FOR SAVAGE VIDEO CARDS
5504 S:      Orphan / Obsolete
5505 F:      drivers/gpu/drm/savage/
5506 F:      include/uapi/drm/savage_drm.h
5507
5508 DRM DRIVER FOR SIS VIDEO CARDS
5509 S:      Orphan / Obsolete
5510 F:      drivers/gpu/drm/sis/
5511 F:      include/uapi/drm/sis_drm.h
5512
5513 DRM DRIVER FOR SITRONIX ST7586 PANELS
5514 M:      David Lechner <[email protected]>
5515 S:      Maintained
5516 T:      git git://anongit.freedesktop.org/drm/drm-misc
5517 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5518 F:      drivers/gpu/drm/tiny/st7586.c
5519
5520 DRM DRIVER FOR SITRONIX ST7701 PANELS
5521 M:      Jagan Teki <[email protected]>
5522 S:      Maintained
5523 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5524 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5525
5526 DRM DRIVER FOR SITRONIX ST7735R PANELS
5527 M:      David Lechner <[email protected]>
5528 S:      Maintained
5529 T:      git git://anongit.freedesktop.org/drm/drm-misc
5530 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5531 F:      drivers/gpu/drm/tiny/st7735r.c
5532
5533 DRM DRIVER FOR SONY ACX424AKP PANELS
5534 M:      Linus Walleij <[email protected]>
5535 S:      Maintained
5536 T:      git git://anongit.freedesktop.org/drm/drm-misc
5537 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5538
5539 DRM DRIVER FOR ST-ERICSSON MCDE
5540 M:      Linus Walleij <[email protected]>
5541 S:      Maintained
5542 T:      git git://anongit.freedesktop.org/drm/drm-misc
5543 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5544 F:      drivers/gpu/drm/mcde/
5545
5546 DRM DRIVER FOR TDFX VIDEO CARDS
5547 S:      Orphan / Obsolete
5548 F:      drivers/gpu/drm/tdfx/
5549
5550 DRM DRIVER FOR TPO TPG110 PANELS
5551 M:      Linus Walleij <[email protected]>
5552 S:      Maintained
5553 T:      git git://anongit.freedesktop.org/drm/drm-misc
5554 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5555 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5556
5557 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5558 M:      Dave Airlie <[email protected]>
5559 R:      Sean Paul <[email protected]>
5560 L:      [email protected]
5561 S:      Odd Fixes
5562 T:      git git://anongit.freedesktop.org/drm/drm-misc
5563 F:      drivers/gpu/drm/udl/
5564
5565 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5566 M:      Rodrigo Siqueira <[email protected]>
5567 R:      Haneen Mohammed <[email protected]>
5568 R:      Daniel Vetter <[email protected]>
5569 L:      [email protected]
5570 S:      Maintained
5571 T:      git git://anongit.freedesktop.org/drm/drm-misc
5572 F:      Documentation/gpu/vkms.rst
5573 F:      drivers/gpu/drm/vkms/
5574
5575 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5576 M:      Hans de Goede <[email protected]>
5577 L:      [email protected]
5578 S:      Maintained
5579 T:      git git://anongit.freedesktop.org/drm/drm-misc
5580 F:      drivers/gpu/drm/vboxvideo/
5581
5582 DRM DRIVER FOR VMWARE VIRTUAL GPU
5583 M:      "VMware Graphics" <[email protected]>
5584 M:      Roland Scheidegger <[email protected]>
5585 L:      [email protected]
5586 S:      Supported
5587 T:      git git://people.freedesktop.org/~sroland/linux
5588 F:      drivers/gpu/drm/vmwgfx/
5589 F:      include/uapi/drm/vmwgfx_drm.h
5590
5591 DRM DRIVERS
5592 M:      David Airlie <[email protected]>
5593 M:      Daniel Vetter <[email protected]>
5594 L:      [email protected]
5595 S:      Maintained
5596 B:      https://bugs.freedesktop.org/
5597 C:      irc://chat.freenode.net/dri-devel
5598 T:      git git://anongit.freedesktop.org/drm/drm
5599 F:      Documentation/devicetree/bindings/display/
5600 F:      Documentation/devicetree/bindings/gpu/
5601 F:      Documentation/gpu/
5602 F:      drivers/gpu/drm/
5603 F:      drivers/gpu/vga/
5604 F:      include/drm/
5605 F:      include/linux/vga*
5606 F:      include/uapi/drm/
5607
5608 DRM DRIVERS AND MISC GPU PATCHES
5609 M:      Maarten Lankhorst <[email protected]>
5610 M:      Maxime Ripard <[email protected]>
5611 M:      Thomas Zimmermann <[email protected]>
5612 S:      Maintained
5613 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5614 T:      git git://anongit.freedesktop.org/drm/drm-misc
5615 F:      Documentation/gpu/
5616 F:      drivers/gpu/drm/*
5617 F:      drivers/gpu/vga/
5618 F:      include/drm/drm*
5619 F:      include/linux/vga*
5620 F:      include/uapi/drm/drm*
5621
5622 DRM DRIVERS FOR ALLWINNER A10
5623 M:      Maxime Ripard <[email protected]>
5624 M:      Chen-Yu Tsai <[email protected]>
5625 L:      [email protected]
5626 S:      Supported
5627 T:      git git://anongit.freedesktop.org/drm/drm-misc
5628 F:      Documentation/devicetree/bindings/display/allwinner*
5629 F:      drivers/gpu/drm/sun4i/
5630
5631 DRM DRIVERS FOR AMLOGIC SOCS
5632 M:      Neil Armstrong <[email protected]>
5633 L:      [email protected]
5634 L:      [email protected]
5635 S:      Supported
5636 W:      http://linux-meson.com/
5637 T:      git git://anongit.freedesktop.org/drm/drm-misc
5638 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5639 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5640 F:      Documentation/gpu/meson.rst
5641 F:      drivers/gpu/drm/meson/
5642
5643 DRM DRIVERS FOR ATMEL HLCDC
5644 M:      Sam Ravnborg <[email protected]>
5645 M:      Boris Brezillon <[email protected]>
5646 L:      [email protected]
5647 S:      Supported
5648 T:      git git://anongit.freedesktop.org/drm/drm-misc
5649 F:      Documentation/devicetree/bindings/display/atmel/
5650 F:      drivers/gpu/drm/atmel-hlcdc/
5651
5652 DRM DRIVERS FOR BRIDGE CHIPS
5653 M:      Andrzej Hajda <[email protected]>
5654 M:      Neil Armstrong <[email protected]>
5655 R:      Laurent Pinchart <[email protected]>
5656 R:      Jonas Karlman <[email protected]>
5657 R:      Jernej Skrabec <[email protected]>
5658 S:      Maintained
5659 T:      git git://anongit.freedesktop.org/drm/drm-misc
5660 F:      drivers/gpu/drm/bridge/
5661
5662 DRM DRIVERS FOR EXYNOS
5663 M:      Inki Dae <[email protected]>
5664 M:      Joonyoung Shim <[email protected]>
5665 M:      Seung-Woo Kim <[email protected]>
5666 M:      Kyungmin Park <[email protected]>
5667 L:      [email protected]
5668 S:      Supported
5669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5670 F:      Documentation/devicetree/bindings/display/exynos/
5671 F:      drivers/gpu/drm/exynos/
5672 F:      include/uapi/drm/exynos_drm.h
5673
5674 DRM DRIVERS FOR FREESCALE DCU
5675 M:      Stefan Agner <[email protected]>
5676 M:      Alison Wang <[email protected]>
5677 L:      [email protected]
5678 S:      Supported
5679 T:      git git://anongit.freedesktop.org/drm/drm-misc
5680 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5681 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5682 F:      drivers/gpu/drm/fsl-dcu/
5683
5684 DRM DRIVERS FOR FREESCALE IMX
5685 M:      Philipp Zabel <[email protected]>
5686 L:      [email protected]
5687 S:      Maintained
5688 F:      Documentation/devicetree/bindings/display/imx/
5689 F:      drivers/gpu/drm/imx/
5690 F:      drivers/gpu/ipu-v3/
5691
5692 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5693 M:      Patrik Jakobsson <[email protected]>
5694 L:      [email protected]
5695 S:      Maintained
5696 T:      git git://github.com/patjak/drm-gma500
5697 F:      drivers/gpu/drm/gma500/
5698
5699 DRM DRIVERS FOR HISILICON
5700 M:      Xinliang Liu <[email protected]>
5701 M:      Rongrong Zou <[email protected]>
5702 R:      John Stultz <[email protected]>
5703 R:      Xinwei Kong <[email protected]>
5704 R:      Chen Feng <[email protected]>
5705 L:      [email protected]
5706 S:      Maintained
5707 T:      git git://anongit.freedesktop.org/drm/drm-misc
5708 F:      Documentation/devicetree/bindings/display/hisilicon/
5709 F:      drivers/gpu/drm/hisilicon/
5710
5711 DRM DRIVERS FOR LIMA
5712 M:      Qiang Yu <[email protected]>
5713 L:      [email protected]
5714 L:      [email protected] (moderated for non-subscribers)
5715 S:      Maintained
5716 T:      git git://anongit.freedesktop.org/drm/drm-misc
5717 F:      drivers/gpu/drm/lima/
5718 F:      include/uapi/drm/lima_drm.h
5719
5720 DRM DRIVERS FOR MEDIATEK
5721 M:      Chun-Kuang Hu <[email protected]>
5722 M:      Philipp Zabel <[email protected]>
5723 L:      [email protected]
5724 S:      Supported
5725 F:      Documentation/devicetree/bindings/display/mediatek/
5726 F:      drivers/gpu/drm/mediatek/
5727
5728 DRM DRIVERS FOR NVIDIA TEGRA
5729 M:      Thierry Reding <[email protected]>
5730 L:      [email protected]
5731 L:      [email protected]
5732 S:      Supported
5733 T:      git git://anongit.freedesktop.org/tegra/linux.git
5734 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5735 F:      drivers/gpu/drm/tegra/
5736 F:      drivers/gpu/host1x/
5737 F:      include/linux/host1x.h
5738 F:      include/uapi/drm/tegra_drm.h
5739
5740 DRM DRIVERS FOR RENESAS
5741 M:      Laurent Pinchart <[email protected]>
5742 M:      Kieran Bingham <[email protected]>
5743 L:      [email protected]
5744 L:      [email protected]
5745 S:      Supported
5746 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5747 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5748 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5749 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5750 F:      drivers/gpu/drm/rcar-du/
5751 F:      drivers/gpu/drm/shmobile/
5752 F:      include/linux/platform_data/shmob_drm.h
5753
5754 DRM DRIVERS FOR ROCKCHIP
5755 M:      Sandy Huang <[email protected]>
5756 M:      Heiko Stübner <[email protected]>
5757 L:      [email protected]
5758 S:      Maintained
5759 T:      git git://anongit.freedesktop.org/drm/drm-misc
5760 F:      Documentation/devicetree/bindings/display/rockchip/
5761 F:      drivers/gpu/drm/rockchip/
5762
5763 DRM DRIVERS FOR STI
5764 M:      Benjamin Gaignard <[email protected]>
5765 M:      Vincent Abriou <[email protected]>
5766 L:      [email protected]
5767 S:      Maintained
5768 T:      git git://anongit.freedesktop.org/drm/drm-misc
5769 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5770 F:      drivers/gpu/drm/sti
5771
5772 DRM DRIVERS FOR STM
5773 M:      Yannick Fertre <[email protected]>
5774 M:      Philippe Cornu <[email protected]>
5775 M:      Benjamin Gaignard <[email protected]>
5776 M:      Vincent Abriou <[email protected]>
5777 L:      [email protected]
5778 S:      Maintained
5779 T:      git git://anongit.freedesktop.org/drm/drm-misc
5780 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5781 F:      drivers/gpu/drm/stm
5782
5783 DRM DRIVERS FOR TI KEYSTONE
5784 M:      Jyri Sarha <[email protected]>
5785 M:      Tomi Valkeinen <[email protected]>
5786 L:      [email protected]
5787 S:      Maintained
5788 T:      git git://anongit.freedesktop.org/drm/drm-misc
5789 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5790 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5791 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5792 F:      drivers/gpu/drm/tidss/
5793
5794 DRM DRIVERS FOR TI LCDC
5795 M:      Jyri Sarha <[email protected]>
5796 R:      Tomi Valkeinen <[email protected]>
5797 L:      [email protected]
5798 S:      Maintained
5799 F:      Documentation/devicetree/bindings/display/tilcdc/
5800 F:      drivers/gpu/drm/tilcdc/
5801
5802 DRM DRIVERS FOR TI OMAP
5803 M:      Tomi Valkeinen <[email protected]>
5804 L:      [email protected]
5805 S:      Maintained
5806 F:      Documentation/devicetree/bindings/display/ti/
5807 F:      drivers/gpu/drm/omapdrm/
5808
5809 DRM DRIVERS FOR V3D
5810 M:      Eric Anholt <[email protected]>
5811 S:      Supported
5812 T:      git git://anongit.freedesktop.org/drm/drm-misc
5813 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5814 F:      drivers/gpu/drm/v3d/
5815 F:      include/uapi/drm/v3d_drm.h
5816
5817 DRM DRIVERS FOR VC4
5818 M:      Eric Anholt <[email protected]>
5819 S:      Supported
5820 T:      git git://github.com/anholt/linux
5821 T:      git git://anongit.freedesktop.org/drm/drm-misc
5822 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5823 F:      drivers/gpu/drm/vc4/
5824 F:      include/uapi/drm/vc4_drm.h
5825
5826 DRM DRIVERS FOR VIVANTE GPU IP
5827 M:      Lucas Stach <[email protected]>
5828 R:      Russell King <[email protected]>
5829 R:      Christian Gmeiner <[email protected]>
5830 L:      [email protected] (moderated for non-subscribers)
5831 L:      [email protected]
5832 S:      Maintained
5833 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5834 F:      drivers/gpu/drm/etnaviv/
5835 F:      include/uapi/drm/etnaviv_drm.h
5836
5837 DRM DRIVERS FOR XEN
5838 M:      Oleksandr Andrushchenko <[email protected]>
5839 L:      [email protected]
5840 L:      [email protected] (moderated for non-subscribers)
5841 S:      Supported
5842 T:      git git://anongit.freedesktop.org/drm/drm-misc
5843 F:      Documentation/gpu/xen-front.rst
5844 F:      drivers/gpu/drm/xen/
5845
5846 DRM DRIVERS FOR ZTE ZX
5847 M:      Shawn Guo <[email protected]>
5848 L:      [email protected]
5849 S:      Maintained
5850 T:      git git://anongit.freedesktop.org/drm/drm-misc
5851 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5852 F:      drivers/gpu/drm/zte/
5853
5854 DRM PANEL DRIVERS
5855 M:      Thierry Reding <[email protected]>
5856 R:      Sam Ravnborg <[email protected]>
5857 L:      [email protected]
5858 S:      Maintained
5859 T:      git git://anongit.freedesktop.org/drm/drm-misc
5860 F:      Documentation/devicetree/bindings/display/panel/
5861 F:      drivers/gpu/drm/drm_panel.c
5862 F:      drivers/gpu/drm/panel/
5863 F:      include/drm/drm_panel.h
5864
5865 DRM TTM SUBSYSTEM
5866 M:      Christian Koenig <[email protected]>
5867 M:      Huang Rui <[email protected]>
5868 L:      [email protected]
5869 S:      Maintained
5870 T:      git git://people.freedesktop.org/~agd5f/linux
5871 F:      drivers/gpu/drm/ttm/
5872 F:      include/drm/ttm/
5873
5874 DSBR100 USB FM RADIO DRIVER
5875 M:      Alexey Klimov <[email protected]>
5876 L:      [email protected]
5877 S:      Maintained
5878 T:      git git://linuxtv.org/media_tree.git
5879 F:      drivers/media/radio/dsbr100.c
5880
5881 DT3155 MEDIA DRIVER
5882 M:      Hans Verkuil <[email protected]>
5883 L:      [email protected]
5884 S:      Odd Fixes
5885 W:      https://linuxtv.org
5886 T:      git git://linuxtv.org/media_tree.git
5887 F:      drivers/media/pci/dt3155/
5888
5889 DVB_USB_AF9015 MEDIA DRIVER
5890 M:      Antti Palosaari <[email protected]>
5891 L:      [email protected]
5892 S:      Maintained
5893 W:      https://linuxtv.org
5894 W:      http://palosaari.fi/linux/
5895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5896 T:      git git://linuxtv.org/anttip/media_tree.git
5897 F:      drivers/media/usb/dvb-usb-v2/af9015*
5898
5899 DVB_USB_AF9035 MEDIA DRIVER
5900 M:      Antti Palosaari <[email protected]>
5901 L:      [email protected]
5902 S:      Maintained
5903 W:      https://linuxtv.org
5904 W:      http://palosaari.fi/linux/
5905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5906 T:      git git://linuxtv.org/anttip/media_tree.git
5907 F:      drivers/media/usb/dvb-usb-v2/af9035*
5908
5909 DVB_USB_ANYSEE MEDIA DRIVER
5910 M:      Antti Palosaari <[email protected]>
5911 L:      [email protected]
5912 S:      Maintained
5913 W:      https://linuxtv.org
5914 W:      http://palosaari.fi/linux/
5915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5916 T:      git git://linuxtv.org/anttip/media_tree.git
5917 F:      drivers/media/usb/dvb-usb-v2/anysee*
5918
5919 DVB_USB_AU6610 MEDIA DRIVER
5920 M:      Antti Palosaari <[email protected]>
5921 L:      [email protected]
5922 S:      Maintained
5923 W:      https://linuxtv.org
5924 W:      http://palosaari.fi/linux/
5925 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5926 T:      git git://linuxtv.org/anttip/media_tree.git
5927 F:      drivers/media/usb/dvb-usb-v2/au6610*
5928
5929 DVB_USB_CE6230 MEDIA DRIVER
5930 M:      Antti Palosaari <[email protected]>
5931 L:      [email protected]
5932 S:      Maintained
5933 W:      https://linuxtv.org
5934 W:      http://palosaari.fi/linux/
5935 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5936 T:      git git://linuxtv.org/anttip/media_tree.git
5937 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5938
5939 DVB_USB_CXUSB MEDIA DRIVER
5940 M:      Michael Krufky <[email protected]>
5941 L:      [email protected]
5942 S:      Maintained
5943 W:      https://linuxtv.org
5944 W:      http://github.com/mkrufky
5945 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5946 T:      git git://linuxtv.org/media_tree.git
5947 F:      drivers/media/usb/dvb-usb/cxusb*
5948
5949 DVB_USB_EC168 MEDIA DRIVER
5950 M:      Antti Palosaari <[email protected]>
5951 L:      [email protected]
5952 S:      Maintained
5953 W:      https://linuxtv.org
5954 W:      http://palosaari.fi/linux/
5955 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5956 T:      git git://linuxtv.org/anttip/media_tree.git
5957 F:      drivers/media/usb/dvb-usb-v2/ec168*
5958
5959 DVB_USB_GL861 MEDIA DRIVER
5960 M:      Antti Palosaari <[email protected]>
5961 L:      [email protected]
5962 S:      Maintained
5963 W:      https://linuxtv.org
5964 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5965 T:      git git://linuxtv.org/anttip/media_tree.git
5966 F:      drivers/media/usb/dvb-usb-v2/gl861*
5967
5968 DVB_USB_MXL111SF MEDIA DRIVER
5969 M:      Michael Krufky <[email protected]>
5970 L:      [email protected]
5971 S:      Maintained
5972 W:      https://linuxtv.org
5973 W:      http://github.com/mkrufky
5974 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5975 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5976 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5977
5978 DVB_USB_RTL28XXU MEDIA DRIVER
5979 M:      Antti Palosaari <[email protected]>
5980 L:      [email protected]
5981 S:      Maintained
5982 W:      https://linuxtv.org
5983 W:      http://palosaari.fi/linux/
5984 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5985 T:      git git://linuxtv.org/anttip/media_tree.git
5986 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5987
5988 DVB_USB_V2 MEDIA DRIVER
5989 M:      Antti Palosaari <[email protected]>
5990 L:      [email protected]
5991 S:      Maintained
5992 W:      https://linuxtv.org
5993 W:      http://palosaari.fi/linux/
5994 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5995 T:      git git://linuxtv.org/anttip/media_tree.git
5996 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5997 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5998
5999 DYNAMIC DEBUG
6000 M:      Jason Baron <[email protected]>
6001 S:      Maintained
6002 F:      include/linux/dynamic_debug.h
6003 F:      lib/dynamic_debug.c
6004
6005 DYNAMIC INTERRUPT MODERATION
6006 M:      Tal Gilboa <[email protected]>
6007 S:      Maintained
6008 F:      Documentation/networking/net_dim.rst
6009 F:      include/linux/dim.h
6010 F:      lib/dim/
6011
6012 DZ DECSTATION DZ11 SERIAL DRIVER
6013 M:      "Maciej W. Rozycki" <[email protected]>
6014 S:      Maintained
6015 F:      drivers/tty/serial/dz.*
6016
6017 E3X0 POWER BUTTON DRIVER
6018 M:      Moritz Fischer <[email protected]>
6019 L:      [email protected]
6020 S:      Supported
6021 W:      http://www.ettus.com
6022 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6023 F:      drivers/input/misc/e3x0-button.c
6024
6025 E4000 MEDIA DRIVER
6026 M:      Antti Palosaari <[email protected]>
6027 L:      [email protected]
6028 S:      Maintained
6029 W:      https://linuxtv.org
6030 W:      http://palosaari.fi/linux/
6031 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6032 T:      git git://linuxtv.org/anttip/media_tree.git
6033 F:      drivers/media/tuners/e4000*
6034
6035 EARTH_PT1 MEDIA DRIVER
6036 M:      Akihiro Tsukada <[email protected]>
6037 L:      [email protected]
6038 S:      Odd Fixes
6039 F:      drivers/media/pci/pt1/
6040
6041 EARTH_PT3 MEDIA DRIVER
6042 M:      Akihiro Tsukada <[email protected]>
6043 L:      [email protected]
6044 S:      Odd Fixes
6045 F:      drivers/media/pci/pt3/
6046
6047 EC100 MEDIA DRIVER
6048 M:      Antti Palosaari <[email protected]>
6049 L:      [email protected]
6050 S:      Maintained
6051 W:      https://linuxtv.org
6052 W:      http://palosaari.fi/linux/
6053 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6054 T:      git git://linuxtv.org/anttip/media_tree.git
6055 F:      drivers/media/dvb-frontends/ec100*
6056
6057 ECRYPT FILE SYSTEM
6058 M:      Tyler Hicks <[email protected]>
6059 L:      [email protected]
6060 S:      Odd Fixes
6061 W:      http://ecryptfs.org
6062 W:      https://launchpad.net/ecryptfs
6063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6064 F:      Documentation/filesystems/ecryptfs.rst
6065 F:      fs/ecryptfs/
6066
6067 EDAC-AMD64
6068 M:      Borislav Petkov <[email protected]>
6069 L:      [email protected]
6070 S:      Maintained
6071 F:      drivers/edac/amd64_edac*
6072
6073 EDAC-ARMADA
6074 M:      Jan Luebbe <[email protected]>
6075 L:      [email protected]
6076 S:      Maintained
6077 F:      drivers/edac/armada_xp_*
6078
6079 EDAC-AST2500
6080 M:      Stefan Schaeckeler <[email protected]>
6081 S:      Supported
6082 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6083 F:      drivers/edac/aspeed_edac.c
6084
6085 EDAC-BLUEFIELD
6086 M:      Shravan Kumar Ramani <[email protected]>
6087 S:      Supported
6088 F:      drivers/edac/bluefield_edac.c
6089
6090 EDAC-CALXEDA
6091 M:      Robert Richter <[email protected]>
6092 L:      [email protected]
6093 S:      Maintained
6094 F:      drivers/edac/highbank*
6095
6096 EDAC-CAVIUM OCTEON
6097 M:      Ralf Baechle <[email protected]>
6098 M:      Robert Richter <[email protected]>
6099 L:      [email protected]
6100 L:      [email protected]
6101 S:      Supported
6102 F:      drivers/edac/octeon_edac*
6103
6104 EDAC-CAVIUM THUNDERX
6105 M:      Robert Richter <[email protected]>
6106 L:      [email protected]
6107 S:      Supported
6108 F:      drivers/edac/thunderx_edac*
6109
6110 EDAC-CORE
6111 M:      Borislav Petkov <[email protected]>
6112 M:      Mauro Carvalho Chehab <[email protected]>
6113 M:      Tony Luck <[email protected]>
6114 R:      James Morse <[email protected]>
6115 R:      Robert Richter <[email protected]>
6116 L:      [email protected]
6117 S:      Supported
6118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6119 F:      Documentation/admin-guide/ras.rst
6120 F:      Documentation/driver-api/edac.rst
6121 F:      drivers/edac/
6122 F:      include/linux/edac.h
6123
6124 EDAC-DMC520
6125 M:      Lei Wang <[email protected]>
6126 L:      [email protected]
6127 S:      Supported
6128 F:      drivers/edac/dmc520_edac.c
6129
6130 EDAC-E752X
6131 M:      Mark Gross <[email protected]>
6132 L:      [email protected]
6133 S:      Maintained
6134 F:      drivers/edac/e752x_edac.c
6135
6136 EDAC-E7XXX
6137 L:      [email protected]
6138 S:      Maintained
6139 F:      drivers/edac/e7xxx_edac.c
6140
6141 EDAC-FSL_DDR
6142 M:      York Sun <[email protected]>
6143 L:      [email protected]
6144 S:      Maintained
6145 F:      drivers/edac/fsl_ddr_edac.*
6146
6147 EDAC-GHES
6148 M:      Mauro Carvalho Chehab <[email protected]>
6149 L:      [email protected]
6150 S:      Maintained
6151 F:      drivers/edac/ghes_edac.c
6152
6153 EDAC-I10NM
6154 M:      Tony Luck <[email protected]>
6155 L:      [email protected]
6156 S:      Maintained
6157 F:      drivers/edac/i10nm_base.c
6158
6159 EDAC-I3000
6160 L:      [email protected]
6161 S:      Orphan
6162 F:      drivers/edac/i3000_edac.c
6163
6164 EDAC-I5000
6165 L:      [email protected]
6166 S:      Maintained
6167 F:      drivers/edac/i5000_edac.c
6168
6169 EDAC-I5400
6170 M:      Mauro Carvalho Chehab <[email protected]>
6171 L:      [email protected]
6172 S:      Maintained
6173 F:      drivers/edac/i5400_edac.c
6174
6175 EDAC-I7300
6176 M:      Mauro Carvalho Chehab <[email protected]>
6177 L:      [email protected]
6178 S:      Maintained
6179 F:      drivers/edac/i7300_edac.c
6180
6181 EDAC-I7CORE
6182 M:      Mauro Carvalho Chehab <[email protected]>
6183 L:      [email protected]
6184 S:      Maintained
6185 F:      drivers/edac/i7core_edac.c
6186
6187 EDAC-I82443BXGX
6188 M:      Tim Small <[email protected]>
6189 L:      [email protected]
6190 S:      Maintained
6191 F:      drivers/edac/i82443bxgx_edac.c
6192
6193 EDAC-I82975X
6194 M:      "Arvind R." <[email protected]>
6195 L:      [email protected]
6196 S:      Maintained
6197 F:      drivers/edac/i82975x_edac.c
6198
6199 EDAC-IE31200
6200 M:      Jason Baron <[email protected]>
6201 L:      [email protected]
6202 S:      Maintained
6203 F:      drivers/edac/ie31200_edac.c
6204
6205 EDAC-MPC85XX
6206 M:      Johannes Thumshirn <[email protected]>
6207 L:      [email protected]
6208 S:      Maintained
6209 F:      drivers/edac/mpc85xx_edac.[ch]
6210
6211 EDAC-PASEMI
6212 M:      Egor Martovetsky <[email protected]>
6213 L:      [email protected]
6214 S:      Maintained
6215 F:      drivers/edac/pasemi_edac.c
6216
6217 EDAC-PND2
6218 M:      Tony Luck <[email protected]>
6219 L:      [email protected]
6220 S:      Maintained
6221 F:      drivers/edac/pnd2_edac.[ch]
6222
6223 EDAC-QCOM
6224 M:      Channagoud Kadabi <[email protected]>
6225 M:      Venkata Narendra Kumar Gutta <[email protected]>
6226 L:      [email protected]
6227 L:      [email protected]
6228 S:      Maintained
6229 F:      drivers/edac/qcom_edac.c
6230
6231 EDAC-R82600
6232 M:      Tim Small <[email protected]>
6233 L:      [email protected]
6234 S:      Maintained
6235 F:      drivers/edac/r82600_edac.c
6236
6237 EDAC-SBRIDGE
6238 M:      Tony Luck <[email protected]>
6239 R:      Qiuxu Zhuo <[email protected]>
6240 L:      [email protected]
6241 S:      Maintained
6242 F:      drivers/edac/sb_edac.c
6243
6244 EDAC-SIFIVE
6245 M:      Yash Shah <[email protected]>
6246 L:      [email protected]
6247 S:      Supported
6248 F:      drivers/edac/sifive_edac.c
6249
6250 EDAC-SKYLAKE
6251 M:      Tony Luck <[email protected]>
6252 L:      [email protected]
6253 S:      Maintained
6254 F:      drivers/edac/skx_*.c
6255
6256 EDAC-TI
6257 M:      Tero Kristo <[email protected]>
6258 L:      [email protected]
6259 S:      Maintained
6260 F:      drivers/edac/ti_edac.c
6261
6262 EDIROL UA-101/UA-1000 DRIVER
6263 M:      Clemens Ladisch <[email protected]>
6264 L:      [email protected] (moderated for non-subscribers)
6265 S:      Maintained
6266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6267 F:      sound/usb/misc/ua101.c
6268
6269 EFI TEST DRIVER
6270 M:      Ivan Hu <[email protected]>
6271 M:      Ard Biesheuvel <[email protected]>
6272 L:      [email protected]
6273 S:      Maintained
6274 F:      drivers/firmware/efi/test/
6275
6276 EFI VARIABLE FILESYSTEM
6277 M:      Matthew Garrett <[email protected]>
6278 M:      Jeremy Kerr <[email protected]>
6279 M:      Ard Biesheuvel <[email protected]>
6280 L:      [email protected]
6281 S:      Maintained
6282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6283 F:      fs/efivarfs/
6284
6285 EFIFB FRAMEBUFFER DRIVER
6286 M:      Peter Jones <[email protected]>
6287 L:      [email protected]
6288 S:      Maintained
6289 F:      drivers/video/fbdev/efifb.c
6290
6291 EFS FILESYSTEM
6292 S:      Orphan
6293 W:      http://aeschi.ch.eu.org/efs/
6294 F:      fs/efs/
6295
6296 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6297 M:      Douglas Miller <[email protected]>
6298 L:      [email protected]
6299 S:      Maintained
6300 F:      drivers/net/ethernet/ibm/ehea/
6301
6302 EM28XX VIDEO4LINUX DRIVER
6303 M:      Mauro Carvalho Chehab <[email protected]>
6304 L:      [email protected]
6305 S:      Maintained
6306 W:      https://linuxtv.org
6307 T:      git git://linuxtv.org/media_tree.git
6308 F:      Documentation/admin-guide/media/em28xx*
6309 F:      drivers/media/usb/em28xx/
6310
6311 EMBEDDED LINUX
6312 M:      Paul Gortmaker <[email protected]>
6313 M:      Matt Mackall <[email protected]>
6314 M:      David Woodhouse <[email protected]>
6315 L:      [email protected]
6316 S:      Maintained
6317
6318 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6319 M:      Adrian Hunter <[email protected]>
6320 M:      Ritesh Harjani <[email protected]>
6321 M:      Asutosh Das <[email protected]>
6322 L:      [email protected]
6323 S:      Maintained
6324 F:      drivers/mmc/host/cqhci*
6325
6326 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6327 M:      Subbu Seetharaman <[email protected]>
6328 M:      Ketan Mukadam <[email protected]>
6329 M:      Jitendra Bhivare <[email protected]>
6330 L:      [email protected]
6331 S:      Supported
6332 W:      http://www.broadcom.com
6333 F:      drivers/scsi/be2iscsi/
6334
6335 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6336 M:      Ajit Khaparde <[email protected]>
6337 M:      Sriharsha Basavapatna <[email protected]>
6338 M:      Somnath Kotur <[email protected]>
6339 L:      [email protected]
6340 S:      Supported
6341 W:      http://www.emulex.com
6342 F:      drivers/net/ethernet/emulex/benet/
6343
6344 EMULEX ONECONNECT ROCE DRIVER
6345 M:      Selvin Xavier <[email protected]>
6346 M:      Devesh Sharma <[email protected]>
6347 L:      [email protected]
6348 S:      Odd Fixes
6349 W:      http://www.broadcom.com
6350 F:      drivers/infiniband/hw/ocrdma/
6351 F:      include/uapi/rdma/ocrdma-abi.h
6352
6353 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6354 M:      James Smart <[email protected]>
6355 M:      Dick Kennedy <[email protected]>
6356 L:      [email protected]
6357 S:      Supported
6358 W:      http://www.broadcom.com
6359 F:      drivers/scsi/lpfc/
6360
6361 ENE CB710 FLASH CARD READER DRIVER
6362 M:      Michał Mirosław <[email protected]>
6363 S:      Maintained
6364 F:      drivers/misc/cb710/
6365 F:      drivers/mmc/host/cb710-mmc.*
6366 F:      include/linux/cb710.h
6367
6368 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6369 M:      Maxim Levitsky <[email protected]>
6370 S:      Maintained
6371 F:      drivers/media/rc/ene_ir.*
6372
6373 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6374 M:      Laurentiu Tudor <[email protected]>
6375 L:      [email protected]
6376 S:      Maintained
6377 F:      drivers/tty/ehv_bytechan.c
6378
6379 EPSON S1D13XXX FRAMEBUFFER DRIVER
6380 M:      Kristoffer Ericson <[email protected]>
6381 S:      Maintained
6382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6383 F:      drivers/video/fbdev/s1d13xxxfb.c
6384 F:      include/video/s1d13xxxfb.h
6385
6386 EROFS FILE SYSTEM
6387 M:      Gao Xiang <[email protected]>
6388 M:      Chao Yu <[email protected]>
6389 L:      [email protected]
6390 S:      Maintained
6391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6392 F:      Documentation/filesystems/erofs.rst
6393 F:      fs/erofs/
6394 F:      include/trace/events/erofs.h
6395
6396 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6397 M:      Jeff Layton <[email protected]>
6398 S:      Maintained
6399 F:      include/linux/errseq.h
6400 F:      lib/errseq.c
6401
6402 ET131X NETWORK DRIVER
6403 M:      Mark Einon <[email protected]>
6404 S:      Odd Fixes
6405 F:      drivers/net/ethernet/agere/
6406
6407 ETHERNET BRIDGE
6408 M:      Roopa Prabhu <[email protected]>
6409 M:      Nikolay Aleksandrov <[email protected]>
6410 L:      [email protected] (moderated for non-subscribers)
6411 L:      [email protected]
6412 S:      Maintained
6413 W:      http://www.linuxfoundation.org/en/Net:Bridge
6414 F:      include/linux/netfilter_bridge/
6415 F:      net/bridge/
6416
6417 ETHERNET PHY LIBRARY
6418 M:      Andrew Lunn <[email protected]>
6419 M:      Florian Fainelli <[email protected]>
6420 M:      Heiner Kallweit <[email protected]>
6421 R:      Russell King <[email protected]>
6422 L:      [email protected]
6423 S:      Maintained
6424 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6425 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6426 F:      Documentation/devicetree/bindings/net/mdio*
6427 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6428 F:      Documentation/networking/phy.rst
6429 F:      drivers/net/phy/
6430 F:      drivers/of/of_mdio.c
6431 F:      drivers/of/of_net.c
6432 F:      include/dt-bindings/net/qca-ar803x.h
6433 F:      include/linux/*mdio*.h
6434 F:      include/linux/of_net.h
6435 F:      include/linux/phy.h
6436 F:      include/linux/phy_fixed.h
6437 F:      include/linux/platform_data/mdio-bcm-unimac.h
6438 F:      include/linux/platform_data/mdio-gpio.h
6439 F:      include/trace/events/mdio.h
6440 F:      include/uapi/linux/mdio.h
6441 F:      include/uapi/linux/mii.h
6442
6443 EXFAT FILE SYSTEM
6444 M:      Namjae Jeon <[email protected]>
6445 M:      Sungjong Seo <[email protected]>
6446 L:      [email protected]
6447 S:      Maintained
6448 F:      fs/exfat/
6449
6450 EXT2 FILE SYSTEM
6451 M:      Jan Kara <[email protected]>
6452 L:      [email protected]
6453 S:      Maintained
6454 F:      Documentation/filesystems/ext2.rst
6455 F:      fs/ext2/
6456 F:      include/linux/ext2*
6457
6458 EXT4 FILE SYSTEM
6459 M:      "Theodore Ts'o" <[email protected]>
6460 M:      Andreas Dilger <[email protected]>
6461 L:      [email protected]
6462 S:      Maintained
6463 W:      http://ext4.wiki.kernel.org
6464 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6466 F:      Documentation/filesystems/ext4/
6467 F:      fs/ext4/
6468
6469 Extended Verification Module (EVM)
6470 M:      Mimi Zohar <[email protected]>
6471 L:      [email protected]
6472 S:      Supported
6473 F:      security/integrity/evm/
6474
6475 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6476 M:      Ard Biesheuvel <[email protected]>
6477 L:      [email protected]
6478 S:      Maintained
6479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6480 F:      Documentation/admin-guide/efi-stub.rst
6481 F:      arch/*/include/asm/efi.h
6482 F:      arch/*/kernel/efi.c
6483 F:      arch/arm/boot/compressed/efi-header.S
6484 F:      arch/arm64/kernel/efi-entry.S
6485 F:      arch/x86/platform/efi/
6486 F:      drivers/firmware/efi/
6487 F:      include/linux/efi*.h
6488
6489 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6490 M:      MyungJoo Ham <[email protected]>
6491 M:      Chanwoo Choi <[email protected]>
6492 L:      [email protected]
6493 S:      Maintained
6494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6495 F:      Documentation/devicetree/bindings/extcon/
6496 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6497 F:      drivers/extcon/
6498 F:      include/linux/extcon.h
6499 F:      include/linux/extcon/
6500
6501 EXTRA BOOT CONFIG
6502 M:      Masami Hiramatsu <[email protected]>
6503 S:      Maintained
6504 F:      Documentation/admin-guide/bootconfig.rst
6505 F:      fs/proc/bootconfig.c
6506 F:      include/linux/bootconfig.h
6507 F:      lib/bootconfig.c
6508 F:      tools/bootconfig/*
6509
6510 EXYNOS DP DRIVER
6511 M:      Jingoo Han <[email protected]>
6512 L:      [email protected]
6513 S:      Maintained
6514 F:      drivers/gpu/drm/exynos/exynos_dp*
6515
6516 EXYNOS SYSMMU (IOMMU) driver
6517 M:      Marek Szyprowski <[email protected]>
6518 L:      [email protected]
6519 S:      Maintained
6520 F:      drivers/iommu/exynos-iommu.c
6521
6522 EZchip NPS platform support
6523 M:      Vineet Gupta <[email protected]>
6524 M:      Ofer Levi <[email protected]>
6525 S:      Supported
6526 F:      arch/arc/boot/dts/eznps.dts
6527 F:      arch/arc/plat-eznps
6528
6529 F2FS FILE SYSTEM
6530 M:      Jaegeuk Kim <[email protected]>
6531 M:      Chao Yu <[email protected]>
6532 L:      [email protected]
6533 S:      Maintained
6534 W:      https://f2fs.wiki.kernel.org/
6535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6536 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6537 F:      Documentation/filesystems/f2fs.rst
6538 F:      fs/f2fs/
6539 F:      include/linux/f2fs_fs.h
6540 F:      include/trace/events/f2fs.h
6541
6542 F71805F HARDWARE MONITORING DRIVER
6543 M:      Jean Delvare <[email protected]>
6544 L:      [email protected]
6545 S:      Maintained
6546 F:      Documentation/hwmon/f71805f.rst
6547 F:      drivers/hwmon/f71805f.c
6548
6549 FADDR2LINE
6550 M:      Josh Poimboeuf <[email protected]>
6551 S:      Maintained
6552 F:      scripts/faddr2line
6553
6554 FAILOVER MODULE
6555 M:      Sridhar Samudrala <[email protected]>
6556 L:      [email protected]
6557 S:      Supported
6558 F:      Documentation/networking/failover.rst
6559 F:      include/net/failover.h
6560 F:      net/core/failover.c
6561
6562 FANOTIFY
6563 M:      Jan Kara <[email protected]>
6564 R:      Amir Goldstein <[email protected]>
6565 L:      [email protected]
6566 S:      Maintained
6567 F:      fs/notify/fanotify/
6568 F:      include/linux/fanotify.h
6569 F:      include/uapi/linux/fanotify.h
6570
6571 FARSYNC SYNCHRONOUS DRIVER
6572 M:      Kevin Curtis <[email protected]>
6573 S:      Supported
6574 W:      http://www.farsite.co.uk/
6575 F:      drivers/net/wan/farsync.*
6576
6577 FAULT INJECTION SUPPORT
6578 M:      Akinobu Mita <[email protected]>
6579 S:      Supported
6580 F:      Documentation/fault-injection/
6581 F:      lib/fault-inject.c
6582
6583 FBTFT Framebuffer drivers
6584 L:      [email protected]
6585 L:      [email protected]
6586 S:      Orphan
6587 F:      drivers/staging/fbtft/
6588
6589 FC0011 TUNER DRIVER
6590 M:      Michael Buesch <[email protected]>
6591 L:      [email protected]
6592 S:      Maintained
6593 F:      drivers/media/tuners/fc0011.c
6594 F:      drivers/media/tuners/fc0011.h
6595
6596 FC2580 MEDIA DRIVER
6597 M:      Antti Palosaari <[email protected]>
6598 L:      [email protected]
6599 S:      Maintained
6600 W:      https://linuxtv.org
6601 W:      http://palosaari.fi/linux/
6602 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6603 T:      git git://linuxtv.org/anttip/media_tree.git
6604 F:      drivers/media/tuners/fc2580*
6605
6606 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6607 M:      Hannes Reinecke <[email protected]>
6608 L:      [email protected]
6609 S:      Supported
6610 W:      www.Open-FCoE.org
6611 F:      drivers/scsi/fcoe/
6612 F:      drivers/scsi/libfc/
6613 F:      include/scsi/fc/
6614 F:      include/scsi/libfc.h
6615 F:      include/scsi/libfcoe.h
6616 F:      include/uapi/scsi/fc/
6617
6618 FILE LOCKING (flock() and fcntl()/lockf())
6619 M:      Jeff Layton <[email protected]>
6620 M:      "J. Bruce Fields" <[email protected]>
6621 L:      [email protected]
6622 S:      Maintained
6623 F:      fs/fcntl.c
6624 F:      fs/locks.c
6625 F:      include/linux/fcntl.h
6626 F:      include/uapi/linux/fcntl.h
6627
6628 FILESYSTEM DIRECT ACCESS (DAX)
6629 M:      Dan Williams <[email protected]>
6630 R:      Matthew Wilcox <[email protected]>
6631 R:      Jan Kara <[email protected]>
6632 L:      [email protected]
6633 L:      [email protected]
6634 S:      Supported
6635 F:      fs/dax.c
6636 F:      include/linux/dax.h
6637 F:      include/trace/events/fs_dax.h
6638
6639 FILESYSTEMS (VFS and infrastructure)
6640 M:      Alexander Viro <[email protected]>
6641 L:      [email protected]
6642 S:      Maintained
6643 F:      fs/*
6644 F:      include/linux/fs.h
6645 F:      include/linux/fs_types.h
6646 F:      include/uapi/linux/fs.h
6647 F:      include/uapi/linux/openat2.h
6648
6649 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6650 M:      Riku Voipio <[email protected]>
6651 L:      [email protected]
6652 S:      Maintained
6653 F:      drivers/hwmon/f75375s.c
6654 F:      include/linux/f75375s.h
6655
6656 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6657 M:      Clemens Ladisch <[email protected]>
6658 M:      Takashi Sakamoto <[email protected]>
6659 L:      [email protected] (moderated for non-subscribers)
6660 S:      Maintained
6661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6662 F:      include/uapi/sound/firewire.h
6663 F:      sound/firewire/
6664
6665 FIREWIRE MEDIA DRIVERS (firedtv)
6666 M:      Stefan Richter <[email protected]>
6667 L:      [email protected]
6668 L:      [email protected]
6669 S:      Maintained
6670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6671 F:      drivers/media/firewire/
6672
6673 FIREWIRE SBP-2 TARGET
6674 M:      Chris Boot <[email protected]>
6675 L:      [email protected]
6676 L:      [email protected]
6677 L:      [email protected]
6678 S:      Maintained
6679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6680 F:      drivers/target/sbp/
6681
6682 FIREWIRE SUBSYSTEM
6683 M:      Stefan Richter <[email protected]>
6684 L:      [email protected]
6685 S:      Maintained
6686 W:      http://ieee1394.wiki.kernel.org/
6687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6688 F:      drivers/firewire/
6689 F:      include/linux/firewire.h
6690 F:      include/uapi/linux/firewire*.h
6691 F:      tools/firewire/
6692
6693 FIRMWARE LOADER (request_firmware)
6694 M:      Luis Chamberlain <[email protected]>
6695 L:      [email protected]
6696 S:      Maintained
6697 F:      Documentation/firmware_class/
6698 F:      drivers/base/firmware_loader/
6699 F:      include/linux/firmware.h
6700
6701 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6702 M:      Joshua Morris <[email protected]>
6703 M:      Philip Kelleher <[email protected]>
6704 S:      Maintained
6705 F:      drivers/block/rsxx/
6706
6707 FLEXTIMER FTM-QUADDEC DRIVER
6708 M:      Patrick Havelange <[email protected]>
6709 L:      [email protected]
6710 S:      Maintained
6711 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6712 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6713 F:      drivers/counter/ftm-quaddec.c
6714
6715 FLOPPY DRIVER
6716 M:      Denis Efremov <[email protected]>
6717 L:      [email protected]
6718 S:      Odd Fixes
6719 F:      drivers/block/floppy.c
6720
6721 FLYSKY FSIA6B RC RECEIVER
6722 M:      Markus Koch <[email protected]>
6723 L:      [email protected]
6724 S:      Maintained
6725 F:      drivers/input/joystick/fsia6b.c
6726
6727 FORCEDETH GIGABIT ETHERNET DRIVER
6728 M:      Rain River <[email protected]>
6729 M:      Zhu Yanjun <[email protected]>
6730 L:      [email protected]
6731 S:      Maintained
6732 F:      drivers/net/ethernet/nvidia/*
6733
6734 FPGA DFL DRIVERS
6735 M:      Wu Hao <[email protected]>
6736 L:      [email protected]
6737 S:      Maintained
6738 F:      Documentation/fpga/dfl.rst
6739 F:      drivers/fpga/dfl*
6740 F:      include/uapi/linux/fpga-dfl.h
6741
6742 FPGA MANAGER FRAMEWORK
6743 M:      Moritz Fischer <[email protected]>
6744 L:      [email protected]
6745 S:      Maintained
6746 W:      http://www.rocketboards.org
6747 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6749 F:      Documentation/devicetree/bindings/fpga/
6750 F:      Documentation/driver-api/fpga/
6751 F:      Documentation/fpga/
6752 F:      drivers/fpga/
6753 F:      include/linux/fpga/
6754
6755 FPU EMULATOR
6756 M:      Bill Metzenthen <[email protected]>
6757 S:      Maintained
6758 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6759 F:      arch/x86/math-emu/
6760
6761 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6762 L:      [email protected]
6763 S:      Orphan
6764 F:      drivers/net/wan/dlci.c
6765 F:      drivers/net/wan/sdla.c
6766
6767 FRAMEBUFFER LAYER
6768 M:      Bartlomiej Zolnierkiewicz <[email protected]>
6769 L:      [email protected]
6770 L:      [email protected]
6771 S:      Maintained
6772 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6773 T:      git git://anongit.freedesktop.org/drm/drm-misc
6774 F:      Documentation/fb/
6775 F:      drivers/video/
6776 F:      include/linux/fb.h
6777 F:      include/uapi/linux/fb.h
6778 F:      include/uapi/video/
6779 F:      include/video/
6780
6781 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6782 M:      Horia Geantă <[email protected]>
6783 M:      Aymen Sghaier <[email protected]>
6784 L:      [email protected]
6785 S:      Maintained
6786 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6787 F:      drivers/crypto/caam/
6788
6789 FREESCALE COLDFIRE M5441X MMC DRIVER
6790 M:      Angelo Dureghello <[email protected]>
6791 L:      [email protected]
6792 S:      Maintained
6793 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6794 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6795
6796 FREESCALE DIU FRAMEBUFFER DRIVER
6797 M:      Timur Tabi <[email protected]>
6798 L:      [email protected]
6799 S:      Maintained
6800 F:      drivers/video/fbdev/fsl-diu-fb.*
6801
6802 FREESCALE DMA DRIVER
6803 M:      Li Yang <[email protected]>
6804 M:      Zhang Wei <[email protected]>
6805 L:      [email protected]
6806 S:      Maintained
6807 F:      drivers/dma/fsldma.*
6808
6809 FREESCALE ENETC ETHERNET DRIVERS
6810 M:      Claudiu Manoil <[email protected]>
6811 L:      [email protected]
6812 S:      Maintained
6813 F:      drivers/net/ethernet/freescale/enetc/
6814
6815 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6816 M:      Claudiu Manoil <[email protected]>
6817 L:      [email protected]
6818 S:      Maintained
6819 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6820 F:      drivers/net/ethernet/freescale/gianfar*
6821
6822 FREESCALE GPMI NAND DRIVER
6823 M:      Han Xu <[email protected]>
6824 L:      [email protected]
6825 S:      Maintained
6826 F:      drivers/mtd/nand/raw/gpmi-nand/*
6827
6828 FREESCALE I2C CPM DRIVER
6829 M:      Jochen Friedrich <[email protected]>
6830 L:      [email protected]
6831 L:      [email protected]
6832 S:      Maintained
6833 F:      drivers/i2c/busses/i2c-cpm.c
6834
6835 FREESCALE IMX / MXC FEC DRIVER
6836 M:      Fugang Duan <[email protected]>
6837 L:      [email protected]
6838 S:      Maintained
6839 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6840 F:      drivers/net/ethernet/freescale/fec.h
6841 F:      drivers/net/ethernet/freescale/fec_main.c
6842 F:      drivers/net/ethernet/freescale/fec_ptp.c
6843
6844 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6845 M:      Sascha Hauer <[email protected]>
6846 R:      Pengutronix Kernel Team <[email protected]>
6847 L:      [email protected]
6848 L:      [email protected] (moderated for non-subscribers)
6849 S:      Maintained
6850 F:      drivers/video/fbdev/imxfb.c
6851 F:      include/linux/platform_data/video-imxfb.h
6852
6853 FREESCALE IMX DDR PMU DRIVER
6854 M:      Frank Li <[email protected]>
6855 L:      [email protected]
6856 S:      Maintained
6857 F:      Documentation/admin-guide/perf/imx-ddr.rst
6858 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6859 F:      drivers/perf/fsl_imx8_ddr_perf.c
6860
6861 FREESCALE IMX I2C DRIVER
6862 M:      Oleksij Rempel <[email protected]>
6863 R:      Pengutronix Kernel Team <[email protected]>
6864 L:      [email protected]
6865 S:      Maintained
6866 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6867 F:      drivers/i2c/busses/i2c-imx.c
6868
6869 FREESCALE IMX LPI2C DRIVER
6870 M:      Dong Aisheng <[email protected]>
6871 L:      [email protected]
6872 L:      [email protected]
6873 S:      Maintained
6874 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6875 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6876
6877 FREESCALE QORIQ DPAA ETHERNET DRIVER
6878 M:      Madalin Bucur <[email protected]>
6879 L:      [email protected]
6880 S:      Maintained
6881 F:      drivers/net/ethernet/freescale/dpaa
6882
6883 FREESCALE QORIQ DPAA FMAN DRIVER
6884 M:      Madalin Bucur <[email protected]>
6885 L:      [email protected]
6886 S:      Maintained
6887 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6888 F:      drivers/net/ethernet/freescale/fman
6889
6890 FREESCALE QORIQ PTP CLOCK DRIVER
6891 M:      Yangbo Lu <[email protected]>
6892 L:      [email protected]
6893 S:      Maintained
6894 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6895 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6896 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6897 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6898 F:      drivers/ptp/ptp_qoriq.c
6899 F:      drivers/ptp/ptp_qoriq_debugfs.c
6900 F:      include/linux/fsl/ptp_qoriq.h
6901
6902 FREESCALE QUAD SPI DRIVER
6903 M:      Han Xu <[email protected]>
6904 L:      [email protected]
6905 S:      Maintained
6906 F:      drivers/spi/spi-fsl-qspi.c
6907
6908 FREESCALE QUICC ENGINE LIBRARY
6909 M:      Qiang Zhao <[email protected]>
6910 L:      [email protected]
6911 S:      Maintained
6912 F:      drivers/soc/fsl/qe/
6913 F:      include/soc/fsl/*qe*.h
6914 F:      include/soc/fsl/*ucc*.h
6915
6916 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6917 M:      Li Yang <[email protected]>
6918 L:      [email protected]
6919 L:      [email protected]
6920 S:      Maintained
6921 F:      drivers/net/ethernet/freescale/ucc_geth*
6922
6923 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6924 M:      Zhao Qiang <[email protected]>
6925 L:      [email protected]
6926 L:      [email protected]
6927 S:      Maintained
6928 F:      drivers/net/wan/fsl_ucc_hdlc*
6929
6930 FREESCALE QUICC ENGINE UCC UART DRIVER
6931 M:      Timur Tabi <[email protected]>
6932 L:      [email protected]
6933 S:      Maintained
6934 F:      drivers/tty/serial/ucc_uart.c
6935
6936 FREESCALE SOC DRIVERS
6937 M:      Li Yang <[email protected]>
6938 L:      [email protected]
6939 L:      [email protected]
6940 S:      Maintained
6941 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6942 F:      Documentation/devicetree/bindings/soc/fsl/
6943 F:      drivers/soc/fsl/
6944 F:      include/linux/fsl/
6945
6946 FREESCALE SOC FS_ENET DRIVER
6947 M:      Pantelis Antoniou <[email protected]>
6948 L:      [email protected]
6949 L:      [email protected]
6950 S:      Maintained
6951 F:      drivers/net/ethernet/freescale/fs_enet/
6952 F:      include/linux/fs_enet_pd.h
6953
6954 FREESCALE SOC SOUND DRIVERS
6955 M:      Timur Tabi <[email protected]>
6956 M:      Nicolin Chen <[email protected]>
6957 M:      Xiubo Li <[email protected]>
6958 R:      Fabio Estevam <[email protected]>
6959 L:      [email protected] (moderated for non-subscribers)
6960 L:      [email protected]
6961 S:      Maintained
6962 F:      sound/soc/fsl/fsl*
6963 F:      sound/soc/fsl/imx*
6964 F:      sound/soc/fsl/mpc8610_hpcd.c
6965
6966 FREESCALE USB PERIPHERAL DRIVERS
6967 M:      Li Yang <[email protected]>
6968 L:      [email protected]
6969 L:      [email protected]
6970 S:      Maintained
6971 F:      drivers/usb/gadget/udc/fsl*
6972
6973 FREEVXFS FILESYSTEM
6974 M:      Christoph Hellwig <[email protected]>
6975 S:      Maintained
6976 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6977 F:      fs/freevxfs/
6978
6979 FREEZER
6980 M:      "Rafael J. Wysocki" <[email protected]>
6981 M:      Pavel Machek <[email protected]>
6982 L:      [email protected]
6983 S:      Supported
6984 F:      Documentation/power/freezing-of-tasks.rst
6985 F:      include/linux/freezer.h
6986 F:      kernel/freezer.c
6987
6988 FRONTSWAP API
6989 M:      Konrad Rzeszutek Wilk <[email protected]>
6990 L:      [email protected]
6991 S:      Maintained
6992 F:      include/linux/frontswap.h
6993 F:      mm/frontswap.c
6994
6995 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6996 M:      David Howells <[email protected]>
6997 L:      [email protected] (moderated for non-subscribers)
6998 S:      Supported
6999 F:      Documentation/filesystems/caching/
7000 F:      fs/fscache/
7001 F:      include/linux/fscache*.h
7002
7003 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7004 M:      Theodore Y. Ts'o <[email protected]>
7005 M:      Jaegeuk Kim <[email protected]>
7006 M:      Eric Biggers <[email protected]>
7007 L:      [email protected]
7008 S:      Supported
7009 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7010 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7011 F:      Documentation/filesystems/fscrypt.rst
7012 F:      fs/crypto/
7013 F:      include/linux/fscrypt*.h
7014 F:      include/uapi/linux/fscrypt.h
7015
7016 FSI SUBSYSTEM
7017 M:      Jeremy Kerr <[email protected]>
7018 M:      Joel Stanley <[email protected]>
7019 R:      Alistar Popple <[email protected]>
7020 R:      Eddie James <[email protected]>
7021 L:      [email protected]
7022 S:      Supported
7023 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7025 F:      drivers/fsi/
7026 F:      include/linux/fsi*.h
7027 F:      include/trace/events/fsi*.h
7028
7029 FSI-ATTACHED I2C DRIVER
7030 M:      Eddie James <[email protected]>
7031 L:      [email protected]
7032 L:      [email protected] (moderated for non-subscribers)
7033 S:      Maintained
7034 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7035 F:      drivers/i2c/busses/i2c-fsi.c
7036
7037 FSI-ATTACHED SPI DRIVER
7038 M:      Eddie James <[email protected]>
7039 L:      [email protected]
7040 S:      Maintained
7041 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7042 F:      drivers/spi/spi-fsi.c
7043
7044 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7045 M:      Jan Kara <[email protected]>
7046 R:      Amir Goldstein <[email protected]>
7047 L:      [email protected]
7048 S:      Maintained
7049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7050 F:      fs/notify/
7051 F:      include/linux/fsnotify*.h
7052
7053 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7054 M:      Eric Biggers <[email protected]>
7055 M:      Theodore Y. Ts'o <[email protected]>
7056 L:      [email protected]
7057 S:      Supported
7058 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7059 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7060 F:      Documentation/filesystems/fsverity.rst
7061 F:      fs/verity/
7062 F:      include/linux/fsverity.h
7063 F:      include/uapi/linux/fsverity.h
7064
7065 FUJITSU LAPTOP EXTRAS
7066 M:      Jonathan Woithe <[email protected]>
7067 L:      [email protected]
7068 S:      Maintained
7069 F:      drivers/platform/x86/fujitsu-laptop.c
7070
7071 FUJITSU M-5MO LS CAMERA ISP DRIVER
7072 M:      Kyungmin Park <[email protected]>
7073 M:      Heungjun Kim <[email protected]>
7074 L:      [email protected]
7075 S:      Maintained
7076 F:      drivers/media/i2c/m5mols/
7077 F:      include/media/i2c/m5mols.h
7078
7079 FUJITSU TABLET EXTRAS
7080 M:      Robert Gerlach <[email protected]>
7081 L:      [email protected]
7082 S:      Maintained
7083 F:      drivers/platform/x86/fujitsu-tablet.c
7084
7085 FUSE: FILESYSTEM IN USERSPACE
7086 M:      Miklos Szeredi <[email protected]>
7087 L:      [email protected]
7088 S:      Maintained
7089 W:      http://fuse.sourceforge.net/
7090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7091 F:      Documentation/filesystems/fuse.rst
7092 F:      fs/fuse/
7093 F:      include/uapi/linux/fuse.h
7094
7095 FUTEX SUBSYSTEM
7096 M:      Thomas Gleixner <[email protected]>
7097 M:      Ingo Molnar <[email protected]>
7098 R:      Peter Zijlstra <[email protected]>
7099 R:      Darren Hart <[email protected]>
7100 L:      [email protected]
7101 S:      Maintained
7102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7103 F:      Documentation/locking/*futex*
7104 F:      include/asm-generic/futex.h
7105 F:      include/linux/futex.h
7106 F:      include/uapi/linux/futex.h
7107 F:      kernel/futex.c
7108 F:      tools/perf/bench/futex*
7109 F:      Documentation/locking/*futex*
7110
7111 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7112 M:      Tim Harvey <[email protected]>
7113 M:      Robert Jones <[email protected]>
7114 S:      Maintained
7115 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7116 F:      drivers/mfd/gateworks-gsc.c
7117 F:      include/linux/mfd/gsc.h
7118 F:      Documentation/hwmon/gsc-hwmon.rst
7119 F:      drivers/hwmon/gsc-hwmon.c
7120 F:      include/linux/platform_data/gsc_hwmon.h
7121
7122 GASKET DRIVER FRAMEWORK
7123 M:      Rob Springer <[email protected]>
7124 M:      Todd Poynor <[email protected]>
7125 M:      Ben Chan <[email protected]>
7126 M:      Richard Yeh <[email protected]>
7127 S:      Maintained
7128 F:      drivers/staging/gasket/
7129
7130 GCC PLUGINS
7131 M:      Kees Cook <[email protected]>
7132 R:      Emese Revfy <[email protected]>
7133 L:      [email protected]
7134 S:      Maintained
7135 F:      Documentation/kbuild/gcc-plugins.rst
7136 F:      scripts/Makefile.gcc-plugins
7137 F:      scripts/gcc-plugin.sh
7138 F:      scripts/gcc-plugins/
7139
7140 GCOV BASED KERNEL PROFILING
7141 M:      Peter Oberparleiter <[email protected]>
7142 S:      Maintained
7143 F:      Documentation/dev-tools/gcov.rst
7144 F:      kernel/gcov/
7145
7146 GDB KERNEL DEBUGGING HELPER SCRIPTS
7147 M:      Jan Kiszka <[email protected]>
7148 M:      Kieran Bingham <[email protected]>
7149 S:      Supported
7150 F:      scripts/gdb/
7151
7152 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7153 M:      Achim Leubner <[email protected]>
7154 L:      [email protected]
7155 S:      Supported
7156 W:      http://www.icp-vortex.com/
7157 F:      drivers/scsi/gdt*
7158
7159 GEMTEK FM RADIO RECEIVER DRIVER
7160 M:      Hans Verkuil <[email protected]>
7161 L:      [email protected]
7162 S:      Maintained
7163 W:      https://linuxtv.org
7164 T:      git git://linuxtv.org/media_tree.git
7165 F:      drivers/media/radio/radio-gemtek*
7166
7167 GENERIC ARCHITECTURE TOPOLOGY
7168 M:      Sudeep Holla <[email protected]>
7169 L:      [email protected]
7170 S:      Maintained
7171 F:      drivers/base/arch_topology.c
7172 F:      include/linux/arch_topology.h
7173
7174 GENERIC GPIO I2C DRIVER
7175 M:      Wolfram Sang <[email protected]>
7176 S:      Supported
7177 F:      drivers/i2c/busses/i2c-gpio.c
7178 F:      include/linux/platform_data/i2c-gpio.h
7179
7180 GENERIC GPIO I2C MULTIPLEXER DRIVER
7181 M:      Peter Korsgaard <[email protected]>
7182 L:      [email protected]
7183 S:      Supported
7184 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7185 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7186 F:      include/linux/platform_data/i2c-mux-gpio.h
7187
7188 GENERIC HDLC (WAN) DRIVERS
7189 M:      Krzysztof Halasa <[email protected]>
7190 S:      Maintained
7191 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7192 F:      drivers/net/wan/c101.c
7193 F:      drivers/net/wan/hd6457*
7194 F:      drivers/net/wan/hdlc*
7195 F:      drivers/net/wan/n2.c
7196 F:      drivers/net/wan/pc300too.c
7197 F:      drivers/net/wan/pci200syn.c
7198 F:      drivers/net/wan/wanxl*
7199
7200 GENERIC INCLUDE/ASM HEADER FILES
7201 M:      Arnd Bergmann <[email protected]>
7202 L:      [email protected]
7203 S:      Maintained
7204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7205 F:      include/asm-generic/
7206 F:      include/uapi/asm-generic/
7207
7208 GENERIC PHY FRAMEWORK
7209 M:      Kishon Vijay Abraham I <[email protected]>
7210 M:      Vinod Koul <[email protected]>
7211 L:      [email protected]
7212 S:      Supported
7213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7214 F:      Documentation/devicetree/bindings/phy/
7215 F:      drivers/phy/
7216 F:      include/linux/phy/
7217
7218 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7219 M:      Wolfram Sang <[email protected]>
7220 S:      Supported
7221 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7222
7223 GENERIC PM DOMAINS
7224 M:      "Rafael J. Wysocki" <[email protected]>
7225 M:      Kevin Hilman <[email protected]>
7226 M:      Ulf Hansson <[email protected]>
7227 L:      [email protected]
7228 S:      Supported
7229 F:      Documentation/devicetree/bindings/power/power?domain*
7230 F:      drivers/base/power/domain*.c
7231 F:      include/linux/pm_domain.h
7232
7233 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7234 M:      Eugen Hristev <[email protected]>
7235 L:      [email protected]
7236 S:      Maintained
7237 F:      drivers/input/touchscreen/resistive-adc-touch.c
7238
7239 GENERIC UIO DRIVER FOR PCI DEVICES
7240 M:      "Michael S. Tsirkin" <[email protected]>
7241 L:      [email protected]
7242 S:      Supported
7243 F:      drivers/uio/uio_pci_generic.c
7244
7245 GENERIC VDSO LIBRARY
7246 M:      Andy Lutomirski <[email protected]>
7247 M:      Thomas Gleixner <[email protected]>
7248 M:      Vincenzo Frascino <[email protected]>
7249 L:      [email protected]
7250 S:      Maintained
7251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7252 F:      include/asm-generic/vdso/vsyscall.h
7253 F:      include/vdso/
7254 F:      kernel/time/vsyscall.c
7255 F:      lib/vdso/
7256
7257 GENWQE (IBM Generic Workqueue Card)
7258 M:      Frank Haverkamp <[email protected]>
7259 S:      Supported
7260 F:      drivers/misc/genwqe/
7261
7262 GET_MAINTAINER SCRIPT
7263 M:      Joe Perches <[email protected]>
7264 S:      Maintained
7265 F:      scripts/get_maintainer.pl
7266
7267 GFS2 FILE SYSTEM
7268 M:      Bob Peterson <[email protected]>
7269 M:      Andreas Gruenbacher <[email protected]>
7270 L:      [email protected]
7271 S:      Supported
7272 W:      http://sources.redhat.com/cluster/
7273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7274 F:      Documentation/filesystems/gfs2*
7275 F:      fs/gfs2/
7276 F:      include/uapi/linux/gfs2_ondisk.h
7277
7278 GNSS SUBSYSTEM
7279 M:      Johan Hovold <[email protected]>
7280 S:      Maintained
7281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7282 F:      Documentation/ABI/testing/sysfs-class-gnss
7283 F:      Documentation/devicetree/bindings/gnss/
7284 F:      drivers/gnss/
7285 F:      include/linux/gnss.h
7286
7287 GO7007 MPEG CODEC
7288 M:      Hans Verkuil <[email protected]>
7289 L:      [email protected]
7290 S:      Maintained
7291 F:      drivers/media/usb/go7007/
7292
7293 GOODIX TOUCHSCREEN
7294 M:      Bastien Nocera <[email protected]>
7295 L:      [email protected]
7296 S:      Maintained
7297 F:      drivers/input/touchscreen/goodix.c
7298
7299 GOOGLE ETHERNET DRIVERS
7300 M:      Catherine Sullivan <[email protected]>
7301 R:      Sagi Shahar <[email protected]>
7302 R:      Jon Olson <[email protected]>
7303 L:      [email protected]
7304 S:      Supported
7305 F:      Documentation/networking/device_drivers/google/gve.rst
7306 F:      drivers/net/ethernet/google
7307
7308 GPD POCKET FAN DRIVER
7309 M:      Hans de Goede <[email protected]>
7310 L:      [email protected]
7311 S:      Maintained
7312 F:      drivers/platform/x86/gpd-pocket-fan.c
7313
7314 GPIO ACPI SUPPORT
7315 M:      Mika Westerberg <[email protected]>
7316 M:      Andy Shevchenko <[email protected]>
7317 L:      [email protected]
7318 L:      [email protected]
7319 S:      Maintained
7320 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7321 F:      drivers/gpio/gpiolib-acpi.c
7322 F:      drivers/gpio/gpiolib-acpi.h
7323
7324 GPIO AGGREGATOR
7325 M:      Geert Uytterhoeven <[email protected]>
7326 L:      [email protected]
7327 S:      Supported
7328 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7329 F:      drivers/gpio/gpio-aggregator.c
7330
7331 GPIO IR Transmitter
7332 M:      Sean Young <[email protected]>
7333 L:      [email protected]
7334 S:      Maintained
7335 F:      drivers/media/rc/gpio-ir-tx.c
7336
7337 GPIO MOCKUP DRIVER
7338 M:      Bamvor Jian Zhang <[email protected]>
7339 L:      [email protected]
7340 S:      Maintained
7341 F:      drivers/gpio/gpio-mockup.c
7342 F:      tools/testing/selftests/gpio/
7343
7344 GPIO REGMAP
7345 R:      Michael Walle <[email protected]>
7346 S:      Maintained
7347 F:      drivers/gpio/gpio-regmap.c
7348 F:      include/linux/gpio/regmap.h
7349
7350 GPIO SUBSYSTEM
7351 M:      Linus Walleij <[email protected]>
7352 M:      Bartosz Golaszewski <[email protected]>
7353 L:      [email protected]
7354 S:      Maintained
7355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7356 F:      Documentation/ABI/obsolete/sysfs-gpio
7357 F:      Documentation/ABI/testing/gpio-cdev
7358 F:      Documentation/admin-guide/gpio/
7359 F:      Documentation/devicetree/bindings/gpio/
7360 F:      Documentation/driver-api/gpio/
7361 F:      drivers/gpio/
7362 F:      include/asm-generic/gpio.h
7363 F:      include/linux/gpio.h
7364 F:      include/linux/gpio/
7365 F:      include/linux/of_gpio.h
7366 F:      include/uapi/linux/gpio.h
7367 F:      tools/gpio/
7368
7369 GRE DEMULTIPLEXER DRIVER
7370 M:      Dmitry Kozlov <[email protected]>
7371 L:      [email protected]
7372 S:      Maintained
7373 F:      include/net/gre.h
7374 F:      net/ipv4/gre_demux.c
7375 F:      net/ipv4/gre_offload.c
7376
7377 GRETH 10/100/1G Ethernet MAC device driver
7378 M:      Andreas Larsson <[email protected]>
7379 L:      [email protected]
7380 S:      Maintained
7381 F:      drivers/net/ethernet/aeroflex/
7382
7383 GREYBUS AUDIO PROTOCOLS DRIVERS
7384 M:      Vaibhav Agarwal <[email protected]>
7385 M:      Mark Greer <[email protected]>
7386 S:      Maintained
7387 F:      drivers/staging/greybus/audio_apbridgea.c
7388 F:      drivers/staging/greybus/audio_apbridgea.h
7389 F:      drivers/staging/greybus/audio_codec.c
7390 F:      drivers/staging/greybus/audio_codec.h
7391 F:      drivers/staging/greybus/audio_gb.c
7392 F:      drivers/staging/greybus/audio_manager.c
7393 F:      drivers/staging/greybus/audio_manager.h
7394 F:      drivers/staging/greybus/audio_manager_module.c
7395 F:      drivers/staging/greybus/audio_manager_private.h
7396 F:      drivers/staging/greybus/audio_manager_sysfs.c
7397 F:      drivers/staging/greybus/audio_module.c
7398 F:      drivers/staging/greybus/audio_topology.c
7399
7400 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7401 M:      Viresh Kumar <[email protected]>
7402 S:      Maintained
7403 F:      drivers/staging/greybus/authentication.c
7404 F:      drivers/staging/greybus/bootrom.c
7405 F:      drivers/staging/greybus/firmware.h
7406 F:      drivers/staging/greybus/fw-core.c
7407 F:      drivers/staging/greybus/fw-download.c
7408 F:      drivers/staging/greybus/fw-management.c
7409 F:      drivers/staging/greybus/greybus_authentication.h
7410 F:      drivers/staging/greybus/greybus_firmware.h
7411 F:      drivers/staging/greybus/hid.c
7412 F:      drivers/staging/greybus/i2c.c
7413 F:      drivers/staging/greybus/spi.c
7414 F:      drivers/staging/greybus/spilib.c
7415 F:      drivers/staging/greybus/spilib.h
7416
7417 GREYBUS LOOPBACK DRIVER
7418 M:      Bryan O'Donoghue <[email protected]>
7419 S:      Maintained
7420 F:      drivers/staging/greybus/loopback.c
7421
7422 GREYBUS PLATFORM DRIVERS
7423 M:      Vaibhav Hiremath <[email protected]>
7424 S:      Maintained
7425 F:      drivers/staging/greybus/arche-apb-ctrl.c
7426 F:      drivers/staging/greybus/arche-platform.c
7427 F:      drivers/staging/greybus/arche_platform.h
7428
7429 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7430 M:      Rui Miguel Silva <[email protected]>
7431 S:      Maintained
7432 F:      drivers/staging/greybus/gpio.c
7433 F:      drivers/staging/greybus/light.c
7434 F:      drivers/staging/greybus/power_supply.c
7435 F:      drivers/staging/greybus/sdio.c
7436 F:      drivers/staging/greybus/spi.c
7437 F:      drivers/staging/greybus/spilib.c
7438
7439 GREYBUS SUBSYSTEM
7440 M:      Johan Hovold <[email protected]>
7441 M:      Alex Elder <[email protected]>
7442 M:      Greg Kroah-Hartman <[email protected]>
7443 L:      [email protected] (moderated for non-subscribers)
7444 S:      Maintained
7445 F:      drivers/greybus/
7446 F:      drivers/staging/greybus/
7447 F:      include/linux/greybus.h
7448 F:      include/linux/greybus/
7449
7450 GREYBUS UART PROTOCOLS DRIVERS
7451 M:      David Lin <[email protected]>
7452 S:      Maintained
7453 F:      drivers/staging/greybus/log.c
7454 F:      drivers/staging/greybus/uart.c
7455
7456 GS1662 VIDEO SERIALIZER
7457 M:      Charles-Antoine Couret <[email protected]>
7458 L:      [email protected]
7459 S:      Maintained
7460 T:      git git://linuxtv.org/media_tree.git
7461 F:      drivers/media/spi/gs1662.c
7462
7463 GSPCA FINEPIX SUBDRIVER
7464 M:      Frank Zago <[email protected]>
7465 L:      [email protected]
7466 S:      Maintained
7467 T:      git git://linuxtv.org/media_tree.git
7468 F:      drivers/media/usb/gspca/finepix.c
7469
7470 GSPCA GL860 SUBDRIVER
7471 M:      Olivier Lorin <[email protected]>
7472 L:      [email protected]
7473 S:      Maintained
7474 T:      git git://linuxtv.org/media_tree.git
7475 F:      drivers/media/usb/gspca/gl860/
7476
7477 GSPCA M5602 SUBDRIVER
7478 M:      Erik Andren <[email protected]>
7479 L:      [email protected]
7480 S:      Maintained
7481 T:      git git://linuxtv.org/media_tree.git
7482 F:      drivers/media/usb/gspca/m5602/
7483
7484 GSPCA PAC207 SONIXB SUBDRIVER
7485 M:      Hans Verkuil <[email protected]>
7486 L:      [email protected]
7487 S:      Odd Fixes
7488 T:      git git://linuxtv.org/media_tree.git
7489 F:      drivers/media/usb/gspca/pac207.c
7490
7491 GSPCA SN9C20X SUBDRIVER
7492 M:      Brian Johnson <[email protected]>
7493 L:      [email protected]
7494 S:      Maintained
7495 T:      git git://linuxtv.org/media_tree.git
7496 F:      drivers/media/usb/gspca/sn9c20x.c
7497
7498 GSPCA T613 SUBDRIVER
7499 M:      Leandro Costantino <[email protected]>
7500 L:      [email protected]
7501 S:      Maintained
7502 T:      git git://linuxtv.org/media_tree.git
7503 F:      drivers/media/usb/gspca/t613.c
7504
7505 GSPCA USB WEBCAM DRIVER
7506 M:      Hans Verkuil <[email protected]>
7507 L:      [email protected]
7508 S:      Odd Fixes
7509 T:      git git://linuxtv.org/media_tree.git
7510 F:      drivers/media/usb/gspca/
7511
7512 GTP (GPRS Tunneling Protocol)
7513 M:      Pablo Neira Ayuso <[email protected]>
7514 M:      Harald Welte <[email protected]>
7515 L:      [email protected]
7516 S:      Maintained
7517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7518 F:      drivers/net/gtp.c
7519
7520 GUID PARTITION TABLE (GPT)
7521 M:      Davidlohr Bueso <[email protected]>
7522 L:      [email protected]
7523 S:      Maintained
7524 F:      block/partitions/efi.*
7525
7526 H8/300 ARCHITECTURE
7527 M:      Yoshinori Sato <[email protected]>
7528 L:      [email protected] (moderated for non-subscribers)
7529 S:      Maintained
7530 W:      http://uclinux-h8.sourceforge.jp
7531 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7532 F:      arch/h8300/
7533 F:      drivers/clk/h8300/
7534 F:      drivers/clocksource/h8300_*.c
7535 F:      drivers/irqchip/irq-renesas-h8*.c
7536
7537 HABANALABS PCI DRIVER
7538 M:      Oded Gabbay <[email protected]>
7539 S:      Supported
7540 T:      git https://github.com/HabanaAI/linux.git
7541 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7542 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7543 F:      drivers/misc/habanalabs/
7544 F:      include/uapi/misc/habanalabs.h
7545
7546 HACKRF MEDIA DRIVER
7547 M:      Antti Palosaari <[email protected]>
7548 L:      [email protected]
7549 S:      Maintained
7550 W:      https://linuxtv.org
7551 W:      http://palosaari.fi/linux/
7552 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7553 T:      git git://linuxtv.org/anttip/media_tree.git
7554 F:      drivers/media/usb/hackrf/
7555
7556 HANTRO VPU CODEC DRIVER
7557 M:      Ezequiel Garcia <[email protected]>
7558 M:      Philipp Zabel <[email protected]>
7559 L:      [email protected]
7560 L:      [email protected]
7561 S:      Maintained
7562 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7563 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7564 F:      drivers/staging/media/hantro/
7565
7566 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7567 M:      Frank Seidel <[email protected]>
7568 L:      [email protected]
7569 S:      Maintained
7570 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7571 F:      drivers/platform/x86/hdaps.c
7572
7573 HARDWARE MONITORING
7574 M:      Jean Delvare <[email protected]>
7575 M:      Guenter Roeck <[email protected]>
7576 L:      [email protected]
7577 S:      Maintained
7578 W:      http://hwmon.wiki.kernel.org/
7579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7580 F:      Documentation/devicetree/bindings/hwmon/
7581 F:      Documentation/hwmon/
7582 F:      drivers/hwmon/
7583 F:      include/linux/hwmon*.h
7584 F:      include/trace/events/hwmon*.h
7585
7586 HARDWARE RANDOM NUMBER GENERATOR CORE
7587 M:      Matt Mackall <[email protected]>
7588 M:      Herbert Xu <[email protected]>
7589 L:      [email protected]
7590 S:      Odd fixes
7591 F:      Documentation/admin-guide/hw_random.rst
7592 F:      Documentation/devicetree/bindings/rng/
7593 F:      drivers/char/hw_random/
7594 F:      include/linux/hw_random.h
7595
7596 HARDWARE SPINLOCK CORE
7597 M:      Ohad Ben-Cohen <[email protected]>
7598 M:      Bjorn Andersson <[email protected]>
7599 R:      Baolin Wang <[email protected]>
7600 L:      [email protected]
7601 S:      Maintained
7602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7603 F:      Documentation/devicetree/bindings/hwlock/
7604 F:      Documentation/locking/hwspinlock.rst
7605 F:      drivers/hwspinlock/
7606 F:      include/linux/hwspinlock.h
7607
7608 HARDWARE TRACING FACILITIES
7609 M:      Alexander Shishkin <[email protected]>
7610 S:      Maintained
7611 F:      drivers/hwtracing/
7612
7613 HARMONY SOUND DRIVER
7614 L:      [email protected]
7615 S:      Maintained
7616 F:      sound/parisc/harmony.*
7617
7618 HDPVR USB VIDEO ENCODER DRIVER
7619 M:      Hans Verkuil <[email protected]>
7620 L:      [email protected]
7621 S:      Odd Fixes
7622 W:      https://linuxtv.org
7623 T:      git git://linuxtv.org/media_tree.git
7624 F:      drivers/media/usb/hdpvr/
7625
7626 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7627 M:      Jerry Hoemann <[email protected]>
7628 S:      Supported
7629 F:      Documentation/watchdog/hpwdt.rst
7630 F:      drivers/watchdog/hpwdt.c
7631
7632 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7633 M:      Don Brace <[email protected]>
7634 L:      [email protected]
7635 L:      [email protected]
7636 S:      Supported
7637 F:      Documentation/scsi/hpsa.rst
7638 F:      drivers/scsi/hpsa*.[ch]
7639 F:      include/linux/cciss*.h
7640 F:      include/uapi/linux/cciss*.h
7641
7642 HFI1 DRIVER
7643 M:      Mike Marciniszyn <[email protected]>
7644 M:      Dennis Dalessandro <[email protected]>
7645 L:      [email protected]
7646 S:      Supported
7647 F:      drivers/infiniband/hw/hfi1
7648
7649 HFS FILESYSTEM
7650 L:      [email protected]
7651 S:      Orphan
7652 F:      Documentation/filesystems/hfs.rst
7653 F:      fs/hfs/
7654
7655 HFSPLUS FILESYSTEM
7656 L:      [email protected]
7657 S:      Orphan
7658 F:      Documentation/filesystems/hfsplus.rst
7659 F:      fs/hfsplus/
7660
7661 HGA FRAMEBUFFER DRIVER
7662 M:      Ferenc Bakonyi <[email protected]>
7663 L:      [email protected]
7664 S:      Maintained
7665 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7666 F:      drivers/video/fbdev/hgafb.c
7667
7668 HIBERNATION (aka Software Suspend, aka swsusp)
7669 M:      "Rafael J. Wysocki" <[email protected]>
7670 M:      Pavel Machek <[email protected]>
7671 L:      [email protected]
7672 S:      Supported
7673 B:      https://bugzilla.kernel.org
7674 F:      arch/*/include/asm/suspend*.h
7675 F:      arch/x86/power/
7676 F:      drivers/base/power/
7677 F:      include/linux/freezer.h
7678 F:      include/linux/pm.h
7679 F:      include/linux/suspend.h
7680 F:      kernel/power/
7681
7682 HID CORE LAYER
7683 M:      Jiri Kosina <[email protected]>
7684 M:      Benjamin Tissoires <[email protected]>
7685 L:      [email protected]
7686 S:      Maintained
7687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7688 F:      drivers/hid/
7689 F:      include/linux/hid*
7690 F:      include/uapi/linux/hid*
7691
7692 HID SENSOR HUB DRIVERS
7693 M:      Jiri Kosina <[email protected]>
7694 M:      Jonathan Cameron <[email protected]>
7695 M:      Srinivas Pandruvada <[email protected]>
7696 L:      [email protected]
7697 L:      [email protected]
7698 S:      Maintained
7699 F:      Documentation/hid/hid-sensor*
7700 F:      drivers/hid/hid-sensor-*
7701 F:      drivers/iio/*/hid-*
7702 F:      include/linux/hid-sensor-*
7703
7704 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7705 M:      Thomas Gleixner <[email protected]>
7706 L:      [email protected]
7707 S:      Maintained
7708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7709 F:      Documentation/timers/
7710 F:      include/linux/clockchips.h
7711 F:      include/linux/hrtimer.h
7712 F:      kernel/time/clockevents.c
7713 F:      kernel/time/hrtimer.c
7714 F:      kernel/time/timer_*.c
7715
7716 HIGH-SPEED SCC DRIVER FOR AX.25
7717 L:      [email protected]
7718 S:      Orphan
7719 F:      drivers/net/hamradio/dmascc.c
7720 F:      drivers/net/hamradio/scc.c
7721
7722 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7723 M:      HighPoint Linux Team <[email protected]>
7724 S:      Supported
7725 W:      http://www.highpoint-tech.com
7726 F:      Documentation/scsi/hptiop.rst
7727 F:      drivers/scsi/hptiop.c
7728
7729 HIPPI
7730 M:      Jes Sorensen <[email protected]>
7731 L:      [email protected]
7732 S:      Maintained
7733 F:      drivers/net/hippi/
7734 F:      include/linux/hippidevice.h
7735 F:      include/uapi/linux/if_hippi.h
7736 F:      net/802/hippi.c
7737
7738 HISILICON DMA DRIVER
7739 M:      Zhou Wang <[email protected]>
7740 L:      [email protected]
7741 S:      Maintained
7742 F:      drivers/dma/hisi_dma.c
7743
7744 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7745 M:      Zaibo Xu <[email protected]>
7746 L:      [email protected]
7747 S:      Maintained
7748 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7749 F:      drivers/crypto/hisilicon/hpre/hpre.h
7750 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7751 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7752
7753 HISILICON LPC BUS DRIVER
7754 M:      [email protected]
7755 S:      Maintained
7756 W:      http://www.hisilicon.com
7757 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7758 F:      drivers/bus/hisi_lpc.c
7759
7760 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7761 M:      Yisen Zhuang <[email protected]>
7762 M:      Salil Mehta <[email protected]>
7763 L:      [email protected]
7764 S:      Maintained
7765 W:      http://www.hisilicon.com
7766 F:      drivers/net/ethernet/hisilicon/hns3/
7767
7768 HISILICON NETWORK SUBSYSTEM DRIVER
7769 M:      Yisen Zhuang <[email protected]>
7770 M:      Salil Mehta <[email protected]>
7771 L:      [email protected]
7772 S:      Maintained
7773 W:      http://www.hisilicon.com
7774 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7775 F:      drivers/net/ethernet/hisilicon/
7776
7777 HISILICON PMU DRIVER
7778 M:      Shaokun Zhang <[email protected]>
7779 S:      Supported
7780 W:      http://www.hisilicon.com
7781 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7782 F:      drivers/perf/hisilicon
7783
7784 HISILICON QM AND ZIP Controller DRIVER
7785 M:      Zhou Wang <[email protected]>
7786 L:      [email protected]
7787 S:      Maintained
7788 F:      Documentation/ABI/testing/debugfs-hisi-zip
7789 F:      drivers/crypto/hisilicon/qm.c
7790 F:      drivers/crypto/hisilicon/qm.h
7791 F:      drivers/crypto/hisilicon/sgl.c
7792 F:      drivers/crypto/hisilicon/zip/
7793
7794 HISILICON ROCE DRIVER
7795 M:      Lijun Ou <[email protected]>
7796 M:      Wei Hu(Xavier) <[email protected]>
7797 M:      Weihang Li <[email protected]>
7798 L:      [email protected]
7799 S:      Maintained
7800 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7801 F:      drivers/infiniband/hw/hns/
7802
7803 HISILICON SAS Controller
7804 M:      John Garry <[email protected]>
7805 S:      Supported
7806 W:      http://www.hisilicon.com
7807 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7808 F:      drivers/scsi/hisi_sas/
7809
7810 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7811 M:      Zaibo Xu <[email protected]>
7812 L:      [email protected]
7813 S:      Maintained
7814 F:      Documentation/ABI/testing/debugfs-hisi-sec
7815 F:      drivers/crypto/hisilicon/sec2/sec.h
7816 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7817 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7818 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7819
7820 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7821 M:      Zaibo Xu <[email protected]>
7822 S:      Maintained
7823 F:      drivers/char/hw_random/hisi-trng-v2.c
7824
7825 HISILICON V3XX SPI NOR FLASH Controller Driver
7826 M:      John Garry <[email protected]>
7827 S:      Maintained
7828 W:      http://www.hisilicon.com
7829 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7830
7831 HMM - Heterogeneous Memory Management
7832 M:      Jérôme Glisse <[email protected]>
7833 L:      [email protected]
7834 S:      Maintained
7835 F:      Documentation/vm/hmm.rst
7836 F:      include/linux/hmm*
7837 F:      lib/test_hmm*
7838 F:      mm/hmm*
7839 F:      tools/testing/selftests/vm/*hmm*
7840
7841 HOST AP DRIVER
7842 M:      Jouni Malinen <[email protected]>
7843 L:      [email protected]
7844 S:      Obsolete
7845 W:      http://w1.fi/hostap-driver.html
7846 F:      drivers/net/wireless/intersil/hostap/
7847
7848 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7849 L:      [email protected]
7850 S:      Orphan
7851 F:      drivers/platform/x86/tc1100-wmi.c
7852
7853 HPET:   High Precision Event Timers driver
7854 M:      Clemens Ladisch <[email protected]>
7855 S:      Maintained
7856 F:      Documentation/timers/hpet.rst
7857 F:      drivers/char/hpet.c
7858 F:      include/linux/hpet.h
7859 F:      include/uapi/linux/hpet.h
7860
7861 HPET:   x86
7862 S:      Orphan
7863 F:      arch/x86/include/asm/hpet.h
7864 F:      arch/x86/kernel/hpet.c
7865
7866 HPFS FILESYSTEM
7867 M:      Mikulas Patocka <[email protected]>
7868 S:      Maintained
7869 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7870 F:      fs/hpfs/
7871
7872 HSI SUBSYSTEM
7873 M:      Sebastian Reichel <[email protected]>
7874 S:      Maintained
7875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7876 F:      Documentation/ABI/testing/sysfs-bus-hsi
7877 F:      Documentation/driver-api/hsi.rst
7878 F:      drivers/hsi/
7879 F:      include/linux/hsi/
7880 F:      include/uapi/linux/hsi/
7881
7882 HSO 3G MODEM DRIVER
7883 L:      [email protected]
7884 S:      Orphan
7885 F:      drivers/net/usb/hso.c
7886
7887 HSR NETWORK PROTOCOL
7888 L:      [email protected]
7889 S:      Orphan
7890 F:      net/hsr/
7891
7892 HT16K33 LED CONTROLLER DRIVER
7893 M:      Robin van der Gracht <[email protected]>
7894 S:      Maintained
7895 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7896 F:      drivers/auxdisplay/ht16k33.c
7897
7898 HTCPEN TOUCHSCREEN DRIVER
7899 M:      Pau Oliva Fora <[email protected]>
7900 L:      [email protected]
7901 S:      Maintained
7902 F:      drivers/input/touchscreen/htcpen.c
7903
7904 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7905 M:      Lorenzo Bianconi <[email protected]>
7906 L:      [email protected]
7907 S:      Maintained
7908 W:      http://www.st.com/
7909 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7910 F:      drivers/iio/humidity/hts221*
7911
7912 HUAWEI ETHERNET DRIVER
7913 M:      Bin Luo <[email protected]>
7914 L:      [email protected]
7915 S:      Supported
7916 F:      Documentation/networking/hinic.rst
7917 F:      drivers/net/ethernet/huawei/hinic/
7918
7919 HUGETLB FILESYSTEM
7920 M:      Mike Kravetz <[email protected]>
7921 L:      [email protected]
7922 S:      Maintained
7923 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7924 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7925 F:      Documentation/vm/hugetlbfs_reserv.rst
7926 F:      fs/hugetlbfs/
7927 F:      include/linux/hugetlb.h
7928 F:      mm/hugetlb.c
7929
7930 HVA ST MEDIA DRIVER
7931 M:      Jean-Christophe Trotin <[email protected]>
7932 L:      [email protected]
7933 S:      Supported
7934 W:      https://linuxtv.org
7935 T:      git git://linuxtv.org/media_tree.git
7936 F:      drivers/media/platform/sti/hva
7937
7938 HWPOISON MEMORY FAILURE HANDLING
7939 M:      Naoya Horiguchi <[email protected]>
7940 L:      [email protected]
7941 S:      Maintained
7942 F:      mm/hwpoison-inject.c
7943 F:      mm/memory-failure.c
7944
7945 HYGON PROCESSOR SUPPORT
7946 M:      Pu Wen <[email protected]>
7947 L:      [email protected]
7948 S:      Maintained
7949 F:      arch/x86/kernel/cpu/hygon.c
7950
7951 HYNIX HI556 SENSOR DRIVER
7952 M:      Shawn Tu <[email protected]>
7953 L:      [email protected]
7954 S:      Maintained
7955 T:      git git://linuxtv.org/media_tree.git
7956 F:      drivers/media/i2c/hi556.c
7957
7958 Hyper-V CORE AND DRIVERS
7959 M:      "K. Y. Srinivasan" <[email protected]>
7960 M:      Haiyang Zhang <[email protected]>
7961 M:      Stephen Hemminger <[email protected]>
7962 M:      Wei Liu <[email protected]>
7963 L:      [email protected]
7964 S:      Supported
7965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7966 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7967 F:      Documentation/ABI/testing/debugfs-hyperv
7968 F:      Documentation/networking/device_drivers/microsoft/netvsc.rst
7969 F:      arch/x86/hyperv
7970 F:      arch/x86/include/asm/hyperv-tlfs.h
7971 F:      arch/x86/include/asm/mshyperv.h
7972 F:      arch/x86/include/asm/trace/hyperv.h
7973 F:      arch/x86/kernel/cpu/mshyperv.c
7974 F:      drivers/clocksource/hyperv_timer.c
7975 F:      drivers/hid/hid-hyperv.c
7976 F:      drivers/hv/
7977 F:      drivers/input/serio/hyperv-keyboard.c
7978 F:      drivers/iommu/hyperv-iommu.c
7979 F:      drivers/net/hyperv/
7980 F:      drivers/pci/controller/pci-hyperv-intf.c
7981 F:      drivers/pci/controller/pci-hyperv.c
7982 F:      drivers/scsi/storvsc_drv.c
7983 F:      drivers/uio/uio_hv_generic.c
7984 F:      drivers/video/fbdev/hyperv_fb.c
7985 F:      include/asm-generic/hyperv-tlfs.h
7986 F:      include/asm-generic/mshyperv.h
7987 F:      include/clocksource/hyperv_timer.h
7988 F:      include/linux/hyperv.h
7989 F:      include/uapi/linux/hyperv.h
7990 F:      net/vmw_vsock/hyperv_transport.c
7991 F:      tools/hv/
7992
7993 HYPERBUS SUPPORT
7994 M:      Vignesh Raghavendra <[email protected]>
7995 L:      [email protected]
7996 S:      Supported
7997 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7998 C:      irc://irc.oftc.net/mtd
7999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8000 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8001 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8002 F:      drivers/mtd/hyperbus/
8003 F:      include/linux/mtd/hyperbus.h
8004
8005 HYPERVISOR VIRTUAL CONSOLE DRIVER
8006 L:      [email protected]
8007 S:      Odd Fixes
8008 F:      drivers/tty/hvc/
8009
8010 I2C ACPI SUPPORT
8011 M:      Mika Westerberg <[email protected]>
8012 L:      [email protected]
8013 L:      [email protected]
8014 S:      Maintained
8015 F:      drivers/i2c/i2c-core-acpi.c
8016
8017 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8018 M:      Ajay Gupta <[email protected]>
8019 L:      [email protected]
8020 S:      Maintained
8021 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8022 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8023
8024 I2C MUXES
8025 M:      Peter Rosin <[email protected]>
8026 L:      [email protected]
8027 S:      Maintained
8028 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8029 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8030 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8031 F:      Documentation/i2c/i2c-topology.rst
8032 F:      Documentation/i2c/muxes/
8033 F:      drivers/i2c/i2c-mux.c
8034 F:      drivers/i2c/muxes/
8035 F:      include/linux/i2c-mux.h
8036
8037 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8038 M:      Gregory CLEMENT <[email protected]>
8039 L:      [email protected]
8040 S:      Maintained
8041 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8042 F:      drivers/i2c/busses/i2c-mv64xxx.c
8043
8044 I2C OVER PARALLEL PORT
8045 M:      Jean Delvare <[email protected]>
8046 L:      [email protected]
8047 S:      Maintained
8048 F:      Documentation/i2c/busses/i2c-parport.rst
8049 F:      drivers/i2c/busses/i2c-parport.c
8050
8051 I2C SUBSYSTEM
8052 M:      Wolfram Sang <[email protected]>
8053 L:      [email protected]
8054 S:      Maintained
8055 W:      https://i2c.wiki.kernel.org/
8056 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8058 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8059 F:      Documentation/i2c/
8060 F:      drivers/i2c/*
8061 F:      include/linux/i2c-dev.h
8062 F:      include/linux/i2c-smbus.h
8063 F:      include/linux/i2c.h
8064 F:      include/uapi/linux/i2c-*.h
8065 F:      include/uapi/linux/i2c.h
8066
8067 I2C SUBSYSTEM HOST DRIVERS
8068 L:      [email protected]
8069 S:      Odd Fixes
8070 W:      https://i2c.wiki.kernel.org/
8071 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8073 F:      Documentation/devicetree/bindings/i2c/
8074 F:      drivers/i2c/algos/
8075 F:      drivers/i2c/busses/
8076
8077 I2C-TAOS-EVM DRIVER
8078 M:      Jean Delvare <[email protected]>
8079 L:      [email protected]
8080 S:      Maintained
8081 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8082 F:      drivers/i2c/busses/i2c-taos-evm.c
8083
8084 I2C-TINY-USB DRIVER
8085 M:      Till Harbaum <[email protected]>
8086 L:      [email protected]
8087 S:      Maintained
8088 W:      http://www.harbaum.org/till/i2c_tiny_usb
8089 F:      drivers/i2c/busses/i2c-tiny-usb.c
8090
8091 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8092 M:      Jean Delvare <[email protected]>
8093 L:      [email protected]
8094 S:      Maintained
8095 F:      Documentation/i2c/busses/i2c-ali1535.rst
8096 F:      Documentation/i2c/busses/i2c-ali1563.rst
8097 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8098 F:      Documentation/i2c/busses/i2c-amd756.rst
8099 F:      Documentation/i2c/busses/i2c-amd8111.rst
8100 F:      Documentation/i2c/busses/i2c-i801.rst
8101 F:      Documentation/i2c/busses/i2c-nforce2.rst
8102 F:      Documentation/i2c/busses/i2c-piix4.rst
8103 F:      Documentation/i2c/busses/i2c-sis5595.rst
8104 F:      Documentation/i2c/busses/i2c-sis630.rst
8105 F:      Documentation/i2c/busses/i2c-sis96x.rst
8106 F:      Documentation/i2c/busses/i2c-via.rst
8107 F:      Documentation/i2c/busses/i2c-viapro.rst
8108 F:      drivers/i2c/busses/i2c-ali1535.c
8109 F:      drivers/i2c/busses/i2c-ali1563.c
8110 F:      drivers/i2c/busses/i2c-ali15x3.c
8111 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8112 F:      drivers/i2c/busses/i2c-amd756.c
8113 F:      drivers/i2c/busses/i2c-amd8111.c
8114 F:      drivers/i2c/busses/i2c-i801.c
8115 F:      drivers/i2c/busses/i2c-isch.c
8116 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8117 F:      drivers/i2c/busses/i2c-nforce2.c
8118 F:      drivers/i2c/busses/i2c-piix4.c
8119 F:      drivers/i2c/busses/i2c-sis5595.c
8120 F:      drivers/i2c/busses/i2c-sis630.c
8121 F:      drivers/i2c/busses/i2c-sis96x.c
8122 F:      drivers/i2c/busses/i2c-via.c
8123 F:      drivers/i2c/busses/i2c-viapro.c
8124
8125 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8126 M:      Hans de Goede <[email protected]>
8127 L:      [email protected]
8128 S:      Maintained
8129 F:      drivers/i2c/busses/i2c-cht-wc.c
8130
8131 I2C/SMBUS ISMT DRIVER
8132 M:      Seth Heasley <[email protected]>
8133 M:      Neil Horman <[email protected]>
8134 L:      [email protected]
8135 F:      Documentation/i2c/busses/i2c-ismt.rst
8136 F:      drivers/i2c/busses/i2c-ismt.c
8137
8138 I2C/SMBUS STUB DRIVER
8139 M:      Jean Delvare <[email protected]>
8140 L:      [email protected]
8141 S:      Maintained
8142 F:      drivers/i2c/i2c-stub.c
8143
8144 I3C DRIVER FOR CADENCE I3C MASTER IP
8145 M:      Przemysław Gaj <[email protected]>
8146 S:      Maintained
8147 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8148 F:      drivers/i3c/master/i3c-master-cdns.c
8149
8150 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8151 M:      Vitor Soares <[email protected]>
8152 S:      Maintained
8153 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8154 F:      drivers/i3c/master/dw*
8155
8156 I3C SUBSYSTEM
8157 M:      Boris Brezillon <[email protected]>
8158 L:      [email protected] (moderated for non-subscribers)
8159 S:      Maintained
8160 C:      irc://chat.freenode.net/linux-i3c
8161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8162 F:      Documentation/ABI/testing/sysfs-bus-i3c
8163 F:      Documentation/devicetree/bindings/i3c/
8164 F:      Documentation/driver-api/i3c
8165 F:      drivers/i3c/
8166 F:      include/linux/i3c/
8167
8168 IA64 (Itanium) PLATFORM
8169 M:      Tony Luck <[email protected]>
8170 M:      Fenghua Yu <[email protected]>
8171 L:      [email protected]
8172 S:      Maintained
8173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8174 F:      Documentation/ia64/
8175 F:      arch/ia64/
8176
8177 IBM Power 842 compression accelerator
8178 M:      Haren Myneni <[email protected]>
8179 S:      Supported
8180 F:      crypto/842.c
8181 F:      drivers/crypto/nx/Kconfig
8182 F:      drivers/crypto/nx/Makefile
8183 F:      drivers/crypto/nx/nx-842*
8184 F:      include/linux/sw842.h
8185 F:      lib/842/
8186
8187 IBM Power in-Nest Crypto Acceleration
8188 M:      Breno Leitão <[email protected]>
8189 M:      Nayna Jain <[email protected]>
8190 M:      Paulo Flabiano Smorigo <[email protected]>
8191 L:      [email protected]
8192 S:      Supported
8193 F:      drivers/crypto/nx/Kconfig
8194 F:      drivers/crypto/nx/Makefile
8195 F:      drivers/crypto/nx/nx-aes*
8196 F:      drivers/crypto/nx/nx-sha*
8197 F:      drivers/crypto/nx/nx.*
8198 F:      drivers/crypto/nx/nx_csbcpb.h
8199 F:      drivers/crypto/nx/nx_debugfs.c
8200
8201 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8202 M:      Tyrel Datwyler <[email protected]>
8203 L:      [email protected]
8204 L:      [email protected]
8205 S:      Supported
8206 F:      drivers/pci/hotplug/rpadlpar*
8207
8208 IBM Power Linux RAID adapter
8209 M:      Brian King <[email protected]>
8210 S:      Supported
8211 F:      drivers/scsi/ipr.*
8212
8213 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8214 M:      Tyrel Datwyler <[email protected]>
8215 L:      [email protected]
8216 L:      [email protected]
8217 S:      Supported
8218 F:      drivers/pci/hotplug/rpaphp*
8219
8220 IBM Power SRIOV Virtual NIC Device Driver
8221 M:      Thomas Falcon <[email protected]>
8222 M:      John Allen <[email protected]>
8223 L:      [email protected]
8224 S:      Supported
8225 F:      drivers/net/ethernet/ibm/ibmvnic.*
8226
8227 IBM Power Virtual Accelerator Switchboard
8228 M:      Sukadev Bhattiprolu <[email protected]>
8229 L:      [email protected]
8230 S:      Supported
8231 F:      arch/powerpc/include/asm/vas.h
8232 F:      arch/powerpc/platforms/powernv/copy-paste.h
8233 F:      arch/powerpc/platforms/powernv/vas*
8234
8235 IBM Power Virtual Ethernet Device Driver
8236 M:      Thomas Falcon <[email protected]>
8237 L:      [email protected]
8238 S:      Supported
8239 F:      drivers/net/ethernet/ibm/ibmveth.*
8240
8241 IBM Power Virtual FC Device Drivers
8242 M:      Tyrel Datwyler <[email protected]>
8243 L:      [email protected]
8244 S:      Supported
8245 F:      drivers/scsi/ibmvscsi/ibmvfc*
8246
8247 IBM Power Virtual Management Channel Driver
8248 M:      Steven Royer <[email protected]>
8249 S:      Supported
8250 F:      drivers/misc/ibmvmc.*
8251
8252 IBM Power Virtual SCSI Device Drivers
8253 M:      Tyrel Datwyler <[email protected]>
8254 L:      [email protected]
8255 S:      Supported
8256 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8257 F:      include/scsi/viosrp.h
8258
8259 IBM Power Virtual SCSI Device Target Driver
8260 M:      Michael Cyr <[email protected]>
8261 L:      [email protected]
8262 L:      [email protected]
8263 S:      Supported
8264 F:      drivers/scsi/ibmvscsi_tgt/
8265
8266 IBM Power VMX Cryptographic instructions
8267 M:      Breno Leitão <[email protected]>
8268 M:      Nayna Jain <[email protected]>
8269 M:      Paulo Flabiano Smorigo <[email protected]>
8270 L:      [email protected]
8271 S:      Supported
8272 F:      drivers/crypto/vmx/Kconfig
8273 F:      drivers/crypto/vmx/Makefile
8274 F:      drivers/crypto/vmx/aes*
8275 F:      drivers/crypto/vmx/ghash*
8276 F:      drivers/crypto/vmx/ppc-xlate.pl
8277 F:      drivers/crypto/vmx/vmx.c
8278
8279 IBM ServeRAID RAID DRIVER
8280 S:      Orphan
8281 F:      drivers/scsi/ips.*
8282
8283 ICH LPC AND GPIO DRIVER
8284 M:      Peter Tyser <[email protected]>
8285 S:      Maintained
8286 F:      drivers/gpio/gpio-ich.c
8287 F:      drivers/mfd/lpc_ich.c
8288
8289 ICY I2C DRIVER
8290 M:      Max Staudt <[email protected]>
8291 L:      [email protected]
8292 S:      Maintained
8293 F:      drivers/i2c/busses/i2c-icy.c
8294
8295 IDE SUBSYSTEM
8296 M:      "David S. Miller" <[email protected]>
8297 L:      [email protected]
8298 S:      Maintained
8299 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8301 F:      Documentation/ide/
8302 F:      drivers/ide/
8303 F:      include/linux/ide.h
8304
8305 IDE/ATAPI DRIVERS
8306 M:      Borislav Petkov <[email protected]>
8307 L:      [email protected]
8308 S:      Maintained
8309 F:      Documentation/cdrom/ide-cd.rst
8310 F:      drivers/ide/ide-cd*
8311
8312 IDEAPAD LAPTOP EXTRAS DRIVER
8313 M:      Ike Panhc <[email protected]>
8314 L:      [email protected]
8315 S:      Maintained
8316 W:      http://launchpad.net/ideapad-laptop
8317 F:      drivers/platform/x86/ideapad-laptop.c
8318
8319 IDEAPAD LAPTOP SLIDEBAR DRIVER
8320 M:      Andrey Moiseev <[email protected]>
8321 L:      [email protected]
8322 S:      Maintained
8323 W:      https://github.com/o2genum/ideapad-slidebar
8324 F:      drivers/input/misc/ideapad_slidebar.c
8325
8326 IDT VersaClock 5 CLOCK DRIVER
8327 M:      Marek Vasut <[email protected]>
8328 S:      Maintained
8329 F:      drivers/clk/clk-versaclock5.c
8330
8331 IEEE 802.15.4 SUBSYSTEM
8332 M:      Alexander Aring <[email protected]>
8333 M:      Stefan Schmidt <[email protected]>
8334 L:      [email protected]
8335 S:      Maintained
8336 W:      https://linux-wpan.org/
8337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8339 F:      Documentation/networking/ieee802154.rst
8340 F:      drivers/net/ieee802154/
8341 F:      include/linux/ieee802154.h
8342 F:      include/linux/nl802154.h
8343 F:      include/net/af_ieee802154.h
8344 F:      include/net/cfg802154.h
8345 F:      include/net/ieee802154_netdev.h
8346 F:      include/net/mac802154.h
8347 F:      include/net/nl802154.h
8348 F:      net/ieee802154/
8349 F:      net/mac802154/
8350
8351 IFE PROTOCOL
8352 M:      Yotam Gigi <[email protected]>
8353 M:      Jamal Hadi Salim <[email protected]>
8354 F:      include/net/ife.h
8355 F:      include/uapi/linux/ife.h
8356 F:      net/ife
8357
8358 IGORPLUG-USB IR RECEIVER
8359 M:      Sean Young <[email protected]>
8360 L:      [email protected]
8361 S:      Maintained
8362 F:      drivers/media/rc/igorplugusb.c
8363
8364 IGUANAWORKS USB IR TRANSCEIVER
8365 M:      Sean Young <[email protected]>
8366 L:      [email protected]
8367 S:      Maintained
8368 F:      drivers/media/rc/iguanair.c
8369
8370 IIO DIGITAL POTENTIOMETER DAC
8371 M:      Peter Rosin <[email protected]>
8372 L:      [email protected]
8373 S:      Maintained
8374 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8375 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8376 F:      drivers/iio/dac/dpot-dac.c
8377
8378 IIO ENVELOPE DETECTOR
8379 M:      Peter Rosin <[email protected]>
8380 L:      [email protected]
8381 S:      Maintained
8382 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8383 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8384 F:      drivers/iio/adc/envelope-detector.c
8385
8386 IIO MULTIPLEXER
8387 M:      Peter Rosin <[email protected]>
8388 L:      [email protected]
8389 S:      Maintained
8390 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8391 F:      drivers/iio/multiplexer/iio-mux.c
8392
8393 IIO SUBSYSTEM AND DRIVERS
8394 M:      Jonathan Cameron <[email protected]>
8395 R:      Hartmut Knaack <[email protected]>
8396 R:      Lars-Peter Clausen <[email protected]>
8397 R:      Peter Meerwald-Stadler <[email protected]>
8398 L:      [email protected]
8399 S:      Maintained
8400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8401 F:      Documentation/ABI/testing/configfs-iio*
8402 F:      Documentation/ABI/testing/sysfs-bus-iio*
8403 F:      Documentation/devicetree/bindings/iio/
8404 F:      drivers/iio/
8405 F:      drivers/staging/iio/
8406 F:      include/linux/iio/
8407 F:      tools/iio/
8408
8409 IIO UNIT CONVERTER
8410 M:      Peter Rosin <[email protected]>
8411 L:      [email protected]
8412 S:      Maintained
8413 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8414 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8415 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8416 F:      drivers/iio/afe/iio-rescale.c
8417
8418 IKANOS/ADI EAGLE ADSL USB DRIVER
8419 M:      Matthieu Castet <[email protected]>
8420 M:      Stanislaw Gruszka <[email protected]>
8421 S:      Maintained
8422 F:      drivers/usb/atm/ueagle-atm.c
8423
8424 IMGTEC ASCII LCD DRIVER
8425 M:      Paul Burton <[email protected]>
8426 S:      Maintained
8427 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8428 F:      drivers/auxdisplay/img-ascii-lcd.c
8429
8430 IMGTEC IR DECODER DRIVER
8431 S:      Orphan
8432 F:      drivers/media/rc/img-ir/
8433
8434 IMON SOUNDGRAPH USB IR RECEIVER
8435 M:      Sean Young <[email protected]>
8436 L:      [email protected]
8437 S:      Maintained
8438 F:      drivers/media/rc/imon.c
8439 F:      drivers/media/rc/imon_raw.c
8440
8441 IMS TWINTURBO FRAMEBUFFER DRIVER
8442 L:      [email protected]
8443 S:      Orphan
8444 F:      drivers/video/fbdev/imsttfb.c
8445
8446 INA209 HARDWARE MONITOR DRIVER
8447 M:      Guenter Roeck <[email protected]>
8448 L:      [email protected]
8449 S:      Maintained
8450 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8451 F:      Documentation/hwmon/ina209.rst
8452 F:      drivers/hwmon/ina209.c
8453
8454 INA2XX HARDWARE MONITOR DRIVER
8455 M:      Guenter Roeck <[email protected]>
8456 L:      [email protected]
8457 S:      Maintained
8458 F:      Documentation/hwmon/ina2xx.rst
8459 F:      drivers/hwmon/ina2xx.c
8460 F:      include/linux/platform_data/ina2xx.h
8461
8462 INDUSTRY PACK SUBSYSTEM (IPACK)
8463 M:      Samuel Iglesias Gonsalvez <[email protected]>
8464 M:      Jens Taprogge <[email protected]>
8465 M:      Greg Kroah-Hartman <[email protected]>
8466 L:      [email protected]
8467 S:      Maintained
8468 W:      http://industrypack.sourceforge.net
8469 F:      drivers/ipack/
8470
8471 INFINEON DPS310 Driver
8472 M:      Eddie James <[email protected]>
8473 L:      [email protected]
8474 S:      Maintained
8475 F:      drivers/iio/pressure/dps310.c
8476
8477 INFINIBAND SUBSYSTEM
8478 M:      Doug Ledford <[email protected]>
8479 M:      Jason Gunthorpe <[email protected]>
8480 L:      [email protected]
8481 S:      Supported
8482 W:      https://github.com/linux-rdma/rdma-core
8483 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8485 F:      Documentation/devicetree/bindings/infiniband/
8486 F:      Documentation/infiniband/
8487 F:      drivers/infiniband/
8488 F:      include/rdma/
8489 F:      include/trace/events/ib_mad.h
8490 F:      include/trace/events/ib_umad.h
8491 F:      include/uapi/linux/if_infiniband.h
8492 F:      include/uapi/rdma/
8493 F:      samples/bpf/ibumad_kern.c
8494 F:      samples/bpf/ibumad_user.c
8495
8496 INGENIC JZ4780 DMA Driver
8497 M:      Zubair Lutfullah Kakakhel <[email protected]>
8498 S:      Maintained
8499 F:      drivers/dma/dma-jz4780.c
8500
8501 INGENIC JZ4780 NAND DRIVER
8502 M:      Harvey Hunt <[email protected]>
8503 L:      [email protected]
8504 S:      Maintained
8505 F:      drivers/mtd/nand/raw/ingenic/
8506
8507 INGENIC JZ47xx SoCs
8508 M:      Paul Cercueil <[email protected]>
8509 S:      Maintained
8510 F:      arch/mips/boot/dts/ingenic/
8511 F:      arch/mips/include/asm/mach-jz4740/
8512 F:      arch/mips/jz4740/
8513 F:      drivers/clk/ingenic/
8514 F:      drivers/dma/dma-jz4780.c
8515 F:      drivers/gpu/drm/ingenic/
8516 F:      drivers/i2c/busses/i2c-jz4780.c
8517 F:      drivers/iio/adc/ingenic-adc.c
8518 F:      drivers/irqchip/irq-ingenic.c
8519 F:      drivers/memory/jz4780-nemc.c
8520 F:      drivers/mmc/host/jz4740_mmc.c
8521 F:      drivers/mtd/nand/raw/ingenic/
8522 F:      drivers/pinctrl/pinctrl-ingenic.c
8523 F:      drivers/power/supply/ingenic-battery.c
8524 F:      drivers/pwm/pwm-jz4740.c
8525 F:      drivers/remoteproc/ingenic_rproc.c
8526 F:      drivers/rtc/rtc-jz4740.c
8527 F:      drivers/tty/serial/8250/8250_ingenic.c
8528 F:      drivers/usb/musb/jz4740.c
8529 F:      drivers/watchdog/jz4740_wdt.c
8530 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8531 F:      include/linux/mfd/ingenic-tcu.h
8532 F:      sound/soc/codecs/jz47*
8533 F:      sound/soc/jz4740/
8534
8535 INOTIFY
8536 M:      Jan Kara <[email protected]>
8537 R:      Amir Goldstein <[email protected]>
8538 L:      [email protected]
8539 S:      Maintained
8540 F:      Documentation/filesystems/inotify.rst
8541 F:      fs/notify/inotify/
8542 F:      include/linux/inotify.h
8543 F:      include/uapi/linux/inotify.h
8544
8545 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8546 M:      Dmitry Torokhov <[email protected]>
8547 L:      [email protected]
8548 S:      Maintained
8549 Q:      http://patchwork.kernel.org/project/linux-input/list/
8550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8551 F:      Documentation/devicetree/bindings/input/
8552 F:      Documentation/devicetree/bindings/serio/
8553 F:      Documentation/input/
8554 F:      drivers/input/
8555 F:      include/linux/input.h
8556 F:      include/linux/input/
8557 F:      include/uapi/linux/input-event-codes.h
8558 F:      include/uapi/linux/input.h
8559
8560 INPUT MULTITOUCH (MT) PROTOCOL
8561 M:      Henrik Rydberg <[email protected]>
8562 L:      [email protected]
8563 S:      Odd fixes
8564 F:      Documentation/input/multi-touch-protocol.rst
8565 F:      drivers/input/input-mt.c
8566 K:      \b(ABS|SYN)_MT_
8567
8568 INSIDE SECURE CRYPTO DRIVER
8569 M:      Antoine Tenart <[email protected]>
8570 L:      [email protected]
8571 S:      Maintained
8572 F:      drivers/crypto/inside-secure/
8573
8574 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8575 M:      Mimi Zohar <[email protected]>
8576 M:      Dmitry Kasatkin <[email protected]>
8577 L:      [email protected]
8578 S:      Supported
8579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8580 F:      security/integrity/ima/
8581
8582 INTEL 810/815 FRAMEBUFFER DRIVER
8583 M:      Antonino Daplas <[email protected]>
8584 L:      [email protected]
8585 S:      Maintained
8586 F:      drivers/video/fbdev/i810/
8587
8588 INTEL ASoC DRIVERS
8589 M:      Cezary Rojewski <[email protected]>
8590 M:      Pierre-Louis Bossart <[email protected]>
8591 M:      Liam Girdwood <[email protected]>
8592 M:      Jie Yang <[email protected]>
8593 L:      [email protected] (moderated for non-subscribers)
8594 S:      Supported
8595 F:      sound/soc/intel/
8596
8597 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8598 M:      Hans de Goede <[email protected]>
8599 L:      [email protected]
8600 S:      Maintained
8601 F:      drivers/platform/x86/intel_atomisp2_pm.c
8602
8603 INTEL BROXTON PMC DRIVER
8604 M:      Mika Westerberg <[email protected]>
8605 M:      Zha Qipeng <[email protected]>
8606 S:      Maintained
8607 F:      drivers/mfd/intel_pmc_bxt.c
8608 F:      include/linux/mfd/intel_pmc_bxt.h
8609
8610 INTEL C600 SERIES SAS CONTROLLER DRIVER
8611 M:      Intel SCU Linux support <[email protected]>
8612 M:      Artur Paszkiewicz <[email protected]>
8613 L:      [email protected]
8614 S:      Supported
8615 T:      git git://git.code.sf.net/p/intel-sas/isci
8616 F:      drivers/scsi/isci/
8617
8618 INTEL CPU family model numbers
8619 M:      Tony Luck <[email protected]>
8620 M:      [email protected]
8621 L:      [email protected]
8622 S:      Supported
8623 F:      arch/x86/include/asm/intel-family.h
8624
8625 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8626 M:      Jani Nikula <[email protected]>
8627 M:      Joonas Lahtinen <[email protected]>
8628 M:      Rodrigo Vivi <[email protected]>
8629 L:      [email protected]
8630 S:      Supported
8631 W:      https://01.org/linuxgraphics/
8632 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8633 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8634 C:      irc://chat.freenode.net/intel-gfx
8635 T:      git git://anongit.freedesktop.org/drm-intel
8636 F:      Documentation/gpu/i915.rst
8637 F:      drivers/gpu/drm/i915/
8638 F:      include/drm/i915*
8639 F:      include/uapi/drm/i915_drm.h
8640
8641 INTEL ETHERNET DRIVERS
8642 M:      Jeff Kirsher <[email protected]>
8643 L:      [email protected] (moderated for non-subscribers)
8644 S:      Supported
8645 W:      http://www.intel.com/support/feedback.htm
8646 W:      http://e1000.sourceforge.net/
8647 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8650 F:      Documentation/networking/device_drivers/intel/e100.rst
8651 F:      Documentation/networking/device_drivers/intel/e1000.rst
8652 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8653 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8654 F:      Documentation/networking/device_drivers/intel/i40e.rst
8655 F:      Documentation/networking/device_drivers/intel/iavf.rst
8656 F:      Documentation/networking/device_drivers/intel/ice.rst
8657 F:      Documentation/networking/device_drivers/intel/igb.rst
8658 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8659 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8660 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8661 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8662 F:      drivers/net/ethernet/intel/
8663 F:      drivers/net/ethernet/intel/*/
8664 F:      include/linux/avf/virtchnl.h
8665
8666 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8667 M:      Maik Broemme <[email protected]>
8668 L:      [email protected]
8669 S:      Maintained
8670 F:      Documentation/fb/intelfb.rst
8671 F:      drivers/video/fbdev/intelfb/
8672
8673 INTEL GPIO DRIVERS
8674 M:      Andy Shevchenko <[email protected]>
8675 L:      [email protected]
8676 S:      Maintained
8677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8678 F:      drivers/gpio/gpio-ich.c
8679 F:      drivers/gpio/gpio-intel-mid.c
8680 F:      drivers/gpio/gpio-merrifield.c
8681 F:      drivers/gpio/gpio-ml-ioh.c
8682 F:      drivers/gpio/gpio-pch.c
8683 F:      drivers/gpio/gpio-sch.c
8684 F:      drivers/gpio/gpio-sodaville.c
8685
8686 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8687 M:      Zhenyu Wang <[email protected]>
8688 M:      Zhi Wang <[email protected]>
8689 L:      [email protected]
8690 L:      [email protected]
8691 S:      Supported
8692 W:      https://01.org/igvt-g
8693 T:      git https://github.com/intel/gvt-linux.git
8694 F:      drivers/gpu/drm/i915/gvt/
8695
8696 INTEL HID EVENT DRIVER
8697 M:      Alex Hung <[email protected]>
8698 L:      [email protected]
8699 S:      Maintained
8700 F:      drivers/platform/x86/intel-hid.c
8701
8702 INTEL I/OAT DMA DRIVER
8703 M:      Dave Jiang <[email protected]>
8704 R:      Dan Williams <[email protected]>
8705 L:      [email protected]
8706 S:      Supported
8707 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8708 F:      drivers/dma/ioat*
8709
8710 INTEL IADX DRIVER
8711 M:      Dave Jiang <[email protected]>
8712 L:      [email protected]
8713 S:      Supported
8714 F:      drivers/dma/idxd/*
8715 F:      include/uapi/linux/idxd.h
8716
8717 INTEL IDLE DRIVER
8718 M:      Jacob Pan <[email protected]>
8719 M:      Len Brown <[email protected]>
8720 L:      [email protected]
8721 S:      Supported
8722 B:      https://bugzilla.kernel.org
8723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8724 F:      drivers/idle/intel_idle.c
8725
8726 INTEL INTEGRATED SENSOR HUB DRIVER
8727 M:      Srinivas Pandruvada <[email protected]>
8728 M:      Jiri Kosina <[email protected]>
8729 L:      [email protected]
8730 S:      Maintained
8731 F:      drivers/hid/intel-ish-hid/
8732
8733 INTEL IOMMU (VT-d)
8734 M:      David Woodhouse <[email protected]>
8735 M:      Lu Baolu <[email protected]>
8736 L:      [email protected]
8737 S:      Supported
8738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8739 F:      drivers/iommu/intel/
8740 F:      include/linux/intel-iommu.h
8741 F:      include/linux/intel-svm.h
8742
8743 INTEL IOP-ADMA DMA DRIVER
8744 R:      Dan Williams <[email protected]>
8745 S:      Odd fixes
8746 F:      drivers/dma/iop-adma.c
8747
8748 INTEL IPU3 CSI-2 CIO2 DRIVER
8749 M:      Yong Zhi <[email protected]>
8750 M:      Sakari Ailus <[email protected]>
8751 M:      Bingbu Cao <[email protected]>
8752 R:      Tian Shu Qiu <[email protected]>
8753 L:      [email protected]
8754 S:      Maintained
8755 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8756 F:      drivers/media/pci/intel/ipu3/
8757
8758 INTEL IPU3 CSI-2 IMGU DRIVER
8759 M:      Sakari Ailus <[email protected]>
8760 R:      Bingbu Cao <[email protected]>
8761 R:      Tian Shu Qiu <[email protected]>
8762 L:      [email protected]
8763 S:      Maintained
8764 F:      Documentation/admin-guide/media/ipu3.rst
8765 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8766 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8767 F:      drivers/staging/media/ipu3/
8768
8769 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8770 M:      Krzysztof Halasa <[email protected]>
8771 S:      Maintained
8772 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8773 F:      drivers/net/wan/ixp4xx_hss.c
8774 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8775 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8776 F:      include/linux/soc/ixp4xx/npe.h
8777 F:      include/linux/soc/ixp4xx/qmgr.h
8778
8779 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8780 M:      Deepak Saxena <[email protected]>
8781 S:      Maintained
8782 F:      drivers/char/hw_random/ixp4xx-rng.c
8783
8784 INTEL MANAGEMENT ENGINE (mei)
8785 M:      Tomas Winkler <[email protected]>
8786 L:      [email protected]
8787 S:      Supported
8788 F:      Documentation/driver-api/mei/*
8789 F:      drivers/misc/mei/*
8790 F:      drivers/watchdog/mei_wdt.c
8791 F:      include/linux/mei_cl_bus.h
8792 F:      include/uapi/linux/mei.h
8793 F:      samples/mei/*
8794
8795 INTEL MENLOW THERMAL DRIVER
8796 M:      Sujith Thomas <[email protected]>
8797 L:      [email protected]
8798 S:      Supported
8799 W:      https://01.org/linux-acpi
8800 F:      drivers/platform/x86/intel_menlow.c
8801
8802 INTEL MIC DRIVERS (mic)
8803 M:      Sudeep Dutt <[email protected]>
8804 M:      Ashutosh Dixit <[email protected]>
8805 S:      Supported
8806 W:      https://github.com/sudeepdutt/mic
8807 W:      http://software.intel.com/en-us/mic-developer
8808 F:      Documentation/misc-devices/mic/
8809 F:      drivers/dma/mic_x100_dma.c
8810 F:      drivers/dma/mic_x100_dma.h
8811 F:      drivers/misc/mic/
8812 F:      include/linux/mic_bus.h
8813 F:      include/linux/scif.h
8814 F:      include/uapi/linux/mic_common.h
8815 F:      include/uapi/linux/mic_ioctl.h
8816 F:      include/uapi/linux/scif_ioctl.h
8817
8818 INTEL P-Unit IPC DRIVER
8819 M:      Zha Qipeng <[email protected]>
8820 L:      [email protected]
8821 S:      Maintained
8822 F:      arch/x86/include/asm/intel_punit_ipc.h
8823 F:      drivers/platform/x86/intel_punit_ipc.c
8824
8825 INTEL PMC CORE DRIVER
8826 M:      Rajneesh Bhardwaj <[email protected]>
8827 M:      Vishwanath Somayaji <[email protected]>
8828 L:      [email protected]
8829 S:      Maintained
8830 F:      drivers/platform/x86/intel_pmc_core*
8831
8832 INTEL PMIC GPIO DRIVERS
8833 M:      Andy Shevchenko <[email protected]>
8834 S:      Maintained
8835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8836 F:      drivers/gpio/gpio-*cove.c
8837 F:      drivers/gpio/gpio-msic.c
8838
8839 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8840 R:      Andy Shevchenko <[email protected]>
8841 S:      Maintained
8842 F:      drivers/mfd/intel_msic.c
8843 F:      drivers/mfd/intel_soc_pmic*
8844 F:      include/linux/mfd/intel_msic.h
8845 F:      include/linux/mfd/intel_soc_pmic*
8846
8847 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8848 M:      Stanislav Yakovlev <[email protected]>
8849 L:      [email protected]
8850 S:      Maintained
8851 F:      Documentation/networking/device_drivers/intel/ipw2100.rst
8852 F:      Documentation/networking/device_drivers/intel/ipw2200.rst
8853 F:      drivers/net/wireless/intel/ipw2x00/
8854
8855 INTEL PSTATE DRIVER
8856 M:      Srinivas Pandruvada <[email protected]>
8857 M:      Len Brown <[email protected]>
8858 L:      [email protected]
8859 S:      Supported
8860 F:      drivers/cpufreq/intel_pstate.c
8861
8862 INTEL RDMA RNIC DRIVER
8863 M:      Faisal Latif <[email protected]>
8864 M:      Shiraz Saleem <[email protected]>
8865 L:      [email protected]
8866 S:      Supported
8867 F:      drivers/infiniband/hw/i40iw/
8868 F:      include/uapi/rdma/i40iw-abi.h
8869
8870 INTEL SCU DRIVERS
8871 M:      Mika Westerberg <[email protected]>
8872 S:      Maintained
8873 F:      arch/x86/include/asm/intel_scu_ipc.h
8874 F:      drivers/platform/x86/intel_scu_*
8875
8876 INTEL SPEED SELECT TECHNOLOGY
8877 M:      Srinivas Pandruvada <[email protected]>
8878 L:      [email protected]
8879 S:      Maintained
8880 F:      drivers/platform/x86/intel_speed_select_if/
8881 F:      include/uapi/linux/isst_if.h
8882 F:      tools/power/x86/intel-speed-select/
8883
8884 INTEL STRATIX10 FIRMWARE DRIVERS
8885 M:      Richard Gong <[email protected]>
8886 L:      [email protected]
8887 S:      Maintained
8888 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8889 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8890 F:      drivers/firmware/stratix10-rsu.c
8891 F:      drivers/firmware/stratix10-svc.c
8892 F:      include/linux/firmware/intel/stratix10-smc.h
8893 F:      include/linux/firmware/intel/stratix10-svc-client.h
8894
8895 INTEL TELEMETRY DRIVER
8896 M:      Rajneesh Bhardwaj <[email protected]>
8897 M:      "David E. Box" <[email protected]>
8898 L:      [email protected]
8899 S:      Maintained
8900 F:      arch/x86/include/asm/intel_telemetry.h
8901 F:      drivers/platform/x86/intel_telemetry*
8902
8903 INTEL UNCORE FREQUENCY CONTROL
8904 M:      Srinivas Pandruvada <[email protected]>
8905 L:      [email protected]
8906 S:      Maintained
8907 F:      drivers/platform/x86/intel-uncore-frequency.c
8908
8909 INTEL VIRTUAL BUTTON DRIVER
8910 M:      AceLan Kao <[email protected]>
8911 L:      [email protected]
8912 S:      Maintained
8913 F:      drivers/platform/x86/intel-vbtn.c
8914
8915 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8916 M:      Stanislaw Gruszka <[email protected]>
8917 L:      [email protected]
8918 S:      Supported
8919 F:      drivers/net/wireless/intel/iwlegacy/
8920
8921 INTEL WIRELESS WIFI LINK (iwlwifi)
8922 M:      Johannes Berg <[email protected]>
8923 M:      Emmanuel Grumbach <[email protected]>
8924 M:      Luca Coelho <[email protected]>
8925 M:      Intel Linux Wireless <[email protected]>
8926 L:      [email protected]
8927 S:      Supported
8928 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8930 F:      drivers/net/wireless/intel/iwlwifi/
8931
8932 INTEL WIRELESS WIMAX CONNECTION 2400
8933 M:      Inaky Perez-Gonzalez <[email protected]>
8934 M:      [email protected]
8935 L:      [email protected] (subscribers-only)
8936 S:      Supported
8937 W:      http://linuxwimax.org
8938 F:      Documentation/admin-guide/wimax/i2400m.rst
8939 F:      drivers/net/wimax/i2400m/
8940 F:      include/uapi/linux/wimax/i2400m.h
8941
8942 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
8943 M:      Jithu Joseph <[email protected]>
8944 R:      Maurice Ma <[email protected]>
8945 S:      Maintained
8946 W:      https://slimbootloader.github.io/security/firmware-update.html
8947 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
8948
8949 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8950 M:      Mario Limonciello <[email protected]>
8951 S:      Maintained
8952 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8953
8954 INTEL(R) TRACE HUB
8955 M:      Alexander Shishkin <[email protected]>
8956 S:      Supported
8957 F:      Documentation/trace/intel_th.rst
8958 F:      drivers/hwtracing/intel_th/
8959 F:      include/linux/intel_th.h
8960
8961 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8962 M:      Ning Sun <[email protected]>
8963 L:      [email protected]
8964 S:      Supported
8965 W:      http://tboot.sourceforge.net
8966 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8967 F:      Documentation/x86/intel_txt.rst
8968 F:      arch/x86/kernel/tboot.c
8969 F:      include/linux/tboot.h
8970
8971 INTERCONNECT API
8972 M:      Georgi Djakov <[email protected]>
8973 L:      [email protected]
8974 S:      Maintained
8975 F:      Documentation/devicetree/bindings/interconnect/
8976 F:      Documentation/driver-api/interconnect.rst
8977 F:      drivers/interconnect/
8978 F:      include/dt-bindings/interconnect/
8979 F:      include/linux/interconnect-provider.h
8980 F:      include/linux/interconnect.h
8981
8982 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8983 M:      Linus Walleij <[email protected]>
8984 L:      [email protected]
8985 S:      Maintained
8986 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8987 F:      drivers/iio/gyro/mpu3050*
8988
8989 IOC3 ETHERNET DRIVER
8990 M:      Ralf Baechle <[email protected]>
8991 L:      [email protected]
8992 S:      Maintained
8993 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8994
8995 IOMAP FILESYSTEM LIBRARY
8996 M:      Christoph Hellwig <[email protected]>
8997 M:      Darrick J. Wong <[email protected]>
8998 M:      [email protected]
8999 M:      [email protected]
9000 L:      [email protected]
9001 L:      [email protected]
9002 S:      Supported
9003 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9004 F:      fs/iomap/
9005 F:      include/linux/iomap.h
9006
9007 IOMMU DRIVERS
9008 M:      Joerg Roedel <[email protected]>
9009 L:      [email protected]
9010 S:      Maintained
9011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9012 F:      Documentation/devicetree/bindings/iommu/
9013 F:      drivers/iommu/
9014 F:      include/linux/iommu.h
9015 F:      include/linux/iova.h
9016 F:      include/linux/of_iommu.h
9017
9018 IO_URING
9019 M:      Jens Axboe <[email protected]>
9020 L:      [email protected]
9021 S:      Maintained
9022 T:      git git://git.kernel.dk/linux-block
9023 T:      git git://git.kernel.dk/liburing
9024 F:      fs/io-wq.c
9025 F:      fs/io-wq.h
9026 F:      fs/io_uring.c
9027 F:      include/uapi/linux/io_uring.h
9028
9029 IPMI SUBSYSTEM
9030 M:      Corey Minyard <[email protected]>
9031 L:      [email protected] (moderated for non-subscribers)
9032 S:      Supported
9033 W:      http://openipmi.sourceforge.net/
9034 F:      Documentation/driver-api/ipmi.rst
9035 F:      Documentation/devicetree/bindings/ipmi/
9036 F:      drivers/char/ipmi/
9037 F:      include/linux/ipmi*
9038 F:      include/uapi/linux/ipmi*
9039
9040 IPS SCSI RAID DRIVER
9041 M:      Adaptec OEM Raid Solutions <[email protected]>
9042 L:      [email protected]
9043 S:      Maintained
9044 W:      http://www.adaptec.com/
9045 F:      drivers/scsi/ips*
9046
9047 IPVS
9048 M:      Wensong Zhang <[email protected]>
9049 M:      Simon Horman <[email protected]>
9050 M:      Julian Anastasov <[email protected]>
9051 L:      [email protected]
9052 L:      [email protected]
9053 S:      Maintained
9054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9056 F:      Documentation/networking/ipvs-sysctl.rst
9057 F:      include/net/ip_vs.h
9058 F:      include/uapi/linux/ip_vs.h
9059 F:      net/netfilter/ipvs/
9060
9061 IPWIRELESS DRIVER
9062 M:      Jiri Kosina <[email protected]>
9063 M:      David Sterba <[email protected]>
9064 S:      Odd Fixes
9065 F:      drivers/tty/ipwireless/
9066
9067 IPX NETWORK LAYER
9068 L:      [email protected]
9069 S:      Obsolete
9070 F:      include/uapi/linux/ipx.h
9071
9072 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9073 M:      Marc Zyngier <[email protected]>
9074 S:      Maintained
9075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9076 F:      Documentation/core-api/irq/irq-domain.rst
9077 F:      include/linux/irqdomain.h
9078 F:      kernel/irq/irqdomain.c
9079 F:      kernel/irq/msi.c
9080
9081 IRQ SUBSYSTEM
9082 M:      Thomas Gleixner <[email protected]>
9083 L:      [email protected]
9084 S:      Maintained
9085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9086 F:      kernel/irq/
9087
9088 IRQCHIP DRIVERS
9089 M:      Thomas Gleixner <[email protected]>
9090 M:      Jason Cooper <[email protected]>
9091 M:      Marc Zyngier <[email protected]>
9092 L:      [email protected]
9093 S:      Maintained
9094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9095 F:      Documentation/devicetree/bindings/interrupt-controller/
9096 F:      drivers/irqchip/
9097
9098 ISA
9099 M:      William Breathitt Gray <[email protected]>
9100 S:      Maintained
9101 F:      Documentation/driver-api/isa.rst
9102 F:      drivers/base/isa.c
9103 F:      include/linux/isa.h
9104
9105 ISA RADIO MODULE
9106 M:      Hans Verkuil <[email protected]>
9107 L:      [email protected]
9108 S:      Maintained
9109 W:      https://linuxtv.org
9110 T:      git git://linuxtv.org/media_tree.git
9111 F:      drivers/media/radio/radio-isa*
9112
9113 ISAPNP
9114 M:      Jaroslav Kysela <[email protected]>
9115 S:      Maintained
9116 F:      Documentation/driver-api/isapnp.rst
9117 F:      drivers/pnp/isapnp/
9118 F:      include/linux/isapnp.h
9119
9120 ISCSI
9121 M:      Lee Duncan <[email protected]>
9122 M:      Chris Leech <[email protected]>
9123 L:      [email protected]
9124 L:      [email protected]
9125 S:      Maintained
9126 W:      www.open-iscsi.com
9127 F:      drivers/scsi/*iscsi*
9128 F:      include/scsi/*iscsi*
9129
9130 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9131 M:      Peter Jones <[email protected]>
9132 M:      Konrad Rzeszutek Wilk <[email protected]>
9133 S:      Maintained
9134 F:      drivers/firmware/iscsi_ibft*
9135
9136 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9137 M:      Sagi Grimberg <[email protected]>
9138 M:      Max Gurtovoy <[email protected]>
9139 L:      [email protected]
9140 S:      Supported
9141 W:      http://www.openfabrics.org
9142 W:      www.open-iscsi.org
9143 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9144 F:      drivers/infiniband/ulp/iser/
9145
9146 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9147 M:      Sagi Grimberg <[email protected]>
9148 L:      [email protected]
9149 L:      [email protected]
9150 S:      Supported
9151 W:      http://www.linux-iscsi.org
9152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9153 F:      drivers/infiniband/ulp/isert
9154
9155 ISDN/CMTP OVER BLUETOOTH
9156 M:      Karsten Keil <[email protected]>
9157 L:      [email protected] (subscribers-only)
9158 L:      [email protected]
9159 S:      Odd Fixes
9160 W:      http://www.isdn4linux.de
9161 F:      Documentation/isdn/
9162 F:      drivers/isdn/capi/
9163 F:      include/linux/isdn/
9164 F:      include/uapi/linux/isdn/
9165 F:      net/bluetooth/cmtp/
9166
9167 ISDN/mISDN SUBSYSTEM
9168 M:      Karsten Keil <[email protected]>
9169 L:      [email protected] (subscribers-only)
9170 L:      [email protected]
9171 S:      Maintained
9172 W:      http://www.isdn4linux.de
9173 F:      drivers/isdn/Kconfig
9174 F:      drivers/isdn/Makefile
9175 F:      drivers/isdn/hardware/
9176 F:      drivers/isdn/mISDN/
9177
9178 IT87 HARDWARE MONITORING DRIVER
9179 M:      Jean Delvare <[email protected]>
9180 L:      [email protected]
9181 S:      Maintained
9182 F:      Documentation/hwmon/it87.rst
9183 F:      drivers/hwmon/it87.c
9184
9185 IT913X MEDIA DRIVER
9186 M:      Antti Palosaari <[email protected]>
9187 L:      [email protected]
9188 S:      Maintained
9189 W:      https://linuxtv.org
9190 W:      http://palosaari.fi/linux/
9191 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9192 T:      git git://linuxtv.org/anttip/media_tree.git
9193 F:      drivers/media/tuners/it913x*
9194
9195 IVTV VIDEO4LINUX DRIVER
9196 M:      Andy Walls <[email protected]>
9197 L:      [email protected]
9198 S:      Maintained
9199 W:      https://linuxtv.org
9200 T:      git git://linuxtv.org/media_tree.git
9201 F:      Documentation/admin-guide/media/ivtv*
9202 F:      drivers/media/pci/ivtv/
9203 F:      include/uapi/linux/ivtv*
9204
9205 IX2505V MEDIA DRIVER
9206 M:      Malcolm Priestley <[email protected]>
9207 L:      [email protected]
9208 S:      Maintained
9209 W:      https://linuxtv.org
9210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9211 F:      drivers/media/dvb-frontends/ix2505v*
9212
9213 JAILHOUSE HYPERVISOR INTERFACE
9214 M:      Jan Kiszka <[email protected]>
9215 L:      [email protected]
9216 S:      Maintained
9217 F:      arch/x86/include/asm/jailhouse_para.h
9218 F:      arch/x86/kernel/jailhouse.c
9219
9220 JC42.4 TEMPERATURE SENSOR DRIVER
9221 M:      Guenter Roeck <[email protected]>
9222 L:      [email protected]
9223 S:      Maintained
9224 F:      Documentation/hwmon/jc42.rst
9225 F:      drivers/hwmon/jc42.c
9226
9227 JFS FILESYSTEM
9228 M:      Dave Kleikamp <[email protected]>
9229 L:      [email protected]
9230 S:      Maintained
9231 W:      http://jfs.sourceforge.net/
9232 T:      git git://github.com/kleikamp/linux-shaggy.git
9233 F:      Documentation/admin-guide/jfs.rst
9234 F:      fs/jfs/
9235
9236 JME NETWORK DRIVER
9237 M:      Guo-Fu Tseng <[email protected]>
9238 L:      [email protected]
9239 S:      Maintained
9240 F:      drivers/net/ethernet/jme.*
9241
9242 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9243 M:      David Woodhouse <[email protected]>
9244 M:      Richard Weinberger <[email protected]>
9245 L:      [email protected]
9246 S:      Odd Fixes
9247 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9248 T:      git git://git.infradead.org/ubifs-2.6.git
9249 F:      fs/jffs2/
9250 F:      include/uapi/linux/jffs2.h
9251
9252 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9253 M:      "Theodore Ts'o" <[email protected]>
9254 M:      Jan Kara <[email protected]>
9255 L:      [email protected]
9256 S:      Maintained
9257 F:      fs/jbd2/
9258 F:      include/linux/jbd2.h
9259
9260 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9261 M:      Mikhail Ulyanov <[email protected]>
9262 L:      [email protected]
9263 S:      Maintained
9264 F:      drivers/media/platform/rcar_jpu.c
9265
9266 JSM Neo PCI based serial card
9267 L:      [email protected]
9268 S:      Orphan
9269 F:      drivers/tty/serial/jsm/
9270
9271 K10TEMP HARDWARE MONITORING DRIVER
9272 M:      Clemens Ladisch <[email protected]>
9273 L:      [email protected]
9274 S:      Maintained
9275 F:      Documentation/hwmon/k10temp.rst
9276 F:      drivers/hwmon/k10temp.c
9277
9278 K8TEMP HARDWARE MONITORING DRIVER
9279 M:      Rudolf Marek <[email protected]>
9280 L:      [email protected]
9281 S:      Maintained
9282 F:      Documentation/hwmon/k8temp.rst
9283 F:      drivers/hwmon/k8temp.c
9284
9285 KASAN
9286 M:      Andrey Ryabinin <[email protected]>
9287 R:      Alexander Potapenko <[email protected]>
9288 R:      Dmitry Vyukov <[email protected]>
9289 L:      [email protected]
9290 S:      Maintained
9291 F:      Documentation/dev-tools/kasan.rst
9292 F:      arch/*/include/asm/kasan.h
9293 F:      arch/*/mm/kasan_init*
9294 F:      include/linux/kasan*.h
9295 F:      lib/test_kasan.c
9296 F:      mm/kasan/
9297 F:      scripts/Makefile.kasan
9298
9299 KCONFIG
9300 M:      Masahiro Yamada <[email protected]>
9301 L:      [email protected]
9302 S:      Maintained
9303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9304 F:      Documentation/kbuild/kconfig*
9305 F:      scripts/Kconfig.include
9306 F:      scripts/kconfig/
9307
9308 KCSAN
9309 M:      Marco Elver <[email protected]>
9310 R:      Dmitry Vyukov <[email protected]>
9311 L:      [email protected]
9312 S:      Maintained
9313 F:      Documentation/dev-tools/kcsan.rst
9314 F:      include/linux/kcsan*.h
9315 F:      kernel/kcsan/
9316 F:      lib/Kconfig.kcsan
9317 F:      scripts/Makefile.kcsan
9318
9319 KDUMP
9320 M:      Dave Young <[email protected]>
9321 M:      Baoquan He <[email protected]>
9322 R:      Vivek Goyal <[email protected]>
9323 L:      [email protected]
9324 S:      Maintained
9325 W:      http://lse.sourceforge.net/kdump/
9326 F:      Documentation/admin-guide/kdump/
9327 F:      fs/proc/vmcore.c
9328 F:      include/linux/crash_core.h
9329 F:      include/linux/crash_dump.h
9330 F:      include/uapi/linux/vmcore.h
9331 F:      kernel/crash_*.c
9332
9333 KEENE FM RADIO TRANSMITTER DRIVER
9334 M:      Hans Verkuil <[email protected]>
9335 L:      [email protected]
9336 S:      Maintained
9337 W:      https://linuxtv.org
9338 T:      git git://linuxtv.org/media_tree.git
9339 F:      drivers/media/radio/radio-keene*
9340
9341 KERNEL AUTOMOUNTER
9342 M:      Ian Kent <[email protected]>
9343 L:      [email protected]
9344 S:      Maintained
9345 F:      fs/autofs/
9346
9347 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9348 M:      Masahiro Yamada <[email protected]>
9349 M:      Michal Marek <[email protected]>
9350 L:      [email protected]
9351 S:      Maintained
9352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9353 F:      Documentation/kbuild/
9354 F:      Makefile
9355 F:      scripts/*vmlinux*
9356 F:      scripts/Kbuild*
9357 F:      scripts/Makefile*
9358 F:      scripts/basic/
9359 F:      scripts/mk*
9360 F:      scripts/mod/
9361 F:      scripts/package/
9362
9363 KERNEL JANITORS
9364 L:      [email protected]
9365 S:      Odd Fixes
9366 W:      http://kernelnewbies.org/KernelJanitors
9367
9368 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9369 M:      "J. Bruce Fields" <[email protected]>
9370 M:      Chuck Lever <[email protected]>
9371 L:      [email protected]
9372 S:      Supported
9373 W:      http://nfs.sourceforge.net/
9374 T:      git git://linux-nfs.org/~bfields/linux.git
9375 F:      fs/lockd/
9376 F:      fs/nfs_common/
9377 F:      fs/nfsd/
9378 F:      include/linux/lockd/
9379 F:      include/linux/sunrpc/
9380 F:      include/uapi/linux/nfsd/
9381 F:      include/uapi/linux/sunrpc/
9382 F:      net/sunrpc/
9383
9384 KERNEL SELFTEST FRAMEWORK
9385 M:      Shuah Khan <[email protected]>
9386 M:      Shuah Khan <[email protected]>
9387 L:      [email protected]
9388 S:      Maintained
9389 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9391 F:      Documentation/dev-tools/kselftest*
9392 F:      tools/testing/selftests/
9393
9394 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9395 M:      Brendan Higgins <[email protected]>
9396 L:      [email protected]
9397 L:      [email protected]
9398 S:      Maintained
9399 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9400 F:      Documentation/dev-tools/kunit/
9401 F:      include/kunit/
9402 F:      lib/kunit/
9403 F:      tools/testing/kunit/
9404
9405 KERNEL USERMODE HELPER
9406 M:      Luis Chamberlain <[email protected]>
9407 L:      [email protected]
9408 S:      Maintained
9409 F:      include/linux/umh.h
9410 F:      kernel/umh.c
9411
9412 KERNEL VIRTUAL MACHINE (KVM)
9413 M:      Paolo Bonzini <[email protected]>
9414 L:      [email protected]
9415 S:      Supported
9416 W:      http://www.linux-kvm.org
9417 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9418 F:      Documentation/virt/kvm/
9419 F:      include/asm-generic/kvm*
9420 F:      include/kvm/iodev.h
9421 F:      include/linux/kvm*
9422 F:      include/trace/events/kvm.h
9423 F:      include/uapi/asm-generic/kvm*
9424 F:      include/uapi/linux/kvm*
9425 F:      tools/kvm/
9426 F:      tools/testing/selftests/kvm/
9427 F:      virt/kvm/*
9428
9429 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9430 M:      Marc Zyngier <[email protected]>
9431 R:      James Morse <[email protected]>
9432 R:      Julien Thierry <[email protected]>
9433 R:      Suzuki K Poulose <[email protected]>
9434 L:      [email protected] (moderated for non-subscribers)
9435 L:      [email protected]
9436 S:      Maintained
9437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9438 F:      arch/arm64/include/asm/kvm*
9439 F:      arch/arm64/include/uapi/asm/kvm*
9440 F:      arch/arm64/kvm/
9441 F:      include/kvm/arm_*
9442
9443 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9444 L:      [email protected]
9445 L:      [email protected]
9446 S:      Orphan
9447 F:      arch/mips/include/asm/kvm*
9448 F:      arch/mips/include/uapi/asm/kvm*
9449 F:      arch/mips/kvm/
9450
9451 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9452 M:      Paul Mackerras <[email protected]>
9453 L:      [email protected]
9454 S:      Supported
9455 W:      http://www.linux-kvm.org/
9456 T:      git git://github.com/agraf/linux-2.6.git
9457 F:      arch/powerpc/include/asm/kvm*
9458 F:      arch/powerpc/include/uapi/asm/kvm*
9459 F:      arch/powerpc/kernel/kvm*
9460 F:      arch/powerpc/kvm/
9461
9462 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9463 M:      Christian Borntraeger <[email protected]>
9464 M:      Janosch Frank <[email protected]>
9465 R:      David Hildenbrand <[email protected]>
9466 R:      Cornelia Huck <[email protected]>
9467 R:      Claudio Imbrenda <[email protected]>
9468 L:      [email protected]
9469 S:      Supported
9470 W:      http://www.ibm.com/developerworks/linux/linux390/
9471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9472 F:      Documentation/virt/kvm/s390*
9473 F:      arch/s390/include/asm/gmap.h
9474 F:      arch/s390/include/asm/kvm*
9475 F:      arch/s390/include/uapi/asm/kvm*
9476 F:      arch/s390/kvm/
9477 F:      arch/s390/mm/gmap.c
9478 F:      tools/testing/selftests/kvm/*/s390x/
9479 F:      tools/testing/selftests/kvm/s390x/
9480
9481 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9482 M:      Paolo Bonzini <[email protected]>
9483 R:      Sean Christopherson <[email protected]>
9484 R:      Vitaly Kuznetsov <[email protected]>
9485 R:      Wanpeng Li <[email protected]>
9486 R:      Jim Mattson <[email protected]>
9487 R:      Joerg Roedel <[email protected]>
9488 L:      [email protected]
9489 S:      Supported
9490 W:      http://www.linux-kvm.org
9491 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9492 F:      arch/x86/include/asm/kvm*
9493 F:      arch/x86/include/asm/pvclock-abi.h
9494 F:      arch/x86/include/asm/svm.h
9495 F:      arch/x86/include/asm/vmx*.h
9496 F:      arch/x86/include/uapi/asm/kvm*
9497 F:      arch/x86/include/uapi/asm/svm.h
9498 F:      arch/x86/include/uapi/asm/vmx.h
9499 F:      arch/x86/kernel/kvm.c
9500 F:      arch/x86/kernel/kvmclock.c
9501 F:      arch/x86/kvm/
9502 F:      arch/x86/kvm/*/
9503
9504 KERNFS
9505 M:      Greg Kroah-Hartman <[email protected]>
9506 M:      Tejun Heo <[email protected]>
9507 S:      Supported
9508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9509 F:      fs/kernfs/
9510 F:      include/linux/kernfs.h
9511
9512 KEXEC
9513 M:      Eric Biederman <[email protected]>
9514 L:      [email protected]
9515 S:      Maintained
9516 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9517 F:      include/linux/kexec.h
9518 F:      include/uapi/linux/kexec.h
9519 F:      kernel/kexec*
9520
9521 KEYS-ENCRYPTED
9522 M:      Mimi Zohar <[email protected]>
9523 L:      [email protected]
9524 L:      [email protected]
9525 S:      Supported
9526 F:      Documentation/security/keys/trusted-encrypted.rst
9527 F:      include/keys/encrypted-type.h
9528 F:      security/keys/encrypted-keys/
9529
9530 KEYS-TRUSTED
9531 M:      James Bottomley <[email protected]>
9532 M:      Jarkko Sakkinen <[email protected]>
9533 M:      Mimi Zohar <[email protected]>
9534 L:      [email protected]
9535 L:      [email protected]
9536 S:      Supported
9537 F:      Documentation/security/keys/trusted-encrypted.rst
9538 F:      include/keys/trusted-type.h
9539 F:      include/keys/trusted_tpm.h
9540 F:      security/keys/trusted-keys/
9541
9542 KEYS/KEYRINGS
9543 M:      David Howells <[email protected]>
9544 M:      Jarkko Sakkinen <[email protected]>
9545 L:      [email protected]
9546 S:      Maintained
9547 F:      Documentation/security/keys/core.rst
9548 F:      include/keys/
9549 F:      include/linux/key-type.h
9550 F:      include/linux/key.h
9551 F:      include/linux/keyctl.h
9552 F:      include/uapi/linux/keyctl.h
9553 F:      security/keys/
9554
9555 KFIFO
9556 M:      Stefani Seibold <[email protected]>
9557 S:      Maintained
9558 F:      include/linux/kfifo.h
9559 F:      lib/kfifo.c
9560 F:      samples/kfifo/
9561
9562 KGDB / KDB /debug_core
9563 M:      Jason Wessel <[email protected]>
9564 M:      Daniel Thompson <[email protected]>
9565 R:      Douglas Anderson <[email protected]>
9566 L:      [email protected]
9567 S:      Maintained
9568 W:      http://kgdb.wiki.kernel.org/
9569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9570 F:      Documentation/dev-tools/kgdb.rst
9571 F:      drivers/misc/kgdbts.c
9572 F:      drivers/tty/serial/kgdboc.c
9573 F:      include/linux/kdb.h
9574 F:      include/linux/kgdb.h
9575 F:      kernel/debug/
9576
9577 KMEMLEAK
9578 M:      Catalin Marinas <[email protected]>
9579 S:      Maintained
9580 F:      Documentation/dev-tools/kmemleak.rst
9581 F:      include/linux/kmemleak.h
9582 F:      mm/kmemleak-test.c
9583 F:      mm/kmemleak.c
9584
9585 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9586 M:      Luis Chamberlain <[email protected]>
9587 L:      [email protected]
9588 S:      Maintained
9589 F:      include/linux/kmod.h
9590 F:      kernel/kmod.c
9591 F:      lib/test_kmod.c
9592 F:      tools/testing/selftests/kmod/
9593
9594 KPROBES
9595 M:      Naveen N. Rao <[email protected]>
9596 M:      Anil S Keshavamurthy <[email protected]>
9597 M:      "David S. Miller" <[email protected]>
9598 M:      Masami Hiramatsu <[email protected]>
9599 S:      Maintained
9600 F:      Documentation/kprobes.txt
9601 F:      include/asm-generic/kprobes.h
9602 F:      include/linux/kprobes.h
9603 F:      kernel/kprobes.c
9604
9605 KS0108 LCD CONTROLLER DRIVER
9606 M:      Miguel Ojeda Sandonis <[email protected]>
9607 S:      Maintained
9608 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9609 F:      drivers/auxdisplay/ks0108.c
9610 F:      include/linux/ks0108.h
9611
9612 L3MDEV
9613 M:      David Ahern <[email protected]>
9614 L:      [email protected]
9615 S:      Maintained
9616 F:      include/net/l3mdev.h
9617 F:      net/l3mdev
9618
9619 L7 BPF FRAMEWORK
9620 M:      John Fastabend <[email protected]>
9621 M:      Daniel Borkmann <[email protected]>
9622 M:      Jakub Sitnicki <[email protected]>
9623 M:      Lorenz Bauer <[email protected]>
9624 L:      [email protected]
9625 L:      [email protected]
9626 S:      Maintained
9627 F:      include/linux/skmsg.h
9628 F:      net/core/skmsg.c
9629 F:      net/core/sock_map.c
9630 F:      net/ipv4/tcp_bpf.c
9631 F:      net/ipv4/udp_bpf.c
9632
9633 LANTIQ / INTEL Ethernet drivers
9634 M:      Hauke Mehrtens <[email protected]>
9635 L:      [email protected]
9636 S:      Maintained
9637 F:      drivers/net/dsa/lantiq_gswip.c
9638 F:      drivers/net/dsa/lantiq_pce.h
9639 F:      drivers/net/ethernet/lantiq_xrx200.c
9640 F:      net/dsa/tag_gswip.c
9641
9642 LANTIQ MIPS ARCHITECTURE
9643 M:      John Crispin <[email protected]>
9644 L:      [email protected]
9645 S:      Maintained
9646 F:      arch/mips/lantiq
9647 F:      drivers/soc/lantiq
9648
9649 LAPB module
9650 L:      [email protected]
9651 S:      Orphan
9652 F:      Documentation/networking/lapb-module.rst
9653 F:      include/*/lapb.h
9654 F:      net/lapb/
9655
9656 LASI 53c700 driver for PARISC
9657 M:      "James E.J. Bottomley" <[email protected]>
9658 L:      [email protected]
9659 S:      Maintained
9660 F:      Documentation/scsi/53c700.rst
9661 F:      drivers/scsi/53c700*
9662
9663 LEAKING_ADDRESSES
9664 M:      Tobin C. Harding <[email protected]>
9665 M:      Tycho Andersen <[email protected]>
9666 L:      [email protected]
9667 S:      Maintained
9668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9669 F:      scripts/leaking_addresses.pl
9670
9671 LED SUBSYSTEM
9672 M:      Jacek Anaszewski <[email protected]>
9673 M:      Pavel Machek <[email protected]>
9674 R:      Dan Murphy <[email protected]>
9675 L:      [email protected]
9676 S:      Maintained
9677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9679 F:      Documentation/devicetree/bindings/leds/
9680 F:      drivers/leds/
9681 F:      include/linux/leds.h
9682
9683 LEGACY EEPROM DRIVER
9684 M:      Jean Delvare <[email protected]>
9685 S:      Maintained
9686 F:      Documentation/misc-devices/eeprom.rst
9687 F:      drivers/misc/eeprom/eeprom.c
9688
9689 LEGO MINDSTORMS EV3
9690 R:      David Lechner <[email protected]>
9691 S:      Maintained
9692 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9693 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9694 F:      drivers/power/supply/lego_ev3_battery.c
9695
9696 LEGO USB Tower driver
9697 M:      Juergen Stuber <[email protected]>
9698 L:      [email protected]
9699 S:      Maintained
9700 W:      http://legousb.sourceforge.net/
9701 F:      drivers/usb/misc/legousbtower.c
9702
9703 LG LAPTOP EXTRAS
9704 M:      Matan Ziv-Av <[email protected]>
9705 L:      [email protected]
9706 S:      Maintained
9707 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9708 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9709 F:      drivers/platform/x86/lg-laptop.c
9710
9711 LG2160 MEDIA DRIVER
9712 M:      Michael Krufky <[email protected]>
9713 L:      [email protected]
9714 S:      Maintained
9715 W:      https://linuxtv.org
9716 W:      http://github.com/mkrufky
9717 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9718 T:      git git://linuxtv.org/mkrufky/tuners.git
9719 F:      drivers/media/dvb-frontends/lg2160.*
9720
9721 LGDT3305 MEDIA DRIVER
9722 M:      Michael Krufky <[email protected]>
9723 L:      [email protected]
9724 S:      Maintained
9725 W:      https://linuxtv.org
9726 W:      http://github.com/mkrufky
9727 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9728 T:      git git://linuxtv.org/mkrufky/tuners.git
9729 F:      drivers/media/dvb-frontends/lgdt3305.*
9730
9731 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9732 M:      Viresh Kumar <[email protected]>
9733 L:      [email protected]
9734 S:      Maintained
9735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9736 F:      drivers/ata/pata_arasan_cf.c
9737 F:      include/linux/pata_arasan_cf_data.h
9738
9739 LIBATA PATA DRIVERS
9740 M:      Bartlomiej Zolnierkiewicz <[email protected]>
9741 M:      Jens Axboe <[email protected]>
9742 L:      [email protected]
9743 S:      Maintained
9744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9745 F:      drivers/ata/ata_generic.c
9746 F:      drivers/ata/pata_*.c
9747
9748 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9749 M:      Linus Walleij <[email protected]>
9750 L:      [email protected]
9751 S:      Maintained
9752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9753 F:      drivers/ata/pata_ftide010.c
9754 F:      drivers/ata/sata_gemini.c
9755 F:      drivers/ata/sata_gemini.h
9756
9757 LIBATA SATA AHCI PLATFORM devices support
9758 M:      Hans de Goede <[email protected]>
9759 M:      Jens Axboe <[email protected]>
9760 L:      [email protected]
9761 S:      Maintained
9762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9763 F:      drivers/ata/ahci_platform.c
9764 F:      drivers/ata/libahci_platform.c
9765 F:      include/linux/ahci_platform.h
9766
9767 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9768 M:      Mikael Pettersson <[email protected]>
9769 L:      [email protected]
9770 S:      Maintained
9771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9772 F:      drivers/ata/sata_promise.*
9773
9774 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9775 M:      Jens Axboe <[email protected]>
9776 L:      [email protected]
9777 S:      Maintained
9778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9779 F:      Documentation/devicetree/bindings/ata/
9780 F:      drivers/ata/
9781 F:      include/linux/ata.h
9782 F:      include/linux/libata.h
9783
9784 LIBLOCKDEP
9785 M:      Sasha Levin <[email protected]>
9786 S:      Maintained
9787 F:      tools/lib/lockdep/
9788
9789 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9790 M:      Dan Williams <[email protected]>
9791 M:      Vishal Verma <[email protected]>
9792 M:      Dave Jiang <[email protected]>
9793 L:      [email protected]
9794 S:      Supported
9795 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9796 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9797 F:      drivers/nvdimm/blk.c
9798 F:      drivers/nvdimm/region_devs.c
9799
9800 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9801 M:      Vishal Verma <[email protected]>
9802 M:      Dan Williams <[email protected]>
9803 M:      Dave Jiang <[email protected]>
9804 L:      [email protected]
9805 S:      Supported
9806 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9807 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9808 F:      drivers/nvdimm/btt*
9809
9810 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9811 M:      Dan Williams <[email protected]>
9812 M:      Vishal Verma <[email protected]>
9813 M:      Dave Jiang <[email protected]>
9814 L:      [email protected]
9815 S:      Supported
9816 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9817 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9818 F:      drivers/nvdimm/pmem*
9819
9820 LIBNVDIMM: DEVICETREE BINDINGS
9821 M:      Oliver O'Halloran <[email protected]>
9822 L:      [email protected]
9823 S:      Supported
9824 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9825 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9826 F:      drivers/nvdimm/of_pmem.c
9827
9828 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9829 M:      Dan Williams <[email protected]>
9830 M:      Vishal Verma <[email protected]>
9831 M:      Dave Jiang <[email protected]>
9832 M:      Ira Weiny <[email protected]>
9833 L:      [email protected]
9834 S:      Supported
9835 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9836 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9838 F:      drivers/acpi/nfit/*
9839 F:      drivers/nvdimm/*
9840 F:      include/linux/libnvdimm.h
9841 F:      include/linux/nd.h
9842 F:      include/uapi/linux/ndctl.h
9843 F:      tools/testing/nvdimm/
9844
9845 LICENSES and SPDX stuff
9846 M:      Thomas Gleixner <[email protected]>
9847 M:      Greg Kroah-Hartman <[email protected]>
9848 L:      [email protected]
9849 S:      Maintained
9850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9851 F:      COPYING
9852 F:      Documentation/process/license-rules.rst
9853 F:      LICENSES/
9854 F:      scripts/spdxcheck-test.sh
9855 F:      scripts/spdxcheck.py
9856
9857 LIGHTNVM PLATFORM SUPPORT
9858 M:      Matias Bjorling <[email protected]>
9859 L:      [email protected]
9860 S:      Maintained
9861 W:      http://github/OpenChannelSSD
9862 F:      drivers/lightnvm/
9863 F:      include/linux/lightnvm.h
9864 F:      include/uapi/linux/lightnvm.h
9865
9866 LINEAR RANGES HELPERS
9867 M:      Mark Brown <[email protected]>
9868 R:      Matti Vaittinen <[email protected]>
9869 F:      lib/linear_ranges.c
9870 F:      lib/test_linear_ranges.c
9871 F:      include/linux/linear_range.h
9872
9873 LINUX FOR POWER MACINTOSH
9874 M:      Benjamin Herrenschmidt <[email protected]>
9875 L:      [email protected]
9876 S:      Odd Fixes
9877 F:      arch/powerpc/platforms/powermac/
9878 F:      drivers/macintosh/
9879
9880 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9881 M:      Michael Ellerman <[email protected]>
9882 R:      Benjamin Herrenschmidt <[email protected]>
9883 R:      Paul Mackerras <[email protected]>
9884 L:      [email protected]
9885 S:      Supported
9886 W:      https://github.com/linuxppc/wiki/wiki
9887 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9889 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9890 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9891 F:      Documentation/devicetree/bindings/powerpc/
9892 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9893 F:      Documentation/powerpc/
9894 F:      arch/powerpc/
9895 F:      drivers/*/*/*pasemi*
9896 F:      drivers/*/*pasemi*
9897 F:      drivers/char/tpm/tpm_ibmvtpm*
9898 F:      drivers/crypto/nx/
9899 F:      drivers/crypto/vmx/
9900 F:      drivers/i2c/busses/i2c-opal.c
9901 F:      drivers/net/ethernet/ibm/ibmveth.*
9902 F:      drivers/net/ethernet/ibm/ibmvnic.*
9903 F:      drivers/pci/hotplug/pnv_php.c
9904 F:      drivers/pci/hotplug/rpa*
9905 F:      drivers/rtc/rtc-opal.c
9906 F:      drivers/scsi/ibmvscsi/
9907 F:      drivers/tty/hvc/hvc_opal.c
9908 F:      drivers/watchdog/wdrtas.c
9909 F:      tools/testing/selftests/powerpc
9910 N:      /pmac
9911 N:      powermac
9912 N:      powernv
9913 N:      [^a-z0-9]ps3
9914 N:      pseries
9915
9916 LINUX FOR POWERPC EMBEDDED MPC5XXX
9917 M:      Anatolij Gustschin <[email protected]>
9918 L:      [email protected]
9919 S:      Odd Fixes
9920 F:      arch/powerpc/platforms/512x/
9921 F:      arch/powerpc/platforms/52xx/
9922
9923 LINUX FOR POWERPC EMBEDDED PPC4XX
9924 L:      [email protected]
9925 S:      Orphan
9926 F:      arch/powerpc/platforms/40x/
9927 F:      arch/powerpc/platforms/44x/
9928
9929 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9930 M:      Scott Wood <[email protected]>
9931 L:      [email protected]
9932 S:      Odd fixes
9933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9934 F:      Documentation/devicetree/bindings/powerpc/fsl/
9935 F:      arch/powerpc/platforms/83xx/
9936 F:      arch/powerpc/platforms/85xx/
9937
9938 LINUX FOR POWERPC EMBEDDED PPC8XX
9939 M:      Christophe Leroy <[email protected]>
9940 L:      [email protected]
9941 S:      Maintained
9942 F:      arch/powerpc/platforms/8xx/
9943
9944 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9945 M:      Kees Cook <[email protected]>
9946 S:      Maintained
9947 F:      drivers/misc/lkdtm/*
9948 F:      tools/testing/selftests/lkdtm/*
9949
9950 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9951 M:      Alan Stern <[email protected]>
9952 M:      Andrea Parri <[email protected]>
9953 M:      Will Deacon <[email protected]>
9954 M:      Peter Zijlstra <[email protected]>
9955 M:      Boqun Feng <[email protected]>
9956 M:      Nicholas Piggin <[email protected]>
9957 M:      David Howells <[email protected]>
9958 M:      Jade Alglave <[email protected]>
9959 M:      Luc Maranget <[email protected]>
9960 M:      "Paul E. McKenney" <[email protected]>
9961 R:      Akira Yokosawa <[email protected]>
9962 R:      Daniel Lustig <[email protected]>
9963 L:      [email protected]
9964 L:      [email protected]
9965 S:      Supported
9966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9967 F:      Documentation/atomic_bitops.txt
9968 F:      Documentation/atomic_t.txt
9969 F:      Documentation/core-api/atomic_ops.rst
9970 F:      Documentation/core-api/refcount-vs-atomic.rst
9971 F:      Documentation/memory-barriers.txt
9972 F:      tools/memory-model/
9973
9974 LIS3LV02D ACCELEROMETER DRIVER
9975 M:      Eric Piel <[email protected]>
9976 S:      Maintained
9977 F:      Documentation/misc-devices/lis3lv02d.rst
9978 F:      drivers/misc/lis3lv02d/
9979 F:      drivers/platform/x86/hp_accel.c
9980
9981 LIST KUNIT TEST
9982 M:      David Gow <[email protected]>
9983 L:      [email protected]
9984 L:      [email protected]
9985 S:      Maintained
9986 F:      lib/list-test.c
9987
9988 LIVE PATCHING
9989 M:      Josh Poimboeuf <[email protected]>
9990 M:      Jiri Kosina <[email protected]>
9991 M:      Miroslav Benes <[email protected]>
9992 M:      Petr Mladek <[email protected]>
9993 R:      Joe Lawrence <[email protected]>
9994 L:      [email protected]
9995 S:      Maintained
9996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9997 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9998 F:      Documentation/livepatch/
9999 F:      arch/powerpc/include/asm/livepatch.h
10000 F:      arch/s390/include/asm/livepatch.h
10001 F:      arch/x86/include/asm/livepatch.h
10002 F:      include/linux/livepatch.h
10003 F:      kernel/livepatch/
10004 F:      lib/livepatch/
10005 F:      samples/livepatch/
10006 F:      tools/testing/selftests/livepatch/
10007
10008 LLC (802.2)
10009 L:      [email protected]
10010 S:      Odd fixes
10011 F:      include/linux/llc.h
10012 F:      include/net/llc*
10013 F:      include/uapi/linux/llc.h
10014 F:      net/llc/
10015
10016 LM73 HARDWARE MONITOR DRIVER
10017 M:      Guillaume Ligneul <[email protected]>
10018 L:      [email protected]
10019 S:      Maintained
10020 F:      drivers/hwmon/lm73.c
10021
10022 LM78 HARDWARE MONITOR DRIVER
10023 M:      Jean Delvare <[email protected]>
10024 L:      [email protected]
10025 S:      Maintained
10026 F:      Documentation/hwmon/lm78.rst
10027 F:      drivers/hwmon/lm78.c
10028
10029 LM83 HARDWARE MONITOR DRIVER
10030 M:      Jean Delvare <[email protected]>
10031 L:      [email protected]
10032 S:      Maintained
10033 F:      Documentation/hwmon/lm83.rst
10034 F:      drivers/hwmon/lm83.c
10035
10036 LM90 HARDWARE MONITOR DRIVER
10037 M:      Jean Delvare <[email protected]>
10038 L:      [email protected]
10039 S:      Maintained
10040 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10041 F:      Documentation/hwmon/lm90.rst
10042 F:      drivers/hwmon/lm90.c
10043 F:      include/dt-bindings/thermal/lm90.h
10044
10045 LM95234 HARDWARE MONITOR DRIVER
10046 M:      Guenter Roeck <[email protected]>
10047 L:      [email protected]
10048 S:      Maintained
10049 F:      Documentation/hwmon/lm95234.rst
10050 F:      drivers/hwmon/lm95234.c
10051
10052 LME2510 MEDIA DRIVER
10053 M:      Malcolm Priestley <[email protected]>
10054 L:      [email protected]
10055 S:      Maintained
10056 W:      https://linuxtv.org
10057 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10058 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10059
10060 LOADPIN SECURITY MODULE
10061 M:      Kees Cook <[email protected]>
10062 S:      Supported
10063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10064 F:      Documentation/admin-guide/LSM/LoadPin.rst
10065 F:      security/loadpin/
10066
10067 LOCKING PRIMITIVES
10068 M:      Peter Zijlstra <[email protected]>
10069 M:      Ingo Molnar <[email protected]>
10070 M:      Will Deacon <[email protected]>
10071 L:      [email protected]
10072 S:      Maintained
10073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10074 F:      Documentation/locking/
10075 F:      arch/*/include/asm/spinlock*.h
10076 F:      include/linux/lockdep.h
10077 F:      include/linux/mutex*.h
10078 F:      include/linux/rwlock*.h
10079 F:      include/linux/rwsem*.h
10080 F:      include/linux/seqlock.h
10081 F:      include/linux/spinlock*.h
10082 F:      kernel/locking/
10083 F:      lib/locking*.[ch]
10084 X:      kernel/locking/locktorture.c
10085
10086 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10087 M:      "Richard Russon (FlatCap)" <[email protected]>
10088 L:      [email protected]
10089 S:      Maintained
10090 W:      http://www.linux-ntfs.org/content/view/19/37/
10091 F:      Documentation/admin-guide/ldm.rst
10092 F:      block/partitions/ldm.*
10093
10094 LOGITECH HID GAMING KEYBOARDS
10095 M:      Hans de Goede <[email protected]>
10096 L:      [email protected]
10097 S:      Maintained
10098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10099 F:      drivers/hid/hid-lg-g15.c
10100
10101 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10102 M:      Sathya Prakash <[email protected]>
10103 M:      Sreekanth Reddy <[email protected]>
10104 M:      Suganath Prabu Subramani <[email protected]>
10105 L:      [email protected]
10106 L:      [email protected]
10107 S:      Supported
10108 W:      http://www.avagotech.com/support/
10109 F:      drivers/message/fusion/
10110 F:      drivers/scsi/mpt3sas/
10111
10112 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10113 M:      Matthew Wilcox <[email protected]>
10114 L:      [email protected]
10115 S:      Maintained
10116 F:      drivers/scsi/sym53c8xx_2/
10117
10118 LTC1660 DAC DRIVER
10119 M:      Marcus Folkesson <[email protected]>
10120 L:      [email protected]
10121 S:      Maintained
10122 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10123 F:      drivers/iio/dac/ltc1660.c
10124
10125 LTC2947 HARDWARE MONITOR DRIVER
10126 M:      Nuno Sá <[email protected]>
10127 L:      [email protected]
10128 S:      Supported
10129 W:      http://ez.analog.com/community/linux-device-drivers
10130 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10131 F:      drivers/hwmon/ltc2947-core.c
10132 F:      drivers/hwmon/ltc2947-i2c.c
10133 F:      drivers/hwmon/ltc2947-spi.c
10134 F:      drivers/hwmon/ltc2947.h
10135
10136 LTC2983 IIO TEMPERATURE DRIVER
10137 M:      Nuno Sá <[email protected]>
10138 L:      [email protected]
10139 S:      Supported
10140 W:      http://ez.analog.com/community/linux-device-drivers
10141 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10142 F:      drivers/iio/temperature/ltc2983.c
10143
10144 LTC4261 HARDWARE MONITOR DRIVER
10145 M:      Guenter Roeck <[email protected]>
10146 L:      [email protected]
10147 S:      Maintained
10148 F:      Documentation/hwmon/ltc4261.rst
10149 F:      drivers/hwmon/ltc4261.c
10150
10151 LTC4306 I2C MULTIPLEXER DRIVER
10152 M:      Michael Hennerich <[email protected]>
10153 L:      [email protected]
10154 S:      Supported
10155 W:      http://ez.analog.com/community/linux-device-drivers
10156 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10157 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10158
10159 LTP (Linux Test Project)
10160 M:      Mike Frysinger <[email protected]>
10161 M:      Cyril Hrubis <[email protected]>
10162 M:      Wanlong Gao <[email protected]>
10163 M:      Jan Stancek <[email protected]>
10164 M:      Stanislav Kholmanskikh <[email protected]>
10165 M:      Alexey Kodanev <[email protected]>
10166 L:      [email protected] (subscribers-only)
10167 S:      Maintained
10168 W:      http://linux-test-project.github.io/
10169 T:      git git://github.com/linux-test-project/ltp.git
10170
10171 M68K ARCHITECTURE
10172 M:      Geert Uytterhoeven <[email protected]>
10173 L:      [email protected]
10174 S:      Maintained
10175 W:      http://www.linux-m68k.org/
10176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10177 F:      arch/m68k/
10178 F:      drivers/zorro/
10179
10180 M68K ON APPLE MACINTOSH
10181 M:      Joshua Thompson <[email protected]>
10182 L:      [email protected]
10183 S:      Maintained
10184 W:      http://www.mac.linux-m68k.org/
10185 F:      arch/m68k/mac/
10186
10187 M68K ON HP9000/300
10188 M:      Philip Blundell <[email protected]>
10189 S:      Maintained
10190 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10191 F:      arch/m68k/hp300/
10192
10193 M88DS3103 MEDIA DRIVER
10194 M:      Antti Palosaari <[email protected]>
10195 L:      [email protected]
10196 S:      Maintained
10197 W:      https://linuxtv.org
10198 W:      http://palosaari.fi/linux/
10199 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10200 T:      git git://linuxtv.org/anttip/media_tree.git
10201 F:      drivers/media/dvb-frontends/m88ds3103*
10202
10203 M88RS2000 MEDIA DRIVER
10204 M:      Malcolm Priestley <[email protected]>
10205 L:      [email protected]
10206 S:      Maintained
10207 W:      https://linuxtv.org
10208 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10209 F:      drivers/media/dvb-frontends/m88rs2000*
10210
10211 MA901 MASTERKIT USB FM RADIO DRIVER
10212 M:      Alexey Klimov <[email protected]>
10213 L:      [email protected]
10214 S:      Maintained
10215 T:      git git://linuxtv.org/media_tree.git
10216 F:      drivers/media/radio/radio-ma901.c
10217
10218 MAC80211
10219 M:      Johannes Berg <[email protected]>
10220 L:      [email protected]
10221 S:      Maintained
10222 W:      https://wireless.wiki.kernel.org/
10223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10225 F:      Documentation/networking/mac80211-injection.rst
10226 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10227 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10228 F:      include/net/mac80211.h
10229 F:      net/mac80211/
10230
10231 MAILBOX API
10232 M:      Jassi Brar <[email protected]>
10233 L:      [email protected]
10234 S:      Maintained
10235 F:      drivers/mailbox/
10236 F:      include/linux/mailbox_client.h
10237 F:      include/linux/mailbox_controller.h
10238
10239 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10240 M:      Michael Kerrisk <[email protected]>
10241 L:      [email protected]
10242 S:      Maintained
10243 W:      http://www.kernel.org/doc/man-pages
10244
10245 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10246 M:      Rahul Bedarkar <[email protected]>
10247 L:      [email protected]
10248 S:      Maintained
10249 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10250
10251 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10252 M:      Andrew Lunn <[email protected]>
10253 M:      Vivien Didelot <[email protected]>
10254 L:      [email protected]
10255 S:      Maintained
10256 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10257 F:      Documentation/networking/devlink/mv88e6xxx.rst
10258 F:      drivers/net/dsa/mv88e6xxx/
10259 F:      include/linux/platform_data/mv88e6xxx.h
10260
10261 MARVELL ARMADA 3700 PHY DRIVERS
10262 M:      Miquel Raynal <[email protected]>
10263 S:      Maintained
10264 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10265 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10266 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10267 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10268
10269 MARVELL ARMADA DRM SUPPORT
10270 M:      Russell King <[email protected]>
10271 S:      Maintained
10272 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10273 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10274 F:      Documentation/devicetree/bindings/display/armada/
10275 F:      drivers/gpu/drm/armada/
10276 F:      include/uapi/drm/armada_drm.h
10277
10278 MARVELL CRYPTO DRIVER
10279 M:      Boris Brezillon <[email protected]>
10280 M:      Arnaud Ebalard <[email protected]>
10281 M:      Srujana Challa <[email protected]>
10282 L:      [email protected]
10283 S:      Maintained
10284 F:      drivers/crypto/marvell/
10285
10286 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10287 M:      Mirko Lindner <[email protected]>
10288 M:      Stephen Hemminger <[email protected]>
10289 L:      [email protected]
10290 S:      Maintained
10291 F:      drivers/net/ethernet/marvell/sk*
10292
10293 MARVELL LIBERTAS WIRELESS DRIVER
10294 L:      [email protected]
10295 S:      Orphan
10296 F:      drivers/net/wireless/marvell/libertas/
10297
10298 MARVELL MACCHIATOBIN SUPPORT
10299 M:      Russell King <[email protected]>
10300 L:      [email protected]
10301 S:      Maintained
10302 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10303
10304 MARVELL MV643XX ETHERNET DRIVER
10305 M:      Sebastian Hesselbarth <[email protected]>
10306 L:      [email protected]
10307 S:      Maintained
10308 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10309 F:      include/linux/mv643xx.h
10310
10311 MARVELL MV88X3310 PHY DRIVER
10312 M:      Russell King <[email protected]>
10313 L:      [email protected]
10314 S:      Maintained
10315 F:      drivers/net/phy/marvell10g.c
10316
10317 MARVELL MVEBU THERMAL DRIVER
10318 M:      Miquel Raynal <[email protected]>
10319 S:      Maintained
10320 F:      drivers/thermal/armada_thermal.c
10321
10322 MARVELL MVNETA ETHERNET DRIVER
10323 M:      Thomas Petazzoni <[email protected]>
10324 L:      [email protected]
10325 S:      Maintained
10326 F:      drivers/net/ethernet/marvell/mvneta.*
10327
10328 MARVELL MWIFIEX WIRELESS DRIVER
10329 M:      Amitkumar Karwar <[email protected]>
10330 M:      Ganapathi Bhat <[email protected]>
10331 M:      Xinming Hu <[email protected]>
10332 L:      [email protected]
10333 S:      Maintained
10334 F:      drivers/net/wireless/marvell/mwifiex/
10335
10336 MARVELL MWL8K WIRELESS DRIVER
10337 M:      Lennert Buytenhek <[email protected]>
10338 L:      [email protected]
10339 S:      Odd Fixes
10340 F:      drivers/net/wireless/marvell/mwl8k.c
10341
10342 MARVELL NAND CONTROLLER DRIVER
10343 M:      Miquel Raynal <[email protected]>
10344 L:      [email protected]
10345 S:      Maintained
10346 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10347 F:      drivers/mtd/nand/raw/marvell_nand.c
10348
10349 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10350 M:      Sunil Goutham <[email protected]>
10351 M:      Geetha sowjanya <[email protected]>
10352 M:      Subbaraya Sundeep <[email protected]>
10353 M:      hariprasad <[email protected]>
10354 L:      [email protected]
10355 S:      Supported
10356 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10357
10358 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10359 M:      Sunil Goutham <[email protected]>
10360 M:      Linu Cherian <[email protected]>
10361 M:      Geetha sowjanya <[email protected]>
10362 M:      Jerin Jacob <[email protected]>
10363 L:      [email protected]
10364 S:      Supported
10365 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10366 F:      drivers/net/ethernet/marvell/octeontx2/af/
10367
10368 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10369 M:      Nicolas Pitre <[email protected]>
10370 S:      Odd Fixes
10371 F:      drivers/mmc/host/mvsdio.*
10372
10373 MARVELL USB MDIO CONTROLLER DRIVER
10374 M:      Tobias Waldekranz <[email protected]>
10375 L:      [email protected]
10376 S:      Maintained
10377 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10378 F:      drivers/net/phy/mdio-mvusb.c
10379
10380 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10381 M:      Hu Ziji <[email protected]>
10382 L:      [email protected]
10383 S:      Supported
10384 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10385 F:      drivers/mmc/host/sdhci-xenon*
10386
10387 MATROX FRAMEBUFFER DRIVER
10388 L:      [email protected]
10389 S:      Orphan
10390 F:      drivers/video/fbdev/matrox/matroxfb_*
10391 F:      include/uapi/linux/matroxfb.h
10392
10393 MAX16065 HARDWARE MONITOR DRIVER
10394 M:      Guenter Roeck <[email protected]>
10395 L:      [email protected]
10396 S:      Maintained
10397 F:      Documentation/hwmon/max16065.rst
10398 F:      drivers/hwmon/max16065.c
10399
10400 MAX2175 SDR TUNER DRIVER
10401 M:      Ramesh Shanmugasundaram <[email protected]>
10402 L:      [email protected]
10403 S:      Maintained
10404 T:      git git://linuxtv.org/media_tree.git
10405 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10406 F:      Documentation/userspace-api/media/drivers/max2175.rst
10407 F:      drivers/media/i2c/max2175*
10408 F:      include/uapi/linux/max2175.h
10409
10410 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10411 L:      [email protected]
10412 S:      Orphan
10413 F:      Documentation/hwmon/max6650.rst
10414 F:      drivers/hwmon/max6650.c
10415
10416 MAX6697 HARDWARE MONITOR DRIVER
10417 M:      Guenter Roeck <[email protected]>
10418 L:      [email protected]
10419 S:      Maintained
10420 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10421 F:      Documentation/hwmon/max6697.rst
10422 F:      drivers/hwmon/max6697.c
10423 F:      include/linux/platform_data/max6697.h
10424
10425 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10426 M:      Peter Rosin <[email protected]>
10427 L:      [email protected] (moderated for non-subscribers)
10428 S:      Maintained
10429 F:      Documentation/devicetree/bindings/sound/max9860.txt
10430 F:      sound/soc/codecs/max9860.*
10431
10432 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10433 M:      Andreas Klinger <[email protected]>
10434 L:      [email protected]
10435 S:      Maintained
10436 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10437 F:      drivers/iio/proximity/mb1232.c
10438
10439 MAXIM MAX77650 PMIC MFD DRIVER
10440 M:      Bartosz Golaszewski <[email protected]>
10441 L:      [email protected]
10442 S:      Maintained
10443 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10444 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10445 F:      drivers/gpio/gpio-max77650.c
10446 F:      drivers/input/misc/max77650-onkey.c
10447 F:      drivers/leds/leds-max77650.c
10448 F:      drivers/mfd/max77650.c
10449 F:      drivers/power/supply/max77650-charger.c
10450 F:      drivers/regulator/max77650-regulator.c
10451 F:      include/linux/mfd/max77650.h
10452
10453 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10454 M:      Javier Martinez Canillas <[email protected]>
10455 L:      [email protected]
10456 S:      Supported
10457 F:      Documentation/devicetree/bindings/*/*max77802.txt
10458 F:      drivers/regulator/max77802-regulator.c
10459 F:      include/dt-bindings/*/*max77802.h
10460
10461 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10462 M:      Krzysztof Kozlowski <[email protected]>
10463 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10464 L:      [email protected]
10465 S:      Supported
10466 F:      drivers/power/supply/max14577_charger.c
10467 F:      drivers/power/supply/max77693_charger.c
10468
10469 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10470 M:      Chanwoo Choi <[email protected]>
10471 M:      Krzysztof Kozlowski <[email protected]>
10472 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10473 L:      [email protected]
10474 S:      Supported
10475 F:      Documentation/devicetree/bindings/*/max77686.txt
10476 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10477 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10478 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10479 F:      drivers/*/max14577*.c
10480 F:      drivers/*/max77686*.c
10481 F:      drivers/*/max77693*.c
10482 F:      drivers/clk/clk-max77686.c
10483 F:      drivers/extcon/extcon-max14577.c
10484 F:      drivers/extcon/extcon-max77693.c
10485 F:      drivers/rtc/rtc-max77686.c
10486 F:      include/linux/mfd/max14577*.h
10487 F:      include/linux/mfd/max77686*.h
10488 F:      include/linux/mfd/max77693*.h
10489
10490 MAXIRADIO FM RADIO RECEIVER DRIVER
10491 M:      Hans Verkuil <[email protected]>
10492 L:      [email protected]
10493 S:      Maintained
10494 W:      https://linuxtv.org
10495 T:      git git://linuxtv.org/media_tree.git
10496 F:      drivers/media/radio/radio-maxiradio*
10497
10498 MCAN MMIO DEVICE DRIVER
10499 M:      Dan Murphy <[email protected]>
10500 M:      Sriram Dash <[email protected]>
10501 L:      [email protected]
10502 S:      Maintained
10503 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10504 F:      drivers/net/can/m_can/m_can.c
10505 F:      drivers/net/can/m_can/m_can.h
10506 F:      drivers/net/can/m_can/m_can_platform.c
10507
10508 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10509 M:      Rishi Gupta <[email protected]>
10510 L:      [email protected]
10511 L:      [email protected]
10512 S:      Maintained
10513 F:      drivers/hid/hid-mcp2221.c
10514
10515 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10516 M:      Peter Rosin <[email protected]>
10517 L:      [email protected]
10518 S:      Maintained
10519 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10520 F:      drivers/iio/potentiometer/mcp4018.c
10521 F:      drivers/iio/potentiometer/mcp4531.c
10522
10523 MCR20A IEEE-802.15.4 RADIO DRIVER
10524 M:      Xue Liu <[email protected]>
10525 L:      [email protected]
10526 S:      Maintained
10527 W:      https://github.com/xueliu/mcr20a-linux
10528 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10529 F:      drivers/net/ieee802154/mcr20a.c
10530 F:      drivers/net/ieee802154/mcr20a.h
10531
10532 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10533 M:      William Breathitt Gray <[email protected]>
10534 L:      [email protected]
10535 S:      Maintained
10536 F:      drivers/iio/dac/cio-dac.c
10537
10538 MEDIA CONTROLLER FRAMEWORK
10539 M:      Sakari Ailus <[email protected]>
10540 M:      Laurent Pinchart <[email protected]>
10541 L:      [email protected]
10542 S:      Supported
10543 W:      https://www.linuxtv.org
10544 T:      git git://linuxtv.org/media_tree.git
10545 F:      drivers/media/mc/
10546 F:      include/media/media-*.h
10547 F:      include/uapi/linux/media.h
10548
10549 MEDIA DRIVER FOR FREESCALE IMX PXP
10550 M:      Philipp Zabel <[email protected]>
10551 L:      [email protected]
10552 S:      Maintained
10553 T:      git git://linuxtv.org/media_tree.git
10554 F:      drivers/media/platform/imx-pxp.[ch]
10555
10556 MEDIA DRIVERS FOR ASCOT2E
10557 M:      Sergey Kozlov <[email protected]>
10558 M:      Abylay Ospan <[email protected]>
10559 L:      [email protected]
10560 S:      Supported
10561 W:      https://linuxtv.org
10562 W:      http://netup.tv/
10563 T:      git git://linuxtv.org/media_tree.git
10564 F:      drivers/media/dvb-frontends/ascot2e*
10565
10566 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10567 M:      Jasmin Jessich <[email protected]>
10568 L:      [email protected]
10569 S:      Maintained
10570 W:      https://linuxtv.org
10571 T:      git git://linuxtv.org/media_tree.git
10572 F:      drivers/media/dvb-frontends/cxd2099*
10573
10574 MEDIA DRIVERS FOR CXD2841ER
10575 M:      Sergey Kozlov <[email protected]>
10576 M:      Abylay Ospan <[email protected]>
10577 L:      [email protected]
10578 S:      Supported
10579 W:      https://linuxtv.org
10580 W:      http://netup.tv/
10581 T:      git git://linuxtv.org/media_tree.git
10582 F:      drivers/media/dvb-frontends/cxd2841er*
10583
10584 MEDIA DRIVERS FOR CXD2880
10585 M:      Yasunari Takiguchi <[email protected]>
10586 L:      [email protected]
10587 S:      Supported
10588 W:      http://linuxtv.org/
10589 T:      git git://linuxtv.org/media_tree.git
10590 F:      drivers/media/dvb-frontends/cxd2880/*
10591 F:      drivers/media/spi/cxd2880*
10592
10593 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10594 L:      [email protected]
10595 S:      Orphan
10596 W:      https://linuxtv.org
10597 T:      git git://linuxtv.org/media_tree.git
10598 F:      drivers/media/pci/ddbridge/*
10599
10600 MEDIA DRIVERS FOR FREESCALE IMX
10601 M:      Steve Longerbeam <[email protected]>
10602 M:      Philipp Zabel <[email protected]>
10603 L:      [email protected]
10604 S:      Maintained
10605 T:      git git://linuxtv.org/media_tree.git
10606 F:      Documentation/admin-guide/media/imx.rst
10607 F:      Documentation/devicetree/bindings/media/imx.txt
10608 F:      drivers/staging/media/imx/
10609 F:      include/linux/imx-media.h
10610 F:      include/media/imx.h
10611
10612 MEDIA DRIVERS FOR FREESCALE IMX7
10613 M:      Rui Miguel Silva <[email protected]>
10614 L:      [email protected]
10615 S:      Maintained
10616 T:      git git://linuxtv.org/media_tree.git
10617 F:      Documentation/admin-guide/media/imx7.rst
10618 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10619 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10620 F:      drivers/staging/media/imx/imx7-media-csi.c
10621 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10622
10623 MEDIA DRIVERS FOR HELENE
10624 M:      Abylay Ospan <[email protected]>
10625 L:      [email protected]
10626 S:      Supported
10627 W:      https://linuxtv.org
10628 W:      http://netup.tv/
10629 T:      git git://linuxtv.org/media_tree.git
10630 F:      drivers/media/dvb-frontends/helene*
10631
10632 MEDIA DRIVERS FOR HORUS3A
10633 M:      Sergey Kozlov <[email protected]>
10634 M:      Abylay Ospan <[email protected]>
10635 L:      [email protected]
10636 S:      Supported
10637 W:      https://linuxtv.org
10638 W:      http://netup.tv/
10639 T:      git git://linuxtv.org/media_tree.git
10640 F:      drivers/media/dvb-frontends/horus3a*
10641
10642 MEDIA DRIVERS FOR LNBH25
10643 M:      Sergey Kozlov <[email protected]>
10644 M:      Abylay Ospan <[email protected]>
10645 L:      [email protected]
10646 S:      Supported
10647 W:      https://linuxtv.org
10648 W:      http://netup.tv/
10649 T:      git git://linuxtv.org/media_tree.git
10650 F:      drivers/media/dvb-frontends/lnbh25*
10651
10652 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10653 L:      [email protected]
10654 S:      Orphan
10655 W:      https://linuxtv.org
10656 T:      git git://linuxtv.org/media_tree.git
10657 F:      drivers/media/dvb-frontends/mxl5xx*
10658
10659 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10660 M:      Sergey Kozlov <[email protected]>
10661 M:      Abylay Ospan <[email protected]>
10662 L:      [email protected]
10663 S:      Supported
10664 W:      https://linuxtv.org
10665 W:      http://netup.tv/
10666 T:      git git://linuxtv.org/media_tree.git
10667 F:      drivers/media/pci/netup_unidvb/*
10668
10669 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10670 M:      Dmitry Osipenko <[email protected]>
10671 L:      [email protected]
10672 L:      [email protected]
10673 S:      Maintained
10674 T:      git git://linuxtv.org/media_tree.git
10675 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10676 F:      drivers/staging/media/tegra-vde/
10677
10678 MEDIA DRIVERS FOR RENESAS - CEU
10679 M:      Jacopo Mondi <[email protected]>
10680 L:      [email protected]
10681 L:      [email protected]
10682 S:      Supported
10683 T:      git git://linuxtv.org/media_tree.git
10684 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10685 F:      drivers/media/platform/renesas-ceu.c
10686 F:      include/media/drv-intf/renesas-ceu.h
10687
10688 MEDIA DRIVERS FOR RENESAS - DRIF
10689 M:      Ramesh Shanmugasundaram <[email protected]>
10690 L:      [email protected]
10691 L:      [email protected]
10692 S:      Supported
10693 T:      git git://linuxtv.org/media_tree.git
10694 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10695 F:      drivers/media/platform/rcar_drif.c
10696
10697 MEDIA DRIVERS FOR RENESAS - FCP
10698 M:      Laurent Pinchart <[email protected]>
10699 L:      [email protected]
10700 L:      [email protected]
10701 S:      Supported
10702 T:      git git://linuxtv.org/media_tree.git
10703 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10704 F:      drivers/media/platform/rcar-fcp.c
10705 F:      include/media/rcar-fcp.h
10706
10707 MEDIA DRIVERS FOR RENESAS - FDP1
10708 M:      Kieran Bingham <[email protected]>
10709 L:      [email protected]
10710 L:      [email protected]
10711 S:      Supported
10712 T:      git git://linuxtv.org/media_tree.git
10713 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10714 F:      drivers/media/platform/rcar_fdp1.c
10715
10716 MEDIA DRIVERS FOR RENESAS - VIN
10717 M:      Niklas Söderlund <[email protected]>
10718 L:      [email protected]
10719 L:      [email protected]
10720 S:      Supported
10721 T:      git git://linuxtv.org/media_tree.git
10722 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10723 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10724 F:      drivers/media/platform/rcar-vin/
10725
10726 MEDIA DRIVERS FOR RENESAS - VSP1
10727 M:      Laurent Pinchart <[email protected]>
10728 M:      Kieran Bingham <[email protected]>
10729 L:      [email protected]
10730 L:      [email protected]
10731 S:      Supported
10732 T:      git git://linuxtv.org/media_tree.git
10733 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10734 F:      drivers/media/platform/vsp1/
10735
10736 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10737 L:      [email protected]
10738 S:      Orphan
10739 W:      https://linuxtv.org
10740 T:      git git://linuxtv.org/media_tree.git
10741 F:      drivers/media/dvb-frontends/stv0910*
10742
10743 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10744 L:      [email protected]
10745 S:      Orphan
10746 W:      https://linuxtv.org
10747 T:      git git://linuxtv.org/media_tree.git
10748 F:      drivers/media/dvb-frontends/stv6111*
10749
10750 MEDIA DRIVERS FOR STM32 - DCMI
10751 M:      Hugues Fruchet <[email protected]>
10752 L:      [email protected]
10753 S:      Supported
10754 T:      git git://linuxtv.org/media_tree.git
10755 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10756 F:      drivers/media/platform/stm32/stm32-dcmi.c
10757
10758 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10759 M:      Mauro Carvalho Chehab <[email protected]>
10760 L:      [email protected]
10761 S:      Maintained
10762 W:      https://linuxtv.org
10763 Q:      http://patchwork.kernel.org/project/linux-media/list/
10764 T:      git git://linuxtv.org/media_tree.git
10765 F:      Documentation/admin-guide/media/
10766 F:      Documentation/devicetree/bindings/media/
10767 F:      Documentation/driver-api/media/
10768 F:      Documentation/userspace-api/media/
10769 F:      drivers/media/
10770 F:      drivers/staging/media/
10771 F:      include/linux/platform_data/media/
10772 F:      include/media/
10773 F:      include/uapi/linux/dvb/
10774 F:      include/uapi/linux/ivtv*
10775 F:      include/uapi/linux/media.h
10776 F:      include/uapi/linux/meye.h
10777 F:      include/uapi/linux/uvcvideo.h
10778 F:      include/uapi/linux/v4l2-*
10779 F:      include/uapi/linux/videodev2.h
10780
10781 MEDIATEK BLUETOOTH DRIVER
10782 M:      Sean Wang <[email protected]>
10783 L:      [email protected]
10784 L:      [email protected] (moderated for non-subscribers)
10785 S:      Maintained
10786 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10787 F:      drivers/bluetooth/btmtkuart.c
10788
10789 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10790 M:      Sean Wang <[email protected]>
10791 L:      [email protected]
10792 S:      Maintained
10793 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10794 F:      drivers/power/reset/mt6323-poweroff.c
10795
10796 MEDIATEK CIR DRIVER
10797 M:      Sean Wang <[email protected]>
10798 S:      Maintained
10799 F:      drivers/media/rc/mtk-cir.c
10800
10801 MEDIATEK DMA DRIVER
10802 M:      Sean Wang <[email protected]>
10803 L:      [email protected]
10804 L:      [email protected] (moderated for non-subscribers)
10805 L:      [email protected] (moderated for non-subscribers)
10806 S:      Maintained
10807 F:      Documentation/devicetree/bindings/dma/mtk-*
10808 F:      drivers/dma/mediatek/
10809
10810 MEDIATEK ETHERNET DRIVER
10811 M:      Felix Fietkau <[email protected]>
10812 M:      John Crispin <[email protected]>
10813 M:      Sean Wang <[email protected]>
10814 M:      Mark Lee <[email protected]>
10815 L:      [email protected]
10816 S:      Maintained
10817 F:      drivers/net/ethernet/mediatek/
10818
10819 MEDIATEK I2C CONTROLLER DRIVER
10820 M:      Qii Wang <[email protected]>
10821 L:      [email protected]
10822 S:      Maintained
10823 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
10824 F:      drivers/i2c/busses/i2c-mt65xx.c
10825
10826 MEDIATEK JPEG DRIVER
10827 M:      Rick Chang <[email protected]>
10828 M:      Bin Liu <[email protected]>
10829 S:      Supported
10830 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10831 F:      drivers/media/platform/mtk-jpeg/
10832
10833 MEDIATEK MDP DRIVER
10834 M:      Minghsiu Tsai <[email protected]>
10835 M:      Houlong Wei <[email protected]>
10836 M:      Andrew-CT Chen <[email protected]>
10837 S:      Supported
10838 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10839 F:      drivers/media/platform/mtk-mdp/
10840 F:      drivers/media/platform/mtk-vpu/
10841
10842 MEDIATEK MEDIA DRIVER
10843 M:      Tiffany Lin <[email protected]>
10844 M:      Andrew-CT Chen <[email protected]>
10845 S:      Supported
10846 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10847 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10848 F:      drivers/media/platform/mtk-vcodec/
10849 F:      drivers/media/platform/mtk-vpu/
10850
10851 MEDIATEK MMC/SD/SDIO DRIVER
10852 M:      Chaotian Jing <[email protected]>
10853 S:      Maintained
10854 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10855 F:      drivers/mmc/host/mtk-sd.c
10856
10857 MEDIATEK MT76 WIRELESS LAN DRIVER
10858 M:      Felix Fietkau <[email protected]>
10859 M:      Lorenzo Bianconi <[email protected]>
10860 R:      Ryder Lee <[email protected]>
10861 L:      [email protected]
10862 S:      Maintained
10863 F:      drivers/net/wireless/mediatek/mt76/
10864
10865 MEDIATEK MT7601U WIRELESS LAN DRIVER
10866 M:      Jakub Kicinski <[email protected]>
10867 L:      [email protected]
10868 S:      Maintained
10869 F:      drivers/net/wireless/mediatek/mt7601u/
10870
10871 MEDIATEK MT7621/28/88 I2C DRIVER
10872 M:      Stefan Roese <[email protected]>
10873 L:      [email protected]
10874 S:      Maintained
10875 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10876 F:      drivers/i2c/busses/i2c-mt7621.c
10877
10878 MEDIATEK NAND CONTROLLER DRIVER
10879 L:      [email protected]
10880 S:      Orphan
10881 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10882 F:      drivers/mtd/nand/raw/mtk_*
10883
10884 MEDIATEK PMIC LED DRIVER
10885 M:      Sean Wang <[email protected]>
10886 S:      Maintained
10887 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10888 F:      drivers/leds/leds-mt6323.c
10889
10890 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10891 M:      Sean Wang <[email protected]>
10892 S:      Maintained
10893 F:      drivers/char/hw_random/mtk-rng.c
10894
10895 MEDIATEK SWITCH DRIVER
10896 M:      Sean Wang <[email protected]>
10897 L:      [email protected]
10898 S:      Maintained
10899 F:      drivers/net/dsa/mt7530.*
10900 F:      net/dsa/tag_mtk.c
10901
10902 MEDIATEK USB3 DRD IP DRIVER
10903 M:      Chunfeng Yun <[email protected]>
10904 L:      [email protected] (moderated for non-subscribers)
10905 L:      [email protected] (moderated for non-subscribers)
10906 L:      [email protected] (moderated for non-subscribers)
10907 S:      Maintained
10908 F:      drivers/usb/mtu3/
10909
10910 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10911 M:      Peter Senna Tschudin <[email protected]>
10912 M:      Martin Donnelly <[email protected]>
10913 M:      Martyn Welch <[email protected]>
10914 S:      Maintained
10915 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10916 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10917
10918 MEGARAID SCSI/SAS DRIVERS
10919 M:      Kashyap Desai <[email protected]>
10920 M:      Sumit Saxena <[email protected]>
10921 M:      Shivasharan S <[email protected]>
10922 L:      [email protected]
10923 L:      [email protected]
10924 S:      Maintained
10925 W:      http://www.avagotech.com/support/
10926 F:      Documentation/scsi/megaraid.rst
10927 F:      drivers/scsi/megaraid.*
10928 F:      drivers/scsi/megaraid/
10929
10930 MELEXIS MLX90614 DRIVER
10931 M:      Crt Mori <[email protected]>
10932 L:      [email protected]
10933 S:      Supported
10934 W:      http://www.melexis.com
10935 F:      drivers/iio/temperature/mlx90614.c
10936
10937 MELEXIS MLX90632 DRIVER
10938 M:      Crt Mori <[email protected]>
10939 L:      [email protected]
10940 S:      Supported
10941 W:      http://www.melexis.com
10942 F:      drivers/iio/temperature/mlx90632.c
10943
10944 MELFAS MIP4 TOUCHSCREEN DRIVER
10945 M:      Sangwon Jee <[email protected]>
10946 S:      Supported
10947 W:      http://www.melfas.com
10948 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10949 F:      drivers/input/touchscreen/melfas_mip4.c
10950
10951 MELLANOX ETHERNET DRIVER (mlx4_en)
10952 M:      Tariq Toukan <[email protected]>
10953 L:      [email protected]
10954 S:      Supported
10955 W:      http://www.mellanox.com
10956 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10957 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10958
10959 MELLANOX ETHERNET DRIVER (mlx5e)
10960 M:      Saeed Mahameed <[email protected]>
10961 L:      [email protected]
10962 S:      Supported
10963 W:      http://www.mellanox.com
10964 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10965 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10966
10967 MELLANOX ETHERNET INNOVA DRIVERS
10968 R:      Boris Pismenny <[email protected]>
10969 L:      [email protected]
10970 S:      Supported
10971 W:      http://www.mellanox.com
10972 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10973 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10974 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10975 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10976 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10977
10978 MELLANOX ETHERNET SWITCH DRIVERS
10979 M:      Jiri Pirko <[email protected]>
10980 M:      Ido Schimmel <[email protected]>
10981 L:      [email protected]
10982 S:      Supported
10983 W:      http://www.mellanox.com
10984 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10985 F:      drivers/net/ethernet/mellanox/mlxsw/
10986 F:      tools/testing/selftests/drivers/net/mlxsw/
10987
10988 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10989 M:      [email protected]
10990 L:      [email protected]
10991 S:      Supported
10992 W:      http://www.mellanox.com
10993 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10994 F:      drivers/net/ethernet/mellanox/mlxfw/
10995
10996 MELLANOX HARDWARE PLATFORM SUPPORT
10997 M:      Andy Shevchenko <[email protected]>
10998 M:      Darren Hart <[email protected]>
10999 M:      Vadim Pasternak <[email protected]>
11000 L:      [email protected]
11001 S:      Supported
11002 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11003 F:      drivers/platform/mellanox/
11004 F:      include/linux/platform_data/mlxreg.h
11005
11006 MELLANOX MLX4 core VPI driver
11007 M:      Tariq Toukan <[email protected]>
11008 L:      [email protected]
11009 L:      [email protected]
11010 S:      Supported
11011 W:      http://www.mellanox.com
11012 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11013 F:      drivers/net/ethernet/mellanox/mlx4/
11014 F:      include/linux/mlx4/
11015
11016 MELLANOX MLX4 IB driver
11017 M:      Yishai Hadas <[email protected]>
11018 L:      [email protected]
11019 S:      Supported
11020 W:      http://www.mellanox.com
11021 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11022 F:      drivers/infiniband/hw/mlx4/
11023 F:      include/linux/mlx4/
11024 F:      include/uapi/rdma/mlx4-abi.h
11025
11026 MELLANOX MLX5 core VPI driver
11027 M:      Saeed Mahameed <[email protected]>
11028 M:      Leon Romanovsky <[email protected]>
11029 L:      [email protected]
11030 L:      [email protected]
11031 S:      Supported
11032 W:      http://www.mellanox.com
11033 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11034 F:      Documentation/networking/device_drivers/mellanox/
11035 F:      drivers/net/ethernet/mellanox/mlx5/core/
11036 F:      include/linux/mlx5/
11037
11038 MELLANOX MLX5 IB driver
11039 M:      Leon Romanovsky <[email protected]>
11040 L:      [email protected]
11041 S:      Supported
11042 W:      http://www.mellanox.com
11043 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11044 F:      drivers/infiniband/hw/mlx5/
11045 F:      include/linux/mlx5/
11046 F:      include/uapi/rdma/mlx5-abi.h
11047
11048 MELLANOX MLXCPLD I2C AND MUX DRIVER
11049 M:      Vadim Pasternak <[email protected]>
11050 M:      Michael Shych <[email protected]>
11051 L:      [email protected]
11052 S:      Supported
11053 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11054 F:      drivers/i2c/busses/i2c-mlxcpld.c
11055 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11056
11057 MELLANOX MLXCPLD LED DRIVER
11058 M:      Vadim Pasternak <[email protected]>
11059 L:      [email protected]
11060 S:      Supported
11061 F:      Documentation/leds/leds-mlxcpld.rst
11062 F:      drivers/leds/leds-mlxcpld.c
11063 F:      drivers/leds/leds-mlxreg.c
11064
11065 MELLANOX PLATFORM DRIVER
11066 M:      Vadim Pasternak <[email protected]>
11067 L:      [email protected]
11068 S:      Supported
11069 F:      drivers/platform/x86/mlx-platform.c
11070
11071 MEMBARRIER SUPPORT
11072 M:      Mathieu Desnoyers <[email protected]>
11073 M:      "Paul E. McKenney" <[email protected]>
11074 L:      [email protected]
11075 S:      Supported
11076 F:      arch/powerpc/include/asm/membarrier.h
11077 F:      include/uapi/linux/membarrier.h
11078 F:      kernel/sched/membarrier.c
11079
11080 MEMBLOCK
11081 M:      Mike Rapoport <[email protected]>
11082 L:      [email protected]
11083 S:      Maintained
11084 F:      Documentation/core-api/boot-time-mm.rst
11085 F:      include/linux/memblock.h
11086 F:      mm/memblock.c
11087
11088 MEMORY MANAGEMENT
11089 M:      Andrew Morton <[email protected]>
11090 L:      [email protected]
11091 S:      Maintained
11092 W:      http://www.linux-mm.org
11093 T:      quilt https://ozlabs.org/~akpm/mmotm/
11094 T:      quilt https://ozlabs.org/~akpm/mmots/
11095 T:      git git://github.com/hnaz/linux-mm.git
11096 F:      include/linux/gfp.h
11097 F:      include/linux/memory_hotplug.h
11098 F:      include/linux/mm.h
11099 F:      include/linux/mmzone.h
11100 F:      include/linux/vmalloc.h
11101 F:      mm/
11102
11103 MEMORY TECHNOLOGY DEVICES (MTD)
11104 M:      Miquel Raynal <[email protected]>
11105 M:      Richard Weinberger <[email protected]>
11106 M:      Vignesh Raghavendra <[email protected]>
11107 L:      [email protected]
11108 S:      Maintained
11109 W:      http://www.linux-mtd.infradead.org/
11110 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11111 C:      irc://irc.oftc.net/mtd
11112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11114 F:      Documentation/devicetree/bindings/mtd/
11115 F:      drivers/mtd/
11116 F:      include/linux/mtd/
11117 F:      include/uapi/mtd/
11118
11119 MEN A21 WATCHDOG DRIVER
11120 M:      Johannes Thumshirn <[email protected]>
11121 L:      [email protected]
11122 S:      Maintained
11123 F:      drivers/watchdog/mena21_wdt.c
11124
11125 MEN CHAMELEON BUS (mcb)
11126 M:      Johannes Thumshirn <[email protected]>
11127 S:      Maintained
11128 F:      Documentation/driver-api/men-chameleon-bus.rst
11129 F:      drivers/mcb/
11130 F:      include/linux/mcb.h
11131
11132 MEN F21BMC (Board Management Controller)
11133 M:      Andreas Werner <[email protected]>
11134 S:      Supported
11135 F:      Documentation/hwmon/menf21bmc.rst
11136 F:      drivers/hwmon/menf21bmc_hwmon.c
11137 F:      drivers/leds/leds-menf21bmc.c
11138 F:      drivers/mfd/menf21bmc.c
11139 F:      drivers/watchdog/menf21bmc_wdt.c
11140
11141 MEN Z069 WATCHDOG DRIVER
11142 M:      Johannes Thumshirn <[email protected]>
11143 L:      [email protected]
11144 S:      Maintained
11145 F:      drivers/watchdog/menz69_wdt.c
11146
11147 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11148 M:      Neil Armstrong <[email protected]>
11149 L:      [email protected]
11150 L:      [email protected]
11151 S:      Supported
11152 W:      http://linux-meson.com/
11153 T:      git git://linuxtv.org/media_tree.git
11154 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11155 F:      drivers/media/platform/meson/ao-cec-g12a.c
11156 F:      drivers/media/platform/meson/ao-cec.c
11157
11158 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11159 M:      Liang Yang <[email protected]>
11160 L:      [email protected]
11161 S:      Maintained
11162 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11163 F:      drivers/mtd/nand/raw/meson_*
11164
11165 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11166 M:      Maxime Jourdan <[email protected]>
11167 M:      Neil Armstrong <[email protected]>
11168 L:      [email protected]
11169 L:      [email protected]
11170 S:      Supported
11171 T:      git git://linuxtv.org/media_tree.git
11172 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11173 F:      drivers/staging/media/meson/vdec/
11174
11175 METHODE UDPU SUPPORT
11176 M:      Vladimir Vid <[email protected]>
11177 S:      Maintained
11178 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11179
11180 MHI BUS
11181 M:      Manivannan Sadhasivam <[email protected]>
11182 M:      Hemant Kumar <[email protected]>
11183 L:      [email protected]
11184 S:      Maintained
11185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11186 F:      Documentation/mhi/
11187 F:      drivers/bus/mhi/
11188 F:      include/linux/mhi.h
11189
11190 MICROBLAZE ARCHITECTURE
11191 M:      Michal Simek <[email protected]>
11192 S:      Supported
11193 W:      http://www.monstr.eu/fdt/
11194 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11195 F:      arch/microblaze/
11196
11197 MICROCHIP AT91 SERIAL DRIVER
11198 M:      Richard Genoud <[email protected]>
11199 S:      Maintained
11200 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11201 F:      drivers/tty/serial/atmel_serial.c
11202 F:      drivers/tty/serial/atmel_serial.h
11203
11204 MICROCHIP AT91 USART MFD DRIVER
11205 M:      Radu Pirea <[email protected]>
11206 L:      [email protected]
11207 S:      Supported
11208 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11209 F:      drivers/mfd/at91-usart.c
11210 F:      include/dt-bindings/mfd/at91-usart.h
11211
11212 MICROCHIP AT91 USART SPI DRIVER
11213 M:      Radu Pirea <[email protected]>
11214 L:      [email protected]
11215 S:      Supported
11216 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11217 F:      drivers/spi/spi-at91-usart.c
11218
11219 MICROCHIP AUDIO ASOC DRIVERS
11220 M:      Codrin Ciubotariu <[email protected]>
11221 L:      [email protected] (moderated for non-subscribers)
11222 S:      Supported
11223 F:      sound/soc/atmel
11224
11225 MICROCHIP DMA DRIVER
11226 M:      Ludovic Desroches <[email protected]>
11227 L:      [email protected] (moderated for non-subscribers)
11228 L:      [email protected]
11229 S:      Supported
11230 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11231 F:      drivers/dma/at_hdmac.c
11232 F:      drivers/dma/at_hdmac_regs.h
11233 F:      include/dt-bindings/dma/at91.h
11234 F:      include/linux/platform_data/dma-atmel.h
11235
11236 MICROCHIP ECC DRIVER
11237 M:      Tudor Ambarus <[email protected]>
11238 L:      [email protected]
11239 S:      Maintained
11240 F:      drivers/crypto/atmel-ecc.*
11241
11242 MICROCHIP I2C DRIVER
11243 M:      Ludovic Desroches <[email protected]>
11244 L:      [email protected]
11245 S:      Supported
11246 F:      drivers/i2c/busses/i2c-at91-*.c
11247 F:      drivers/i2c/busses/i2c-at91.h
11248
11249 MICROCHIP ISC DRIVER
11250 M:      Eugen Hristev <[email protected]>
11251 L:      [email protected]
11252 S:      Supported
11253 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11254 F:      drivers/media/platform/atmel/atmel-isc-base.c
11255 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11256 F:      drivers/media/platform/atmel/atmel-isc.h
11257 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11258 F:      include/linux/atmel-isc-media.h
11259
11260 MICROCHIP ISI DRIVER
11261 M:      Eugen Hristev <[email protected]>
11262 L:      [email protected]
11263 S:      Supported
11264 F:      drivers/media/platform/atmel/atmel-isi.c
11265 F:      drivers/media/platform/atmel/atmel-isi.h
11266
11267 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11268 M:      Woojung Huh <[email protected]>
11269 M:      Microchip Linux Driver Support <[email protected]>
11270 L:      [email protected]
11271 S:      Maintained
11272 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11273 F:      drivers/net/dsa/microchip/*
11274 F:      include/linux/platform_data/microchip-ksz.h
11275 F:      net/dsa/tag_ksz.c
11276
11277 MICROCHIP LAN743X ETHERNET DRIVER
11278 M:      Bryan Whitehead <[email protected]>
11279 M:      Microchip Linux Driver Support <[email protected]>
11280 L:      [email protected]
11281 S:      Maintained
11282 F:      drivers/net/ethernet/microchip/lan743x_*
11283
11284 MICROCHIP LCDFB DRIVER
11285 M:      Nicolas Ferre <[email protected]>
11286 L:      [email protected]
11287 S:      Maintained
11288 F:      drivers/video/fbdev/atmel_lcdfb.c
11289 F:      include/video/atmel_lcdc.h
11290
11291 MICROCHIP MCP16502 PMIC DRIVER
11292 M:      Andrei Stefanescu <[email protected]>
11293 L:      [email protected] (moderated for non-subscribers)
11294 S:      Maintained
11295 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11296 F:      drivers/regulator/mcp16502.c
11297
11298 MICROCHIP MCP3911 ADC DRIVER
11299 M:      Marcus Folkesson <[email protected]>
11300 M:      Kent Gustavsson <[email protected]>
11301 L:      [email protected]
11302 S:      Supported
11303 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11304 F:      drivers/iio/adc/mcp3911.c
11305
11306 MICROCHIP MMC/SD/SDIO MCI DRIVER
11307 M:      Ludovic Desroches <[email protected]>
11308 S:      Maintained
11309 F:      drivers/mmc/host/atmel-mci.c
11310
11311 MICROCHIP NAND DRIVER
11312 M:      Tudor Ambarus <[email protected]>
11313 L:      [email protected]
11314 S:      Supported
11315 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11316 F:      drivers/mtd/nand/raw/atmel/*
11317
11318 MICROCHIP PWM DRIVER
11319 M:      Claudiu Beznea <[email protected]>
11320 L:      [email protected] (moderated for non-subscribers)
11321 L:      [email protected]
11322 S:      Supported
11323 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11324 F:      drivers/pwm/pwm-atmel.c
11325
11326 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11327 M:      Ludovic Desroches <[email protected]>
11328 M:      Eugen Hristev <[email protected]>
11329 L:      [email protected]
11330 S:      Supported
11331 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11332 F:      drivers/iio/adc/at91-sama5d2_adc.c
11333 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11334
11335 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11336 M:      Nicolas Ferre <[email protected]>
11337 S:      Supported
11338 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11339
11340 MICROCHIP SPI DRIVER
11341 M:      Nicolas Ferre <[email protected]>
11342 S:      Supported
11343 F:      drivers/spi/spi-atmel.*
11344
11345 MICROCHIP SSC DRIVER
11346 M:      Nicolas Ferre <[email protected]>
11347 L:      [email protected] (moderated for non-subscribers)
11348 S:      Supported
11349 F:      drivers/misc/atmel-ssc.c
11350 F:      include/linux/atmel-ssc.h
11351
11352 MICROCHIP USB251XB DRIVER
11353 M:      Richard Leitner <[email protected]>
11354 L:      [email protected]
11355 S:      Maintained
11356 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11357 F:      drivers/usb/misc/usb251xb.c
11358
11359 MICROCHIP USBA UDC DRIVER
11360 M:      Cristian Birsan <[email protected]>
11361 L:      [email protected] (moderated for non-subscribers)
11362 S:      Supported
11363 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11364
11365 MICROCHIP XDMA DRIVER
11366 M:      Ludovic Desroches <[email protected]>
11367 L:      [email protected]
11368 L:      [email protected]
11369 S:      Supported
11370 F:      drivers/dma/at_xdmac.c
11371
11372 MICROSEMI MIPS SOCS
11373 M:      Alexandre Belloni <[email protected]>
11374 M:      Microchip Linux Driver Support <[email protected]>
11375 L:      [email protected]
11376 S:      Supported
11377 F:      Documentation/devicetree/bindings/mips/mscc.txt
11378 F:      arch/mips/boot/dts/mscc/
11379 F:      arch/mips/configs/generic/board-ocelot.config
11380 F:      arch/mips/generic/board-ocelot.c
11381
11382 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11383 M:      Don Brace <[email protected]>
11384 L:      [email protected]
11385 L:      [email protected]
11386 S:      Supported
11387 F:      Documentation/scsi/smartpqi.rst
11388 F:      drivers/scsi/smartpqi/Kconfig
11389 F:      drivers/scsi/smartpqi/Makefile
11390 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11391 F:      include/linux/cciss*.h
11392 F:      include/uapi/linux/cciss*.h
11393
11394 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11395 M:      Chen Yu <[email protected]>
11396 L:      [email protected]
11397 S:      Supported
11398 F:      drivers/platform/x86/surfacepro3_button.c
11399
11400 MICROTEK X6 SCANNER
11401 M:      Oliver Neukum <[email protected]>
11402 S:      Maintained
11403 F:      drivers/usb/image/microtek.*
11404
11405 MIPS
11406 M:      Thomas Bogendoerfer <[email protected]>
11407 L:      [email protected]
11408 S:      Maintained
11409 W:      http://www.linux-mips.org/
11410 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11412 F:      Documentation/devicetree/bindings/mips/
11413 F:      Documentation/mips/
11414 F:      arch/mips/
11415 F:      drivers/platform/mips/
11416
11417 MIPS BOSTON DEVELOPMENT BOARD
11418 M:      Paul Burton <[email protected]>
11419 L:      [email protected]
11420 S:      Maintained
11421 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11422 F:      arch/mips/boot/dts/img/boston.dts
11423 F:      arch/mips/configs/generic/board-boston.config
11424 F:      drivers/clk/imgtec/clk-boston.c
11425 F:      include/dt-bindings/clock/boston-clock.h
11426
11427 MIPS GENERIC PLATFORM
11428 M:      Paul Burton <[email protected]>
11429 L:      [email protected]
11430 S:      Supported
11431 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11432 F:      arch/mips/generic/
11433 F:      arch/mips/tools/generic-board-config.sh
11434
11435 MIPS RINT INSTRUCTION EMULATION
11436 M:      Aleksandar Markovic <[email protected]>
11437 L:      [email protected]
11438 S:      Supported
11439 F:      arch/mips/math-emu/dp_rint.c
11440 F:      arch/mips/math-emu/sp_rint.c
11441
11442 MIPS/LOONGSON1 ARCHITECTURE
11443 M:      Keguang Zhang <[email protected]>
11444 L:      [email protected]
11445 S:      Maintained
11446 F:      arch/mips/include/asm/mach-loongson32/
11447 F:      arch/mips/loongson32/
11448 F:      drivers/*/*/*loongson1*
11449 F:      drivers/*/*loongson1*
11450
11451 MIPS/LOONGSON2EF ARCHITECTURE
11452 M:      Jiaxun Yang <[email protected]>
11453 L:      [email protected]
11454 S:      Maintained
11455 F:      arch/mips/include/asm/mach-loongson2ef/
11456 F:      arch/mips/loongson2ef/
11457 F:      drivers/*/*/*loongson2*
11458 F:      drivers/*/*loongson2*
11459
11460 MIPS/LOONGSON64 ARCHITECTURE
11461 M:      Huacai Chen <[email protected]>
11462 M:      Jiaxun Yang <[email protected]>
11463 L:      [email protected]
11464 S:      Maintained
11465 F:      arch/mips/include/asm/mach-loongson64/
11466 F:      arch/mips/loongson64/
11467 F:      drivers/*/*/*loongson3*
11468 F:      drivers/*/*loongson3*
11469 F:      drivers/irqchip/irq-loongson*
11470 F:      drivers/platform/mips/cpu_hwmon.c
11471
11472 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11473 M:      Hans Verkuil <[email protected]>
11474 L:      [email protected]
11475 S:      Odd Fixes
11476 W:      https://linuxtv.org
11477 T:      git git://linuxtv.org/media_tree.git
11478 F:      drivers/media/radio/radio-miropcm20*
11479
11480 MMP SUPPORT
11481 R:      Lubomir Rintel <[email protected]>
11482 L:      [email protected] (moderated for non-subscribers)
11483 S:      Odd Fixes
11484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11485 F:      arch/arm/boot/dts/mmp*
11486 F:      arch/arm/mach-mmp/
11487 F:      linux/soc/mmp/
11488
11489 MMP USB PHY DRIVERS
11490 R:      Lubomir Rintel <[email protected]>
11491 L:      [email protected] (moderated for non-subscribers)
11492 S:      Maintained
11493 F:      drivers/phy/marvell/phy-mmp3-usb.c
11494 F:      drivers/phy/marvell/phy-pxa-usb.c
11495
11496 MMU GATHER AND TLB INVALIDATION
11497 M:      Will Deacon <[email protected]>
11498 M:      "Aneesh Kumar K.V" <[email protected]>
11499 M:      Andrew Morton <[email protected]>
11500 M:      Nick Piggin <[email protected]>
11501 M:      Peter Zijlstra <[email protected]>
11502 L:      [email protected]
11503 L:      [email protected]
11504 S:      Maintained
11505 F:      arch/*/include/asm/tlb.h
11506 F:      include/asm-generic/tlb.h
11507 F:      mm/mmu_gather.c
11508
11509 MN88472 MEDIA DRIVER
11510 M:      Antti Palosaari <[email protected]>
11511 L:      [email protected]
11512 S:      Maintained
11513 W:      https://linuxtv.org
11514 W:      http://palosaari.fi/linux/
11515 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11516 F:      drivers/media/dvb-frontends/mn88472*
11517
11518 MN88473 MEDIA DRIVER
11519 M:      Antti Palosaari <[email protected]>
11520 L:      [email protected]
11521 S:      Maintained
11522 W:      https://linuxtv.org
11523 W:      http://palosaari.fi/linux/
11524 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11525 F:      drivers/media/dvb-frontends/mn88473*
11526
11527 MODULE SUPPORT
11528 M:      Jessica Yu <[email protected]>
11529 S:      Maintained
11530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11531 F:      include/linux/module.h
11532 F:      kernel/module.c
11533
11534 MONOLITHIC POWER SYSTEM PMIC DRIVER
11535 M:      Saravanan Sekar <[email protected]>
11536 S:      Maintained
11537 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11538 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11539 F:      drivers/iio/adc/mp2629_adc.c
11540 F:      drivers/mfd/mp2629.c
11541 F:      drivers/power/supply/mp2629_charger.c
11542 F:      drivers/regulator/mp5416.c
11543 F:      drivers/regulator/mpq7920.c
11544 F:      drivers/regulator/mpq7920.h
11545 F:      include/linux/mfd/mp2629.h
11546
11547 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11548 S:      Orphan
11549 W:      http://popies.net/meye/
11550 F:      Documentation/userspace-api/media/drivers/meye*
11551 F:      drivers/media/pci/meye/
11552 F:      include/uapi/linux/meye.h
11553
11554 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11555 M:      Jiri Slaby <[email protected]>
11556 S:      Maintained
11557 F:      Documentation/driver-api/serial/moxa-smartio.rst
11558 F:      drivers/tty/mxser.*
11559
11560 MR800 AVERMEDIA USB FM RADIO DRIVER
11561 M:      Alexey Klimov <[email protected]>
11562 L:      [email protected]
11563 S:      Maintained
11564 T:      git git://linuxtv.org/media_tree.git
11565 F:      drivers/media/radio/radio-mr800.c
11566
11567 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11568 M:      Alan Ott <[email protected]>
11569 L:      [email protected]
11570 S:      Maintained
11571 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11572 F:      drivers/net/ieee802154/mrf24j40.c
11573
11574 MSI LAPTOP SUPPORT
11575 M:      "Lee, Chun-Yi" <[email protected]>
11576 L:      [email protected]
11577 S:      Maintained
11578 F:      drivers/platform/x86/msi-laptop.c
11579
11580 MSI WMI SUPPORT
11581 L:      [email protected]
11582 S:      Orphan
11583 F:      drivers/platform/x86/msi-wmi.c
11584
11585 MSI001 MEDIA DRIVER
11586 M:      Antti Palosaari <[email protected]>
11587 L:      [email protected]
11588 S:      Maintained
11589 W:      https://linuxtv.org
11590 W:      http://palosaari.fi/linux/
11591 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11592 T:      git git://linuxtv.org/anttip/media_tree.git
11593 F:      drivers/media/tuners/msi001*
11594
11595 MSI2500 MEDIA DRIVER
11596 M:      Antti Palosaari <[email protected]>
11597 L:      [email protected]
11598 S:      Maintained
11599 W:      https://linuxtv.org
11600 W:      http://palosaari.fi/linux/
11601 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11602 T:      git git://linuxtv.org/anttip/media_tree.git
11603 F:      drivers/media/usb/msi2500/
11604
11605 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11606 M:      Robert Jarzmik <[email protected]>
11607 L:      [email protected]
11608 S:      Maintained
11609 F:      drivers/mtd/devices/docg3*
11610
11611 MT9M032 APTINA SENSOR DRIVER
11612 M:      Laurent Pinchart <[email protected]>
11613 L:      [email protected]
11614 S:      Maintained
11615 T:      git git://linuxtv.org/media_tree.git
11616 F:      drivers/media/i2c/mt9m032.c
11617 F:      include/media/i2c/mt9m032.h
11618
11619 MT9P031 APTINA CAMERA SENSOR
11620 M:      Laurent Pinchart <[email protected]>
11621 L:      [email protected]
11622 S:      Maintained
11623 T:      git git://linuxtv.org/media_tree.git
11624 F:      drivers/media/i2c/mt9p031.c
11625 F:      include/media/i2c/mt9p031.h
11626
11627 MT9T001 APTINA CAMERA SENSOR
11628 M:      Laurent Pinchart <[email protected]>
11629 L:      [email protected]
11630 S:      Maintained
11631 T:      git git://linuxtv.org/media_tree.git
11632 F:      drivers/media/i2c/mt9t001.c
11633 F:      include/media/i2c/mt9t001.h
11634
11635 MT9T112 APTINA CAMERA SENSOR
11636 M:      Jacopo Mondi <[email protected]>
11637 L:      [email protected]
11638 S:      Odd Fixes
11639 T:      git git://linuxtv.org/media_tree.git
11640 F:      drivers/media/i2c/mt9t112.c
11641 F:      include/media/i2c/mt9t112.h
11642
11643 MT9V032 APTINA CAMERA SENSOR
11644 M:      Laurent Pinchart <[email protected]>
11645 L:      [email protected]
11646 S:      Maintained
11647 T:      git git://linuxtv.org/media_tree.git
11648 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11649 F:      drivers/media/i2c/mt9v032.c
11650 F:      include/media/i2c/mt9v032.h
11651
11652 MT9V111 APTINA CAMERA SENSOR
11653 M:      Jacopo Mondi <[email protected]>
11654 L:      [email protected]
11655 S:      Maintained
11656 T:      git git://linuxtv.org/media_tree.git
11657 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11658 F:      drivers/media/i2c/mt9v111.c
11659
11660 MULTIFUNCTION DEVICES (MFD)
11661 M:      Lee Jones <[email protected]>
11662 S:      Supported
11663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11664 F:      Documentation/devicetree/bindings/mfd/
11665 F:      drivers/mfd/
11666 F:      include/dt-bindings/mfd/
11667 F:      include/linux/mfd/
11668
11669 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11670 S:      Orphan
11671 F:      drivers/mmc/host/mmc_spi.c
11672 F:      include/linux/spi/mmc_spi.h
11673
11674 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11675 M:      Ulf Hansson <[email protected]>
11676 L:      [email protected]
11677 S:      Maintained
11678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11679 F:      Documentation/devicetree/bindings/mmc/
11680 F:      drivers/mmc/
11681 F:      include/linux/mmc/
11682 F:      include/uapi/linux/mmc/
11683
11684 MULTIPLEXER SUBSYSTEM
11685 M:      Peter Rosin <[email protected]>
11686 S:      Maintained
11687 F:      Documentation/ABI/testing/sysfs-class-mux*
11688 F:      Documentation/devicetree/bindings/mux/
11689 F:      drivers/mux/
11690 F:      include/dt-bindings/mux/
11691 F:      include/linux/mux/
11692
11693 MULTITECH MULTIPORT CARD (ISICOM)
11694 S:      Orphan
11695 F:      drivers/tty/isicom.c
11696 F:      include/linux/isicom.h
11697
11698 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11699 M:      Bin Liu <[email protected]>
11700 L:      [email protected]
11701 S:      Maintained
11702 F:      drivers/usb/musb/
11703
11704 MXL301RF MEDIA DRIVER
11705 M:      Akihiro Tsukada <[email protected]>
11706 L:      [email protected]
11707 S:      Odd Fixes
11708 F:      drivers/media/tuners/mxl301rf*
11709
11710 MXL5007T MEDIA DRIVER
11711 M:      Michael Krufky <[email protected]>
11712 L:      [email protected]
11713 S:      Maintained
11714 W:      https://linuxtv.org
11715 W:      http://github.com/mkrufky
11716 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11717 T:      git git://linuxtv.org/mkrufky/tuners.git
11718 F:      drivers/media/tuners/mxl5007t.*
11719
11720 MXSFB DRM DRIVER
11721 M:      Marek Vasut <[email protected]>
11722 M:      Stefan Agner <[email protected]>
11723 L:      [email protected]
11724 S:      Supported
11725 T:      git git://anongit.freedesktop.org/drm/drm-misc
11726 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11727 F:      drivers/gpu/drm/mxsfb/
11728
11729 MYLEX DAC960 PCI RAID Controller
11730 M:      Hannes Reinecke <[email protected]>
11731 L:      [email protected]
11732 S:      Supported
11733 F:      drivers/scsi/myrb.*
11734 F:      drivers/scsi/myrs.*
11735
11736 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11737 M:      Chris Lee <[email protected]>
11738 L:      [email protected]
11739 S:      Supported
11740 W:      https://www.cspi.com/ethernet-products/support/downloads/
11741 F:      drivers/net/ethernet/myricom/myri10ge/
11742
11743 NAND FLASH SUBSYSTEM
11744 M:      Miquel Raynal <[email protected]>
11745 R:      Richard Weinberger <[email protected]>
11746 L:      [email protected]
11747 S:      Maintained
11748 W:      http://www.linux-mtd.infradead.org/
11749 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11750 C:      irc://irc.oftc.net/mtd
11751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11752 F:      drivers/mtd/nand/
11753 F:      include/linux/mtd/*nand*.h
11754
11755 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11756 M:      Daniel Mack <[email protected]>
11757 L:      [email protected] (moderated for non-subscribers)
11758 S:      Maintained
11759 W:      http://www.native-instruments.com
11760 F:      sound/usb/caiaq/
11761
11762 NATSEMI ETHERNET DRIVER (DP8381x)
11763 S:      Orphan
11764 F:      drivers/net/ethernet/natsemi/natsemi.c
11765
11766 NCR 5380 SCSI DRIVERS
11767 M:      Finn Thain <[email protected]>
11768 M:      Michael Schmitz <[email protected]>
11769 L:      [email protected]
11770 S:      Maintained
11771 F:      Documentation/scsi/g_NCR5380.rst
11772 F:      drivers/scsi/NCR5380.*
11773 F:      drivers/scsi/arm/cumana_1.c
11774 F:      drivers/scsi/arm/oak.c
11775 F:      drivers/scsi/atari_scsi.*
11776 F:      drivers/scsi/dmx3191d.c
11777 F:      drivers/scsi/g_NCR5380.*
11778 F:      drivers/scsi/mac_scsi.*
11779 F:      drivers/scsi/sun3_scsi.*
11780 F:      drivers/scsi/sun3_scsi_vme.c
11781
11782 NCSI LIBRARY
11783 M:      Samuel Mendoza-Jonas <[email protected]>
11784 S:      Maintained
11785 F:      net/ncsi/
11786
11787 NCT6775 HARDWARE MONITOR DRIVER
11788 M:      Guenter Roeck <[email protected]>
11789 L:      [email protected]
11790 S:      Maintained
11791 F:      Documentation/hwmon/nct6775.rst
11792 F:      drivers/hwmon/nct6775.c
11793
11794 NETDEVSIM
11795 M:      Jakub Kicinski <[email protected]>
11796 S:      Maintained
11797 F:      drivers/net/netdevsim/*
11798
11799 NETEM NETWORK EMULATOR
11800 M:      Stephen Hemminger <[email protected]>
11801 L:      [email protected]
11802 S:      Maintained
11803 F:      net/sched/sch_netem.c
11804
11805 NETERION 10GbE DRIVERS (s2io/vxge)
11806 M:      Jon Mason <[email protected]>
11807 L:      [email protected]
11808 S:      Supported
11809 F:      Documentation/networking/device_drivers/neterion/s2io.rst
11810 F:      Documentation/networking/device_drivers/neterion/vxge.rst
11811 F:      drivers/net/ethernet/neterion/
11812
11813 NETFILTER
11814 M:      Pablo Neira Ayuso <[email protected]>
11815 M:      Jozsef Kadlecsik <[email protected]>
11816 M:      Florian Westphal <[email protected]>
11817 L:      [email protected]
11818 L:      [email protected]
11819 S:      Maintained
11820 W:      http://www.netfilter.org/
11821 W:      http://www.iptables.org/
11822 W:      http://www.nftables.org/
11823 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11826 F:      include/linux/netfilter*
11827 F:      include/linux/netfilter/
11828 F:      include/net/netfilter/
11829 F:      include/uapi/linux/netfilter*
11830 F:      include/uapi/linux/netfilter/
11831 F:      net/*/netfilter.c
11832 F:      net/*/netfilter/
11833 F:      net/bridge/br_netfilter*.c
11834 F:      net/netfilter/
11835
11836 NETROM NETWORK LAYER
11837 M:      Ralf Baechle <[email protected]>
11838 L:      [email protected]
11839 S:      Maintained
11840 W:      http://www.linux-ax25.org/
11841 F:      include/net/netrom.h
11842 F:      include/uapi/linux/netrom.h
11843 F:      net/netrom/
11844
11845 NETRONOME ETHERNET DRIVERS
11846 M:      Jakub Kicinski <[email protected]>
11847 L:      [email protected]
11848 S:      Maintained
11849 F:      drivers/net/ethernet/netronome/
11850
11851 NETWORK BLOCK DEVICE (NBD)
11852 M:      Josef Bacik <[email protected]>
11853 L:      [email protected]
11854 L:      [email protected]
11855 S:      Maintained
11856 F:      Documentation/admin-guide/blockdev/nbd.rst
11857 F:      drivers/block/nbd.c
11858 F:      include/trace/events/nbd.h
11859 F:      include/uapi/linux/nbd.h
11860
11861 NETWORK DROP MONITOR
11862 M:      Neil Horman <[email protected]>
11863 L:      [email protected]
11864 S:      Maintained
11865 W:      https://fedorahosted.org/dropwatch/
11866 F:      include/net/drop_monitor.h
11867 F:      include/uapi/linux/net_dropmon.h
11868 F:      net/core/drop_monitor.c
11869
11870 NETWORKING DRIVERS
11871 M:      "David S. Miller" <[email protected]>
11872 M:      Jakub Kicinski <[email protected]>
11873 L:      [email protected]
11874 S:      Maintained
11875 W:      http://www.linuxfoundation.org/en/Net
11876 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11879 F:      Documentation/devicetree/bindings/net/
11880 F:      drivers/net/
11881 F:      include/linux/etherdevice.h
11882 F:      include/linux/fcdevice.h
11883 F:      include/linux/fddidevice.h
11884 F:      include/linux/hippidevice.h
11885 F:      include/linux/if_*
11886 F:      include/linux/inetdevice.h
11887 F:      include/linux/netdevice.h
11888 F:      include/uapi/linux/if_*
11889 F:      include/uapi/linux/netdevice.h
11890
11891 NETWORKING DRIVERS (WIRELESS)
11892 M:      Kalle Valo <[email protected]>
11893 L:      [email protected]
11894 S:      Maintained
11895 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11898 F:      Documentation/devicetree/bindings/net/wireless/
11899 F:      drivers/net/wireless/
11900
11901 NETWORKING [DSA]
11902 M:      Andrew Lunn <[email protected]>
11903 M:      Vivien Didelot <[email protected]>
11904 M:      Florian Fainelli <[email protected]>
11905 S:      Maintained
11906 F:      Documentation/devicetree/bindings/net/dsa/
11907 F:      drivers/net/dsa/
11908 F:      include/linux/dsa/
11909 F:      include/linux/platform_data/dsa.h
11910 F:      include/net/dsa.h
11911 F:      net/dsa/
11912
11913 NETWORKING [GENERAL]
11914 M:      "David S. Miller" <[email protected]>
11915 M:      Jakub Kicinski <[email protected]>
11916 L:      [email protected]
11917 S:      Maintained
11918 W:      http://www.linuxfoundation.org/en/Net
11919 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11920 B:      mailto:[email protected]
11921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11923 F:      Documentation/networking/
11924 F:      include/linux/in.h
11925 F:      include/linux/net.h
11926 F:      include/linux/netdevice.h
11927 F:      include/net/
11928 F:      include/uapi/linux/in.h
11929 F:      include/uapi/linux/net.h
11930 F:      include/uapi/linux/net_namespace.h
11931 F:      include/uapi/linux/netdevice.h
11932 F:      lib/net_utils.c
11933 F:      lib/random32.c
11934 F:      net/
11935 F:      tools/testing/selftests/net/
11936
11937 NETWORKING [IPSEC]
11938 M:      Steffen Klassert <[email protected]>
11939 M:      Herbert Xu <[email protected]>
11940 M:      "David S. Miller" <[email protected]>
11941 L:      [email protected]
11942 S:      Maintained
11943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11945 F:      include/net/xfrm.h
11946 F:      include/uapi/linux/xfrm.h
11947 F:      net/ipv4/ah4.c
11948 F:      net/ipv4/esp4*
11949 F:      net/ipv4/ip_vti.c
11950 F:      net/ipv4/ipcomp.c
11951 F:      net/ipv4/xfrm*
11952 F:      net/ipv6/ah6.c
11953 F:      net/ipv6/esp6*
11954 F:      net/ipv6/ip6_vti.c
11955 F:      net/ipv6/ipcomp6.c
11956 F:      net/ipv6/xfrm*
11957 F:      net/key/
11958 F:      net/xfrm/
11959
11960 NETWORKING [IPv4/IPv6]
11961 M:      "David S. Miller" <[email protected]>
11962 M:      Alexey Kuznetsov <[email protected]>
11963 M:      Hideaki YOSHIFUJI <[email protected]>
11964 L:      [email protected]
11965 S:      Maintained
11966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11967 F:      arch/x86/net/*
11968 F:      include/net/ip*
11969 F:      net/ipv4/
11970 F:      net/ipv6/
11971
11972 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11973 M:      Paul Moore <[email protected]>
11974 L:      [email protected]
11975 L:      [email protected]
11976 S:      Maintained
11977 W:      https://github.com/netlabel
11978 F:      Documentation/netlabel/
11979 F:      include/net/calipso.h
11980 F:      include/net/cipso_ipv4.h
11981 F:      include/net/netlabel.h
11982 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11983 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11984 F:      net/ipv4/cipso_ipv4.c
11985 F:      net/ipv6/calipso.c
11986 F:      net/netfilter/xt_CONNSECMARK.c
11987 F:      net/netfilter/xt_SECMARK.c
11988 F:      net/netlabel/
11989
11990 NETWORKING [MPTCP]
11991 M:      Mat Martineau <[email protected]>
11992 M:      Matthieu Baerts <[email protected]>
11993 L:      [email protected]
11994 L:      [email protected]
11995 S:      Maintained
11996 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
11997 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
11998 F:      include/net/mptcp.h
11999 F:      include/uapi/linux/mptcp.h
12000 F:      net/mptcp/
12001 F:      tools/testing/selftests/net/mptcp/
12002
12003 NETWORKING [TCP]
12004 M:      Eric Dumazet <[email protected]>
12005 L:      [email protected]
12006 S:      Maintained
12007 F:      include/linux/tcp.h
12008 F:      include/net/tcp.h
12009 F:      include/trace/events/tcp.h
12010 F:      include/uapi/linux/tcp.h
12011 F:      net/ipv4/syncookies.c
12012 F:      net/ipv4/tcp*.c
12013 F:      net/ipv6/syncookies.c
12014 F:      net/ipv6/tcp*.c
12015
12016 NETWORKING [TLS]
12017 M:      Boris Pismenny <[email protected]>
12018 M:      Aviad Yehezkel <[email protected]>
12019 M:      John Fastabend <[email protected]>
12020 M:      Daniel Borkmann <[email protected]>
12021 M:      Jakub Kicinski <[email protected]>
12022 L:      [email protected]
12023 S:      Maintained
12024 F:      include/net/tls.h
12025 F:      include/uapi/linux/tls.h
12026 F:      net/tls/*
12027
12028 NETWORKING [WIRELESS]
12029 L:      [email protected]
12030 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12031
12032 NETXEN (1/10) GbE SUPPORT
12033 M:      Manish Chopra <[email protected]>
12034 M:      Rahul Verma <[email protected]>
12035 M:      [email protected]
12036 L:      [email protected]
12037 S:      Supported
12038 F:      drivers/net/ethernet/qlogic/netxen/
12039
12040 NET_FAILOVER MODULE
12041 M:      Sridhar Samudrala <[email protected]>
12042 L:      [email protected]
12043 S:      Supported
12044 F:      Documentation/networking/net_failover.rst
12045 F:      drivers/net/net_failover.c
12046 F:      include/net/net_failover.h
12047
12048 NEXTHOP
12049 M:      David Ahern <[email protected]>
12050 L:      [email protected]
12051 S:      Maintained
12052 F:      include/net/netns/nexthop.h
12053 F:      include/net/nexthop.h
12054 F:      include/uapi/linux/nexthop.h
12055 F:      net/ipv4/nexthop.c
12056
12057 NFC SUBSYSTEM
12058 L:      [email protected]
12059 S:      Orphan
12060 F:      Documentation/devicetree/bindings/net/nfc/
12061 F:      drivers/nfc/
12062 F:      include/linux/platform_data/nfcmrvl.h
12063 F:      include/net/nfc/
12064 F:      include/uapi/linux/nfc.h
12065 F:      net/nfc/
12066
12067 NFS, SUNRPC, AND LOCKD CLIENTS
12068 M:      Trond Myklebust <[email protected]>
12069 M:      Anna Schumaker <[email protected]>
12070 L:      [email protected]
12071 S:      Maintained
12072 W:      http://client.linux-nfs.org
12073 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12074 F:      fs/lockd/
12075 F:      fs/nfs/
12076 F:      fs/nfs_common/
12077 F:      include/linux/lockd/
12078 F:      include/linux/nfs*
12079 F:      include/linux/sunrpc/
12080 F:      include/uapi/linux/nfs*
12081 F:      include/uapi/linux/sunrpc/
12082 F:      net/sunrpc/
12083
12084 NILFS2 FILESYSTEM
12085 M:      Ryusuke Konishi <[email protected]>
12086 L:      [email protected]
12087 S:      Supported
12088 W:      https://nilfs.sourceforge.io/
12089 W:      https://nilfs.osdn.jp/
12090 T:      git git://github.com/konis/nilfs2.git
12091 F:      Documentation/filesystems/nilfs2.rst
12092 F:      fs/nilfs2/
12093 F:      include/trace/events/nilfs2.h
12094 F:      include/uapi/linux/nilfs2_api.h
12095 F:      include/uapi/linux/nilfs2_ondisk.h
12096
12097 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12098 M:      YOKOTA Hiroshi <[email protected]>
12099 S:      Maintained
12100 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12101 F:      Documentation/scsi/NinjaSCSI.rst
12102 F:      drivers/scsi/pcmcia/nsp_*
12103
12104 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12105 M:      GOTO Masanori <[email protected]>
12106 M:      YOKOTA Hiroshi <[email protected]>
12107 S:      Maintained
12108 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12109 F:      Documentation/scsi/NinjaSCSI.rst
12110 F:      drivers/scsi/nsp32*
12111
12112 NIOS2 ARCHITECTURE
12113 M:      Ley Foon Tan <[email protected]>
12114 S:      Maintained
12115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12116 F:      arch/nios2/
12117
12118 NOHZ, DYNTICKS SUPPORT
12119 M:      Frederic Weisbecker <[email protected]>
12120 M:      Thomas Gleixner <[email protected]>
12121 M:      Ingo Molnar <[email protected]>
12122 L:      [email protected]
12123 S:      Maintained
12124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12125 F:      include/linux/sched/nohz.h
12126 F:      include/linux/tick.h
12127 F:      kernel/time/tick*.*
12128
12129 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12130 M:      Pavel Machek <[email protected]>
12131 M:      Sakari Ailus <[email protected]>
12132 L:      [email protected]
12133 S:      Maintained
12134 F:      drivers/media/i2c/ad5820.c
12135 F:      drivers/media/i2c/et8ek8
12136
12137 NOKIA N900 POWER SUPPLY DRIVERS
12138 R:      Pali Rohár <[email protected]>
12139 F:      drivers/power/supply/bq2415x_charger.c
12140 F:      drivers/power/supply/bq27xxx_battery.c
12141 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12142 F:      drivers/power/supply/isp1704_charger.c
12143 F:      drivers/power/supply/rx51_battery.c
12144 F:      include/linux/power/bq2415x_charger.h
12145 F:      include/linux/power/bq27xxx_battery.h
12146
12147 NOLIBC HEADER FILE
12148 M:      Willy Tarreau <[email protected]>
12149 S:      Maintained
12150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12151 F:      tools/include/nolibc/
12152
12153 NSDEPS
12154 M:      Matthias Maennich <[email protected]>
12155 S:      Maintained
12156 F:      Documentation/core-api/symbol-namespaces.rst
12157 F:      scripts/nsdeps
12158
12159 NTB AMD DRIVER
12160 M:      Sanjay R Mehta <[email protected]>
12161 M:      Shyam Sundar S K <[email protected]>
12162 L:      [email protected]
12163 S:      Supported
12164 F:      drivers/ntb/hw/amd/
12165
12166 NTB DRIVER CORE
12167 M:      Jon Mason <[email protected]>
12168 M:      Dave Jiang <[email protected]>
12169 M:      Allen Hubbe <[email protected]>
12170 L:      [email protected]
12171 S:      Supported
12172 W:      https://github.com/jonmason/ntb/wiki
12173 T:      git git://github.com/jonmason/ntb.git
12174 F:      drivers/net/ntb_netdev.c
12175 F:      drivers/ntb/
12176 F:      include/linux/ntb.h
12177 F:      include/linux/ntb_transport.h
12178 F:      tools/testing/selftests/ntb/
12179
12180 NTB IDT DRIVER
12181 M:      Serge Semin <[email protected]>
12182 L:      [email protected]
12183 S:      Supported
12184 F:      drivers/ntb/hw/idt/
12185
12186 NTB INTEL DRIVER
12187 M:      Dave Jiang <[email protected]>
12188 L:      [email protected]
12189 S:      Supported
12190 W:      https://github.com/davejiang/linux/wiki
12191 T:      git https://github.com/davejiang/linux.git
12192 F:      drivers/ntb/hw/intel/
12193
12194 NTFS FILESYSTEM
12195 M:      Anton Altaparmakov <[email protected]>
12196 L:      [email protected]
12197 S:      Supported
12198 W:      http://www.tuxera.com/
12199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12200 F:      Documentation/filesystems/ntfs.rst
12201 F:      fs/ntfs/
12202
12203 NUBUS SUBSYSTEM
12204 M:      Finn Thain <[email protected]>
12205 L:      [email protected]
12206 S:      Maintained
12207 F:      arch/*/include/asm/nubus.h
12208 F:      drivers/nubus/
12209 F:      include/linux/nubus.h
12210 F:      include/uapi/linux/nubus.h
12211
12212 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12213 M:      Antonino Daplas <[email protected]>
12214 L:      [email protected]
12215 S:      Maintained
12216 F:      drivers/video/fbdev/nvidia/
12217 F:      drivers/video/fbdev/riva/
12218
12219 NVM EXPRESS DRIVER
12220 M:      Keith Busch <[email protected]>
12221 M:      Jens Axboe <[email protected]>
12222 M:      Christoph Hellwig <[email protected]>
12223 M:      Sagi Grimberg <[email protected]>
12224 L:      [email protected]
12225 S:      Supported
12226 W:      http://git.infradead.org/nvme.git
12227 T:      git://git.infradead.org/nvme.git
12228 F:      drivers/nvme/host/
12229 F:      include/linux/nvme.h
12230 F:      include/uapi/linux/nvme_ioctl.h
12231
12232 NVM EXPRESS FC TRANSPORT DRIVERS
12233 M:      James Smart <[email protected]>
12234 L:      [email protected]
12235 S:      Supported
12236 F:      drivers/nvme/host/fc.c
12237 F:      drivers/nvme/target/fc.c
12238 F:      drivers/nvme/target/fcloop.c
12239 F:      include/linux/nvme-fc-driver.h
12240 F:      include/linux/nvme-fc.h
12241
12242 NVM EXPRESS TARGET DRIVER
12243 M:      Christoph Hellwig <[email protected]>
12244 M:      Sagi Grimberg <[email protected]>
12245 M:      Chaitanya Kulkarni <[email protected]>
12246 L:      [email protected]
12247 S:      Supported
12248 W:      http://git.infradead.org/nvme.git
12249 T:      git://git.infradead.org/nvme.git
12250 F:      drivers/nvme/target/
12251
12252 NVMEM FRAMEWORK
12253 M:      Srinivas Kandagatla <[email protected]>
12254 S:      Maintained
12255 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12256 F:      Documentation/devicetree/bindings/nvmem/
12257 F:      drivers/nvmem/
12258 F:      include/linux/nvmem-consumer.h
12259 F:      include/linux/nvmem-provider.h
12260
12261 NXP FSPI DRIVER
12262 M:      Ashish Kumar <[email protected]>
12263 R:      Yogesh Gaur <[email protected]>
12264 L:      [email protected]
12265 S:      Maintained
12266 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12267 F:      drivers/spi/spi-nxp-fspi.c
12268
12269 NXP FXAS21002C DRIVER
12270 M:      Rui Miguel Silva <[email protected]>
12271 L:      [email protected]
12272 S:      Maintained
12273 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12274 F:      drivers/iio/gyro/fxas21002c.h
12275 F:      drivers/iio/gyro/fxas21002c_core.c
12276 F:      drivers/iio/gyro/fxas21002c_i2c.c
12277 F:      drivers/iio/gyro/fxas21002c_spi.c
12278
12279 NXP SGTL5000 DRIVER
12280 M:      Fabio Estevam <[email protected]>
12281 L:      [email protected] (moderated for non-subscribers)
12282 S:      Maintained
12283 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12284 F:      sound/soc/codecs/sgtl5000*
12285
12286 NXP SJA1105 ETHERNET SWITCH DRIVER
12287 M:      Vladimir Oltean <[email protected]>
12288 L:      [email protected]
12289 S:      Maintained
12290 F:      drivers/net/dsa/sja1105
12291
12292 NXP TDA998X DRM DRIVER
12293 M:      Russell King <[email protected]>
12294 S:      Maintained
12295 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12296 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12297 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12298 F:      include/drm/i2c/tda998x.h
12299 F:      include/dt-bindings/display/tda998x.h
12300 K:      "nxp,tda998x"
12301
12302 NXP TFA9879 DRIVER
12303 M:      Peter Rosin <[email protected]>
12304 L:      [email protected] (moderated for non-subscribers)
12305 S:      Maintained
12306 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12307 F:      sound/soc/codecs/tfa9879*
12308
12309 NXP-NCI NFC DRIVER
12310 M:      Clément Perrochaud <[email protected]>
12311 R:      Charles Gorand <[email protected]>
12312 L:      [email protected] (moderated for non-subscribers)
12313 S:      Supported
12314 F:      drivers/nfc/nxp-nci
12315
12316 OBJAGG
12317 M:      Jiri Pirko <[email protected]>
12318 L:      [email protected]
12319 S:      Supported
12320 F:      include/linux/objagg.h
12321 F:      lib/objagg.c
12322 F:      lib/test_objagg.c
12323
12324 OBJTOOL
12325 M:      Josh Poimboeuf <[email protected]>
12326 M:      Peter Zijlstra <[email protected]>
12327 S:      Supported
12328 F:      tools/objtool/
12329
12330 OCELOT ETHERNET SWITCH DRIVER
12331 M:      Microchip Linux Driver Support <[email protected]>
12332 M:      Vladimir Oltean <[email protected]>
12333 M:      Claudiu Manoil <[email protected]>
12334 M:      Alexandre Belloni <[email protected]>
12335 L:      [email protected]
12336 S:      Supported
12337 F:      drivers/net/dsa/ocelot/*
12338 F:      drivers/net/ethernet/mscc/
12339 F:      include/soc/mscc/ocelot*
12340 F:      net/dsa/tag_ocelot.c
12341
12342 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12343 M:      Frederic Barrat <[email protected]>
12344 M:      Andrew Donnellan <[email protected]>
12345 L:      [email protected]
12346 S:      Supported
12347 F:      Documentation/userspace-api/accelerators/ocxl.rst
12348 F:      arch/powerpc/include/asm/pnv-ocxl.h
12349 F:      arch/powerpc/platforms/powernv/ocxl.c
12350 F:      drivers/misc/ocxl/
12351 F:      include/misc/ocxl*
12352 F:      include/uapi/misc/ocxl.h
12353
12354 OMAP AUDIO SUPPORT
12355 M:      Peter Ujfalusi <[email protected]>
12356 M:      Jarkko Nikula <[email protected]>
12357 L:      [email protected] (moderated for non-subscribers)
12358 L:      [email protected]
12359 S:      Maintained
12360 F:      sound/soc/ti/n810.c
12361 F:      sound/soc/ti/omap*
12362 F:      sound/soc/ti/rx51.c
12363 F:      sound/soc/ti/sdma-pcm.*
12364
12365 OMAP CLOCK FRAMEWORK SUPPORT
12366 M:      Paul Walmsley <[email protected]>
12367 L:      [email protected]
12368 S:      Maintained
12369 F:      arch/arm/*omap*/*clock*
12370
12371 OMAP DEVICE TREE SUPPORT
12372 M:      Benoît Cousson <[email protected]>
12373 M:      Tony Lindgren <[email protected]>
12374 L:      [email protected]
12375 L:      [email protected]
12376 S:      Maintained
12377 F:      arch/arm/boot/dts/*am3*
12378 F:      arch/arm/boot/dts/*am4*
12379 F:      arch/arm/boot/dts/*am5*
12380 F:      arch/arm/boot/dts/*dra7*
12381 F:      arch/arm/boot/dts/*omap*
12382 F:      arch/arm/boot/dts/logicpd-som-lv*
12383 F:      arch/arm/boot/dts/logicpd-torpedo*
12384
12385 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12386 L:      [email protected]
12387 L:      [email protected]
12388 S:      Orphan
12389 F:      Documentation/arm/omap/dss.rst
12390 F:      drivers/video/fbdev/omap2/
12391
12392 OMAP FRAMEBUFFER SUPPORT
12393 L:      [email protected]
12394 L:      [email protected]
12395 S:      Orphan
12396 F:      drivers/video/fbdev/omap/
12397
12398 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12399 M:      Roger Quadros <[email protected]>
12400 M:      Tony Lindgren <[email protected]>
12401 L:      [email protected]
12402 S:      Maintained
12403 F:      arch/arm/mach-omap2/*gpmc*
12404 F:      drivers/memory/omap-gpmc.c
12405
12406 OMAP GPIO DRIVER
12407 M:      Grygorii Strashko <[email protected]>
12408 M:      Santosh Shilimkar <[email protected]>
12409 M:      Kevin Hilman <[email protected]>
12410 L:      [email protected]
12411 S:      Maintained
12412 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12413 F:      drivers/gpio/gpio-omap.c
12414
12415 OMAP HARDWARE SPINLOCK SUPPORT
12416 M:      Ohad Ben-Cohen <[email protected]>
12417 L:      [email protected]
12418 S:      Maintained
12419 F:      drivers/hwspinlock/omap_hwspinlock.c
12420
12421 OMAP HS MMC SUPPORT
12422 L:      [email protected]
12423 L:      [email protected]
12424 S:      Orphan
12425 F:      drivers/mmc/host/omap_hsmmc.c
12426
12427 OMAP HWMOD DATA
12428 M:      Paul Walmsley <[email protected]>
12429 L:      [email protected]
12430 S:      Maintained
12431 F:      arch/arm/mach-omap2/omap_hwmod*data*
12432
12433 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12434 M:      Benoît Cousson <[email protected]>
12435 L:      [email protected]
12436 S:      Maintained
12437 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12438
12439 OMAP HWMOD SUPPORT
12440 M:      Benoît Cousson <[email protected]>
12441 M:      Paul Walmsley <[email protected]>
12442 L:      [email protected]
12443 S:      Maintained
12444 F:      arch/arm/mach-omap2/omap_hwmod.*
12445
12446 OMAP I2C DRIVER
12447 M:      Vignesh R <[email protected]>
12448 L:      [email protected]
12449 L:      [email protected]
12450 S:      Maintained
12451 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12452 F:      drivers/i2c/busses/i2c-omap.c
12453
12454 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12455 M:      Laurent Pinchart <[email protected]>
12456 L:      [email protected]
12457 S:      Maintained
12458 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12459 F:      drivers/media/platform/omap3isp/
12460 F:      drivers/staging/media/omap4iss/
12461
12462 OMAP MMC SUPPORT
12463 M:      Aaro Koskinen <[email protected]>
12464 L:      [email protected]
12465 S:      Odd Fixes
12466 F:      drivers/mmc/host/omap.c
12467
12468 OMAP POWER MANAGEMENT SUPPORT
12469 M:      Kevin Hilman <[email protected]>
12470 L:      [email protected]
12471 S:      Maintained
12472 F:      arch/arm/*omap*/*pm*
12473 F:      drivers/cpufreq/omap-cpufreq.c
12474
12475 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12476 M:      Rajendra Nayak <[email protected]>
12477 M:      Paul Walmsley <[email protected]>
12478 L:      [email protected]
12479 S:      Maintained
12480 F:      arch/arm/mach-omap2/prm*
12481
12482 OMAP RANDOM NUMBER GENERATOR SUPPORT
12483 M:      Deepak Saxena <[email protected]>
12484 S:      Maintained
12485 F:      drivers/char/hw_random/omap-rng.c
12486
12487 OMAP USB SUPPORT
12488 L:      [email protected]
12489 L:      [email protected]
12490 S:      Orphan
12491 F:      arch/arm/*omap*/usb*
12492 F:      drivers/usb/*/*omap*
12493
12494 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12495 M:      Mark Jackson <[email protected]>
12496 L:      [email protected]
12497 S:      Maintained
12498 F:      arch/arm/boot/dts/am335x-nano.dts
12499
12500 OMAP1 SUPPORT
12501 M:      Aaro Koskinen <[email protected]>
12502 M:      Tony Lindgren <[email protected]>
12503 L:      [email protected]
12504 S:      Maintained
12505 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12507 F:      arch/arm/configs/omap1_defconfig
12508 F:      arch/arm/mach-omap1/
12509 F:      arch/arm/plat-omap/
12510 F:      drivers/i2c/busses/i2c-omap.c
12511 F:      include/linux/platform_data/ams-delta-fiq.h
12512 F:      include/linux/platform_data/i2c-omap.h
12513
12514 OMAP2+ SUPPORT
12515 M:      Tony Lindgren <[email protected]>
12516 L:      [email protected]
12517 S:      Maintained
12518 W:      http://www.muru.com/linux/omap/
12519 W:      http://linux.omap.com/
12520 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12522 F:      arch/arm/configs/omap2plus_defconfig
12523 F:      arch/arm/mach-omap2/
12524 F:      arch/arm/plat-omap/
12525 F:      drivers/bus/ti-sysc.c
12526 F:      drivers/i2c/busses/i2c-omap.c
12527 F:      drivers/irqchip/irq-omap-intc.c
12528 F:      drivers/mfd/*omap*.c
12529 F:      drivers/mfd/menelaus.c
12530 F:      drivers/mfd/palmas.c
12531 F:      drivers/mfd/tps65217.c
12532 F:      drivers/mfd/tps65218.c
12533 F:      drivers/mfd/tps65910.c
12534 F:      drivers/mfd/twl-core.[ch]
12535 F:      drivers/mfd/twl4030*.c
12536 F:      drivers/mfd/twl6030*.c
12537 F:      drivers/mfd/twl6040*.c
12538 F:      drivers/regulator/palmas-regulator*.c
12539 F:      drivers/regulator/pbias-regulator.c
12540 F:      drivers/regulator/tps65217-regulator.c
12541 F:      drivers/regulator/tps65218-regulator.c
12542 F:      drivers/regulator/tps65910-regulator.c
12543 F:      drivers/regulator/twl-regulator.c
12544 F:      drivers/regulator/twl6030-regulator.c
12545 F:      include/linux/platform_data/i2c-omap.h
12546 F:      include/linux/platform_data/ti-sysc.h
12547
12548 OMFS FILESYSTEM
12549 M:      Bob Copeland <[email protected]>
12550 L:      [email protected]
12551 S:      Maintained
12552 F:      Documentation/filesystems/omfs.rst
12553 F:      fs/omfs/
12554
12555 OMNIKEY CARDMAN 4000 DRIVER
12556 M:      Harald Welte <[email protected]>
12557 S:      Maintained
12558 F:      drivers/char/pcmcia/cm4000_cs.c
12559 F:      include/linux/cm4000_cs.h
12560 F:      include/uapi/linux/cm4000_cs.h
12561
12562 OMNIKEY CARDMAN 4040 DRIVER
12563 M:      Harald Welte <[email protected]>
12564 S:      Maintained
12565 F:      drivers/char/pcmcia/cm4040_cs.*
12566
12567 OMNIVISION OV13858 SENSOR DRIVER
12568 M:      Sakari Ailus <[email protected]>
12569 L:      [email protected]
12570 S:      Maintained
12571 T:      git git://linuxtv.org/media_tree.git
12572 F:      drivers/media/i2c/ov13858.c
12573
12574 OMNIVISION OV2680 SENSOR DRIVER
12575 M:      Rui Miguel Silva <[email protected]>
12576 L:      [email protected]
12577 S:      Maintained
12578 T:      git git://linuxtv.org/media_tree.git
12579 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12580 F:      drivers/media/i2c/ov2680.c
12581
12582 OMNIVISION OV2685 SENSOR DRIVER
12583 M:      Shunqian Zheng <[email protected]>
12584 L:      [email protected]
12585 S:      Maintained
12586 T:      git git://linuxtv.org/media_tree.git
12587 F:      drivers/media/i2c/ov2685.c
12588
12589 OMNIVISION OV2740 SENSOR DRIVER
12590 M:      Tianshu Qiu <[email protected]>
12591 R:      Shawn Tu <[email protected]>
12592 R:      Bingbu Cao <[email protected]>
12593 L:      [email protected]
12594 S:      Maintained
12595 T:      git git://linuxtv.org/media_tree.git
12596 F:      drivers/media/i2c/ov2740.c
12597
12598 OMNIVISION OV5640 SENSOR DRIVER
12599 M:      Steve Longerbeam <[email protected]>
12600 L:      [email protected]
12601 S:      Maintained
12602 T:      git git://linuxtv.org/media_tree.git
12603 F:      drivers/media/i2c/ov5640.c
12604
12605 OMNIVISION OV5647 SENSOR DRIVER
12606 M:      Luis Oliveira <[email protected]>
12607 L:      [email protected]
12608 S:      Maintained
12609 T:      git git://linuxtv.org/media_tree.git
12610 F:      drivers/media/i2c/ov5647.c
12611
12612 OMNIVISION OV5670 SENSOR DRIVER
12613 M:      Chiranjeevi Rapolu <[email protected]>
12614 M:      Hyungwoo Yang <[email protected]>
12615 L:      [email protected]
12616 S:      Maintained
12617 T:      git git://linuxtv.org/media_tree.git
12618 F:      drivers/media/i2c/ov5670.c
12619
12620 OMNIVISION OV5675 SENSOR DRIVER
12621 M:      Shawn Tu <[email protected]>
12622 L:      [email protected]
12623 S:      Maintained
12624 T:      git git://linuxtv.org/media_tree.git
12625 F:      drivers/media/i2c/ov5675.c
12626
12627 OMNIVISION OV5695 SENSOR DRIVER
12628 M:      Shunqian Zheng <[email protected]>
12629 L:      [email protected]
12630 S:      Maintained
12631 T:      git git://linuxtv.org/media_tree.git
12632 F:      drivers/media/i2c/ov5695.c
12633
12634 OMNIVISION OV7670 SENSOR DRIVER
12635 M:      Jonathan Corbet <[email protected]>
12636 L:      [email protected]
12637 S:      Maintained
12638 T:      git git://linuxtv.org/media_tree.git
12639 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12640 F:      drivers/media/i2c/ov7670.c
12641
12642 OMNIVISION OV772x SENSOR DRIVER
12643 M:      Jacopo Mondi <[email protected]>
12644 L:      [email protected]
12645 S:      Odd fixes
12646 T:      git git://linuxtv.org/media_tree.git
12647 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12648 F:      drivers/media/i2c/ov772x.c
12649 F:      include/media/i2c/ov772x.h
12650
12651 OMNIVISION OV7740 SENSOR DRIVER
12652 M:      Wenyou Yang <[email protected]>
12653 L:      [email protected]
12654 S:      Maintained
12655 T:      git git://linuxtv.org/media_tree.git
12656 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12657 F:      drivers/media/i2c/ov7740.c
12658
12659 OMNIVISION OV8856 SENSOR DRIVER
12660 M:      Dongchun Zhu <[email protected]>
12661 L:      [email protected]
12662 S:      Maintained
12663 T:      git git://linuxtv.org/media_tree.git
12664 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
12665 F:      drivers/media/i2c/ov8856.c
12666
12667 OMNIVISION OV9640 SENSOR DRIVER
12668 M:      Petr Cvek <[email protected]>
12669 L:      [email protected]
12670 S:      Maintained
12671 F:      drivers/media/i2c/ov9640.*
12672
12673 OMNIVISION OV9650 SENSOR DRIVER
12674 M:      Sakari Ailus <[email protected]>
12675 R:      Akinobu Mita <[email protected]>
12676 R:      Sylwester Nawrocki <[email protected]>
12677 L:      [email protected]
12678 S:      Maintained
12679 T:      git git://linuxtv.org/media_tree.git
12680 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12681 F:      drivers/media/i2c/ov9650.c
12682
12683 ONENAND FLASH DRIVER
12684 M:      Kyungmin Park <[email protected]>
12685 L:      [email protected]
12686 S:      Maintained
12687 F:      drivers/mtd/nand/onenand/
12688 F:      include/linux/mtd/onenand*.h
12689
12690 ONION OMEGA2+ BOARD
12691 M:      Harvey Hunt <[email protected]>
12692 L:      [email protected]
12693 S:      Maintained
12694 F:      arch/mips/boot/dts/ralink/omega2p.dts
12695
12696 OP-TEE DRIVER
12697 M:      Jens Wiklander <[email protected]>
12698 L:      [email protected]
12699 S:      Maintained
12700 F:      drivers/tee/optee/
12701
12702 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12703 M:      Sumit Garg <[email protected]>
12704 L:      [email protected]
12705 S:      Maintained
12706 F:      drivers/char/hw_random/optee-rng.c
12707
12708 OPA-VNIC DRIVER
12709 M:      Dennis Dalessandro <[email protected]>
12710 M:      Niranjana Vishwanathapura <[email protected]>
12711 L:      [email protected]
12712 S:      Supported
12713 F:      drivers/infiniband/ulp/opa_vnic
12714
12715 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12716 M:      Pantelis Antoniou <[email protected]>
12717 M:      Frank Rowand <[email protected]>
12718 L:      [email protected]
12719 S:      Maintained
12720 F:      Documentation/devicetree/dynamic-resolution-notes.rst
12721 F:      Documentation/devicetree/overlay-notes.rst
12722 F:      drivers/of/overlay.c
12723 F:      drivers/of/resolver.c
12724 K:      of_overlay_notifier_
12725
12726 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12727 M:      Rob Herring <[email protected]>
12728 M:      Frank Rowand <[email protected]>
12729 L:      [email protected]
12730 S:      Maintained
12731 W:      http://www.devicetree.org/
12732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12733 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12734 F:      drivers/of/
12735 F:      include/linux/of*.h
12736 F:      scripts/dtc/
12737
12738 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12739 M:      Rob Herring <[email protected]>
12740 L:      [email protected]
12741 S:      Maintained
12742 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12744 F:      Documentation/devicetree/
12745 F:      arch/*/boot/dts/
12746 F:      include/dt-bindings/
12747
12748 OPENCORES I2C BUS DRIVER
12749 M:      Peter Korsgaard <[email protected]>
12750 M:      Andrew Lunn <[email protected]>
12751 L:      [email protected]
12752 S:      Maintained
12753 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12754 F:      Documentation/i2c/busses/i2c-ocores.rst
12755 F:      drivers/i2c/busses/i2c-ocores.c
12756 F:      include/linux/platform_data/i2c-ocores.h
12757
12758 OPENRISC ARCHITECTURE
12759 M:      Jonas Bonn <[email protected]>
12760 M:      Stefan Kristiansson <[email protected]>
12761 M:      Stafford Horne <[email protected]>
12762 L:      [email protected]
12763 S:      Maintained
12764 W:      http://openrisc.io
12765 T:      git git://github.com/openrisc/linux.git
12766 F:      Documentation/devicetree/bindings/openrisc/
12767 F:      Documentation/openrisc/
12768 F:      arch/openrisc/
12769 F:      drivers/irqchip/irq-ompic.c
12770 F:      drivers/irqchip/irq-or1k-*
12771
12772 OPENVSWITCH
12773 M:      Pravin B Shelar <[email protected]>
12774 L:      [email protected]
12775 L:      [email protected]
12776 S:      Maintained
12777 W:      http://openvswitch.org
12778 F:      include/uapi/linux/openvswitch.h
12779 F:      net/openvswitch/
12780
12781 OPERATING PERFORMANCE POINTS (OPP)
12782 M:      Viresh Kumar <[email protected]>
12783 M:      Nishanth Menon <[email protected]>
12784 M:      Stephen Boyd <[email protected]>
12785 L:      [email protected]
12786 S:      Maintained
12787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12788 F:      Documentation/devicetree/bindings/opp/
12789 F:      Documentation/power/opp.rst
12790 F:      drivers/opp/
12791 F:      include/linux/pm_opp.h
12792
12793 OPL4 DRIVER
12794 M:      Clemens Ladisch <[email protected]>
12795 L:      [email protected] (moderated for non-subscribers)
12796 S:      Maintained
12797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12798 F:      sound/drivers/opl4/
12799
12800 OPROFILE
12801 M:      Robert Richter <[email protected]>
12802 L:      [email protected]
12803 S:      Maintained
12804 F:      arch/*/include/asm/oprofile*.h
12805 F:      arch/*/oprofile/
12806 F:      drivers/oprofile/
12807 F:      include/linux/oprofile.h
12808
12809 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12810 M:      Mark Fasheh <[email protected]>
12811 M:      Joel Becker <[email protected]>
12812 M:      Joseph Qi <[email protected]>
12813 L:      [email protected] (moderated for non-subscribers)
12814 S:      Supported
12815 W:      http://ocfs2.wiki.kernel.org
12816 F:      Documentation/filesystems/dlmfs.rst
12817 F:      Documentation/filesystems/ocfs2.rst
12818 F:      fs/ocfs2/
12819
12820 ORANGEFS FILESYSTEM
12821 M:      Mike Marshall <[email protected]>
12822 R:      Martin Brandenburg <[email protected]>
12823 L:      [email protected]
12824 S:      Supported
12825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12826 F:      Documentation/filesystems/orangefs.rst
12827 F:      fs/orangefs/
12828
12829 ORINOCO DRIVER
12830 L:      [email protected]
12831 S:      Orphan
12832 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
12833 W:      http://www.nongnu.org/orinoco/
12834 F:      drivers/net/wireless/intersil/orinoco/
12835
12836 OV2659 OMNIVISION SENSOR DRIVER
12837 M:      "Lad, Prabhakar" <[email protected]>
12838 L:      [email protected]
12839 S:      Maintained
12840 W:      https://linuxtv.org
12841 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12842 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12843 F:      drivers/media/i2c/ov2659.c
12844 F:      include/media/i2c/ov2659.h
12845
12846 OVERLAY FILESYSTEM
12847 M:      Miklos Szeredi <[email protected]>
12848 L:      [email protected]
12849 S:      Supported
12850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12851 F:      Documentation/filesystems/overlayfs.rst
12852 F:      fs/overlayfs/
12853
12854 P54 WIRELESS DRIVER
12855 M:      Christian Lamparter <[email protected]>
12856 L:      [email protected]
12857 S:      Maintained
12858 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
12859 F:      drivers/net/wireless/intersil/p54/
12860
12861 PACKING
12862 M:      Vladimir Oltean <[email protected]>
12863 L:      [email protected]
12864 S:      Supported
12865 F:      Documentation/core-api/packing.rst
12866 F:      include/linux/packing.h
12867 F:      lib/packing.c
12868
12869 PADATA PARALLEL EXECUTION MECHANISM
12870 M:      Steffen Klassert <[email protected]>
12871 L:      [email protected]
12872 S:      Maintained
12873 F:      Documentation/core-api/padata.rst
12874 F:      include/linux/padata.h
12875 F:      kernel/padata.c
12876
12877 PAGE POOL
12878 M:      Jesper Dangaard Brouer <[email protected]>
12879 M:      Ilias Apalodimas <[email protected]>
12880 L:      [email protected]
12881 S:      Supported
12882 F:      include/net/page_pool.h
12883 F:      net/core/page_pool.c
12884
12885 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12886 M:      Harald Welte <[email protected]>
12887 L:      [email protected]
12888 S:      Maintained
12889 F:      drivers/platform/x86/panasonic-laptop.c
12890
12891 PARALLAX PING IIO SENSOR DRIVER
12892 M:      Andreas Klinger <[email protected]>
12893 L:      [email protected]
12894 S:      Maintained
12895 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12896 F:      drivers/iio/proximity/ping.c
12897
12898 PARALLEL LCD/KEYPAD PANEL DRIVER
12899 M:      Willy Tarreau <[email protected]>
12900 M:      Ksenija Stanojevic <[email protected]>
12901 S:      Odd Fixes
12902 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12903 F:      drivers/auxdisplay/panel.c
12904
12905 PARALLEL PORT SUBSYSTEM
12906 M:      Sudip Mukherjee <[email protected]>
12907 M:      Sudip Mukherjee <[email protected]>
12908 L:      [email protected] (subscribers-only)
12909 S:      Maintained
12910 F:      Documentation/driver-api/parport*.rst
12911 F:      drivers/char/ppdev.c
12912 F:      drivers/parport/
12913 F:      include/linux/parport*.h
12914 F:      include/uapi/linux/ppdev.h
12915
12916 PARAVIRT_OPS INTERFACE
12917 M:      Juergen Gross <[email protected]>
12918 M:      Deep Shah <[email protected]>
12919 M:      "VMware, Inc." <[email protected]>
12920 L:      [email protected]
12921 S:      Supported
12922 F:      Documentation/virt/paravirt_ops.rst
12923 F:      arch/*/include/asm/paravirt*.h
12924 F:      arch/*/kernel/paravirt*
12925 F:      include/linux/hypervisor.h
12926
12927 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12928 M:      Tim Waugh <[email protected]>
12929 L:      [email protected] (subscribers-only)
12930 S:      Maintained
12931 F:      Documentation/admin-guide/blockdev/paride.rst
12932 F:      drivers/block/paride/
12933
12934 PARISC ARCHITECTURE
12935 M:      "James E.J. Bottomley" <[email protected]>
12936 M:      Helge Deller <[email protected]>
12937 L:      [email protected]
12938 S:      Maintained
12939 W:      https://parisc.wiki.kernel.org
12940 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12943 F:      Documentation/parisc/
12944 F:      arch/parisc/
12945 F:      drivers/char/agp/parisc-agp.c
12946 F:      drivers/input/misc/hp_sdc_rtc.c
12947 F:      drivers/input/serio/gscps2.c
12948 F:      drivers/input/serio/hp_sdc*
12949 F:      drivers/parisc/
12950 F:      drivers/parport/parport_gsc.*
12951 F:      drivers/tty/serial/8250/8250_gsc.c
12952 F:      drivers/video/console/sti*
12953 F:      drivers/video/fbdev/sti*
12954 F:      drivers/video/logo/logo_parisc*
12955 F:      include/linux/hp_sdc.h
12956
12957 PARMAN
12958 M:      Jiri Pirko <[email protected]>
12959 L:      [email protected]
12960 S:      Supported
12961 F:      include/linux/parman.h
12962 F:      lib/parman.c
12963 F:      lib/test_parman.c
12964
12965 PC ENGINES APU BOARD DRIVER
12966 M:      Enrico Weigelt, metux IT consult <[email protected]>
12967 S:      Maintained
12968 F:      drivers/platform/x86/pcengines-apuv2.c
12969
12970 PC87360 HARDWARE MONITORING DRIVER
12971 M:      Jim Cromie <[email protected]>
12972 L:      [email protected]
12973 S:      Maintained
12974 F:      Documentation/hwmon/pc87360.rst
12975 F:      drivers/hwmon/pc87360.c
12976
12977 PC8736x GPIO DRIVER
12978 M:      Jim Cromie <[email protected]>
12979 S:      Maintained
12980 F:      drivers/char/pc8736x_gpio.c
12981
12982 PC87427 HARDWARE MONITORING DRIVER
12983 M:      Jean Delvare <[email protected]>
12984 L:      [email protected]
12985 S:      Maintained
12986 F:      Documentation/hwmon/pc87427.rst
12987 F:      drivers/hwmon/pc87427.c
12988
12989 PCA9532 LED DRIVER
12990 M:      Riku Voipio <[email protected]>
12991 S:      Maintained
12992 F:      drivers/leds/leds-pca9532.c
12993 F:      include/linux/leds-pca9532.h
12994
12995 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12996 M:      Guenter Roeck <[email protected]>
12997 L:      [email protected]
12998 S:      Maintained
12999 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13000
13001 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13002 M:      Khalid Aziz <[email protected]>
13003 S:      Maintained
13004 F:      drivers/firmware/pcdp.*
13005
13006 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13007 M:      Thomas Petazzoni <[email protected]>
13008 L:      [email protected]
13009 L:      [email protected] (moderated for non-subscribers)
13010 S:      Maintained
13011 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13012 F:      drivers/pci/controller/pci-aardvark.c
13013
13014 PCI DRIVER FOR ALTERA PCIE IP
13015 M:      Ley Foon Tan <[email protected]>
13016 L:      [email protected] (moderated for non-subscribers)
13017 L:      [email protected]
13018 S:      Supported
13019 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13020 F:      drivers/pci/controller/pcie-altera.c
13021
13022 PCI DRIVER FOR APPLIEDMICRO XGENE
13023 M:      Toan Le <[email protected]>
13024 L:      [email protected]
13025 L:      [email protected]
13026 S:      Maintained
13027 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13028 F:      drivers/pci/controller/pci-xgene.c
13029
13030 PCI DRIVER FOR ARM VERSATILE PLATFORM
13031 M:      Rob Herring <[email protected]>
13032 L:      [email protected]
13033 L:      [email protected]
13034 S:      Maintained
13035 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13036 F:      drivers/pci/controller/pci-versatile.c
13037
13038 PCI DRIVER FOR ARMADA 8K
13039 M:      Thomas Petazzoni <[email protected]>
13040 L:      [email protected]
13041 L:      [email protected]
13042 S:      Maintained
13043 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13044 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13045
13046 PCI DRIVER FOR CADENCE PCIE IP
13047 M:      Tom Joseph <[email protected]>
13048 L:      [email protected]
13049 S:      Maintained
13050 F:      Documentation/devicetree/bindings/pci/cdns,*
13051 F:      drivers/pci/controller/cadence/
13052
13053 PCI DRIVER FOR FREESCALE LAYERSCAPE
13054 M:      Minghuan Lian <[email protected]>
13055 M:      Mingkai Hu <[email protected]>
13056 M:      Roy Zang <[email protected]>
13057 L:      [email protected]
13058 L:      [email protected]
13059 L:      [email protected]
13060 S:      Maintained
13061 F:      drivers/pci/controller/dwc/*layerscape*
13062
13063 PCI DRIVER FOR GENERIC OF HOSTS
13064 M:      Will Deacon <[email protected]>
13065 L:      [email protected]
13066 L:      [email protected] (moderated for non-subscribers)
13067 S:      Maintained
13068 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13069 F:      drivers/pci/controller/pci-host-common.c
13070 F:      drivers/pci/controller/pci-host-generic.c
13071
13072 PCI DRIVER FOR IMX6
13073 M:      Richard Zhu <[email protected]>
13074 M:      Lucas Stach <[email protected]>
13075 L:      [email protected]
13076 L:      [email protected] (moderated for non-subscribers)
13077 S:      Maintained
13078 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13079 F:      drivers/pci/controller/dwc/*imx6*
13080
13081 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13082 M:      Jonathan Derrick <[email protected]>
13083 L:      [email protected]
13084 S:      Supported
13085 F:      drivers/pci/controller/vmd.c
13086
13087 PCI DRIVER FOR MICROSEMI SWITCHTEC
13088 M:      Kurt Schwemmer <[email protected]>
13089 M:      Logan Gunthorpe <[email protected]>
13090 L:      [email protected]
13091 S:      Maintained
13092 F:      Documentation/ABI/testing/sysfs-class-switchtec
13093 F:      Documentation/driver-api/switchtec.rst
13094 F:      drivers/ntb/hw/mscc/
13095 F:      drivers/pci/switch/switchtec*
13096 F:      include/linux/switchtec.h
13097 F:      include/uapi/linux/switchtec_ioctl.h
13098
13099 PCI DRIVER FOR MOBIVEIL PCIE IP
13100 M:      Karthikeyan Mitran <[email protected]>
13101 M:      Hou Zhiqiang <[email protected]>
13102 L:      [email protected]
13103 S:      Supported
13104 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13105 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13106
13107 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13108 M:      Thomas Petazzoni <[email protected]>
13109 M:      Jason Cooper <[email protected]>
13110 L:      [email protected]
13111 L:      [email protected] (moderated for non-subscribers)
13112 S:      Maintained
13113 F:      drivers/pci/controller/*mvebu*
13114
13115 PCI DRIVER FOR NVIDIA TEGRA
13116 M:      Thierry Reding <[email protected]>
13117 L:      [email protected]
13118 L:      [email protected]
13119 S:      Supported
13120 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13121 F:      drivers/pci/controller/pci-tegra.c
13122
13123 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13124 M:      Hou Zhiqiang <[email protected]>
13125 L:      [email protected]
13126 L:      [email protected]
13127 S:      Maintained
13128 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13129 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13130
13131 PCI DRIVER FOR RENESAS R-CAR
13132 M:      Marek Vasut <[email protected]>
13133 M:      Yoshihiro Shimoda <[email protected]>
13134 L:      [email protected]
13135 L:      [email protected]
13136 S:      Maintained
13137 F:      Documentation/devicetree/bindings/pci/*rcar*
13138 F:      drivers/pci/controller/*rcar*
13139
13140 PCI DRIVER FOR SAMSUNG EXYNOS
13141 M:      Jingoo Han <[email protected]>
13142 L:      [email protected]
13143 L:      [email protected] (moderated for non-subscribers)
13144 L:      [email protected] (moderated for non-subscribers)
13145 S:      Maintained
13146 F:      drivers/pci/controller/dwc/pci-exynos.c
13147
13148 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13149 M:      Jingoo Han <[email protected]>
13150 M:      Gustavo Pimentel <[email protected]>
13151 L:      [email protected]
13152 S:      Maintained
13153 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13154 F:      drivers/pci/controller/dwc/*designware*
13155
13156 PCI DRIVER FOR TI DRA7XX
13157 M:      Kishon Vijay Abraham I <[email protected]>
13158 L:      [email protected]
13159 L:      [email protected]
13160 S:      Supported
13161 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13162 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13163
13164 PCI DRIVER FOR TI KEYSTONE
13165 M:      Murali Karicheri <[email protected]>
13166 L:      [email protected]
13167 L:      [email protected] (moderated for non-subscribers)
13168 S:      Maintained
13169 F:      drivers/pci/controller/dwc/pci-keystone.c
13170
13171 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13172 M:      Linus Walleij <[email protected]>
13173 L:      [email protected]
13174 S:      Maintained
13175 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13176 F:      drivers/pci/controller/pci-v3-semi.c
13177
13178 PCI ENDPOINT SUBSYSTEM
13179 M:      Kishon Vijay Abraham I <[email protected]>
13180 M:      Lorenzo Pieralisi <[email protected]>
13181 L:      [email protected]
13182 S:      Supported
13183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13184 F:      drivers/misc/pci_endpoint_test.c
13185 F:      drivers/pci/endpoint/
13186 F:      tools/pci/
13187
13188 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13189 M:      Russell Currey <[email protected]>
13190 M:      Sam Bobroff <[email protected]>
13191 M:      Oliver O'Halloran <[email protected]>
13192 L:      [email protected]
13193 S:      Supported
13194 F:      Documentation/PCI/pci-error-recovery.rst
13195 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13196 F:      arch/powerpc/include/*/eeh*.h
13197 F:      arch/powerpc/kernel/eeh*.c
13198 F:      arch/powerpc/platforms/*/eeh*.c
13199 F:      drivers/pci/pcie/aer.c
13200 F:      drivers/pci/pcie/dpc.c
13201 F:      drivers/pci/pcie/err.c
13202
13203 PCI ERROR RECOVERY
13204 M:      Linas Vepstas <[email protected]>
13205 L:      [email protected]
13206 S:      Supported
13207 F:      Documentation/PCI/pci-error-recovery.rst
13208
13209 PCI MSI DRIVER FOR ALTERA MSI IP
13210 M:      Ley Foon Tan <[email protected]>
13211 L:      [email protected] (moderated for non-subscribers)
13212 L:      [email protected]
13213 S:      Supported
13214 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13215 F:      drivers/pci/controller/pcie-altera-msi.c
13216
13217 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13218 M:      Toan Le <[email protected]>
13219 L:      [email protected]
13220 L:      [email protected]
13221 S:      Maintained
13222 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13223 F:      drivers/pci/controller/pci-xgene-msi.c
13224
13225 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13226 M:      Lorenzo Pieralisi <[email protected]>
13227 R:      Rob Herring <[email protected]>
13228 L:      [email protected]
13229 S:      Supported
13230 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13232 F:      drivers/pci/controller/
13233
13234 PCI SUBSYSTEM
13235 M:      Bjorn Helgaas <[email protected]>
13236 L:      [email protected]
13237 S:      Supported
13238 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13240 F:      Documentation/PCI/
13241 F:      Documentation/devicetree/bindings/pci/
13242 F:      arch/x86/kernel/early-quirks.c
13243 F:      arch/x86/kernel/quirks.c
13244 F:      arch/x86/pci/
13245 F:      drivers/acpi/pci*
13246 F:      drivers/pci/
13247 F:      include/asm-generic/pci*
13248 F:      include/linux/of_pci.h
13249 F:      include/linux/pci*
13250 F:      include/uapi/linux/pci*
13251 F:      lib/pci*
13252
13253 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13254 M:      Jonathan Chocron <[email protected]>
13255 L:      [email protected]
13256 S:      Maintained
13257 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13258 F:      drivers/pci/controller/dwc/pcie-al.c
13259
13260 PCIE DRIVER FOR AMLOGIC MESON
13261 M:      Yue Wang <[email protected]>
13262 L:      [email protected]
13263 L:      [email protected]
13264 S:      Maintained
13265 F:      drivers/pci/controller/dwc/pci-meson.c
13266
13267 PCIE DRIVER FOR AXIS ARTPEC
13268 M:      Jesper Nilsson <[email protected]>
13269 L:      [email protected]
13270 L:      [email protected]
13271 S:      Maintained
13272 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13273 F:      drivers/pci/controller/dwc/*artpec*
13274
13275 PCIE DRIVER FOR CAVIUM THUNDERX
13276 M:      Robert Richter <[email protected]>
13277 L:      [email protected]
13278 L:      [email protected] (moderated for non-subscribers)
13279 S:      Supported
13280 F:      drivers/pci/controller/pci-thunder-*
13281
13282 PCIE DRIVER FOR HISILICON
13283 M:      Zhou Wang <[email protected]>
13284 L:      [email protected]
13285 S:      Maintained
13286 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13287 F:      drivers/pci/controller/dwc/pcie-hisi.c
13288
13289 PCIE DRIVER FOR HISILICON KIRIN
13290 M:      Xiaowei Song <[email protected]>
13291 M:      Binghui Wang <[email protected]>
13292 L:      [email protected]
13293 S:      Maintained
13294 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13295 F:      drivers/pci/controller/dwc/pcie-kirin.c
13296
13297 PCIE DRIVER FOR HISILICON STB
13298 M:      Shawn Guo <[email protected]>
13299 L:      [email protected]
13300 S:      Maintained
13301 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13302 F:      drivers/pci/controller/dwc/pcie-histb.c
13303
13304 PCIE DRIVER FOR MEDIATEK
13305 M:      Ryder Lee <[email protected]>
13306 L:      [email protected]
13307 L:      [email protected]
13308 S:      Supported
13309 F:      Documentation/devicetree/bindings/pci/mediatek*
13310 F:      drivers/pci/controller/*mediatek*
13311
13312 PCIE DRIVER FOR QUALCOMM MSM
13313 M:      Stanimir Varbanov <[email protected]>
13314 L:      [email protected]
13315 L:      [email protected]
13316 S:      Maintained
13317 F:      drivers/pci/controller/dwc/*qcom*
13318
13319 PCIE DRIVER FOR ROCKCHIP
13320 M:      Shawn Lin <[email protected]>
13321 L:      [email protected]
13322 L:      [email protected]
13323 S:      Maintained
13324 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13325 F:      drivers/pci/controller/pcie-rockchip*
13326
13327 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13328 M:      Kunihiko Hayashi <[email protected]>
13329 L:      [email protected]
13330 S:      Maintained
13331 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13332 F:      drivers/pci/controller/dwc/pcie-uniphier*
13333
13334 PCIE DRIVER FOR ST SPEAR13XX
13335 M:      Pratyush Anand <[email protected]>
13336 L:      [email protected]
13337 S:      Maintained
13338 F:      drivers/pci/controller/dwc/*spear*
13339
13340 PCMCIA SUBSYSTEM
13341 M:      Dominik Brodowski <[email protected]>
13342 S:      Odd Fixes
13343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13344 F:      Documentation/pcmcia/
13345 F:      drivers/pcmcia/
13346 F:      include/pcmcia/
13347 F:      tools/pcmcia/
13348
13349 PCNET32 NETWORK DRIVER
13350 M:      Don Fry <[email protected]>
13351 L:      [email protected]
13352 S:      Maintained
13353 F:      drivers/net/ethernet/amd/pcnet32.c
13354
13355 PCRYPT PARALLEL CRYPTO ENGINE
13356 M:      Steffen Klassert <[email protected]>
13357 L:      [email protected]
13358 S:      Maintained
13359 F:      crypto/pcrypt.c
13360 F:      include/crypto/pcrypt.h
13361
13362 PEAQ WMI HOTKEYS DRIVER
13363 M:      Hans de Goede <[email protected]>
13364 L:      [email protected]
13365 S:      Maintained
13366 F:      drivers/platform/x86/peaq-wmi.c
13367
13368 PENSANDO ETHERNET DRIVERS
13369 M:      Shannon Nelson <[email protected]>
13370 M:      Pensando Drivers <[email protected]>
13371 L:      [email protected]
13372 S:      Supported
13373 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13374 F:      drivers/net/ethernet/pensando/
13375
13376 PER-CPU MEMORY ALLOCATOR
13377 M:      Dennis Zhou <[email protected]>
13378 M:      Tejun Heo <[email protected]>
13379 M:      Christoph Lameter <[email protected]>
13380 S:      Maintained
13381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13382 F:      arch/*/include/asm/percpu.h
13383 F:      include/linux/percpu*.h
13384 F:      mm/percpu*.c
13385
13386 PER-TASK DELAY ACCOUNTING
13387 M:      Balbir Singh <[email protected]>
13388 S:      Maintained
13389 F:      include/linux/delayacct.h
13390 F:      kernel/delayacct.c
13391
13392 PERFORMANCE EVENTS SUBSYSTEM
13393 M:      Peter Zijlstra <[email protected]>
13394 M:      Ingo Molnar <[email protected]>
13395 M:      Arnaldo Carvalho de Melo <[email protected]>
13396 R:      Mark Rutland <[email protected]>
13397 R:      Alexander Shishkin <[email protected]>
13398 R:      Jiri Olsa <[email protected]>
13399 R:      Namhyung Kim <[email protected]>
13400 L:      [email protected]
13401 S:      Supported
13402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13403 F:      arch/*/events/*
13404 F:      arch/*/events/*/*
13405 F:      arch/*/include/asm/perf_event.h
13406 F:      arch/*/kernel/*/*/perf_event*.c
13407 F:      arch/*/kernel/*/perf_event*.c
13408 F:      arch/*/kernel/perf_callchain.c
13409 F:      arch/*/kernel/perf_event*.c
13410 F:      include/linux/perf_event.h
13411 F:      include/uapi/linux/perf_event.h
13412 F:      kernel/events/*
13413 F:      tools/perf/
13414
13415 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13416 R:      John Garry <[email protected]>
13417 R:      Will Deacon <[email protected]>
13418 L:      [email protected] (moderated for non-subscribers)
13419 S:      Supported
13420 F:      tools/perf/pmu-events/arch/arm64/
13421
13422 PERSONALITY HANDLING
13423 M:      Christoph Hellwig <[email protected]>
13424 L:      [email protected]
13425 S:      Maintained
13426 F:      include/linux/personality.h
13427 F:      include/uapi/linux/personality.h
13428
13429 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13430 M:      Marcus Folkesson <[email protected]>
13431 L:      [email protected]
13432 S:      Maintained
13433 F:      Documentation/input/devices/pxrc.rst
13434 F:      drivers/input/joystick/pxrc.c
13435
13436 PHONET PROTOCOL
13437 M:      Remi Denis-Courmont <[email protected]>
13438 S:      Supported
13439 F:      Documentation/networking/phonet.rst
13440 F:      include/linux/phonet.h
13441 F:      include/net/phonet/
13442 F:      include/uapi/linux/phonet.h
13443 F:      net/phonet/
13444
13445 PHRAM MTD DRIVER
13446 M:      Joern Engel <[email protected]>
13447 L:      [email protected]
13448 S:      Maintained
13449 F:      drivers/mtd/devices/phram.c
13450
13451 PICOLCD HID DRIVER
13452 M:      Bruno Prémont <[email protected]>
13453 L:      [email protected]
13454 S:      Maintained
13455 F:      drivers/hid/hid-picolcd*
13456
13457 PICOXCELL SUPPORT
13458 M:      Jamie Iles <[email protected]>
13459 L:      [email protected] (moderated for non-subscribers)
13460 S:      Supported
13461 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13462 F:      arch/arm/boot/dts/picoxcell*
13463 F:      arch/arm/mach-picoxcell/
13464 F:      drivers/crypto/picoxcell*
13465
13466 PIDFD API
13467 M:      Christian Brauner <[email protected]>
13468 L:      [email protected]
13469 S:      Maintained
13470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13471 F:      samples/pidfd/
13472 F:      tools/testing/selftests/clone3/
13473 F:      tools/testing/selftests/pid_namespace/
13474 F:      tools/testing/selftests/pidfd/
13475 K:      (?i)pidfd
13476 K:      (?i)clone3
13477 K:      \b(clone_args|kernel_clone_args)\b
13478
13479 PIN CONTROL SUBSYSTEM
13480 M:      Linus Walleij <[email protected]>
13481 L:      [email protected]
13482 S:      Maintained
13483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13484 F:      Documentation/devicetree/bindings/pinctrl/
13485 F:      Documentation/driver-api/pinctl.rst
13486 F:      drivers/pinctrl/
13487 F:      include/linux/pinctrl/
13488
13489 PIN CONTROLLER - FREESCALE
13490 M:      Dong Aisheng <[email protected]>
13491 M:      Fabio Estevam <[email protected]>
13492 M:      Shawn Guo <[email protected]>
13493 M:      Stefan Agner <[email protected]>
13494 R:      Pengutronix Kernel Team <[email protected]>
13495 L:      [email protected]
13496 S:      Maintained
13497 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13498 F:      drivers/pinctrl/freescale/
13499
13500 PIN CONTROLLER - INTEL
13501 M:      Mika Westerberg <[email protected]>
13502 M:      Andy Shevchenko <[email protected]>
13503 S:      Maintained
13504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13505 F:      drivers/pinctrl/intel/
13506
13507 PIN CONTROLLER - MEDIATEK
13508 M:      Sean Wang <[email protected]>
13509 L:      [email protected] (moderated for non-subscribers)
13510 S:      Maintained
13511 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13512 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13513 F:      drivers/pinctrl/mediatek/
13514
13515 PIN CONTROLLER - MICROCHIP AT91
13516 M:      Ludovic Desroches <[email protected]>
13517 L:      [email protected] (moderated for non-subscribers)
13518 L:      [email protected]
13519 S:      Supported
13520 F:      drivers/gpio/gpio-sama5d2-piobu.c
13521 F:      drivers/pinctrl/pinctrl-at91*
13522
13523 PIN CONTROLLER - QUALCOMM
13524 M:      Bjorn Andersson <[email protected]>
13525 L:      [email protected]
13526 S:      Maintained
13527 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13528 F:      drivers/pinctrl/qcom/
13529
13530 PIN CONTROLLER - RENESAS
13531 M:      Geert Uytterhoeven <[email protected]>
13532 L:      [email protected]
13533 S:      Supported
13534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13535 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
13536 F:      drivers/pinctrl/pinctrl-rz*
13537 F:      drivers/pinctrl/sh-pfc/
13538
13539 PIN CONTROLLER - SAMSUNG
13540 M:      Tomasz Figa <[email protected]>
13541 M:      Krzysztof Kozlowski <[email protected]>
13542 M:      Sylwester Nawrocki <[email protected]>
13543 L:      [email protected] (moderated for non-subscribers)
13544 L:      [email protected] (moderated for non-subscribers)
13545 S:      Maintained
13546 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13548 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13549 F:      drivers/pinctrl/samsung/
13550 F:      include/dt-bindings/pinctrl/samsung.h
13551
13552 PIN CONTROLLER - SINGLE
13553 M:      Tony Lindgren <[email protected]>
13554 M:      Haojian Zhuang <[email protected]>
13555 L:      [email protected] (moderated for non-subscribers)
13556 L:      [email protected]
13557 S:      Maintained
13558 F:      drivers/pinctrl/pinctrl-single.c
13559
13560 PIN CONTROLLER - ST SPEAR
13561 M:      Viresh Kumar <[email protected]>
13562 L:      [email protected] (moderated for non-subscribers)
13563 S:      Maintained
13564 W:      http://www.st.com/spear
13565 F:      drivers/pinctrl/spear/
13566
13567 PISTACHIO SOC SUPPORT
13568 M:      James Hartley <[email protected]>
13569 L:      [email protected]
13570 S:      Odd Fixes
13571 F:      arch/mips/boot/dts/img/pistachio*
13572 F:      arch/mips/configs/pistachio*_defconfig
13573 F:      arch/mips/include/asm/mach-pistachio/
13574 F:      arch/mips/pistachio/
13575
13576 PKTCDVD DRIVER
13577 M:      [email protected]
13578 S:      Orphan
13579 F:      drivers/block/pktcdvd.c
13580 F:      include/linux/pktcdvd.h
13581 F:      include/uapi/linux/pktcdvd.h
13582
13583 PKUNITY SOC DRIVERS
13584 M:      Guan Xuetao <[email protected]>
13585 S:      Maintained
13586 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13587 T:      git git://github.com/gxt/linux.git
13588 F:      drivers/i2c/busses/i2c-puv3.c
13589 F:      drivers/input/serio/i8042-unicore32io.h
13590 F:      drivers/rtc/rtc-puv3.c
13591 F:      drivers/video/fbdev/fb-puv3.c
13592
13593 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13594 M:      Tomasz Duszynski <[email protected]>
13595 S:      Maintained
13596 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13597 F:      drivers/iio/chemical/pms7003.c
13598
13599 PLX DMA DRIVER
13600 M:      Logan Gunthorpe <[email protected]>
13601 S:      Maintained
13602 F:      drivers/dma/plx_dma.c
13603
13604 PM-GRAPH UTILITY
13605 M:      "Todd E Brandt" <[email protected]>
13606 L:      [email protected]
13607 S:      Supported
13608 W:      https://01.org/pm-graph
13609 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13610 T:      git git://github.com/intel/pm-graph
13611 F:      tools/power/pm-graph
13612
13613 PMBUS HARDWARE MONITORING DRIVERS
13614 M:      Guenter Roeck <[email protected]>
13615 L:      [email protected]
13616 S:      Maintained
13617 W:      http://hwmon.wiki.kernel.org/
13618 W:      http://www.roeck-us.net/linux/drivers/
13619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13620 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13621 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13622 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13623 F:      Documentation/hwmon/adm1275.rst
13624 F:      Documentation/hwmon/ibm-cffps.rst
13625 F:      Documentation/hwmon/ir35221.rst
13626 F:      Documentation/hwmon/lm25066.rst
13627 F:      Documentation/hwmon/ltc2978.rst
13628 F:      Documentation/hwmon/ltc3815.rst
13629 F:      Documentation/hwmon/max16064.rst
13630 F:      Documentation/hwmon/max20751.rst
13631 F:      Documentation/hwmon/max31785.rst
13632 F:      Documentation/hwmon/max34440.rst
13633 F:      Documentation/hwmon/max8688.rst
13634 F:      Documentation/hwmon/pmbus-core.rst
13635 F:      Documentation/hwmon/pmbus.rst
13636 F:      Documentation/hwmon/tps40422.rst
13637 F:      Documentation/hwmon/ucd9000.rst
13638 F:      Documentation/hwmon/ucd9200.rst
13639 F:      Documentation/hwmon/zl6100.rst
13640 F:      drivers/hwmon/pmbus/
13641 F:      include/linux/pmbus.h
13642
13643 PMC SIERRA MaxRAID DRIVER
13644 L:      [email protected]
13645 S:      Orphan
13646 W:      http://www.pmc-sierra.com/
13647 F:      drivers/scsi/pmcraid.*
13648
13649 PMC SIERRA PM8001 DRIVER
13650 M:      Jack Wang <[email protected]>
13651 L:      [email protected]
13652 S:      Supported
13653 F:      drivers/scsi/pm8001/
13654
13655 PNI RM3100 IIO DRIVER
13656 M:      Song Qiang <[email protected]>
13657 L:      [email protected]
13658 S:      Maintained
13659 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13660 F:      drivers/iio/magnetometer/rm3100*
13661
13662 PNP SUPPORT
13663 M:      "Rafael J. Wysocki" <[email protected]>
13664 L:      [email protected]
13665 S:      Maintained
13666 F:      drivers/pnp/
13667 F:      include/linux/pnp.h
13668
13669 POSIX CLOCKS and TIMERS
13670 M:      Thomas Gleixner <[email protected]>
13671 L:      [email protected]
13672 S:      Maintained
13673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13674 F:      fs/timerfd.c
13675 F:      include/linux/time_namespace.h
13676 F:      include/linux/timer*
13677 F:      kernel/time/*timer*
13678 F:      kernel/time/namespace.c
13679
13680 POWER MANAGEMENT CORE
13681 M:      "Rafael J. Wysocki" <[email protected]>
13682 L:      [email protected]
13683 S:      Supported
13684 B:      https://bugzilla.kernel.org
13685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13686 F:      drivers/base/power/
13687 F:      drivers/powercap/
13688 F:      include/linux/intel_rapl.h
13689 F:      include/linux/pm.h
13690 F:      include/linux/pm_*
13691 F:      include/linux/powercap.h
13692 F:      kernel/configs/nopm.config
13693
13694 POWER STATE COORDINATION INTERFACE (PSCI)
13695 M:      Mark Rutland <[email protected]>
13696 M:      Lorenzo Pieralisi <[email protected]>
13697 L:      [email protected]
13698 S:      Maintained
13699 F:      drivers/firmware/psci/
13700 F:      include/linux/psci.h
13701 F:      include/uapi/linux/psci.h
13702
13703 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13704 M:      Sebastian Reichel <[email protected]>
13705 L:      [email protected]
13706 S:      Maintained
13707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13708 F:      Documentation/ABI/testing/sysfs-class-power
13709 F:      Documentation/devicetree/bindings/power/supply/
13710 F:      drivers/power/supply/
13711 F:      include/linux/power_supply.h
13712
13713 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13714 M:      Suraj Jitindar Singh <[email protected]>
13715 L:      [email protected]
13716 S:      Maintained
13717 F:      drivers/char/powernv-op-panel.c
13718
13719 PPP OVER ATM (RFC 2364)
13720 M:      Mitchell Blank Jr <[email protected]>
13721 S:      Maintained
13722 F:      include/uapi/linux/atmppp.h
13723 F:      net/atm/pppoatm.c
13724
13725 PPP OVER ETHERNET
13726 M:      Michal Ostrowski <[email protected]>
13727 S:      Maintained
13728 F:      drivers/net/ppp/pppoe.c
13729 F:      drivers/net/ppp/pppox.c
13730
13731 PPP OVER L2TP
13732 M:      James Chapman <[email protected]>
13733 S:      Maintained
13734 F:      include/linux/if_pppol2tp.h
13735 F:      include/uapi/linux/if_pppol2tp.h
13736 F:      net/l2tp/l2tp_ppp.c
13737
13738 PPP PROTOCOL DRIVERS AND COMPRESSORS
13739 M:      Paul Mackerras <[email protected]>
13740 L:      [email protected]
13741 S:      Maintained
13742 F:      drivers/net/ppp/ppp_*
13743
13744 PPS SUPPORT
13745 M:      Rodolfo Giometti <[email protected]>
13746 L:      [email protected] (subscribers-only)
13747 S:      Maintained
13748 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13749 F:      Documentation/ABI/testing/sysfs-pps
13750 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13751 F:      Documentation/driver-api/pps.rst
13752 F:      drivers/pps/
13753 F:      include/linux/pps*.h
13754 F:      include/uapi/linux/pps.h
13755
13756 PPTP DRIVER
13757 M:      Dmitry Kozlov <[email protected]>
13758 L:      [email protected]
13759 S:      Maintained
13760 W:      http://sourceforge.net/projects/accel-pptp
13761 F:      drivers/net/ppp/pptp.c
13762
13763 PRESSURE STALL INFORMATION (PSI)
13764 M:      Johannes Weiner <[email protected]>
13765 S:      Maintained
13766 F:      include/linux/psi*
13767 F:      kernel/sched/psi.c
13768
13769 PRINTK
13770 M:      Petr Mladek <[email protected]>
13771 M:      Sergey Senozhatsky <[email protected]>
13772 R:      Steven Rostedt <[email protected]>
13773 S:      Maintained
13774 F:      include/linux/printk.h
13775 F:      kernel/printk/
13776
13777 PRISM54 WIRELESS DRIVER
13778 M:      Luis Chamberlain <[email protected]>
13779 L:      [email protected]
13780 S:      Obsolete
13781 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13782 F:      drivers/net/wireless/intersil/prism54/
13783
13784 PROC FILESYSTEM
13785 R:      Alexey Dobriyan <[email protected]>
13786 L:      [email protected]
13787 L:      [email protected]
13788 S:      Maintained
13789 F:      Documentation/filesystems/proc.rst
13790 F:      fs/proc/
13791 F:      include/linux/proc_fs.h
13792 F:      tools/testing/selftests/proc/
13793
13794 PROC SYSCTL
13795 M:      Luis Chamberlain <[email protected]>
13796 M:      Kees Cook <[email protected]>
13797 M:      Iurii Zaikin <[email protected]>
13798 L:      [email protected]
13799 L:      [email protected]
13800 S:      Maintained
13801 F:      fs/proc/proc_sysctl.c
13802 F:      include/linux/sysctl.h
13803 F:      kernel/sysctl-test.c
13804 F:      kernel/sysctl.c
13805 F:      tools/testing/selftests/sysctl/
13806
13807 PS3 NETWORK SUPPORT
13808 M:      Geoff Levand <[email protected]>
13809 L:      [email protected]
13810 L:      [email protected]
13811 S:      Maintained
13812 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13813
13814 PS3 PLATFORM SUPPORT
13815 M:      Geoff Levand <[email protected]>
13816 L:      [email protected]
13817 S:      Maintained
13818 F:      arch/powerpc/boot/ps3*
13819 F:      arch/powerpc/include/asm/lv1call.h
13820 F:      arch/powerpc/include/asm/ps3*.h
13821 F:      arch/powerpc/platforms/ps3/
13822 F:      drivers/*/ps3*
13823 F:      drivers/ps3/
13824 F:      drivers/rtc/rtc-ps3.c
13825 F:      drivers/usb/host/*ps3.c
13826 F:      sound/ppc/snd_ps3*
13827
13828 PS3VRAM DRIVER
13829 M:      Jim Paris <[email protected]>
13830 M:      Geoff Levand <[email protected]>
13831 L:      [email protected]
13832 S:      Maintained
13833 F:      drivers/block/ps3vram.c
13834
13835 PSAMPLE PACKET SAMPLING SUPPORT
13836 M:      Yotam Gigi <[email protected]>
13837 S:      Maintained
13838 F:      include/net/psample.h
13839 F:      include/uapi/linux/psample.h
13840 F:      net/psample
13841
13842 PSTORE FILESYSTEM
13843 M:      Kees Cook <[email protected]>
13844 M:      Anton Vorontsov <[email protected]>
13845 M:      Colin Cross <[email protected]>
13846 M:      Tony Luck <[email protected]>
13847 S:      Maintained
13848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13849 F:      Documentation/admin-guide/ramoops.rst
13850 F:      Documentation/admin-guide/pstore-blk.rst
13851 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13852 F:      drivers/acpi/apei/erst.c
13853 F:      drivers/firmware/efi/efi-pstore.c
13854 F:      fs/pstore/
13855 F:      include/linux/pstore*
13856 K:      \b(pstore|ramoops)
13857
13858 PTP HARDWARE CLOCK SUPPORT
13859 M:      Richard Cochran <[email protected]>
13860 L:      [email protected]
13861 S:      Maintained
13862 W:      http://linuxptp.sourceforge.net/
13863 F:      Documentation/ABI/testing/sysfs-ptp
13864 F:      Documentation/driver-api/ptp.rst
13865 F:      drivers/net/phy/dp83640*
13866 F:      drivers/ptp/*
13867 F:      include/linux/ptp_cl*
13868
13869 PTRACE SUPPORT
13870 M:      Oleg Nesterov <[email protected]>
13871 S:      Maintained
13872 F:      arch/*/*/ptrace*.c
13873 F:      arch/*/include/asm/ptrace*.h
13874 F:      arch/*/ptrace*.c
13875 F:      include/asm-generic/syscall.h
13876 F:      include/linux/ptrace.h
13877 F:      include/linux/regset.h
13878 F:      include/linux/tracehook.h
13879 F:      include/uapi/linux/ptrace.h
13880 F:      include/uapi/linux/ptrace.h
13881 F:      kernel/ptrace.c
13882
13883 PULSE8-CEC DRIVER
13884 M:      Hans Verkuil <[email protected]>
13885 L:      [email protected]
13886 S:      Maintained
13887 T:      git git://linuxtv.org/media_tree.git
13888 F:      Documentation/admin-guide/media/pulse8-cec.rst
13889 F:      drivers/media/cec/usb/pulse8/
13890
13891 PVRUSB2 VIDEO4LINUX DRIVER
13892 M:      Mike Isely <[email protected]>
13893 L:      [email protected]       (subscribers-only)
13894 L:      [email protected]
13895 S:      Maintained
13896 W:      http://www.isely.net/pvrusb2/
13897 T:      git git://linuxtv.org/media_tree.git
13898 F:      Documentation/driver-api/media/drivers/pvrusb2*
13899 F:      drivers/media/usb/pvrusb2/
13900
13901 PWC WEBCAM DRIVER
13902 M:      Hans Verkuil <[email protected]>
13903 L:      [email protected]
13904 S:      Odd Fixes
13905 T:      git git://linuxtv.org/media_tree.git
13906 F:      drivers/media/usb/pwc/*
13907 F:      include/trace/events/pwc.h
13908
13909 PWM FAN DRIVER
13910 M:      Kamil Debski <[email protected]>
13911 M:      Bartlomiej Zolnierkiewicz <[email protected]>
13912 L:      [email protected]
13913 S:      Supported
13914 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13915 F:      Documentation/hwmon/pwm-fan.rst
13916 F:      drivers/hwmon/pwm-fan.c
13917
13918 PWM IR Transmitter
13919 M:      Sean Young <[email protected]>
13920 L:      [email protected]
13921 S:      Maintained
13922 F:      drivers/media/rc/pwm-ir-tx.c
13923
13924 PWM SUBSYSTEM
13925 M:      Thierry Reding <[email protected]>
13926 R:      Uwe Kleine-König <[email protected]>
13927 M:      Lee Jones <[email protected]>
13928 L:      [email protected]
13929 S:      Maintained
13930 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13932 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13933 F:      Documentation/devicetree/bindings/pwm/
13934 F:      Documentation/driver-api/pwm.rst
13935 F:      drivers/gpio/gpio-mvebu.c
13936 F:      drivers/pwm/
13937 F:      drivers/video/backlight/pwm_bl.c
13938 F:      include/linux/pwm.h
13939 F:      include/linux/pwm_backlight.h
13940 K:      pwm_(config|apply_state|ops)
13941
13942 PXA GPIO DRIVER
13943 M:      Robert Jarzmik <[email protected]>
13944 L:      [email protected]
13945 S:      Maintained
13946 F:      drivers/gpio/gpio-pxa.c
13947
13948 PXA MMCI DRIVER
13949 S:      Orphan
13950
13951 PXA RTC DRIVER
13952 M:      Robert Jarzmik <[email protected]>
13953 L:      [email protected]
13954 S:      Maintained
13955
13956 PXA2xx/PXA3xx SUPPORT
13957 M:      Daniel Mack <[email protected]>
13958 M:      Haojian Zhuang <[email protected]>
13959 M:      Robert Jarzmik <[email protected]>
13960 L:      [email protected] (moderated for non-subscribers)
13961 S:      Maintained
13962 T:      git git://github.com/hzhuang1/linux.git
13963 T:      git git://github.com/rjarzmik/linux.git
13964 F:      arch/arm/boot/dts/pxa*
13965 F:      arch/arm/mach-pxa/
13966 F:      drivers/dma/pxa*
13967 F:      drivers/pcmcia/pxa2xx*
13968 F:      drivers/pinctrl/pxa/
13969 F:      drivers/spi/spi-pxa2xx*
13970 F:      drivers/usb/gadget/udc/pxa2*
13971 F:      include/sound/pxa2xx-lib.h
13972 F:      sound/arm/pxa*
13973 F:      sound/soc/pxa/
13974
13975 QAT DRIVER
13976 M:      Giovanni Cabiddu <[email protected]>
13977 L:      [email protected]
13978 S:      Supported
13979 F:      drivers/crypto/qat/
13980
13981 QCOM AUDIO (ASoC) DRIVERS
13982 M:      Patrick Lai <[email protected]>
13983 M:      Banajit Goswami <[email protected]>
13984 L:      [email protected] (moderated for non-subscribers)
13985 S:      Supported
13986 F:      sound/soc/qcom/
13987
13988 QCOM IPA DRIVER
13989 M:      Alex Elder <[email protected]>
13990 L:      [email protected]
13991 S:      Supported
13992 F:      drivers/net/ipa/
13993
13994 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13995 M:      Gabriel Somlo <[email protected]>
13996 M:      "Michael S. Tsirkin" <[email protected]>
13997 L:      [email protected]
13998 S:      Maintained
13999 F:      drivers/firmware/qemu_fw_cfg.c
14000 F:      include/uapi/linux/qemu_fw_cfg.h
14001
14002 QIB DRIVER
14003 M:      Dennis Dalessandro <[email protected]>
14004 M:      Mike Marciniszyn <[email protected]>
14005 L:      [email protected]
14006 S:      Supported
14007 F:      drivers/infiniband/hw/qib/
14008
14009 QLOGIC QL41xxx FCOE DRIVER
14010 M:      [email protected]
14011 L:      [email protected]
14012 S:      Supported
14013 F:      drivers/scsi/qedf/
14014
14015 QLOGIC QL41xxx ISCSI DRIVER
14016 M:      [email protected]
14017 L:      [email protected]
14018 S:      Supported
14019 F:      drivers/scsi/qedi/
14020
14021 QLOGIC QL4xxx ETHERNET DRIVER
14022 M:      Ariel Elior <[email protected]>
14023 M:      [email protected]
14024 L:      [email protected]
14025 S:      Supported
14026 F:      drivers/net/ethernet/qlogic/qed/
14027 F:      drivers/net/ethernet/qlogic/qede/
14028 F:      include/linux/qed/
14029
14030 QLOGIC QL4xxx RDMA DRIVER
14031 M:      Michal Kalderon <[email protected]>
14032 M:      Ariel Elior <[email protected]>
14033 L:      [email protected]
14034 S:      Supported
14035 F:      drivers/infiniband/hw/qedr/
14036 F:      include/uapi/rdma/qedr-abi.h
14037
14038 QLOGIC QLA1280 SCSI DRIVER
14039 M:      Michael Reed <[email protected]>
14040 L:      [email protected]
14041 S:      Maintained
14042 F:      drivers/scsi/qla1280.[ch]
14043
14044 QLOGIC QLA2XXX FC-SCSI DRIVER
14045 M:      Nilesh Javali <[email protected]>
14046 M:      [email protected]
14047 L:      [email protected]
14048 S:      Supported
14049 F:      Documentation/scsi/LICENSE.qla2xxx
14050 F:      drivers/scsi/qla2xxx/
14051
14052 QLOGIC QLA3XXX NETWORK DRIVER
14053 M:      [email protected]
14054 L:      [email protected]
14055 S:      Supported
14056 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
14057 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14058
14059 QLOGIC QLA4XXX iSCSI DRIVER
14060 M:      [email protected]
14061 L:      [email protected]
14062 S:      Supported
14063 F:      Documentation/scsi/LICENSE.qla4xxx
14064 F:      drivers/scsi/qla4xxx/
14065
14066 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14067 M:      Shahed Shaikh <[email protected]>
14068 M:      Manish Chopra <[email protected]>
14069 M:      [email protected]
14070 L:      [email protected]
14071 S:      Supported
14072 F:      drivers/net/ethernet/qlogic/qlcnic/
14073
14074 QLOGIC QLGE 10Gb ETHERNET DRIVER
14075 M:      Manish Chopra <[email protected]>
14076 M:      [email protected]
14077 L:      [email protected]
14078 S:      Supported
14079 F:      drivers/staging/qlge/
14080
14081 QM1D1B0004 MEDIA DRIVER
14082 M:      Akihiro Tsukada <[email protected]>
14083 L:      [email protected]
14084 S:      Odd Fixes
14085 F:      drivers/media/tuners/qm1d1b0004*
14086
14087 QM1D1C0042 MEDIA DRIVER
14088 M:      Akihiro Tsukada <[email protected]>
14089 L:      [email protected]
14090 S:      Odd Fixes
14091 F:      drivers/media/tuners/qm1d1c0042*
14092
14093 QNX4 FILESYSTEM
14094 M:      Anders Larsen <[email protected]>
14095 S:      Maintained
14096 W:      http://www.alarsen.net/linux/qnx4fs/
14097 F:      fs/qnx4/
14098 F:      include/uapi/linux/qnx4_fs.h
14099 F:      include/uapi/linux/qnxtypes.h
14100
14101 QORIQ DPAA2 FSL-MC BUS DRIVER
14102 M:      Stuart Yoder <[email protected]>
14103 M:      Laurentiu Tudor <[email protected]>
14104 L:      [email protected]
14105 S:      Maintained
14106 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14107 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
14108 F:      drivers/bus/fsl-mc/
14109
14110 QT1010 MEDIA DRIVER
14111 M:      Antti Palosaari <[email protected]>
14112 L:      [email protected]
14113 S:      Maintained
14114 W:      https://linuxtv.org
14115 W:      http://palosaari.fi/linux/
14116 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14117 T:      git git://linuxtv.org/anttip/media_tree.git
14118 F:      drivers/media/tuners/qt1010*
14119
14120 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14121 M:      Kalle Valo <[email protected]>
14122 L:      [email protected]
14123 S:      Supported
14124 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14126 F:      drivers/net/wireless/ath/ath10k/
14127
14128 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14129 M:      Kalle Valo <[email protected]>
14130 L:      [email protected]
14131 S:      Supported
14132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14133 F:      drivers/net/wireless/ath/ath11k/
14134
14135 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14136 M:      QCA ath9k Development <[email protected]>
14137 L:      [email protected]
14138 S:      Supported
14139 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14140 F:      drivers/net/wireless/ath/ath9k/
14141
14142 QUALCOMM CAMERA SUBSYSTEM DRIVER
14143 M:      Todor Tomov <[email protected]>
14144 L:      [email protected]
14145 S:      Maintained
14146 F:      Documentation/admin-guide/media/qcom_camss.rst
14147 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14148 F:      drivers/media/platform/qcom/camss/
14149
14150 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14151 M:      Niklas Cassel <[email protected]>
14152 L:      [email protected]
14153 L:      [email protected]
14154 S:      Maintained
14155 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14156 F:      drivers/power/avs/qcom-cpr.c
14157
14158 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14159 M:      Ilia Lin <[email protected]>
14160 L:      [email protected]
14161 S:      Maintained
14162 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14163 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14164
14165 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14166 M:      Timur Tabi <[email protected]>
14167 L:      [email protected]
14168 S:      Maintained
14169 F:      drivers/net/ethernet/qualcomm/emac/
14170
14171 QUALCOMM ETHQOS ETHERNET DRIVER
14172 M:      Vinod Koul <[email protected]>
14173 L:      [email protected]
14174 S:      Maintained
14175 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14176 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14177
14178 QUALCOMM GENERIC INTERFACE I2C DRIVER
14179 M:      Alok Chauhan <[email protected]>
14180 L:      [email protected]
14181 L:      [email protected]
14182 S:      Supported
14183 F:      drivers/i2c/busses/i2c-qcom-geni.c
14184
14185 QUALCOMM HEXAGON ARCHITECTURE
14186 M:      Brian Cain <[email protected]>
14187 L:      [email protected]
14188 S:      Supported
14189 F:      arch/hexagon/
14190
14191 QUALCOMM HIDMA DRIVER
14192 M:      Sinan Kaya <[email protected]>
14193 L:      [email protected]
14194 L:      [email protected]
14195 L:      [email protected]
14196 S:      Supported
14197 F:      drivers/dma/qcom/hidma*
14198
14199 QUALCOMM I2C CCI DRIVER
14200 M:      Loic Poulain <[email protected]>
14201 M:      Robert Foss <[email protected]>
14202 L:      [email protected]
14203 L:      [email protected]
14204 S:      Maintained
14205 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14206 F:      drivers/i2c/busses/i2c-qcom-cci.c
14207
14208 QUALCOMM IOMMU
14209 M:      Rob Clark <[email protected]>
14210 L:      [email protected]
14211 L:      [email protected]
14212 S:      Maintained
14213 F:      drivers/iommu/qcom_iommu.c
14214
14215 QUALCOMM IPCC MAILBOX DRIVER
14216 M:      Manivannan Sadhasivam <[email protected]>
14217 L:      [email protected]
14218 S:      Supported
14219 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14220 F:      drivers/mailbox/qcom-ipcc.c
14221 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14222
14223 QUALCOMM RMNET DRIVER
14224 M:      Subash Abhinov Kasiviswanathan <[email protected]>
14225 M:      Sean Tranchetti <[email protected]>
14226 L:      [email protected]
14227 S:      Maintained
14228 F:      Documentation/networking/device_drivers/qualcomm/rmnet.rst
14229 F:      drivers/net/ethernet/qualcomm/rmnet/
14230 F:      include/linux/if_rmnet.h
14231
14232 QUALCOMM TSENS THERMAL DRIVER
14233 M:      Amit Kucheria <[email protected]>
14234 L:      [email protected]
14235 L:      [email protected]
14236 S:      Maintained
14237 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14238 F:      drivers/thermal/qcom/
14239
14240 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14241 M:      Stanimir Varbanov <[email protected]>
14242 L:      [email protected]
14243 L:      [email protected]
14244 S:      Maintained
14245 T:      git git://linuxtv.org/media_tree.git
14246 F:      Documentation/devicetree/bindings/media/*venus*
14247 F:      drivers/media/platform/qcom/venus/
14248
14249 QUALCOMM WCN36XX WIRELESS DRIVER
14250 M:      Kalle Valo <[email protected]>
14251 L:      [email protected]
14252 S:      Supported
14253 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14254 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14255 F:      drivers/net/wireless/ath/wcn36xx/
14256
14257 QUANTENNA QTNFMAC WIRELESS DRIVER
14258 M:      Igor Mitsyanko <[email protected]>
14259 R:      Sergey Matyukevich <[email protected]>
14260 L:      [email protected]
14261 S:      Maintained
14262 F:      drivers/net/wireless/quantenna
14263
14264 RADEON and AMDGPU DRM DRIVERS
14265 M:      Alex Deucher <[email protected]>
14266 M:      Christian König <[email protected]>
14267 L:      [email protected]
14268 S:      Supported
14269 T:      git git://people.freedesktop.org/~agd5f/linux
14270 F:      drivers/gpu/drm/amd/
14271 F:      drivers/gpu/drm/radeon/
14272 F:      include/uapi/drm/amdgpu_drm.h
14273 F:      include/uapi/drm/radeon_drm.h
14274
14275 RADEON FRAMEBUFFER DISPLAY DRIVER
14276 M:      Benjamin Herrenschmidt <[email protected]>
14277 L:      [email protected]
14278 S:      Maintained
14279 F:      drivers/video/fbdev/aty/radeon*
14280 F:      include/uapi/linux/radeonfb.h
14281
14282 RADIOSHARK RADIO DRIVER
14283 M:      Hans Verkuil <[email protected]>
14284 L:      [email protected]
14285 S:      Maintained
14286 T:      git git://linuxtv.org/media_tree.git
14287 F:      drivers/media/radio/radio-shark.c
14288
14289 RADIOSHARK2 RADIO DRIVER
14290 M:      Hans Verkuil <[email protected]>
14291 L:      [email protected]
14292 S:      Maintained
14293 T:      git git://linuxtv.org/media_tree.git
14294 F:      drivers/media/radio/radio-shark2.c
14295 F:      drivers/media/radio/radio-tea5777.c
14296
14297 RADOS BLOCK DEVICE (RBD)
14298 M:      Ilya Dryomov <[email protected]>
14299 R:      Dongsheng Yang <[email protected]>
14300 L:      [email protected]
14301 S:      Supported
14302 W:      http://ceph.com/
14303 T:      git git://github.com/ceph/ceph-client.git
14304 F:      Documentation/ABI/testing/sysfs-bus-rbd
14305 F:      drivers/block/rbd.c
14306 F:      drivers/block/rbd_types.h
14307
14308 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14309 M:      Paul Mackerras <[email protected]>
14310 L:      [email protected]
14311 S:      Maintained
14312 F:      drivers/video/fbdev/aty/aty128fb.c
14313
14314 RAINSHADOW-CEC DRIVER
14315 M:      Hans Verkuil <[email protected]>
14316 L:      [email protected]
14317 S:      Maintained
14318 T:      git git://linuxtv.org/media_tree.git
14319 F:      drivers/media/cec/usb/rainshadow/
14320
14321 RALINK MIPS ARCHITECTURE
14322 M:      John Crispin <[email protected]>
14323 L:      [email protected]
14324 S:      Maintained
14325 F:      arch/mips/ralink
14326
14327 RALINK RT2X00 WIRELESS LAN DRIVER
14328 M:      Stanislaw Gruszka <[email protected]>
14329 M:      Helmut Schaa <[email protected]>
14330 L:      [email protected]
14331 S:      Maintained
14332 F:      drivers/net/wireless/ralink/rt2x00/
14333
14334 RAMDISK RAM BLOCK DEVICE DRIVER
14335 M:      Jens Axboe <[email protected]>
14336 S:      Maintained
14337 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14338 F:      drivers/block/brd.c
14339
14340 RANCHU VIRTUAL BOARD FOR MIPS
14341 M:      Miodrag Dinic <[email protected]>
14342 L:      [email protected]
14343 S:      Supported
14344 F:      arch/mips/configs/generic/board-ranchu.config
14345 F:      arch/mips/generic/board-ranchu.c
14346
14347 RANDOM NUMBER DRIVER
14348 M:      "Theodore Ts'o" <[email protected]>
14349 S:      Maintained
14350 F:      drivers/char/random.c
14351
14352 RAPIDIO SUBSYSTEM
14353 M:      Matt Porter <[email protected]>
14354 M:      Alexandre Bounine <[email protected]>
14355 S:      Maintained
14356 F:      drivers/rapidio/
14357
14358 RAS INFRASTRUCTURE
14359 M:      Tony Luck <[email protected]>
14360 M:      Borislav Petkov <[email protected]>
14361 L:      [email protected]
14362 S:      Maintained
14363 F:      Documentation/admin-guide/ras.rst
14364 F:      drivers/ras/
14365 F:      include/linux/ras.h
14366 F:      include/ras/ras_event.h
14367
14368 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14369 L:      [email protected]
14370 S:      Orphan
14371 F:      drivers/net/wireless/ray*
14372
14373 RCMM REMOTE CONTROLS DECODER
14374 M:      Patrick Lerda <[email protected]>
14375 S:      Maintained
14376 F:      drivers/media/rc/ir-rcmm-decoder.c
14377
14378 RCUTORTURE TEST FRAMEWORK
14379 M:      "Paul E. McKenney" <[email protected]>
14380 M:      Josh Triplett <[email protected]>
14381 R:      Steven Rostedt <[email protected]>
14382 R:      Mathieu Desnoyers <[email protected]>
14383 R:      Lai Jiangshan <[email protected]>
14384 L:      [email protected]
14385 S:      Supported
14386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14387 F:      tools/testing/selftests/rcutorture
14388
14389 RDC R-321X SoC
14390 M:      Florian Fainelli <[email protected]>
14391 S:      Maintained
14392
14393 RDC R6040 FAST ETHERNET DRIVER
14394 M:      Florian Fainelli <[email protected]>
14395 L:      [email protected]
14396 S:      Maintained
14397 F:      drivers/net/ethernet/rdc/r6040.c
14398
14399 RDMAVT - RDMA verbs software
14400 M:      Dennis Dalessandro <[email protected]>
14401 M:      Mike Marciniszyn <[email protected]>
14402 L:      [email protected]
14403 S:      Supported
14404 F:      drivers/infiniband/sw/rdmavt
14405
14406 RDS - RELIABLE DATAGRAM SOCKETS
14407 M:      Santosh Shilimkar <[email protected]>
14408 L:      [email protected]
14409 L:      [email protected]
14410 L:      [email protected] (moderated for non-subscribers)
14411 S:      Supported
14412 W:      https://oss.oracle.com/projects/rds/
14413 F:      Documentation/networking/rds.rst
14414 F:      net/rds/
14415
14416 RDT - RESOURCE ALLOCATION
14417 M:      Fenghua Yu <[email protected]>
14418 M:      Reinette Chatre <[email protected]>
14419 L:      [email protected]
14420 S:      Supported
14421 F:      Documentation/x86/resctrl*
14422 F:      arch/x86/include/asm/resctrl.h
14423 F:      arch/x86/kernel/cpu/resctrl/
14424 F:      tools/testing/selftests/resctrl/
14425
14426 READ-COPY UPDATE (RCU)
14427 M:      "Paul E. McKenney" <[email protected]>
14428 M:      Josh Triplett <[email protected]>
14429 R:      Steven Rostedt <[email protected]>
14430 R:      Mathieu Desnoyers <[email protected]>
14431 R:      Lai Jiangshan <[email protected]>
14432 R:      Joel Fernandes <[email protected]>
14433 L:      [email protected]
14434 S:      Supported
14435 W:      http://www.rdrop.com/users/paulmck/RCU/
14436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14437 F:      Documentation/RCU/
14438 F:      include/linux/rcu*
14439 F:      kernel/rcu/
14440 X:      Documentation/RCU/torture.txt
14441 X:      include/linux/srcu*.h
14442 X:      kernel/rcu/srcu*.c
14443
14444 REAL TIME CLOCK (RTC) SUBSYSTEM
14445 M:      Alessandro Zummo <[email protected]>
14446 M:      Alexandre Belloni <[email protected]>
14447 L:      [email protected]
14448 S:      Maintained
14449 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14451 F:      Documentation/admin-guide/rtc.rst
14452 F:      Documentation/devicetree/bindings/rtc/
14453 F:      drivers/rtc/
14454 F:      include/linux/platform_data/rtc-*
14455 F:      include/linux/rtc.h
14456 F:      include/linux/rtc/
14457 F:      include/uapi/linux/rtc.h
14458 F:      tools/testing/selftests/rtc/
14459
14460 REALTEK AUDIO CODECS
14461 M:      Oder Chiou <[email protected]>
14462 S:      Maintained
14463 F:      include/sound/rt*.h
14464 F:      sound/soc/codecs/rt*
14465
14466 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14467 M:      Linus Walleij <[email protected]>
14468 S:      Maintained
14469 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14470 F:      drivers/net/dsa/realtek-smi*
14471 F:      drivers/net/dsa/rtl83*
14472
14473 REALTEK WIRELESS DRIVER (rtlwifi family)
14474 M:      Ping-Ke Shih <[email protected]>
14475 L:      [email protected]
14476 S:      Maintained
14477 W:      https://wireless.wiki.kernel.org/
14478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14479 F:      drivers/net/wireless/realtek/rtlwifi/
14480
14481 REALTEK WIRELESS DRIVER (rtw88)
14482 M:      Yan-Hsuan Chuang <[email protected]>
14483 L:      [email protected]
14484 S:      Maintained
14485 F:      drivers/net/wireless/realtek/rtw88/
14486
14487 REDPINE WIRELESS DRIVER
14488 M:      Amitkumar Karwar <[email protected]>
14489 M:      Siva Rebbagondla <[email protected]>
14490 L:      [email protected]
14491 S:      Maintained
14492 F:      drivers/net/wireless/rsi/
14493
14494 REGISTER MAP ABSTRACTION
14495 M:      Mark Brown <[email protected]>
14496 L:      [email protected]
14497 S:      Supported
14498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14499 F:      Documentation/devicetree/bindings/regmap/
14500 F:      drivers/base/regmap/
14501 F:      include/linux/regmap.h
14502
14503 REISERFS FILE SYSTEM
14504 L:      [email protected]
14505 S:      Supported
14506 F:      fs/reiserfs/
14507
14508 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14509 M:      Ohad Ben-Cohen <[email protected]>
14510 M:      Bjorn Andersson <[email protected]>
14511 L:      [email protected]
14512 S:      Maintained
14513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14514 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14515 F:      Documentation/devicetree/bindings/remoteproc/
14516 F:      Documentation/remoteproc.txt
14517 F:      drivers/remoteproc/
14518 F:      include/linux/remoteproc.h
14519 F:      include/linux/remoteproc/
14520
14521 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14522 M:      Ohad Ben-Cohen <[email protected]>
14523 M:      Bjorn Andersson <[email protected]>
14524 L:      [email protected]
14525 S:      Maintained
14526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14527 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14528 F:      Documentation/rpmsg.txt
14529 F:      drivers/rpmsg/
14530 F:      include/linux/rpmsg.h
14531 F:      include/linux/rpmsg/
14532 F:      include/uapi/linux/rpmsg.h
14533 F:      samples/rpmsg/
14534
14535 RENESAS CLOCK DRIVERS
14536 M:      Geert Uytterhoeven <[email protected]>
14537 L:      [email protected]
14538 S:      Supported
14539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14540 F:      Documentation/devicetree/bindings/clock/renesas,*
14541 F:      drivers/clk/renesas/
14542
14543 RENESAS EMEV2 I2C DRIVER
14544 M:      Wolfram Sang <[email protected]>
14545 S:      Supported
14546 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14547 F:      drivers/i2c/busses/i2c-emev2.c
14548
14549 RENESAS ETHERNET DRIVERS
14550 R:      Sergei Shtylyov <[email protected]>
14551 L:      [email protected]
14552 L:      [email protected]
14553 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14554 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14555 F:      drivers/net/ethernet/renesas/
14556 F:      include/linux/sh_eth.h
14557
14558 RENESAS R-CAR GYROADC DRIVER
14559 M:      Marek Vasut <[email protected]>
14560 L:      [email protected]
14561 S:      Supported
14562 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14563 F:      drivers/iio/adc/rcar-gyroadc.c
14564
14565 RENESAS R-CAR I2C DRIVERS
14566 M:      Wolfram Sang <[email protected]>
14567 S:      Supported
14568 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14569 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14570 F:      drivers/i2c/busses/i2c-rcar.c
14571 F:      drivers/i2c/busses/i2c-sh_mobile.c
14572
14573 RENESAS R-CAR THERMAL DRIVERS
14574 M:      Niklas Söderlund <[email protected]>
14575 L:      [email protected]
14576 S:      Supported
14577 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.txt
14578 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.txt
14579 F:      drivers/thermal/rcar_gen3_thermal.c
14580 F:      drivers/thermal/rcar_thermal.c
14581
14582 RENESAS RIIC DRIVER
14583 M:      Chris Brandt <[email protected]>
14584 S:      Supported
14585 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14586 F:      drivers/i2c/busses/i2c-riic.c
14587
14588 RENESAS USB PHY DRIVER
14589 M:      Yoshihiro Shimoda <[email protected]>
14590 L:      [email protected]
14591 S:      Maintained
14592 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14593
14594 RESET CONTROLLER FRAMEWORK
14595 M:      Philipp Zabel <[email protected]>
14596 S:      Maintained
14597 T:      git git://git.pengutronix.de/git/pza/linux
14598 F:      Documentation/devicetree/bindings/reset/
14599 F:      drivers/reset/
14600 F:      include/dt-bindings/reset/
14601 F:      include/linux/reset-controller.h
14602 F:      include/linux/reset.h
14603 F:      include/linux/reset/
14604 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14605
14606 RESTARTABLE SEQUENCES SUPPORT
14607 M:      Mathieu Desnoyers <[email protected]>
14608 M:      Peter Zijlstra <[email protected]>
14609 M:      "Paul E. McKenney" <[email protected]>
14610 M:      Boqun Feng <[email protected]>
14611 L:      [email protected]
14612 S:      Supported
14613 F:      include/trace/events/rseq.h
14614 F:      include/uapi/linux/rseq.h
14615 F:      kernel/rseq.c
14616 F:      tools/testing/selftests/rseq/
14617
14618 RFKILL
14619 M:      Johannes Berg <[email protected]>
14620 L:      [email protected]
14621 S:      Maintained
14622 W:      https://wireless.wiki.kernel.org/
14623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14625 F:      Documentation/ABI/stable/sysfs-class-rfkill
14626 F:      Documentation/driver-api/rfkill.rst
14627 F:      include/linux/rfkill.h
14628 F:      include/uapi/linux/rfkill.h
14629 F:      net/rfkill/
14630
14631 RHASHTABLE
14632 M:      Thomas Graf <[email protected]>
14633 M:      Herbert Xu <[email protected]>
14634 L:      [email protected]
14635 S:      Maintained
14636 F:      include/linux/rhashtable-types.h
14637 F:      include/linux/rhashtable.h
14638 F:      lib/rhashtable.c
14639 F:      lib/test_rhashtable.c
14640
14641 RICOH R5C592 MEMORYSTICK DRIVER
14642 M:      Maxim Levitsky <[email protected]>
14643 S:      Maintained
14644 F:      drivers/memstick/host/r592.*
14645
14646 RICOH SMARTMEDIA/XD DRIVER
14647 M:      Maxim Levitsky <[email protected]>
14648 S:      Maintained
14649 F:      drivers/mtd/nand/raw/r852.c
14650 F:      drivers/mtd/nand/raw/r852.h
14651
14652 RISC-V ARCHITECTURE
14653 M:      Paul Walmsley <[email protected]>
14654 M:      Palmer Dabbelt <[email protected]>
14655 M:      Albert Ou <[email protected]>
14656 L:      [email protected]
14657 S:      Supported
14658 P:      Documentation/riscv/patch-acceptance.rst
14659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14660 F:      arch/riscv/
14661 N:      riscv
14662 K:      riscv
14663
14664 RNBD BLOCK DRIVERS
14665 M:      Danil Kipnis <[email protected]>
14666 M:      Jack Wang <[email protected]>
14667 L:      [email protected]
14668 S:      Maintained
14669 F:      drivers/block/rnbd/
14670
14671 ROCCAT DRIVERS
14672 M:      Stefan Achatz <[email protected]>
14673 S:      Maintained
14674 W:      http://sourceforge.net/projects/roccat/
14675 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14676 F:      drivers/hid/hid-roccat*
14677 F:      include/linux/hid-roccat*
14678
14679 ROCKCHIP ISP V1 DRIVER
14680 M:      Helen Koike <[email protected]>
14681 L:      [email protected]
14682 S:      Maintained
14683 F:      drivers/staging/media/rkisp1/
14684
14685 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14686 M:      Jacob Chen <[email protected]>
14687 M:      Ezequiel Garcia <[email protected]>
14688 L:      [email protected]
14689 L:      [email protected]
14690 S:      Maintained
14691 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
14692 F:      drivers/media/platform/rockchip/rga/
14693
14694 ROCKCHIP VIDEO DECODER DRIVER
14695 M:      Ezequiel Garcia <[email protected]>
14696 L:      [email protected]
14697 L:      [email protected]
14698 S:      Maintained
14699 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
14700 F:      drivers/staging/media/rkvdec/
14701
14702 ROCKER DRIVER
14703 M:      Jiri Pirko <[email protected]>
14704 L:      [email protected]
14705 S:      Supported
14706 F:      drivers/net/ethernet/rocker/
14707
14708 ROCKETPORT DRIVER
14709 S:      Maintained
14710 W:      http://www.comtrol.com
14711 F:      Documentation/driver-api/serial/rocket.rst
14712 F:      drivers/tty/rocket*
14713
14714 ROCKETPORT EXPRESS/INFINITY DRIVER
14715 M:      Kevin Cernekee <[email protected]>
14716 L:      [email protected]
14717 S:      Odd Fixes
14718 F:      drivers/tty/serial/rp2.*
14719
14720 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14721 M:      Tomasz Duszynski <[email protected]>
14722 S:      Maintained
14723 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14724 F:      drivers/iio/light/bh1750.c
14725
14726 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14727 M:      Marek Vasut <[email protected]>
14728 L:      [email protected]
14729 L:      [email protected]
14730 S:      Supported
14731 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14732 F:      drivers/gpio/gpio-bd9571mwv.c
14733 F:      drivers/mfd/bd9571mwv.c
14734 F:      drivers/regulator/bd9571mwv-regulator.c
14735 F:      include/linux/mfd/bd9571mwv.h
14736
14737 ROSE NETWORK LAYER
14738 M:      Ralf Baechle <[email protected]>
14739 L:      [email protected]
14740 S:      Maintained
14741 W:      http://www.linux-ax25.org/
14742 F:      include/net/rose.h
14743 F:      include/uapi/linux/rose.h
14744 F:      net/rose/
14745
14746 ROTATION DRIVER FOR ALLWINNER A83T
14747 M:      Jernej Skrabec <[email protected]>
14748 L:      [email protected]
14749 S:      Maintained
14750 T:      git git://linuxtv.org/media_tree.git
14751 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14752 F:      drivers/media/platform/sunxi/sun8i-rotate/
14753
14754 RTL2830 MEDIA DRIVER
14755 M:      Antti Palosaari <[email protected]>
14756 L:      [email protected]
14757 S:      Maintained
14758 W:      https://linuxtv.org
14759 W:      http://palosaari.fi/linux/
14760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14761 T:      git git://linuxtv.org/anttip/media_tree.git
14762 F:      drivers/media/dvb-frontends/rtl2830*
14763
14764 RTL2832 MEDIA DRIVER
14765 M:      Antti Palosaari <[email protected]>
14766 L:      [email protected]
14767 S:      Maintained
14768 W:      https://linuxtv.org
14769 W:      http://palosaari.fi/linux/
14770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14771 T:      git git://linuxtv.org/anttip/media_tree.git
14772 F:      drivers/media/dvb-frontends/rtl2832*
14773
14774 RTL2832_SDR MEDIA DRIVER
14775 M:      Antti Palosaari <[email protected]>
14776 L:      [email protected]
14777 S:      Maintained
14778 W:      https://linuxtv.org
14779 W:      http://palosaari.fi/linux/
14780 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14781 T:      git git://linuxtv.org/anttip/media_tree.git
14782 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14783
14784 RTL8180 WIRELESS DRIVER
14785 L:      [email protected]
14786 S:      Orphan
14787 W:      https://wireless.wiki.kernel.org/
14788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14789 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14790
14791 RTL8187 WIRELESS DRIVER
14792 M:      Herton Ronaldo Krzesinski <[email protected]>
14793 M:      Hin-Tak Leung <[email protected]>
14794 M:      Larry Finger <[email protected]>
14795 L:      [email protected]
14796 S:      Maintained
14797 W:      https://wireless.wiki.kernel.org/
14798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14799 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14800
14801 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14802 M:      Jes Sorensen <[email protected]>
14803 L:      [email protected]
14804 S:      Maintained
14805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14806 F:      drivers/net/wireless/realtek/rtl8xxxu/
14807
14808 RTRS TRANSPORT DRIVERS
14809 M:      Danil Kipnis <[email protected]>
14810 M:      Jack Wang <[email protected]>
14811 L:      [email protected]
14812 S:      Maintained
14813 F:      drivers/infiniband/ulp/rtrs/
14814
14815 RXRPC SOCKETS (AF_RXRPC)
14816 M:      David Howells <[email protected]>
14817 L:      [email protected]
14818 S:      Supported
14819 W:      https://www.infradead.org/~dhowells/kafs/
14820 F:      Documentation/networking/rxrpc.rst
14821 F:      include/keys/rxrpc-type.h
14822 F:      include/net/af_rxrpc.h
14823 F:      include/trace/events/rxrpc.h
14824 F:      include/uapi/linux/rxrpc.h
14825 F:      net/rxrpc/
14826
14827 S3 SAVAGE FRAMEBUFFER DRIVER
14828 M:      Antonino Daplas <[email protected]>
14829 L:      [email protected]
14830 S:      Maintained
14831 F:      drivers/video/fbdev/savage/
14832
14833 S390
14834 M:      Heiko Carstens <[email protected]>
14835 M:      Vasily Gorbik <[email protected]>
14836 M:      Christian Borntraeger <[email protected]>
14837 L:      [email protected]
14838 S:      Supported
14839 W:      http://www.ibm.com/developerworks/linux/linux390/
14840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14841 F:      Documentation/driver-api/s390-drivers.rst
14842 F:      Documentation/s390/
14843 F:      arch/s390/
14844 F:      drivers/s390/
14845
14846 S390 COMMON I/O LAYER
14847 M:      Vineeth Vijayan <[email protected]>
14848 M:      Peter Oberparleiter <[email protected]>
14849 L:      [email protected]
14850 S:      Supported
14851 W:      http://www.ibm.com/developerworks/linux/linux390/
14852 F:      drivers/s390/cio/
14853
14854 S390 DASD DRIVER
14855 M:      Stefan Haberland <[email protected]>
14856 M:      Jan Hoeppner <[email protected]>
14857 L:      [email protected]
14858 S:      Supported
14859 W:      http://www.ibm.com/developerworks/linux/linux390/
14860 F:      block/partitions/ibm.c
14861 F:      drivers/s390/block/dasd*
14862 F:      include/linux/dasd_mod.h
14863
14864 S390 IOMMU (PCI)
14865 M:      Gerald Schaefer <[email protected]>
14866 L:      [email protected]
14867 S:      Supported
14868 W:      http://www.ibm.com/developerworks/linux/linux390/
14869 F:      drivers/iommu/s390-iommu.c
14870
14871 S390 IUCV NETWORK LAYER
14872 M:      Julian Wiedmann <[email protected]>
14873 M:      Karsten Graul <[email protected]>
14874 M:      Ursula Braun <[email protected]>
14875 L:      [email protected]
14876 S:      Supported
14877 W:      http://www.ibm.com/developerworks/linux/linux390/
14878 F:      drivers/s390/net/*iucv*
14879 F:      include/net/iucv/
14880 F:      net/iucv/
14881
14882 S390 NETWORK DRIVERS
14883 M:      Julian Wiedmann <[email protected]>
14884 M:      Karsten Graul <[email protected]>
14885 M:      Ursula Braun <[email protected]>
14886 L:      [email protected]
14887 S:      Supported
14888 W:      http://www.ibm.com/developerworks/linux/linux390/
14889 F:      drivers/s390/net/
14890
14891 S390 PCI SUBSYSTEM
14892 M:      Niklas Schnelle <[email protected]>
14893 M:      Gerald Schaefer <[email protected]>
14894 L:      [email protected]
14895 S:      Supported
14896 W:      http://www.ibm.com/developerworks/linux/linux390/
14897 F:      arch/s390/pci/
14898 F:      drivers/pci/hotplug/s390_pci_hpc.c
14899 F:      Documentation/s390/pci.rst
14900
14901 S390 VFIO AP DRIVER
14902 M:      Tony Krowiak <[email protected]>
14903 M:      Pierre Morel <[email protected]>
14904 M:      Halil Pasic <[email protected]>
14905 L:      [email protected]
14906 S:      Supported
14907 W:      http://www.ibm.com/developerworks/linux/linux390/
14908 F:      Documentation/s390/vfio-ap.rst
14909 F:      drivers/s390/crypto/vfio_ap_drv.c
14910 F:      drivers/s390/crypto/vfio_ap_ops.c
14911 F:      drivers/s390/crypto/vfio_ap_private.h
14912
14913 S390 VFIO-CCW DRIVER
14914 M:      Cornelia Huck <[email protected]>
14915 M:      Eric Farman <[email protected]>
14916 R:      Halil Pasic <[email protected]>
14917 L:      [email protected]
14918 L:      [email protected]
14919 S:      Supported
14920 F:      Documentation/s390/vfio-ccw.rst
14921 F:      drivers/s390/cio/vfio_ccw*
14922 F:      include/uapi/linux/vfio_ccw.h
14923
14924 S390 ZCRYPT DRIVER
14925 M:      Harald Freudenberger <[email protected]>
14926 L:      [email protected]
14927 S:      Supported
14928 W:      http://www.ibm.com/developerworks/linux/linux390/
14929 F:      drivers/s390/crypto/
14930
14931 S390 ZFCP DRIVER
14932 M:      Steffen Maier <[email protected]>
14933 M:      Benjamin Block <[email protected]>
14934 L:      [email protected]
14935 S:      Supported
14936 W:      http://www.ibm.com/developerworks/linux/linux390/
14937 F:      drivers/s390/scsi/zfcp_*
14938
14939 S3C24XX SD/MMC Driver
14940 M:      Ben Dooks <[email protected]>
14941 L:      [email protected] (moderated for non-subscribers)
14942 S:      Supported
14943 F:      drivers/mmc/host/s3cmci.*
14944
14945 SAA6588 RDS RECEIVER DRIVER
14946 M:      Hans Verkuil <[email protected]>
14947 L:      [email protected]
14948 S:      Odd Fixes
14949 W:      https://linuxtv.org
14950 T:      git git://linuxtv.org/media_tree.git
14951 F:      drivers/media/i2c/saa6588*
14952
14953 SAA7134 VIDEO4LINUX DRIVER
14954 M:      Mauro Carvalho Chehab <[email protected]>
14955 L:      [email protected]
14956 S:      Odd fixes
14957 W:      https://linuxtv.org
14958 T:      git git://linuxtv.org/media_tree.git
14959 F:      Documentation/driver-api/media/drivers/saa7134*
14960 F:      drivers/media/pci/saa7134/
14961
14962 SAA7146 VIDEO4LINUX-2 DRIVER
14963 M:      Hans Verkuil <[email protected]>
14964 L:      [email protected]
14965 S:      Maintained
14966 T:      git git://linuxtv.org/media_tree.git
14967 F:      drivers/media/common/saa7146/
14968 F:      drivers/media/pci/saa7146/
14969 F:      include/media/drv-intf/saa7146*
14970
14971 SAFESETID SECURITY MODULE
14972 M:      Micah Morton <[email protected]>
14973 S:      Supported
14974 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14975 F:      security/safesetid/
14976
14977 SAMSUNG AUDIO (ASoC) DRIVERS
14978 M:      Krzysztof Kozlowski <[email protected]>
14979 M:      Sangbeom Kim <[email protected]>
14980 M:      Sylwester Nawrocki <[email protected]>
14981 L:      [email protected] (moderated for non-subscribers)
14982 S:      Supported
14983 F:      Documentation/devicetree/bindings/sound/samsung*
14984 F:      sound/soc/samsung/
14985
14986 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14987 M:      Krzysztof Kozlowski <[email protected]>
14988 L:      [email protected]
14989 L:      [email protected]
14990 S:      Maintained
14991 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14992 F:      drivers/crypto/exynos-rng.c
14993
14994 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14995 M:      Łukasz Stelmach <[email protected]>
14996 L:      [email protected]
14997 S:      Maintained
14998 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14999 F:      drivers/char/hw_random/exynos-trng.c
15000
15001 SAMSUNG FRAMEBUFFER DRIVER
15002 M:      Jingoo Han <[email protected]>
15003 L:      [email protected]
15004 S:      Maintained
15005 F:      drivers/video/fbdev/s3c-fb.c
15006
15007 SAMSUNG LAPTOP DRIVER
15008 M:      Corentin Chary <[email protected]>
15009 L:      [email protected]
15010 S:      Maintained
15011 F:      drivers/platform/x86/samsung-laptop.c
15012
15013 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15014 M:      Sangbeom Kim <[email protected]>
15015 M:      Krzysztof Kozlowski <[email protected]>
15016 M:      Bartlomiej Zolnierkiewicz <[email protected]>
15017 L:      [email protected]
15018 L:      [email protected]
15019 S:      Supported
15020 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15021 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15022 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15023 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15024 F:      drivers/clk/clk-s2mps11.c
15025 F:      drivers/mfd/sec*.c
15026 F:      drivers/regulator/s2m*.c
15027 F:      drivers/regulator/s5m*.c
15028 F:      drivers/rtc/rtc-s5m.c
15029 F:      include/linux/mfd/samsung/
15030
15031 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15032 M:      Sylwester Nawrocki <[email protected]>
15033 L:      [email protected]
15034 L:      [email protected] (moderated for non-subscribers)
15035 S:      Maintained
15036 F:      drivers/media/platform/s3c-camif/
15037 F:      include/media/drv-intf/s3c_camif.h
15038
15039 SAMSUNG S3FWRN5 NFC DRIVER
15040 M:      Robert Baldyga <[email protected]>
15041 M:      Krzysztof Opasiak <[email protected]>
15042 L:      [email protected] (moderated for non-subscribers)
15043 S:      Supported
15044 F:      drivers/nfc/s3fwrn5
15045
15046 SAMSUNG S5C73M3 CAMERA DRIVER
15047 M:      Kyungmin Park <[email protected]>
15048 M:      Andrzej Hajda <[email protected]>
15049 L:      [email protected]
15050 S:      Supported
15051 F:      drivers/media/i2c/s5c73m3/*
15052
15053 SAMSUNG S5K5BAF CAMERA DRIVER
15054 M:      Kyungmin Park <[email protected]>
15055 M:      Andrzej Hajda <[email protected]>
15056 L:      [email protected]
15057 S:      Supported
15058 F:      drivers/media/i2c/s5k5baf.c
15059
15060 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15061 M:      Krzysztof Kozlowski <[email protected]>
15062 M:      Vladimir Zapolskiy <[email protected]>
15063 M:      Kamil Konieczny <[email protected]>
15064 L:      [email protected]
15065 L:      [email protected]
15066 S:      Maintained
15067 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15068 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15069 F:      drivers/crypto/s5p-sss.c
15070
15071 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15072 M:      Kyungmin Park <[email protected]>
15073 M:      Sylwester Nawrocki <[email protected]>
15074 L:      [email protected]
15075 S:      Supported
15076 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15077 F:      drivers/media/platform/exynos4-is/
15078
15079 SAMSUNG SOC CLOCK DRIVERS
15080 M:      Sylwester Nawrocki <[email protected]>
15081 M:      Tomasz Figa <[email protected]>
15082 M:      Chanwoo Choi <[email protected]>
15083 L:      [email protected] (moderated for non-subscribers)
15084 S:      Supported
15085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15086 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15087 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15088 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15089 F:      drivers/clk/samsung/
15090 F:      include/dt-bindings/clock/exynos*.h
15091
15092 SAMSUNG SPI DRIVERS
15093 M:      Kukjin Kim <[email protected]>
15094 M:      Krzysztof Kozlowski <[email protected]>
15095 M:      Andi Shyti <[email protected]>
15096 L:      [email protected]
15097 L:      [email protected] (moderated for non-subscribers)
15098 S:      Maintained
15099 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15100 F:      drivers/spi/spi-s3c*
15101 F:      include/linux/platform_data/spi-s3c64xx.h
15102
15103 SAMSUNG SXGBE DRIVERS
15104 M:      Byungho An <[email protected]>
15105 L:      [email protected]
15106 S:      Supported
15107 F:      drivers/net/ethernet/samsung/sxgbe/
15108
15109 SAMSUNG THERMAL DRIVER
15110 M:      Bartlomiej Zolnierkiewicz <[email protected]>
15111 L:      [email protected]
15112 L:      [email protected]
15113 S:      Supported
15114 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15115 F:      drivers/thermal/samsung/
15116
15117 SAMSUNG USB2 PHY DRIVER
15118 M:      Kamil Debski <[email protected]>
15119 M:      Sylwester Nawrocki <[email protected]>
15120 L:      [email protected]
15121 S:      Supported
15122 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15123 F:      Documentation/driver-api/phy/samsung-usb2.rst
15124 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15125 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15126 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15127 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15128 F:      drivers/phy/samsung/phy-samsung-usb2.c
15129 F:      drivers/phy/samsung/phy-samsung-usb2.h
15130
15131 SC1200 WDT DRIVER
15132 M:      Zwane Mwaikambo <[email protected]>
15133 S:      Maintained
15134 F:      drivers/watchdog/sc1200wdt.c
15135
15136 SCHEDULER
15137 M:      Ingo Molnar <[email protected]>
15138 M:      Peter Zijlstra <[email protected]>
15139 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
15140 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
15141 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
15142 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
15143 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
15144 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
15145 L:      [email protected]
15146 S:      Maintained
15147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15148 F:      include/linux/preempt.h
15149 F:      include/linux/sched.h
15150 F:      include/linux/wait.h
15151 F:      include/uapi/linux/sched.h
15152 F:      kernel/sched/
15153
15154 SCR24X CHIP CARD INTERFACE DRIVER
15155 M:      Lubomir Rintel <[email protected]>
15156 S:      Supported
15157 F:      drivers/char/pcmcia/scr24x_cs.c
15158
15159 SCSI CDROM DRIVER
15160 M:      Jens Axboe <[email protected]>
15161 L:      [email protected]
15162 S:      Maintained
15163 W:      http://www.kernel.dk
15164 F:      drivers/scsi/sr*
15165
15166 SCSI RDMA PROTOCOL (SRP) INITIATOR
15167 M:      Bart Van Assche <[email protected]>
15168 L:      [email protected]
15169 S:      Supported
15170 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15171 F:      drivers/infiniband/ulp/srp/
15172 F:      include/scsi/srp.h
15173
15174 SCSI RDMA PROTOCOL (SRP) TARGET
15175 M:      Bart Van Assche <[email protected]>
15176 L:      [email protected]
15177 L:      [email protected]
15178 S:      Supported
15179 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15180 F:      drivers/infiniband/ulp/srpt/
15181
15182 SCSI SG DRIVER
15183 M:      Doug Gilbert <[email protected]>
15184 L:      [email protected]
15185 S:      Maintained
15186 W:      http://sg.danny.cz/sg
15187 F:      Documentation/scsi/scsi-generic.rst
15188 F:      drivers/scsi/sg.c
15189 F:      include/scsi/sg.h
15190
15191 SCSI SUBSYSTEM
15192 M:      "James E.J. Bottomley" <[email protected]>
15193 M:      "Martin K. Petersen" <[email protected]>
15194 L:      [email protected]
15195 S:      Maintained
15196 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15199 F:      Documentation/devicetree/bindings/scsi/
15200 F:      drivers/scsi/
15201 F:      include/scsi/
15202
15203 SCSI TAPE DRIVER
15204 M:      Kai Mäkisara <[email protected]>
15205 L:      [email protected]
15206 S:      Maintained
15207 F:      Documentation/scsi/st.rst
15208 F:      drivers/scsi/st.*
15209 F:      drivers/scsi/st_*.h
15210
15211 SCSI TARGET SUBSYSTEM
15212 M:      "Martin K. Petersen" <[email protected]>
15213 L:      [email protected]
15214 L:      [email protected]
15215 S:      Supported
15216 W:      http://www.linux-iscsi.org
15217 Q:      https://patchwork.kernel.org/project/target-devel/list/
15218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15219 F:      Documentation/target/
15220 F:      drivers/target/
15221 F:      include/target/
15222
15223 SCTP PROTOCOL
15224 M:      Vlad Yasevich <[email protected]>
15225 M:      Neil Horman <[email protected]>
15226 M:      Marcelo Ricardo Leitner <[email protected]>
15227 L:      [email protected]
15228 S:      Maintained
15229 W:      http://lksctp.sourceforge.net
15230 F:      Documentation/networking/sctp.rst
15231 F:      include/linux/sctp.h
15232 F:      include/net/sctp/
15233 F:      include/uapi/linux/sctp.h
15234 F:      net/sctp/
15235
15236 SCx200 CPU SUPPORT
15237 M:      Jim Cromie <[email protected]>
15238 S:      Odd Fixes
15239 F:      Documentation/i2c/busses/scx200_acb.rst
15240 F:      arch/x86/platform/scx200/
15241 F:      drivers/i2c/busses/scx200*
15242 F:      drivers/mtd/maps/scx200_docflash.c
15243 F:      drivers/watchdog/scx200_wdt.c
15244 F:      include/linux/scx200.h
15245
15246 SCx200 GPIO DRIVER
15247 M:      Jim Cromie <[email protected]>
15248 S:      Maintained
15249 F:      drivers/char/scx200_gpio.c
15250 F:      include/linux/scx200_gpio.h
15251
15252 SCx200 HRT CLOCKSOURCE DRIVER
15253 M:      Jim Cromie <[email protected]>
15254 S:      Maintained
15255 F:      drivers/clocksource/scx200_hrt.c
15256
15257 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15258 M:      Sascha Sommer <[email protected]>
15259 L:      [email protected] (subscribers-only)
15260 S:      Maintained
15261 F:      drivers/mmc/host/sdricoh_cs.c
15262
15263 SECO BOARDS CEC DRIVER
15264 M:      Ettore Chimenti <[email protected]>
15265 S:      Maintained
15266 F:      drivers/media/platform/seco-cec/seco-cec.c
15267 F:      drivers/media/platform/seco-cec/seco-cec.h
15268
15269 SECURE COMPUTING
15270 M:      Kees Cook <[email protected]>
15271 R:      Andy Lutomirski <[email protected]>
15272 R:      Will Drewry <[email protected]>
15273 S:      Supported
15274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15275 F:      Documentation/userspace-api/seccomp_filter.rst
15276 F:      include/linux/seccomp.h
15277 F:      include/uapi/linux/seccomp.h
15278 F:      kernel/seccomp.c
15279 F:      tools/testing/selftests/kselftest_harness.h
15280 F:      tools/testing/selftests/seccomp/*
15281 K:      \bsecure_computing
15282 K:      \bTIF_SECCOMP\b
15283
15284 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15285 M:      Al Cooper <[email protected]>
15286 L:      [email protected]
15287 L:      [email protected]
15288 S:      Maintained
15289 F:      drivers/mmc/host/sdhci-brcmstb*
15290
15291 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15292 M:      Adrian Hunter <[email protected]>
15293 L:      [email protected]
15294 S:      Maintained
15295 F:      drivers/mmc/host/sdhci*
15296 F:      include/linux/mmc/sdhci*
15297
15298 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15299 M:      Ludovic Desroches <[email protected]>
15300 L:      [email protected]
15301 S:      Supported
15302 F:      drivers/mmc/host/sdhci-of-at91.c
15303
15304 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15305 M:      Ben Dooks <[email protected]>
15306 M:      Jaehoon Chung <[email protected]>
15307 L:      [email protected]
15308 S:      Maintained
15309 F:      drivers/mmc/host/sdhci-s3c*
15310
15311 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15312 M:      Viresh Kumar <[email protected]>
15313 L:      [email protected]
15314 S:      Maintained
15315 F:      drivers/mmc/host/sdhci-spear.c
15316
15317 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15318 M:      Kishon Vijay Abraham I <[email protected]>
15319 L:      [email protected]
15320 S:      Maintained
15321 F:      drivers/mmc/host/sdhci-omap.c
15322
15323 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15324 M:      Jonathan Derrick <[email protected]>
15325 M:      Revanth Rajashekar <[email protected]>
15326 L:      [email protected]
15327 S:      Supported
15328 F:      block/opal_proto.h
15329 F:      block/sed*
15330 F:      include/linux/sed*
15331 F:      include/uapi/linux/sed*
15332
15333 SECURITY CONTACT
15334 M:      Security Officers <[email protected]>
15335 S:      Supported
15336
15337 SECURITY SUBSYSTEM
15338 M:      James Morris <[email protected]>
15339 M:      "Serge E. Hallyn" <[email protected]>
15340 L:      [email protected] (suggested Cc:)
15341 S:      Supported
15342 W:      http://kernsec.org/
15343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15344 F:      security/
15345 X:      security/selinux/
15346
15347 SELINUX SECURITY MODULE
15348 M:      Paul Moore <[email protected]>
15349 M:      Stephen Smalley <[email protected]>
15350 M:      Eric Paris <[email protected]>
15351 L:      [email protected]
15352 S:      Supported
15353 W:      https://selinuxproject.org
15354 W:      https://github.com/SELinuxProject
15355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15356 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15357 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15358 F:      Documentation/admin-guide/LSM/SELinux.rst
15359 F:      include/uapi/linux/selinux_netlink.h
15360 F:      scripts/selinux/
15361 F:      security/selinux/
15362
15363 SENSABLE PHANTOM
15364 M:      Jiri Slaby <[email protected]>
15365 S:      Maintained
15366 F:      drivers/misc/phantom.c
15367 F:      include/uapi/linux/phantom.h
15368
15369 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15370 M:      Tomasz Duszynski <[email protected]>
15371 S:      Maintained
15372 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15373 F:      drivers/iio/chemical/sps30.c
15374
15375 SERIAL DEVICE BUS
15376 M:      Rob Herring <[email protected]>
15377 L:      [email protected]
15378 S:      Maintained
15379 F:      Documentation/devicetree/bindings/serial/serial.yaml
15380 F:      drivers/tty/serdev/
15381 F:      include/linux/serdev.h
15382
15383 SERIAL DRIVERS
15384 M:      Greg Kroah-Hartman <[email protected]>
15385 L:      [email protected]
15386 S:      Maintained
15387 F:      Documentation/devicetree/bindings/serial/
15388 F:      drivers/tty/serial/
15389
15390 SERIAL IR RECEIVER
15391 M:      Sean Young <[email protected]>
15392 L:      [email protected]
15393 S:      Maintained
15394 F:      drivers/media/rc/serial_ir.c
15395
15396 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15397 M:      Srinivas Kandagatla <[email protected]>
15398 L:      [email protected] (moderated for non-subscribers)
15399 S:      Maintained
15400 F:      Documentation/devicetree/bindings/slimbus/
15401 F:      drivers/slimbus/
15402 F:      include/linux/slimbus.h
15403
15404 SFC NETWORK DRIVER
15405 M:      Solarflare linux maintainers <[email protected]>
15406 M:      Edward Cree <[email protected]>
15407 M:      Martin Habets <[email protected]>
15408 L:      [email protected]
15409 S:      Supported
15410 F:      drivers/net/ethernet/sfc/
15411
15412 SFF/SFP/SFP+ MODULE SUPPORT
15413 M:      Russell King <[email protected]>
15414 L:      [email protected]
15415 S:      Maintained
15416 F:      drivers/net/phy/phylink.c
15417 F:      drivers/net/phy/sfp*
15418 F:      include/linux/phylink.h
15419 F:      include/linux/sfp.h
15420 K:      phylink
15421
15422 SGI GRU DRIVER
15423 M:      Dimitri Sivanich <[email protected]>
15424 S:      Maintained
15425 F:      drivers/misc/sgi-gru/
15426
15427 SGI XP/XPC/XPNET DRIVER
15428 M:      Cliff Whickman <[email protected]>
15429 M:      Robin Holt <[email protected]>
15430 S:      Maintained
15431 F:      drivers/misc/sgi-xp/
15432
15433 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15434 M:      Ursula Braun <[email protected]>
15435 M:      Karsten Graul <[email protected]>
15436 L:      [email protected]
15437 S:      Supported
15438 W:      http://www.ibm.com/developerworks/linux/linux390/
15439 F:      net/smc/
15440
15441 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15442 M:      Linus Walleij <[email protected]>
15443 L:      [email protected]
15444 S:      Maintained
15445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15446 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15447 F:      drivers/iio/light/gp2ap002.c
15448
15449 SHARP RJ54N1CB0C SENSOR DRIVER
15450 M:      Jacopo Mondi <[email protected]>
15451 L:      [email protected]
15452 S:      Odd fixes
15453 T:      git git://linuxtv.org/media_tree.git
15454 F:      drivers/media/i2c/rj54n1cb0c.c
15455 F:      include/media/i2c/rj54n1cb0c.h
15456
15457 SH_VOU V4L2 OUTPUT DRIVER
15458 L:      [email protected]
15459 S:      Orphan
15460 F:      drivers/media/platform/sh_vou.c
15461 F:      include/media/drv-intf/sh_vou.h
15462
15463 SI2157 MEDIA DRIVER
15464 M:      Antti Palosaari <[email protected]>
15465 L:      [email protected]
15466 S:      Maintained
15467 W:      https://linuxtv.org
15468 W:      http://palosaari.fi/linux/
15469 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15470 T:      git git://linuxtv.org/anttip/media_tree.git
15471 F:      drivers/media/tuners/si2157*
15472
15473 SI2165 MEDIA DRIVER
15474 M:      Matthias Schwarzott <[email protected]>
15475 L:      [email protected]
15476 S:      Maintained
15477 W:      https://linuxtv.org
15478 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15479 F:      drivers/media/dvb-frontends/si2165*
15480
15481 SI2168 MEDIA DRIVER
15482 M:      Antti Palosaari <[email protected]>
15483 L:      [email protected]
15484 S:      Maintained
15485 W:      https://linuxtv.org
15486 W:      http://palosaari.fi/linux/
15487 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15488 T:      git git://linuxtv.org/anttip/media_tree.git
15489 F:      drivers/media/dvb-frontends/si2168*
15490
15491 SI470X FM RADIO RECEIVER I2C DRIVER
15492 M:      Hans Verkuil <[email protected]>
15493 L:      [email protected]
15494 S:      Odd Fixes
15495 W:      https://linuxtv.org
15496 T:      git git://linuxtv.org/media_tree.git
15497 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15498
15499 SI470X FM RADIO RECEIVER USB DRIVER
15500 M:      Hans Verkuil <[email protected]>
15501 L:      [email protected]
15502 S:      Maintained
15503 W:      https://linuxtv.org
15504 T:      git git://linuxtv.org/media_tree.git
15505 F:      drivers/media/radio/si470x/radio-si470x-common.c
15506 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15507 F:      drivers/media/radio/si470x/radio-si470x.h
15508
15509 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15510 M:      Eduardo Valentin <[email protected]>
15511 L:      [email protected]
15512 S:      Odd Fixes
15513 W:      https://linuxtv.org
15514 T:      git git://linuxtv.org/media_tree.git
15515 F:      drivers/media/radio/si4713/si4713.?
15516
15517 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15518 M:      Eduardo Valentin <[email protected]>
15519 L:      [email protected]
15520 S:      Odd Fixes
15521 W:      https://linuxtv.org
15522 T:      git git://linuxtv.org/media_tree.git
15523 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15524
15525 SI4713 FM RADIO TRANSMITTER USB DRIVER
15526 M:      Hans Verkuil <[email protected]>
15527 L:      [email protected]
15528 S:      Maintained
15529 W:      https://linuxtv.org
15530 T:      git git://linuxtv.org/media_tree.git
15531 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15532
15533 SIANO DVB DRIVER
15534 M:      Mauro Carvalho Chehab <[email protected]>
15535 L:      [email protected]
15536 S:      Odd fixes
15537 W:      https://linuxtv.org
15538 T:      git git://linuxtv.org/media_tree.git
15539 F:      drivers/media/common/siano/
15540 F:      drivers/media/mmc/siano/
15541 F:      drivers/media/usb/siano/
15542 F:      drivers/media/usb/siano/
15543
15544 SIFIVE DRIVERS
15545 M:      Palmer Dabbelt <[email protected]>
15546 M:      Paul Walmsley <[email protected]>
15547 L:      [email protected]
15548 S:      Supported
15549 T:      git git://github.com/sifive/riscv-linux.git
15550 N:      sifive
15551 K:      [^@]sifive
15552
15553 SIFIVE FU540 SYSTEM-ON-CHIP
15554 M:      Paul Walmsley <[email protected]>
15555 M:      Palmer Dabbelt <[email protected]>
15556 L:      [email protected]
15557 S:      Supported
15558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15559 N:      fu540
15560 K:      fu540
15561
15562 SIFIVE PDMA DRIVER
15563 M:      Green Wan <[email protected]>
15564 S:      Maintained
15565 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15566 F:      drivers/dma/sf-pdma/
15567
15568 SILEAD TOUCHSCREEN DRIVER
15569 M:      Hans de Goede <[email protected]>
15570 L:      [email protected]
15571 L:      [email protected]
15572 S:      Maintained
15573 F:      drivers/input/touchscreen/silead.c
15574 F:      drivers/platform/x86/touchscreen_dmi.c
15575
15576 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15577 M:      Jérôme Pouiller <[email protected]>
15578 S:      Supported
15579 F:      drivers/staging/wfx/
15580
15581 SILICON MOTION SM712 FRAME BUFFER DRIVER
15582 M:      Sudip Mukherjee <[email protected]>
15583 M:      Teddy Wang <[email protected]>
15584 M:      Sudip Mukherjee <[email protected]>
15585 L:      [email protected]
15586 S:      Maintained
15587 F:      Documentation/fb/sm712fb.rst
15588 F:      drivers/video/fbdev/sm712*
15589
15590 SIMPLE FIRMWARE INTERFACE (SFI)
15591 S:      Obsolete
15592 W:      http://simplefirmware.org/
15593 F:      arch/x86/platform/sfi/
15594 F:      drivers/sfi/
15595 F:      include/linux/sfi*.h
15596
15597 SIMPLEFB FB DRIVER
15598 M:      Hans de Goede <[email protected]>
15599 L:      [email protected]
15600 S:      Maintained
15601 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15602 F:      drivers/video/fbdev/simplefb.c
15603 F:      include/linux/platform_data/simplefb.h
15604
15605 SIMTEC EB110ATX (Chalice CATS)
15606 M:      Vincent Sanders <[email protected]>
15607 M:      Simtec Linux Team <[email protected]>
15608 S:      Supported
15609 W:      http://www.simtec.co.uk/products/EB110ATX/
15610
15611 SIMTEC EB2410ITX (BAST)
15612 M:      Vincent Sanders <[email protected]>
15613 M:      Simtec Linux Team <[email protected]>
15614 S:      Supported
15615 W:      http://www.simtec.co.uk/products/EB2410ITX/
15616 F:      arch/arm/mach-s3c24xx/bast-ide.c
15617 F:      arch/arm/mach-s3c24xx/bast-irq.c
15618 F:      arch/arm/mach-s3c24xx/mach-bast.c
15619
15620 SIOX
15621 M:      Thorsten Scherer <[email protected]>
15622 M:      Uwe Kleine-König <[email protected]>
15623 R:      Pengutronix Kernel Team <[email protected]>
15624 S:      Supported
15625 F:      drivers/gpio/gpio-siox.c
15626 F:      drivers/siox/*
15627 F:      include/trace/events/siox.h
15628
15629 SIPHASH PRF ROUTINES
15630 M:      Jason A. Donenfeld <[email protected]>
15631 S:      Maintained
15632 F:      include/linux/siphash.h
15633 F:      lib/siphash.c
15634 F:      lib/test_siphash.c
15635
15636 SIS 190 ETHERNET DRIVER
15637 M:      Francois Romieu <[email protected]>
15638 L:      [email protected]
15639 S:      Maintained
15640 F:      drivers/net/ethernet/sis/sis190.c
15641
15642 SIS 900/7016 FAST ETHERNET DRIVER
15643 M:      Daniele Venzano <[email protected]>
15644 L:      [email protected]
15645 S:      Maintained
15646 W:      http://www.brownhat.org/sis900.html
15647 F:      drivers/net/ethernet/sis/sis900.*
15648
15649 SIS FRAMEBUFFER DRIVER
15650 M:      Thomas Winischhofer <[email protected]>
15651 S:      Maintained
15652 W:      http://www.winischhofer.net/linuxsisvga.shtml
15653 F:      Documentation/fb/sisfb.rst
15654 F:      drivers/video/fbdev/sis/
15655 F:      include/video/sisfb.h
15656
15657 SIS USB2VGA DRIVER
15658 M:      Thomas Winischhofer <[email protected]>
15659 S:      Maintained
15660 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15661 F:      drivers/usb/misc/sisusbvga/
15662
15663 SLAB ALLOCATOR
15664 M:      Christoph Lameter <[email protected]>
15665 M:      Pekka Enberg <[email protected]>
15666 M:      David Rientjes <[email protected]>
15667 M:      Joonsoo Kim <[email protected]>
15668 M:      Andrew Morton <[email protected]>
15669 L:      [email protected]
15670 S:      Maintained
15671 F:      include/linux/sl?b*.h
15672 F:      mm/sl?b*
15673
15674 SLEEPABLE READ-COPY UPDATE (SRCU)
15675 M:      Lai Jiangshan <[email protected]>
15676 M:      "Paul E. McKenney" <[email protected]>
15677 M:      Josh Triplett <[email protected]>
15678 R:      Steven Rostedt <[email protected]>
15679 R:      Mathieu Desnoyers <[email protected]>
15680 L:      [email protected]
15681 S:      Supported
15682 W:      http://www.rdrop.com/users/paulmck/RCU/
15683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15684 F:      include/linux/srcu*.h
15685 F:      kernel/rcu/srcu*.c
15686
15687 SMACK SECURITY MODULE
15688 M:      Casey Schaufler <[email protected]>
15689 L:      [email protected]
15690 S:      Maintained
15691 W:      http://schaufler-ca.com
15692 T:      git git://github.com/cschaufler/smack-next
15693 F:      Documentation/admin-guide/LSM/Smack.rst
15694 F:      security/smack/
15695
15696 SMC91x ETHERNET DRIVER
15697 M:      Nicolas Pitre <[email protected]>
15698 S:      Odd Fixes
15699 F:      drivers/net/ethernet/smsc/smc91x.*
15700
15701 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
15702 M:      Mark Rutland <[email protected]>
15703 M:      Lorenzo Pieralisi <[email protected]>
15704 M:      Sudeep Holla <[email protected]>
15705 L:      [email protected]
15706 S:      Maintained
15707 F:      drivers/firmware/smccc/
15708 F:      include/linux/arm-smccc.h
15709
15710 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15711 M:      Sakari Ailus <[email protected]>
15712 L:      [email protected]
15713 S:      Maintained
15714 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15715 F:      drivers/media/i2c/smiapp-pll.c
15716 F:      drivers/media/i2c/smiapp-pll.h
15717 F:      drivers/media/i2c/smiapp/
15718 F:      include/uapi/linux/smiapp.h
15719
15720 SMM665 HARDWARE MONITOR DRIVER
15721 M:      Guenter Roeck <[email protected]>
15722 L:      [email protected]
15723 S:      Maintained
15724 F:      Documentation/hwmon/smm665.rst
15725 F:      drivers/hwmon/smm665.c
15726
15727 SMSC EMC2103 HARDWARE MONITOR DRIVER
15728 M:      Steve Glendinning <[email protected]>
15729 L:      [email protected]
15730 S:      Maintained
15731 F:      Documentation/hwmon/emc2103.rst
15732 F:      drivers/hwmon/emc2103.c
15733
15734 SMSC SCH5627 HARDWARE MONITOR DRIVER
15735 M:      Hans de Goede <[email protected]>
15736 L:      [email protected]
15737 S:      Supported
15738 F:      Documentation/hwmon/sch5627.rst
15739 F:      drivers/hwmon/sch5627.c
15740
15741 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15742 M:      Steve Glendinning <[email protected]>
15743 L:      [email protected]
15744 S:      Maintained
15745 F:      drivers/video/fbdev/smscufx.c
15746
15747 SMSC47B397 HARDWARE MONITOR DRIVER
15748 M:      Jean Delvare <[email protected]>
15749 L:      [email protected]
15750 S:      Maintained
15751 F:      Documentation/hwmon/smsc47b397.rst
15752 F:      drivers/hwmon/smsc47b397.c
15753
15754 SMSC911x ETHERNET DRIVER
15755 M:      Steve Glendinning <[email protected]>
15756 L:      [email protected]
15757 S:      Maintained
15758 F:      drivers/net/ethernet/smsc/smsc911x.*
15759 F:      include/linux/smsc911x.h
15760
15761 SMSC9420 PCI ETHERNET DRIVER
15762 M:      Steve Glendinning <[email protected]>
15763 L:      [email protected]
15764 S:      Maintained
15765 F:      drivers/net/ethernet/smsc/smsc9420.*
15766
15767 SOC-CAMERA V4L2 SUBSYSTEM
15768 L:      [email protected]
15769 S:      Orphan
15770 T:      git git://linuxtv.org/media_tree.git
15771 F:      drivers/staging/media/soc_camera/
15772 F:      include/media/soc_camera.h
15773
15774 SOCIONEXT (SNI) AVE NETWORK DRIVER
15775 M:      Kunihiko Hayashi <[email protected]>
15776 L:      [email protected]
15777 S:      Maintained
15778 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
15779 F:      drivers/net/ethernet/socionext/sni_ave.c
15780
15781 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15782 M:      Jassi Brar <[email protected]>
15783 M:      Ilias Apalodimas <[email protected]>
15784 L:      [email protected]
15785 S:      Maintained
15786 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15787 F:      drivers/net/ethernet/socionext/netsec.c
15788
15789 SOCIONEXT (SNI) Synquacer SPI DRIVER
15790 M:      Masahisa Kojima <[email protected]>
15791 M:      Jassi Brar <[email protected]>
15792 L:      [email protected]
15793 S:      Maintained
15794 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15795 F:      drivers/spi/spi-synquacer.c
15796
15797 SOCIONEXT SYNQUACER I2C DRIVER
15798 M:      Ard Biesheuvel <[email protected]>
15799 L:      [email protected]
15800 S:      Maintained
15801 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15802 F:      drivers/i2c/busses/i2c-synquacer.c
15803
15804 SOCIONEXT UNIPHIER SOUND DRIVER
15805 L:      [email protected] (moderated for non-subscribers)
15806 S:      Orphan
15807 F:      sound/soc/uniphier/
15808
15809 SOEKRIS NET48XX LED SUPPORT
15810 M:      Chris Boot <[email protected]>
15811 S:      Maintained
15812 F:      drivers/leds/leds-net48xx.c
15813
15814 SOFT-IWARP DRIVER (siw)
15815 M:      Bernard Metzler <[email protected]>
15816 L:      [email protected]
15817 S:      Supported
15818 F:      drivers/infiniband/sw/siw/
15819 F:      include/uapi/rdma/siw-abi.h
15820
15821 SOFT-ROCE DRIVER (rxe)
15822 M:      Zhu Yanjun <[email protected]>
15823 L:      [email protected]
15824 S:      Supported
15825 F:      drivers/infiniband/sw/rxe/
15826 F:      include/uapi/rdma/rdma_user_rxe.h
15827
15828 SOFTLOGIC 6x10 MPEG CODEC
15829 M:      Bluecherry Maintainers <[email protected]>
15830 M:      Anton Sviridenko <[email protected]>
15831 M:      Andrey Utkin <[email protected]>
15832 M:      Andrey Utkin <[email protected]>
15833 M:      Ismael Luceno <[email protected]>
15834 L:      [email protected]
15835 S:      Supported
15836 F:      drivers/media/pci/solo6x10/
15837
15838 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15839 M:      James Morse <[email protected]>
15840 L:      [email protected]
15841 S:      Maintained
15842 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15843 F:      drivers/firmware/arm_sdei.c
15844 F:      include/linux/arm_sdei.h
15845 F:      include/uapi/linux/arm_sdei.h
15846
15847 SOFTWARE RAID (Multiple Disks) SUPPORT
15848 M:      Song Liu <[email protected]>
15849 L:      [email protected]
15850 S:      Supported
15851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15852 F:      drivers/md/Kconfig
15853 F:      drivers/md/Makefile
15854 F:      drivers/md/md*
15855 F:      drivers/md/raid*
15856 F:      include/linux/raid/
15857 F:      include/uapi/linux/raid/
15858
15859 SOLIDRUN CLEARFOG SUPPORT
15860 M:      Russell King <[email protected]>
15861 S:      Maintained
15862 F:      arch/arm/boot/dts/armada-388-clearfog*
15863 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15864
15865 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15866 M:      Russell King <[email protected]>
15867 S:      Maintained
15868 F:      arch/arm/boot/dts/imx6*-cubox-i*
15869 F:      arch/arm/boot/dts/imx6*-hummingboard*
15870 F:      arch/arm/boot/dts/imx6*-sr-*
15871
15872 SONIC NETWORK DRIVER
15873 M:      Thomas Bogendoerfer <[email protected]>
15874 L:      [email protected]
15875 S:      Maintained
15876 F:      drivers/net/ethernet/natsemi/sonic.*
15877
15878 SONICS SILICON BACKPLANE DRIVER (SSB)
15879 M:      Michael Buesch <[email protected]>
15880 L:      [email protected]
15881 S:      Maintained
15882 F:      drivers/ssb/
15883 F:      include/linux/ssb/
15884
15885 SONY IMX214 SENSOR DRIVER
15886 M:      Ricardo Ribalda <[email protected]>
15887 L:      [email protected]
15888 S:      Maintained
15889 T:      git git://linuxtv.org/media_tree.git
15890 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15891 F:      drivers/media/i2c/imx214.c
15892
15893 SONY IMX219 SENSOR DRIVER
15894 M:      Dave Stevenson <[email protected]>
15895 L:      [email protected]
15896 S:      Maintained
15897 T:      git git://linuxtv.org/media_tree.git
15898 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15899 F:      drivers/media/i2c/imx219.c
15900
15901 SONY IMX258 SENSOR DRIVER
15902 M:      Sakari Ailus <[email protected]>
15903 L:      [email protected]
15904 S:      Maintained
15905 T:      git git://linuxtv.org/media_tree.git
15906 F:      drivers/media/i2c/imx258.c
15907
15908 SONY IMX274 SENSOR DRIVER
15909 M:      Leon Luo <[email protected]>
15910 L:      [email protected]
15911 S:      Maintained
15912 T:      git git://linuxtv.org/media_tree.git
15913 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15914 F:      drivers/media/i2c/imx274.c
15915
15916 SONY IMX290 SENSOR DRIVER
15917 M:      Manivannan Sadhasivam <[email protected]>
15918 L:      [email protected]
15919 S:      Maintained
15920 T:      git git://linuxtv.org/media_tree.git
15921 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15922 F:      drivers/media/i2c/imx290.c
15923
15924 SONY IMX319 SENSOR DRIVER
15925 M:      Bingbu Cao <[email protected]>
15926 L:      [email protected]
15927 S:      Maintained
15928 T:      git git://linuxtv.org/media_tree.git
15929 F:      drivers/media/i2c/imx319.c
15930
15931 SONY IMX355 SENSOR DRIVER
15932 M:      Tianshu Qiu <[email protected]>
15933 L:      [email protected]
15934 S:      Maintained
15935 T:      git git://linuxtv.org/media_tree.git
15936 F:      drivers/media/i2c/imx355.c
15937
15938 SONY MEMORYSTICK SUBSYSTEM
15939 M:      Maxim Levitsky <[email protected]>
15940 M:      Alex Dubov <[email protected]>
15941 M:      Ulf Hansson <[email protected]>
15942 L:      [email protected]
15943 S:      Maintained
15944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15945 F:      drivers/memstick/
15946 F:      include/linux/memstick.h
15947
15948 SONY VAIO CONTROL DEVICE DRIVER
15949 M:      Mattia Dongili <[email protected]>
15950 L:      [email protected]
15951 S:      Maintained
15952 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15953 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15954 F:      drivers/char/sonypi.c
15955 F:      drivers/platform/x86/sony-laptop.c
15956 F:      include/linux/sony-laptop.h
15957
15958 SOUND
15959 M:      Jaroslav Kysela <[email protected]>
15960 M:      Takashi Iwai <[email protected]>
15961 L:      [email protected] (moderated for non-subscribers)
15962 S:      Maintained
15963 W:      http://www.alsa-project.org/
15964 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15966 F:      Documentation/sound/
15967 F:      include/sound/
15968 F:      include/uapi/sound/
15969 F:      sound/
15970
15971 SOUND - COMPRESSED AUDIO
15972 M:      Vinod Koul <[email protected]>
15973 L:      [email protected] (moderated for non-subscribers)
15974 S:      Supported
15975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15976 F:      Documentation/sound/designs/compress-offload.rst
15977 F:      include/sound/compress_driver.h
15978 F:      include/uapi/sound/compress_*
15979 F:      sound/core/compress_offload.c
15980 F:      sound/soc/soc-compress.c
15981
15982 SOUND - DMAENGINE HELPERS
15983 M:      Lars-Peter Clausen <[email protected]>
15984 S:      Supported
15985 F:      include/sound/dmaengine_pcm.h
15986 F:      sound/core/pcm_dmaengine.c
15987 F:      sound/soc/soc-generic-dmaengine-pcm.c
15988
15989 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15990 M:      Liam Girdwood <[email protected]>
15991 M:      Mark Brown <[email protected]>
15992 L:      [email protected] (moderated for non-subscribers)
15993 S:      Supported
15994 W:      http://alsa-project.org/main/index.php/ASoC
15995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15996 F:      Documentation/devicetree/bindings/sound/
15997 F:      Documentation/sound/soc/
15998 F:      include/dt-bindings/sound/
15999 F:      include/sound/soc*
16000 F:      sound/soc/
16001
16002 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16003 M:      Pierre-Louis Bossart <[email protected]>
16004 M:      Liam Girdwood <[email protected]>
16005 M:      Ranjani Sridharan <[email protected]>
16006 M:      Kai Vehmanen <[email protected]>
16007 M:      Daniel Baluta <[email protected]>
16008 L:      [email protected] (moderated for non-subscribers)
16009 S:      Supported
16010 W:      https://github.com/thesofproject/linux/
16011 F:      sound/soc/sof/
16012
16013 SOUNDWIRE SUBSYSTEM
16014 M:      Vinod Koul <[email protected]>
16015 M:      Sanyog Kale <[email protected]>
16016 R:      Pierre-Louis Bossart <[email protected]>
16017 L:      [email protected] (moderated for non-subscribers)
16018 S:      Supported
16019 F:      Documentation/driver-api/soundwire/
16020 F:      drivers/soundwire/
16021 F:      include/linux/soundwire/
16022
16023 SP2 MEDIA DRIVER
16024 M:      Olli Salonen <[email protected]>
16025 L:      [email protected]
16026 S:      Maintained
16027 W:      https://linuxtv.org
16028 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16029 F:      drivers/media/dvb-frontends/sp2*
16030
16031 SPARC + UltraSPARC (sparc/sparc64)
16032 M:      "David S. Miller" <[email protected]>
16033 L:      [email protected]
16034 S:      Maintained
16035 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16038 F:      arch/sparc/
16039 F:      drivers/sbus/
16040
16041 SPARC SERIAL DRIVERS
16042 M:      "David S. Miller" <[email protected]>
16043 L:      [email protected]
16044 S:      Maintained
16045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16047 F:      drivers/tty/serial/suncore.c
16048 F:      drivers/tty/serial/sunhv.c
16049 F:      drivers/tty/serial/sunsab.c
16050 F:      drivers/tty/serial/sunsab.h
16051 F:      drivers/tty/serial/sunsu.c
16052 F:      drivers/tty/serial/sunzilog.c
16053 F:      drivers/tty/serial/sunzilog.h
16054 F:      drivers/tty/vcc.c
16055 F:      include/linux/sunserialcore.h
16056
16057 SPARSE CHECKER
16058 M:      "Luc Van Oostenryck" <[email protected]>
16059 L:      [email protected]
16060 S:      Maintained
16061 W:      https://sparse.docs.kernel.org/
16062 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16063 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16064 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16065 F:      include/linux/compiler.h
16066
16067 SPEAR CLOCK FRAMEWORK SUPPORT
16068 M:      Viresh Kumar <[email protected]>
16069 L:      [email protected] (moderated for non-subscribers)
16070 S:      Maintained
16071 W:      http://www.st.com/spear
16072 F:      drivers/clk/spear/
16073
16074 SPEAR PLATFORM SUPPORT
16075 M:      Viresh Kumar <[email protected]>
16076 M:      Shiraz Hashim <[email protected]>
16077 L:      [email protected] (moderated for non-subscribers)
16078 S:      Maintained
16079 W:      http://www.st.com/spear
16080 F:      arch/arm/boot/dts/spear*
16081 F:      arch/arm/mach-spear/
16082
16083 SPI NOR SUBSYSTEM
16084 M:      Tudor Ambarus <[email protected]>
16085 L:      [email protected]
16086 S:      Maintained
16087 W:      http://www.linux-mtd.infradead.org/
16088 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16089 C:      irc://irc.oftc.net/mtd
16090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16091 F:      drivers/mtd/spi-nor/
16092 F:      include/linux/mtd/spi-nor.h
16093
16094 SPI SUBSYSTEM
16095 M:      Mark Brown <[email protected]>
16096 L:      [email protected]
16097 S:      Maintained
16098 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16100 F:      Documentation/devicetree/bindings/spi/
16101 F:      Documentation/spi/
16102 F:      drivers/spi/
16103 F:      include/linux/spi/
16104 F:      include/uapi/linux/spi/
16105 F:      tools/spi/
16106
16107 SPIDERNET NETWORK DRIVER for CELL
16108 M:      Ishizaki Kou <[email protected]>
16109 L:      [email protected]
16110 S:      Supported
16111 F:      Documentation/networking/device_drivers/toshiba/spider_net.rst
16112 F:      drivers/net/ethernet/toshiba/spider_net*
16113
16114 SPMI SUBSYSTEM
16115 R:      Stephen Boyd <[email protected]>
16116 L:      [email protected]
16117 F:      Documentation/devicetree/bindings/spmi/
16118 F:      drivers/spmi/
16119 F:      include/dt-bindings/spmi/spmi.h
16120 F:      include/linux/spmi.h
16121 F:      include/trace/events/spmi.h
16122
16123 SPU FILE SYSTEM
16124 M:      Jeremy Kerr <[email protected]>
16125 L:      [email protected]
16126 S:      Supported
16127 W:      http://www.ibm.com/developerworks/power/cell/
16128 F:      Documentation/filesystems/spufs/spufs.rst
16129 F:      arch/powerpc/platforms/cell/spufs/
16130
16131 SQUASHFS FILE SYSTEM
16132 M:      Phillip Lougher <[email protected]>
16133 L:      [email protected] (subscribers-only)
16134 S:      Maintained
16135 W:      http://squashfs.org.uk
16136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16137 F:      Documentation/filesystems/squashfs.rst
16138 F:      fs/squashfs/
16139
16140 SRM (Alpha) environment access
16141 M:      Jan-Benedict Glaw <[email protected]>
16142 S:      Maintained
16143 F:      arch/alpha/kernel/srm_env.c
16144
16145 ST LSM6DSx IMU IIO DRIVER
16146 M:      Lorenzo Bianconi <[email protected]>
16147 L:      [email protected]
16148 S:      Maintained
16149 W:      http://www.st.com/
16150 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16151 F:      drivers/iio/imu/st_lsm6dsx/
16152
16153 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16154 M:      Mickael Guene <[email protected]>
16155 L:      [email protected]
16156 S:      Maintained
16157 T:      git git://linuxtv.org/media_tree.git
16158 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16159 F:      drivers/media/i2c/st-mipid02.c
16160
16161 ST STM32 I2C/SMBUS DRIVER
16162 M:      Pierre-Yves MORDRET <[email protected]>
16163 L:      [email protected]
16164 S:      Maintained
16165 F:      drivers/i2c/busses/i2c-stm32*
16166
16167 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16168 M:      Song Qiang <[email protected]>
16169 L:      [email protected]
16170 S:      Maintained
16171 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16172 F:      drivers/iio/proximity/vl53l0x-i2c.c
16173
16174 STABLE BRANCH
16175 M:      Greg Kroah-Hartman <[email protected]>
16176 M:      Sasha Levin <[email protected]>
16177 L:      [email protected]
16178 S:      Supported
16179 F:      Documentation/process/stable-kernel-rules.rst
16180
16181 STAGING - ATOMISP DRIVER
16182 M:      Mauro Carvalho Chehab <[email protected]>
16183 R:      Sakari Ailus <[email protected]>
16184 L:      [email protected]
16185 S:      Maintained
16186 F:      drivers/staging/media/atomisp/
16187
16188 STAGING - COMEDI
16189 M:      Ian Abbott <[email protected]>
16190 M:      H Hartley Sweeten <[email protected]>
16191 S:      Odd Fixes
16192 F:      drivers/staging/comedi/
16193
16194 STAGING - FIELDBUS SUBSYSTEM
16195 M:      Sven Van Asbroeck <[email protected]>
16196 S:      Maintained
16197 F:      drivers/staging/fieldbus/*
16198 F:      drivers/staging/fieldbus/Documentation/
16199
16200 STAGING - HMS ANYBUS-S BUS
16201 M:      Sven Van Asbroeck <[email protected]>
16202 S:      Maintained
16203 F:      drivers/staging/fieldbus/anybuss/
16204
16205 STAGING - INDUSTRIAL IO
16206 M:      Jonathan Cameron <[email protected]>
16207 L:      [email protected]
16208 S:      Odd Fixes
16209 F:      Documentation/devicetree/bindings/staging/iio/
16210 F:      drivers/staging/iio/
16211
16212 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16213 M:      Marc Dietrich <[email protected]>
16214 L:      [email protected] (moderated for non-subscribers)
16215 L:      [email protected]
16216 S:      Maintained
16217 F:      drivers/staging/nvec/
16218
16219 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16220 M:      Jens Frederich <[email protected]>
16221 M:      Daniel Drake <[email protected]>
16222 M:      Jon Nettleton <[email protected]>
16223 S:      Maintained
16224 W:      http://wiki.laptop.org/go/DCON
16225 F:      drivers/staging/olpc_dcon/
16226
16227 STAGING - REALTEK RTL8188EU DRIVERS
16228 M:      Larry Finger <[email protected]>
16229 S:      Odd Fixes
16230 F:      drivers/staging/rtl8188eu/
16231
16232 STAGING - REALTEK RTL8712U DRIVERS
16233 M:      Larry Finger <[email protected]>
16234 M:      Florian Schilhabel <[email protected]>.
16235 S:      Odd Fixes
16236 F:      drivers/staging/rtl8712/
16237
16238 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16239 M:      Michael Hennerich <[email protected]>
16240 M:      Beniamin Bia <[email protected]>
16241 L:      [email protected]
16242 S:      Supported
16243 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16244 F:      drivers/staging/fbtft/fb_seps525.c
16245
16246 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16247 M:      Sudip Mukherjee <[email protected]>
16248 M:      Teddy Wang <[email protected]>
16249 M:      Sudip Mukherjee <[email protected]>
16250 L:      [email protected]
16251 S:      Maintained
16252 F:      drivers/staging/sm750fb/
16253
16254 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
16255 M:      William Hubbs <[email protected]>
16256 M:      Chris Brannon <[email protected]>
16257 M:      Kirk Reiser <[email protected]>
16258 M:      Samuel Thibault <[email protected]>
16259 L:      [email protected]
16260 S:      Odd Fixes
16261 W:      http://www.linux-speakup.org/
16262 F:      drivers/staging/speakup/
16263
16264 STAGING - VIA VT665X DRIVERS
16265 M:      Forest Bond <[email protected]>
16266 S:      Odd Fixes
16267 F:      drivers/staging/vt665?/
16268
16269 STAGING - WILC1000 WIFI DRIVER
16270 M:      Adham Abozaeid <[email protected]>
16271 M:      Ajay Singh <[email protected]>
16272 L:      [email protected]
16273 S:      Supported
16274 F:      drivers/staging/wilc1000/
16275
16276 STAGING SUBSYSTEM
16277 M:      Greg Kroah-Hartman <[email protected]>
16278 L:      [email protected]
16279 S:      Supported
16280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16281 F:      drivers/staging/
16282
16283 STARFIRE/DURALAN NETWORK DRIVER
16284 M:      Ion Badulescu <[email protected]>
16285 S:      Odd Fixes
16286 F:      drivers/net/ethernet/adaptec/starfire*
16287
16288 STEC S1220 SKD DRIVER
16289 M:      Damien Le Moal <[email protected]>
16290 L:      [email protected]
16291 S:      Maintained
16292 F:      drivers/block/skd*[ch]
16293
16294 STI AUDIO (ASoC) DRIVERS
16295 M:      Arnaud Pouliquen <[email protected]>
16296 L:      [email protected] (moderated for non-subscribers)
16297 S:      Maintained
16298 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16299 F:      sound/soc/sti/
16300
16301 STI CEC DRIVER
16302 M:      Benjamin Gaignard <[email protected]>
16303 S:      Maintained
16304 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16305 F:      drivers/media/platform/sti/cec/
16306
16307 STK1160 USB VIDEO CAPTURE DRIVER
16308 M:      Ezequiel Garcia <[email protected]>
16309 L:      [email protected]
16310 S:      Maintained
16311 T:      git git://linuxtv.org/media_tree.git
16312 F:      drivers/media/usb/stk1160/
16313
16314 STM32 AUDIO (ASoC) DRIVERS
16315 M:      Olivier Moysan <[email protected]>
16316 M:      Arnaud Pouliquen <[email protected]>
16317 L:      [email protected] (moderated for non-subscribers)
16318 S:      Maintained
16319 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16320 F:      sound/soc/stm/
16321
16322 STM32 TIMER/LPTIMER DRIVERS
16323 M:      Fabrice Gasnier <[email protected]>
16324 S:      Maintained
16325 F:      Documentation/ABI/testing/*timer-stm32
16326 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16327 F:      drivers/*/stm32-*timer*
16328 F:      drivers/pwm/pwm-stm32*
16329 F:      include/linux/*/stm32-*tim*
16330
16331 STMMAC ETHERNET DRIVER
16332 M:      Giuseppe Cavallaro <[email protected]>
16333 M:      Alexandre Torgue <[email protected]>
16334 M:      Jose Abreu <[email protected]>
16335 L:      [email protected]
16336 S:      Supported
16337 W:      http://www.stlinux.com
16338 F:      Documentation/networking/device_drivers/stmicro/
16339 F:      drivers/net/ethernet/stmicro/stmmac/
16340
16341 SUN3/3X
16342 M:      Sam Creasey <[email protected]>
16343 S:      Maintained
16344 W:      http://sammy.net/sun3/
16345 F:      arch/m68k/include/asm/sun3*
16346 F:      arch/m68k/kernel/*sun3*
16347 F:      arch/m68k/sun3*/
16348 F:      drivers/net/ethernet/i825xx/sun3*
16349
16350 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16351 M:      Hans de Goede <[email protected]>
16352 L:      [email protected]
16353 S:      Maintained
16354 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16355 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16356
16357 SUNDANCE NETWORK DRIVER
16358 M:      Denis Kirjanov <[email protected]>
16359 L:      [email protected]
16360 S:      Maintained
16361 F:      drivers/net/ethernet/dlink/sundance.c
16362
16363 SUPERH
16364 M:      Yoshinori Sato <[email protected]>
16365 M:      Rich Felker <[email protected]>
16366 L:      [email protected]
16367 S:      Maintained
16368 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16369 F:      Documentation/sh/
16370 F:      arch/sh/
16371 F:      drivers/sh/
16372
16373 SUSPEND TO RAM
16374 M:      "Rafael J. Wysocki" <[email protected]>
16375 M:      Len Brown <[email protected]>
16376 M:      Pavel Machek <[email protected]>
16377 L:      [email protected]
16378 S:      Supported
16379 B:      https://bugzilla.kernel.org
16380 F:      Documentation/power/
16381 F:      arch/x86/kernel/acpi/
16382 F:      drivers/base/power/
16383 F:      include/linux/freezer.h
16384 F:      include/linux/pm.h
16385 F:      include/linux/suspend.h
16386 F:      kernel/power/
16387
16388 SVGA HANDLING
16389 M:      Martin Mares <[email protected]>
16390 L:      [email protected]
16391 S:      Maintained
16392 F:      Documentation/admin-guide/svga.rst
16393 F:      arch/x86/boot/video*
16394
16395 SWIOTLB SUBSYSTEM
16396 M:      Konrad Rzeszutek Wilk <[email protected]>
16397 L:      [email protected]
16398 S:      Supported
16399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16400 F:      arch/*/kernel/pci-swiotlb.c
16401 F:      include/linux/swiotlb.h
16402 F:      kernel/dma/swiotlb.c
16403
16404 SWITCHDEV
16405 M:      Jiri Pirko <[email protected]>
16406 M:      Ivan Vecera <[email protected]>
16407 L:      [email protected]
16408 S:      Supported
16409 F:      include/net/switchdev.h
16410 F:      net/switchdev/
16411
16412 SY8106A REGULATOR DRIVER
16413 M:      Icenowy Zheng <[email protected]>
16414 S:      Maintained
16415 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16416 F:      drivers/regulator/sy8106a-regulator.c
16417
16418 SYNC FILE FRAMEWORK
16419 M:      Sumit Semwal <[email protected]>
16420 R:      Gustavo Padovan <[email protected]>
16421 L:      [email protected]
16422 L:      [email protected]
16423 S:      Maintained
16424 T:      git git://anongit.freedesktop.org/drm/drm-misc
16425 F:      Documentation/driver-api/sync_file.rst
16426 F:      drivers/dma-buf/dma-fence*
16427 F:      drivers/dma-buf/sw_sync.c
16428 F:      drivers/dma-buf/sync_*
16429 F:      include/linux/sync_file.h
16430 F:      include/uapi/linux/sync_file.h
16431
16432 SYNOPSYS ARC ARCHITECTURE
16433 M:      Vineet Gupta <[email protected]>
16434 L:      [email protected]
16435 S:      Supported
16436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16437 F:      Documentation/devicetree/bindings/arc/*
16438 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16439 F:      arch/arc/
16440 F:      drivers/clocksource/arc_timer.c
16441 F:      drivers/tty/serial/arc_uart.c
16442
16443 SYNOPSYS ARC HSDK SDP pll clock driver
16444 M:      Eugeniy Paltsev <[email protected]>
16445 S:      Supported
16446 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16447 F:      drivers/clk/clk-hsdk-pll.c
16448
16449 SYNOPSYS ARC SDP clock driver
16450 M:      Eugeniy Paltsev <[email protected]>
16451 S:      Supported
16452 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16453 F:      drivers/clk/axs10x/*
16454
16455 SYNOPSYS ARC SDP platform support
16456 M:      Alexey Brodkin <[email protected]>
16457 S:      Supported
16458 F:      Documentation/devicetree/bindings/arc/axs10*
16459 F:      arch/arc/boot/dts/ax*
16460 F:      arch/arc/plat-axs10x
16461
16462 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16463 M:      Eugeniy Paltsev <[email protected]>
16464 S:      Supported
16465 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16466 F:      drivers/reset/reset-axs10x.c
16467
16468 SYNOPSYS CREG GPIO DRIVER
16469 M:      Eugeniy Paltsev <[email protected]>
16470 S:      Maintained
16471 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16472 F:      drivers/gpio/gpio-creg-snps.c
16473
16474 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16475 R:      Andy Shevchenko <[email protected]>
16476 S:      Maintained
16477 F:      drivers/tty/serial/8250/8250_dw.c
16478 F:      drivers/tty/serial/8250/8250_dwlib.*
16479 F:      drivers/tty/serial/8250/8250_lpss.c
16480
16481 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16482 M:      Hoan Tran <[email protected]>
16483 M:      Serge Semin <[email protected]>
16484 L:      [email protected]
16485 S:      Maintained
16486 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16487 F:      drivers/gpio/gpio-dwapb.c
16488
16489 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16490 M:      Eugeniy Paltsev <[email protected]>
16491 S:      Maintained
16492 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16493 F:      drivers/dma/dw-axi-dmac/
16494
16495 SYNOPSYS DESIGNWARE DMAC DRIVER
16496 M:      Viresh Kumar <[email protected]>
16497 R:      Andy Shevchenko <[email protected]>
16498 S:      Maintained
16499 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16500 F:      drivers/dma/dw/
16501 F:      include/dt-bindings/dma/dw-dmac.h
16502 F:      include/linux/dma/dw.h
16503 F:      include/linux/platform_data/dma-dw.h
16504
16505 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16506 M:      Jose Abreu <[email protected]>
16507 L:      [email protected]
16508 S:      Supported
16509 F:      drivers/net/ethernet/synopsys/
16510
16511 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16512 M:      Jose Abreu <[email protected]>
16513 L:      [email protected]
16514 S:      Supported
16515 F:      drivers/net/phy/mdio-xpcs.c
16516 F:      include/linux/mdio-xpcs.h
16517
16518 SYNOPSYS DESIGNWARE I2C DRIVER
16519 M:      Jarkko Nikula <[email protected]>
16520 R:      Andy Shevchenko <[email protected]>
16521 R:      Mika Westerberg <[email protected]>
16522 L:      [email protected]
16523 S:      Maintained
16524 F:      drivers/i2c/busses/i2c-designware-*
16525 F:      include/linux/platform_data/i2c-designware.h
16526
16527 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16528 M:      Jaehoon Chung <[email protected]>
16529 L:      [email protected]
16530 S:      Maintained
16531 F:      drivers/mmc/host/dw_mmc*
16532
16533 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16534 M:      Eugeniy Paltsev <[email protected]>
16535 S:      Supported
16536 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16537 F:      drivers/reset/reset-hsdk.c
16538 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16539
16540 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16541 M:      Prabu Thangamuthu <[email protected]>
16542 M:      Manjunath M B <[email protected]>
16543 L:      [email protected]
16544 S:      Maintained
16545 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16546
16547 SYSTEM CONFIGURATION (SYSCON)
16548 M:      Lee Jones <[email protected]>
16549 M:      Arnd Bergmann <[email protected]>
16550 S:      Supported
16551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16552 F:      drivers/mfd/syscon.c
16553
16554 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16555 M:      Sudeep Holla <[email protected]>
16556 L:      [email protected]
16557 S:      Maintained
16558 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16559 F:      drivers/clk/clk-sc[mp]i.c
16560 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16561 F:      drivers/firmware/arm_scmi/
16562 F:      drivers/firmware/arm_scpi.c
16563 F:      drivers/reset/reset-scmi.c
16564 F:      include/linux/sc[mp]i_protocol.h
16565 F:      include/trace/events/scmi.h
16566
16567 SYSTEM RESET/SHUTDOWN DRIVERS
16568 M:      Sebastian Reichel <[email protected]>
16569 L:      [email protected]
16570 S:      Maintained
16571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16572 F:      Documentation/devicetree/bindings/power/reset/
16573 F:      drivers/power/reset/
16574
16575 SYSTEM TRACE MODULE CLASS
16576 M:      Alexander Shishkin <[email protected]>
16577 S:      Maintained
16578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16579 F:      Documentation/trace/stm.rst
16580 F:      drivers/hwtracing/stm/
16581 F:      include/linux/stm.h
16582 F:      include/uapi/linux/stm.h
16583
16584 SYSTEM76 ACPI DRIVER
16585 M:      Jeremy Soller <[email protected]>
16586 M:      System76 Product Development <[email protected]>
16587 L:      [email protected]
16588 S:      Maintained
16589 F:      drivers/platform/x86/system76_acpi.c
16590
16591 SYSV FILESYSTEM
16592 M:      Christoph Hellwig <[email protected]>
16593 S:      Maintained
16594 F:      Documentation/filesystems/sysv-fs.rst
16595 F:      fs/sysv/
16596 F:      include/linux/sysv_fs.h
16597
16598 TASKSTATS STATISTICS INTERFACE
16599 M:      Balbir Singh <[email protected]>
16600 S:      Maintained
16601 F:      Documentation/accounting/taskstats*
16602 F:      include/linux/taskstats*
16603 F:      kernel/taskstats.c
16604
16605 TC subsystem
16606 M:      Jamal Hadi Salim <[email protected]>
16607 M:      Cong Wang <[email protected]>
16608 M:      Jiri Pirko <[email protected]>
16609 L:      [email protected]
16610 S:      Maintained
16611 F:      include/net/pkt_cls.h
16612 F:      include/net/pkt_sched.h
16613 F:      include/net/tc_act/
16614 F:      include/uapi/linux/pkt_cls.h
16615 F:      include/uapi/linux/pkt_sched.h
16616 F:      include/uapi/linux/tc_act/
16617 F:      include/uapi/linux/tc_ematch/
16618 F:      net/sched/
16619
16620 TC90522 MEDIA DRIVER
16621 M:      Akihiro Tsukada <[email protected]>
16622 L:      [email protected]
16623 S:      Odd Fixes
16624 F:      drivers/media/dvb-frontends/tc90522*
16625
16626 TCP LOW PRIORITY MODULE
16627 M:      "Wong Hoi Sing, Edison" <[email protected]>
16628 M:      "Hung Hing Lun, Mike" <[email protected]>
16629 S:      Maintained
16630 W:      http://tcp-lp-mod.sourceforge.net/
16631 F:      net/ipv4/tcp_lp.c
16632
16633 TDA10071 MEDIA DRIVER
16634 M:      Antti Palosaari <[email protected]>
16635 L:      [email protected]
16636 S:      Maintained
16637 W:      https://linuxtv.org
16638 W:      http://palosaari.fi/linux/
16639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16640 T:      git git://linuxtv.org/anttip/media_tree.git
16641 F:      drivers/media/dvb-frontends/tda10071*
16642
16643 TDA18212 MEDIA DRIVER
16644 M:      Antti Palosaari <[email protected]>
16645 L:      [email protected]
16646 S:      Maintained
16647 W:      https://linuxtv.org
16648 W:      http://palosaari.fi/linux/
16649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16650 T:      git git://linuxtv.org/anttip/media_tree.git
16651 F:      drivers/media/tuners/tda18212*
16652
16653 TDA18218 MEDIA DRIVER
16654 M:      Antti Palosaari <[email protected]>
16655 L:      [email protected]
16656 S:      Maintained
16657 W:      https://linuxtv.org
16658 W:      http://palosaari.fi/linux/
16659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16660 T:      git git://linuxtv.org/anttip/media_tree.git
16661 F:      drivers/media/tuners/tda18218*
16662
16663 TDA18250 MEDIA DRIVER
16664 M:      Olli Salonen <[email protected]>
16665 L:      [email protected]
16666 S:      Maintained
16667 W:      https://linuxtv.org
16668 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16669 T:      git git://linuxtv.org/media_tree.git
16670 F:      drivers/media/tuners/tda18250*
16671
16672 TDA18271 MEDIA DRIVER
16673 M:      Michael Krufky <[email protected]>
16674 L:      [email protected]
16675 S:      Maintained
16676 W:      https://linuxtv.org
16677 W:      http://github.com/mkrufky
16678 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16679 T:      git git://linuxtv.org/mkrufky/tuners.git
16680 F:      drivers/media/tuners/tda18271*
16681
16682 TDA1997x MEDIA DRIVER
16683 M:      Tim Harvey <[email protected]>
16684 L:      [email protected]
16685 S:      Maintained
16686 W:      https://linuxtv.org
16687 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16688 F:      drivers/media/i2c/tda1997x.*
16689
16690 TDA827x MEDIA DRIVER
16691 M:      Michael Krufky <[email protected]>
16692 L:      [email protected]
16693 S:      Maintained
16694 W:      https://linuxtv.org
16695 W:      http://github.com/mkrufky
16696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16697 T:      git git://linuxtv.org/mkrufky/tuners.git
16698 F:      drivers/media/tuners/tda8290.*
16699
16700 TDA8290 MEDIA DRIVER
16701 M:      Michael Krufky <[email protected]>
16702 L:      [email protected]
16703 S:      Maintained
16704 W:      https://linuxtv.org
16705 W:      http://github.com/mkrufky
16706 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16707 T:      git git://linuxtv.org/mkrufky/tuners.git
16708 F:      drivers/media/tuners/tda8290.*
16709
16710 TDA9840 MEDIA DRIVER
16711 M:      Hans Verkuil <[email protected]>
16712 L:      [email protected]
16713 S:      Maintained
16714 W:      https://linuxtv.org
16715 T:      git git://linuxtv.org/media_tree.git
16716 F:      drivers/media/i2c/tda9840*
16717
16718 TEA5761 TUNER DRIVER
16719 M:      Mauro Carvalho Chehab <[email protected]>
16720 L:      [email protected]
16721 S:      Odd fixes
16722 W:      https://linuxtv.org
16723 T:      git git://linuxtv.org/media_tree.git
16724 F:      drivers/media/tuners/tea5761.*
16725
16726 TEA5767 TUNER DRIVER
16727 M:      Mauro Carvalho Chehab <[email protected]>
16728 L:      [email protected]
16729 S:      Maintained
16730 W:      https://linuxtv.org
16731 T:      git git://linuxtv.org/media_tree.git
16732 F:      drivers/media/tuners/tea5767.*
16733
16734 TEA6415C MEDIA DRIVER
16735 M:      Hans Verkuil <[email protected]>
16736 L:      [email protected]
16737 S:      Maintained
16738 W:      https://linuxtv.org
16739 T:      git git://linuxtv.org/media_tree.git
16740 F:      drivers/media/i2c/tea6415c*
16741
16742 TEA6420 MEDIA DRIVER
16743 M:      Hans Verkuil <[email protected]>
16744 L:      [email protected]
16745 S:      Maintained
16746 W:      https://linuxtv.org
16747 T:      git git://linuxtv.org/media_tree.git
16748 F:      drivers/media/i2c/tea6420*
16749
16750 TEAM DRIVER
16751 M:      Jiri Pirko <[email protected]>
16752 L:      [email protected]
16753 S:      Supported
16754 F:      drivers/net/team/
16755 F:      include/linux/if_team.h
16756 F:      include/uapi/linux/if_team.h
16757
16758 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16759 M:      "Savoir-faire Linux Inc." <[email protected]>
16760 S:      Maintained
16761 F:      arch/x86/platform/ts5500/
16762
16763 TECHNOTREND USB IR RECEIVER
16764 M:      Sean Young <[email protected]>
16765 L:      [email protected]
16766 S:      Maintained
16767 F:      drivers/media/rc/ttusbir.c
16768
16769 TECHWELL TW9910 VIDEO DECODER
16770 L:      [email protected]
16771 S:      Orphan
16772 F:      drivers/media/i2c/tw9910.c
16773 F:      include/media/i2c/tw9910.h
16774
16775 TEE SUBSYSTEM
16776 M:      Jens Wiklander <[email protected]>
16777 L:      [email protected]
16778 S:      Maintained
16779 F:      Documentation/tee.txt
16780 F:      drivers/tee/
16781 F:      include/linux/tee_drv.h
16782 F:      include/uapi/linux/tee.h
16783
16784 TEGRA ARCHITECTURE SUPPORT
16785 M:      Thierry Reding <[email protected]>
16786 M:      Jonathan Hunter <[email protected]>
16787 L:      [email protected]
16788 S:      Supported
16789 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16791 N:      [^a-z]tegra
16792
16793 TEGRA CLOCK DRIVER
16794 M:      Peter De Schrijver <[email protected]>
16795 M:      Prashant Gaikwad <[email protected]>
16796 S:      Supported
16797 F:      drivers/clk/tegra/
16798
16799 TEGRA DMA DRIVERS
16800 M:      Laxman Dewangan <[email protected]>
16801 M:      Jon Hunter <[email protected]>
16802 S:      Supported
16803 F:      drivers/dma/tegra*
16804
16805 TEGRA I2C DRIVER
16806 M:      Laxman Dewangan <[email protected]>
16807 R:      Dmitry Osipenko <[email protected]>
16808 S:      Supported
16809 F:      drivers/i2c/busses/i2c-tegra.c
16810
16811 TEGRA IOMMU DRIVERS
16812 M:      Thierry Reding <[email protected]>
16813 L:      [email protected]
16814 S:      Supported
16815 F:      drivers/iommu/tegra*
16816
16817 TEGRA KBC DRIVER
16818 M:      Laxman Dewangan <[email protected]>
16819 S:      Supported
16820 F:      drivers/input/keyboard/tegra-kbc.c
16821
16822 TEGRA NAND DRIVER
16823 M:      Stefan Agner <[email protected]>
16824 M:      Lucas Stach <[email protected]>
16825 S:      Maintained
16826 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16827 F:      drivers/mtd/nand/raw/tegra_nand.c
16828
16829 TEGRA PWM DRIVER
16830 M:      Thierry Reding <[email protected]>
16831 S:      Supported
16832 F:      drivers/pwm/pwm-tegra.c
16833
16834 TEGRA SERIAL DRIVER
16835 M:      Laxman Dewangan <[email protected]>
16836 S:      Supported
16837 F:      drivers/tty/serial/serial-tegra.c
16838
16839 TEGRA SPI DRIVER
16840 M:      Laxman Dewangan <[email protected]>
16841 S:      Supported
16842 F:      drivers/spi/spi-tegra*
16843
16844 TEGRA VIDEO DRIVER
16845 M:      Thierry Reding <[email protected]>
16846 M:      Jonathan Hunter <[email protected]>
16847 M:      Sowjanya Komatineni <[email protected]>
16848 L:      [email protected]
16849 L:      [email protected]
16850 S:      Maintained
16851 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
16852 F:      drivers/staging/media/tegra-video/
16853
16854 TEGRA XUSB PADCTL DRIVER
16855 M:      JC Kuo <[email protected]>
16856 S:      Supported
16857 F:      drivers/phy/tegra/xusb*
16858
16859 TEHUTI ETHERNET DRIVER
16860 M:      Andy Gospodarek <[email protected]>
16861 L:      [email protected]
16862 S:      Supported
16863 F:      drivers/net/ethernet/tehuti/*
16864
16865 TELECOM CLOCK DRIVER FOR MCPL0010
16866 M:      Mark Gross <[email protected]>
16867 S:      Supported
16868 F:      drivers/char/tlclk.c
16869
16870 TEMPO SEMICONDUCTOR DRIVERS
16871 M:      Steven Eckhoff <[email protected]>
16872 S:      Maintained
16873 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16874 F:      sound/soc/codecs/tscs*.c
16875 F:      sound/soc/codecs/tscs*.h
16876
16877 TENSILICA XTENSA PORT (xtensa)
16878 M:      Chris Zankel <[email protected]>
16879 M:      Max Filippov <[email protected]>
16880 L:      [email protected]
16881 S:      Maintained
16882 T:      git git://github.com/czankel/xtensa-linux.git
16883 F:      arch/xtensa/
16884 F:      drivers/irqchip/irq-xtensa-*
16885
16886 TEXAS INSTRUMENTS ASoC DRIVERS
16887 M:      Peter Ujfalusi <[email protected]>
16888 L:      [email protected] (moderated for non-subscribers)
16889 S:      Maintained
16890 F:      sound/soc/ti/
16891
16892 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
16893 M:      Ricardo Ribalda <[email protected]>
16894 L:      [email protected]
16895 S:      Supported
16896 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16897 F:      drivers/iio/dac/ti-dac7612.c
16898
16899 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
16900 M:      Nishanth Menon <[email protected]>
16901 M:      Tero Kristo <[email protected]>
16902 M:      Santosh Shilimkar <[email protected]>
16903 L:      [email protected]
16904 S:      Maintained
16905 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16906 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16907 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16908 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16909 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16910 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16911 F:      drivers/clk/keystone/sci-clk.c
16912 F:      drivers/firmware/ti_sci*
16913 F:      drivers/irqchip/irq-ti-sci-inta.c
16914 F:      drivers/irqchip/irq-ti-sci-intr.c
16915 F:      drivers/reset/reset-ti-sci.c
16916 F:      drivers/soc/ti/ti_sci_inta_msi.c
16917 F:      drivers/soc/ti/ti_sci_pm_domains.c
16918 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16919 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16920 F:      include/linux/soc/ti/ti_sci_protocol.h
16921
16922 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16923 M:      Hans Verkuil <[email protected]>
16924 L:      [email protected]
16925 S:      Maintained
16926 W:      https://linuxtv.org
16927 T:      git git://linuxtv.org/media_tree.git
16928 F:      drivers/media/radio/radio-raremono.c
16929
16930 THERMAL
16931 M:      Zhang Rui <[email protected]>
16932 M:      Daniel Lezcano <[email protected]>
16933 R:      Amit Kucheria <[email protected]>
16934 L:      [email protected]
16935 S:      Supported
16936 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16938 F:      Documentation/devicetree/bindings/thermal/
16939 F:      drivers/thermal/
16940 F:      include/linux/cpu_cooling.h
16941 F:      include/linux/thermal.h
16942 F:      include/uapi/linux/thermal.h
16943
16944 THERMAL DRIVER FOR AMLOGIC SOCS
16945 M:      Guillaume La Roque <[email protected]>
16946 L:      [email protected]
16947 L:      [email protected]
16948 S:      Supported
16949 W:      http://linux-meson.com/
16950 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16951 F:      drivers/thermal/amlogic_thermal.c
16952
16953 THERMAL/CPU_COOLING
16954 M:      Amit Daniel Kachhap <[email protected]>
16955 M:      Daniel Lezcano <[email protected]>
16956 M:      Viresh Kumar <[email protected]>
16957 M:      Javi Merino <[email protected]>
16958 L:      [email protected]
16959 S:      Supported
16960 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16961 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16962 F:      drivers/thermal/cpufreq_cooling.c
16963 F:      drivers/thermal/cpuidle_cooling.c
16964 F:      include/linux/cpu_cooling.h
16965
16966 THINKPAD ACPI EXTRAS DRIVER
16967 M:      Henrique de Moraes Holschuh <[email protected]>
16968 L:      [email protected]
16969 L:      [email protected]
16970 S:      Maintained
16971 W:      http://ibm-acpi.sourceforge.net
16972 W:      http://thinkwiki.org/wiki/Ibm-acpi
16973 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16974 F:      drivers/platform/x86/thinkpad_acpi.c
16975
16976 THUNDERBOLT DRIVER
16977 M:      Andreas Noever <[email protected]>
16978 M:      Michael Jamet <[email protected]>
16979 M:      Mika Westerberg <[email protected]>
16980 M:      Yehezkel Bernat <[email protected]>
16981 L:      [email protected]
16982 S:      Maintained
16983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16984 F:      Documentation/admin-guide/thunderbolt.rst
16985 F:      drivers/thunderbolt/
16986 F:      include/linux/thunderbolt.h
16987
16988 THUNDERBOLT NETWORK DRIVER
16989 M:      Michael Jamet <[email protected]>
16990 M:      Mika Westerberg <[email protected]>
16991 M:      Yehezkel Bernat <[email protected]>
16992 L:      [email protected]
16993 S:      Maintained
16994 F:      drivers/net/thunderbolt.c
16995
16996 THUNDERX GPIO DRIVER
16997 M:      Robert Richter <[email protected]>
16998 S:      Maintained
16999 F:      drivers/gpio/gpio-thunderx.c
17000
17001 TI AM437X VPFE DRIVER
17002 M:      "Lad, Prabhakar" <[email protected]>
17003 L:      [email protected]
17004 S:      Maintained
17005 W:      https://linuxtv.org
17006 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17007 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17008 F:      drivers/media/platform/am437x/
17009
17010 TI BANDGAP AND THERMAL DRIVER
17011 M:      Eduardo Valentin <[email protected]>
17012 M:      Keerthy <[email protected]>
17013 L:      [email protected]
17014 L:      [email protected]
17015 S:      Maintained
17016 F:      drivers/thermal/ti-soc-thermal/
17017
17018 TI BQ27XXX POWER SUPPLY DRIVER
17019 R:      Andrew F. Davis <[email protected]>
17020 F:      drivers/power/supply/bq27xxx_battery.c
17021 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17022 F:      include/linux/power/bq27xxx_battery.h
17023
17024 TI CDCE706 CLOCK DRIVER
17025 M:      Max Filippov <[email protected]>
17026 S:      Maintained
17027 F:      drivers/clk/clk-cdce706.c
17028
17029 TI CLOCK DRIVER
17030 M:      Tero Kristo <[email protected]>
17031 L:      [email protected]
17032 S:      Maintained
17033 F:      drivers/clk/ti/
17034 F:      include/linux/clk/ti.h
17035
17036 TI DAVINCI MACHINE SUPPORT
17037 M:      Sekhar Nori <[email protected]>
17038 R:      Bartosz Golaszewski <[email protected]>
17039 L:      [email protected] (moderated for non-subscribers)
17040 S:      Supported
17041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17042 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17043 F:      arch/arm/boot/dts/da850*
17044 F:      arch/arm/mach-davinci/
17045 F:      drivers/i2c/busses/i2c-davinci.c
17046
17047 TI DAVINCI SERIES CLOCK DRIVER
17048 M:      David Lechner <[email protected]>
17049 R:      Sekhar Nori <[email protected]>
17050 S:      Maintained
17051 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17052 F:      drivers/clk/davinci/
17053
17054 TI DAVINCI SERIES GPIO DRIVER
17055 M:      Keerthy <[email protected]>
17056 L:      [email protected]
17057 S:      Maintained
17058 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17059 F:      drivers/gpio/gpio-davinci.c
17060
17061 TI DAVINCI SERIES MEDIA DRIVER
17062 M:      "Lad, Prabhakar" <[email protected]>
17063 L:      [email protected]
17064 S:      Maintained
17065 W:      https://linuxtv.org
17066 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17067 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17068 F:      drivers/media/platform/davinci/
17069 F:      include/media/davinci/
17070
17071 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17072 R:      David Lechner <[email protected]>
17073 L:      [email protected]
17074 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17075 F:      drivers/counter/ti-eqep.c
17076
17077 TI ETHERNET SWITCH DRIVER (CPSW)
17078 R:      Grygorii Strashko <[email protected]>
17079 L:      [email protected]
17080 L:      [email protected]
17081 S:      Maintained
17082 F:      drivers/net/ethernet/ti/cpsw*
17083 F:      drivers/net/ethernet/ti/davinci*
17084
17085 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17086 M:      Alex Dubov <[email protected]>
17087 S:      Maintained
17088 W:      http://tifmxx.berlios.de/
17089 F:      drivers/memstick/host/tifm_ms.c
17090 F:      drivers/misc/tifm*
17091 F:      drivers/mmc/host/tifm_sd.c
17092 F:      include/linux/tifm.h
17093
17094 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17095 M:      Santosh Shilimkar <[email protected]>
17096 L:      [email protected]
17097 L:      [email protected] (moderated for non-subscribers)
17098 S:      Maintained
17099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17100 F:      drivers/soc/ti/*
17101
17102 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17103 M:      M R Swami Reddy <[email protected]>
17104 M:      Vishwas A Deshpande <[email protected]>
17105 L:      [email protected] (moderated for non-subscribers)
17106 S:      Maintained
17107 F:      sound/soc/codecs/isabelle*
17108 F:      sound/soc/codecs/lm49453*
17109
17110 TI LP855x BACKLIGHT DRIVER
17111 M:      Milo Kim <[email protected]>
17112 S:      Maintained
17113 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17114 F:      drivers/video/backlight/lp855x_bl.c
17115 F:      include/linux/platform_data/lp855x.h
17116
17117 TI LP8727 CHARGER DRIVER
17118 M:      Milo Kim <[email protected]>
17119 S:      Maintained
17120 F:      drivers/power/supply/lp8727_charger.c
17121 F:      include/linux/platform_data/lp8727.h
17122
17123 TI LP8788 MFD DRIVER
17124 M:      Milo Kim <[email protected]>
17125 S:      Maintained
17126 F:      drivers/iio/adc/lp8788_adc.c
17127 F:      drivers/leds/leds-lp8788.c
17128 F:      drivers/mfd/lp8788*.c
17129 F:      drivers/power/supply/lp8788-charger.c
17130 F:      drivers/regulator/lp8788-*.c
17131 F:      include/linux/mfd/lp8788*.h
17132
17133 TI NETCP ETHERNET DRIVER
17134 M:      Wingman Kwok <[email protected]>
17135 M:      Murali Karicheri <[email protected]>
17136 L:      [email protected]
17137 S:      Maintained
17138 F:      drivers/net/ethernet/ti/netcp*
17139
17140 TI PCM3060 ASoC CODEC DRIVER
17141 M:      Kirill Marinushkin <[email protected]>
17142 L:      [email protected] (moderated for non-subscribers)
17143 S:      Maintained
17144 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17145 F:      sound/soc/codecs/pcm3060*
17146
17147 TI TAS571X FAMILY ASoC CODEC DRIVER
17148 M:      Kevin Cernekee <[email protected]>
17149 L:      [email protected] (moderated for non-subscribers)
17150 S:      Odd Fixes
17151 F:      sound/soc/codecs/tas571x*
17152
17153 TI TCAN4X5X DEVICE DRIVER
17154 M:      Dan Murphy <[email protected]>
17155 L:      [email protected]
17156 S:      Maintained
17157 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17158 F:      drivers/net/can/m_can/tcan4x5x.c
17159
17160 TI TRF7970A NFC DRIVER
17161 M:      Mark Greer <[email protected]>
17162 L:      [email protected]
17163 L:      [email protected] (moderated for non-subscribers)
17164 S:      Supported
17165 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17166 F:      drivers/nfc/trf7970a.c
17167
17168 TI TWL4030 SERIES SOC CODEC DRIVER
17169 M:      Peter Ujfalusi <[email protected]>
17170 L:      [email protected] (moderated for non-subscribers)
17171 S:      Maintained
17172 F:      sound/soc/codecs/twl4030*
17173
17174 TI VPE/CAL DRIVERS
17175 M:      Benoit Parrot <[email protected]>
17176 L:      [email protected]
17177 S:      Maintained
17178 W:      http://linuxtv.org/
17179 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17180 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17181 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17182 F:      drivers/media/platform/ti-vpe/
17183
17184 TI WILINK WIRELESS DRIVERS
17185 L:      [email protected]
17186 S:      Orphan
17187 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17188 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17190 F:      drivers/net/wireless/ti/
17191 F:      include/linux/wl12xx.h
17192
17193 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17194 M:      John Stultz <[email protected]>
17195 M:      Thomas Gleixner <[email protected]>
17196 R:      Stephen Boyd <[email protected]>
17197 L:      [email protected]
17198 S:      Supported
17199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17200 F:      include/linux/clocksource.h
17201 F:      include/linux/time.h
17202 F:      include/linux/timex.h
17203 F:      include/uapi/linux/time.h
17204 F:      include/uapi/linux/timex.h
17205 F:      kernel/time/alarmtimer.c
17206 F:      kernel/time/clocksource.c
17207 F:      kernel/time/ntp.c
17208 F:      kernel/time/time*.c
17209 F:      tools/testing/selftests/timers/
17210
17211 TIPC NETWORK LAYER
17212 M:      Jon Maloy <[email protected]>
17213 M:      Ying Xue <[email protected]>
17214 L:      [email protected] (core kernel code)
17215 L:      [email protected] (user apps, general discussion)
17216 S:      Maintained
17217 W:      http://tipc.sourceforge.net/
17218 F:      include/uapi/linux/tipc*.h
17219 F:      net/tipc/
17220
17221 TLAN NETWORK DRIVER
17222 M:      Samuel Chessman <[email protected]>
17223 L:      [email protected] (subscribers-only)
17224 S:      Maintained
17225 W:      http://sourceforge.net/projects/tlan/
17226 F:      Documentation/networking/device_drivers/ti/tlan.rst
17227 F:      drivers/net/ethernet/ti/tlan.*
17228
17229 TM6000 VIDEO4LINUX DRIVER
17230 M:      Mauro Carvalho Chehab <[email protected]>
17231 L:      [email protected]
17232 S:      Odd fixes
17233 W:      https://linuxtv.org
17234 T:      git git://linuxtv.org/media_tree.git
17235 F:      Documentation/admin-guide/media/tm6000*
17236 F:      drivers/media/usb/tm6000/
17237
17238 TMIO/SDHI MMC DRIVER
17239 M:      Wolfram Sang <[email protected]>
17240 L:      [email protected]
17241 S:      Supported
17242 F:      drivers/mmc/host/renesas_sdhi*
17243 F:      drivers/mmc/host/tmio_mmc*
17244 F:      include/linux/mfd/tmio.h
17245
17246 TMP401 HARDWARE MONITOR DRIVER
17247 M:      Guenter Roeck <[email protected]>
17248 L:      [email protected]
17249 S:      Maintained
17250 F:      Documentation/hwmon/tmp401.rst
17251 F:      drivers/hwmon/tmp401.c
17252
17253 TMP513 HARDWARE MONITOR DRIVER
17254 M:      Eric Tremblay <[email protected]>
17255 L:      [email protected]
17256 S:      Maintained
17257 F:      Documentation/hwmon/tmp513.rst
17258 F:      drivers/hwmon/tmp513.c
17259
17260 TMPFS (SHMEM FILESYSTEM)
17261 M:      Hugh Dickins <[email protected]>
17262 L:      [email protected]
17263 S:      Maintained
17264 F:      include/linux/shmem_fs.h
17265 F:      mm/shmem.c
17266
17267 TOMOYO SECURITY MODULE
17268 M:      Kentaro Takeda <[email protected]>
17269 M:      Tetsuo Handa <[email protected]>
17270 L:      [email protected] (subscribers-only, for developers in English)
17271 L:      [email protected] (subscribers-only, for users in English)
17272 L:      [email protected] (subscribers-only, for developers in Japanese)
17273 L:      [email protected] (subscribers-only, for users in Japanese)
17274 S:      Maintained
17275 W:      https://tomoyo.osdn.jp/
17276 F:      security/tomoyo/
17277
17278 TOPSTAR LAPTOP EXTRAS DRIVER
17279 M:      Herton Ronaldo Krzesinski <[email protected]>
17280 L:      [email protected]
17281 S:      Maintained
17282 F:      drivers/platform/x86/topstar-laptop.c
17283
17284 TORTURE-TEST MODULES
17285 M:      Davidlohr Bueso <[email protected]>
17286 M:      "Paul E. McKenney" <[email protected]>
17287 M:      Josh Triplett <[email protected]>
17288 L:      [email protected]
17289 S:      Supported
17290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17291 F:      Documentation/RCU/torture.txt
17292 F:      kernel/locking/locktorture.c
17293 F:      kernel/rcu/rcuperf.c
17294 F:      kernel/rcu/rcutorture.c
17295 F:      kernel/torture.c
17296
17297 TOSHIBA ACPI EXTRAS DRIVER
17298 M:      Azael Avalos <[email protected]>
17299 L:      [email protected]
17300 S:      Maintained
17301 F:      drivers/platform/x86/toshiba_acpi.c
17302
17303 TOSHIBA BLUETOOTH DRIVER
17304 M:      Azael Avalos <[email protected]>
17305 L:      [email protected]
17306 S:      Maintained
17307 F:      drivers/platform/x86/toshiba_bluetooth.c
17308
17309 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17310 M:      Azael Avalos <[email protected]>
17311 L:      [email protected]
17312 S:      Maintained
17313 F:      drivers/platform/x86/toshiba_haps.c
17314
17315 TOSHIBA SMM DRIVER
17316 M:      Jonathan Buzzard <[email protected]>
17317 S:      Maintained
17318 W:      http://www.buzzard.org.uk/toshiba/
17319 F:      drivers/char/toshiba.c
17320 F:      include/linux/toshiba.h
17321 F:      include/uapi/linux/toshiba.h
17322
17323 TOSHIBA TC358743 DRIVER
17324 M:      Mats Randgaard <[email protected]>
17325 L:      [email protected]
17326 S:      Maintained
17327 F:      drivers/media/i2c/tc358743*
17328 F:      include/media/i2c/tc358743.h
17329
17330 TOSHIBA WMI HOTKEYS DRIVER
17331 M:      Azael Avalos <[email protected]>
17332 L:      [email protected]
17333 S:      Maintained
17334 F:      drivers/platform/x86/toshiba-wmi.c
17335
17336 TPM DEVICE DRIVER
17337 M:      Peter Huewe <[email protected]>
17338 M:      Jarkko Sakkinen <[email protected]>
17339 R:      Jason Gunthorpe <[email protected]>
17340 L:      [email protected]
17341 S:      Maintained
17342 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17343 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17344 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17345 F:      drivers/char/tpm/
17346
17347 TRACING
17348 M:      Steven Rostedt <[email protected]>
17349 M:      Ingo Molnar <[email protected]>
17350 S:      Maintained
17351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17352 F:      Documentation/trace/ftrace.rst
17353 F:      arch/*/*/*/ftrace.h
17354 F:      arch/*/kernel/ftrace.c
17355 F:      include/*/ftrace.h
17356 F:      include/linux/trace*.h
17357 F:      include/trace/
17358 F:      kernel/trace/
17359 F:      tools/testing/selftests/ftrace/
17360
17361 TRACING MMIO ACCESSES (MMIOTRACE)
17362 M:      Steven Rostedt <[email protected]>
17363 M:      Ingo Molnar <[email protected]>
17364 R:      Karol Herbst <[email protected]>
17365 R:      Pekka Paalanen <[email protected]>
17366 L:      [email protected]
17367 L:      [email protected]
17368 S:      Maintained
17369 F:      arch/x86/mm/kmmio.c
17370 F:      arch/x86/mm/mmio-mod.c
17371 F:      arch/x86/mm/testmmiotrace.c
17372 F:      include/linux/mmiotrace.h
17373 F:      kernel/trace/trace_mmiotrace.c
17374
17375 TRIVIAL PATCHES
17376 M:      Jiri Kosina <[email protected]>
17377 S:      Maintained
17378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17379 K:      ^Subject:.*(?i)trivial
17380
17381 TTY LAYER
17382 M:      Greg Kroah-Hartman <[email protected]>
17383 M:      Jiri Slaby <[email protected]>
17384 S:      Supported
17385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17386 F:      Documentation/driver-api/serial/
17387 F:      drivers/tty/
17388 F:      drivers/tty/serial/serial_core.c
17389 F:      include/linux/serial.h
17390 F:      include/linux/serial_core.h
17391 F:      include/linux/tty.h
17392 F:      include/uapi/linux/serial.h
17393 F:      include/uapi/linux/serial_core.h
17394 F:      include/uapi/linux/tty.h
17395
17396 TUA9001 MEDIA DRIVER
17397 M:      Antti Palosaari <[email protected]>
17398 L:      [email protected]
17399 S:      Maintained
17400 W:      https://linuxtv.org
17401 W:      http://palosaari.fi/linux/
17402 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17403 T:      git git://linuxtv.org/anttip/media_tree.git
17404 F:      drivers/media/tuners/tua9001*
17405
17406 TULIP NETWORK DRIVERS
17407 L:      [email protected]
17408 L:      [email protected]
17409 S:      Orphan
17410 F:      drivers/net/ethernet/dec/tulip/
17411
17412 TUN/TAP driver
17413 M:      Maxim Krasnyansky <[email protected]>
17414 S:      Maintained
17415 W:      http://vtun.sourceforge.net/tun
17416 F:      Documentation/networking/tuntap.rst
17417 F:      arch/um/os-Linux/drivers/
17418
17419 TURBOCHANNEL SUBSYSTEM
17420 M:      "Maciej W. Rozycki" <[email protected]>
17421 M:      Ralf Baechle <[email protected]>
17422 L:      [email protected]
17423 S:      Maintained
17424 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17425 F:      drivers/tc/
17426 F:      include/linux/tc.h
17427
17428 TURBOSTAT UTILITY
17429 M:      "Len Brown" <[email protected]>
17430 L:      [email protected]
17431 S:      Supported
17432 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17433 B:      https://bugzilla.kernel.org
17434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17435 F:      tools/power/x86/turbostat/
17436
17437 TW5864 VIDEO4LINUX DRIVER
17438 M:      Bluecherry Maintainers <[email protected]>
17439 M:      Anton Sviridenko <[email protected]>
17440 M:      Andrey Utkin <[email protected]>
17441 M:      Andrey Utkin <[email protected]>
17442 L:      [email protected]
17443 S:      Supported
17444 F:      drivers/media/pci/tw5864/
17445
17446 TW68 VIDEO4LINUX DRIVER
17447 M:      Hans Verkuil <[email protected]>
17448 L:      [email protected]
17449 S:      Odd Fixes
17450 W:      https://linuxtv.org
17451 T:      git git://linuxtv.org/media_tree.git
17452 F:      drivers/media/pci/tw68/
17453
17454 TW686X VIDEO4LINUX DRIVER
17455 M:      Ezequiel Garcia <[email protected]>
17456 L:      [email protected]
17457 S:      Maintained
17458 W:      http://linuxtv.org
17459 T:      git git://linuxtv.org/media_tree.git
17460 F:      drivers/media/pci/tw686x/
17461
17462 UACCE ACCELERATOR FRAMEWORK
17463 M:      Zhangfei Gao <[email protected]>
17464 M:      Zhou Wang <[email protected]>
17465 L:      [email protected]
17466 L:      [email protected]
17467 S:      Maintained
17468 F:      Documentation/ABI/testing/sysfs-driver-uacce
17469 F:      Documentation/misc-devices/uacce.rst
17470 F:      drivers/misc/uacce/
17471 F:      include/linux/uacce.h
17472 F:      include/uapi/misc/uacce/
17473
17474 UBI FILE SYSTEM (UBIFS)
17475 M:      Richard Weinberger <[email protected]>
17476 L:      [email protected]
17477 S:      Supported
17478 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17481 F:      Documentation/filesystems/ubifs.rst
17482 F:      fs/ubifs/
17483
17484 UCLINUX (M68KNOMMU AND COLDFIRE)
17485 M:      Greg Ungerer <[email protected]>
17486 L:      [email protected]
17487 L:      [email protected]  (subscribers-only)
17488 S:      Maintained
17489 W:      http://www.linux-m68k.org/
17490 W:      http://www.uclinux.org/
17491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17492 F:      arch/m68k/*/*_no.*
17493 F:      arch/m68k/68*/
17494 F:      arch/m68k/coldfire/
17495 F:      arch/m68k/include/asm/*_no.*
17496
17497 UDF FILESYSTEM
17498 M:      Jan Kara <[email protected]>
17499 S:      Maintained
17500 F:      Documentation/filesystems/udf.rst
17501 F:      fs/udf/
17502
17503 UDRAW TABLET
17504 M:      Bastien Nocera <[email protected]>
17505 L:      [email protected]
17506 S:      Maintained
17507 F:      drivers/hid/hid-udraw-ps3.c
17508
17509 UFS FILESYSTEM
17510 M:      Evgeniy Dushistov <[email protected]>
17511 S:      Maintained
17512 F:      Documentation/admin-guide/ufs.rst
17513 F:      fs/ufs/
17514
17515 UHID USERSPACE HID IO DRIVER
17516 M:      David Herrmann <[email protected]>
17517 L:      [email protected]
17518 S:      Maintained
17519 F:      drivers/hid/uhid.c
17520 F:      include/uapi/linux/uhid.h
17521
17522 ULPI BUS
17523 M:      Heikki Krogerus <[email protected]>
17524 L:      [email protected]
17525 S:      Maintained
17526 F:      drivers/usb/common/ulpi.c
17527 F:      include/linux/ulpi/
17528
17529 UNICODE SUBSYSTEM
17530 M:      Gabriel Krisman Bertazi <[email protected]>
17531 L:      [email protected]
17532 S:      Supported
17533 F:      fs/unicode/
17534
17535 UNICORE32 ARCHITECTURE
17536 M:      Guan Xuetao <[email protected]>
17537 S:      Maintained
17538 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17539 T:      git git://github.com/gxt/linux.git
17540 F:      arch/unicore32/
17541
17542 UNIFDEF
17543 M:      Tony Finch <[email protected]>
17544 S:      Maintained
17545 W:      http://dotat.at/prog/unifdef
17546 F:      scripts/unifdef.c
17547
17548 UNIFORM CDROM DRIVER
17549 M:      Jens Axboe <[email protected]>
17550 S:      Maintained
17551 W:      http://www.kernel.dk
17552 F:      Documentation/cdrom/
17553 F:      drivers/cdrom/cdrom.c
17554 F:      include/linux/cdrom.h
17555 F:      include/uapi/linux/cdrom.h
17556
17557 UNISYS S-PAR DRIVERS
17558 M:      David Kershner <[email protected]>
17559 L:      [email protected] (Unisys internal)
17560 S:      Supported
17561 F:      drivers/staging/unisys/
17562 F:      drivers/visorbus/
17563 F:      include/linux/visorbus.h
17564
17565 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17566 R:      Alim Akhtar <[email protected]>
17567 R:      Avri Altman <[email protected]>
17568 L:      [email protected]
17569 S:      Supported
17570 F:      Documentation/scsi/ufs.rst
17571 F:      drivers/scsi/ufs/
17572
17573 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17574 M:      Pedro Sousa <[email protected]>
17575 L:      [email protected]
17576 S:      Supported
17577 F:      drivers/scsi/ufs/*dwc*
17578
17579 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17580 M:      Stanley Chu <[email protected]>
17581 L:      [email protected]
17582 L:      [email protected] (moderated for non-subscribers)
17583 S:      Maintained
17584 F:      drivers/scsi/ufs/ufs-mediatek*
17585
17586 UNSORTED BLOCK IMAGES (UBI)
17587 M:      Richard Weinberger <[email protected]>
17588 L:      [email protected]
17589 S:      Supported
17590 W:      http://www.linux-mtd.infradead.org/
17591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17593 F:      drivers/mtd/ubi/
17594 F:      include/linux/mtd/ubi.h
17595 F:      include/uapi/mtd/ubi-user.h
17596
17597 USB "USBNET" DRIVER FRAMEWORK
17598 M:      Oliver Neukum <[email protected]>
17599 L:      [email protected]
17600 S:      Maintained
17601 W:      http://www.linux-usb.org/usbnet
17602 F:      drivers/net/usb/usbnet.c
17603 F:      include/linux/usb/usbnet.h
17604
17605 USB ACM DRIVER
17606 M:      Oliver Neukum <[email protected]>
17607 L:      [email protected]
17608 S:      Maintained
17609 F:      Documentation/usb/acm.rst
17610 F:      drivers/usb/class/cdc-acm.*
17611
17612 USB APPLE MFI FASTCHARGE DRIVER
17613 M:      Bastien Nocera <[email protected]>
17614 L:      [email protected]
17615 S:      Maintained
17616 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17617
17618 USB AR5523 WIRELESS DRIVER
17619 M:      Pontus Fuchs <[email protected]>
17620 L:      [email protected]
17621 S:      Maintained
17622 F:      drivers/net/wireless/ath/ar5523/
17623
17624 USB ATTACHED SCSI
17625 M:      Oliver Neukum <[email protected]>
17626 L:      [email protected]
17627 L:      [email protected]
17628 S:      Maintained
17629 F:      drivers/usb/storage/uas.c
17630
17631 USB CDC ETHERNET DRIVER
17632 M:      Oliver Neukum <[email protected]>
17633 L:      [email protected]
17634 S:      Maintained
17635 F:      drivers/net/usb/cdc_*.c
17636 F:      include/uapi/linux/usb/cdc.h
17637
17638 USB CHAOSKEY DRIVER
17639 M:      Keith Packard <[email protected]>
17640 L:      [email protected]
17641 S:      Maintained
17642 F:      drivers/usb/misc/chaoskey.c
17643
17644 USB CYPRESS C67X00 DRIVER
17645 M:      Peter Korsgaard <[email protected]>
17646 L:      [email protected]
17647 S:      Maintained
17648 F:      drivers/usb/c67x00/
17649
17650 USB DAVICOM DM9601 DRIVER
17651 M:      Peter Korsgaard <[email protected]>
17652 L:      [email protected]
17653 S:      Maintained
17654 W:      http://www.linux-usb.org/usbnet
17655 F:      drivers/net/usb/dm9601.c
17656
17657 USB EHCI DRIVER
17658 M:      Alan Stern <[email protected]>
17659 L:      [email protected]
17660 S:      Maintained
17661 F:      Documentation/usb/ehci.rst
17662 F:      drivers/usb/host/ehci*
17663
17664 USB GADGET/PERIPHERAL SUBSYSTEM
17665 M:      Felipe Balbi <[email protected]>
17666 L:      [email protected]
17667 S:      Maintained
17668 W:      http://www.linux-usb.org/gadget
17669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17670 F:      drivers/usb/gadget/
17671 F:      include/linux/usb/gadget*
17672
17673 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17674 M:      Jiri Kosina <[email protected]>
17675 M:      Benjamin Tissoires <[email protected]>
17676 L:      [email protected]
17677 S:      Maintained
17678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17679 F:      Documentation/hid/hiddev.rst
17680 F:      drivers/hid/usbhid/
17681
17682 USB INTEL XHCI ROLE MUX DRIVER
17683 M:      Hans de Goede <[email protected]>
17684 L:      [email protected]
17685 S:      Maintained
17686 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17687
17688 USB IP DRIVER FOR HISILICON KIRIN
17689 M:      Yu Chen <[email protected]>
17690 M:      Binghui Wang <[email protected]>
17691 L:      [email protected]
17692 S:      Maintained
17693 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17694 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17695
17696 USB ISP116X DRIVER
17697 M:      Olav Kongas <[email protected]>
17698 L:      [email protected]
17699 S:      Maintained
17700 F:      drivers/usb/host/isp116x*
17701 F:      include/linux/usb/isp116x.h
17702
17703 USB LAN78XX ETHERNET DRIVER
17704 M:      Woojung Huh <[email protected]>
17705 M:      Microchip Linux Driver Support <[email protected]>
17706 L:      [email protected]
17707 S:      Maintained
17708 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17709 F:      drivers/net/usb/lan78xx.*
17710 F:      include/dt-bindings/net/microchip-lan78xx.h
17711
17712 USB MASS STORAGE DRIVER
17713 M:      Alan Stern <[email protected]>
17714 L:      [email protected]
17715 L:      [email protected]
17716 S:      Maintained
17717 F:      drivers/usb/storage/
17718
17719 USB MIDI DRIVER
17720 M:      Clemens Ladisch <[email protected]>
17721 L:      [email protected] (moderated for non-subscribers)
17722 S:      Maintained
17723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17724 F:      sound/usb/midi.*
17725
17726 USB NETWORKING DRIVERS
17727 L:      [email protected]
17728 S:      Odd Fixes
17729 F:      drivers/net/usb/
17730
17731 USB OHCI DRIVER
17732 M:      Alan Stern <[email protected]>
17733 L:      [email protected]
17734 S:      Maintained
17735 F:      Documentation/usb/ohci.rst
17736 F:      drivers/usb/host/ohci*
17737
17738 USB OTG FSM (Finite State Machine)
17739 M:      Peter Chen <[email protected]>
17740 L:      [email protected]
17741 S:      Maintained
17742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17743 F:      drivers/usb/common/usb-otg-fsm.c
17744
17745 USB OVER IP DRIVER
17746 M:      Valentina Manea <[email protected]>
17747 M:      Shuah Khan <[email protected]>
17748 M:      Shuah Khan <[email protected]>
17749 L:      [email protected]
17750 S:      Maintained
17751 F:      Documentation/usb/usbip_protocol.rst
17752 F:      drivers/usb/usbip/
17753 F:      tools/testing/selftests/drivers/usb/usbip/
17754 F:      tools/usb/usbip/
17755
17756 USB PEGASUS DRIVER
17757 M:      Petko Manolov <[email protected]>
17758 L:      [email protected]
17759 L:      [email protected]
17760 S:      Maintained
17761 W:      https://github.com/petkan/pegasus
17762 T:      git git://github.com/petkan/pegasus.git
17763 F:      drivers/net/usb/pegasus.*
17764
17765 USB PHY LAYER
17766 M:      Felipe Balbi <[email protected]>
17767 L:      [email protected]
17768 S:      Maintained
17769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17770 F:      drivers/usb/phy/
17771
17772 USB PRINTER DRIVER (usblp)
17773 M:      Pete Zaitcev <[email protected]>
17774 L:      [email protected]
17775 S:      Supported
17776 F:      drivers/usb/class/usblp.c
17777
17778 USB QMI WWAN NETWORK DRIVER
17779 M:      Bjørn Mork <[email protected]>
17780 L:      [email protected]
17781 S:      Maintained
17782 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17783 F:      drivers/net/usb/qmi_wwan.c
17784
17785 USB RTL8150 DRIVER
17786 M:      Petko Manolov <[email protected]>
17787 L:      [email protected]
17788 L:      [email protected]
17789 S:      Maintained
17790 W:      https://github.com/petkan/rtl8150
17791 T:      git git://github.com/petkan/rtl8150.git
17792 F:      drivers/net/usb/rtl8150.c
17793
17794 USB SERIAL SUBSYSTEM
17795 M:      Johan Hovold <[email protected]>
17796 L:      [email protected]
17797 S:      Maintained
17798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17799 F:      Documentation/usb/usb-serial.rst
17800 F:      drivers/usb/serial/
17801 F:      include/linux/usb/serial.h
17802
17803 USB SMSC75XX ETHERNET DRIVER
17804 M:      Steve Glendinning <[email protected]>
17805 L:      [email protected]
17806 S:      Maintained
17807 F:      drivers/net/usb/smsc75xx.*
17808
17809 USB SMSC95XX ETHERNET DRIVER
17810 M:      Steve Glendinning <[email protected]>
17811 M:      Microchip Linux Driver Support <[email protected]>
17812 L:      [email protected]
17813 S:      Maintained
17814 F:      drivers/net/usb/smsc95xx.*
17815
17816 USB SUBSYSTEM
17817 M:      Greg Kroah-Hartman <[email protected]>
17818 L:      [email protected]
17819 S:      Supported
17820 W:      http://www.linux-usb.org
17821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17822 F:      Documentation/devicetree/bindings/usb/
17823 F:      Documentation/usb/
17824 F:      drivers/usb/
17825 F:      include/linux/usb.h
17826 F:      include/linux/usb/
17827
17828 USB TYPEC BUS FOR ALTERNATE MODES
17829 M:      Heikki Krogerus <[email protected]>
17830 L:      [email protected]
17831 S:      Maintained
17832 F:      Documentation/ABI/testing/sysfs-bus-typec
17833 F:      Documentation/driver-api/usb/typec_bus.rst
17834 F:      drivers/usb/typec/altmodes/
17835 F:      include/linux/usb/typec_altmode.h
17836
17837 USB TYPEC CLASS
17838 M:      Heikki Krogerus <[email protected]>
17839 L:      [email protected]
17840 S:      Maintained
17841 F:      Documentation/ABI/testing/sysfs-class-typec
17842 F:      Documentation/driver-api/usb/typec.rst
17843 F:      drivers/usb/typec/
17844 F:      include/linux/usb/typec.h
17845
17846 USB TYPEC INTEL PMC MUX DRIVER
17847 M:      Heikki Krogerus <[email protected]>
17848 L:      [email protected]
17849 S:      Maintained
17850 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
17851 F:      drivers/usb/typec/mux/intel_pmc_mux.c
17852
17853 USB TYPEC PI3USB30532 MUX DRIVER
17854 M:      Hans de Goede <[email protected]>
17855 L:      [email protected]
17856 S:      Maintained
17857 F:      drivers/usb/typec/mux/pi3usb30532.c
17858
17859 USB TYPEC PORT CONTROLLER DRIVERS
17860 M:      Guenter Roeck <[email protected]>
17861 L:      [email protected]
17862 S:      Maintained
17863 F:      drivers/usb/typec/tcpm/
17864
17865 USB UHCI DRIVER
17866 M:      Alan Stern <[email protected]>
17867 L:      [email protected]
17868 S:      Maintained
17869 F:      drivers/usb/host/uhci*
17870
17871 USB VIDEO CLASS
17872 M:      Laurent Pinchart <[email protected]>
17873 L:      [email protected] (subscribers-only)
17874 L:      [email protected]
17875 S:      Maintained
17876 W:      http://www.ideasonboard.org/uvc/
17877 T:      git git://linuxtv.org/media_tree.git
17878 F:      drivers/media/usb/uvc/
17879 F:      include/uapi/linux/uvcvideo.h
17880
17881 USB VISION DRIVER
17882 M:      Hans Verkuil <[email protected]>
17883 L:      [email protected]
17884 S:      Odd Fixes
17885 W:      https://linuxtv.org
17886 T:      git git://linuxtv.org/media_tree.git
17887 F:      drivers/staging/media/usbvision/
17888
17889 USB WEBCAM GADGET
17890 M:      Laurent Pinchart <[email protected]>
17891 L:      [email protected]
17892 S:      Maintained
17893 F:      drivers/usb/gadget/function/*uvc*
17894 F:      drivers/usb/gadget/legacy/webcam.c
17895 F:      include/uapi/linux/usb/g_uvc.h
17896
17897 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17898 M:      Jussi Kivilinna <[email protected]>
17899 L:      [email protected]
17900 S:      Maintained
17901 F:      drivers/net/wireless/rndis_wlan.c
17902
17903 USB XHCI DRIVER
17904 M:      Mathias Nyman <[email protected]>
17905 L:      [email protected]
17906 S:      Supported
17907 F:      drivers/usb/host/pci-quirks*
17908 F:      drivers/usb/host/xhci*
17909
17910 USB ZD1201 DRIVER
17911 L:      [email protected]
17912 S:      Orphan
17913 W:      http://linux-lc100020.sourceforge.net
17914 F:      drivers/net/wireless/zydas/zd1201.*
17915
17916 USB ZR364XX DRIVER
17917 M:      Antoine Jacquet <[email protected]>
17918 L:      [email protected]
17919 L:      [email protected]
17920 S:      Maintained
17921 W:      http://royale.zerezo.com/zr364xx/
17922 T:      git git://linuxtv.org/media_tree.git
17923 F:      Documentation/admin-guide/media/zr364xx*
17924 F:      drivers/media/usb/zr364xx/
17925
17926 USER-MODE LINUX (UML)
17927 M:      Jeff Dike <[email protected]>
17928 M:      Richard Weinberger <[email protected]>
17929 M:      Anton Ivanov <[email protected]>
17930 L:      [email protected]
17931 S:      Maintained
17932 W:      http://user-mode-linux.sourceforge.net
17933 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17935 F:      Documentation/virt/uml/
17936 F:      arch/um/
17937 F:      arch/x86/um/
17938 F:      fs/hostfs/
17939
17940 USERSPACE COPYIN/COPYOUT (UIOVEC)
17941 M:      Alexander Viro <[email protected]>
17942 S:      Maintained
17943 F:      include/linux/uio.h
17944 F:      lib/iov_iter.c
17945
17946 USERSPACE DMA BUFFER DRIVER
17947 M:      Gerd Hoffmann <[email protected]>
17948 L:      [email protected]
17949 S:      Maintained
17950 T:      git git://anongit.freedesktop.org/drm/drm-misc
17951 F:      drivers/dma-buf/udmabuf.c
17952 F:      include/uapi/linux/udmabuf.h
17953
17954 USERSPACE I/O (UIO)
17955 M:      Greg Kroah-Hartman <[email protected]>
17956 S:      Maintained
17957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17958 F:      Documentation/driver-api/uio-howto.rst
17959 F:      drivers/uio/
17960 F:      include/linux/uio_driver.h
17961
17962 UTIL-LINUX PACKAGE
17963 M:      Karel Zak <[email protected]>
17964 L:      [email protected]
17965 S:      Maintained
17966 W:      http://en.wikipedia.org/wiki/Util-linux
17967 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17968
17969 UUID HELPERS
17970 M:      Christoph Hellwig <[email protected]>
17971 R:      Andy Shevchenko <[email protected]>
17972 L:      [email protected]
17973 S:      Maintained
17974 T:      git git://git.infradead.org/users/hch/uuid.git
17975 F:      include/linux/uuid.h
17976 F:      include/uapi/linux/uuid.h
17977 F:      lib/test_uuid.c
17978 F:      lib/uuid.c
17979
17980 UVESAFB DRIVER
17981 M:      Michal Januszewski <[email protected]>
17982 L:      [email protected]
17983 S:      Maintained
17984 W:      https://github.com/mjanusz/v86d
17985 F:      Documentation/fb/uvesafb.rst
17986 F:      drivers/video/fbdev/uvesafb.*
17987
17988 Ux500 CLOCK DRIVERS
17989 M:      Ulf Hansson <[email protected]>
17990 L:      [email protected]
17991 L:      [email protected] (moderated for non-subscribers)
17992 S:      Maintained
17993 F:      drivers/clk/ux500/
17994
17995 VF610 NAND DRIVER
17996 M:      Stefan Agner <[email protected]>
17997 L:      [email protected]
17998 S:      Supported
17999 F:      drivers/mtd/nand/raw/vf610_nfc.c
18000
18001 VFAT/FAT/MSDOS FILESYSTEM
18002 M:      OGAWA Hirofumi <[email protected]>
18003 S:      Maintained
18004 F:      Documentation/filesystems/vfat.rst
18005 F:      fs/fat/
18006
18007 VFIO DRIVER
18008 M:      Alex Williamson <[email protected]>
18009 R:      Cornelia Huck <[email protected]>
18010 L:      [email protected]
18011 S:      Maintained
18012 T:      git git://github.com/awilliam/linux-vfio.git
18013 F:      Documentation/driver-api/vfio.rst
18014 F:      drivers/vfio/
18015 F:      include/linux/vfio.h
18016 F:      include/uapi/linux/vfio.h
18017
18018 VFIO MEDIATED DEVICE DRIVERS
18019 M:      Kirti Wankhede <[email protected]>
18020 L:      [email protected]
18021 S:      Maintained
18022 F:      Documentation/driver-api/vfio-mediated-device.rst
18023 F:      drivers/vfio/mdev/
18024 F:      include/linux/mdev.h
18025 F:      samples/vfio-mdev/
18026
18027 VFIO PLATFORM DRIVER
18028 M:      Eric Auger <[email protected]>
18029 L:      [email protected]
18030 S:      Maintained
18031 F:      drivers/vfio/platform/
18032
18033 VGA_SWITCHEROO
18034 R:      Lukas Wunner <[email protected]>
18035 S:      Maintained
18036 T:      git git://anongit.freedesktop.org/drm/drm-misc
18037 F:      Documentation/gpu/vga-switcheroo.rst
18038 F:      drivers/gpu/vga/vga_switcheroo.c
18039 F:      include/linux/vga_switcheroo.h
18040
18041 VIA RHINE NETWORK DRIVER
18042 S:      Orphan
18043 F:      drivers/net/ethernet/via/via-rhine.c
18044
18045 VIA SD/MMC CARD CONTROLLER DRIVER
18046 M:      Bruce Chang <[email protected]>
18047 M:      Harald Welte <[email protected]>
18048 S:      Maintained
18049 F:      drivers/mmc/host/via-sdmmc.c
18050
18051 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18052 M:      Florian Tobias Schandinat <[email protected]>
18053 L:      [email protected]
18054 S:      Maintained
18055 F:      drivers/video/fbdev/via/
18056 F:      include/linux/via-core.h
18057 F:      include/linux/via-gpio.h
18058 F:      include/linux/via_i2c.h
18059
18060 VIA VELOCITY NETWORK DRIVER
18061 M:      Francois Romieu <[email protected]>
18062 L:      [email protected]
18063 S:      Maintained
18064 F:      drivers/net/ethernet/via/via-velocity.*
18065
18066 VICODEC VIRTUAL CODEC DRIVER
18067 M:      Hans Verkuil <[email protected]>
18068 L:      [email protected]
18069 S:      Maintained
18070 W:      https://linuxtv.org
18071 T:      git git://linuxtv.org/media_tree.git
18072 F:      drivers/media/test-drivers/vicodec/*
18073
18074 VIDEO I2C POLLING DRIVER
18075 M:      Matt Ranostay <[email protected]>
18076 L:      [email protected]
18077 S:      Maintained
18078 F:      drivers/media/i2c/video-i2c.c
18079
18080 VIDEO MULTIPLEXER DRIVER
18081 M:      Philipp Zabel <[email protected]>
18082 L:      [email protected]
18083 S:      Maintained
18084 F:      drivers/media/platform/video-mux.c
18085
18086 VIDEOBUF2 FRAMEWORK
18087 M:      Pawel Osciak <[email protected]>
18088 M:      Marek Szyprowski <[email protected]>
18089 M:      Kyungmin Park <[email protected]>
18090 R:      Tomasz Figa <[email protected]>
18091 L:      [email protected]
18092 S:      Maintained
18093 F:      drivers/media/common/videobuf2/*
18094 F:      include/media/videobuf2-*
18095
18096 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18097 M:      Helen Koike <[email protected]>
18098 R:      Shuah Khan <[email protected]>
18099 L:      [email protected]
18100 S:      Maintained
18101 W:      https://linuxtv.org
18102 T:      git git://linuxtv.org/media_tree.git
18103 F:      drivers/media/test-drivers/vimc/*
18104
18105 VIRT LIB
18106 M:      Alex Williamson <[email protected]>
18107 M:      Paolo Bonzini <[email protected]>
18108 L:      [email protected]
18109 S:      Supported
18110 F:      virt/lib/
18111
18112 VIRTIO AND VHOST VSOCK DRIVER
18113 M:      Stefan Hajnoczi <[email protected]>
18114 M:      Stefano Garzarella <[email protected]>
18115 L:      [email protected]
18116 L:      [email protected]
18117 L:      [email protected]
18118 S:      Maintained
18119 F:      drivers/net/vsockmon.c
18120 F:      drivers/vhost/vsock.c
18121 F:      include/linux/virtio_vsock.h
18122 F:      include/uapi/linux/virtio_vsock.h
18123 F:      include/uapi/linux/vm_sockets_diag.h
18124 F:      include/uapi/linux/vsockmon.h
18125 F:      net/vmw_vsock/af_vsock_tap.c
18126 F:      net/vmw_vsock/diag.c
18127 F:      net/vmw_vsock/virtio_transport.c
18128 F:      net/vmw_vsock/virtio_transport_common.c
18129 F:      net/vmw_vsock/vsock_loopback.c
18130 F:      tools/testing/vsock/
18131
18132 VIRTIO BLOCK AND SCSI DRIVERS
18133 M:      "Michael S. Tsirkin" <[email protected]>
18134 M:      Jason Wang <[email protected]>
18135 R:      Paolo Bonzini <[email protected]>
18136 R:      Stefan Hajnoczi <[email protected]>
18137 L:      [email protected]
18138 S:      Maintained
18139 F:      drivers/block/virtio_blk.c
18140 F:      drivers/scsi/virtio_scsi.c
18141 F:      drivers/vhost/scsi.c
18142 F:      include/uapi/linux/virtio_blk.h
18143 F:      include/uapi/linux/virtio_scsi.h
18144
18145 VIRTIO CONSOLE DRIVER
18146 M:      Amit Shah <[email protected]>
18147 L:      [email protected]
18148 S:      Maintained
18149 F:      drivers/char/virtio_console.c
18150 F:      include/linux/virtio_console.h
18151 F:      include/uapi/linux/virtio_console.h
18152
18153 VIRTIO CORE AND NET DRIVERS
18154 M:      "Michael S. Tsirkin" <[email protected]>
18155 M:      Jason Wang <[email protected]>
18156 L:      [email protected]
18157 S:      Maintained
18158 F:      Documentation/devicetree/bindings/virtio/
18159 F:      drivers/block/virtio_blk.c
18160 F:      drivers/crypto/virtio/
18161 F:      drivers/net/virtio_net.c
18162 F:      drivers/vdpa/
18163 F:      drivers/virtio/
18164 F:      include/linux/vdpa.h
18165 F:      include/linux/virtio*.h
18166 F:      include/uapi/linux/virtio_*.h
18167 F:      tools/virtio/
18168
18169 VIRTIO BALLOON
18170 M:      "Michael S. Tsirkin" <[email protected]>
18171 M:      David Hildenbrand <[email protected]>
18172 L:      [email protected]
18173 S:      Maintained
18174 F:      drivers/virtio/virtio_balloon.c
18175 F:      include/uapi/linux/virtio_balloon.h
18176 F:      include/linux/balloon_compaction.h
18177 F:      mm/balloon_compaction.c
18178
18179 VIRTIO CRYPTO DRIVER
18180 M:      Gonglei <[email protected]>
18181 L:      [email protected]
18182 L:      [email protected]
18183 S:      Maintained
18184 F:      drivers/crypto/virtio/
18185 F:      include/uapi/linux/virtio_crypto.h
18186
18187 VIRTIO DRIVERS FOR S390
18188 M:      Cornelia Huck <[email protected]>
18189 M:      Halil Pasic <[email protected]>
18190 L:      [email protected]
18191 L:      [email protected]
18192 L:      [email protected]
18193 S:      Supported
18194 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18195 F:      drivers/s390/virtio/
18196
18197 VIRTIO FILE SYSTEM
18198 M:      Vivek Goyal <[email protected]>
18199 M:      Stefan Hajnoczi <[email protected]>
18200 M:      Miklos Szeredi <[email protected]>
18201 L:      [email protected]
18202 L:      [email protected]
18203 S:      Supported
18204 W:      https://virtio-fs.gitlab.io/
18205 F:      Documentation/filesystems/virtiofs.rst
18206 F:      fs/fuse/virtio_fs.c
18207 F:      include/uapi/linux/virtio_fs.h
18208
18209 VIRTIO GPU DRIVER
18210 M:      David Airlie <[email protected]>
18211 M:      Gerd Hoffmann <[email protected]>
18212 L:      [email protected]
18213 L:      [email protected]
18214 S:      Maintained
18215 T:      git git://anongit.freedesktop.org/drm/drm-misc
18216 F:      drivers/gpu/drm/virtio/
18217 F:      include/uapi/linux/virtio_gpu.h
18218
18219 VIRTIO HOST (VHOST)
18220 M:      "Michael S. Tsirkin" <[email protected]>
18221 M:      Jason Wang <[email protected]>
18222 L:      [email protected]
18223 L:      [email protected]
18224 L:      [email protected]
18225 S:      Maintained
18226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18227 F:      drivers/vhost/
18228 F:      include/linux/vhost_iotlb.h
18229 F:      include/uapi/linux/vhost.h
18230
18231 VIRTIO INPUT DRIVER
18232 M:      Gerd Hoffmann <[email protected]>
18233 S:      Maintained
18234 F:      drivers/virtio/virtio_input.c
18235 F:      include/uapi/linux/virtio_input.h
18236
18237 VIRTIO IOMMU DRIVER
18238 M:      Jean-Philippe Brucker <[email protected]>
18239 L:      [email protected]
18240 S:      Maintained
18241 F:      drivers/iommu/virtio-iommu.c
18242 F:      include/uapi/linux/virtio_iommu.h
18243
18244 VIRTIO MEM DRIVER
18245 M:      David Hildenbrand <[email protected]>
18246 L:      [email protected]
18247 S:      Maintained
18248 F:      drivers/virtio/virtio_mem.c
18249 F:      include/uapi/linux/virtio_mem.h
18250
18251 VIRTUAL BOX GUEST DEVICE DRIVER
18252 M:      Hans de Goede <[email protected]>
18253 M:      Arnd Bergmann <[email protected]>
18254 M:      Greg Kroah-Hartman <[email protected]>
18255 S:      Maintained
18256 F:      drivers/virt/vboxguest/
18257 F:      include/linux/vbox_utils.h
18258 F:      include/uapi/linux/vbox*.h
18259
18260 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18261 M:      Hans de Goede <[email protected]>
18262 L:      [email protected]
18263 S:      Maintained
18264 F:      fs/vboxsf/*
18265
18266 VIRTUAL SERIO DEVICE DRIVER
18267 M:      Stephen Chandler Paul <[email protected]>
18268 S:      Maintained
18269 F:      drivers/input/serio/userio.c
18270 F:      include/uapi/linux/userio.h
18271
18272 VIVID VIRTUAL VIDEO DRIVER
18273 M:      Hans Verkuil <[email protected]>
18274 L:      [email protected]
18275 S:      Maintained
18276 W:      https://linuxtv.org
18277 T:      git git://linuxtv.org/media_tree.git
18278 F:      drivers/media/test-drivers/vivid/*
18279
18280 VLYNQ BUS
18281 M:      Florian Fainelli <[email protected]>
18282 L:      [email protected] (subscribers-only)
18283 S:      Maintained
18284 F:      drivers/vlynq/vlynq.c
18285 F:      include/linux/vlynq.h
18286
18287 VME SUBSYSTEM
18288 M:      Martyn Welch <[email protected]>
18289 M:      Manohar Vanga <[email protected]>
18290 M:      Greg Kroah-Hartman <[email protected]>
18291 L:      [email protected]
18292 S:      Maintained
18293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18294 F:      Documentation/driver-api/vme.rst
18295 F:      drivers/staging/vme/
18296 F:      drivers/vme/
18297 F:      include/linux/vme*
18298
18299 VMWARE BALLOON DRIVER
18300 M:      Nadav Amit <[email protected]>
18301 M:      "VMware, Inc." <[email protected]>
18302 L:      [email protected]
18303 S:      Maintained
18304 F:      drivers/misc/vmw_balloon.c
18305
18306 VMWARE HYPERVISOR INTERFACE
18307 M:      Deep Shah <[email protected]>
18308 M:      "VMware, Inc." <[email protected]>
18309 L:      [email protected]
18310 S:      Supported
18311 F:      arch/x86/include/asm/vmware.h
18312 F:      arch/x86/kernel/cpu/vmware.c
18313
18314 VMWARE PVRDMA DRIVER
18315 M:      Adit Ranadive <[email protected]>
18316 M:      VMware PV-Drivers <[email protected]>
18317 L:      [email protected]
18318 S:      Maintained
18319 F:      drivers/infiniband/hw/vmw_pvrdma/
18320
18321 VMware PVSCSI driver
18322 M:      Jim Gill <[email protected]>
18323 M:      VMware PV-Drivers <[email protected]>
18324 L:      [email protected]
18325 S:      Maintained
18326 F:      drivers/scsi/vmw_pvscsi.c
18327 F:      drivers/scsi/vmw_pvscsi.h
18328
18329 VMWARE VIRTUAL PTP CLOCK DRIVER
18330 M:      Vivek Thampi <[email protected]>
18331 M:      "VMware, Inc." <[email protected]>
18332 L:      [email protected]
18333 S:      Supported
18334 F:      drivers/ptp/ptp_vmw.c
18335
18336 VMWARE VMMOUSE SUBDRIVER
18337 M:      "VMware Graphics" <[email protected]>
18338 M:      "VMware, Inc." <[email protected]>
18339 L:      [email protected]
18340 S:      Maintained
18341 F:      drivers/input/mouse/vmmouse.c
18342 F:      drivers/input/mouse/vmmouse.h
18343
18344 VMWARE VMXNET3 ETHERNET DRIVER
18345 M:      Ronak Doshi <[email protected]>
18346 M:      "VMware, Inc." <[email protected]>
18347 L:      [email protected]
18348 S:      Maintained
18349 F:      drivers/net/vmxnet3/
18350
18351 VOCORE VOCORE2 BOARD
18352 M:      Harvey Hunt <[email protected]>
18353 L:      [email protected]
18354 S:      Maintained
18355 F:      arch/mips/boot/dts/ralink/vocore2.dts
18356
18357 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18358 M:      Liam Girdwood <[email protected]>
18359 M:      Mark Brown <[email protected]>
18360 L:      [email protected]
18361 S:      Supported
18362 W:      http://www.slimlogic.co.uk/?p=48
18363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18364 F:      Documentation/devicetree/bindings/regulator/
18365 F:      Documentation/power/regulator/
18366 F:      drivers/regulator/
18367 F:      include/dt-bindings/regulator/
18368 F:      include/linux/regulator/
18369 K:      regulator_get_optional
18370
18371 VRF
18372 M:      David Ahern <[email protected]>
18373 M:      Shrijeet Mukherjee <[email protected]>
18374 L:      [email protected]
18375 S:      Maintained
18376 F:      Documentation/networking/vrf.rst
18377 F:      drivers/net/vrf.c
18378
18379 VSPRINTF
18380 M:      Petr Mladek <[email protected]>
18381 M:      Steven Rostedt <[email protected]>
18382 M:      Sergey Senozhatsky <[email protected]>
18383 R:      Andy Shevchenko <[email protected]>
18384 R:      Rasmus Villemoes <[email protected]>
18385 S:      Maintained
18386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18387 F:      Documentation/core-api/printk-formats.rst
18388 F:      lib/test_printf.c
18389 F:      lib/vsprintf.c
18390
18391 VT1211 HARDWARE MONITOR DRIVER
18392 M:      Juerg Haefliger <[email protected]>
18393 L:      [email protected]
18394 S:      Maintained
18395 F:      Documentation/hwmon/vt1211.rst
18396 F:      drivers/hwmon/vt1211.c
18397
18398 VT8231 HARDWARE MONITOR DRIVER
18399 M:      Roger Lucas <[email protected]>
18400 L:      [email protected]
18401 S:      Maintained
18402 F:      drivers/hwmon/vt8231.c
18403
18404 VUB300 USB to SDIO/SD/MMC bridge chip
18405 L:      [email protected]
18406 S:      Orphan
18407 F:      drivers/mmc/host/vub300.c
18408
18409 W1 DALLAS'S 1-WIRE BUS
18410 M:      Evgeniy Polyakov <[email protected]>
18411 S:      Maintained
18412 F:      Documentation/devicetree/bindings/w1/
18413 F:      Documentation/w1/
18414 F:      drivers/w1/
18415 F:      include/linux/w1.h
18416
18417 W83791D HARDWARE MONITORING DRIVER
18418 M:      Marc Hulsman <[email protected]>
18419 L:      [email protected]
18420 S:      Maintained
18421 F:      Documentation/hwmon/w83791d.rst
18422 F:      drivers/hwmon/w83791d.c
18423
18424 W83793 HARDWARE MONITORING DRIVER
18425 M:      Rudolf Marek <[email protected]>
18426 L:      [email protected]
18427 S:      Maintained
18428 F:      Documentation/hwmon/w83793.rst
18429 F:      drivers/hwmon/w83793.c
18430
18431 W83795 HARDWARE MONITORING DRIVER
18432 M:      Jean Delvare <[email protected]>
18433 L:      [email protected]
18434 S:      Maintained
18435 F:      drivers/hwmon/w83795.c
18436
18437 W83L51xD SD/MMC CARD INTERFACE DRIVER
18438 M:      Pierre Ossman <[email protected]>
18439 S:      Maintained
18440 F:      drivers/mmc/host/wbsd.*
18441
18442 WACOM PROTOCOL 4 SERIAL TABLETS
18443 M:      Julian Squires <[email protected]>
18444 M:      Hans de Goede <[email protected]>
18445 L:      [email protected]
18446 S:      Maintained
18447 F:      drivers/input/tablet/wacom_serial4.c
18448
18449 WATCHDOG DEVICE DRIVERS
18450 M:      Wim Van Sebroeck <[email protected]>
18451 M:      Guenter Roeck <[email protected]>
18452 L:      [email protected]
18453 S:      Maintained
18454 W:      http://www.linux-watchdog.org/
18455 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18456 F:      Documentation/devicetree/bindings/watchdog/
18457 F:      Documentation/watchdog/
18458 F:      drivers/watchdog/
18459 F:      include/linux/watchdog.h
18460 F:      include/uapi/linux/watchdog.h
18461
18462 WHISKEYCOVE PMIC GPIO DRIVER
18463 M:      Kuppuswamy Sathyanarayanan <[email protected]>
18464 L:      [email protected]
18465 S:      Maintained
18466 F:      drivers/gpio/gpio-wcove.c
18467
18468 WHWAVE RTC DRIVER
18469 M:      Dianlong Li <[email protected]>
18470 L:      [email protected]
18471 S:      Maintained
18472 F:      drivers/rtc/rtc-sd3078.c
18473
18474 WIIMOTE HID DRIVER
18475 M:      David Herrmann <[email protected]>
18476 L:      [email protected]
18477 S:      Maintained
18478 F:      drivers/hid/hid-wiimote*
18479
18480 WILOCITY WIL6210 WIRELESS DRIVER
18481 M:      Maya Erez <[email protected]>
18482 L:      [email protected]
18483 L:      [email protected]
18484 S:      Supported
18485 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18486 F:      drivers/net/wireless/ath/wil6210/
18487
18488 WIMAX STACK
18489 M:      Inaky Perez-Gonzalez <[email protected]>
18490 M:      [email protected]
18491 L:      [email protected] (subscribers-only)
18492 S:      Supported
18493 W:      http://linuxwimax.org
18494 F:      Documentation/admin-guide/wimax/wimax.rst
18495 F:      include/linux/wimax/debug.h
18496 F:      include/net/wimax.h
18497 F:      include/uapi/linux/wimax.h
18498 F:      net/wimax/
18499
18500 WINBOND CIR DRIVER
18501 M:      David Härdeman <[email protected]>
18502 S:      Maintained
18503 F:      drivers/media/rc/winbond-cir.c
18504
18505 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18506 M:      William Breathitt Gray <[email protected]>
18507 L:      [email protected]
18508 S:      Maintained
18509 F:      drivers/watchdog/ebc-c384_wdt.c
18510
18511 WINSYSTEMS WS16C48 GPIO DRIVER
18512 M:      William Breathitt Gray <[email protected]>
18513 L:      [email protected]
18514 S:      Maintained
18515 F:      drivers/gpio/gpio-ws16c48.c
18516
18517 WIREGUARD SECURE NETWORK TUNNEL
18518 M:      Jason A. Donenfeld <[email protected]>
18519 L:      [email protected]
18520 L:      [email protected]
18521 S:      Maintained
18522 F:      drivers/net/wireguard/
18523 F:      tools/testing/selftests/wireguard/
18524
18525 WISTRON LAPTOP BUTTON DRIVER
18526 M:      Miloslav Trmac <[email protected]>
18527 S:      Maintained
18528 F:      drivers/input/misc/wistron_btns.c
18529
18530 WL3501 WIRELESS PCMCIA CARD DRIVER
18531 L:      [email protected]
18532 S:      Odd fixes
18533 F:      drivers/net/wireless/wl3501*
18534
18535 WOLFSON MICROELECTRONICS DRIVERS
18536 L:      [email protected]
18537 S:      Supported
18538 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18539 T:      git https://github.com/CirrusLogic/linux-drivers.git
18540 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
18541 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
18542 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18543 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
18544 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
18545 F:      Documentation/hwmon/wm83??.rst
18546 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18547 F:      drivers/clk/clk-wm83*.c
18548 F:      drivers/extcon/extcon-arizona.c
18549 F:      drivers/gpio/gpio-*wm*.c
18550 F:      drivers/gpio/gpio-arizona.c
18551 F:      drivers/hwmon/wm83??-hwmon.c
18552 F:      drivers/input/misc/wm831x-on.c
18553 F:      drivers/input/touchscreen/wm831x-ts.c
18554 F:      drivers/input/touchscreen/wm97*.c
18555 F:      drivers/leds/leds-wm83*.c
18556 F:      drivers/mfd/arizona*
18557 F:      drivers/mfd/cs47l24*
18558 F:      drivers/mfd/wm*.c
18559 F:      drivers/power/supply/wm83*.c
18560 F:      drivers/regulator/arizona*
18561 F:      drivers/regulator/wm8*.c
18562 F:      drivers/rtc/rtc-wm83*.c
18563 F:      drivers/video/backlight/wm83*_bl.c
18564 F:      drivers/watchdog/wm83*_wdt.c
18565 F:      include/linux/mfd/arizona/
18566 F:      include/linux/mfd/wm831x/
18567 F:      include/linux/mfd/wm8350/
18568 F:      include/linux/mfd/wm8400*
18569 F:      include/linux/regulator/arizona*
18570 F:      include/linux/wm97xx.h
18571 F:      include/sound/wm????.h
18572 F:      sound/soc/codecs/arizona.?
18573 F:      sound/soc/codecs/cs47l24*
18574 F:      sound/soc/codecs/wm*
18575
18576 WORKQUEUE
18577 M:      Tejun Heo <[email protected]>
18578 R:      Lai Jiangshan <[email protected]>
18579 S:      Maintained
18580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18581 F:      Documentation/core-api/workqueue.rst
18582 F:      include/linux/workqueue.h
18583 F:      kernel/workqueue.c
18584
18585 X-POWERS AXP288 PMIC DRIVERS
18586 M:      Hans de Goede <[email protected]>
18587 S:      Maintained
18588 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18589 N:      axp288
18590
18591 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18592 M:      Chen-Yu Tsai <[email protected]>
18593 L:      [email protected]
18594 S:      Maintained
18595 N:      axp[128]
18596
18597 X.25 NETWORK LAYER
18598 M:      Andrew Hendry <[email protected]>
18599 L:      [email protected]
18600 S:      Odd Fixes
18601 F:      Documentation/networking/x25*
18602 F:      include/net/x25*
18603 F:      net/x25/
18604
18605 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18606 M:      Thomas Gleixner <[email protected]>
18607 M:      Ingo Molnar <[email protected]>
18608 M:      Borislav Petkov <[email protected]>
18609 M:      [email protected]
18610 R:      "H. Peter Anvin" <[email protected]>
18611 L:      [email protected]
18612 S:      Maintained
18613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18614 F:      Documentation/devicetree/bindings/x86/
18615 F:      Documentation/x86/
18616 F:      arch/x86/
18617
18618 X86 ENTRY CODE
18619 M:      Andy Lutomirski <[email protected]>
18620 L:      [email protected]
18621 S:      Maintained
18622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18623 F:      arch/x86/entry/
18624
18625 X86 MCE INFRASTRUCTURE
18626 M:      Tony Luck <[email protected]>
18627 M:      Borislav Petkov <[email protected]>
18628 L:      [email protected]
18629 S:      Maintained
18630 F:      arch/x86/kernel/cpu/mce/*
18631
18632 X86 MICROCODE UPDATE SUPPORT
18633 M:      Borislav Petkov <[email protected]>
18634 S:      Maintained
18635 F:      arch/x86/kernel/cpu/microcode/*
18636
18637 X86 MM
18638 M:      Dave Hansen <[email protected]>
18639 M:      Andy Lutomirski <[email protected]>
18640 M:      Peter Zijlstra <[email protected]>
18641 L:      [email protected]
18642 S:      Maintained
18643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18644 F:      arch/x86/mm/
18645
18646 X86 PLATFORM DRIVERS
18647 M:      Darren Hart <[email protected]>
18648 M:      Andy Shevchenko <[email protected]>
18649 L:      [email protected]
18650 S:      Odd Fixes
18651 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18652 F:      drivers/platform/olpc/
18653 F:      drivers/platform/x86/
18654
18655 X86 PLATFORM DRIVERS - ARCH
18656 R:      Darren Hart <[email protected]>
18657 R:      Andy Shevchenko <[email protected]>
18658 L:      [email protected]
18659 L:      [email protected]
18660 S:      Maintained
18661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18662 F:      arch/x86/platform
18663
18664 X86 VDSO
18665 M:      Andy Lutomirski <[email protected]>
18666 L:      [email protected]
18667 S:      Maintained
18668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18669 F:      arch/x86/entry/vdso/
18670
18671 XARRAY
18672 M:      Matthew Wilcox <[email protected]>
18673 L:      [email protected]
18674 S:      Supported
18675 F:      Documentation/core-api/xarray.rst
18676 F:      include/linux/idr.h
18677 F:      include/linux/xarray.h
18678 F:      lib/idr.c
18679 F:      lib/xarray.c
18680 F:      tools/testing/radix-tree
18681
18682 XBOX DVD IR REMOTE
18683 M:      Benjamin Valentin <[email protected]>
18684 S:      Maintained
18685 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18686 F:      drivers/media/rc/xbox_remote.c
18687
18688 XC2028/3028 TUNER DRIVER
18689 M:      Mauro Carvalho Chehab <[email protected]>
18690 L:      [email protected]
18691 S:      Maintained
18692 W:      https://linuxtv.org
18693 T:      git git://linuxtv.org/media_tree.git
18694 F:      drivers/media/tuners/tuner-xc2028.*
18695
18696 XDP (eXpress Data Path)
18697 M:      Alexei Starovoitov <[email protected]>
18698 M:      Daniel Borkmann <[email protected]>
18699 M:      David S. Miller <[email protected]>
18700 M:      Jakub Kicinski <[email protected]>
18701 M:      Jesper Dangaard Brouer <[email protected]>
18702 M:      John Fastabend <[email protected]>
18703 L:      [email protected]
18704 L:      [email protected]
18705 S:      Supported
18706 F:      include/net/xdp.h
18707 F:      include/trace/events/xdp.h
18708 F:      kernel/bpf/cpumap.c
18709 F:      kernel/bpf/devmap.c
18710 F:      net/core/xdp.c
18711 N:      xdp
18712 K:      xdp
18713
18714 XDP SOCKETS (AF_XDP)
18715 M:      Björn Töpel <[email protected]>
18716 M:      Magnus Karlsson <[email protected]>
18717 R:      Jonathan Lemon <[email protected]>
18718 L:      [email protected]
18719 L:      [email protected]
18720 S:      Maintained
18721 F:      include/net/xdp_sock*
18722 F:      include/net/xsk_buff_pool.h
18723 F:      include/uapi/linux/if_xdp.h
18724 F:      net/xdp/
18725 F:      samples/bpf/xdpsock*
18726 F:      tools/lib/bpf/xsk*
18727
18728 XEN BLOCK SUBSYSTEM
18729 M:      Konrad Rzeszutek Wilk <[email protected]>
18730 M:      Roger Pau Monné <[email protected]>
18731 L:      [email protected] (moderated for non-subscribers)
18732 S:      Supported
18733 F:      drivers/block/xen*
18734 F:      drivers/block/xen-blkback/*
18735
18736 XEN HYPERVISOR ARM
18737 M:      Stefano Stabellini <[email protected]>
18738 L:      [email protected] (moderated for non-subscribers)
18739 S:      Maintained
18740 F:      arch/arm/include/asm/xen/
18741 F:      arch/arm/xen/
18742
18743 XEN HYPERVISOR ARM64
18744 M:      Stefano Stabellini <[email protected]>
18745 L:      [email protected] (moderated for non-subscribers)
18746 S:      Maintained
18747 F:      arch/arm64/include/asm/xen/
18748 F:      arch/arm64/xen/
18749
18750 XEN HYPERVISOR INTERFACE
18751 M:      Boris Ostrovsky <[email protected]>
18752 M:      Juergen Gross <[email protected]>
18753 R:      Stefano Stabellini <[email protected]>
18754 L:      [email protected] (moderated for non-subscribers)
18755 S:      Supported
18756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18757 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18758 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18759 F:      arch/x86/include/asm/pvclock-abi.h
18760 F:      arch/x86/include/asm/xen/
18761 F:      arch/x86/platform/pvh/
18762 F:      arch/x86/xen/
18763 F:      drivers/*/xen-*front.c
18764 F:      drivers/xen/
18765 F:      include/uapi/xen/
18766 F:      include/xen/
18767
18768 XEN NETWORK BACKEND DRIVER
18769 M:      Wei Liu <[email protected]>
18770 M:      Paul Durrant <[email protected]>
18771 L:      [email protected] (moderated for non-subscribers)
18772 L:      [email protected]
18773 S:      Supported
18774 F:      drivers/net/xen-netback/*
18775
18776 XEN PCI SUBSYSTEM
18777 M:      Konrad Rzeszutek Wilk <[email protected]>
18778 L:      [email protected] (moderated for non-subscribers)
18779 S:      Supported
18780 F:      arch/x86/pci/*xen*
18781 F:      drivers/pci/*xen*
18782
18783 XEN PVSCSI DRIVERS
18784 M:      Juergen Gross <[email protected]>
18785 L:      [email protected] (moderated for non-subscribers)
18786 L:      [email protected]
18787 S:      Supported
18788 F:      drivers/scsi/xen-scsifront.c
18789 F:      drivers/xen/xen-scsiback.c
18790 F:      include/xen/interface/io/vscsiif.h
18791
18792 XEN SOUND FRONTEND DRIVER
18793 M:      Oleksandr Andrushchenko <[email protected]>
18794 L:      [email protected] (moderated for non-subscribers)
18795 L:      [email protected] (moderated for non-subscribers)
18796 S:      Supported
18797 F:      sound/xen/*
18798
18799 XEN SWIOTLB SUBSYSTEM
18800 M:      Konrad Rzeszutek Wilk <[email protected]>
18801 L:      [email protected] (moderated for non-subscribers)
18802 L:      [email protected]
18803 S:      Supported
18804 F:      arch/x86/xen/*swiotlb*
18805 F:      drivers/xen/*swiotlb*
18806
18807 XFS FILESYSTEM
18808 M:      Darrick J. Wong <[email protected]>
18809 M:      [email protected]
18810 L:      [email protected]
18811 S:      Supported
18812 W:      http://xfs.org/
18813 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18814 F:      Documentation/ABI/testing/sysfs-fs-xfs
18815 F:      Documentation/admin-guide/xfs.rst
18816 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
18817 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
18818 F:      fs/xfs/
18819 F:      include/uapi/linux/dqblk_xfs.h
18820 F:      include/uapi/linux/fsmap.h
18821
18822 XILINX AXI ETHERNET DRIVER
18823 M:      Radhey Shyam Pandey <[email protected]>
18824 S:      Maintained
18825 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18826
18827 XILINX CAN DRIVER
18828 M:      Appana Durga Kedareswara rao <[email protected]>
18829 R:      Naga Sureshkumar Relli <[email protected]>
18830 L:      [email protected]
18831 S:      Maintained
18832 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18833 F:      drivers/net/can/xilinx_can.c
18834
18835 XILINX SD-FEC IP CORES
18836 M:      Derek Kiernan <[email protected]>
18837 M:      Dragan Cvetic <[email protected]>
18838 S:      Maintained
18839 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18840 F:      Documentation/misc-devices/xilinx_sdfec.rst
18841 F:      drivers/misc/Kconfig
18842 F:      drivers/misc/Makefile
18843 F:      drivers/misc/xilinx_sdfec.c
18844 F:      include/uapi/misc/xilinx_sdfec.h
18845
18846 XILINX UARTLITE SERIAL DRIVER
18847 M:      Peter Korsgaard <[email protected]>
18848 L:      [email protected]
18849 S:      Maintained
18850 F:      drivers/tty/serial/uartlite.c
18851
18852 XILINX VIDEO IP CORES
18853 M:      Hyun Kwon <[email protected]>
18854 M:      Laurent Pinchart <[email protected]>
18855 L:      [email protected]
18856 S:      Supported
18857 T:      git git://linuxtv.org/media_tree.git
18858 F:      Documentation/devicetree/bindings/media/xilinx/
18859 F:      drivers/media/platform/xilinx/
18860 F:      include/uapi/linux/xilinx-v4l2-controls.h
18861
18862 XILLYBUS DRIVER
18863 M:      Eli Billauer <[email protected]>
18864 L:      [email protected]
18865 S:      Supported
18866 F:      drivers/char/xillybus/
18867
18868 XLP9XX I2C DRIVER
18869 M:      George Cherian <[email protected]>
18870 L:      [email protected]
18871 S:      Supported
18872 W:      http://www.marvell.com
18873 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18874 F:      drivers/i2c/busses/i2c-xlp9xx.c
18875
18876 XRA1403 GPIO EXPANDER
18877 M:      Nandor Han <[email protected]>
18878 M:      Semi Malinen <[email protected]>
18879 L:      [email protected]
18880 S:      Maintained
18881 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18882 F:      drivers/gpio/gpio-xra1403.c
18883
18884 XTENSA XTFPGA PLATFORM SUPPORT
18885 M:      Max Filippov <[email protected]>
18886 L:      [email protected]
18887 S:      Maintained
18888 F:      drivers/spi/spi-xtensa-xtfpga.c
18889 F:      sound/soc/xtensa/xtfpga-i2s.c
18890
18891 YAM DRIVER FOR AX.25
18892 M:      Jean-Paul Roubelat <[email protected]>
18893 L:      [email protected]
18894 S:      Maintained
18895 F:      drivers/net/hamradio/yam*
18896 F:      include/linux/yam.h
18897
18898 YAMA SECURITY MODULE
18899 M:      Kees Cook <[email protected]>
18900 S:      Supported
18901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18902 F:      Documentation/admin-guide/LSM/Yama.rst
18903 F:      security/yama/
18904
18905 YEALINK PHONE DRIVER
18906 M:      Henk Vergonet <[email protected]>
18907 L:      [email protected]
18908 S:      Maintained
18909 F:      Documentation/input/devices/yealink.rst
18910 F:      drivers/input/misc/yealink.*
18911
18912 Z8530 DRIVER FOR AX.25
18913 M:      Joerg Reuter <[email protected]>
18914 L:      [email protected]
18915 S:      Maintained
18916 W:      http://yaina.de/jreuter/
18917 W:      http://www.qsl.net/dl1bke/
18918 F:      Documentation/networking/z8530drv.rst
18919 F:      drivers/net/hamradio/*scc.c
18920 F:      drivers/net/hamradio/z8530.h
18921
18922 ZBUD COMPRESSED PAGE ALLOCATOR
18923 M:      Seth Jennings <[email protected]>
18924 M:      Dan Streetman <[email protected]>
18925 L:      [email protected]
18926 S:      Maintained
18927 F:      include/linux/zbud.h
18928 F:      mm/zbud.c
18929
18930 ZD1211RW WIRELESS DRIVER
18931 M:      Daniel Drake <[email protected]>
18932 M:      Ulrich Kunitz <[email protected]>
18933 L:      [email protected]
18934 L:      [email protected] (subscribers-only)
18935 S:      Maintained
18936 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18937 F:      drivers/net/wireless/zydas/zd1211rw/
18938
18939 ZD1301 MEDIA DRIVER
18940 M:      Antti Palosaari <[email protected]>
18941 L:      [email protected]
18942 S:      Maintained
18943 W:      https://linuxtv.org/
18944 W:      http://palosaari.fi/linux/
18945 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18946 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18947
18948 ZD1301_DEMOD MEDIA DRIVER
18949 M:      Antti Palosaari <[email protected]>
18950 L:      [email protected]
18951 S:      Maintained
18952 W:      https://linuxtv.org/
18953 W:      http://palosaari.fi/linux/
18954 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18955 F:      drivers/media/dvb-frontends/zd1301_demod*
18956
18957 ZHAOXIN PROCESSOR SUPPORT
18958 M:      Tony W Wang-oc <[email protected]>
18959 L:      [email protected]
18960 S:      Maintained
18961 F:      arch/x86/kernel/cpu/zhaoxin.c
18962
18963 ZONEFS FILESYSTEM
18964 M:      Damien Le Moal <[email protected]>
18965 M:      Naohiro Aota <[email protected]>
18966 R:      Johannes Thumshirn <[email protected]>
18967 L:      [email protected]
18968 S:      Maintained
18969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18970 F:      Documentation/filesystems/zonefs.rst
18971 F:      fs/zonefs/
18972
18973 ZPOOL COMPRESSED PAGE STORAGE API
18974 M:      Dan Streetman <[email protected]>
18975 L:      [email protected]
18976 S:      Maintained
18977 F:      include/linux/zpool.h
18978 F:      mm/zpool.c
18979
18980 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18981 M:      Minchan Kim <[email protected]>
18982 M:      Nitin Gupta <[email protected]>
18983 R:      Sergey Senozhatsky <[email protected]>
18984 L:      [email protected]
18985 S:      Maintained
18986 F:      Documentation/admin-guide/blockdev/zram.rst
18987 F:      drivers/block/zram/
18988
18989 ZS DECSTATION Z85C30 SERIAL DRIVER
18990 M:      "Maciej W. Rozycki" <[email protected]>
18991 S:      Maintained
18992 F:      drivers/tty/serial/zs.*
18993
18994 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18995 M:      Minchan Kim <[email protected]>
18996 M:      Nitin Gupta <[email protected]>
18997 R:      Sergey Senozhatsky <[email protected]>
18998 L:      [email protected]
18999 S:      Maintained
19000 F:      Documentation/vm/zsmalloc.rst
19001 F:      include/linux/zsmalloc.h
19002 F:      mm/zsmalloc.c
19003
19004 ZSWAP COMPRESSED SWAP CACHING
19005 M:      Seth Jennings <[email protected]>
19006 M:      Dan Streetman <[email protected]>
19007 M:      Vitaly Wool <[email protected]>
19008 L:      [email protected]
19009 S:      Maintained
19010 F:      mm/zswap.c
19011
19012 THE REST
19013 M:      Linus Torvalds <[email protected]>
19014 L:      [email protected]
19015 S:      Buried alive in reporters
19016 Q:      http://patchwork.kernel.org/project/LKML/list/
19017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19018 F:      *
19019 F:      */
This page took 1.076969 seconds and 4 git commands to generate.