]> Git Repo - linux.git/blob - MAINTAINERS
mm,hwpoison: introduce MF_MSG_UNSPLIT_THP
[linux.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: [email protected], especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <[email protected]>
148 L:      [email protected]
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <[email protected]>
155 L:      [email protected]
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <[email protected]>
161 L:      [email protected]
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <[email protected]>
168 L:      [email protected]
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <[email protected]>
174 M:      Jukka Rissanen <[email protected]>
175 L:      [email protected]
176 L:      [email protected]
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <[email protected]>
184 L:      [email protected]
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <[email protected]>
190 L:      [email protected]
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      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:      Joyce Ooi <[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 MEMORY CONTROLLER EDAC
806 M:      Talel Shenhar <[email protected]>
807 M:      Talel Shenhar <[email protected]>
808 S:      Maintained
809 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
810 F:      drivers/edac/al_mc_edac.c
811
812 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
813 M:      Talel Shenhar <[email protected]>
814 S:      Maintained
815 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
816 F:      drivers/thermal/thermal_mmio.c
817
818 AMAZON ETHERNET DRIVERS
819 M:      Netanel Belgazal <[email protected]>
820 M:      Arthur Kiyanovski <[email protected]>
821 R:      Guy Tzalik <[email protected]>
822 R:      Saeed Bishara <[email protected]>
823 R:      Zorik Machulsky <[email protected]>
824 L:      [email protected]
825 S:      Supported
826 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
827 F:      drivers/net/ethernet/amazon/
828
829 AMAZON RDMA EFA DRIVER
830 M:      Gal Pressman <[email protected]>
831 R:      Yossi Leybovich <[email protected]>
832 L:      [email protected]
833 S:      Supported
834 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
835 F:      drivers/infiniband/hw/efa/
836 F:      include/uapi/rdma/efa-abi.h
837
838 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
839 M:      Tom Lendacky <[email protected]>
840 M:      John Allen <[email protected]>
841 L:      [email protected]
842 S:      Supported
843 F:      drivers/crypto/ccp/
844 F:      include/linux/ccp.h
845
846 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
847 M:      Brijesh Singh <[email protected]>
848 M:      Tom Lendacky <[email protected]>
849 L:      [email protected]
850 S:      Supported
851 F:      drivers/crypto/ccp/sev*
852 F:      include/uapi/linux/psp-sev.h
853
854 AMD DISPLAY CORE
855 M:      Harry Wentland <[email protected]>
856 M:      Leo Li <[email protected]>
857 L:      [email protected]
858 S:      Supported
859 T:      git git://people.freedesktop.org/~agd5f/linux
860 F:      drivers/gpu/drm/amd/display/
861
862 AMD ENERGY DRIVER
863 M:      Naveen Krishna Chatradhi <[email protected]>
864 L:      [email protected]
865 S:      Maintained
866 F:      Documentation/hwmon/amd_energy.rst
867 F:      drivers/hwmon/amd_energy.c
868
869 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
870 M:      Huang Rui <[email protected]>
871 L:      [email protected]
872 S:      Supported
873 F:      Documentation/hwmon/fam15h_power.rst
874 F:      drivers/hwmon/fam15h_power.c
875
876 AMD FCH GPIO DRIVER
877 M:      Enrico Weigelt, metux IT consult <[email protected]>
878 L:      [email protected]
879 S:      Maintained
880 F:      drivers/gpio/gpio-amd-fch.c
881 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
882
883 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
884 L:      [email protected] (moderated for non-subscribers)
885 S:      Orphan
886 F:      drivers/usb/gadget/udc/amd5536udc.*
887
888 AMD GEODE PROCESSOR/CHIPSET SUPPORT
889 M:      Andres Salomon <[email protected]>
890 L:      [email protected] (moderated for non-subscribers)
891 S:      Supported
892 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
893 F:      arch/x86/include/asm/geode.h
894 F:      drivers/char/hw_random/geode-rng.c
895 F:      drivers/crypto/geode*
896 F:      drivers/video/fbdev/geode/
897
898 AMD IOMMU (AMD-VI)
899 M:      Joerg Roedel <[email protected]>
900 L:      [email protected]
901 S:      Maintained
902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
903 F:      drivers/iommu/amd/
904 F:      include/linux/amd-iommu.h
905
906 AMD KFD
907 M:      Felix Kuehling <[email protected]>
908 L:      [email protected]
909 S:      Supported
910 T:      git git://people.freedesktop.org/~agd5f/linux
911 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
912 F:      drivers/gpu/drm/amd/amdkfd/
913 F:      drivers/gpu/drm/amd/include/cik_structs.h
914 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
915 F:      drivers/gpu/drm/amd/include/v9_structs.h
916 F:      drivers/gpu/drm/amd/include/vi_structs.h
917 F:      include/uapi/linux/kfd_ioctl.h
918
919 AMD SPI DRIVER
920 M:      Sanjay R Mehta <[email protected]>
921 S:      Maintained
922 F:      drivers/spi/spi-amd.c
923
924 AMD MP2 I2C DRIVER
925 M:      Elie Morisse <[email protected]>
926 M:      Nehal Shah <[email protected]>
927 M:      Shyam Sundar S K <[email protected]>
928 L:      [email protected]
929 S:      Maintained
930 F:      drivers/i2c/busses/i2c-amd-mp2*
931
932 AMD POWERPLAY
933 M:      Evan Quan <[email protected]>
934 L:      [email protected]
935 S:      Supported
936 T:      git git://people.freedesktop.org/~agd5f/linux
937 F:      drivers/gpu/drm/amd/powerplay/
938
939 AMD SEATTLE DEVICE TREE SUPPORT
940 M:      Brijesh Singh <[email protected]>
941 M:      Suravee Suthikulpanit <[email protected]>
942 M:      Tom Lendacky <[email protected]>
943 S:      Supported
944 F:      arch/arm64/boot/dts/amd/
945
946 AMD XGBE DRIVER
947 M:      Tom Lendacky <[email protected]>
948 L:      [email protected]
949 S:      Supported
950 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
951 F:      drivers/net/ethernet/amd/xgbe/
952
953 AMS AS73211 DRIVER
954 M:      Christian Eggers <[email protected]>
955 L:      [email protected]
956 S:      Maintained
957 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
958 F:      drivers/iio/light/as73211.c
959
960 ANALOG DEVICES INC AD7192 DRIVER
961 M:      Alexandru Tachici <[email protected]>
962 L:      [email protected]
963 S:      Supported
964 W:      http://ez.analog.com/community/linux-device-drivers
965 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
966 F:      drivers/iio/adc/ad7192.c
967
968 ANALOG DEVICES INC AD7292 DRIVER
969 M:      Marcelo Schmitt <[email protected]>
970 L:      [email protected]
971 S:      Supported
972 W:      http://ez.analog.com/community/linux-device-drivers
973 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
974 F:      drivers/iio/adc/ad7292.c
975
976 ANALOG DEVICES INC AD7768-1 DRIVER
977 M:      Michael Hennerich <[email protected]>
978 L:      [email protected]
979 S:      Supported
980 W:      http://ez.analog.com/community/linux-device-drivers
981 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
982 F:      drivers/iio/adc/ad7768-1.c
983
984 ANALOG DEVICES INC AD7780 DRIVER
985 M:      Michael Hennerich <[email protected]>
986 M:      Renato Lui Geh <[email protected]>
987 L:      [email protected]
988 S:      Supported
989 W:      http://ez.analog.com/community/linux-device-drivers
990 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
991 F:      drivers/iio/adc/ad7780.c
992
993 ANALOG DEVICES INC AD9389B DRIVER
994 M:      Hans Verkuil <[email protected]>
995 L:      [email protected]
996 S:      Maintained
997 F:      drivers/media/i2c/ad9389b*
998
999 ANALOG DEVICES INC ADGS1408 DRIVER
1000 M:      Mircea Caprioru <[email protected]>
1001 S:      Supported
1002 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1003 F:      drivers/mux/adgs1408.c
1004
1005 ANALOG DEVICES INC ADIN DRIVER
1006 M:      Alexandru Ardelean <[email protected]>
1007 L:      [email protected]
1008 S:      Supported
1009 W:      http://ez.analog.com/community/linux-device-drivers
1010 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1011 F:      drivers/net/phy/adin.c
1012
1013 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1014 M:      Alexandru Ardelean <[email protected]>
1015 L:      [email protected]
1016 S:      Supported
1017 F:      drivers/iio/imu/adis.c
1018 F:      include/linux/iio/imu/adis.h
1019
1020 ANALOG DEVICES INC ADIS16460 DRIVER
1021 M:      Dragos Bogdan <[email protected]>
1022 L:      [email protected]
1023 S:      Supported
1024 W:      http://ez.analog.com/community/linux-device-drivers
1025 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1026 F:      drivers/iio/imu/adis16460.c
1027
1028 ANALOG DEVICES INC ADIS16475 DRIVER
1029 M:      Nuno Sa <[email protected]>
1030 L:      [email protected]
1031 W:      http://ez.analog.com/community/linux-device-drivers
1032 S:      Supported
1033 F:      drivers/iio/imu/adis16475.c
1034 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1035
1036 ANALOG DEVICES INC ADM1177 DRIVER
1037 M:      Michael Hennerich <[email protected]>
1038 L:      [email protected]
1039 S:      Supported
1040 W:      http://ez.analog.com/community/linux-device-drivers
1041 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1042 F:      drivers/hwmon/adm1177.c
1043
1044 ANALOG DEVICES INC ADP5061 DRIVER
1045 M:      Michael Hennerich <[email protected]>
1046 L:      [email protected]
1047 S:      Supported
1048 W:      http://ez.analog.com/community/linux-device-drivers
1049 F:      drivers/power/supply/adp5061.c
1050
1051 ANALOG DEVICES INC ADV7180 DRIVER
1052 M:      Lars-Peter Clausen <[email protected]>
1053 L:      [email protected]
1054 S:      Supported
1055 W:      http://ez.analog.com/community/linux-device-drivers
1056 F:      drivers/media/i2c/adv7180.c
1057 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1058
1059 ANALOG DEVICES INC ADV748X DRIVER
1060 M:      Kieran Bingham <[email protected]>
1061 L:      [email protected]
1062 S:      Maintained
1063 F:      drivers/media/i2c/adv748x/*
1064
1065 ANALOG DEVICES INC ADV7511 DRIVER
1066 M:      Hans Verkuil <[email protected]>
1067 L:      [email protected]
1068 S:      Maintained
1069 F:      drivers/media/i2c/adv7511*
1070
1071 ANALOG DEVICES INC ADV7604 DRIVER
1072 M:      Hans Verkuil <[email protected]>
1073 L:      [email protected]
1074 S:      Maintained
1075 F:      drivers/media/i2c/adv7604*
1076
1077 ANALOG DEVICES INC ADV7842 DRIVER
1078 M:      Hans Verkuil <[email protected]>
1079 L:      [email protected]
1080 S:      Maintained
1081 F:      drivers/media/i2c/adv7842*
1082
1083 ANALOG DEVICES INC ADXRS290 DRIVER
1084 M:      Nishant Malpani <[email protected]>
1085 L:      [email protected]
1086 S:      Supported
1087 F:      drivers/iio/gyro/adxrs290.c
1088 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1089
1090 ANALOG DEVICES INC ASOC CODEC DRIVERS
1091 M:      Lars-Peter Clausen <[email protected]>
1092 M:      Nuno Sá <[email protected]>
1093 L:      [email protected] (moderated for non-subscribers)
1094 S:      Supported
1095 W:      http://wiki.analog.com/
1096 W:      http://ez.analog.com/community/linux-device-drivers
1097 F:      sound/soc/codecs/ad1*
1098 F:      sound/soc/codecs/ad7*
1099 F:      sound/soc/codecs/adau*
1100 F:      sound/soc/codecs/adav*
1101 F:      sound/soc/codecs/sigmadsp.*
1102 F:      sound/soc/codecs/ssm*
1103
1104 ANALOG DEVICES INC DMA DRIVERS
1105 M:      Lars-Peter Clausen <[email protected]>
1106 S:      Supported
1107 W:      http://ez.analog.com/community/linux-device-drivers
1108 F:      drivers/dma/dma-axi-dmac.c
1109
1110 ANALOG DEVICES INC IIO DRIVERS
1111 M:      Lars-Peter Clausen <[email protected]>
1112 M:      Michael Hennerich <[email protected]>
1113 S:      Supported
1114 W:      http://wiki.analog.com/
1115 W:      http://ez.analog.com/community/linux-device-drivers
1116 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1117 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1118 F:      Documentation/devicetree/bindings/iio/*/adi,*
1119 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
1120 F:      drivers/iio/*/ad*
1121 F:      drivers/iio/adc/ltc249*
1122 F:      drivers/iio/amplifiers/hmc425a.c
1123 F:      drivers/staging/iio/*/ad*
1124 X:      drivers/iio/*/adjd*
1125
1126 ANALOGBITS PLL LIBRARIES
1127 M:      Paul Walmsley <[email protected]>
1128 S:      Supported
1129 F:      drivers/clk/analogbits/*
1130 F:      include/linux/clk/analogbits*
1131
1132 ANDES ARCHITECTURE
1133 M:      Nick Hu <[email protected]>
1134 M:      Greentime Hu <[email protected]>
1135 M:      Vincent Chen <[email protected]>
1136 S:      Supported
1137 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1138 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1139 F:      Documentation/devicetree/bindings/nds32/
1140 F:      arch/nds32/
1141 N:      nds32
1142 K:      nds32
1143
1144 ANDROID CONFIG FRAGMENTS
1145 M:      Rob Herring <[email protected]>
1146 S:      Supported
1147 F:      kernel/configs/android*
1148
1149 ANDROID DRIVERS
1150 M:      Greg Kroah-Hartman <[email protected]>
1151 M:      Arve Hjønnevåg <[email protected]>
1152 M:      Todd Kjos <[email protected]>
1153 M:      Martijn Coenen <[email protected]>
1154 M:      Joel Fernandes <[email protected]>
1155 M:      Christian Brauner <[email protected]>
1156 M:      Hridya Valsaraju <[email protected]>
1157 M:      Suren Baghdasaryan <[email protected]>
1158 L:      [email protected]
1159 S:      Supported
1160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1161 F:      drivers/android/
1162 F:      drivers/staging/android/
1163
1164 ANDROID GOLDFISH PIC DRIVER
1165 M:      Miodrag Dinic <[email protected]>
1166 S:      Supported
1167 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1168 F:      drivers/irqchip/irq-goldfish-pic.c
1169
1170 ANDROID GOLDFISH RTC DRIVER
1171 M:      Miodrag Dinic <[email protected]>
1172 S:      Supported
1173 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1174 F:      drivers/rtc/rtc-goldfish.c
1175
1176 ANDROID ION DRIVER
1177 M:      Laura Abbott <[email protected]>
1178 M:      Sumit Semwal <[email protected]>
1179 L:      [email protected]
1180 L:      [email protected]
1181 L:      [email protected] (moderated for non-subscribers)
1182 S:      Supported
1183 F:      drivers/staging/android/ion
1184 F:      drivers/staging/android/uapi/ion.h
1185
1186 AOA (Apple Onboard Audio) ALSA DRIVER
1187 M:      Johannes Berg <[email protected]>
1188 L:      [email protected]
1189 L:      [email protected] (moderated for non-subscribers)
1190 S:      Maintained
1191 F:      sound/aoa/
1192
1193 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1194 M:      William Breathitt Gray <[email protected]>
1195 L:      [email protected]
1196 S:      Maintained
1197 F:      drivers/iio/adc/stx104.c
1198
1199 APM DRIVER
1200 M:      Jiri Kosina <[email protected]>
1201 S:      Odd fixes
1202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1203 F:      arch/x86/kernel/apm_32.c
1204 F:      drivers/char/apm-emulation.c
1205 F:      include/linux/apm_bios.h
1206 F:      include/uapi/linux/apm_bios.h
1207
1208 APPARMOR SECURITY MODULE
1209 M:      John Johansen <[email protected]>
1210 L:      [email protected] (subscribers-only, general discussion)
1211 S:      Supported
1212 W:      wiki.apparmor.net
1213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1214 F:      Documentation/admin-guide/LSM/apparmor.rst
1215 F:      security/apparmor/
1216
1217 APPLE BCM5974 MULTITOUCH DRIVER
1218 M:      Henrik Rydberg <[email protected]>
1219 L:      [email protected]
1220 S:      Odd fixes
1221 F:      drivers/input/mouse/bcm5974.c
1222
1223 APPLE SMC DRIVER
1224 M:      Henrik Rydberg <[email protected]>
1225 L:      [email protected]
1226 S:      Odd fixes
1227 F:      drivers/hwmon/applesmc.c
1228
1229 APPLETALK NETWORK LAYER
1230 L:      [email protected]
1231 S:      Odd fixes
1232 F:      drivers/net/appletalk/
1233 F:      include/linux/atalk.h
1234 F:      include/uapi/linux/atalk.h
1235 F:      net/appletalk/
1236
1237 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1238 M:      Khuong Dinh <[email protected]>
1239 S:      Supported
1240 F:      arch/arm64/boot/dts/apm/
1241
1242 APPLIED MICRO (APM) X-GENE SOC EDAC
1243 M:      Khuong Dinh <[email protected]>
1244 S:      Supported
1245 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1246 F:      drivers/edac/xgene_edac.c
1247
1248 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1249 M:      Iyappan Subramanian <[email protected]>
1250 M:      Keyur Chudgar <[email protected]>
1251 S:      Supported
1252 F:      drivers/net/ethernet/apm/xgene-v2/
1253
1254 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1255 M:      Iyappan Subramanian <[email protected]>
1256 M:      Keyur Chudgar <[email protected]>
1257 M:      Quan Nguyen <[email protected]>
1258 S:      Supported
1259 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1260 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1261 F:      drivers/net/ethernet/apm/xgene/
1262 F:      drivers/net/phy/mdio-xgene.c
1263
1264 APPLIED MICRO (APM) X-GENE SOC PMU
1265 M:      Khuong Dinh <[email protected]>
1266 S:      Supported
1267 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1268 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1269 F:      drivers/perf/xgene_pmu.c
1270
1271 APTINA CAMERA SENSOR PLL
1272 M:      Laurent Pinchart <[email protected]>
1273 L:      [email protected]
1274 S:      Maintained
1275 F:      drivers/media/i2c/aptina-pll.*
1276
1277 AQUANTIA ETHERNET DRIVER (atlantic)
1278 M:      Igor Russkikh <[email protected]>
1279 L:      [email protected]
1280 S:      Supported
1281 W:      https://www.marvell.com/
1282 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1283 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1284 F:      drivers/net/ethernet/aquantia/atlantic/
1285
1286 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1287 M:      Egor Pomozov <[email protected]>
1288 L:      [email protected]
1289 S:      Supported
1290 W:      http://www.aquantia.com
1291 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1292
1293 ARASAN NAND CONTROLLER DRIVER
1294 M:      Naga Sureshkumar Relli <[email protected]>
1295 L:      [email protected]
1296 S:      Maintained
1297 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1298 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1299
1300 ARC FRAMEBUFFER DRIVER
1301 M:      Jaya Kumar <[email protected]>
1302 S:      Maintained
1303 F:      drivers/video/fbdev/arcfb.c
1304 F:      drivers/video/fbdev/core/fb_defio.c
1305
1306 ARC PGU DRM DRIVER
1307 M:      Alexey Brodkin <[email protected]>
1308 S:      Supported
1309 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1310 F:      drivers/gpu/drm/arc/
1311
1312 ARCNET NETWORK LAYER
1313 M:      Michael Grzeschik <[email protected]>
1314 L:      [email protected]
1315 S:      Maintained
1316 F:      drivers/net/arcnet/
1317 F:      include/uapi/linux/if_arcnet.h
1318
1319 ARM ARCHITECTED TIMER DRIVER
1320 M:      Mark Rutland <[email protected]>
1321 M:      Marc Zyngier <[email protected]>
1322 L:      [email protected] (moderated for non-subscribers)
1323 S:      Maintained
1324 F:      arch/arm/include/asm/arch_timer.h
1325 F:      arch/arm64/include/asm/arch_timer.h
1326 F:      drivers/clocksource/arm_arch_timer.c
1327
1328 ARM HDLCD DRM DRIVER
1329 M:      Liviu Dudau <[email protected]>
1330 S:      Supported
1331 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1332 F:      drivers/gpu/drm/arm/hdlcd_*
1333
1334 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1335 M:      Linus Walleij <[email protected]>
1336 L:      [email protected] (moderated for non-subscribers)
1337 S:      Maintained
1338 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1339 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1340 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1341 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1342 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1343 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1344 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1345 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1346 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1347 F:      arch/arm/boot/dts/arm-realview-*
1348 F:      arch/arm/boot/dts/integrator*
1349 F:      arch/arm/boot/dts/versatile*
1350 F:      arch/arm/mach-integrator/
1351 F:      arch/arm/mach-realview/
1352 F:      arch/arm/mach-versatile/
1353 F:      arch/arm/plat-versatile/
1354 F:      drivers/bus/arm-integrator-lm.c
1355 F:      drivers/clk/versatile/
1356 F:      drivers/i2c/busses/i2c-versatile.c
1357 F:      drivers/irqchip/irq-versatile-fpga.c
1358 F:      drivers/mtd/maps/physmap-versatile.*
1359 F:      drivers/power/reset/arm-versatile-reboot.c
1360 F:      drivers/soc/versatile/
1361
1362 ARM KOMEDA DRM-KMS DRIVER
1363 M:      James (Qian) Wang <[email protected]>
1364 M:      Liviu Dudau <[email protected]>
1365 M:      Mihail Atanassov <[email protected]>
1366 L:      Mali DP Maintainers <[email protected]>
1367 S:      Supported
1368 T:      git git://anongit.freedesktop.org/drm/drm-misc
1369 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1370 F:      Documentation/gpu/komeda-kms.rst
1371 F:      drivers/gpu/drm/arm/display/include/
1372 F:      drivers/gpu/drm/arm/display/komeda/
1373
1374 ARM MALI PANFROST DRM DRIVER
1375 M:      Rob Herring <[email protected]>
1376 M:      Tomeu Vizoso <[email protected]>
1377 R:      Steven Price <[email protected]>
1378 R:      Alyssa Rosenzweig <[email protected]>
1379 L:      [email protected]
1380 S:      Supported
1381 T:      git git://anongit.freedesktop.org/drm/drm-misc
1382 F:      drivers/gpu/drm/panfrost/
1383 F:      include/uapi/drm/panfrost_drm.h
1384
1385 ARM MALI-DP DRM DRIVER
1386 M:      Liviu Dudau <[email protected]>
1387 M:      Brian Starkey <[email protected]>
1388 L:      Mali DP Maintainers <[email protected]>
1389 S:      Supported
1390 T:      git git://anongit.freedesktop.org/drm/drm-misc
1391 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1392 F:      Documentation/gpu/afbc.rst
1393 F:      drivers/gpu/drm/arm/
1394
1395 ARM MFM AND FLOPPY DRIVERS
1396 M:      Ian Molton <[email protected]>
1397 S:      Maintained
1398 F:      arch/arm/include/asm/floppy.h
1399 F:      arch/arm/mach-rpc/floppydma.S
1400
1401 ARM PMU PROFILING AND DEBUGGING
1402 M:      Will Deacon <[email protected]>
1403 M:      Mark Rutland <[email protected]>
1404 L:      [email protected] (moderated for non-subscribers)
1405 S:      Maintained
1406 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1407 F:      Documentation/devicetree/bindings/perf/
1408 F:      arch/arm*/include/asm/hw_breakpoint.h
1409 F:      arch/arm*/include/asm/perf_event.h
1410 F:      arch/arm*/kernel/hw_breakpoint.c
1411 F:      arch/arm*/kernel/perf_*
1412 F:      arch/arm/oprofile/common.c
1413 F:      drivers/perf/
1414 F:      include/linux/perf/arm_pmu.h
1415
1416 ARM PORT
1417 M:      Russell King <[email protected]>
1418 L:      [email protected] (moderated for non-subscribers)
1419 S:      Odd Fixes
1420 W:      http://www.armlinux.org.uk/
1421 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1422 F:      arch/arm/
1423 X:      arch/arm/boot/dts/
1424
1425 ARM PRIMECELL AACI PL041 DRIVER
1426 M:      Russell King <[email protected]>
1427 S:      Odd Fixes
1428 F:      sound/arm/aaci.*
1429
1430 ARM PRIMECELL BUS SUPPORT
1431 M:      Russell King <[email protected]>
1432 S:      Odd Fixes
1433 F:      drivers/amba/
1434 F:      include/linux/amba/bus.h
1435
1436 ARM PRIMECELL CLCD PL110 DRIVER
1437 M:      Russell King <[email protected]>
1438 S:      Odd Fixes
1439 F:      drivers/video/fbdev/amba-clcd.*
1440
1441 ARM PRIMECELL KMI PL050 DRIVER
1442 M:      Russell King <[email protected]>
1443 S:      Odd Fixes
1444 F:      drivers/input/serio/ambakmi.*
1445 F:      include/linux/amba/kmi.h
1446
1447 ARM PRIMECELL MMCI PL180/1 DRIVER
1448 M:      Russell King <[email protected]>
1449 S:      Odd Fixes
1450 F:      drivers/mmc/host/mmci.*
1451 F:      include/linux/amba/mmci.h
1452
1453 ARM PRIMECELL SSP PL022 SPI DRIVER
1454 M:      Linus Walleij <[email protected]>
1455 L:      [email protected] (moderated for non-subscribers)
1456 S:      Maintained
1457 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1458 F:      drivers/spi/spi-pl022.c
1459
1460 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1461 M:      Russell King <[email protected]>
1462 S:      Odd Fixes
1463 F:      drivers/tty/serial/amba-pl01*.c
1464 F:      include/linux/amba/serial.h
1465
1466 ARM PRIMECELL VIC PL190/PL192 DRIVER
1467 M:      Linus Walleij <[email protected]>
1468 L:      [email protected] (moderated for non-subscribers)
1469 S:      Maintained
1470 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1471 F:      drivers/irqchip/irq-vic.c
1472
1473 ARM SMC WATCHDOG DRIVER
1474 M:      Julius Werner <[email protected]>
1475 R:      Evan Benn <[email protected]>
1476 S:      Maintained
1477 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1478 F:      drivers/watchdog/arm_smc_wdt.c
1479
1480 ARM SMMU DRIVERS
1481 M:      Will Deacon <[email protected]>
1482 R:      Robin Murphy <[email protected]>
1483 L:      [email protected] (moderated for non-subscribers)
1484 S:      Maintained
1485 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1486 F:      drivers/iommu/arm/
1487 F:      drivers/iommu/io-pgtable-arm*
1488
1489 ARM SUB-ARCHITECTURES
1490 L:      [email protected] (moderated for non-subscribers)
1491 S:      Maintained
1492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1493 F:      arch/arm/mach-*/
1494 F:      arch/arm/plat-*/
1495
1496 ARM/ACTIONS SEMI ARCHITECTURE
1497 M:      Andreas Färber <[email protected]>
1498 M:      Manivannan Sadhasivam <[email protected]>
1499 L:      [email protected] (moderated for non-subscribers)
1500 S:      Maintained
1501 F:      Documentation/devicetree/bindings/arm/actions.yaml
1502 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1503 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1504 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1505 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1506 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1507 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1508 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1509 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1510 F:      arch/arm/boot/dts/owl-*
1511 F:      arch/arm/mach-actions/
1512 F:      arch/arm64/boot/dts/actions/
1513 F:      drivers/clk/actions/
1514 F:      drivers/clocksource/timer-owl*
1515 F:      drivers/dma/owl-dma.c
1516 F:      drivers/i2c/busses/i2c-owl.c
1517 F:      drivers/irqchip/irq-owl-sirq.c
1518 F:      drivers/mmc/host/owl-mmc.c
1519 F:      drivers/pinctrl/actions/*
1520 F:      drivers/soc/actions/
1521 F:      include/dt-bindings/power/owl-*
1522 F:      include/dt-bindings/reset/actions,*
1523 F:      include/linux/soc/actions/
1524 N:      owl
1525
1526 ARM/ADS SPHERE MACHINE SUPPORT
1527 M:      Lennert Buytenhek <[email protected]>
1528 L:      [email protected] (moderated for non-subscribers)
1529 S:      Maintained
1530
1531 ARM/AFEB9260 MACHINE SUPPORT
1532 M:      Sergey Lapin <[email protected]>
1533 L:      [email protected] (moderated for non-subscribers)
1534 S:      Maintained
1535
1536 ARM/AJECO 1ARM MACHINE SUPPORT
1537 M:      Lennert Buytenhek <[email protected]>
1538 L:      [email protected] (moderated for non-subscribers)
1539 S:      Maintained
1540
1541 ARM/Allwinner SoC Clock Support
1542 M:      Emilio López <[email protected]>
1543 S:      Maintained
1544 F:      drivers/clk/sunxi/
1545
1546 ARM/Allwinner sunXi SoC support
1547 M:      Maxime Ripard <[email protected]>
1548 M:      Chen-Yu Tsai <[email protected]>
1549 L:      [email protected] (moderated for non-subscribers)
1550 S:      Maintained
1551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1552 F:      arch/arm/mach-sunxi/
1553 F:      arch/arm64/boot/dts/allwinner/
1554 F:      drivers/clk/sunxi-ng/
1555 F:      drivers/pinctrl/sunxi/
1556 F:      drivers/soc/sunxi/
1557 N:      sun[x456789]i
1558 N:      sun50i
1559
1560 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1561 M:      Neil Armstrong <[email protected]>
1562 M:      Jerome Brunet <[email protected]>
1563 L:      [email protected]
1564 S:      Maintained
1565 F:      Documentation/devicetree/bindings/clock/amlogic*
1566 F:      drivers/clk/meson/
1567 F:      include/dt-bindings/clock/gxbb*
1568 F:      include/dt-bindings/clock/meson*
1569
1570 ARM/Amlogic Meson SoC Crypto Drivers
1571 M:      Corentin Labbe <[email protected]>
1572 L:      [email protected]
1573 L:      [email protected]
1574 S:      Maintained
1575 F:      Documentation/devicetree/bindings/crypto/amlogic*
1576 F:      drivers/crypto/amlogic/
1577
1578 ARM/Amlogic Meson SoC Sound Drivers
1579 M:      Jerome Brunet <[email protected]>
1580 L:      [email protected] (moderated for non-subscribers)
1581 S:      Maintained
1582 F:      Documentation/devicetree/bindings/sound/amlogic*
1583 F:      sound/soc/meson/
1584
1585 ARM/Amlogic Meson SoC support
1586 M:      Kevin Hilman <[email protected]>
1587 R:      Neil Armstrong <[email protected]>
1588 R:      Jerome Brunet <[email protected]>
1589 R:      Martin Blumenstingl <[email protected]>
1590 L:      [email protected] (moderated for non-subscribers)
1591 L:      [email protected]
1592 S:      Maintained
1593 W:      http://linux-meson.com/
1594 F:      arch/arm/boot/dts/meson*
1595 F:      arch/arm/mach-meson/
1596 F:      arch/arm64/boot/dts/amlogic/
1597 F:      drivers/mmc/host/meson*
1598 F:      drivers/pinctrl/meson/
1599 F:      drivers/rtc/rtc-meson*
1600 F:      drivers/soc/amlogic/
1601 N:      meson
1602
1603 ARM/Annapurna Labs ALPINE ARCHITECTURE
1604 M:      Tsahee Zidenberg <[email protected]>
1605 M:      Antoine Tenart <[email protected]>
1606 L:      [email protected] (moderated for non-subscribers)
1607 S:      Maintained
1608 F:      arch/arm/boot/dts/alpine*
1609 F:      arch/arm/mach-alpine/
1610 F:      arch/arm64/boot/dts/amazon/
1611 F:      drivers/*/*alpine*
1612
1613 ARM/ARTPEC MACHINE SUPPORT
1614 M:      Jesper Nilsson <[email protected]>
1615 M:      Lars Persson <[email protected]>
1616 L:      [email protected]
1617 S:      Maintained
1618 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1619 F:      arch/arm/boot/dts/artpec6*
1620 F:      arch/arm/mach-artpec
1621 F:      drivers/clk/axis
1622 F:      drivers/crypto/axis
1623 F:      drivers/mmc/host/usdhi6rol0.c
1624 F:      drivers/pinctrl/pinctrl-artpec*
1625
1626 ARM/ASPEED I2C DRIVER
1627 M:      Brendan Higgins <[email protected]>
1628 R:      Benjamin Herrenschmidt <[email protected]>
1629 R:      Joel Stanley <[email protected]>
1630 L:      [email protected]
1631 L:      [email protected] (moderated for non-subscribers)
1632 S:      Maintained
1633 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1634 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1635 F:      drivers/i2c/busses/i2c-aspeed.c
1636 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1637
1638 ARM/ASPEED MACHINE SUPPORT
1639 M:      Joel Stanley <[email protected]>
1640 R:      Andrew Jeffery <[email protected]>
1641 L:      [email protected] (moderated for non-subscribers)
1642 L:      [email protected] (moderated for non-subscribers)
1643 S:      Supported
1644 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1646 F:      arch/arm/boot/dts/aspeed-*
1647 F:      arch/arm/mach-aspeed/
1648 N:      aspeed
1649
1650 ARM/BITMAIN ARCHITECTURE
1651 M:      Manivannan Sadhasivam <[email protected]>
1652 L:      [email protected] (moderated for non-subscribers)
1653 S:      Maintained
1654 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1655 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1656 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1657 F:      arch/arm64/boot/dts/bitmain/
1658 F:      drivers/clk/clk-bm1880.c
1659 F:      drivers/pinctrl/pinctrl-bm1880.c
1660
1661 ARM/CALXEDA HIGHBANK ARCHITECTURE
1662 M:      Andre Przywara <[email protected]>
1663 L:      [email protected] (moderated for non-subscribers)
1664 S:      Maintained
1665 F:      arch/arm/boot/dts/ecx-*.dts*
1666 F:      arch/arm/boot/dts/highbank.dts
1667 F:      arch/arm/mach-highbank/
1668
1669 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1670 M:      Krzysztof Halasa <[email protected]>
1671 S:      Maintained
1672 F:      arch/arm/mach-cns3xxx/
1673
1674 ARM/CAVIUM THUNDER NETWORK DRIVER
1675 M:      Sunil Goutham <[email protected]>
1676 L:      [email protected] (moderated for non-subscribers)
1677 S:      Supported
1678 F:      drivers/net/ethernet/cavium/thunder/
1679
1680 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1681 M:      Lukasz Majewski <[email protected]>
1682 L:      [email protected] (moderated for non-subscribers)
1683 S:      Maintained
1684 F:      arch/arm/mach-ep93xx/ts72xx.c
1685
1686 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1687 M:      Alexander Shiyan <[email protected]>
1688 L:      [email protected] (moderated for non-subscribers)
1689 S:      Odd Fixes
1690 N:      clps711x
1691
1692 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1693 M:      Lennert Buytenhek <[email protected]>
1694 L:      [email protected] (moderated for non-subscribers)
1695 S:      Maintained
1696
1697 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1698 M:      Hartley Sweeten <[email protected]>
1699 M:      Alexander Sverdlin <[email protected]>
1700 L:      [email protected] (moderated for non-subscribers)
1701 S:      Maintained
1702 F:      arch/arm/mach-ep93xx/
1703 F:      arch/arm/mach-ep93xx/include/mach/
1704
1705 ARM/CLKDEV SUPPORT
1706 M:      Russell King <[email protected]>
1707 L:      [email protected] (moderated for non-subscribers)
1708 S:      Maintained
1709 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1710 F:      drivers/clk/clkdev.c
1711
1712 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1713 M:      Baruch Siach <[email protected]>
1714 L:      [email protected] (moderated for non-subscribers)
1715 S:      Maintained
1716 F:      arch/arm/boot/dts/cx92755*
1717 N:      digicolor
1718
1719 ARM/CONTEC MICRO9 MACHINE SUPPORT
1720 M:      Hubert Feurstein <[email protected]>
1721 S:      Maintained
1722 F:      arch/arm/mach-ep93xx/micro9.c
1723
1724 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1725 M:      Mathieu Poirier <[email protected]>
1726 R:      Suzuki K Poulose <[email protected]>
1727 R:      Mike Leach <[email protected]>
1728 L:      [email protected] (moderated for non-subscribers)
1729 L:      [email protected] (moderated for non-subscribers)
1730 S:      Maintained
1731 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1732 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1733 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1734 F:      Documentation/devicetree/bindings/arm/coresight.txt
1735 F:      Documentation/trace/coresight/*
1736 F:      drivers/hwtracing/coresight/*
1737 F:      include/dt-bindings/arm/coresight-cti-dt.h
1738 F:      tools/perf/arch/arm/util/auxtrace.c
1739 F:      tools/perf/arch/arm/util/cs-etm.c
1740 F:      tools/perf/arch/arm/util/cs-etm.h
1741 F:      tools/perf/arch/arm/util/pmu.c
1742 F:      tools/perf/util/cs-etm-decoder/*
1743 F:      tools/perf/util/cs-etm.*
1744
1745 ARM/CORGI MACHINE SUPPORT
1746 M:      Richard Purdie <[email protected]>
1747 S:      Maintained
1748
1749 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1750 M:      Hans Ulli Kroll <[email protected]>
1751 M:      Linus Walleij <[email protected]>
1752 L:      [email protected] (moderated for non-subscribers)
1753 S:      Maintained
1754 T:      git git://github.com/ulli-kroll/linux.git
1755 F:      Documentation/devicetree/bindings/arm/gemini.txt
1756 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1757 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1758 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1759 F:      arch/arm/mach-gemini/
1760 F:      drivers/net/ethernet/cortina/
1761 F:      drivers/pinctrl/pinctrl-gemini.c
1762 F:      drivers/rtc/rtc-ftrtc010.c
1763
1764 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1765 M:      Barry Song <[email protected]>
1766 L:      [email protected] (moderated for non-subscribers)
1767 S:      Maintained
1768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1769 F:      arch/arm/boot/dts/prima2*
1770 F:      arch/arm/mach-prima2/
1771 F:      drivers/clk/sirf/
1772 F:      drivers/clocksource/timer-atlas7.c
1773 F:      drivers/clocksource/timer-prima2.c
1774 X:      drivers/gnss
1775 N:      [^a-z]sirf
1776
1777 ARM/CZ.NIC TURRIS MOX SUPPORT
1778 M:      Marek Behun <[email protected]>
1779 S:      Maintained
1780 W:      http://mox.turris.cz
1781 F:      Documentation/ABI/testing/debugfs-moxtet
1782 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1783 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1784 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1785 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1786 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1787 F:      drivers/bus/moxtet.c
1788 F:      drivers/firmware/turris-mox-rwtm.c
1789 F:      drivers/gpio/gpio-moxtet.c
1790 F:      include/linux/moxtet.h
1791
1792 ARM/EBSA110 MACHINE SUPPORT
1793 M:      Russell King <[email protected]>
1794 L:      [email protected] (moderated for non-subscribers)
1795 S:      Maintained
1796 W:      http://www.armlinux.org.uk/
1797 F:      arch/arm/mach-ebsa110/
1798 F:      drivers/net/ethernet/amd/am79c961a.*
1799
1800 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1801 M:      Uwe Kleine-König <[email protected]>
1802 R:      Pengutronix Kernel Team <[email protected]>
1803 L:      [email protected] (moderated for non-subscribers)
1804 S:      Maintained
1805 N:      efm32
1806
1807 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1808 M:      Robert Jarzmik <[email protected]>
1809 L:      [email protected] (moderated for non-subscribers)
1810 S:      Maintained
1811 F:      arch/arm/mach-pxa/ezx.c
1812
1813 ARM/FARADAY FA526 PORT
1814 M:      Hans Ulli Kroll <[email protected]>
1815 L:      [email protected] (moderated for non-subscribers)
1816 S:      Maintained
1817 T:      git git://git.berlios.de/gemini-board
1818 F:      arch/arm/mm/*-fa*
1819
1820 ARM/FOOTBRIDGE ARCHITECTURE
1821 M:      Russell King <[email protected]>
1822 L:      [email protected] (moderated for non-subscribers)
1823 S:      Maintained
1824 W:      http://www.armlinux.org.uk/
1825 F:      arch/arm/include/asm/hardware/dec21285.h
1826 F:      arch/arm/mach-footbridge/
1827
1828 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1829 M:      Shawn Guo <[email protected]>
1830 M:      Sascha Hauer <[email protected]>
1831 R:      Pengutronix Kernel Team <[email protected]>
1832 R:      Fabio Estevam <[email protected]>
1833 R:      NXP Linux Team <[email protected]>
1834 L:      [email protected] (moderated for non-subscribers)
1835 S:      Maintained
1836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1837 X:      drivers/media/i2c/
1838 N:      imx
1839 N:      mxs
1840
1841 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1842 M:      Shawn Guo <[email protected]>
1843 M:      Li Yang <[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 F:      arch/arm/boot/dts/ls1021a*
1848 F:      arch/arm64/boot/dts/freescale/fsl-*
1849 F:      arch/arm64/boot/dts/freescale/qoriq-*
1850
1851 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1852 M:      Shawn Guo <[email protected]>
1853 M:      Sascha Hauer <[email protected]>
1854 R:      Pengutronix Kernel Team <[email protected]>
1855 R:      Stefan Agner <[email protected]>
1856 L:      [email protected] (moderated for non-subscribers)
1857 S:      Maintained
1858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1859 F:      arch/arm/boot/dts/vf*
1860 F:      arch/arm/mach-imx/*vf610*
1861
1862 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1863 M:      Lennert Buytenhek <[email protected]>
1864 L:      [email protected] (moderated for non-subscribers)
1865 S:      Maintained
1866
1867 ARM/GUMSTIX MACHINE SUPPORT
1868 M:      Steve Sakoman <[email protected]>
1869 L:      [email protected] (moderated for non-subscribers)
1870 S:      Maintained
1871
1872 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1873 M:      Philipp Zabel <[email protected]>
1874 M:      Paul Parsons <[email protected]>
1875 L:      [email protected] (moderated for non-subscribers)
1876 S:      Maintained
1877 F:      arch/arm/mach-pxa/hx4700.c
1878 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1879 F:      sound/soc/pxa/hx4700.c
1880
1881 ARM/HISILICON SOC SUPPORT
1882 M:      Wei Xu <[email protected]>
1883 L:      [email protected] (moderated for non-subscribers)
1884 S:      Supported
1885 W:      http://www.hisilicon.com
1886 T:      git git://github.com/hisilicon/linux-hisi.git
1887 F:      arch/arm/boot/dts/hi3*
1888 F:      arch/arm/boot/dts/hip*
1889 F:      arch/arm/boot/dts/hisi*
1890 F:      arch/arm/mach-hisi/
1891 F:      arch/arm64/boot/dts/hisilicon/
1892
1893 ARM/HP JORNADA 7XX MACHINE SUPPORT
1894 M:      Kristoffer Ericson <[email protected]>
1895 S:      Maintained
1896 W:      www.jlime.com
1897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1898 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1899 F:      arch/arm/mach-sa1100/jornada720.c
1900
1901 ARM/IGEP MACHINE SUPPORT
1902 M:      Enric Balletbo i Serra <[email protected]>
1903 M:      Javier Martinez Canillas <[email protected]>
1904 L:      [email protected]
1905 L:      [email protected] (moderated for non-subscribers)
1906 S:      Maintained
1907 F:      arch/arm/boot/dts/omap3-igep*
1908
1909 ARM/INCOME PXA270 SUPPORT
1910 M:      Marek Vasut <[email protected]>
1911 L:      [email protected] (moderated for non-subscribers)
1912 S:      Maintained
1913 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1914
1915 ARM/INTEL IOP32X ARM ARCHITECTURE
1916 M:      Lennert Buytenhek <[email protected]>
1917 L:      [email protected] (moderated for non-subscribers)
1918 S:      Maintained
1919
1920 ARM/INTEL IQ81342EX MACHINE SUPPORT
1921 M:      Lennert Buytenhek <[email protected]>
1922 L:      [email protected] (moderated for non-subscribers)
1923 S:      Maintained
1924
1925 ARM/INTEL IXDP2850 MACHINE SUPPORT
1926 M:      Lennert Buytenhek <[email protected]>
1927 L:      [email protected] (moderated for non-subscribers)
1928 S:      Maintained
1929
1930 ARM/INTEL IXP4XX ARM ARCHITECTURE
1931 M:      Linus Walleij <[email protected]>
1932 M:      Imre Kaloz <[email protected]>
1933 M:      Krzysztof Halasa <[email protected]>
1934 L:      [email protected] (moderated for non-subscribers)
1935 S:      Maintained
1936 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1937 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1938 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1939 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1940 F:      arch/arm/mach-ixp4xx/
1941 F:      drivers/clocksource/timer-ixp4xx.c
1942 F:      drivers/gpio/gpio-ixp4xx.c
1943 F:      drivers/irqchip/irq-ixp4xx.c
1944 F:      include/linux/irqchip/irq-ixp4xx.h
1945 F:      include/linux/platform_data/timer-ixp4xx.h
1946
1947 ARM/INTEL KEEMBAY ARCHITECTURE
1948 M:      Paul J. Murphy <[email protected]>
1949 M:      Daniele Alessandrelli <[email protected]>
1950 S:      Maintained
1951 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1952 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1953 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1954
1955 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1956 M:      Jonathan Cameron <[email protected]>
1957 L:      [email protected] (moderated for non-subscribers)
1958 S:      Maintained
1959 F:      arch/arm/mach-pxa/stargate2.c
1960 F:      drivers/pcmcia/pxa2xx_stargate2.c
1961
1962 ARM/INTEL XSC3 (MANZANO) ARM CORE
1963 M:      Lennert Buytenhek <[email protected]>
1964 L:      [email protected] (moderated for non-subscribers)
1965 S:      Maintained
1966
1967 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1968 M:      Lennert Buytenhek <[email protected]>
1969 L:      [email protected] (moderated for non-subscribers)
1970 S:      Maintained
1971
1972 ARM/LG1K ARCHITECTURE
1973 M:      Chanho Min <[email protected]>
1974 L:      [email protected] (moderated for non-subscribers)
1975 S:      Maintained
1976 F:      arch/arm64/boot/dts/lg/
1977
1978 ARM/LOGICPD PXA270 MACHINE SUPPORT
1979 M:      Lennert Buytenhek <[email protected]>
1980 L:      [email protected] (moderated for non-subscribers)
1981 S:      Maintained
1982
1983 ARM/LPC18XX ARCHITECTURE
1984 M:      Vladimir Zapolskiy <[email protected]>
1985 L:      [email protected] (moderated for non-subscribers)
1986 S:      Maintained
1987 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1988 F:      arch/arm/boot/dts/lpc43*
1989 F:      drivers/i2c/busses/i2c-lpc2k.c
1990 F:      drivers/memory/pl172.c
1991 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1992 F:      drivers/rtc/rtc-lpc24xx.c
1993 N:      lpc18xx
1994
1995 ARM/LPC32XX SOC SUPPORT
1996 M:      Vladimir Zapolskiy <[email protected]>
1997 M:      Sylvain Lemieux <[email protected]>
1998 L:      [email protected] (moderated for non-subscribers)
1999 S:      Maintained
2000 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2001 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2002 F:      arch/arm/boot/dts/lpc32*
2003 F:      arch/arm/mach-lpc32xx/
2004 F:      drivers/i2c/busses/i2c-pnx.c
2005 F:      drivers/net/ethernet/nxp/lpc_eth.c
2006 F:      drivers/usb/host/ohci-nxp.c
2007 F:      drivers/watchdog/pnx4008_wdt.c
2008 N:      lpc32xx
2009
2010 ARM/MAGICIAN MACHINE SUPPORT
2011 M:      Philipp Zabel <[email protected]>
2012 S:      Maintained
2013
2014 ARM/Marvell Dove/MV78xx0/Orion SOC support
2015 M:      Jason Cooper <[email protected]>
2016 M:      Andrew Lunn <[email protected]>
2017 M:      Sebastian Hesselbarth <[email protected]>
2018 M:      Gregory Clement <[email protected]>
2019 L:      [email protected] (moderated for non-subscribers)
2020 S:      Maintained
2021 T:      git git://git.infradead.org/linux-mvebu.git
2022 F:      Documentation/devicetree/bindings/soc/dove/
2023 F:      arch/arm/boot/dts/dove*
2024 F:      arch/arm/boot/dts/orion5x*
2025 F:      arch/arm/mach-dove/
2026 F:      arch/arm/mach-mv78xx0/
2027 F:      arch/arm/mach-orion5x/
2028 F:      arch/arm/plat-orion/
2029 F:      drivers/soc/dove/
2030
2031 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2032 M:      Jason Cooper <[email protected]>
2033 M:      Andrew Lunn <[email protected]>
2034 M:      Gregory Clement <[email protected]>
2035 M:      Sebastian Hesselbarth <[email protected]>
2036 L:      [email protected] (moderated for non-subscribers)
2037 S:      Maintained
2038 T:      git git://git.infradead.org/linux-mvebu.git
2039 F:      arch/arm/boot/dts/armada*
2040 F:      arch/arm/boot/dts/kirkwood*
2041 F:      arch/arm/configs/mvebu_*_defconfig
2042 F:      arch/arm/mach-mvebu/
2043 F:      arch/arm64/boot/dts/marvell/armada*
2044 F:      arch/arm64/boot/dts/marvell/cn913*
2045 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2046 F:      drivers/cpufreq/armada-8k-cpufreq.c
2047 F:      drivers/cpufreq/mvebu-cpufreq.c
2048 F:      drivers/irqchip/irq-armada-370-xp.c
2049 F:      drivers/irqchip/irq-mvebu-*
2050 F:      drivers/pinctrl/mvebu/
2051 F:      drivers/rtc/rtc-armada38x.c
2052
2053 ARM/Mediatek RTC DRIVER
2054 M:      Eddie Huang <[email protected]>
2055 M:      Sean Wang <[email protected]>
2056 L:      [email protected] (moderated for non-subscribers)
2057 L:      [email protected] (moderated for non-subscribers)
2058 S:      Maintained
2059 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2060 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2061 F:      drivers/rtc/rtc-mt2712.c
2062 F:      drivers/rtc/rtc-mt6397.c
2063 F:      drivers/rtc/rtc-mt7622.c
2064
2065 ARM/Mediatek SoC support
2066 M:      Matthias Brugger <[email protected]>
2067 L:      [email protected] (moderated for non-subscribers)
2068 L:      [email protected] (moderated for non-subscribers)
2069 S:      Maintained
2070 W:      https://mtk.bcnfs.org/
2071 C:      irc://chat.freenode.net/linux-mediatek
2072 F:      arch/arm/boot/dts/mt6*
2073 F:      arch/arm/boot/dts/mt7*
2074 F:      arch/arm/boot/dts/mt8*
2075 F:      arch/arm/mach-mediatek/
2076 F:      arch/arm64/boot/dts/mediatek/
2077 F:      drivers/soc/mediatek/
2078 N:      mtk
2079 N:      mt[678]
2080 K:      mediatek
2081
2082 ARM/Mediatek USB3 PHY DRIVER
2083 M:      Chunfeng Yun <[email protected]>
2084 L:      [email protected] (moderated for non-subscribers)
2085 L:      [email protected] (moderated for non-subscribers)
2086 S:      Maintained
2087 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2088 F:      drivers/phy/mediatek/
2089
2090 ARM/Microchip (AT91) SoC support
2091 M:      Nicolas Ferre <[email protected]>
2092 M:      Alexandre Belloni <[email protected]>
2093 M:      Ludovic Desroches <[email protected]>
2094 L:      [email protected] (moderated for non-subscribers)
2095 S:      Supported
2096 W:      http://www.linux4sam.org
2097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2098 F:      arch/arm/boot/dts/at91*.dts
2099 F:      arch/arm/boot/dts/at91*.dtsi
2100 F:      arch/arm/boot/dts/sama*.dts
2101 F:      arch/arm/boot/dts/sama*.dtsi
2102 F:      arch/arm/include/debug/at91.S
2103 F:      arch/arm/mach-at91/
2104 F:      drivers/memory/atmel*
2105 F:      drivers/watchdog/sama5d4_wdt.c
2106 F:      include/soc/at91/
2107 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2108 X:      drivers/net/wireless/atmel/
2109 N:      at91
2110 N:      atmel
2111
2112 ARM/Microchip Sparx5 SoC support
2113 M:      Lars Povlsen <[email protected]>
2114 M:      Steen Hegelund <[email protected]>
2115 M:      Microchip Linux Driver Support <[email protected]>
2116 L:      [email protected] (moderated for non-subscribers)
2117 S:      Supported
2118 F:      arch/arm64/boot/dts/microchip/
2119 N:      sparx5
2120
2121 ARM/MIOA701 MACHINE SUPPORT
2122 M:      Robert Jarzmik <[email protected]>
2123 L:      [email protected] (moderated for non-subscribers)
2124 S:      Maintained
2125 F:      arch/arm/mach-pxa/mioa701.c
2126
2127 ARM/MStar/Sigmastar Armv7 SoC support
2128 M:      Daniel Palmer <[email protected]>
2129 L:      [email protected] (moderated for non-subscribers)
2130 S:      Maintained
2131 W:      http://linux-chenxing.org/
2132 F:      Documentation/devicetree/bindings/arm/mstar/*
2133 F:      arch/arm/boot/dts/infinity*.dtsi
2134 F:      arch/arm/boot/dts/mercury*.dtsi
2135 F:      arch/arm/boot/dts/mstar-v7.dtsi
2136 F:      arch/arm/mach-mstar/
2137
2138 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2139 M:      Michael Petchkovsky <[email protected]>
2140 S:      Maintained
2141
2142 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2143 M:      Linus Walleij <[email protected]>
2144 L:      [email protected] (moderated for non-subscribers)
2145 S:      Maintained
2146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2147 F:      Documentation/devicetree/bindings/arm/ste-*
2148 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2149 F:      Documentation/devicetree/bindings/arm/ux500/
2150 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2151 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2152 F:      arch/arm/boot/dts/ste-*
2153 F:      arch/arm/mach-nomadik/
2154 F:      arch/arm/mach-u300/
2155 F:      arch/arm/mach-ux500/
2156 F:      drivers/clk/clk-nomadik.c
2157 F:      drivers/clk/clk-u300.c
2158 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2159 F:      drivers/clocksource/timer-u300.c
2160 F:      drivers/dma/coh901318*
2161 F:      drivers/dma/ste_dma40*
2162 F:      drivers/hwspinlock/u8500_hsem.c
2163 F:      drivers/i2c/busses/i2c-nomadik.c
2164 F:      drivers/i2c/busses/i2c-stu300.c
2165 F:      drivers/iio/adc/ab8500-gpadc.c
2166 F:      drivers/mfd/ab3100*
2167 F:      drivers/mfd/ab8500*
2168 F:      drivers/mfd/abx500*
2169 F:      drivers/mfd/db8500*
2170 F:      drivers/mfd/dbx500*
2171 F:      drivers/pinctrl/nomadik/
2172 F:      drivers/pinctrl/pinctrl-coh901*
2173 F:      drivers/pinctrl/pinctrl-u300.c
2174 F:      drivers/rtc/rtc-ab3100.c
2175 F:      drivers/rtc/rtc-ab8500.c
2176 F:      drivers/rtc/rtc-coh901331.c
2177 F:      drivers/rtc/rtc-pl031.c
2178 F:      drivers/soc/ux500/
2179 F:      drivers/watchdog/coh901327_wdt.c
2180
2181 ARM/NUVOTON NPCM ARCHITECTURE
2182 M:      Avi Fishman <[email protected]>
2183 M:      Tomer Maimon <[email protected]>
2184 M:      Tali Perry <[email protected]>
2185 R:      Patrick Venture <[email protected]>
2186 R:      Nancy Yuen <[email protected]>
2187 R:      Benjamin Fair <[email protected]>
2188 L:      [email protected] (moderated for non-subscribers)
2189 S:      Supported
2190 F:      Documentation/devicetree/bindings/*/*/*npcm*
2191 F:      Documentation/devicetree/bindings/*/*npcm*
2192 F:      arch/arm/boot/dts/nuvoton-npcm*
2193 F:      arch/arm/mach-npcm/
2194 F:      drivers/*/*npcm*
2195 F:      drivers/*/*/*npcm*
2196 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2197
2198 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2199 L:      [email protected] (subscribers-only)
2200 S:      Orphan
2201 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2202 F:      arch/arm/mach-s3c24xx/gta02.h
2203 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2204
2205 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2206 M:      Alexander Clouter <[email protected]>
2207 L:      [email protected] (moderated for non-subscribers)
2208 S:      Maintained
2209 W:      http://www.digriz.org.uk/ts78xx/kernel
2210 F:      arch/arm/mach-orion5x/ts78xx-*
2211
2212 ARM/OXNAS platform support
2213 M:      Neil Armstrong <[email protected]>
2214 L:      [email protected] (moderated for non-subscribers)
2215 L:      [email protected] (moderated for non-subscribers)
2216 S:      Maintained
2217 F:      arch/arm/boot/dts/ox8*.dts*
2218 F:      arch/arm/mach-oxnas/
2219 F:      drivers/power/reset/oxnas-restart.c
2220 N:      oxnas
2221
2222 ARM/PALM TREO SUPPORT
2223 M:      Tomas Cech <[email protected]>
2224 L:      [email protected]
2225 S:      Maintained
2226 W:      http://hackndev.com
2227 F:      arch/arm/mach-pxa/palmtreo.*
2228
2229 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2230 M:      Marek Vasut <[email protected]>
2231 L:      [email protected]
2232 S:      Maintained
2233 W:      http://hackndev.com
2234 F:      arch/arm/mach-pxa/include/mach/palmld.h
2235 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2236 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2237 F:      arch/arm/mach-pxa/palmld.c
2238 F:      arch/arm/mach-pxa/palmt5.*
2239 F:      arch/arm/mach-pxa/palmtc.c
2240 F:      arch/arm/mach-pxa/palmte2.*
2241 F:      arch/arm/mach-pxa/palmtx.c
2242
2243 ARM/PALMZ72 SUPPORT
2244 M:      Sergey Lapin <[email protected]>
2245 L:      [email protected]
2246 S:      Maintained
2247 W:      http://hackndev.com
2248 F:      arch/arm/mach-pxa/palmz72.*
2249
2250 ARM/PLEB SUPPORT
2251 M:      Peter Chubb <[email protected]>
2252 S:      Maintained
2253 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2254
2255 ARM/PT DIGITAL BOARD PORT
2256 M:      Stefan Eletzhofer <[email protected]>
2257 L:      [email protected] (moderated for non-subscribers)
2258 S:      Maintained
2259 W:      http://www.armlinux.org.uk/
2260
2261 ARM/QUALCOMM SUPPORT
2262 M:      Andy Gross <[email protected]>
2263 M:      Bjorn Andersson <[email protected]>
2264 L:      [email protected]
2265 S:      Maintained
2266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2267 F:      Documentation/devicetree/bindings/*/qcom*
2268 F:      Documentation/devicetree/bindings/soc/qcom/
2269 F:      arch/arm/boot/dts/qcom-*.dts
2270 F:      arch/arm/boot/dts/qcom-*.dtsi
2271 F:      arch/arm/mach-qcom/
2272 F:      arch/arm64/boot/dts/qcom/
2273 F:      drivers/*/*/qcom*
2274 F:      drivers/*/*/qcom/
2275 F:      drivers/*/pm8???-*
2276 F:      drivers/*/qcom*
2277 F:      drivers/*/qcom/
2278 F:      drivers/bluetooth/btqcomsmd.c
2279 F:      drivers/clocksource/timer-qcom.c
2280 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2281 F:      drivers/extcon/extcon-qcom*
2282 F:      drivers/i2c/busses/i2c-qcom-geni.c
2283 F:      drivers/i2c/busses/i2c-qup.c
2284 F:      drivers/iommu/msm*
2285 F:      drivers/mfd/ssbi.c
2286 F:      drivers/mmc/host/mmci_qcom*
2287 F:      drivers/mmc/host/sdhci-msm.c
2288 F:      drivers/pci/controller/dwc/pcie-qcom.c
2289 F:      drivers/phy/qualcomm/
2290 F:      drivers/power/*/msm*
2291 F:      drivers/reset/reset-qcom-*
2292 F:      drivers/scsi/ufs/ufs-qcom*
2293 F:      drivers/spi/spi-geni-qcom.c
2294 F:      drivers/spi/spi-qcom-qspi.c
2295 F:      drivers/spi/spi-qup.c
2296 F:      drivers/tty/serial/msm_serial.c
2297 F:      drivers/usb/dwc3/dwc3-qcom.c
2298 F:      include/dt-bindings/*/qcom*
2299 F:      include/linux/*/qcom*
2300
2301 ARM/RADISYS ENP2611 MACHINE SUPPORT
2302 M:      Lennert Buytenhek <[email protected]>
2303 L:      [email protected] (moderated for non-subscribers)
2304 S:      Maintained
2305
2306 ARM/RDA MICRO ARCHITECTURE
2307 M:      Manivannan Sadhasivam <[email protected]>
2308 L:      [email protected] (moderated for non-subscribers)
2309 L:      [email protected] (moderated for non-subscribers)
2310 S:      Maintained
2311 F:      Documentation/devicetree/bindings/arm/rda.yaml
2312 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2313 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2314 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2315 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2316 F:      arch/arm/boot/dts/rda8810pl-*
2317 F:      drivers/clocksource/timer-rda.c
2318 F:      drivers/gpio/gpio-rda.c
2319 F:      drivers/irqchip/irq-rda-intc.c
2320 F:      drivers/tty/serial/rda-uart.c
2321
2322 ARM/REALTEK ARCHITECTURE
2323 M:      Andreas Färber <[email protected]>
2324 L:      [email protected] (moderated for non-subscribers)
2325 L:      [email protected] (moderated for non-subscribers)
2326 S:      Maintained
2327 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2328 F:      arch/arm/boot/dts/rtd*
2329 F:      arch/arm/mach-realtek/
2330 F:      arch/arm64/boot/dts/realtek/
2331
2332 ARM/RENESAS ARM64 ARCHITECTURE
2333 M:      Geert Uytterhoeven <[email protected]>
2334 M:      Magnus Damm <[email protected]>
2335 L:      [email protected]
2336 S:      Supported
2337 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2339 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2340 F:      arch/arm64/boot/dts/renesas/
2341 F:      drivers/soc/renesas/
2342 F:      include/linux/soc/renesas/
2343
2344 ARM/RISCPC ARCHITECTURE
2345 M:      Russell King <[email protected]>
2346 L:      [email protected] (moderated for non-subscribers)
2347 S:      Maintained
2348 W:      http://www.armlinux.org.uk/
2349 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2350 F:      arch/arm/include/asm/hardware/ioc.h
2351 F:      arch/arm/include/asm/hardware/iomd.h
2352 F:      arch/arm/include/asm/hardware/memc.h
2353 F:      arch/arm/mach-rpc/
2354 F:      drivers/net/ethernet/8390/etherh.c
2355 F:      drivers/net/ethernet/i825xx/ether1*
2356 F:      drivers/net/ethernet/seeq/ether3*
2357 F:      drivers/scsi/arm/
2358
2359 ARM/Rockchip SoC support
2360 M:      Heiko Stuebner <[email protected]>
2361 L:      [email protected] (moderated for non-subscribers)
2362 L:      [email protected]
2363 S:      Maintained
2364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2365 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2366 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2367 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2368 F:      arch/arm/boot/dts/rk3*
2369 F:      arch/arm/boot/dts/rv1108*
2370 F:      arch/arm/mach-rockchip/
2371 F:      drivers/*/*/*rockchip*
2372 F:      drivers/*/*rockchip*
2373 F:      drivers/clk/rockchip/
2374 F:      drivers/i2c/busses/i2c-rk3x.c
2375 F:      sound/soc/rockchip/
2376 N:      rockchip
2377
2378 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2379 M:      Kukjin Kim <[email protected]>
2380 M:      Krzysztof Kozlowski <[email protected]>
2381 L:      [email protected] (moderated for non-subscribers)
2382 L:      [email protected] (moderated for non-subscribers)
2383 S:      Maintained
2384 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2385 F:      Documentation/arm/samsung/
2386 F:      Documentation/devicetree/bindings/arm/samsung/
2387 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2388 F:      arch/arm/boot/dts/exynos*
2389 F:      arch/arm/boot/dts/s3c*
2390 F:      arch/arm/boot/dts/s5p*
2391 F:      arch/arm/mach-exynos*/
2392 F:      arch/arm/mach-s3c24*/
2393 F:      arch/arm/mach-s3c64xx/
2394 F:      arch/arm/mach-s5p*/
2395 F:      arch/arm/plat-samsung/
2396 F:      arch/arm64/boot/dts/exynos/
2397 F:      drivers/*/*/*s3c24*
2398 F:      drivers/*/*s3c24*
2399 F:      drivers/*/*s3c64xx*
2400 F:      drivers/*/*s5pv210*
2401 F:      drivers/memory/samsung/
2402 F:      drivers/soc/samsung/
2403 F:      drivers/tty/serial/samsung*
2404 F:      include/linux/soc/samsung/
2405 N:      exynos
2406
2407 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2408 M:      Kyungmin Park <[email protected]>
2409 L:      [email protected] (moderated for non-subscribers)
2410 S:      Maintained
2411 F:      arch/arm/mach-s5pv210/
2412
2413 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2414 M:      Kyungmin Park <[email protected]>
2415 M:      Kamil Debski <[email protected]>
2416 M:      Andrzej Hajda <[email protected]>
2417 L:      [email protected]
2418 L:      [email protected]
2419 S:      Maintained
2420 F:      drivers/media/platform/s5p-g2d/
2421
2422 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2423 M:      Marek Szyprowski <[email protected]>
2424 L:      [email protected] (moderated for non-subscribers)
2425 L:      [email protected]
2426 S:      Maintained
2427 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2428 F:      drivers/media/cec/platform/s5p/
2429
2430 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2431 M:      Andrzej Pietrasiewicz <[email protected]>
2432 M:      Jacek Anaszewski <[email protected]>
2433 M:      Sylwester Nawrocki <[email protected]>
2434 L:      [email protected]
2435 L:      [email protected]
2436 S:      Maintained
2437 F:      drivers/media/platform/s5p-jpeg/
2438
2439 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2440 M:      Kyungmin Park <[email protected]>
2441 M:      Kamil Debski <[email protected]>
2442 M:      Jeongtae Park <[email protected]>
2443 M:      Andrzej Hajda <[email protected]>
2444 L:      [email protected]
2445 L:      [email protected]
2446 S:      Maintained
2447 F:      drivers/media/platform/s5p-mfc/
2448
2449 ARM/SHMOBILE ARM ARCHITECTURE
2450 M:      Geert Uytterhoeven <[email protected]>
2451 M:      Magnus Damm <[email protected]>
2452 L:      [email protected]
2453 S:      Supported
2454 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2456 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2457 F:      arch/arm/boot/dts/emev2*
2458 F:      arch/arm/boot/dts/gr-peach*
2459 F:      arch/arm/boot/dts/iwg20d-q7*
2460 F:      arch/arm/boot/dts/r7s*
2461 F:      arch/arm/boot/dts/r8a*
2462 F:      arch/arm/boot/dts/r9a*
2463 F:      arch/arm/boot/dts/sh*
2464 F:      arch/arm/configs/shmobile_defconfig
2465 F:      arch/arm/include/debug/renesas-scif.S
2466 F:      arch/arm/mach-shmobile/
2467 F:      drivers/soc/renesas/
2468 F:      include/linux/soc/renesas/
2469
2470 ARM/SOCFPGA ARCHITECTURE
2471 M:      Dinh Nguyen <[email protected]>
2472 S:      Maintained
2473 W:      http://www.rocketboards.org
2474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2475 F:      arch/arm/boot/dts/socfpga*
2476 F:      arch/arm/configs/socfpga_defconfig
2477 F:      arch/arm/mach-socfpga/
2478 F:      arch/arm64/boot/dts/altera/
2479 F:      arch/arm64/boot/dts/intel/
2480
2481 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2482 M:      Dinh Nguyen <[email protected]>
2483 S:      Maintained
2484 F:      drivers/clk/socfpga/
2485
2486 ARM/SOCFPGA EDAC SUPPORT
2487 M:      Dinh Nguyen <[email protected]>
2488 S:      Maintained
2489 F:      drivers/edac/altera_edac.
2490
2491 ARM/SPREADTRUM SoC SUPPORT
2492 M:      Orson Zhai <[email protected]>
2493 M:      Baolin Wang <[email protected]>
2494 M:      Chunyan Zhang <[email protected]>
2495 S:      Maintained
2496 F:      arch/arm64/boot/dts/sprd
2497 N:      sprd
2498 N:      sc27xx
2499 N:      sc2731
2500
2501 ARM/STI ARCHITECTURE
2502 M:      Patrice Chotard <[email protected]>
2503 L:      [email protected] (moderated for non-subscribers)
2504 S:      Maintained
2505 W:      http://www.stlinux.com
2506 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2507 F:      arch/arm/boot/dts/sti*
2508 F:      arch/arm/mach-sti/
2509 F:      drivers/ata/ahci_st.c
2510 F:      drivers/char/hw_random/st-rng.c
2511 F:      drivers/clocksource/arm_global_timer.c
2512 F:      drivers/clocksource/clksrc_st_lpc.c
2513 F:      drivers/cpufreq/sti-cpufreq.c
2514 F:      drivers/dma/st_fdma*
2515 F:      drivers/i2c/busses/i2c-st.c
2516 F:      drivers/media/platform/sti/c8sectpfe/
2517 F:      drivers/media/rc/st_rc.c
2518 F:      drivers/mmc/host/sdhci-st.c
2519 F:      drivers/phy/st/phy-miphy28lp.c
2520 F:      drivers/phy/st/phy-stih407-usb.c
2521 F:      drivers/pinctrl/pinctrl-st.c
2522 F:      drivers/remoteproc/st_remoteproc.c
2523 F:      drivers/remoteproc/st_slim_rproc.c
2524 F:      drivers/reset/sti/
2525 F:      drivers/rtc/rtc-st-lpc.c
2526 F:      drivers/tty/serial/st-asc.c
2527 F:      drivers/usb/dwc3/dwc3-st.c
2528 F:      drivers/usb/host/ehci-st.c
2529 F:      drivers/usb/host/ohci-st.c
2530 F:      drivers/watchdog/st_lpc_wdt.c
2531 F:      include/linux/remoteproc/st_slim_rproc.h
2532
2533 ARM/STM32 ARCHITECTURE
2534 M:      Maxime Coquelin <[email protected]>
2535 M:      Alexandre Torgue <[email protected]>
2536 L:      [email protected] (moderated for non-subscribers)
2537 L:      [email protected] (moderated for non-subscribers)
2538 S:      Maintained
2539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2540 F:      arch/arm/boot/dts/stm32*
2541 F:      arch/arm/mach-stm32/
2542 F:      drivers/clocksource/armv7m_systick.c
2543 N:      stm32
2544 N:      stm
2545
2546 ARM/Synaptics SoC support
2547 M:      Jisheng Zhang <[email protected]>
2548 M:      Sebastian Hesselbarth <[email protected]>
2549 L:      [email protected] (moderated for non-subscribers)
2550 S:      Maintained
2551 F:      arch/arm/boot/dts/berlin*
2552 F:      arch/arm/mach-berlin/
2553 F:      arch/arm64/boot/dts/synaptics/
2554
2555 ARM/TANGO ARCHITECTURE
2556 M:      Marc Gonzalez <[email protected]>
2557 M:      Mans Rullgard <[email protected]>
2558 L:      [email protected]
2559 S:      Odd Fixes
2560 N:      tango
2561
2562 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2563 M:      Lennert Buytenhek <[email protected]>
2564 L:      [email protected] (moderated for non-subscribers)
2565 S:      Maintained
2566
2567 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2568 M:      Hans Verkuil <[email protected]>
2569 L:      [email protected]
2570 L:      [email protected]
2571 S:      Maintained
2572 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2573 F:      drivers/media/cec/platform/tegra/
2574
2575 ARM/TETON BGA MACHINE SUPPORT
2576 M:      "Mark F. Brown" <[email protected]>
2577 L:      [email protected] (moderated for non-subscribers)
2578 S:      Maintained
2579
2580 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2581 M:      Santosh Shilimkar <[email protected]>
2582 L:      [email protected]
2583 S:      Maintained
2584 F:      drivers/memory/*emif*
2585
2586 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2587 M:      Santosh Shilimkar <[email protected]>
2588 L:      [email protected] (moderated for non-subscribers)
2589 S:      Maintained
2590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2591 F:      arch/arm/boot/dts/keystone-*
2592 F:      arch/arm/mach-keystone/
2593
2594 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2595 M:      Santosh Shilimkar <[email protected]>
2596 L:      [email protected]
2597 S:      Maintained
2598 F:      drivers/clk/keystone/
2599
2600 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2601 M:      Santosh Shilimkar <[email protected]>
2602 L:      [email protected] (moderated for non-subscribers)
2603 L:      [email protected]
2604 S:      Maintained
2605 F:      drivers/clocksource/timer-keystone.c
2606
2607 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2608 M:      Santosh Shilimkar <[email protected]>
2609 L:      [email protected]
2610 S:      Maintained
2611 F:      drivers/power/reset/keystone-reset.c
2612
2613 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2614 M:      Tero Kristo <[email protected]>
2615 M:      Nishanth Menon <[email protected]>
2616 L:      [email protected] (moderated for non-subscribers)
2617 S:      Supported
2618 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2619 F:      arch/arm64/boot/dts/ti/Makefile
2620 F:      arch/arm64/boot/dts/ti/k3-*
2621 F:      include/dt-bindings/pinctrl/k3.h
2622
2623 ARM/THECUS N2100 MACHINE SUPPORT
2624 M:      Lennert Buytenhek <[email protected]>
2625 L:      [email protected] (moderated for non-subscribers)
2626 S:      Maintained
2627
2628 ARM/TOSA MACHINE SUPPORT
2629 M:      Dmitry Eremin-Solenikov <[email protected]>
2630 M:      Dirk Opfer <[email protected]>
2631 S:      Maintained
2632
2633 ARM/UNIPHIER ARCHITECTURE
2634 M:      Masahiro Yamada <[email protected]>
2635 L:      [email protected] (moderated for non-subscribers)
2636 S:      Maintained
2637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2638 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2639 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2640 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2641 F:      arch/arm/boot/dts/uniphier*
2642 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2643 F:      arch/arm/mach-uniphier/
2644 F:      arch/arm/mm/cache-uniphier.c
2645 F:      arch/arm64/boot/dts/socionext/uniphier*
2646 F:      drivers/bus/uniphier-system-bus.c
2647 F:      drivers/clk/uniphier/
2648 F:      drivers/dma/uniphier-mdmac.c
2649 F:      drivers/gpio/gpio-uniphier.c
2650 F:      drivers/i2c/busses/i2c-uniphier*
2651 F:      drivers/irqchip/irq-uniphier-aidet.c
2652 F:      drivers/mmc/host/uniphier-sd.c
2653 F:      drivers/pinctrl/uniphier/
2654 F:      drivers/reset/reset-uniphier.c
2655 F:      drivers/tty/serial/8250/8250_uniphier.c
2656 N:      uniphier
2657
2658 ARM/VERSATILE EXPRESS PLATFORM
2659 M:      Liviu Dudau <[email protected]>
2660 M:      Sudeep Holla <[email protected]>
2661 M:      Lorenzo Pieralisi <[email protected]>
2662 L:      [email protected] (moderated for non-subscribers)
2663 S:      Maintained
2664 F:      */*/*/vexpress*
2665 F:      */*/vexpress*
2666 F:      arch/arm/boot/dts/vexpress*
2667 F:      arch/arm/mach-vexpress/
2668 F:      arch/arm64/boot/dts/arm/
2669 F:      drivers/clk/versatile/clk-vexpress-osc.c
2670 F:      drivers/clocksource/timer-versatile.c
2671 N:      mps2
2672
2673 ARM/VFP SUPPORT
2674 M:      Russell King <[email protected]>
2675 L:      [email protected] (moderated for non-subscribers)
2676 S:      Maintained
2677 W:      http://www.armlinux.org.uk/
2678 F:      arch/arm/vfp/
2679
2680 ARM/VOIPAC PXA270 SUPPORT
2681 M:      Marek Vasut <[email protected]>
2682 L:      [email protected] (moderated for non-subscribers)
2683 S:      Maintained
2684 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2685 F:      arch/arm/mach-pxa/vpac270.c
2686
2687 ARM/VT8500 ARM ARCHITECTURE
2688 M:      Tony Prisk <[email protected]>
2689 L:      [email protected] (moderated for non-subscribers)
2690 S:      Maintained
2691 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2692 F:      arch/arm/mach-vt8500/
2693 F:      drivers/clocksource/timer-vt8500.c
2694 F:      drivers/i2c/busses/i2c-wmt.c
2695 F:      drivers/mmc/host/wmt-sdmmc.c
2696 F:      drivers/pwm/pwm-vt8500.c
2697 F:      drivers/rtc/rtc-vt8500.c
2698 F:      drivers/tty/serial/vt8500_serial.c
2699 F:      drivers/usb/host/ehci-platform.c
2700 F:      drivers/usb/host/uhci-platform.c
2701 F:      drivers/video/fbdev/vt8500lcdfb.*
2702 F:      drivers/video/fbdev/wm8505fb*
2703 F:      drivers/video/fbdev/wmt_ge_rops.*
2704
2705 ARM/ZIPIT Z2 SUPPORT
2706 M:      Marek Vasut <[email protected]>
2707 L:      [email protected] (moderated for non-subscribers)
2708 S:      Maintained
2709 F:      arch/arm/mach-pxa/include/mach/z2.h
2710 F:      arch/arm/mach-pxa/z2.c
2711
2712 ARM/ZTE ARCHITECTURE
2713 M:      Jun Nie <[email protected]>
2714 M:      Shawn Guo <[email protected]>
2715 L:      [email protected] (moderated for non-subscribers)
2716 S:      Maintained
2717 F:      Documentation/devicetree/bindings/arm/zte.yaml
2718 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2719 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2720 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2721 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2722 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2723 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2724 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2725 F:      Documentation/devicetree/bindings/soc/zte/
2726 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2727 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2728 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2729 F:      arch/arm/boot/dts/zx2967*
2730 F:      arch/arm/mach-zx/
2731 F:      arch/arm64/boot/dts/zte/
2732 F:      drivers/clk/zte/
2733 F:      drivers/dma/zx_dma.c
2734 F:      drivers/gpio/gpio-zx.c
2735 F:      drivers/i2c/busses/i2c-zx2967.c
2736 F:      drivers/mmc/host/dw_mmc-zx.*
2737 F:      drivers/pinctrl/zte/
2738 F:      drivers/soc/zte/
2739 F:      drivers/thermal/zx2967_thermal.c
2740 F:      drivers/watchdog/zx2967_wdt.c
2741 F:      include/dt-bindings/clock/zx2967*.h
2742 F:      include/dt-bindings/soc/zte,*.h
2743 F:      sound/soc/codecs/zx_aud96p22.c
2744 F:      sound/soc/zte/
2745
2746 ARM/ZYNQ ARCHITECTURE
2747 M:      Michal Simek <[email protected]>
2748 L:      [email protected] (moderated for non-subscribers)
2749 S:      Supported
2750 W:      http://wiki.xilinx.com
2751 T:      git https://github.com/Xilinx/linux-xlnx.git
2752 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2753 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2754 F:      arch/arm/mach-zynq/
2755 F:      drivers/block/xsysace.c
2756 F:      drivers/clocksource/timer-cadence-ttc.c
2757 F:      drivers/cpuidle/cpuidle-zynq.c
2758 F:      drivers/edac/synopsys_edac.c
2759 F:      drivers/i2c/busses/i2c-cadence.c
2760 F:      drivers/i2c/busses/i2c-xiic.c
2761 F:      drivers/mmc/host/sdhci-of-arasan.c
2762 N:      zynq
2763 N:      xilinx
2764
2765 ARM64 PORT (AARCH64 ARCHITECTURE)
2766 M:      Catalin Marinas <[email protected]>
2767 M:      Will Deacon <[email protected]>
2768 L:      [email protected] (moderated for non-subscribers)
2769 S:      Maintained
2770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2771 F:      Documentation/arm64/
2772 F:      arch/arm64/
2773 F:      tools/testing/selftests/arm64/
2774 X:      arch/arm64/boot/dts/
2775
2776 AS3645A LED FLASH CONTROLLER DRIVER
2777 M:      Sakari Ailus <[email protected]>
2778 L:      [email protected]
2779 S:      Maintained
2780 F:      drivers/leds/leds-as3645a.c
2781
2782 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2783 M:      Tianshu Qiu <[email protected]>
2784 L:      [email protected]
2785 S:      Maintained
2786 T:      git git://linuxtv.org/media_tree.git
2787 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2788 F:      drivers/media/i2c/ak7375.c
2789
2790 ASAHI KASEI AK8974 DRIVER
2791 M:      Linus Walleij <[email protected]>
2792 L:      [email protected]
2793 S:      Supported
2794 W:      http://www.akm.com/
2795 F:      drivers/iio/magnetometer/ak8974.c
2796
2797 ASC7621 HARDWARE MONITOR DRIVER
2798 M:      George Joseph <[email protected]>
2799 L:      [email protected]
2800 S:      Maintained
2801 F:      Documentation/hwmon/asc7621.rst
2802 F:      drivers/hwmon/asc7621.c
2803
2804 ASPEED PINCTRL DRIVERS
2805 M:      Andrew Jeffery <[email protected]>
2806 L:      [email protected] (moderated for non-subscribers)
2807 L:      [email protected] (moderated for non-subscribers)
2808 L:      [email protected]
2809 S:      Maintained
2810 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2811 F:      drivers/pinctrl/aspeed/
2812
2813 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2814 M:      Eddie James <[email protected]>
2815 L:      [email protected] (moderated for non-subscribers)
2816 S:      Maintained
2817 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2818 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2819 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2820
2821 ASPEED VIDEO ENGINE DRIVER
2822 M:      Eddie James <[email protected]>
2823 L:      [email protected]
2824 L:      [email protected] (moderated for non-subscribers)
2825 S:      Maintained
2826 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2827 F:      drivers/media/platform/aspeed-video.c
2828
2829 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2830 M:      Corentin Chary <[email protected]>
2831 L:      [email protected]
2832 L:      [email protected]
2833 S:      Maintained
2834 W:      http://acpi4asus.sf.net
2835 F:      drivers/platform/x86/asus*.c
2836 F:      drivers/platform/x86/eeepc*.c
2837
2838 ASUS WIRELESS RADIO CONTROL DRIVER
2839 M:      João Paulo Rechi Vita <[email protected]>
2840 L:      [email protected]
2841 S:      Maintained
2842 F:      drivers/platform/x86/asus-wireless.c
2843
2844 ASYMMETRIC KEYS
2845 M:      David Howells <[email protected]>
2846 L:      [email protected]
2847 S:      Maintained
2848 F:      Documentation/crypto/asymmetric-keys.rst
2849 F:      crypto/asymmetric_keys/
2850 F:      include/crypto/pkcs7.h
2851 F:      include/crypto/public_key.h
2852 F:      include/linux/verification.h
2853
2854 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2855 R:      Dan Williams <[email protected]>
2856 S:      Odd fixes
2857 W:      http://sourceforge.net/projects/xscaleiop
2858 F:      Documentation/crypto/async-tx-api.rst
2859 F:      crypto/async_tx/
2860 F:      drivers/dma/
2861 F:      include/linux/async_tx.h
2862 F:      include/linux/dmaengine.h
2863
2864 AT24 EEPROM DRIVER
2865 M:      Bartosz Golaszewski <[email protected]>
2866 L:      [email protected]
2867 S:      Maintained
2868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2869 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2870 F:      drivers/misc/eeprom/at24.c
2871
2872 ATA OVER ETHERNET (AOE) DRIVER
2873 M:      "Justin Sanders" <[email protected]>
2874 S:      Supported
2875 W:      http://www.openaoe.org/
2876 F:      Documentation/admin-guide/aoe/
2877 F:      drivers/block/aoe/
2878
2879 ATHEROS 71XX/9XXX GPIO DRIVER
2880 M:      Alban Bedel <[email protected]>
2881 S:      Maintained
2882 W:      https://github.com/AlbanBedel/linux
2883 T:      git git://github.com/AlbanBedel/linux
2884 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2885 F:      drivers/gpio/gpio-ath79.c
2886
2887 ATHEROS 71XX/9XXX USB PHY DRIVER
2888 M:      Alban Bedel <[email protected]>
2889 S:      Maintained
2890 W:      https://github.com/AlbanBedel/linux
2891 T:      git git://github.com/AlbanBedel/linux
2892 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2893 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2894
2895 ATHEROS ATH GENERIC UTILITIES
2896 M:      Kalle Valo <[email protected]>
2897 L:      [email protected]
2898 S:      Supported
2899 F:      drivers/net/wireless/ath/*
2900
2901 ATHEROS ATH5K WIRELESS DRIVER
2902 M:      Jiri Slaby <[email protected]>
2903 M:      Nick Kossifidis <[email protected]>
2904 M:      Luis Chamberlain <[email protected]>
2905 L:      [email protected]
2906 S:      Maintained
2907 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2908 F:      drivers/net/wireless/ath/ath5k/
2909
2910 ATHEROS ATH6KL WIRELESS DRIVER
2911 M:      Kalle Valo <[email protected]>
2912 L:      [email protected]
2913 S:      Supported
2914 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2916 F:      drivers/net/wireless/ath/ath6kl/
2917
2918 ATI_REMOTE2 DRIVER
2919 M:      Ville Syrjala <[email protected]>
2920 S:      Maintained
2921 F:      drivers/input/misc/ati_remote2.c
2922
2923 ATK0110 HWMON DRIVER
2924 M:      Luca Tettamanti <[email protected]>
2925 L:      [email protected]
2926 S:      Maintained
2927 F:      drivers/hwmon/asus_atk0110.c
2928
2929 ATLX ETHERNET DRIVERS
2930 M:      Jay Cliburn <[email protected]>
2931 M:      Chris Snook <[email protected]>
2932 L:      [email protected]
2933 S:      Maintained
2934 W:      http://sourceforge.net/projects/atl1
2935 W:      http://atl1.sourceforge.net
2936 F:      drivers/net/ethernet/atheros/
2937
2938 ATM
2939 M:      Chas Williams <[email protected]>
2940 L:      [email protected] (moderated for non-subscribers)
2941 L:      [email protected]
2942 S:      Maintained
2943 W:      http://linux-atm.sourceforge.net
2944 F:      drivers/atm/
2945 F:      include/linux/atm*
2946 F:      include/uapi/linux/atm*
2947
2948 ATMEL MACB ETHERNET DRIVER
2949 M:      Nicolas Ferre <[email protected]>
2950 M:      Claudiu Beznea <[email protected]>
2951 S:      Supported
2952 F:      drivers/net/ethernet/cadence/
2953
2954 ATMEL MAXTOUCH DRIVER
2955 M:      Nick Dyer <[email protected]>
2956 S:      Maintained
2957 T:      git git://github.com/ndyer/linux.git
2958 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2959 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2960
2961 ATMEL WIRELESS DRIVER
2962 M:      Simon Kelley <[email protected]>
2963 L:      [email protected]
2964 S:      Maintained
2965 W:      http://www.thekelleys.org.uk/atmel
2966 W:      http://atmelwlandriver.sourceforge.net/
2967 F:      drivers/net/wireless/atmel/atmel*
2968
2969 ATOMIC INFRASTRUCTURE
2970 M:      Will Deacon <[email protected]>
2971 M:      Peter Zijlstra <[email protected]>
2972 R:      Boqun Feng <[email protected]>
2973 L:      [email protected]
2974 S:      Maintained
2975 F:      arch/*/include/asm/atomic*.h
2976 F:      include/*/atomic*.h
2977 F:      scripts/atomic/
2978
2979 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2980 M:      Bradley Grove <[email protected]>
2981 L:      [email protected]
2982 S:      Supported
2983 W:      http://www.attotech.com
2984 F:      drivers/scsi/esas2r
2985
2986 ATUSB IEEE 802.15.4 RADIO DRIVER
2987 M:      Stefan Schmidt <[email protected]>
2988 L:      [email protected]
2989 S:      Maintained
2990 F:      drivers/net/ieee802154/at86rf230.h
2991 F:      drivers/net/ieee802154/atusb.c
2992 F:      drivers/net/ieee802154/atusb.h
2993
2994 AUDIT SUBSYSTEM
2995 M:      Paul Moore <[email protected]>
2996 M:      Eric Paris <[email protected]>
2997 L:      [email protected] (moderated for non-subscribers)
2998 S:      Supported
2999 W:      https://github.com/linux-audit
3000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3001 F:      include/linux/audit.h
3002 F:      include/uapi/linux/audit.h
3003 F:      kernel/audit*
3004
3005 AUXILIARY DISPLAY DRIVERS
3006 M:      Miguel Ojeda Sandonis <[email protected]>
3007 S:      Maintained
3008 F:      drivers/auxdisplay/
3009 F:      include/linux/cfag12864b.h
3010
3011 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3012 M:      Andreas Klinger <[email protected]>
3013 L:      [email protected]
3014 S:      Maintained
3015 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3016 F:      drivers/iio/adc/hx711.c
3017
3018 AX.25 NETWORK LAYER
3019 M:      Ralf Baechle <[email protected]>
3020 L:      [email protected]
3021 S:      Maintained
3022 W:      http://www.linux-ax25.org/
3023 F:      include/net/ax25.h
3024 F:      include/uapi/linux/ax25.h
3025 F:      net/ax25/
3026
3027 AXENTIA ARM DEVICES
3028 M:      Peter Rosin <[email protected]>
3029 L:      [email protected] (moderated for non-subscribers)
3030 S:      Maintained
3031 F:      arch/arm/boot/dts/at91-linea.dtsi
3032 F:      arch/arm/boot/dts/at91-natte.dtsi
3033 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3034 F:      arch/arm/boot/dts/at91-tse850-3.dts
3035
3036 AXENTIA ASOC DRIVERS
3037 M:      Peter Rosin <[email protected]>
3038 L:      [email protected] (moderated for non-subscribers)
3039 S:      Maintained
3040 F:      Documentation/devicetree/bindings/sound/axentia,*
3041 F:      sound/soc/atmel/tse850-pcm5142.c
3042
3043 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3044 M:      Nuno Sá <[email protected]>
3045 L:      [email protected]
3046 S:      Supported
3047 W:      http://ez.analog.com/community/linux-device-drivers
3048 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3049 F:      drivers/hwmon/axi-fan-control.c
3050
3051 AXXIA I2C CONTROLLER
3052 M:      Krzysztof Adamski <[email protected]>
3053 L:      [email protected]
3054 S:      Maintained
3055 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3056 F:      drivers/i2c/busses/i2c-axxia.c
3057
3058 AZ6007 DVB DRIVER
3059 M:      Mauro Carvalho Chehab <[email protected]>
3060 L:      [email protected]
3061 S:      Maintained
3062 W:      https://linuxtv.org
3063 T:      git git://linuxtv.org/media_tree.git
3064 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3065
3066 AZTECH FM RADIO RECEIVER DRIVER
3067 M:      Hans Verkuil <[email protected]>
3068 L:      [email protected]
3069 S:      Maintained
3070 W:      https://linuxtv.org
3071 T:      git git://linuxtv.org/media_tree.git
3072 F:      drivers/media/radio/radio-aztech*
3073
3074 B43 WIRELESS DRIVER
3075 L:      [email protected]
3076 L:      [email protected]
3077 S:      Odd Fixes
3078 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3079 F:      drivers/net/wireless/broadcom/b43/
3080
3081 B43LEGACY WIRELESS DRIVER
3082 M:      Larry Finger <[email protected]>
3083 L:      [email protected]
3084 L:      [email protected]
3085 S:      Maintained
3086 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3087 F:      drivers/net/wireless/broadcom/b43legacy/
3088
3089 BACKLIGHT CLASS/SUBSYSTEM
3090 M:      Lee Jones <[email protected]>
3091 M:      Daniel Thompson <[email protected]>
3092 M:      Jingoo Han <[email protected]>
3093 L:      [email protected]
3094 S:      Maintained
3095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3096 F:      Documentation/ABI/stable/sysfs-class-backlight
3097 F:      Documentation/ABI/testing/sysfs-class-backlight
3098 F:      Documentation/devicetree/bindings/leds/backlight
3099 F:      drivers/video/backlight/
3100 F:      include/linux/backlight.h
3101 F:      include/linux/pwm_backlight.h
3102
3103 BATMAN ADVANCED
3104 M:      Marek Lindner <[email protected]>
3105 M:      Simon Wunderlich <[email protected]>
3106 M:      Antonio Quartulli <[email protected]>
3107 M:      Sven Eckelmann <[email protected]>
3108 L:      [email protected] (moderated for non-subscribers)
3109 S:      Maintained
3110 W:      https://www.open-mesh.org/
3111 Q:      https://patchwork.open-mesh.org/project/batman/list/
3112 B:      https://www.open-mesh.org/projects/batman-adv/issues
3113 C:      irc://chat.freenode.net/batman
3114 T:      git https://git.open-mesh.org/linux-merge.git
3115 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3116 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3117 F:      Documentation/networking/batman-adv.rst
3118 F:      include/uapi/linux/batadv_packet.h
3119 F:      include/uapi/linux/batman_adv.h
3120 F:      net/batman-adv/
3121
3122 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3123 M:      Thomas Sailer <[email protected]>
3124 L:      [email protected]
3125 S:      Maintained
3126 W:      http://www.baycom.org/~tom/ham/ham.html
3127 F:      drivers/net/hamradio/baycom*
3128
3129 BCACHE (BLOCK LAYER CACHE)
3130 M:      Coly Li <[email protected]>
3131 M:      Kent Overstreet <[email protected]>
3132 L:      [email protected]
3133 S:      Maintained
3134 W:      http://bcache.evilpiepirate.org
3135 C:      irc://irc.oftc.net/bcache
3136 F:      drivers/md/bcache/
3137
3138 BDISP ST MEDIA DRIVER
3139 M:      Fabien Dessenne <[email protected]>
3140 L:      [email protected]
3141 S:      Supported
3142 W:      https://linuxtv.org
3143 T:      git git://linuxtv.org/media_tree.git
3144 F:      drivers/media/platform/sti/bdisp
3145
3146 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3147 M:      Dariusz Marcinkiewicz <[email protected]>
3148 L:      [email protected]
3149 S:      Maintained
3150 F:      drivers/net/ethernet/ec_bhf.c
3151
3152 BEFS FILE SYSTEM
3153 M:      Luis de Bethencourt <[email protected]>
3154 M:      Salah Triki <[email protected]>
3155 S:      Maintained
3156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3157 F:      Documentation/filesystems/befs.rst
3158 F:      fs/befs/
3159
3160 BFQ I/O SCHEDULER
3161 M:      Paolo Valente <[email protected]>
3162 M:      Jens Axboe <[email protected]>
3163 L:      [email protected]
3164 S:      Maintained
3165 F:      Documentation/block/bfq-iosched.rst
3166 F:      block/bfq-*
3167
3168 BFS FILE SYSTEM
3169 M:      "Tigran A. Aivazian" <[email protected]>
3170 S:      Maintained
3171 F:      Documentation/filesystems/bfs.rst
3172 F:      fs/bfs/
3173 F:      include/uapi/linux/bfs_fs.h
3174
3175 BLINKM RGB LED DRIVER
3176 M:      Jan-Simon Moeller <[email protected]>
3177 S:      Maintained
3178 F:      drivers/leds/leds-blinkm.c
3179
3180 BLOCK LAYER
3181 M:      Jens Axboe <[email protected]>
3182 L:      [email protected]
3183 S:      Maintained
3184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3185 F:      block/
3186 F:      drivers/block/
3187 F:      include/linux/blk*
3188 F:      kernel/trace/blktrace.c
3189 F:      lib/sbitmap.c
3190
3191 BLOCK2MTD DRIVER
3192 M:      Joern Engel <[email protected]>
3193 L:      [email protected]
3194 S:      Maintained
3195 F:      drivers/mtd/devices/block2mtd.c
3196
3197 BLUETOOTH DRIVERS
3198 M:      Marcel Holtmann <[email protected]>
3199 M:      Johan Hedberg <[email protected]>
3200 L:      [email protected]
3201 S:      Maintained
3202 W:      http://www.bluez.org/
3203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3205 F:      drivers/bluetooth/
3206
3207 BLUETOOTH SUBSYSTEM
3208 M:      Marcel Holtmann <[email protected]>
3209 M:      Johan Hedberg <[email protected]>
3210 L:      [email protected]
3211 S:      Maintained
3212 W:      http://www.bluez.org/
3213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3215 F:      include/net/bluetooth/
3216 F:      net/bluetooth/
3217
3218 BONDING DRIVER
3219 M:      Jay Vosburgh <[email protected]>
3220 M:      Veaceslav Falico <[email protected]>
3221 M:      Andy Gospodarek <[email protected]>
3222 L:      [email protected]
3223 S:      Supported
3224 W:      http://sourceforge.net/projects/bonding/
3225 F:      drivers/net/bonding/
3226 F:      include/uapi/linux/if_bonding.h
3227
3228 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3229 M:      Dan Robertson <[email protected]>
3230 L:      [email protected]
3231 S:      Maintained
3232 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3233 F:      drivers/iio/accel/bma400*
3234
3235 BPF (Safe dynamic programs and tools)
3236 M:      Alexei Starovoitov <[email protected]>
3237 M:      Daniel Borkmann <[email protected]>
3238 R:      Martin KaFai Lau <[email protected]>
3239 R:      Song Liu <[email protected]>
3240 R:      Yonghong Song <[email protected]>
3241 R:      Andrii Nakryiko <[email protected]>
3242 R:      John Fastabend <[email protected]>
3243 R:      KP Singh <[email protected]>
3244 L:      [email protected]
3245 L:      [email protected]
3246 S:      Supported
3247 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3250 F:      Documentation/bpf/
3251 F:      Documentation/networking/filter.rst
3252 F:      arch/*/net/*
3253 F:      include/linux/bpf*
3254 F:      include/linux/filter.h
3255 F:      include/trace/events/xdp.h
3256 F:      include/uapi/linux/bpf*
3257 F:      include/uapi/linux/filter.h
3258 F:      kernel/bpf/
3259 F:      kernel/trace/bpf_trace.c
3260 F:      lib/test_bpf.c
3261 F:      net/bpf/
3262 F:      net/core/filter.c
3263 F:      net/sched/act_bpf.c
3264 F:      net/sched/cls_bpf.c
3265 F:      samples/bpf/
3266 F:      tools/bpf/
3267 F:      tools/lib/bpf/
3268 F:      tools/testing/selftests/bpf/
3269 N:      bpf
3270 K:      bpf
3271
3272 BPF JIT for ARM
3273 M:      Shubham Bansal <[email protected]>
3274 L:      [email protected]
3275 L:      [email protected]
3276 S:      Maintained
3277 F:      arch/arm/net/
3278
3279 BPF JIT for ARM64
3280 M:      Daniel Borkmann <[email protected]>
3281 M:      Alexei Starovoitov <[email protected]>
3282 M:      Zi Shen Lim <[email protected]>
3283 L:      [email protected]
3284 L:      [email protected]
3285 S:      Supported
3286 F:      arch/arm64/net/
3287
3288 BPF JIT for MIPS (32-BIT AND 64-BIT)
3289 M:      Paul Burton <[email protected]>
3290 L:      [email protected]
3291 L:      [email protected]
3292 S:      Maintained
3293 F:      arch/mips/net/
3294
3295 BPF JIT for NFP NICs
3296 M:      Jakub Kicinski <[email protected]>
3297 L:      [email protected]
3298 L:      [email protected]
3299 S:      Supported
3300 F:      drivers/net/ethernet/netronome/nfp/bpf/
3301
3302 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3303 M:      Naveen N. Rao <[email protected]>
3304 M:      Sandipan Das <[email protected]>
3305 L:      [email protected]
3306 L:      [email protected]
3307 S:      Maintained
3308 F:      arch/powerpc/net/
3309
3310 BPF JIT for RISC-V (32-bit)
3311 M:      Luke Nelson <[email protected]>
3312 M:      Xi Wang <[email protected]>
3313 L:      [email protected]
3314 L:      [email protected]
3315 S:      Maintained
3316 F:      arch/riscv/net/
3317 X:      arch/riscv/net/bpf_jit_comp64.c
3318
3319 BPF JIT for RISC-V (64-bit)
3320 M:      Björn Töpel <[email protected]>
3321 L:      [email protected]
3322 L:      [email protected]
3323 S:      Maintained
3324 F:      arch/riscv/net/
3325 X:      arch/riscv/net/bpf_jit_comp32.c
3326
3327 BPF JIT for S390
3328 M:      Ilya Leoshkevich <[email protected]>
3329 M:      Heiko Carstens <[email protected]>
3330 M:      Vasily Gorbik <[email protected]>
3331 L:      [email protected]
3332 L:      [email protected]
3333 S:      Maintained
3334 F:      arch/s390/net/
3335 X:      arch/s390/net/pnet.c
3336
3337 BPF JIT for SPARC (32-BIT AND 64-BIT)
3338 M:      David S. Miller <[email protected]>
3339 L:      [email protected]
3340 L:      [email protected]
3341 S:      Maintained
3342 F:      arch/sparc/net/
3343
3344 BPF JIT for X86 32-BIT
3345 M:      Wang YanQing <[email protected]>
3346 L:      [email protected]
3347 L:      [email protected]
3348 S:      Maintained
3349 F:      arch/x86/net/bpf_jit_comp32.c
3350
3351 BPF JIT for X86 64-BIT
3352 M:      Alexei Starovoitov <[email protected]>
3353 M:      Daniel Borkmann <[email protected]>
3354 L:      [email protected]
3355 L:      [email protected]
3356 S:      Supported
3357 F:      arch/x86/net/
3358 X:      arch/x86/net/bpf_jit_comp32.c
3359
3360 BROADCOM B44 10/100 ETHERNET DRIVER
3361 M:      Michael Chan <[email protected]>
3362 L:      [email protected]
3363 S:      Supported
3364 F:      drivers/net/ethernet/broadcom/b44.*
3365
3366 BROADCOM B53 ETHERNET SWITCH DRIVER
3367 M:      Florian Fainelli <[email protected]>
3368 L:      [email protected]
3369 L:      [email protected] (subscribers-only)
3370 S:      Supported
3371 F:      Documentation/devicetree/bindings/net/dsa/b53.txt
3372 F:      drivers/net/dsa/b53/*
3373 F:      include/linux/platform_data/b53.h
3374
3375 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3376 M:      Nicolas Saenz Julienne <[email protected]>
3377 L:      [email protected]
3378 L:      [email protected] (moderated for non-subscribers)
3379 L:      [email protected] (moderated for non-subscribers)
3380 S:      Maintained
3381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3382 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3383 F:      drivers/pci/controller/pcie-brcmstb.c
3384 F:      drivers/staging/vc04_services
3385 N:      bcm2711
3386 N:      bcm2835
3387
3388 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3389 M:      Florian Fainelli <[email protected]>
3390 M:      Ray Jui <[email protected]>
3391 M:      Scott Branden <[email protected]>
3392 M:      [email protected]
3393 S:      Maintained
3394 T:      git git://github.com/broadcom/mach-bcm
3395 F:      arch/arm/mach-bcm/
3396 N:      bcm281*
3397 N:      bcm113*
3398 N:      bcm216*
3399 N:      kona
3400
3401 BROADCOM BCM47XX MIPS ARCHITECTURE
3402 M:      Hauke Mehrtens <[email protected]>
3403 M:      Rafał Miłecki <[email protected]>
3404 L:      [email protected]
3405 S:      Maintained
3406 F:      Documentation/devicetree/bindings/mips/brcm/
3407 F:      arch/mips/bcm47xx/*
3408 F:      arch/mips/include/asm/mach-bcm47xx/*
3409
3410 BROADCOM BCM5301X ARM ARCHITECTURE
3411 M:      Hauke Mehrtens <[email protected]>
3412 M:      Rafał Miłecki <[email protected]>
3413 M:      [email protected]
3414 L:      [email protected]
3415 S:      Maintained
3416 F:      arch/arm/boot/dts/bcm470*
3417 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3418 F:      arch/arm/boot/dts/bcm953012*
3419 F:      arch/arm/mach-bcm/bcm_5301x.c
3420
3421 BROADCOM BCM53573 ARM ARCHITECTURE
3422 M:      Rafał Miłecki <[email protected]>
3423 L:      [email protected]
3424 L:      [email protected]
3425 S:      Maintained
3426 F:      arch/arm/boot/dts/bcm47189*
3427 F:      arch/arm/boot/dts/bcm53573*
3428
3429 BROADCOM BCM63XX ARM ARCHITECTURE
3430 M:      Florian Fainelli <[email protected]>
3431 M:      [email protected]
3432 L:      [email protected] (moderated for non-subscribers)
3433 S:      Maintained
3434 T:      git git://github.com/broadcom/stblinux.git
3435 N:      bcm63xx
3436
3437 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3438 M:      Kevin Cernekee <[email protected]>
3439 L:      [email protected]
3440 S:      Maintained
3441 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3442
3443 BROADCOM BCM7XXX ARM ARCHITECTURE
3444 M:      Florian Fainelli <[email protected]>
3445 M:      [email protected]
3446 L:      [email protected] (moderated for non-subscribers)
3447 S:      Maintained
3448 T:      git git://github.com/broadcom/stblinux.git
3449 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3450 F:      arch/arm/boot/dts/bcm7*.dts*
3451 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3452 F:      arch/arm/mach-bcm/*brcmstb*
3453 F:      arch/arm/mm/cache-b15-rac.c
3454 F:      drivers/bus/brcmstb_gisb.c
3455 F:      drivers/pci/controller/pcie-brcmstb.c
3456 N:      brcmstb
3457
3458 BROADCOM BDC DRIVER
3459 M:      Al Cooper <[email protected]>
3460 L:      [email protected]
3461 L:      [email protected]
3462 S:      Maintained
3463 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3464 F:      drivers/usb/gadget/udc/bdc/
3465
3466 BROADCOM BMIPS CPUFREQ DRIVER
3467 M:      Markus Mayer <[email protected]>
3468 M:      [email protected]
3469 L:      [email protected]
3470 S:      Maintained
3471 F:      drivers/cpufreq/bmips-cpufreq.c
3472
3473 BROADCOM BMIPS MIPS ARCHITECTURE
3474 M:      Florian Fainelli <[email protected]>
3475 L:      [email protected]
3476 L:      [email protected]
3477 S:      Maintained
3478 T:      git git://github.com/broadcom/stblinux.git
3479 F:      arch/mips/bmips/*
3480 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3481 F:      arch/mips/include/asm/mach-bmips/*
3482 F:      arch/mips/kernel/*bmips*
3483 F:      drivers/irqchip/irq-bcm63*
3484 F:      drivers/irqchip/irq-bcm7*
3485 F:      drivers/irqchip/irq-brcmstb*
3486 F:      include/linux/bcm963xx_nvram.h
3487 F:      include/linux/bcm963xx_tag.h
3488
3489 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3490 M:      Rasesh Mody <[email protected]>
3491 M:      [email protected]
3492 L:      [email protected]
3493 S:      Supported
3494 F:      drivers/net/ethernet/broadcom/bnx2.*
3495 F:      drivers/net/ethernet/broadcom/bnx2_*
3496
3497 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3498 M:      Saurav Kashyap <[email protected]>
3499 M:      Javed Hasan <[email protected]>
3500 M:      [email protected]
3501 L:      [email protected]
3502 S:      Supported
3503 F:      drivers/scsi/bnx2fc/
3504
3505 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3506 M:      Nilesh Javali <[email protected]>
3507 M:      Manish Rangankar <[email protected]>
3508 M:      [email protected]
3509 L:      [email protected]
3510 S:      Supported
3511 F:      drivers/scsi/bnx2i/
3512
3513 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3514 M:      Ariel Elior <[email protected]>
3515 M:      Sudarsana Kalluru <[email protected]>
3516 M:      [email protected]
3517 L:      [email protected]
3518 S:      Supported
3519 F:      drivers/net/ethernet/broadcom/bnx2x/
3520
3521 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3522 M:      Michael Chan <[email protected]>
3523 L:      [email protected]
3524 S:      Supported
3525 F:      drivers/net/ethernet/broadcom/bnxt/
3526
3527 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3528 M:      Arend van Spriel <[email protected]>
3529 M:      Franky Lin <[email protected]>
3530 M:      Hante Meuleman <[email protected]>
3531 M:      Chi-Hsien Lin <[email protected]>
3532 M:      Wright Feng <[email protected]>
3533 L:      [email protected]
3534 L:      [email protected]
3535 L:      [email protected]
3536 S:      Supported
3537 F:      drivers/net/wireless/broadcom/brcm80211/
3538
3539 BROADCOM BRCMSTB GPIO DRIVER
3540 M:      Gregory Fong <[email protected]>
3541 L:      [email protected]
3542 S:      Supported
3543 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3544 F:      drivers/gpio/gpio-brcmstb.c
3545
3546 BROADCOM BRCMSTB I2C DRIVER
3547 M:      Kamal Dasu <[email protected]>
3548 L:      [email protected]
3549 L:      [email protected]
3550 S:      Supported
3551 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3552 F:      drivers/i2c/busses/i2c-brcmstb.c
3553
3554 BROADCOM BRCMSTB USB EHCI DRIVER
3555 M:      Al Cooper <[email protected]>
3556 L:      [email protected]
3557 L:      [email protected]
3558 S:      Maintained
3559 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3560 F:      drivers/usb/host/ehci-brcm.*
3561
3562 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3563 M:      Al Cooper <[email protected]>
3564 L:      [email protected]
3565 L:      [email protected]
3566 S:      Maintained
3567 F:      drivers/phy/broadcom/phy-brcm-usb*
3568
3569 BROADCOM ETHERNET PHY DRIVERS
3570 M:      Florian Fainelli <[email protected]>
3571 L:      [email protected]
3572 L:      [email protected]
3573 S:      Supported
3574 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3575 F:      drivers/net/phy/bcm*.[ch]
3576 F:      drivers/net/phy/broadcom.c
3577 F:      include/linux/brcmphy.h
3578
3579 BROADCOM GENET ETHERNET DRIVER
3580 M:      Doug Berger <[email protected]>
3581 M:      Florian Fainelli <[email protected]>
3582 L:      [email protected]
3583 L:      [email protected]
3584 S:      Supported
3585 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3586 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3587 F:      drivers/net/ethernet/broadcom/genet/
3588 F:      drivers/net/mdio/mdio-bcm-unimac.c
3589 F:      include/linux/platform_data/bcmgenet.h
3590 F:      include/linux/platform_data/mdio-bcm-unimac.h
3591
3592 BROADCOM IPROC ARM ARCHITECTURE
3593 M:      Ray Jui <[email protected]>
3594 M:      Scott Branden <[email protected]>
3595 M:      [email protected]
3596 L:      [email protected] (moderated for non-subscribers)
3597 S:      Maintained
3598 T:      git git://github.com/broadcom/cygnus-linux.git
3599 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3600 F:      arch/arm64/boot/dts/broadcom/stingray/*
3601 F:      drivers/clk/bcm/clk-ns*
3602 F:      drivers/clk/bcm/clk-sr*
3603 F:      drivers/pinctrl/bcm/pinctrl-ns*
3604 F:      include/dt-bindings/clock/bcm-sr*
3605 N:      iproc
3606 N:      cygnus
3607 N:      bcm[-_]nsp
3608 N:      bcm9113*
3609 N:      bcm9583*
3610 N:      bcm9585*
3611 N:      bcm9586*
3612 N:      bcm988312
3613 N:      bcm113*
3614 N:      bcm583*
3615 N:      bcm585*
3616 N:      bcm586*
3617 N:      bcm88312
3618 N:      hr2
3619 N:      stingray
3620
3621 BROADCOM KONA GPIO DRIVER
3622 M:      Ray Jui <[email protected]>
3623 L:      [email protected]
3624 S:      Supported
3625 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3626 F:      drivers/gpio/gpio-bcm-kona.c
3627
3628 BROADCOM NETXTREME-E ROCE DRIVER
3629 M:      Selvin Xavier <[email protected]>
3630 M:      Devesh Sharma <[email protected]>
3631 M:      Somnath Kotur <[email protected]>
3632 M:      Sriharsha Basavapatna <[email protected]>
3633 M:      Naresh Kumar PBS <[email protected]>
3634 L:      [email protected]
3635 S:      Supported
3636 W:      http://www.broadcom.com
3637 F:      drivers/infiniband/hw/bnxt_re/
3638 F:      include/uapi/rdma/bnxt_re-abi.h
3639
3640 BROADCOM NVRAM DRIVER
3641 M:      Rafał Miłecki <[email protected]>
3642 L:      [email protected]
3643 S:      Maintained
3644 F:      drivers/firmware/broadcom/*
3645
3646 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3647 M:      Rafał Miłecki <[email protected]>
3648 L:      [email protected]
3649 S:      Maintained
3650 F:      drivers/bcma/
3651 F:      include/linux/bcma/
3652
3653 BROADCOM SPI DRIVER
3654 M:      Kamal Dasu <[email protected]>
3655 M:      [email protected]
3656 S:      Maintained
3657 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3658 F:      drivers/spi/spi-bcm-qspi.*
3659 F:      drivers/spi/spi-brcmstb-qspi.c
3660 F:      drivers/spi/spi-iproc-qspi.c
3661
3662 BROADCOM STB AVS CPUFREQ DRIVER
3663 M:      Markus Mayer <[email protected]>
3664 M:      [email protected]
3665 L:      [email protected]
3666 S:      Maintained
3667 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3668 F:      drivers/cpufreq/brcmstb*
3669
3670 BROADCOM STB AVS TMON DRIVER
3671 M:      Markus Mayer <[email protected]>
3672 M:      [email protected]
3673 L:      [email protected]
3674 S:      Maintained
3675 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3676 F:      drivers/thermal/broadcom/brcmstb*
3677
3678 BROADCOM STB DPFE DRIVER
3679 M:      Markus Mayer <[email protected]>
3680 M:      [email protected]
3681 L:      [email protected] (moderated for non-subscribers)
3682 S:      Maintained
3683 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3684 F:      drivers/memory/brcmstb_dpfe.c
3685
3686 BROADCOM STB NAND FLASH DRIVER
3687 M:      Brian Norris <[email protected]>
3688 M:      Kamal Dasu <[email protected]>
3689 L:      [email protected]
3690 L:      [email protected]
3691 S:      Maintained
3692 F:      drivers/mtd/nand/raw/brcmnand/
3693
3694 BROADCOM SYSTEMPORT ETHERNET DRIVER
3695 M:      Florian Fainelli <[email protected]>
3696 L:      [email protected]
3697 L:      [email protected]
3698 S:      Supported
3699 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3700
3701 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3702 M:      Siva Reddy Kallam <[email protected]>
3703 M:      Prashant Sreedharan <[email protected]>
3704 M:      Michael Chan <[email protected]>
3705 L:      [email protected]
3706 S:      Supported
3707 F:      drivers/net/ethernet/broadcom/tg3.*
3708
3709 BROCADE BFA FC SCSI DRIVER
3710 M:      Anil Gurumurthy <[email protected]>
3711 M:      Sudarsana Kalluru <[email protected]>
3712 L:      [email protected]
3713 S:      Supported
3714 F:      drivers/scsi/bfa/
3715
3716 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3717 M:      Rasesh Mody <[email protected]>
3718 M:      Sudarsana Kalluru <[email protected]>
3719 M:      [email protected]
3720 L:      [email protected]
3721 S:      Supported
3722 F:      drivers/net/ethernet/brocade/bna/
3723
3724 BSG (block layer generic sg v4 driver)
3725 M:      FUJITA Tomonori <[email protected]>
3726 L:      [email protected]
3727 S:      Supported
3728 F:      block/bsg.c
3729 F:      include/linux/bsg.h
3730 F:      include/uapi/linux/bsg.h
3731
3732 BT87X AUDIO DRIVER
3733 M:      Clemens Ladisch <[email protected]>
3734 L:      [email protected] (moderated for non-subscribers)
3735 S:      Maintained
3736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3737 F:      Documentation/sound/cards/bt87x.rst
3738 F:      sound/pci/bt87x.c
3739
3740 BT8XXGPIO DRIVER
3741 M:      Michael Buesch <[email protected]>
3742 S:      Maintained
3743 W:      http://bu3sch.de/btgpio.php
3744 F:      drivers/gpio/gpio-bt8xx.c
3745
3746 BTRFS FILE SYSTEM
3747 M:      Chris Mason <[email protected]>
3748 M:      Josef Bacik <[email protected]>
3749 M:      David Sterba <[email protected]>
3750 L:      [email protected]
3751 S:      Maintained
3752 W:      http://btrfs.wiki.kernel.org/
3753 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3755 F:      Documentation/filesystems/btrfs.rst
3756 F:      fs/btrfs/
3757 F:      include/linux/btrfs*
3758 F:      include/uapi/linux/btrfs*
3759
3760 BTTV VIDEO4LINUX DRIVER
3761 M:      Mauro Carvalho Chehab <[email protected]>
3762 L:      [email protected]
3763 S:      Odd fixes
3764 W:      https://linuxtv.org
3765 T:      git git://linuxtv.org/media_tree.git
3766 F:      Documentation/driver-api/media/drivers/bttv*
3767 F:      drivers/media/pci/bt8xx/bttv*
3768
3769 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3770 M:      Chanwoo Choi <[email protected]>
3771 L:      [email protected]
3772 L:      [email protected]
3773 S:      Maintained
3774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3775 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3776 F:      drivers/devfreq/exynos-bus.c
3777
3778 BUSLOGIC SCSI DRIVER
3779 M:      Khalid Aziz <[email protected]>
3780 L:      [email protected]
3781 S:      Maintained
3782 F:      drivers/scsi/BusLogic.*
3783 F:      drivers/scsi/FlashPoint.*
3784
3785 C-MEDIA CMI8788 DRIVER
3786 M:      Clemens Ladisch <[email protected]>
3787 L:      [email protected] (moderated for non-subscribers)
3788 S:      Maintained
3789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3790 F:      sound/pci/oxygen/
3791
3792 C-SKY ARCHITECTURE
3793 M:      Guo Ren <[email protected]>
3794 L:      [email protected]
3795 S:      Supported
3796 T:      git https://github.com/c-sky/csky-linux.git
3797 F:      Documentation/devicetree/bindings/csky/
3798 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3799 F:      Documentation/devicetree/bindings/timer/csky,*
3800 F:      arch/csky/
3801 F:      drivers/clocksource/timer-gx6605s.c
3802 F:      drivers/clocksource/timer-mp-csky.c
3803 F:      drivers/irqchip/irq-csky-*
3804 N:      csky
3805 K:      csky
3806
3807 C6X ARCHITECTURE
3808 M:      Mark Salter <[email protected]>
3809 M:      Aurelien Jacquiot <[email protected]>
3810 L:      [email protected]
3811 S:      Maintained
3812 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3813 F:      arch/c6x/
3814
3815 CA8210 IEEE-802.15.4 RADIO DRIVER
3816 M:      Harry Morris <[email protected]>
3817 L:      [email protected]
3818 S:      Maintained
3819 W:      https://github.com/Cascoda/ca8210-linux.git
3820 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3821 F:      drivers/net/ieee802154/ca8210.c
3822
3823 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3824 M:      David Howells <[email protected]>
3825 L:      [email protected] (moderated for non-subscribers)
3826 S:      Supported
3827 F:      Documentation/filesystems/caching/cachefiles.rst
3828 F:      fs/cachefiles/
3829
3830 CADENCE MIPI-CSI2 BRIDGES
3831 M:      Maxime Ripard <[email protected]>
3832 L:      [email protected]
3833 S:      Maintained
3834 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3835 F:      drivers/media/platform/cadence/cdns-csi2*
3836
3837 CADENCE NAND DRIVER
3838 L:      [email protected]
3839 S:      Orphan
3840 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3841 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3842
3843 CADENCE USB3 DRD IP DRIVER
3844 M:      Peter Chen <[email protected]>
3845 M:      Pawel Laszczak <[email protected]>
3846 M:      Roger Quadros <[email protected]>
3847 L:      [email protected]
3848 S:      Maintained
3849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3850 F:      Documentation/devicetree/bindings/usb/cdns-usb3.txt
3851 F:      drivers/usb/cdns3/
3852
3853 CADET FM/AM RADIO RECEIVER DRIVER
3854 M:      Hans Verkuil <[email protected]>
3855 L:      [email protected]
3856 S:      Maintained
3857 W:      https://linuxtv.org
3858 T:      git git://linuxtv.org/media_tree.git
3859 F:      drivers/media/radio/radio-cadet*
3860
3861 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3862 M:      Jonathan Corbet <[email protected]>
3863 L:      [email protected]
3864 S:      Maintained
3865 T:      git git://linuxtv.org/media_tree.git
3866 F:      Documentation/admin-guide/media/cafe_ccic*
3867 F:      drivers/media/platform/marvell-ccic/
3868
3869 CAIF NETWORK LAYER
3870 L:      [email protected]
3871 S:      Orphan
3872 F:      Documentation/networking/caif/
3873 F:      drivers/net/caif/
3874 F:      include/net/caif/
3875 F:      include/uapi/linux/caif/
3876 F:      net/caif/
3877
3878 CAKE QDISC
3879 M:      Toke Høiland-Jørgensen <[email protected]>
3880 L:      [email protected] (moderated for non-subscribers)
3881 S:      Maintained
3882 F:      net/sched/sch_cake.c
3883
3884 CAN NETWORK DRIVERS
3885 M:      Wolfgang Grandegger <[email protected]>
3886 M:      Marc Kleine-Budde <[email protected]>
3887 L:      [email protected]
3888 S:      Maintained
3889 W:      https://github.com/linux-can
3890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3892 F:      Documentation/devicetree/bindings/net/can/
3893 F:      drivers/net/can/
3894 F:      include/linux/can/dev.h
3895 F:      include/linux/can/led.h
3896 F:      include/linux/can/platform/
3897 F:      include/linux/can/rx-offload.h
3898 F:      include/uapi/linux/can/error.h
3899 F:      include/uapi/linux/can/netlink.h
3900 F:      include/uapi/linux/can/vxcan.h
3901
3902 CAN NETWORK LAYER
3903 M:      Oliver Hartkopp <[email protected]>
3904 M:      Marc Kleine-Budde <[email protected]>
3905 L:      [email protected]
3906 S:      Maintained
3907 W:      https://github.com/linux-can
3908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3910 F:      Documentation/networking/can.rst
3911 F:      include/linux/can/core.h
3912 F:      include/linux/can/skb.h
3913 F:      include/net/netns/can.h
3914 F:      include/uapi/linux/can.h
3915 F:      include/uapi/linux/can/bcm.h
3916 F:      include/uapi/linux/can/gw.h
3917 F:      include/uapi/linux/can/raw.h
3918 F:      net/can/
3919
3920 CAN-J1939 NETWORK LAYER
3921 M:      Robin van der Gracht <[email protected]>
3922 M:      Oleksij Rempel <[email protected]>
3923 R:      Pengutronix Kernel Team <[email protected]>
3924 L:      [email protected]
3925 S:      Maintained
3926 F:      Documentation/networking/j1939.rst
3927 F:      include/uapi/linux/can/j1939.h
3928 F:      net/can/j1939/
3929
3930 CAPABILITIES
3931 M:      Serge Hallyn <[email protected]>
3932 L:      [email protected]
3933 S:      Supported
3934 F:      include/linux/capability.h
3935 F:      include/uapi/linux/capability.h
3936 F:      kernel/capability.c
3937 F:      security/commoncap.c
3938
3939 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3940 M:      Kevin Tsai <[email protected]>
3941 S:      Maintained
3942 F:      drivers/iio/light/cm*
3943
3944 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3945 M:      Christian Lamparter <[email protected]>
3946 L:      [email protected]
3947 S:      Maintained
3948 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3949 F:      drivers/net/wireless/ath/carl9170/
3950
3951 CAVIUM I2C DRIVER
3952 M:      Robert Richter <[email protected]>
3953 S:      Odd Fixes
3954 W:      http://www.marvell.com
3955 F:      drivers/i2c/busses/i2c-octeon*
3956 F:      drivers/i2c/busses/i2c-thunderx*
3957
3958 CAVIUM LIQUIDIO NETWORK DRIVER
3959 M:      Derek Chickles <[email protected]>
3960 M:      Satanand Burla <[email protected]>
3961 M:      Felix Manlunas <[email protected]>
3962 L:      [email protected]
3963 S:      Supported
3964 W:      http://www.marvell.com
3965 F:      drivers/net/ethernet/cavium/liquidio/
3966
3967 CAVIUM MMC DRIVER
3968 M:      Robert Richter <[email protected]>
3969 S:      Odd Fixes
3970 W:      http://www.marvell.com
3971 F:      drivers/mmc/host/cavium*
3972
3973 CAVIUM OCTEON-TX CRYPTO DRIVER
3974 M:      George Cherian <[email protected]>
3975 L:      [email protected]
3976 S:      Supported
3977 W:      http://www.marvell.com
3978 F:      drivers/crypto/cavium/cpt/
3979
3980 CAVIUM THUNDERX2 ARM64 SOC
3981 M:      Robert Richter <[email protected]>
3982 L:      [email protected] (moderated for non-subscribers)
3983 S:      Odd Fixes
3984 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3985 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3986
3987 CC2520 IEEE-802.15.4 RADIO DRIVER
3988 M:      Varka Bhadram <[email protected]>
3989 L:      [email protected]
3990 S:      Maintained
3991 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3992 F:      drivers/net/ieee802154/cc2520.c
3993 F:      include/linux/spi/cc2520.h
3994
3995 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3996 M:      Gilad Ben-Yossef <[email protected]>
3997 L:      [email protected]
3998 S:      Supported
3999 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4000 F:      drivers/crypto/ccree/
4001
4002 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4003 M:      Hadar Gat <[email protected]>
4004 L:      [email protected]
4005 S:      Supported
4006 F:      drivers/char/hw_random/cctrng.c
4007 F:      drivers/char/hw_random/cctrng.h
4008 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4009 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4010
4011 CEC FRAMEWORK
4012 M:      Hans Verkuil <[email protected]>
4013 L:      [email protected]
4014 S:      Supported
4015 W:      http://linuxtv.org
4016 T:      git git://linuxtv.org/media_tree.git
4017 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4018 F:      Documentation/devicetree/bindings/media/cec.txt
4019 F:      Documentation/driver-api/media/cec-core.rst
4020 F:      Documentation/userspace-api/media/cec
4021 F:      drivers/media/cec/
4022 F:      drivers/media/rc/keymaps/rc-cec.c
4023 F:      include/media/cec-notifier.h
4024 F:      include/media/cec.h
4025 F:      include/uapi/linux/cec-funcs.h
4026 F:      include/uapi/linux/cec.h
4027
4028 CEC GPIO DRIVER
4029 M:      Hans Verkuil <[email protected]>
4030 L:      [email protected]
4031 S:      Supported
4032 W:      http://linuxtv.org
4033 T:      git git://linuxtv.org/media_tree.git
4034 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4035 F:      drivers/media/cec/platform/cec-gpio/
4036
4037 CELL BROADBAND ENGINE ARCHITECTURE
4038 M:      Arnd Bergmann <[email protected]>
4039 L:      [email protected]
4040 S:      Supported
4041 W:      http://www.ibm.com/developerworks/power/cell/
4042 F:      arch/powerpc/include/asm/cell*.h
4043 F:      arch/powerpc/include/asm/spu*.h
4044 F:      arch/powerpc/include/uapi/asm/spu*.h
4045 F:      arch/powerpc/oprofile/*cell*
4046 F:      arch/powerpc/platforms/cell/
4047
4048 CELLWISE CW2015 BATTERY DRIVER
4049 M:      Tobias Schrammm <[email protected]>
4050 S:      Maintained
4051 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4052 F:      drivers/power/supply/cw2015_battery.c
4053
4054 CEPH COMMON CODE (LIBCEPH)
4055 M:      Ilya Dryomov <[email protected]>
4056 M:      Jeff Layton <[email protected]>
4057 L:      [email protected]
4058 S:      Supported
4059 W:      http://ceph.com/
4060 T:      git git://github.com/ceph/ceph-client.git
4061 F:      include/linux/ceph/
4062 F:      include/linux/crush/
4063 F:      net/ceph/
4064
4065 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4066 M:      Jeff Layton <[email protected]>
4067 M:      Ilya Dryomov <[email protected]>
4068 L:      [email protected]
4069 S:      Supported
4070 W:      http://ceph.com/
4071 T:      git git://github.com/ceph/ceph-client.git
4072 F:      Documentation/filesystems/ceph.rst
4073 F:      fs/ceph/
4074
4075 CERTIFICATE HANDLING
4076 M:      David Howells <[email protected]>
4077 M:      David Woodhouse <[email protected]>
4078 L:      [email protected]
4079 S:      Maintained
4080 F:      Documentation/admin-guide/module-signing.rst
4081 F:      certs/
4082 F:      scripts/extract-cert.c
4083 F:      scripts/sign-file.c
4084
4085 CFAG12864B LCD DRIVER
4086 M:      Miguel Ojeda Sandonis <[email protected]>
4087 S:      Maintained
4088 F:      drivers/auxdisplay/cfag12864b.c
4089 F:      include/linux/cfag12864b.h
4090
4091 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4092 M:      Miguel Ojeda Sandonis <[email protected]>
4093 S:      Maintained
4094 F:      drivers/auxdisplay/cfag12864bfb.c
4095 F:      include/linux/cfag12864b.h
4096
4097 CHAR and MISC DRIVERS
4098 M:      Arnd Bergmann <[email protected]>
4099 M:      Greg Kroah-Hartman <[email protected]>
4100 S:      Supported
4101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4102 F:      drivers/char/
4103 F:      drivers/misc/
4104 F:      include/linux/miscdevice.h
4105 X:      drivers/char/agp/
4106 X:      drivers/char/hw_random/
4107 X:      drivers/char/ipmi/
4108 X:      drivers/char/random.c
4109 X:      drivers/char/tpm/
4110
4111 CHECKPATCH
4112 M:      Andy Whitcroft <[email protected]>
4113 M:      Joe Perches <[email protected]>
4114 S:      Maintained
4115 F:      scripts/checkpatch.pl
4116
4117 CHINESE DOCUMENTATION
4118 M:      Harry Wei <[email protected]>
4119 M:      Alex Shi <[email protected]>
4120 L:      [email protected] (subscribers-only)
4121 S:      Maintained
4122 F:      Documentation/translations/zh_CN/
4123
4124 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4125 M:      Peter Chen <[email protected]>
4126 L:      [email protected]
4127 S:      Maintained
4128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4129 F:      drivers/usb/chipidea/
4130
4131 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4132 M:      Hans de Goede <[email protected]>
4133 L:      [email protected]
4134 S:      Maintained
4135 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4136 F:      drivers/input/touchscreen/chipone_icn8318.c
4137
4138 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4139 M:      Hans de Goede <[email protected]>
4140 L:      [email protected]
4141 S:      Maintained
4142 F:      drivers/input/touchscreen/chipone_icn8505.c
4143
4144 CHROME HARDWARE PLATFORM SUPPORT
4145 M:      Benson Leung <[email protected]>
4146 M:      Enric Balletbo i Serra <[email protected]>
4147 S:      Maintained
4148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4149 F:      drivers/platform/chrome/
4150
4151 CHROMEOS EC CODEC DRIVER
4152 M:      Cheng-Yi Chiang <[email protected]>
4153 R:      Enric Balletbo i Serra <[email protected]>
4154 R:      Guenter Roeck <[email protected]>
4155 S:      Maintained
4156 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4157 F:      sound/soc/codecs/cros_ec_codec.*
4158
4159 CHROMEOS EC SUBDRIVERS
4160 M:      Benson Leung <[email protected]>
4161 M:      Enric Balletbo i Serra <[email protected]>
4162 R:      Guenter Roeck <[email protected]>
4163 S:      Maintained
4164 F:      drivers/power/supply/cros_usbpd-charger.c
4165 N:      cros_ec
4166 N:      cros-ec
4167
4168 CHRONTEL CH7322 CEC DRIVER
4169 M:      Jeff Chase <[email protected]>
4170 L:      [email protected]
4171 S:      Maintained
4172 T:      git git://linuxtv.org/media_tree.git
4173 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4174 F:      drivers/media/cec/i2c/ch7322.c
4175
4176 CIRRUS LOGIC AUDIO CODEC DRIVERS
4177 M:      James Schulman <[email protected]>
4178 M:      David Rhodes <[email protected]>
4179 L:      [email protected] (moderated for non-subscribers)
4180 L:      [email protected]
4181 S:      Maintained
4182 F:      sound/soc/codecs/cs*
4183
4184 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4185 M:      Hartley Sweeten <[email protected]>
4186 L:      [email protected]
4187 S:      Maintained
4188 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4189
4190 CIRRUS LOGIC LOCHNAGAR DRIVER
4191 M:      Charles Keepax <[email protected]>
4192 M:      Richard Fitzgerald <[email protected]>
4193 L:      [email protected]
4194 S:      Supported
4195 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4196 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4197 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4198 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4199 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4200 F:      Documentation/hwmon/lochnagar.rst
4201 F:      drivers/clk/clk-lochnagar.c
4202 F:      drivers/hwmon/lochnagar-hwmon.c
4203 F:      drivers/mfd/lochnagar-i2c.c
4204 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4205 F:      drivers/regulator/lochnagar-regulator.c
4206 F:      include/dt-bindings/clk/lochnagar.h
4207 F:      include/dt-bindings/pinctrl/lochnagar.h
4208 F:      include/linux/mfd/lochnagar*
4209 F:      sound/soc/codecs/lochnagar-sc.c
4210
4211 CIRRUS LOGIC MADERA CODEC DRIVERS
4212 M:      Charles Keepax <[email protected]>
4213 M:      Richard Fitzgerald <[email protected]>
4214 L:      [email protected] (moderated for non-subscribers)
4215 L:      [email protected]
4216 S:      Supported
4217 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4218 T:      git https://github.com/CirrusLogic/linux-drivers.git
4219 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4220 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4221 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4222 F:      drivers/gpio/gpio-madera*
4223 F:      drivers/irqchip/irq-madera*
4224 F:      drivers/mfd/cs47l*
4225 F:      drivers/mfd/madera*
4226 F:      drivers/pinctrl/cirrus/*
4227 F:      include/dt-bindings/sound/madera*
4228 F:      include/linux/irqchip/irq-madera*
4229 F:      include/linux/mfd/madera/*
4230 F:      include/sound/madera*
4231 F:      sound/soc/codecs/cs47l*
4232 F:      sound/soc/codecs/madera*
4233
4234 CISCO FCOE HBA DRIVER
4235 M:      Satish Kharat <[email protected]>
4236 M:      Sesidhar Baddela <[email protected]>
4237 M:      Karan Tilak Kumar <[email protected]>
4238 L:      [email protected]
4239 S:      Supported
4240 F:      drivers/scsi/fnic/
4241
4242 CISCO SCSI HBA DRIVER
4243 M:      Karan Tilak Kumar <[email protected]>
4244 M:      Sesidhar Baddela <[email protected]>
4245 L:      [email protected]
4246 S:      Supported
4247 F:      drivers/scsi/snic/
4248
4249 CISCO VIC ETHERNET NIC DRIVER
4250 M:      Christian Benvenuti <[email protected]>
4251 M:      Govindarajulu Varadarajan <[email protected]>
4252 S:      Supported
4253 F:      drivers/net/ethernet/cisco/enic/
4254
4255 CISCO VIC LOW LATENCY NIC DRIVER
4256 M:      Christian Benvenuti <[email protected]>
4257 M:      Nelson Escobar <[email protected]>
4258 M:      Parvi Kaustubhi <[email protected]>
4259 S:      Supported
4260 F:      drivers/infiniband/hw/usnic/
4261
4262 CLANG-FORMAT FILE
4263 M:      Miguel Ojeda <[email protected]>
4264 S:      Maintained
4265 F:      .clang-format
4266
4267 CLANG/LLVM BUILD SUPPORT
4268 M:      Nathan Chancellor <[email protected]>
4269 M:      Nick Desaulniers <[email protected]>
4270 L:      [email protected]
4271 S:      Supported
4272 W:      https://clangbuiltlinux.github.io/
4273 B:      https://github.com/ClangBuiltLinux/linux/issues
4274 C:      irc://chat.freenode.net/clangbuiltlinux
4275 F:      Documentation/kbuild/llvm.rst
4276 K:      \b(?i:clang|llvm)\b
4277
4278 CLEANCACHE API
4279 M:      Konrad Rzeszutek Wilk <[email protected]>
4280 L:      [email protected]
4281 S:      Maintained
4282 F:      include/linux/cleancache.h
4283 F:      mm/cleancache.c
4284
4285 CLK API
4286 M:      Russell King <[email protected]>
4287 L:      [email protected]
4288 S:      Maintained
4289 F:      include/linux/clk.h
4290
4291 CLOCKSOURCE, CLOCKEVENT DRIVERS
4292 M:      Daniel Lezcano <[email protected]>
4293 M:      Thomas Gleixner <[email protected]>
4294 L:      [email protected]
4295 S:      Supported
4296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4297 F:      Documentation/devicetree/bindings/timer/
4298 F:      drivers/clocksource/
4299
4300 CMPC ACPI DRIVER
4301 M:      Thadeu Lima de Souza Cascardo <[email protected]>
4302 M:      Daniel Oliveira Nascimento <[email protected]>
4303 L:      [email protected]
4304 S:      Supported
4305 F:      drivers/platform/x86/classmate-laptop.c
4306
4307 COBALT MEDIA DRIVER
4308 M:      Hans Verkuil <[email protected]>
4309 L:      [email protected]
4310 S:      Supported
4311 W:      https://linuxtv.org
4312 T:      git git://linuxtv.org/media_tree.git
4313 F:      drivers/media/pci/cobalt/
4314
4315 COCCINELLE/Semantic Patches (SmPL)
4316 M:      Julia Lawall <[email protected]>
4317 M:      Gilles Muller <[email protected]>
4318 M:      Nicolas Palix <[email protected]>
4319 M:      Michal Marek <[email protected]>
4320 L:      [email protected] (moderated for non-subscribers)
4321 S:      Supported
4322 W:      http://coccinelle.lip6.fr/
4323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4324 F:      Documentation/dev-tools/coccinelle.rst
4325 F:      scripts/coccicheck
4326 F:      scripts/coccinelle/
4327
4328 CODA FILE SYSTEM
4329 M:      Jan Harkes <[email protected]>
4330 M:      [email protected]
4331 L:      [email protected]
4332 S:      Maintained
4333 W:      http://www.coda.cs.cmu.edu/
4334 F:      Documentation/filesystems/coda.rst
4335 F:      fs/coda/
4336 F:      include/linux/coda*.h
4337 F:      include/uapi/linux/coda*.h
4338
4339 CODA V4L2 MEM2MEM DRIVER
4340 M:      Philipp Zabel <[email protected]>
4341 L:      [email protected]
4342 S:      Maintained
4343 F:      Documentation/devicetree/bindings/media/coda.txt
4344 F:      drivers/media/platform/coda/
4345
4346 CODE OF CONDUCT
4347 M:      Greg Kroah-Hartman <[email protected]>
4348 S:      Supported
4349 F:      Documentation/process/code-of-conduct-interpretation.rst
4350 F:      Documentation/process/code-of-conduct.rst
4351
4352 COMMON CLK FRAMEWORK
4353 M:      Michael Turquette <[email protected]>
4354 M:      Stephen Boyd <[email protected]>
4355 L:      [email protected]
4356 S:      Maintained
4357 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4359 F:      Documentation/devicetree/bindings/clock/
4360 F:      drivers/clk/
4361 F:      include/linux/clk-pr*
4362 F:      include/linux/clk/
4363 F:      include/linux/of_clk.h
4364 X:      drivers/clk/clkdev.c
4365
4366 COMMON INTERNET FILE SYSTEM (CIFS)
4367 M:      Steve French <[email protected]>
4368 L:      [email protected]
4369 L:      [email protected] (moderated for non-subscribers)
4370 S:      Supported
4371 W:      http://linux-cifs.samba.org/
4372 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4373 F:      Documentation/admin-guide/cifs/
4374 F:      fs/cifs/
4375
4376 COMPACTPCI HOTPLUG CORE
4377 M:      Scott Murray <[email protected]>
4378 L:      [email protected]
4379 S:      Maintained
4380 F:      drivers/pci/hotplug/cpci_hotplug*
4381
4382 COMPACTPCI HOTPLUG GENERIC DRIVER
4383 M:      Scott Murray <[email protected]>
4384 L:      [email protected]
4385 S:      Maintained
4386 F:      drivers/pci/hotplug/cpcihp_generic.c
4387
4388 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4389 M:      Scott Murray <[email protected]>
4390 L:      [email protected]
4391 S:      Maintained
4392 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4393
4394 COMPAL LAPTOP SUPPORT
4395 M:      Cezary Jackiewicz <[email protected]>
4396 L:      [email protected]
4397 S:      Maintained
4398 F:      drivers/platform/x86/compal-laptop.c
4399
4400 COMPILER ATTRIBUTES
4401 M:      Miguel Ojeda <[email protected]>
4402 S:      Maintained
4403 F:      include/linux/compiler_attributes.h
4404
4405 CONEXANT ACCESSRUNNER USB DRIVER
4406 L:      [email protected]
4407 S:      Orphan
4408 W:      http://accessrunner.sourceforge.net/
4409 F:      drivers/usb/atm/cxacru.c
4410
4411 CONFIGFS
4412 M:      Joel Becker <[email protected]>
4413 M:      Christoph Hellwig <[email protected]>
4414 S:      Supported
4415 T:      git git://git.infradead.org/users/hch/configfs.git
4416 F:      fs/configfs/
4417 F:      include/linux/configfs.h
4418 F:      samples/configfs/
4419
4420 CONSOLE SUBSYSTEM
4421 M:      Greg Kroah-Hartman <[email protected]>
4422 S:      Supported
4423 F:      drivers/video/console/
4424 F:      include/linux/console*
4425
4426 CONTROL GROUP (CGROUP)
4427 M:      Tejun Heo <[email protected]>
4428 M:      Li Zefan <[email protected]>
4429 M:      Johannes Weiner <[email protected]>
4430 L:      [email protected]
4431 S:      Maintained
4432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4433 F:      Documentation/admin-guide/cgroup-v1/
4434 F:      Documentation/admin-guide/cgroup-v2.rst
4435 F:      include/linux/cgroup*
4436 F:      kernel/cgroup/
4437
4438 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4439 M:      Tejun Heo <[email protected]>
4440 M:      Jens Axboe <[email protected]>
4441 L:      [email protected]
4442 L:      [email protected]
4443 T:      git git://git.kernel.dk/linux-block
4444 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4445 F:      block/bfq-cgroup.c
4446 F:      block/blk-cgroup.c
4447 F:      block/blk-iolatency.c
4448 F:      block/blk-throttle.c
4449 F:      include/linux/blk-cgroup.h
4450
4451 CONTROL GROUP - CPUSET
4452 M:      Li Zefan <[email protected]>
4453 L:      [email protected]
4454 S:      Maintained
4455 W:      http://www.bullopensource.org/cpuset/
4456 W:      http://oss.sgi.com/projects/cpusets/
4457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4458 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4459 F:      include/linux/cpuset.h
4460 F:      kernel/cgroup/cpuset.c
4461
4462 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4463 M:      Johannes Weiner <[email protected]>
4464 M:      Michal Hocko <[email protected]>
4465 M:      Vladimir Davydov <[email protected]>
4466 L:      [email protected]
4467 L:      [email protected]
4468 S:      Maintained
4469 F:      mm/memcontrol.c
4470 F:      mm/swap_cgroup.c
4471
4472 CORETEMP HARDWARE MONITORING DRIVER
4473 M:      Fenghua Yu <[email protected]>
4474 L:      [email protected]
4475 S:      Maintained
4476 F:      Documentation/hwmon/coretemp.rst
4477 F:      drivers/hwmon/coretemp.c
4478
4479 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4480 M:      Marius Zachmann <[email protected]>
4481 L:      [email protected]
4482 S:      Maintained
4483 F:      drivers/hwmon/corsair-cpro.c
4484
4485 COSA/SRP SYNC SERIAL DRIVER
4486 M:      Jan "Yenya" Kasprzak <[email protected]>
4487 S:      Maintained
4488 W:      http://www.fi.muni.cz/~kas/cosa/
4489 F:      drivers/net/wan/cosa*
4490
4491 COUNTER SUBSYSTEM
4492 M:      William Breathitt Gray <[email protected]>
4493 L:      [email protected]
4494 S:      Maintained
4495 F:      Documentation/ABI/testing/sysfs-bus-counter*
4496 F:      Documentation/driver-api/generic-counter.rst
4497 F:      drivers/counter/
4498 F:      include/linux/counter.h
4499 F:      include/linux/counter_enum.h
4500
4501 CPMAC ETHERNET DRIVER
4502 M:      Florian Fainelli <[email protected]>
4503 L:      [email protected]
4504 S:      Maintained
4505 F:      drivers/net/ethernet/ti/cpmac.c
4506
4507 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4508 M:      Viresh Kumar <[email protected]>
4509 M:      Sudeep Holla <[email protected]>
4510 L:      [email protected]
4511 S:      Maintained
4512 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4513 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4514
4515 CPU FREQUENCY SCALING FRAMEWORK
4516 M:      "Rafael J. Wysocki" <[email protected]>
4517 M:      Viresh Kumar <[email protected]>
4518 L:      [email protected]
4519 S:      Maintained
4520 B:      https://bugzilla.kernel.org
4521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4523 F:      Documentation/admin-guide/pm/cpufreq.rst
4524 F:      Documentation/admin-guide/pm/intel_pstate.rst
4525 F:      Documentation/cpu-freq/
4526 F:      Documentation/devicetree/bindings/cpufreq/
4527 F:      drivers/cpufreq/
4528 F:      include/linux/cpufreq.h
4529 F:      include/linux/sched/cpufreq.h
4530 F:      kernel/sched/cpufreq*.c
4531 F:      tools/testing/selftests/cpufreq/
4532
4533 CPU IDLE TIME MANAGEMENT FRAMEWORK
4534 M:      "Rafael J. Wysocki" <[email protected]>
4535 M:      Daniel Lezcano <[email protected]>
4536 L:      [email protected]
4537 S:      Maintained
4538 B:      https://bugzilla.kernel.org
4539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4540 F:      Documentation/admin-guide/pm/cpuidle.rst
4541 F:      Documentation/driver-api/pm/cpuidle.rst
4542 F:      drivers/cpuidle/*
4543 F:      include/linux/cpuidle.h
4544
4545 CPU POWER MONITORING SUBSYSTEM
4546 M:      Thomas Renninger <[email protected]>
4547 M:      Shuah Khan <[email protected]>
4548 M:      Shuah Khan <[email protected]>
4549 L:      [email protected]
4550 S:      Maintained
4551 F:      tools/power/cpupower/
4552
4553 CPUID/MSR DRIVER
4554 M:      "H. Peter Anvin" <[email protected]>
4555 S:      Maintained
4556 F:      arch/x86/kernel/cpuid.c
4557 F:      arch/x86/kernel/msr.c
4558
4559 CPUIDLE DRIVER - ARM BIG LITTLE
4560 M:      Lorenzo Pieralisi <[email protected]>
4561 M:      Daniel Lezcano <[email protected]>
4562 L:      [email protected]
4563 L:      [email protected]
4564 S:      Maintained
4565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4566 F:      drivers/cpuidle/cpuidle-big_little.c
4567
4568 CPUIDLE DRIVER - ARM EXYNOS
4569 M:      Bartlomiej Zolnierkiewicz <[email protected]>
4570 M:      Daniel Lezcano <[email protected]>
4571 M:      Kukjin Kim <[email protected]>
4572 L:      [email protected]
4573 L:      [email protected]
4574 S:      Supported
4575 F:      arch/arm/mach-exynos/pm.c
4576 F:      drivers/cpuidle/cpuidle-exynos.c
4577
4578 CPUIDLE DRIVER - ARM PSCI
4579 M:      Lorenzo Pieralisi <[email protected]>
4580 M:      Sudeep Holla <[email protected]>
4581 L:      [email protected]
4582 L:      [email protected]
4583 S:      Supported
4584 F:      drivers/cpuidle/cpuidle-psci.c
4585
4586 CRAMFS FILESYSTEM
4587 M:      Nicolas Pitre <[email protected]>
4588 S:      Maintained
4589 F:      Documentation/filesystems/cramfs.rst
4590 F:      fs/cramfs/
4591
4592 CREATIVE SB0540
4593 M:      Bastien Nocera <[email protected]>
4594 L:      [email protected]
4595 S:      Maintained
4596 F:      drivers/hid/hid-creative-sb0540.c
4597
4598 CRYPTO API
4599 M:      Herbert Xu <[email protected]>
4600 M:      "David S. Miller" <[email protected]>
4601 L:      [email protected]
4602 S:      Maintained
4603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4605 F:      Documentation/crypto/
4606 F:      Documentation/devicetree/bindings/crypto/
4607 F:      arch/*/crypto/
4608 F:      crypto/
4609 F:      drivers/crypto/
4610 F:      include/crypto/
4611 F:      include/linux/crypto*
4612 F:      lib/crypto/
4613
4614 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4615 M:      Neil Horman <[email protected]>
4616 L:      [email protected]
4617 S:      Maintained
4618 F:      crypto/ansi_cprng.c
4619 F:      crypto/rng.c
4620
4621 CS3308 MEDIA DRIVER
4622 M:      Hans Verkuil <[email protected]>
4623 L:      [email protected]
4624 S:      Odd Fixes
4625 W:      http://linuxtv.org
4626 T:      git git://linuxtv.org/media_tree.git
4627 F:      drivers/media/i2c/cs3308.c
4628
4629 CS5535 Audio ALSA driver
4630 M:      Jaya Kumar <[email protected]>
4631 S:      Maintained
4632 F:      sound/pci/cs5535audio/
4633
4634 CSI DRIVERS FOR ALLWINNER V3s
4635 M:      Yong Deng <[email protected]>
4636 L:      [email protected]
4637 S:      Maintained
4638 T:      git git://linuxtv.org/media_tree.git
4639 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4640 F:      drivers/media/platform/sunxi/sun6i-csi/
4641
4642 CW1200 WLAN driver
4643 M:      Solomon Peachy <[email protected]>
4644 S:      Maintained
4645 F:      drivers/net/wireless/st/cw1200/
4646
4647 CX18 VIDEO4LINUX DRIVER
4648 M:      Andy Walls <[email protected]>
4649 L:      [email protected]
4650 S:      Maintained
4651 W:      https://linuxtv.org
4652 T:      git git://linuxtv.org/media_tree.git
4653 F:      drivers/media/pci/cx18/
4654 F:      include/uapi/linux/ivtv*
4655
4656 CX2341X MPEG ENCODER HELPER MODULE
4657 M:      Hans Verkuil <[email protected]>
4658 L:      [email protected]
4659 S:      Maintained
4660 W:      https://linuxtv.org
4661 T:      git git://linuxtv.org/media_tree.git
4662 F:      drivers/media/common/cx2341x*
4663 F:      include/media/drv-intf/cx2341x.h
4664
4665 CX24120 MEDIA DRIVER
4666 M:      Jemma Denson <[email protected]>
4667 M:      Patrick Boettcher <[email protected]>
4668 L:      [email protected]
4669 S:      Maintained
4670 W:      https://linuxtv.org
4671 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4672 F:      drivers/media/dvb-frontends/cx24120*
4673
4674 CX88 VIDEO4LINUX DRIVER
4675 M:      Mauro Carvalho Chehab <[email protected]>
4676 L:      [email protected]
4677 S:      Odd fixes
4678 W:      https://linuxtv.org
4679 T:      git git://linuxtv.org/media_tree.git
4680 F:      Documentation/driver-api/media/drivers/cx88*
4681 F:      drivers/media/pci/cx88/
4682
4683 CXD2820R MEDIA DRIVER
4684 M:      Antti Palosaari <[email protected]>
4685 L:      [email protected]
4686 S:      Maintained
4687 W:      https://linuxtv.org
4688 W:      http://palosaari.fi/linux/
4689 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4690 T:      git git://linuxtv.org/anttip/media_tree.git
4691 F:      drivers/media/dvb-frontends/cxd2820r*
4692
4693 CXGB3 ETHERNET DRIVER (CXGB3)
4694 M:      Vishal Kulkarni <[email protected]>
4695 L:      [email protected]
4696 S:      Supported
4697 W:      http://www.chelsio.com
4698 F:      drivers/net/ethernet/chelsio/cxgb3/
4699
4700 CXGB3 ISCSI DRIVER (CXGB3I)
4701 M:      Karen Xie <[email protected]>
4702 L:      [email protected]
4703 S:      Supported
4704 W:      http://www.chelsio.com
4705 F:      drivers/scsi/cxgbi/cxgb3i
4706
4707 CXGB4 CRYPTO DRIVER (chcr)
4708 M:      Ayush Sawal <[email protected]>
4709 M:      Vinay Kumar Yadav <[email protected]>
4710 M:      Rohit Maheshwari <[email protected]>
4711 L:      [email protected]
4712 S:      Supported
4713 W:      http://www.chelsio.com
4714 F:      drivers/crypto/chelsio
4715
4716 CXGB4 ETHERNET DRIVER (CXGB4)
4717 M:      Vishal Kulkarni <[email protected]>
4718 L:      [email protected]
4719 S:      Supported
4720 W:      http://www.chelsio.com
4721 F:      drivers/net/ethernet/chelsio/cxgb4/
4722
4723 CXGB4 ISCSI DRIVER (CXGB4I)
4724 M:      Karen Xie <[email protected]>
4725 L:      [email protected]
4726 S:      Supported
4727 W:      http://www.chelsio.com
4728 F:      drivers/scsi/cxgbi/cxgb4i
4729
4730 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4731 M:      Potnuri Bharat Teja <[email protected]>
4732 L:      [email protected]
4733 S:      Supported
4734 W:      http://www.openfabrics.org
4735 F:      drivers/infiniband/hw/cxgb4/
4736 F:      include/uapi/rdma/cxgb4-abi.h
4737
4738 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4739 M:      Vishal Kulkarni <[email protected]>
4740 L:      [email protected]
4741 S:      Supported
4742 W:      http://www.chelsio.com
4743 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4744
4745 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4746 M:      Frederic Barrat <[email protected]>
4747 M:      Andrew Donnellan <[email protected]>
4748 L:      [email protected]
4749 S:      Supported
4750 F:      Documentation/ABI/testing/sysfs-class-cxl
4751 F:      Documentation/powerpc/cxl.rst
4752 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4753 F:      drivers/misc/cxl/
4754 F:      include/misc/cxl*
4755 F:      include/uapi/misc/cxl.h
4756
4757 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4758 M:      Manoj N. Kumar <[email protected]>
4759 M:      Matthew R. Ochs <[email protected]>
4760 M:      Uma Krishnan <[email protected]>
4761 L:      [email protected]
4762 S:      Supported
4763 F:      Documentation/powerpc/cxlflash.rst
4764 F:      drivers/scsi/cxlflash/
4765 F:      include/uapi/scsi/cxlflash_ioctl.h
4766
4767 CYBERPRO FB DRIVER
4768 M:      Russell King <[email protected]>
4769 L:      [email protected] (moderated for non-subscribers)
4770 S:      Maintained
4771 W:      http://www.armlinux.org.uk/
4772 F:      drivers/video/fbdev/cyber2000fb.*
4773
4774 CYCLADES ASYNC MUX DRIVER
4775 S:      Orphan
4776 W:      http://www.cyclades.com/
4777 F:      drivers/tty/cyclades.c
4778 F:      include/linux/cyclades.h
4779 F:      include/uapi/linux/cyclades.h
4780
4781 CYCLADES PC300 DRIVER
4782 S:      Orphan
4783 W:      http://www.cyclades.com/
4784 F:      drivers/net/wan/pc300*
4785
4786 CYPRESS_FIRMWARE MEDIA DRIVER
4787 M:      Antti Palosaari <[email protected]>
4788 L:      [email protected]
4789 S:      Maintained
4790 W:      https://linuxtv.org
4791 W:      http://palosaari.fi/linux/
4792 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4793 T:      git git://linuxtv.org/anttip/media_tree.git
4794 F:      drivers/media/common/cypress_firmware*
4795
4796 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4797 M:      Linus Walleij <[email protected]>
4798 L:      [email protected]
4799 S:      Maintained
4800 F:      drivers/input/touchscreen/cy8ctma140.c
4801
4802 CYTTSP TOUCHSCREEN DRIVER
4803 M:      Ferruh Yigit <[email protected]>
4804 L:      [email protected]
4805 S:      Supported
4806 F:      drivers/input/touchscreen/cyttsp*
4807 F:      include/linux/input/cyttsp.h
4808
4809 D-LINK DIR-685 TOUCHKEYS DRIVER
4810 M:      Linus Walleij <[email protected]>
4811 L:      [email protected]
4812 S:      Supported
4813 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4814
4815 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4816 M:      Joshua Kinard <[email protected]>
4817 S:      Maintained
4818 F:      drivers/rtc/rtc-ds1685.c
4819 F:      include/linux/rtc/ds1685.h
4820
4821 DAMA SLAVE for AX.25
4822 M:      Joerg Reuter <[email protected]>
4823 L:      [email protected]
4824 S:      Maintained
4825 W:      http://yaina.de/jreuter/
4826 W:      http://www.qsl.net/dl1bke/
4827 F:      net/ax25/af_ax25.c
4828 F:      net/ax25/ax25_dev.c
4829 F:      net/ax25/ax25_ds_*
4830 F:      net/ax25/ax25_in.c
4831 F:      net/ax25/ax25_out.c
4832 F:      net/ax25/ax25_timer.c
4833 F:      net/ax25/sysctl_net_ax25.c
4834
4835 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4836 L:      [email protected]
4837 S:      Orphan
4838 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4839 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4840
4841 DC390/AM53C974 SCSI driver
4842 M:      Hannes Reinecke <[email protected]>
4843 L:      [email protected]
4844 S:      Maintained
4845 F:      drivers/scsi/am53c974.c
4846
4847 DC395x SCSI driver
4848 M:      Oliver Neukum <[email protected]>
4849 M:      Ali Akcaagac <[email protected]>
4850 M:      Jamie Lenehan <[email protected]>
4851 L:      [email protected]
4852 S:      Maintained
4853 W:      http://twibble.org/dist/dc395x/
4854 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4855 F:      Documentation/scsi/dc395x.rst
4856 F:      drivers/scsi/dc395x.*
4857
4858 DCCP PROTOCOL
4859 M:      Gerrit Renker <[email protected]>
4860 L:      [email protected]
4861 S:      Maintained
4862 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4863 F:      include/linux/dccp.h
4864 F:      include/linux/tfrc.h
4865 F:      include/uapi/linux/dccp.h
4866 F:      net/dccp/
4867
4868 DECnet NETWORK LAYER
4869 L:      [email protected]
4870 S:      Orphan
4871 W:      http://linux-decnet.sourceforge.net
4872 F:      Documentation/networking/decnet.rst
4873 F:      net/decnet/
4874
4875 DECSTATION PLATFORM SUPPORT
4876 M:      "Maciej W. Rozycki" <[email protected]>
4877 L:      [email protected]
4878 S:      Maintained
4879 W:      http://www.linux-mips.org/wiki/DECstation
4880 F:      arch/mips/dec/
4881 F:      arch/mips/include/asm/dec/
4882 F:      arch/mips/include/asm/mach-dec/
4883
4884 DEFXX FDDI NETWORK DRIVER
4885 M:      "Maciej W. Rozycki" <[email protected]>
4886 S:      Maintained
4887 F:      drivers/net/fddi/defxx.*
4888
4889 DEFZA FDDI NETWORK DRIVER
4890 M:      "Maciej W. Rozycki" <[email protected]>
4891 S:      Maintained
4892 F:      drivers/net/fddi/defza.*
4893
4894 DEINTERLACE DRIVERS FOR ALLWINNER H3
4895 M:      Jernej Skrabec <[email protected]>
4896 L:      [email protected]
4897 S:      Maintained
4898 T:      git git://linuxtv.org/media_tree.git
4899 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4900 F:      drivers/media/platform/sunxi/sun8i-di/
4901
4902 DELL LAPTOP DRIVER
4903 M:      Matthew Garrett <[email protected]>
4904 M:      Pali Rohár <[email protected]>
4905 L:      [email protected]
4906 S:      Maintained
4907 F:      drivers/platform/x86/dell-laptop.c
4908
4909 DELL LAPTOP FREEFALL DRIVER
4910 M:      Pali Rohár <[email protected]>
4911 S:      Maintained
4912 F:      drivers/platform/x86/dell-smo8800.c
4913
4914 DELL LAPTOP RBTN DRIVER
4915 M:      Pali Rohár <[email protected]>
4916 S:      Maintained
4917 F:      drivers/platform/x86/dell-rbtn.*
4918
4919 DELL LAPTOP SMM DRIVER
4920 M:      Pali Rohár <[email protected]>
4921 S:      Maintained
4922 F:      drivers/hwmon/dell-smm-hwmon.c
4923 F:      include/uapi/linux/i8k.h
4924
4925 DELL REMOTE BIOS UPDATE DRIVER
4926 M:      Stuart Hayes <[email protected]>
4927 L:      [email protected]
4928 S:      Maintained
4929 F:      drivers/platform/x86/dell_rbu.c
4930
4931 DELL SMBIOS DRIVER
4932 M:      Pali Rohár <[email protected]>
4933 M:      Mario Limonciello <[email protected]>
4934 L:      [email protected]
4935 S:      Maintained
4936 F:      drivers/platform/x86/dell-smbios.*
4937
4938 DELL SMBIOS SMM DRIVER
4939 M:      Mario Limonciello <[email protected]>
4940 L:      [email protected]
4941 S:      Maintained
4942 F:      drivers/platform/x86/dell-smbios-smm.c
4943
4944 DELL SMBIOS WMI DRIVER
4945 M:      Mario Limonciello <[email protected]>
4946 L:      [email protected]
4947 S:      Maintained
4948 F:      drivers/platform/x86/dell-smbios-wmi.c
4949 F:      tools/wmi/dell-smbios-example.c
4950
4951 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4952 M:      Stuart Hayes <[email protected]>
4953 L:      [email protected]
4954 S:      Maintained
4955 F:      Documentation/driver-api/dcdbas.rst
4956 F:      drivers/platform/x86/dcdbas.*
4957
4958 DELL WMI DESCRIPTOR DRIVER
4959 M:      Mario Limonciello <[email protected]>
4960 S:      Maintained
4961 F:      drivers/platform/x86/dell-wmi-descriptor.c
4962
4963 DELL WMI NOTIFICATIONS DRIVER
4964 M:      Matthew Garrett <[email protected]>
4965 M:      Pali Rohár <[email protected]>
4966 S:      Maintained
4967 F:      drivers/platform/x86/dell-wmi.c
4968
4969 DELTA ST MEDIA DRIVER
4970 M:      Hugues Fruchet <[email protected]>
4971 L:      [email protected]
4972 S:      Supported
4973 W:      https://linuxtv.org
4974 T:      git git://linuxtv.org/media_tree.git
4975 F:      drivers/media/platform/sti/delta
4976
4977 DENALI NAND DRIVER
4978 M:      Masahiro Yamada <[email protected]>
4979 L:      [email protected]
4980 S:      Supported
4981 F:      drivers/mtd/nand/raw/denali*
4982
4983 DESIGNWARE EDMA CORE IP DRIVER
4984 M:      Gustavo Pimentel <[email protected]>
4985 L:      [email protected]
4986 S:      Maintained
4987 F:      drivers/dma/dw-edma/
4988 F:      include/linux/dma/edma.h
4989
4990 DESIGNWARE USB2 DRD IP DRIVER
4991 M:      Minas Harutyunyan <[email protected]>
4992 L:      [email protected]
4993 S:      Maintained
4994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4995 F:      drivers/usb/dwc2/
4996
4997 DESIGNWARE USB3 DRD IP DRIVER
4998 M:      Felipe Balbi <[email protected]>
4999 L:      [email protected]
5000 S:      Maintained
5001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5002 F:      drivers/usb/dwc3/
5003
5004 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5005 M:      Andreas Klinger <[email protected]>
5006 L:      [email protected]
5007 S:      Maintained
5008 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5009 F:      drivers/iio/proximity/srf*.c
5010
5011 DEVICE COREDUMP (DEV_COREDUMP)
5012 M:      Johannes Berg <[email protected]>
5013 L:      [email protected]
5014 S:      Maintained
5015 F:      drivers/base/devcoredump.c
5016 F:      include/linux/devcoredump.h
5017
5018 DEVICE DEPENDENCY HELPER SCRIPT
5019 M:      Saravana Kannan <[email protected]>
5020 L:      [email protected]
5021 S:      Maintained
5022 F:      scripts/dev-needs.sh
5023
5024 DEVICE DIRECT ACCESS (DAX)
5025 M:      Dan Williams <[email protected]>
5026 M:      Vishal Verma <[email protected]>
5027 M:      Dave Jiang <[email protected]>
5028 L:      [email protected]
5029 S:      Supported
5030 F:      drivers/dax/
5031
5032 DEVICE FREQUENCY (DEVFREQ)
5033 M:      MyungJoo Ham <[email protected]>
5034 M:      Kyungmin Park <[email protected]>
5035 M:      Chanwoo Choi <[email protected]>
5036 L:      [email protected]
5037 S:      Maintained
5038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5039 F:      Documentation/devicetree/bindings/devfreq/
5040 F:      drivers/devfreq/
5041 F:      include/linux/devfreq.h
5042 F:      include/trace/events/devfreq.h
5043
5044 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5045 M:      Chanwoo Choi <[email protected]>
5046 L:      [email protected]
5047 S:      Supported
5048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5049 F:      Documentation/devicetree/bindings/devfreq/event/
5050 F:      drivers/devfreq/devfreq-event.c
5051 F:      drivers/devfreq/event/
5052 F:      include/dt-bindings/pmu/exynos_ppmu.h
5053 F:      include/linux/devfreq-event.h
5054
5055 DEVICE NUMBER REGISTRY
5056 M:      Torben Mathiasen <[email protected]>
5057 S:      Maintained
5058 W:      http://lanana.org/docs/device-list/index.html
5059
5060 DEVICE-MAPPER  (LVM)
5061 M:      Alasdair Kergon <[email protected]>
5062 M:      Mike Snitzer <[email protected]>
5063 M:      [email protected]
5064 L:      [email protected]
5065 S:      Maintained
5066 W:      http://sources.redhat.com/dm
5067 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5069 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5070 F:      Documentation/admin-guide/device-mapper/
5071 F:      drivers/md/Kconfig
5072 F:      drivers/md/Makefile
5073 F:      drivers/md/dm*
5074 F:      drivers/md/persistent-data/
5075 F:      include/linux/device-mapper.h
5076 F:      include/linux/dm-*.h
5077 F:      include/uapi/linux/dm-*.h
5078
5079 DEVLINK
5080 M:      Jiri Pirko <[email protected]>
5081 L:      [email protected]
5082 S:      Supported
5083 F:      Documentation/networking/devlink
5084 F:      include/net/devlink.h
5085 F:      include/uapi/linux/devlink.h
5086 F:      net/core/devlink.c
5087
5088 DIALOG SEMICONDUCTOR DRIVERS
5089 M:      Support Opensource <[email protected]>
5090 S:      Supported
5091 W:      http://www.dialog-semiconductor.com/products
5092 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5093 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5094 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5095 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5096 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5097 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5098 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5099 F:      Documentation/hwmon/da90??.rst
5100 F:      drivers/gpio/gpio-da90??.c
5101 F:      drivers/hwmon/da90??-hwmon.c
5102 F:      drivers/iio/adc/da91??-*.c
5103 F:      drivers/input/misc/da90??_onkey.c
5104 F:      drivers/input/touchscreen/da9052_tsi.c
5105 F:      drivers/leds/leds-da90??.c
5106 F:      drivers/mfd/da903x.c
5107 F:      drivers/mfd/da90??-*.c
5108 F:      drivers/mfd/da91??-*.c
5109 F:      drivers/pinctrl/pinctrl-da90??.c
5110 F:      drivers/power/supply/da9052-battery.c
5111 F:      drivers/power/supply/da91??-*.c
5112 F:      drivers/regulator/da9???-regulator.[ch]
5113 F:      drivers/regulator/slg51000-regulator.[ch]
5114 F:      drivers/rtc/rtc-da90??.c
5115 F:      drivers/thermal/da90??-thermal.c
5116 F:      drivers/video/backlight/da90??_bl.c
5117 F:      drivers/watchdog/da90??_wdt.c
5118 F:      include/linux/mfd/da903x.h
5119 F:      include/linux/mfd/da9052/
5120 F:      include/linux/mfd/da9055/
5121 F:      include/linux/mfd/da9062/
5122 F:      include/linux/mfd/da9063/
5123 F:      include/linux/mfd/da9150/
5124 F:      include/linux/regulator/da9211.h
5125 F:      include/sound/da[79]*.h
5126 F:      sound/soc/codecs/da[79]*.[ch]
5127
5128 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5129 M:      William Breathitt Gray <[email protected]>
5130 L:      [email protected]
5131 S:      Maintained
5132 F:      drivers/gpio/gpio-gpio-mm.c
5133
5134 DIOLAN U2C-12 I2C DRIVER
5135 M:      Guenter Roeck <[email protected]>
5136 L:      [email protected]
5137 S:      Maintained
5138 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5139
5140 DIRECTORY NOTIFICATION (DNOTIFY)
5141 M:      Jan Kara <[email protected]>
5142 R:      Amir Goldstein <[email protected]>
5143 L:      [email protected]
5144 S:      Maintained
5145 F:      Documentation/filesystems/dnotify.rst
5146 F:      fs/notify/dnotify/
5147 F:      include/linux/dnotify.h
5148
5149 DISK GEOMETRY AND PARTITION HANDLING
5150 M:      Andries Brouwer <[email protected]>
5151 S:      Maintained
5152 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5153 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5154 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5155
5156 DISKQUOTA
5157 M:      Jan Kara <[email protected]>
5158 S:      Maintained
5159 F:      Documentation/filesystems/quota.rst
5160 F:      fs/quota/
5161 F:      include/linux/quota*.h
5162 F:      include/uapi/linux/quota*.h
5163
5164 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5165 M:      Bernie Thompson <[email protected]>
5166 L:      [email protected]
5167 S:      Maintained
5168 W:      http://plugable.com/category/projects/udlfb/
5169 F:      Documentation/fb/udlfb.rst
5170 F:      drivers/video/fbdev/udlfb.c
5171 F:      include/video/udlfb.h
5172
5173 DISTRIBUTED LOCK MANAGER (DLM)
5174 M:      Christine Caulfield <[email protected]>
5175 M:      David Teigland <[email protected]>
5176 L:      [email protected]
5177 S:      Supported
5178 W:      http://sources.redhat.com/cluster/
5179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5180 F:      fs/dlm/
5181
5182 DMA BUFFER SHARING FRAMEWORK
5183 M:      Sumit Semwal <[email protected]>
5184 M:      Christian König <[email protected]>
5185 L:      [email protected]
5186 L:      [email protected]
5187 L:      [email protected] (moderated for non-subscribers)
5188 S:      Maintained
5189 T:      git git://anongit.freedesktop.org/drm/drm-misc
5190 F:      Documentation/driver-api/dma-buf.rst
5191 F:      drivers/dma-buf/
5192 F:      include/linux/*fence.h
5193 F:      include/linux/dma-buf*
5194 F:      include/linux/dma-resv.h
5195 K:      \bdma_(?:buf|fence|resv)\b
5196
5197 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5198 M:      Vinod Koul <[email protected]>
5199 L:      [email protected]
5200 S:      Maintained
5201 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5203 F:      Documentation/devicetree/bindings/dma/
5204 F:      Documentation/driver-api/dmaengine/
5205 F:      drivers/dma/
5206 F:      include/linux/dmaengine.h
5207 F:      include/linux/of_dma.h
5208
5209 DMA MAPPING HELPERS
5210 M:      Christoph Hellwig <[email protected]>
5211 M:      Marek Szyprowski <[email protected]>
5212 R:      Robin Murphy <[email protected]>
5213 L:      [email protected]
5214 S:      Supported
5215 W:      http://git.infradead.org/users/hch/dma-mapping.git
5216 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5217 F:      include/asm-generic/dma-mapping.h
5218 F:      include/linux/dma-direct.h
5219 F:      include/linux/dma-mapping.h
5220 F:      include/linux/dma-map-ops.h
5221 F:      kernel/dma/
5222
5223 DMA-BUF HEAPS FRAMEWORK
5224 M:      Sumit Semwal <[email protected]>
5225 R:      Andrew F. Davis <[email protected]>
5226 R:      Benjamin Gaignard <[email protected]>
5227 R:      Liam Mark <[email protected]>
5228 R:      Laura Abbott <[email protected]>
5229 R:      Brian Starkey <[email protected]>
5230 R:      John Stultz <[email protected]>
5231 L:      [email protected]
5232 L:      [email protected]
5233 L:      [email protected] (moderated for non-subscribers)
5234 S:      Maintained
5235 T:      git git://anongit.freedesktop.org/drm/drm-misc
5236 F:      drivers/dma-buf/dma-heap.c
5237 F:      drivers/dma-buf/heaps/*
5238 F:      include/linux/dma-heap.h
5239 F:      include/uapi/linux/dma-heap.h
5240
5241 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5242 M:      Lukasz Luba <[email protected]>
5243 L:      [email protected]
5244 L:      [email protected]
5245 S:      Maintained
5246 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5247 F:      drivers/memory/samsung/exynos5422-dmc.c
5248
5249 DME1737 HARDWARE MONITOR DRIVER
5250 M:      Juerg Haefliger <[email protected]>
5251 L:      [email protected]
5252 S:      Maintained
5253 F:      Documentation/hwmon/dme1737.rst
5254 F:      drivers/hwmon/dme1737.c
5255
5256 DMI/SMBIOS SUPPORT
5257 M:      Jean Delvare <[email protected]>
5258 S:      Maintained
5259 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5260 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5261 F:      drivers/firmware/dmi-id.c
5262 F:      drivers/firmware/dmi_scan.c
5263 F:      include/linux/dmi.h
5264
5265 DOCUMENTATION
5266 M:      Jonathan Corbet <[email protected]>
5267 L:      [email protected]
5268 S:      Maintained
5269 P:      Documentation/doc-guide/maintainer-profile.rst
5270 T:      git git://git.lwn.net/linux.git docs-next
5271 F:      Documentation/
5272 F:      scripts/documentation-file-ref-check
5273 F:      scripts/kernel-doc
5274 F:      scripts/sphinx-pre-install
5275 X:      Documentation/ABI/
5276 X:      Documentation/admin-guide/media/
5277 X:      Documentation/devicetree/
5278 X:      Documentation/driver-api/media/
5279 X:      Documentation/firmware-guide/acpi/
5280 X:      Documentation/i2c/
5281 X:      Documentation/power/
5282 X:      Documentation/spi/
5283 X:      Documentation/userspace-api/media/
5284
5285 DOCUMENTATION SCRIPTS
5286 M:      Mauro Carvalho Chehab <[email protected]>
5287 L:      [email protected]
5288 S:      Maintained
5289 F:      Documentation/sphinx/parse-headers.pl
5290 F:      scripts/documentation-file-ref-check
5291 F:      scripts/sphinx-pre-install
5292
5293 DOCUMENTATION/ITALIAN
5294 M:      Federico Vaga <[email protected]>
5295 L:      [email protected]
5296 S:      Maintained
5297 F:      Documentation/translations/it_IT
5298
5299 DONGWOON DW9714 LENS VOICE COIL DRIVER
5300 M:      Sakari Ailus <[email protected]>
5301 L:      [email protected]
5302 S:      Maintained
5303 T:      git git://linuxtv.org/media_tree.git
5304 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5305 F:      drivers/media/i2c/dw9714.c
5306
5307 DONGWOON DW9768 LENS VOICE COIL DRIVER
5308 M:      Dongchun Zhu <[email protected]>
5309 L:      [email protected]
5310 S:      Maintained
5311 T:      git git://linuxtv.org/media_tree.git
5312 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5313 F:      drivers/media/i2c/dw9768.c
5314
5315 DONGWOON DW9807 LENS VOICE COIL DRIVER
5316 M:      Sakari Ailus <[email protected]>
5317 L:      [email protected]
5318 S:      Maintained
5319 T:      git git://linuxtv.org/media_tree.git
5320 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5321 F:      drivers/media/i2c/dw9807-vcm.c
5322
5323 DOUBLETALK DRIVER
5324 M:      "James R. Van Zandt" <[email protected]>
5325 L:      [email protected]
5326 S:      Maintained
5327 F:      drivers/char/dtlk.c
5328 F:      include/linux/dtlk.h
5329
5330 DPAA2 DATAPATH I/O (DPIO) DRIVER
5331 M:      Roy Pledge <[email protected]>
5332 L:      [email protected]
5333 S:      Maintained
5334 F:      drivers/soc/fsl/dpio
5335
5336 DPAA2 ETHERNET DRIVER
5337 M:      Ioana Ciornei <[email protected]>
5338 M:      Ioana Radulescu <[email protected]>
5339 L:      [email protected]
5340 S:      Maintained
5341 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5342 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5343 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5344 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5345 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5346 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5347 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5348 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5349 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5350
5351 DPAA2 ETHERNET SWITCH DRIVER
5352 M:      Ioana Radulescu <[email protected]>
5353 M:      Ioana Ciornei <[email protected]>
5354 L:      [email protected]
5355 S:      Maintained
5356 F:      drivers/staging/fsl-dpaa2/ethsw
5357
5358 DPT_I2O SCSI RAID DRIVER
5359 M:      Adaptec OEM Raid Solutions <[email protected]>
5360 L:      [email protected]
5361 S:      Maintained
5362 W:      http://www.adaptec.com/
5363 F:      drivers/scsi/dpt*
5364 F:      drivers/scsi/dpt/
5365
5366 DRBD DRIVER
5367 M:      Philipp Reisner <[email protected]>
5368 M:      Lars Ellenberg <[email protected]>
5369 L:      [email protected]
5370 S:      Supported
5371 W:      http://www.drbd.org
5372 T:      git git://git.linbit.com/linux-drbd.git
5373 T:      git git://git.linbit.com/drbd-8.4.git
5374 F:      Documentation/admin-guide/blockdev/
5375 F:      drivers/block/drbd/
5376 F:      lib/lru_cache.c
5377
5378 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5379 M:      Greg Kroah-Hartman <[email protected]>
5380 R:      "Rafael J. Wysocki" <[email protected]>
5381 S:      Supported
5382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5383 F:      Documentation/core-api/kobject.rst
5384 F:      drivers/base/
5385 F:      fs/debugfs/
5386 F:      fs/sysfs/
5387 F:      include/linux/debugfs.h
5388 F:      include/linux/kobj*
5389 F:      lib/kobj*
5390
5391 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5392 M:      Nishanth Menon <[email protected]>
5393 L:      [email protected]
5394 S:      Maintained
5395 F:      drivers/power/avs/
5396 F:      include/linux/power/smartreflex.h
5397
5398 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5399 M:      Maxime Ripard <[email protected]>
5400 M:      Chen-Yu Tsai <[email protected]>
5401 R:      Jernej Skrabec <[email protected]>
5402 L:      [email protected]
5403 S:      Supported
5404 T:      git git://anongit.freedesktop.org/drm/drm-misc
5405 F:      drivers/gpu/drm/sun4i/sun8i*
5406
5407 DRM DRIVER FOR ARM PL111 CLCD
5408 M:      Eric Anholt <[email protected]>
5409 S:      Supported
5410 T:      git git://anongit.freedesktop.org/drm/drm-misc
5411 F:      drivers/gpu/drm/pl111/
5412
5413 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5414 M:      Linus Walleij <[email protected]>
5415 S:      Maintained
5416 T:      git git://anongit.freedesktop.org/drm/drm-misc
5417 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5418 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5419
5420 DRM DRIVER FOR ASPEED BMC GFX
5421 M:      Joel Stanley <[email protected]>
5422 L:      [email protected] (moderated for non-subscribers)
5423 S:      Supported
5424 T:      git git://anongit.freedesktop.org/drm/drm-misc
5425 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5426 F:      drivers/gpu/drm/aspeed/
5427
5428 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5429 M:      Dave Airlie <[email protected]>
5430 R:      Thomas Zimmermann <[email protected]>
5431 L:      [email protected]
5432 S:      Supported
5433 T:      git git://anongit.freedesktop.org/drm/drm-misc
5434 F:      drivers/gpu/drm/ast/
5435
5436 DRM DRIVER FOR BOCHS VIRTUAL GPU
5437 M:      Gerd Hoffmann <[email protected]>
5438 L:      [email protected]
5439 S:      Maintained
5440 T:      git git://anongit.freedesktop.org/drm/drm-misc
5441 F:      drivers/gpu/drm/bochs/
5442
5443 DRM DRIVER FOR BOE HIMAX8279D PANELS
5444 M:      Jerry Han <[email protected]>
5445 S:      Maintained
5446 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5447 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5448
5449 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5450 M:      Linus Walleij <[email protected]>
5451 S:      Maintained
5452 T:      git git://anongit.freedesktop.org/drm/drm-misc
5453 F:      drivers/gpu/drm/tve200/
5454
5455 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5456 M:      Icenowy Zheng <[email protected]>
5457 S:      Maintained
5458 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5459 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5460
5461 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5462 M:      Jagan Teki <[email protected]>
5463 S:      Maintained
5464 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5465 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5466
5467 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5468 M:      Hans de Goede <[email protected]>
5469 S:      Maintained
5470 T:      git git://anongit.freedesktop.org/drm/drm-misc
5471 F:      drivers/gpu/drm/tiny/gm12u320.c
5472
5473 DRM DRIVER FOR HX8357D PANELS
5474 M:      Eric Anholt <[email protected]>
5475 S:      Maintained
5476 T:      git git://anongit.freedesktop.org/drm/drm-misc
5477 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5478 F:      drivers/gpu/drm/tiny/hx8357d.c
5479
5480 DRM DRIVER FOR ILITEK ILI9225 PANELS
5481 M:      David Lechner <[email protected]>
5482 S:      Maintained
5483 T:      git git://anongit.freedesktop.org/drm/drm-misc
5484 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5485 F:      drivers/gpu/drm/tiny/ili9225.c
5486
5487 DRM DRIVER FOR ILITEK ILI9486 PANELS
5488 M:      Kamlesh Gurudasani <[email protected]>
5489 S:      Maintained
5490 T:      git git://anongit.freedesktop.org/drm/drm-misc
5491 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5492 F:      drivers/gpu/drm/tiny/ili9486.c
5493
5494 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5495 S:      Orphan / Obsolete
5496 F:      drivers/gpu/drm/i810/
5497 F:      include/uapi/drm/i810_drm.h
5498
5499 DRM DRIVER FOR LVDS PANELS
5500 M:      Laurent Pinchart <[email protected]>
5501 L:      [email protected]
5502 T:      git git://anongit.freedesktop.org/drm/drm-misc
5503 S:      Maintained
5504 F:      drivers/gpu/drm/panel/panel-lvds.c
5505 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5506
5507 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5508 M:      Guido Günther <[email protected]>
5509 R:      Purism Kernel Team <[email protected]>
5510 S:      Maintained
5511 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5512 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5513
5514 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5515 S:      Orphan / Obsolete
5516 F:      drivers/gpu/drm/mga/
5517 F:      include/uapi/drm/mga_drm.h
5518
5519 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5520 M:      Dave Airlie <[email protected]>
5521 R:      Thomas Zimmermann <[email protected]>
5522 L:      [email protected]
5523 S:      Supported
5524 T:      git git://anongit.freedesktop.org/drm/drm-misc
5525 F:      drivers/gpu/drm/mgag200/
5526
5527 DRM DRIVER FOR MI0283QT
5528 M:      Noralf Trønnes <[email protected]>
5529 S:      Maintained
5530 T:      git git://anongit.freedesktop.org/drm/drm-misc
5531 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5532 F:      drivers/gpu/drm/tiny/mi0283qt.c
5533
5534 DRM DRIVER FOR MSM ADRENO GPU
5535 M:      Rob Clark <[email protected]>
5536 M:      Sean Paul <[email protected]>
5537 L:      [email protected]
5538 L:      [email protected]
5539 L:      [email protected]
5540 S:      Maintained
5541 T:      git https://gitlab.freedesktop.org/drm/msm.git
5542 F:      Documentation/devicetree/bindings/display/msm/
5543 F:      drivers/gpu/drm/msm/
5544 F:      include/uapi/drm/msm_drm.h
5545
5546 DRM DRIVER FOR NOVATEK NT35510 PANELS
5547 M:      Linus Walleij <[email protected]>
5548 S:      Maintained
5549 T:      git git://anongit.freedesktop.org/drm/drm-misc
5550 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5551 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5552
5553 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5554 M:      Ben Skeggs <[email protected]>
5555 L:      [email protected]
5556 L:      [email protected]
5557 S:      Supported
5558 T:      git git://github.com/skeggsb/linux
5559 F:      drivers/gpu/drm/nouveau/
5560 F:      include/uapi/drm/nouveau_drm.h
5561
5562 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5563 M:      Stefan Mavrodiev <[email protected]>
5564 S:      Maintained
5565 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5566 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5567
5568 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5569 M:      Noralf Trønnes <[email protected]>
5570 S:      Maintained
5571 T:      git git://anongit.freedesktop.org/drm/drm-misc
5572 F:      Documentation/devicetree/bindings/display/repaper.txt
5573 F:      drivers/gpu/drm/tiny/repaper.c
5574
5575 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5576 M:      Dave Airlie <[email protected]>
5577 M:      Gerd Hoffmann <[email protected]>
5578 L:      [email protected]
5579 S:      Obsolete
5580 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5581 T:      git git://anongit.freedesktop.org/drm/drm-misc
5582 F:      drivers/gpu/drm/tiny/cirrus.c
5583
5584 DRM DRIVER FOR QXL VIRTUAL GPU
5585 M:      Dave Airlie <[email protected]>
5586 M:      Gerd Hoffmann <[email protected]>
5587 L:      [email protected]
5588 L:      [email protected]
5589 S:      Maintained
5590 T:      git git://anongit.freedesktop.org/drm/drm-misc
5591 F:      drivers/gpu/drm/qxl/
5592 F:      include/uapi/drm/qxl_drm.h
5593
5594 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5595 S:      Orphan / Obsolete
5596 F:      drivers/gpu/drm/r128/
5597 F:      include/uapi/drm/r128_drm.h
5598
5599 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5600 M:      Robert Chiras <[email protected]>
5601 S:      Maintained
5602 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5603 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5604
5605 DRM DRIVER FOR SITRONIX ST7703 PANELS
5606 M:      Guido Günther <[email protected]>
5607 R:      Purism Kernel Team <[email protected]>
5608 R:      Ondrej Jirman <[email protected]>
5609 S:      Maintained
5610 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5611 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5612
5613 DRM DRIVER FOR SAVAGE VIDEO CARDS
5614 S:      Orphan / Obsolete
5615 F:      drivers/gpu/drm/savage/
5616 F:      include/uapi/drm/savage_drm.h
5617
5618 DRM DRIVER FOR SIS VIDEO CARDS
5619 S:      Orphan / Obsolete
5620 F:      drivers/gpu/drm/sis/
5621 F:      include/uapi/drm/sis_drm.h
5622
5623 DRM DRIVER FOR SITRONIX ST7586 PANELS
5624 M:      David Lechner <[email protected]>
5625 S:      Maintained
5626 T:      git git://anongit.freedesktop.org/drm/drm-misc
5627 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5628 F:      drivers/gpu/drm/tiny/st7586.c
5629
5630 DRM DRIVER FOR SITRONIX ST7701 PANELS
5631 M:      Jagan Teki <[email protected]>
5632 S:      Maintained
5633 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5634 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5635
5636 DRM DRIVER FOR SITRONIX ST7735R PANELS
5637 M:      David Lechner <[email protected]>
5638 S:      Maintained
5639 T:      git git://anongit.freedesktop.org/drm/drm-misc
5640 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5641 F:      drivers/gpu/drm/tiny/st7735r.c
5642
5643 DRM DRIVER FOR SONY ACX424AKP PANELS
5644 M:      Linus Walleij <[email protected]>
5645 S:      Maintained
5646 T:      git git://anongit.freedesktop.org/drm/drm-misc
5647 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5648
5649 DRM DRIVER FOR ST-ERICSSON MCDE
5650 M:      Linus Walleij <[email protected]>
5651 S:      Maintained
5652 T:      git git://anongit.freedesktop.org/drm/drm-misc
5653 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5654 F:      drivers/gpu/drm/mcde/
5655
5656 DRM DRIVER FOR TDFX VIDEO CARDS
5657 S:      Orphan / Obsolete
5658 F:      drivers/gpu/drm/tdfx/
5659
5660 DRM DRIVER FOR TPO TPG110 PANELS
5661 M:      Linus Walleij <[email protected]>
5662 S:      Maintained
5663 T:      git git://anongit.freedesktop.org/drm/drm-misc
5664 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5665 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5666
5667 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5668 M:      Dave Airlie <[email protected]>
5669 R:      Sean Paul <[email protected]>
5670 R:      Thomas Zimmermann <[email protected]>
5671 L:      [email protected]
5672 S:      Supported
5673 T:      git git://anongit.freedesktop.org/drm/drm-misc
5674 F:      drivers/gpu/drm/udl/
5675
5676 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5677 M:      Rodrigo Siqueira <[email protected]>
5678 M:      Melissa Wen <[email protected]>
5679 R:      Haneen Mohammed <[email protected]>
5680 R:      Daniel Vetter <[email protected]>
5681 L:      [email protected]
5682 S:      Maintained
5683 T:      git git://anongit.freedesktop.org/drm/drm-misc
5684 F:      Documentation/gpu/vkms.rst
5685 F:      drivers/gpu/drm/vkms/
5686
5687 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5688 M:      Hans de Goede <[email protected]>
5689 L:      [email protected]
5690 S:      Maintained
5691 T:      git git://anongit.freedesktop.org/drm/drm-misc
5692 F:      drivers/gpu/drm/vboxvideo/
5693
5694 DRM DRIVER FOR VMWARE VIRTUAL GPU
5695 M:      "VMware Graphics" <[email protected]>
5696 M:      Roland Scheidegger <[email protected]>
5697 L:      [email protected]
5698 S:      Supported
5699 T:      git git://people.freedesktop.org/~sroland/linux
5700 F:      drivers/gpu/drm/vmwgfx/
5701 F:      include/uapi/drm/vmwgfx_drm.h
5702
5703 DRM DRIVERS
5704 M:      David Airlie <[email protected]>
5705 M:      Daniel Vetter <[email protected]>
5706 L:      [email protected]
5707 S:      Maintained
5708 B:      https://bugs.freedesktop.org/
5709 C:      irc://chat.freenode.net/dri-devel
5710 T:      git git://anongit.freedesktop.org/drm/drm
5711 F:      Documentation/devicetree/bindings/display/
5712 F:      Documentation/devicetree/bindings/gpu/
5713 F:      Documentation/gpu/
5714 F:      drivers/gpu/drm/
5715 F:      drivers/gpu/vga/
5716 F:      include/drm/
5717 F:      include/linux/vga*
5718 F:      include/uapi/drm/
5719
5720 DRM DRIVERS AND MISC GPU PATCHES
5721 M:      Maarten Lankhorst <[email protected]>
5722 M:      Maxime Ripard <[email protected]>
5723 M:      Thomas Zimmermann <[email protected]>
5724 S:      Maintained
5725 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5726 T:      git git://anongit.freedesktop.org/drm/drm-misc
5727 F:      Documentation/gpu/
5728 F:      drivers/gpu/drm/*
5729 F:      drivers/gpu/vga/
5730 F:      include/drm/drm*
5731 F:      include/linux/vga*
5732 F:      include/uapi/drm/drm*
5733
5734 DRM DRIVERS FOR ALLWINNER A10
5735 M:      Maxime Ripard <[email protected]>
5736 M:      Chen-Yu Tsai <[email protected]>
5737 L:      [email protected]
5738 S:      Supported
5739 T:      git git://anongit.freedesktop.org/drm/drm-misc
5740 F:      Documentation/devicetree/bindings/display/allwinner*
5741 F:      drivers/gpu/drm/sun4i/
5742
5743 DRM DRIVERS FOR AMLOGIC SOCS
5744 M:      Neil Armstrong <[email protected]>
5745 L:      [email protected]
5746 L:      [email protected]
5747 S:      Supported
5748 W:      http://linux-meson.com/
5749 T:      git git://anongit.freedesktop.org/drm/drm-misc
5750 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5751 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5752 F:      Documentation/gpu/meson.rst
5753 F:      drivers/gpu/drm/meson/
5754
5755 DRM DRIVERS FOR ATMEL HLCDC
5756 M:      Sam Ravnborg <[email protected]>
5757 M:      Boris Brezillon <[email protected]>
5758 L:      [email protected]
5759 S:      Supported
5760 T:      git git://anongit.freedesktop.org/drm/drm-misc
5761 F:      Documentation/devicetree/bindings/display/atmel/
5762 F:      drivers/gpu/drm/atmel-hlcdc/
5763
5764 DRM DRIVERS FOR BRIDGE CHIPS
5765 M:      Andrzej Hajda <[email protected]>
5766 M:      Neil Armstrong <[email protected]>
5767 R:      Laurent Pinchart <[email protected]>
5768 R:      Jonas Karlman <[email protected]>
5769 R:      Jernej Skrabec <[email protected]>
5770 S:      Maintained
5771 T:      git git://anongit.freedesktop.org/drm/drm-misc
5772 F:      drivers/gpu/drm/bridge/
5773
5774 DRM DRIVERS FOR EXYNOS
5775 M:      Inki Dae <[email protected]>
5776 M:      Joonyoung Shim <[email protected]>
5777 M:      Seung-Woo Kim <[email protected]>
5778 M:      Kyungmin Park <[email protected]>
5779 L:      [email protected]
5780 S:      Supported
5781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5782 F:      Documentation/devicetree/bindings/display/exynos/
5783 F:      drivers/gpu/drm/exynos/
5784 F:      include/uapi/drm/exynos_drm.h
5785
5786 DRM DRIVERS FOR FREESCALE DCU
5787 M:      Stefan Agner <[email protected]>
5788 M:      Alison Wang <[email protected]>
5789 L:      [email protected]
5790 S:      Supported
5791 T:      git git://anongit.freedesktop.org/drm/drm-misc
5792 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5793 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5794 F:      drivers/gpu/drm/fsl-dcu/
5795
5796 DRM DRIVERS FOR FREESCALE IMX
5797 M:      Philipp Zabel <[email protected]>
5798 L:      [email protected]
5799 S:      Maintained
5800 F:      Documentation/devicetree/bindings/display/imx/
5801 F:      drivers/gpu/drm/imx/
5802 F:      drivers/gpu/ipu-v3/
5803
5804 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5805 M:      Patrik Jakobsson <[email protected]>
5806 L:      [email protected]
5807 S:      Maintained
5808 T:      git git://github.com/patjak/drm-gma500
5809 F:      drivers/gpu/drm/gma500/
5810
5811 DRM DRIVERS FOR HISILICON
5812 M:      Xinliang Liu <[email protected]>
5813 M:      Tian Tao  <[email protected]>
5814 R:      John Stultz <[email protected]>
5815 R:      Xinwei Kong <[email protected]>
5816 R:      Chen Feng <[email protected]>
5817 L:      [email protected]
5818 S:      Maintained
5819 T:      git git://anongit.freedesktop.org/drm/drm-misc
5820 F:      Documentation/devicetree/bindings/display/hisilicon/
5821 F:      drivers/gpu/drm/hisilicon/
5822
5823 DRM DRIVERS FOR LIMA
5824 M:      Qiang Yu <[email protected]>
5825 L:      [email protected]
5826 L:      [email protected] (moderated for non-subscribers)
5827 S:      Maintained
5828 T:      git git://anongit.freedesktop.org/drm/drm-misc
5829 F:      drivers/gpu/drm/lima/
5830 F:      include/uapi/drm/lima_drm.h
5831
5832 DRM DRIVERS FOR MEDIATEK
5833 M:      Chun-Kuang Hu <[email protected]>
5834 M:      Philipp Zabel <[email protected]>
5835 L:      [email protected]
5836 S:      Supported
5837 F:      Documentation/devicetree/bindings/display/mediatek/
5838 F:      drivers/gpu/drm/mediatek/
5839 F:      drivers/phy/mediatek/phy-mtk-hdmi*
5840
5841 DRM DRIVERS FOR NVIDIA TEGRA
5842 M:      Thierry Reding <[email protected]>
5843 L:      [email protected]
5844 L:      [email protected]
5845 S:      Supported
5846 T:      git git://anongit.freedesktop.org/tegra/linux.git
5847 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5848 F:      drivers/gpu/drm/tegra/
5849 F:      drivers/gpu/host1x/
5850 F:      include/linux/host1x.h
5851 F:      include/uapi/drm/tegra_drm.h
5852
5853 DRM DRIVERS FOR RENESAS
5854 M:      Laurent Pinchart <[email protected]>
5855 M:      Kieran Bingham <[email protected]>
5856 L:      [email protected]
5857 L:      [email protected]
5858 S:      Supported
5859 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5860 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5861 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5862 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5863 F:      drivers/gpu/drm/rcar-du/
5864 F:      drivers/gpu/drm/shmobile/
5865 F:      include/linux/platform_data/shmob_drm.h
5866
5867 DRM DRIVERS FOR ROCKCHIP
5868 M:      Sandy Huang <[email protected]>
5869 M:      Heiko Stübner <[email protected]>
5870 L:      [email protected]
5871 S:      Maintained
5872 T:      git git://anongit.freedesktop.org/drm/drm-misc
5873 F:      Documentation/devicetree/bindings/display/rockchip/
5874 F:      drivers/gpu/drm/rockchip/
5875
5876 DRM DRIVERS FOR STI
5877 M:      Benjamin Gaignard <[email protected]>
5878 M:      Vincent Abriou <[email protected]>
5879 L:      [email protected]
5880 S:      Maintained
5881 T:      git git://anongit.freedesktop.org/drm/drm-misc
5882 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5883 F:      drivers/gpu/drm/sti
5884
5885 DRM DRIVERS FOR STM
5886 M:      Yannick Fertre <[email protected]>
5887 M:      Philippe Cornu <[email protected]>
5888 M:      Benjamin Gaignard <[email protected]>
5889 M:      Vincent Abriou <[email protected]>
5890 L:      [email protected]
5891 S:      Maintained
5892 T:      git git://anongit.freedesktop.org/drm/drm-misc
5893 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5894 F:      drivers/gpu/drm/stm
5895
5896 DRM DRIVERS FOR TI KEYSTONE
5897 M:      Jyri Sarha <[email protected]>
5898 M:      Tomi Valkeinen <[email protected]>
5899 L:      [email protected]
5900 S:      Maintained
5901 T:      git git://anongit.freedesktop.org/drm/drm-misc
5902 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5903 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5904 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5905 F:      drivers/gpu/drm/tidss/
5906
5907 DRM DRIVERS FOR TI LCDC
5908 M:      Jyri Sarha <[email protected]>
5909 R:      Tomi Valkeinen <[email protected]>
5910 L:      [email protected]
5911 S:      Maintained
5912 F:      Documentation/devicetree/bindings/display/tilcdc/
5913 F:      drivers/gpu/drm/tilcdc/
5914
5915 DRM DRIVERS FOR TI OMAP
5916 M:      Tomi Valkeinen <[email protected]>
5917 L:      [email protected]
5918 S:      Maintained
5919 F:      Documentation/devicetree/bindings/display/ti/
5920 F:      drivers/gpu/drm/omapdrm/
5921
5922 DRM DRIVERS FOR V3D
5923 M:      Eric Anholt <[email protected]>
5924 S:      Supported
5925 T:      git git://anongit.freedesktop.org/drm/drm-misc
5926 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5927 F:      drivers/gpu/drm/v3d/
5928 F:      include/uapi/drm/v3d_drm.h
5929
5930 DRM DRIVERS FOR VC4
5931 M:      Eric Anholt <[email protected]>
5932 S:      Supported
5933 T:      git git://github.com/anholt/linux
5934 T:      git git://anongit.freedesktop.org/drm/drm-misc
5935 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
5936 F:      drivers/gpu/drm/vc4/
5937 F:      include/uapi/drm/vc4_drm.h
5938
5939 DRM DRIVERS FOR VIVANTE GPU IP
5940 M:      Lucas Stach <[email protected]>
5941 R:      Russell King <[email protected]>
5942 R:      Christian Gmeiner <[email protected]>
5943 L:      [email protected] (moderated for non-subscribers)
5944 L:      [email protected]
5945 S:      Maintained
5946 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5947 F:      drivers/gpu/drm/etnaviv/
5948 F:      include/uapi/drm/etnaviv_drm.h
5949
5950 DRM DRIVERS FOR XEN
5951 M:      Oleksandr Andrushchenko <[email protected]>
5952 L:      [email protected]
5953 L:      [email protected] (moderated for non-subscribers)
5954 S:      Supported
5955 T:      git git://anongit.freedesktop.org/drm/drm-misc
5956 F:      Documentation/gpu/xen-front.rst
5957 F:      drivers/gpu/drm/xen/
5958
5959 DRM DRIVERS FOR XILINX
5960 M:      Hyun Kwon <[email protected]>
5961 M:      Laurent Pinchart <[email protected]>
5962 L:      [email protected]
5963 S:      Maintained
5964 T:      git git://anongit.freedesktop.org/drm/drm-misc
5965 F:      Documentation/devicetree/bindings/display/xlnx/
5966 F:      drivers/gpu/drm/xlnx/
5967
5968 DRM DRIVERS FOR ZTE ZX
5969 M:      Shawn Guo <[email protected]>
5970 L:      [email protected]
5971 S:      Maintained
5972 T:      git git://anongit.freedesktop.org/drm/drm-misc
5973 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5974 F:      drivers/gpu/drm/zte/
5975
5976 DRM PANEL DRIVERS
5977 M:      Thierry Reding <[email protected]>
5978 R:      Sam Ravnborg <[email protected]>
5979 L:      [email protected]
5980 S:      Maintained
5981 T:      git git://anongit.freedesktop.org/drm/drm-misc
5982 F:      Documentation/devicetree/bindings/display/panel/
5983 F:      drivers/gpu/drm/drm_panel.c
5984 F:      drivers/gpu/drm/panel/
5985 F:      include/drm/drm_panel.h
5986
5987 DRM TTM SUBSYSTEM
5988 M:      Christian Koenig <[email protected]>
5989 M:      Huang Rui <[email protected]>
5990 L:      [email protected]
5991 S:      Maintained
5992 T:      git git://people.freedesktop.org/~agd5f/linux
5993 F:      drivers/gpu/drm/ttm/
5994 F:      include/drm/ttm/
5995
5996 DSBR100 USB FM RADIO DRIVER
5997 M:      Alexey Klimov <[email protected]>
5998 L:      [email protected]
5999 S:      Maintained
6000 T:      git git://linuxtv.org/media_tree.git
6001 F:      drivers/media/radio/dsbr100.c
6002
6003 DT3155 MEDIA DRIVER
6004 M:      Hans Verkuil <[email protected]>
6005 L:      [email protected]
6006 S:      Odd Fixes
6007 W:      https://linuxtv.org
6008 T:      git git://linuxtv.org/media_tree.git
6009 F:      drivers/media/pci/dt3155/
6010
6011 DVB_USB_AF9015 MEDIA DRIVER
6012 M:      Antti Palosaari <[email protected]>
6013 L:      [email protected]
6014 S:      Maintained
6015 W:      https://linuxtv.org
6016 W:      http://palosaari.fi/linux/
6017 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6018 T:      git git://linuxtv.org/anttip/media_tree.git
6019 F:      drivers/media/usb/dvb-usb-v2/af9015*
6020
6021 DVB_USB_AF9035 MEDIA DRIVER
6022 M:      Antti Palosaari <[email protected]>
6023 L:      [email protected]
6024 S:      Maintained
6025 W:      https://linuxtv.org
6026 W:      http://palosaari.fi/linux/
6027 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6028 T:      git git://linuxtv.org/anttip/media_tree.git
6029 F:      drivers/media/usb/dvb-usb-v2/af9035*
6030
6031 DVB_USB_ANYSEE MEDIA DRIVER
6032 M:      Antti Palosaari <[email protected]>
6033 L:      [email protected]
6034 S:      Maintained
6035 W:      https://linuxtv.org
6036 W:      http://palosaari.fi/linux/
6037 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6038 T:      git git://linuxtv.org/anttip/media_tree.git
6039 F:      drivers/media/usb/dvb-usb-v2/anysee*
6040
6041 DVB_USB_AU6610 MEDIA DRIVER
6042 M:      Antti Palosaari <[email protected]>
6043 L:      [email protected]
6044 S:      Maintained
6045 W:      https://linuxtv.org
6046 W:      http://palosaari.fi/linux/
6047 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6048 T:      git git://linuxtv.org/anttip/media_tree.git
6049 F:      drivers/media/usb/dvb-usb-v2/au6610*
6050
6051 DVB_USB_CE6230 MEDIA DRIVER
6052 M:      Antti Palosaari <[email protected]>
6053 L:      [email protected]
6054 S:      Maintained
6055 W:      https://linuxtv.org
6056 W:      http://palosaari.fi/linux/
6057 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6058 T:      git git://linuxtv.org/anttip/media_tree.git
6059 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6060
6061 DVB_USB_CXUSB MEDIA DRIVER
6062 M:      Michael Krufky <[email protected]>
6063 L:      [email protected]
6064 S:      Maintained
6065 W:      https://linuxtv.org
6066 W:      http://github.com/mkrufky
6067 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6068 T:      git git://linuxtv.org/media_tree.git
6069 F:      drivers/media/usb/dvb-usb/cxusb*
6070
6071 DVB_USB_EC168 MEDIA DRIVER
6072 M:      Antti Palosaari <[email protected]>
6073 L:      [email protected]
6074 S:      Maintained
6075 W:      https://linuxtv.org
6076 W:      http://palosaari.fi/linux/
6077 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6078 T:      git git://linuxtv.org/anttip/media_tree.git
6079 F:      drivers/media/usb/dvb-usb-v2/ec168*
6080
6081 DVB_USB_GL861 MEDIA DRIVER
6082 M:      Antti Palosaari <[email protected]>
6083 L:      [email protected]
6084 S:      Maintained
6085 W:      https://linuxtv.org
6086 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6087 T:      git git://linuxtv.org/anttip/media_tree.git
6088 F:      drivers/media/usb/dvb-usb-v2/gl861*
6089
6090 DVB_USB_MXL111SF MEDIA DRIVER
6091 M:      Michael Krufky <[email protected]>
6092 L:      [email protected]
6093 S:      Maintained
6094 W:      https://linuxtv.org
6095 W:      http://github.com/mkrufky
6096 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6097 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6098 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6099
6100 DVB_USB_RTL28XXU MEDIA DRIVER
6101 M:      Antti Palosaari <[email protected]>
6102 L:      [email protected]
6103 S:      Maintained
6104 W:      https://linuxtv.org
6105 W:      http://palosaari.fi/linux/
6106 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6107 T:      git git://linuxtv.org/anttip/media_tree.git
6108 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6109
6110 DVB_USB_V2 MEDIA DRIVER
6111 M:      Antti Palosaari <[email protected]>
6112 L:      [email protected]
6113 S:      Maintained
6114 W:      https://linuxtv.org
6115 W:      http://palosaari.fi/linux/
6116 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6117 T:      git git://linuxtv.org/anttip/media_tree.git
6118 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6119 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6120
6121 DYNAMIC DEBUG
6122 M:      Jason Baron <[email protected]>
6123 S:      Maintained
6124 F:      include/linux/dynamic_debug.h
6125 F:      lib/dynamic_debug.c
6126
6127 DYNAMIC INTERRUPT MODERATION
6128 M:      Tal Gilboa <[email protected]>
6129 S:      Maintained
6130 F:      Documentation/networking/net_dim.rst
6131 F:      include/linux/dim.h
6132 F:      lib/dim/
6133
6134 DZ DECSTATION DZ11 SERIAL DRIVER
6135 M:      "Maciej W. Rozycki" <[email protected]>
6136 S:      Maintained
6137 F:      drivers/tty/serial/dz.*
6138
6139 E3X0 POWER BUTTON DRIVER
6140 M:      Moritz Fischer <[email protected]>
6141 L:      [email protected]
6142 S:      Supported
6143 W:      http://www.ettus.com
6144 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6145 F:      drivers/input/misc/e3x0-button.c
6146
6147 E4000 MEDIA DRIVER
6148 M:      Antti Palosaari <[email protected]>
6149 L:      [email protected]
6150 S:      Maintained
6151 W:      https://linuxtv.org
6152 W:      http://palosaari.fi/linux/
6153 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6154 T:      git git://linuxtv.org/anttip/media_tree.git
6155 F:      drivers/media/tuners/e4000*
6156
6157 EARTH_PT1 MEDIA DRIVER
6158 M:      Akihiro Tsukada <[email protected]>
6159 L:      [email protected]
6160 S:      Odd Fixes
6161 F:      drivers/media/pci/pt1/
6162
6163 EARTH_PT3 MEDIA DRIVER
6164 M:      Akihiro Tsukada <[email protected]>
6165 L:      [email protected]
6166 S:      Odd Fixes
6167 F:      drivers/media/pci/pt3/
6168
6169 EC100 MEDIA DRIVER
6170 M:      Antti Palosaari <[email protected]>
6171 L:      [email protected]
6172 S:      Maintained
6173 W:      https://linuxtv.org
6174 W:      http://palosaari.fi/linux/
6175 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6176 T:      git git://linuxtv.org/anttip/media_tree.git
6177 F:      drivers/media/dvb-frontends/ec100*
6178
6179 ECRYPT FILE SYSTEM
6180 M:      Tyler Hicks <[email protected]>
6181 L:      [email protected]
6182 S:      Odd Fixes
6183 W:      http://ecryptfs.org
6184 W:      https://launchpad.net/ecryptfs
6185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6186 F:      Documentation/filesystems/ecryptfs.rst
6187 F:      fs/ecryptfs/
6188
6189 EDAC-AMD64
6190 M:      Borislav Petkov <[email protected]>
6191 L:      [email protected]
6192 S:      Maintained
6193 F:      drivers/edac/amd64_edac*
6194
6195 EDAC-ARMADA
6196 M:      Jan Luebbe <[email protected]>
6197 L:      [email protected]
6198 S:      Maintained
6199 F:      drivers/edac/armada_xp_*
6200
6201 EDAC-AST2500
6202 M:      Stefan Schaeckeler <[email protected]>
6203 S:      Supported
6204 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6205 F:      drivers/edac/aspeed_edac.c
6206
6207 EDAC-BLUEFIELD
6208 M:      Shravan Kumar Ramani <[email protected]>
6209 S:      Supported
6210 F:      drivers/edac/bluefield_edac.c
6211
6212 EDAC-CALXEDA
6213 M:      Andre Przywara <[email protected]>
6214 L:      [email protected]
6215 S:      Maintained
6216 F:      drivers/edac/highbank*
6217
6218 EDAC-CAVIUM OCTEON
6219 M:      Ralf Baechle <[email protected]>
6220 L:      [email protected]
6221 L:      [email protected]
6222 S:      Supported
6223 F:      drivers/edac/octeon_edac*
6224
6225 EDAC-CAVIUM THUNDERX
6226 M:      Robert Richter <[email protected]>
6227 L:      [email protected]
6228 S:      Odd Fixes
6229 F:      drivers/edac/thunderx_edac*
6230
6231 EDAC-CORE
6232 M:      Borislav Petkov <[email protected]>
6233 M:      Mauro Carvalho Chehab <[email protected]>
6234 M:      Tony Luck <[email protected]>
6235 R:      James Morse <[email protected]>
6236 R:      Robert Richter <[email protected]>
6237 L:      [email protected]
6238 S:      Supported
6239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6240 F:      Documentation/admin-guide/ras.rst
6241 F:      Documentation/driver-api/edac.rst
6242 F:      drivers/edac/
6243 F:      include/linux/edac.h
6244
6245 EDAC-DMC520
6246 M:      Lei Wang <[email protected]>
6247 L:      [email protected]
6248 S:      Supported
6249 F:      drivers/edac/dmc520_edac.c
6250
6251 EDAC-E752X
6252 M:      Mark Gross <[email protected]>
6253 L:      [email protected]
6254 S:      Maintained
6255 F:      drivers/edac/e752x_edac.c
6256
6257 EDAC-E7XXX
6258 L:      [email protected]
6259 S:      Maintained
6260 F:      drivers/edac/e7xxx_edac.c
6261
6262 EDAC-FSL_DDR
6263 M:      York Sun <[email protected]>
6264 L:      [email protected]
6265 S:      Maintained
6266 F:      drivers/edac/fsl_ddr_edac.*
6267
6268 EDAC-GHES
6269 M:      Mauro Carvalho Chehab <[email protected]>
6270 L:      [email protected]
6271 S:      Maintained
6272 F:      drivers/edac/ghes_edac.c
6273
6274 EDAC-I10NM
6275 M:      Tony Luck <[email protected]>
6276 L:      [email protected]
6277 S:      Maintained
6278 F:      drivers/edac/i10nm_base.c
6279
6280 EDAC-I3000
6281 L:      [email protected]
6282 S:      Orphan
6283 F:      drivers/edac/i3000_edac.c
6284
6285 EDAC-I5000
6286 L:      [email protected]
6287 S:      Maintained
6288 F:      drivers/edac/i5000_edac.c
6289
6290 EDAC-I5400
6291 M:      Mauro Carvalho Chehab <[email protected]>
6292 L:      [email protected]
6293 S:      Maintained
6294 F:      drivers/edac/i5400_edac.c
6295
6296 EDAC-I7300
6297 M:      Mauro Carvalho Chehab <[email protected]>
6298 L:      [email protected]
6299 S:      Maintained
6300 F:      drivers/edac/i7300_edac.c
6301
6302 EDAC-I7CORE
6303 M:      Mauro Carvalho Chehab <[email protected]>
6304 L:      [email protected]
6305 S:      Maintained
6306 F:      drivers/edac/i7core_edac.c
6307
6308 EDAC-I82443BXGX
6309 M:      Tim Small <[email protected]>
6310 L:      [email protected]
6311 S:      Maintained
6312 F:      drivers/edac/i82443bxgx_edac.c
6313
6314 EDAC-I82975X
6315 M:      "Arvind R." <[email protected]>
6316 L:      [email protected]
6317 S:      Maintained
6318 F:      drivers/edac/i82975x_edac.c
6319
6320 EDAC-IE31200
6321 M:      Jason Baron <[email protected]>
6322 L:      [email protected]
6323 S:      Maintained
6324 F:      drivers/edac/ie31200_edac.c
6325
6326 EDAC-MPC85XX
6327 M:      Johannes Thumshirn <[email protected]>
6328 L:      [email protected]
6329 S:      Maintained
6330 F:      drivers/edac/mpc85xx_edac.[ch]
6331
6332 EDAC-PASEMI
6333 M:      Egor Martovetsky <[email protected]>
6334 L:      [email protected]
6335 S:      Maintained
6336 F:      drivers/edac/pasemi_edac.c
6337
6338 EDAC-PND2
6339 M:      Tony Luck <[email protected]>
6340 L:      [email protected]
6341 S:      Maintained
6342 F:      drivers/edac/pnd2_edac.[ch]
6343
6344 EDAC-QCOM
6345 M:      Channagoud Kadabi <[email protected]>
6346 M:      Venkata Narendra Kumar Gutta <[email protected]>
6347 L:      [email protected]
6348 L:      [email protected]
6349 S:      Maintained
6350 F:      drivers/edac/qcom_edac.c
6351
6352 EDAC-R82600
6353 M:      Tim Small <[email protected]>
6354 L:      [email protected]
6355 S:      Maintained
6356 F:      drivers/edac/r82600_edac.c
6357
6358 EDAC-SBRIDGE
6359 M:      Tony Luck <[email protected]>
6360 R:      Qiuxu Zhuo <[email protected]>
6361 L:      [email protected]
6362 S:      Maintained
6363 F:      drivers/edac/sb_edac.c
6364
6365 EDAC-SIFIVE
6366 M:      Yash Shah <[email protected]>
6367 L:      [email protected]
6368 S:      Supported
6369 F:      drivers/edac/sifive_edac.c
6370
6371 EDAC-SKYLAKE
6372 M:      Tony Luck <[email protected]>
6373 L:      [email protected]
6374 S:      Maintained
6375 F:      drivers/edac/skx_*.c
6376
6377 EDAC-TI
6378 M:      Tero Kristo <[email protected]>
6379 L:      [email protected]
6380 S:      Maintained
6381 F:      drivers/edac/ti_edac.c
6382
6383 EDIROL UA-101/UA-1000 DRIVER
6384 M:      Clemens Ladisch <[email protected]>
6385 L:      [email protected] (moderated for non-subscribers)
6386 S:      Maintained
6387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6388 F:      sound/usb/misc/ua101.c
6389
6390 EFI TEST DRIVER
6391 M:      Ivan Hu <[email protected]>
6392 M:      Ard Biesheuvel <[email protected]>
6393 L:      [email protected]
6394 S:      Maintained
6395 F:      drivers/firmware/efi/test/
6396
6397 EFI VARIABLE FILESYSTEM
6398 M:      Matthew Garrett <[email protected]>
6399 M:      Jeremy Kerr <[email protected]>
6400 M:      Ard Biesheuvel <[email protected]>
6401 L:      [email protected]
6402 S:      Maintained
6403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6404 F:      fs/efivarfs/
6405
6406 EFIFB FRAMEBUFFER DRIVER
6407 M:      Peter Jones <[email protected]>
6408 L:      [email protected]
6409 S:      Maintained
6410 F:      drivers/video/fbdev/efifb.c
6411
6412 EFS FILESYSTEM
6413 S:      Orphan
6414 W:      http://aeschi.ch.eu.org/efs/
6415 F:      fs/efs/
6416
6417 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6418 M:      Douglas Miller <[email protected]>
6419 L:      [email protected]
6420 S:      Maintained
6421 F:      drivers/net/ethernet/ibm/ehea/
6422
6423 EM28XX VIDEO4LINUX DRIVER
6424 M:      Mauro Carvalho Chehab <[email protected]>
6425 L:      [email protected]
6426 S:      Maintained
6427 W:      https://linuxtv.org
6428 T:      git git://linuxtv.org/media_tree.git
6429 F:      Documentation/admin-guide/media/em28xx*
6430 F:      drivers/media/usb/em28xx/
6431
6432 EMBEDDED LINUX
6433 M:      Paul Gortmaker <[email protected]>
6434 M:      Matt Mackall <[email protected]>
6435 M:      David Woodhouse <[email protected]>
6436 L:      [email protected]
6437 S:      Maintained
6438
6439 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6440 M:      Adrian Hunter <[email protected]>
6441 M:      Ritesh Harjani <[email protected]>
6442 M:      Asutosh Das <[email protected]>
6443 L:      [email protected]
6444 S:      Maintained
6445 F:      drivers/mmc/host/cqhci*
6446
6447 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6448 M:      Subbu Seetharaman <[email protected]>
6449 M:      Ketan Mukadam <[email protected]>
6450 M:      Jitendra Bhivare <[email protected]>
6451 L:      [email protected]
6452 S:      Supported
6453 W:      http://www.broadcom.com
6454 F:      drivers/scsi/be2iscsi/
6455
6456 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6457 M:      Ajit Khaparde <[email protected]>
6458 M:      Sriharsha Basavapatna <[email protected]>
6459 M:      Somnath Kotur <[email protected]>
6460 L:      [email protected]
6461 S:      Supported
6462 W:      http://www.emulex.com
6463 F:      drivers/net/ethernet/emulex/benet/
6464
6465 EMULEX ONECONNECT ROCE DRIVER
6466 M:      Selvin Xavier <[email protected]>
6467 M:      Devesh Sharma <[email protected]>
6468 L:      [email protected]
6469 S:      Odd Fixes
6470 W:      http://www.broadcom.com
6471 F:      drivers/infiniband/hw/ocrdma/
6472 F:      include/uapi/rdma/ocrdma-abi.h
6473
6474 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6475 M:      James Smart <[email protected]>
6476 M:      Dick Kennedy <[email protected]>
6477 L:      [email protected]
6478 S:      Supported
6479 W:      http://www.broadcom.com
6480 F:      drivers/scsi/lpfc/
6481
6482 ENE CB710 FLASH CARD READER DRIVER
6483 M:      Michał Mirosław <[email protected]>
6484 S:      Maintained
6485 F:      drivers/misc/cb710/
6486 F:      drivers/mmc/host/cb710-mmc.*
6487 F:      include/linux/cb710.h
6488
6489 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6490 M:      Maxim Levitsky <[email protected]>
6491 S:      Maintained
6492 F:      drivers/media/rc/ene_ir.*
6493
6494 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6495 M:      Laurentiu Tudor <[email protected]>
6496 L:      [email protected]
6497 S:      Maintained
6498 F:      drivers/tty/ehv_bytechan.c
6499
6500 EPSON S1D13XXX FRAMEBUFFER DRIVER
6501 M:      Kristoffer Ericson <[email protected]>
6502 S:      Maintained
6503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6504 F:      drivers/video/fbdev/s1d13xxxfb.c
6505 F:      include/video/s1d13xxxfb.h
6506
6507 EROFS FILE SYSTEM
6508 M:      Gao Xiang <[email protected]>
6509 M:      Chao Yu <[email protected]>
6510 L:      [email protected]
6511 S:      Maintained
6512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6513 F:      Documentation/filesystems/erofs.rst
6514 F:      fs/erofs/
6515 F:      include/trace/events/erofs.h
6516
6517 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6518 M:      Jeff Layton <[email protected]>
6519 S:      Maintained
6520 F:      include/linux/errseq.h
6521 F:      lib/errseq.c
6522
6523 ET131X NETWORK DRIVER
6524 M:      Mark Einon <[email protected]>
6525 S:      Odd Fixes
6526 F:      drivers/net/ethernet/agere/
6527
6528 ETHERNET BRIDGE
6529 M:      Roopa Prabhu <[email protected]>
6530 M:      Nikolay Aleksandrov <[email protected]>
6531 L:      [email protected] (moderated for non-subscribers)
6532 L:      [email protected]
6533 S:      Maintained
6534 W:      http://www.linuxfoundation.org/en/Net:Bridge
6535 F:      include/linux/netfilter_bridge/
6536 F:      net/bridge/
6537
6538 ETHERNET PHY LIBRARY
6539 M:      Andrew Lunn <[email protected]>
6540 M:      Heiner Kallweit <[email protected]>
6541 R:      Russell King <[email protected]>
6542 L:      [email protected]
6543 S:      Maintained
6544 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6545 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6546 F:      Documentation/devicetree/bindings/net/mdio*
6547 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6548 F:      Documentation/networking/phy.rst
6549 F:      drivers/net/phy/
6550 F:      drivers/of/of_mdio.c
6551 F:      drivers/of/of_net.c
6552 F:      include/dt-bindings/net/qca-ar803x.h
6553 F:      include/linux/*mdio*.h
6554 F:      include/linux/of_net.h
6555 F:      include/linux/phy.h
6556 F:      include/linux/phy_fixed.h
6557 F:      include/linux/platform_data/mdio-bcm-unimac.h
6558 F:      include/linux/platform_data/mdio-gpio.h
6559 F:      include/trace/events/mdio.h
6560 F:      include/uapi/linux/mdio.h
6561 F:      include/uapi/linux/mii.h
6562
6563 EXFAT FILE SYSTEM
6564 M:      Namjae Jeon <[email protected]>
6565 M:      Sungjong Seo <[email protected]>
6566 L:      [email protected]
6567 S:      Maintained
6568 F:      fs/exfat/
6569
6570 EXT2 FILE SYSTEM
6571 M:      Jan Kara <[email protected]>
6572 L:      [email protected]
6573 S:      Maintained
6574 F:      Documentation/filesystems/ext2.rst
6575 F:      fs/ext2/
6576 F:      include/linux/ext2*
6577
6578 EXT4 FILE SYSTEM
6579 M:      "Theodore Ts'o" <[email protected]>
6580 M:      Andreas Dilger <[email protected]>
6581 L:      [email protected]
6582 S:      Maintained
6583 W:      http://ext4.wiki.kernel.org
6584 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6586 F:      Documentation/filesystems/ext4/
6587 F:      fs/ext4/
6588
6589 Extended Verification Module (EVM)
6590 M:      Mimi Zohar <[email protected]>
6591 L:      [email protected]
6592 S:      Supported
6593 F:      security/integrity/evm/
6594
6595 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6596 M:      Ard Biesheuvel <[email protected]>
6597 L:      [email protected]
6598 S:      Maintained
6599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6600 F:      Documentation/admin-guide/efi-stub.rst
6601 F:      arch/*/include/asm/efi.h
6602 F:      arch/*/kernel/efi.c
6603 F:      arch/arm/boot/compressed/efi-header.S
6604 F:      arch/arm64/kernel/efi-entry.S
6605 F:      arch/x86/platform/efi/
6606 F:      drivers/firmware/efi/
6607 F:      include/linux/efi*.h
6608
6609 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6610 M:      MyungJoo Ham <[email protected]>
6611 M:      Chanwoo Choi <[email protected]>
6612 L:      [email protected]
6613 S:      Maintained
6614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6615 F:      Documentation/devicetree/bindings/extcon/
6616 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6617 F:      drivers/extcon/
6618 F:      include/linux/extcon.h
6619 F:      include/linux/extcon/
6620
6621 EXTRA BOOT CONFIG
6622 M:      Masami Hiramatsu <[email protected]>
6623 S:      Maintained
6624 F:      Documentation/admin-guide/bootconfig.rst
6625 F:      fs/proc/bootconfig.c
6626 F:      include/linux/bootconfig.h
6627 F:      lib/bootconfig.c
6628 F:      tools/bootconfig/*
6629
6630 EXYNOS DP DRIVER
6631 M:      Jingoo Han <[email protected]>
6632 L:      [email protected]
6633 S:      Maintained
6634 F:      drivers/gpu/drm/exynos/exynos_dp*
6635
6636 EXYNOS SYSMMU (IOMMU) driver
6637 M:      Marek Szyprowski <[email protected]>
6638 L:      [email protected]
6639 S:      Maintained
6640 F:      drivers/iommu/exynos-iommu.c
6641
6642 EZchip NPS platform support
6643 M:      Vineet Gupta <[email protected]>
6644 M:      Ofer Levi <[email protected]>
6645 S:      Supported
6646 F:      arch/arc/boot/dts/eznps.dts
6647 F:      arch/arc/plat-eznps
6648
6649 F2FS FILE SYSTEM
6650 M:      Jaegeuk Kim <[email protected]>
6651 M:      Chao Yu <[email protected]>
6652 L:      [email protected]
6653 S:      Maintained
6654 W:      https://f2fs.wiki.kernel.org/
6655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6656 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6657 F:      Documentation/filesystems/f2fs.rst
6658 F:      fs/f2fs/
6659 F:      include/linux/f2fs_fs.h
6660 F:      include/trace/events/f2fs.h
6661
6662 F71805F HARDWARE MONITORING DRIVER
6663 M:      Jean Delvare <[email protected]>
6664 L:      [email protected]
6665 S:      Maintained
6666 F:      Documentation/hwmon/f71805f.rst
6667 F:      drivers/hwmon/f71805f.c
6668
6669 FADDR2LINE
6670 M:      Josh Poimboeuf <[email protected]>
6671 S:      Maintained
6672 F:      scripts/faddr2line
6673
6674 FAILOVER MODULE
6675 M:      Sridhar Samudrala <[email protected]>
6676 L:      [email protected]
6677 S:      Supported
6678 F:      Documentation/networking/failover.rst
6679 F:      include/net/failover.h
6680 F:      net/core/failover.c
6681
6682 FANOTIFY
6683 M:      Jan Kara <[email protected]>
6684 R:      Amir Goldstein <[email protected]>
6685 L:      [email protected]
6686 S:      Maintained
6687 F:      fs/notify/fanotify/
6688 F:      include/linux/fanotify.h
6689 F:      include/uapi/linux/fanotify.h
6690
6691 FARSYNC SYNCHRONOUS DRIVER
6692 M:      Kevin Curtis <[email protected]>
6693 S:      Supported
6694 W:      http://www.farsite.co.uk/
6695 F:      drivers/net/wan/farsync.*
6696
6697 FAULT INJECTION SUPPORT
6698 M:      Akinobu Mita <[email protected]>
6699 S:      Supported
6700 F:      Documentation/fault-injection/
6701 F:      lib/fault-inject.c
6702
6703 FBTFT Framebuffer drivers
6704 L:      [email protected]
6705 L:      [email protected]
6706 S:      Orphan
6707 F:      drivers/staging/fbtft/
6708
6709 FC0011 TUNER DRIVER
6710 M:      Michael Buesch <[email protected]>
6711 L:      [email protected]
6712 S:      Maintained
6713 F:      drivers/media/tuners/fc0011.c
6714 F:      drivers/media/tuners/fc0011.h
6715
6716 FC2580 MEDIA DRIVER
6717 M:      Antti Palosaari <[email protected]>
6718 L:      [email protected]
6719 S:      Maintained
6720 W:      https://linuxtv.org
6721 W:      http://palosaari.fi/linux/
6722 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6723 T:      git git://linuxtv.org/anttip/media_tree.git
6724 F:      drivers/media/tuners/fc2580*
6725
6726 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6727 M:      Hannes Reinecke <[email protected]>
6728 L:      [email protected]
6729 S:      Supported
6730 W:      www.Open-FCoE.org
6731 F:      drivers/scsi/fcoe/
6732 F:      drivers/scsi/libfc/
6733 F:      include/scsi/fc/
6734 F:      include/scsi/libfc.h
6735 F:      include/scsi/libfcoe.h
6736 F:      include/uapi/scsi/fc/
6737
6738 FILE LOCKING (flock() and fcntl()/lockf())
6739 M:      Jeff Layton <[email protected]>
6740 M:      "J. Bruce Fields" <[email protected]>
6741 L:      [email protected]
6742 S:      Maintained
6743 F:      fs/fcntl.c
6744 F:      fs/locks.c
6745 F:      include/linux/fcntl.h
6746 F:      include/uapi/linux/fcntl.h
6747
6748 FILESYSTEM DIRECT ACCESS (DAX)
6749 M:      Dan Williams <[email protected]>
6750 R:      Matthew Wilcox <[email protected]>
6751 R:      Jan Kara <[email protected]>
6752 L:      [email protected]
6753 L:      [email protected]
6754 S:      Supported
6755 F:      fs/dax.c
6756 F:      include/linux/dax.h
6757 F:      include/trace/events/fs_dax.h
6758
6759 FILESYSTEMS (VFS and infrastructure)
6760 M:      Alexander Viro <[email protected]>
6761 L:      [email protected]
6762 S:      Maintained
6763 F:      fs/*
6764 F:      include/linux/fs.h
6765 F:      include/linux/fs_types.h
6766 F:      include/uapi/linux/fs.h
6767 F:      include/uapi/linux/openat2.h
6768
6769 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6770 M:      Riku Voipio <[email protected]>
6771 L:      [email protected]
6772 S:      Maintained
6773 F:      drivers/hwmon/f75375s.c
6774 F:      include/linux/f75375s.h
6775
6776 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6777 M:      Clemens Ladisch <[email protected]>
6778 M:      Takashi Sakamoto <[email protected]>
6779 L:      [email protected] (moderated for non-subscribers)
6780 S:      Maintained
6781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6782 F:      include/uapi/sound/firewire.h
6783 F:      sound/firewire/
6784
6785 FIREWIRE MEDIA DRIVERS (firedtv)
6786 M:      Stefan Richter <[email protected]>
6787 L:      [email protected]
6788 L:      [email protected]
6789 S:      Maintained
6790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6791 F:      drivers/media/firewire/
6792
6793 FIREWIRE SBP-2 TARGET
6794 M:      Chris Boot <[email protected]>
6795 L:      [email protected]
6796 L:      [email protected]
6797 L:      [email protected]
6798 S:      Maintained
6799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6800 F:      drivers/target/sbp/
6801
6802 FIREWIRE SUBSYSTEM
6803 M:      Stefan Richter <[email protected]>
6804 L:      [email protected]
6805 S:      Maintained
6806 W:      http://ieee1394.wiki.kernel.org/
6807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6808 F:      drivers/firewire/
6809 F:      include/linux/firewire.h
6810 F:      include/uapi/linux/firewire*.h
6811 F:      tools/firewire/
6812
6813 FIRMWARE LOADER (request_firmware)
6814 M:      Luis Chamberlain <[email protected]>
6815 L:      [email protected]
6816 S:      Maintained
6817 F:      Documentation/firmware_class/
6818 F:      drivers/base/firmware_loader/
6819 F:      include/linux/firmware.h
6820
6821 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6822 M:      Joshua Morris <[email protected]>
6823 M:      Philip Kelleher <[email protected]>
6824 S:      Maintained
6825 F:      drivers/block/rsxx/
6826
6827 FLEXTIMER FTM-QUADDEC DRIVER
6828 M:      Patrick Havelange <[email protected]>
6829 L:      [email protected]
6830 S:      Maintained
6831 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6832 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6833 F:      drivers/counter/ftm-quaddec.c
6834
6835 FLOPPY DRIVER
6836 M:      Denis Efremov <[email protected]>
6837 L:      [email protected]
6838 S:      Odd Fixes
6839 F:      drivers/block/floppy.c
6840
6841 FLYSKY FSIA6B RC RECEIVER
6842 M:      Markus Koch <[email protected]>
6843 L:      [email protected]
6844 S:      Maintained
6845 F:      drivers/input/joystick/fsia6b.c
6846
6847 FORCEDETH GIGABIT ETHERNET DRIVER
6848 M:      Rain River <[email protected]>
6849 M:      Zhu Yanjun <[email protected]>
6850 L:      [email protected]
6851 S:      Maintained
6852 F:      drivers/net/ethernet/nvidia/*
6853
6854 FPGA DFL DRIVERS
6855 M:      Wu Hao <[email protected]>
6856 R:      Tom Rix <[email protected]>
6857 L:      [email protected]
6858 S:      Maintained
6859 F:      Documentation/ABI/testing/sysfs-bus-dfl
6860 F:      Documentation/fpga/dfl.rst
6861 F:      drivers/fpga/dfl*
6862 F:      include/uapi/linux/fpga-dfl.h
6863
6864 FPGA MANAGER FRAMEWORK
6865 M:      Moritz Fischer <[email protected]>
6866 R:      Tom Rix <[email protected]>
6867 L:      [email protected]
6868 S:      Maintained
6869 W:      http://www.rocketboards.org
6870 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6872 F:      Documentation/devicetree/bindings/fpga/
6873 F:      Documentation/driver-api/fpga/
6874 F:      Documentation/fpga/
6875 F:      drivers/fpga/
6876 F:      include/linux/fpga/
6877
6878 FPU EMULATOR
6879 M:      Bill Metzenthen <[email protected]>
6880 S:      Maintained
6881 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6882 F:      arch/x86/math-emu/
6883
6884 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6885 L:      [email protected]
6886 S:      Orphan
6887 F:      drivers/net/wan/dlci.c
6888 F:      drivers/net/wan/sdla.c
6889
6890 FRAMEBUFFER LAYER
6891 M:      Bartlomiej Zolnierkiewicz <[email protected]>
6892 L:      [email protected]
6893 L:      [email protected]
6894 S:      Maintained
6895 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6896 T:      git git://anongit.freedesktop.org/drm/drm-misc
6897 F:      Documentation/fb/
6898 F:      drivers/video/
6899 F:      include/linux/fb.h
6900 F:      include/uapi/linux/fb.h
6901 F:      include/uapi/video/
6902 F:      include/video/
6903
6904 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6905 M:      Horia Geantă <[email protected]>
6906 M:      Aymen Sghaier <[email protected]>
6907 L:      [email protected]
6908 S:      Maintained
6909 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6910 F:      drivers/crypto/caam/
6911
6912 FREESCALE COLDFIRE M5441X MMC DRIVER
6913 M:      Angelo Dureghello <[email protected]>
6914 L:      [email protected]
6915 S:      Maintained
6916 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6917 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6918
6919 FREESCALE DIU FRAMEBUFFER DRIVER
6920 M:      Timur Tabi <[email protected]>
6921 L:      [email protected]
6922 S:      Maintained
6923 F:      drivers/video/fbdev/fsl-diu-fb.*
6924
6925 FREESCALE DMA DRIVER
6926 M:      Li Yang <[email protected]>
6927 M:      Zhang Wei <[email protected]>
6928 L:      [email protected]
6929 S:      Maintained
6930 F:      drivers/dma/fsldma.*
6931
6932 FREESCALE DSPI DRIVER
6933 M:      Vladimir Oltean <[email protected]>
6934 L:      [email protected]
6935 S:      Maintained
6936 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
6937 F:      drivers/spi/spi-fsl-dspi.c
6938 F:      include/linux/spi/spi-fsl-dspi.h
6939
6940 FREESCALE ENETC ETHERNET DRIVERS
6941 M:      Claudiu Manoil <[email protected]>
6942 L:      [email protected]
6943 S:      Maintained
6944 F:      drivers/net/ethernet/freescale/enetc/
6945
6946 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6947 M:      Claudiu Manoil <[email protected]>
6948 L:      [email protected]
6949 S:      Maintained
6950 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6951 F:      drivers/net/ethernet/freescale/gianfar*
6952
6953 FREESCALE GPMI NAND DRIVER
6954 M:      Han Xu <[email protected]>
6955 L:      [email protected]
6956 S:      Maintained
6957 F:      drivers/mtd/nand/raw/gpmi-nand/*
6958
6959 FREESCALE I2C CPM DRIVER
6960 M:      Jochen Friedrich <[email protected]>
6961 L:      [email protected]
6962 L:      [email protected]
6963 S:      Maintained
6964 F:      drivers/i2c/busses/i2c-cpm.c
6965
6966 FREESCALE IMX / MXC FEC DRIVER
6967 M:      Fugang Duan <[email protected]>
6968 L:      [email protected]
6969 S:      Maintained
6970 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6971 F:      drivers/net/ethernet/freescale/fec.h
6972 F:      drivers/net/ethernet/freescale/fec_main.c
6973 F:      drivers/net/ethernet/freescale/fec_ptp.c
6974
6975 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6976 M:      Sascha Hauer <[email protected]>
6977 R:      Pengutronix Kernel Team <[email protected]>
6978 L:      [email protected]
6979 L:      [email protected] (moderated for non-subscribers)
6980 S:      Maintained
6981 F:      drivers/video/fbdev/imxfb.c
6982 F:      include/linux/platform_data/video-imxfb.h
6983
6984 FREESCALE IMX DDR PMU DRIVER
6985 M:      Frank Li <[email protected]>
6986 L:      [email protected]
6987 S:      Maintained
6988 F:      Documentation/admin-guide/perf/imx-ddr.rst
6989 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6990 F:      drivers/perf/fsl_imx8_ddr_perf.c
6991
6992 FREESCALE IMX I2C DRIVER
6993 M:      Oleksij Rempel <[email protected]>
6994 R:      Pengutronix Kernel Team <[email protected]>
6995 L:      [email protected]
6996 S:      Maintained
6997 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6998 F:      drivers/i2c/busses/i2c-imx.c
6999
7000 FREESCALE IMX LPI2C DRIVER
7001 M:      Dong Aisheng <[email protected]>
7002 L:      [email protected]
7003 L:      [email protected]
7004 S:      Maintained
7005 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
7006 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7007
7008 FREESCALE QORIQ DPAA ETHERNET DRIVER
7009 M:      Madalin Bucur <[email protected]>
7010 L:      [email protected]
7011 S:      Maintained
7012 F:      drivers/net/ethernet/freescale/dpaa
7013
7014 FREESCALE QORIQ DPAA FMAN DRIVER
7015 M:      Madalin Bucur <[email protected]>
7016 L:      [email protected]
7017 S:      Maintained
7018 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7019 F:      drivers/net/ethernet/freescale/fman
7020
7021 FREESCALE QORIQ PTP CLOCK DRIVER
7022 M:      Yangbo Lu <[email protected]>
7023 L:      [email protected]
7024 S:      Maintained
7025 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7026 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7027 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7028 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7029 F:      drivers/ptp/ptp_qoriq.c
7030 F:      drivers/ptp/ptp_qoriq_debugfs.c
7031 F:      include/linux/fsl/ptp_qoriq.h
7032
7033 FREESCALE QUAD SPI DRIVER
7034 M:      Han Xu <[email protected]>
7035 L:      [email protected]
7036 S:      Maintained
7037 F:      drivers/spi/spi-fsl-qspi.c
7038
7039 FREESCALE QUICC ENGINE LIBRARY
7040 M:      Qiang Zhao <[email protected]>
7041 L:      [email protected]
7042 S:      Maintained
7043 F:      drivers/soc/fsl/qe/
7044 F:      include/soc/fsl/*qe*.h
7045 F:      include/soc/fsl/*ucc*.h
7046
7047 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7048 M:      Li Yang <[email protected]>
7049 L:      [email protected]
7050 L:      [email protected]
7051 S:      Maintained
7052 F:      drivers/net/ethernet/freescale/ucc_geth*
7053
7054 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7055 M:      Zhao Qiang <[email protected]>
7056 L:      [email protected]
7057 L:      [email protected]
7058 S:      Maintained
7059 F:      drivers/net/wan/fsl_ucc_hdlc*
7060
7061 FREESCALE QUICC ENGINE UCC UART DRIVER
7062 M:      Timur Tabi <[email protected]>
7063 L:      [email protected]
7064 S:      Maintained
7065 F:      drivers/tty/serial/ucc_uart.c
7066
7067 FREESCALE SOC DRIVERS
7068 M:      Li Yang <[email protected]>
7069 L:      [email protected]
7070 L:      [email protected]
7071 S:      Maintained
7072 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7073 F:      Documentation/devicetree/bindings/soc/fsl/
7074 F:      drivers/soc/fsl/
7075 F:      include/linux/fsl/
7076
7077 FREESCALE SOC FS_ENET DRIVER
7078 M:      Pantelis Antoniou <[email protected]>
7079 L:      [email protected]
7080 L:      [email protected]
7081 S:      Maintained
7082 F:      drivers/net/ethernet/freescale/fs_enet/
7083 F:      include/linux/fs_enet_pd.h
7084
7085 FREESCALE SOC SOUND DRIVERS
7086 M:      Timur Tabi <[email protected]>
7087 M:      Nicolin Chen <[email protected]>
7088 M:      Xiubo Li <[email protected]>
7089 R:      Fabio Estevam <[email protected]>
7090 R:      Shengjiu Wang <[email protected]>
7091 L:      [email protected] (moderated for non-subscribers)
7092 L:      [email protected]
7093 S:      Maintained
7094 F:      sound/soc/fsl/fsl*
7095 F:      sound/soc/fsl/imx*
7096 F:      sound/soc/fsl/mpc8610_hpcd.c
7097
7098 FREESCALE USB PERIPHERAL DRIVERS
7099 M:      Li Yang <[email protected]>
7100 L:      [email protected]
7101 L:      [email protected]
7102 S:      Maintained
7103 F:      drivers/usb/gadget/udc/fsl*
7104
7105 FREESCALE USB PHY DRIVER
7106 M:      Ran Wang <[email protected]>
7107 L:      [email protected]
7108 L:      [email protected]
7109 S:      Maintained
7110 F:      drivers/usb/phy/phy-fsl-usb*
7111
7112 FREEVXFS FILESYSTEM
7113 M:      Christoph Hellwig <[email protected]>
7114 S:      Maintained
7115 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7116 F:      fs/freevxfs/
7117
7118 FREEZER
7119 M:      "Rafael J. Wysocki" <[email protected]>
7120 M:      Pavel Machek <[email protected]>
7121 L:      [email protected]
7122 S:      Supported
7123 F:      Documentation/power/freezing-of-tasks.rst
7124 F:      include/linux/freezer.h
7125 F:      kernel/freezer.c
7126
7127 FRONTSWAP API
7128 M:      Konrad Rzeszutek Wilk <[email protected]>
7129 L:      [email protected]
7130 S:      Maintained
7131 F:      include/linux/frontswap.h
7132 F:      mm/frontswap.c
7133
7134 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7135 M:      David Howells <[email protected]>
7136 L:      [email protected] (moderated for non-subscribers)
7137 S:      Supported
7138 F:      Documentation/filesystems/caching/
7139 F:      fs/fscache/
7140 F:      include/linux/fscache*.h
7141
7142 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7143 M:      Theodore Y. Ts'o <[email protected]>
7144 M:      Jaegeuk Kim <[email protected]>
7145 M:      Eric Biggers <[email protected]>
7146 L:      [email protected]
7147 S:      Supported
7148 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7149 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7150 F:      Documentation/filesystems/fscrypt.rst
7151 F:      fs/crypto/
7152 F:      include/linux/fscrypt*.h
7153 F:      include/uapi/linux/fscrypt.h
7154
7155 FSI SUBSYSTEM
7156 M:      Jeremy Kerr <[email protected]>
7157 M:      Joel Stanley <[email protected]>
7158 R:      Alistar Popple <[email protected]>
7159 R:      Eddie James <[email protected]>
7160 L:      [email protected]
7161 S:      Supported
7162 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7164 F:      drivers/fsi/
7165 F:      include/linux/fsi*.h
7166 F:      include/trace/events/fsi*.h
7167
7168 FSI-ATTACHED I2C DRIVER
7169 M:      Eddie James <[email protected]>
7170 L:      [email protected]
7171 L:      [email protected] (moderated for non-subscribers)
7172 S:      Maintained
7173 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7174 F:      drivers/i2c/busses/i2c-fsi.c
7175
7176 FSI-ATTACHED SPI DRIVER
7177 M:      Eddie James <[email protected]>
7178 L:      [email protected]
7179 S:      Maintained
7180 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7181 F:      drivers/spi/spi-fsi.c
7182
7183 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7184 M:      Jan Kara <[email protected]>
7185 R:      Amir Goldstein <[email protected]>
7186 L:      [email protected]
7187 S:      Maintained
7188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7189 F:      fs/notify/
7190 F:      include/linux/fsnotify*.h
7191
7192 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7193 M:      Eric Biggers <[email protected]>
7194 M:      Theodore Y. Ts'o <[email protected]>
7195 L:      [email protected]
7196 S:      Supported
7197 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7198 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7199 F:      Documentation/filesystems/fsverity.rst
7200 F:      fs/verity/
7201 F:      include/linux/fsverity.h
7202 F:      include/uapi/linux/fsverity.h
7203
7204 FUJITSU LAPTOP EXTRAS
7205 M:      Jonathan Woithe <[email protected]>
7206 L:      [email protected]
7207 S:      Maintained
7208 F:      drivers/platform/x86/fujitsu-laptop.c
7209
7210 FUJITSU M-5MO LS CAMERA ISP DRIVER
7211 M:      Kyungmin Park <[email protected]>
7212 M:      Heungjun Kim <[email protected]>
7213 L:      [email protected]
7214 S:      Maintained
7215 F:      drivers/media/i2c/m5mols/
7216 F:      include/media/i2c/m5mols.h
7217
7218 FUJITSU TABLET EXTRAS
7219 M:      Robert Gerlach <[email protected]>
7220 L:      [email protected]
7221 S:      Maintained
7222 F:      drivers/platform/x86/fujitsu-tablet.c
7223
7224 FUSE: FILESYSTEM IN USERSPACE
7225 M:      Miklos Szeredi <[email protected]>
7226 L:      [email protected]
7227 S:      Maintained
7228 W:      http://fuse.sourceforge.net/
7229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7230 F:      Documentation/filesystems/fuse.rst
7231 F:      fs/fuse/
7232 F:      include/uapi/linux/fuse.h
7233
7234 FUTEX SUBSYSTEM
7235 M:      Thomas Gleixner <[email protected]>
7236 M:      Ingo Molnar <[email protected]>
7237 R:      Peter Zijlstra <[email protected]>
7238 R:      Darren Hart <[email protected]>
7239 L:      [email protected]
7240 S:      Maintained
7241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7242 F:      Documentation/locking/*futex*
7243 F:      include/asm-generic/futex.h
7244 F:      include/linux/futex.h
7245 F:      include/uapi/linux/futex.h
7246 F:      kernel/futex.c
7247 F:      tools/perf/bench/futex*
7248 F:      tools/testing/selftests/futex/
7249
7250 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7251 M:      Tim Harvey <[email protected]>
7252 M:      Robert Jones <[email protected]>
7253 S:      Maintained
7254 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7255 F:      drivers/mfd/gateworks-gsc.c
7256 F:      include/linux/mfd/gsc.h
7257 F:      Documentation/hwmon/gsc-hwmon.rst
7258 F:      drivers/hwmon/gsc-hwmon.c
7259 F:      include/linux/platform_data/gsc_hwmon.h
7260
7261 GASKET DRIVER FRAMEWORK
7262 M:      Rob Springer <[email protected]>
7263 M:      Todd Poynor <[email protected]>
7264 M:      Ben Chan <[email protected]>
7265 M:      Richard Yeh <[email protected]>
7266 S:      Maintained
7267 F:      drivers/staging/gasket/
7268
7269 GCC PLUGINS
7270 M:      Kees Cook <[email protected]>
7271 R:      Emese Revfy <[email protected]>
7272 L:      [email protected]
7273 S:      Maintained
7274 F:      Documentation/kbuild/gcc-plugins.rst
7275 F:      scripts/Makefile.gcc-plugins
7276 F:      scripts/gcc-plugin.sh
7277 F:      scripts/gcc-plugins/
7278
7279 GCOV BASED KERNEL PROFILING
7280 M:      Peter Oberparleiter <[email protected]>
7281 S:      Maintained
7282 F:      Documentation/dev-tools/gcov.rst
7283 F:      kernel/gcov/
7284
7285 GDB KERNEL DEBUGGING HELPER SCRIPTS
7286 M:      Jan Kiszka <[email protected]>
7287 M:      Kieran Bingham <[email protected]>
7288 S:      Supported
7289 F:      scripts/gdb/
7290
7291 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7292 M:      Achim Leubner <[email protected]>
7293 L:      [email protected]
7294 S:      Supported
7295 W:      http://www.icp-vortex.com/
7296 F:      drivers/scsi/gdt*
7297
7298 GEMTEK FM RADIO RECEIVER DRIVER
7299 M:      Hans Verkuil <[email protected]>
7300 L:      [email protected]
7301 S:      Maintained
7302 W:      https://linuxtv.org
7303 T:      git git://linuxtv.org/media_tree.git
7304 F:      drivers/media/radio/radio-gemtek*
7305
7306 GENERIC ARCHITECTURE TOPOLOGY
7307 M:      Sudeep Holla <[email protected]>
7308 L:      [email protected]
7309 S:      Maintained
7310 F:      drivers/base/arch_topology.c
7311 F:      include/linux/arch_topology.h
7312
7313 GENERIC GPIO I2C DRIVER
7314 M:      Wolfram Sang <[email protected]>
7315 S:      Supported
7316 F:      drivers/i2c/busses/i2c-gpio.c
7317 F:      include/linux/platform_data/i2c-gpio.h
7318
7319 GENERIC GPIO I2C MULTIPLEXER DRIVER
7320 M:      Peter Korsgaard <[email protected]>
7321 L:      [email protected]
7322 S:      Supported
7323 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7324 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7325 F:      include/linux/platform_data/i2c-mux-gpio.h
7326
7327 GENERIC HDLC (WAN) DRIVERS
7328 M:      Krzysztof Halasa <[email protected]>
7329 S:      Maintained
7330 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7331 F:      drivers/net/wan/c101.c
7332 F:      drivers/net/wan/hd6457*
7333 F:      drivers/net/wan/hdlc*
7334 F:      drivers/net/wan/n2.c
7335 F:      drivers/net/wan/pc300too.c
7336 F:      drivers/net/wan/pci200syn.c
7337 F:      drivers/net/wan/wanxl*
7338
7339 GENERIC INCLUDE/ASM HEADER FILES
7340 M:      Arnd Bergmann <[email protected]>
7341 L:      [email protected]
7342 S:      Maintained
7343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7344 F:      include/asm-generic/
7345 F:      include/uapi/asm-generic/
7346
7347 GENERIC PHY FRAMEWORK
7348 M:      Kishon Vijay Abraham I <[email protected]>
7349 M:      Vinod Koul <[email protected]>
7350 L:      [email protected]
7351 S:      Supported
7352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7353 F:      Documentation/devicetree/bindings/phy/
7354 F:      drivers/phy/
7355 F:      include/linux/phy/
7356
7357 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7358 M:      Wolfram Sang <[email protected]>
7359 S:      Supported
7360 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7361
7362 GENERIC PM DOMAINS
7363 M:      "Rafael J. Wysocki" <[email protected]>
7364 M:      Kevin Hilman <[email protected]>
7365 M:      Ulf Hansson <[email protected]>
7366 L:      [email protected]
7367 S:      Supported
7368 F:      Documentation/devicetree/bindings/power/power?domain*
7369 F:      drivers/base/power/domain*.c
7370 F:      include/linux/pm_domain.h
7371
7372 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7373 M:      Eugen Hristev <[email protected]>
7374 L:      [email protected]
7375 S:      Maintained
7376 F:      drivers/input/touchscreen/resistive-adc-touch.c
7377
7378 GENERIC UIO DRIVER FOR PCI DEVICES
7379 M:      "Michael S. Tsirkin" <[email protected]>
7380 L:      [email protected]
7381 S:      Supported
7382 F:      drivers/uio/uio_pci_generic.c
7383
7384 GENERIC VDSO LIBRARY
7385 M:      Andy Lutomirski <[email protected]>
7386 M:      Thomas Gleixner <[email protected]>
7387 M:      Vincenzo Frascino <[email protected]>
7388 L:      [email protected]
7389 S:      Maintained
7390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7391 F:      include/asm-generic/vdso/vsyscall.h
7392 F:      include/vdso/
7393 F:      kernel/time/vsyscall.c
7394 F:      lib/vdso/
7395
7396 GENWQE (IBM Generic Workqueue Card)
7397 M:      Frank Haverkamp <[email protected]>
7398 S:      Supported
7399 F:      drivers/misc/genwqe/
7400
7401 GET_MAINTAINER SCRIPT
7402 M:      Joe Perches <[email protected]>
7403 S:      Maintained
7404 F:      scripts/get_maintainer.pl
7405
7406 GFS2 FILE SYSTEM
7407 M:      Bob Peterson <[email protected]>
7408 M:      Andreas Gruenbacher <[email protected]>
7409 L:      [email protected]
7410 S:      Supported
7411 W:      http://sources.redhat.com/cluster/
7412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7413 F:      Documentation/filesystems/gfs2*
7414 F:      fs/gfs2/
7415 F:      include/uapi/linux/gfs2_ondisk.h
7416
7417 GNSS SUBSYSTEM
7418 M:      Johan Hovold <[email protected]>
7419 S:      Maintained
7420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7421 F:      Documentation/ABI/testing/sysfs-class-gnss
7422 F:      Documentation/devicetree/bindings/gnss/
7423 F:      drivers/gnss/
7424 F:      include/linux/gnss.h
7425
7426 GO7007 MPEG CODEC
7427 M:      Hans Verkuil <[email protected]>
7428 L:      [email protected]
7429 S:      Maintained
7430 F:      drivers/media/usb/go7007/
7431
7432 GOODIX TOUCHSCREEN
7433 M:      Bastien Nocera <[email protected]>
7434 L:      [email protected]
7435 S:      Maintained
7436 F:      drivers/input/touchscreen/goodix.c
7437
7438 GOOGLE ETHERNET DRIVERS
7439 M:      Catherine Sullivan <[email protected]>
7440 R:      Sagi Shahar <[email protected]>
7441 R:      Jon Olson <[email protected]>
7442 L:      [email protected]
7443 S:      Supported
7444 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7445 F:      drivers/net/ethernet/google
7446
7447 GPD POCKET FAN DRIVER
7448 M:      Hans de Goede <[email protected]>
7449 L:      [email protected]
7450 S:      Maintained
7451 F:      drivers/platform/x86/gpd-pocket-fan.c
7452
7453 GPIO ACPI SUPPORT
7454 M:      Mika Westerberg <[email protected]>
7455 M:      Andy Shevchenko <[email protected]>
7456 L:      [email protected]
7457 L:      [email protected]
7458 S:      Maintained
7459 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7460 F:      drivers/gpio/gpiolib-acpi.c
7461 F:      drivers/gpio/gpiolib-acpi.h
7462
7463 GPIO AGGREGATOR
7464 M:      Geert Uytterhoeven <[email protected]>
7465 L:      [email protected]
7466 S:      Supported
7467 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7468 F:      drivers/gpio/gpio-aggregator.c
7469
7470 GPIO IR Transmitter
7471 M:      Sean Young <[email protected]>
7472 L:      [email protected]
7473 S:      Maintained
7474 F:      drivers/media/rc/gpio-ir-tx.c
7475
7476 GPIO MOCKUP DRIVER
7477 M:      Bamvor Jian Zhang <[email protected]>
7478 L:      [email protected]
7479 S:      Maintained
7480 F:      drivers/gpio/gpio-mockup.c
7481 F:      tools/testing/selftests/gpio/
7482
7483 GPIO REGMAP
7484 R:      Michael Walle <[email protected]>
7485 S:      Maintained
7486 F:      drivers/gpio/gpio-regmap.c
7487 F:      include/linux/gpio/regmap.h
7488
7489 GPIO SUBSYSTEM
7490 M:      Linus Walleij <[email protected]>
7491 M:      Bartosz Golaszewski <[email protected]>
7492 L:      [email protected]
7493 S:      Maintained
7494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7495 F:      Documentation/ABI/obsolete/sysfs-gpio
7496 F:      Documentation/ABI/testing/gpio-cdev
7497 F:      Documentation/admin-guide/gpio/
7498 F:      Documentation/devicetree/bindings/gpio/
7499 F:      Documentation/driver-api/gpio/
7500 F:      drivers/gpio/
7501 F:      include/asm-generic/gpio.h
7502 F:      include/linux/gpio.h
7503 F:      include/linux/gpio/
7504 F:      include/linux/of_gpio.h
7505 F:      include/uapi/linux/gpio.h
7506 F:      tools/gpio/
7507
7508 GRE DEMULTIPLEXER DRIVER
7509 M:      Dmitry Kozlov <[email protected]>
7510 L:      [email protected]
7511 S:      Maintained
7512 F:      include/net/gre.h
7513 F:      net/ipv4/gre_demux.c
7514 F:      net/ipv4/gre_offload.c
7515
7516 GRETH 10/100/1G Ethernet MAC device driver
7517 M:      Andreas Larsson <[email protected]>
7518 L:      [email protected]
7519 S:      Maintained
7520 F:      drivers/net/ethernet/aeroflex/
7521
7522 GREYBUS AUDIO PROTOCOLS DRIVERS
7523 M:      Vaibhav Agarwal <[email protected]>
7524 M:      Mark Greer <[email protected]>
7525 S:      Maintained
7526 F:      drivers/staging/greybus/audio_apbridgea.c
7527 F:      drivers/staging/greybus/audio_apbridgea.h
7528 F:      drivers/staging/greybus/audio_codec.c
7529 F:      drivers/staging/greybus/audio_codec.h
7530 F:      drivers/staging/greybus/audio_gb.c
7531 F:      drivers/staging/greybus/audio_manager.c
7532 F:      drivers/staging/greybus/audio_manager.h
7533 F:      drivers/staging/greybus/audio_manager_module.c
7534 F:      drivers/staging/greybus/audio_manager_private.h
7535 F:      drivers/staging/greybus/audio_manager_sysfs.c
7536 F:      drivers/staging/greybus/audio_module.c
7537 F:      drivers/staging/greybus/audio_topology.c
7538
7539 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7540 M:      Viresh Kumar <[email protected]>
7541 S:      Maintained
7542 F:      drivers/staging/greybus/authentication.c
7543 F:      drivers/staging/greybus/bootrom.c
7544 F:      drivers/staging/greybus/firmware.h
7545 F:      drivers/staging/greybus/fw-core.c
7546 F:      drivers/staging/greybus/fw-download.c
7547 F:      drivers/staging/greybus/fw-management.c
7548 F:      drivers/staging/greybus/greybus_authentication.h
7549 F:      drivers/staging/greybus/greybus_firmware.h
7550 F:      drivers/staging/greybus/hid.c
7551 F:      drivers/staging/greybus/i2c.c
7552 F:      drivers/staging/greybus/spi.c
7553 F:      drivers/staging/greybus/spilib.c
7554 F:      drivers/staging/greybus/spilib.h
7555
7556 GREYBUS LOOPBACK DRIVER
7557 M:      Bryan O'Donoghue <[email protected]>
7558 S:      Maintained
7559 F:      drivers/staging/greybus/loopback.c
7560
7561 GREYBUS PLATFORM DRIVERS
7562 M:      Vaibhav Hiremath <[email protected]>
7563 S:      Maintained
7564 F:      drivers/staging/greybus/arche-apb-ctrl.c
7565 F:      drivers/staging/greybus/arche-platform.c
7566 F:      drivers/staging/greybus/arche_platform.h
7567
7568 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7569 M:      Rui Miguel Silva <[email protected]>
7570 S:      Maintained
7571 F:      drivers/staging/greybus/gpio.c
7572 F:      drivers/staging/greybus/light.c
7573 F:      drivers/staging/greybus/power_supply.c
7574 F:      drivers/staging/greybus/sdio.c
7575 F:      drivers/staging/greybus/spi.c
7576 F:      drivers/staging/greybus/spilib.c
7577
7578 GREYBUS SUBSYSTEM
7579 M:      Johan Hovold <[email protected]>
7580 M:      Alex Elder <[email protected]>
7581 M:      Greg Kroah-Hartman <[email protected]>
7582 L:      [email protected] (moderated for non-subscribers)
7583 S:      Maintained
7584 F:      drivers/greybus/
7585 F:      drivers/staging/greybus/
7586 F:      include/linux/greybus.h
7587 F:      include/linux/greybus/
7588
7589 GREYBUS UART PROTOCOLS DRIVERS
7590 M:      David Lin <[email protected]>
7591 S:      Maintained
7592 F:      drivers/staging/greybus/log.c
7593 F:      drivers/staging/greybus/uart.c
7594
7595 GS1662 VIDEO SERIALIZER
7596 M:      Charles-Antoine Couret <[email protected]>
7597 L:      [email protected]
7598 S:      Maintained
7599 T:      git git://linuxtv.org/media_tree.git
7600 F:      drivers/media/spi/gs1662.c
7601
7602 GSPCA FINEPIX SUBDRIVER
7603 M:      Frank Zago <[email protected]>
7604 L:      [email protected]
7605 S:      Maintained
7606 T:      git git://linuxtv.org/media_tree.git
7607 F:      drivers/media/usb/gspca/finepix.c
7608
7609 GSPCA GL860 SUBDRIVER
7610 M:      Olivier Lorin <[email protected]>
7611 L:      [email protected]
7612 S:      Maintained
7613 T:      git git://linuxtv.org/media_tree.git
7614 F:      drivers/media/usb/gspca/gl860/
7615
7616 GSPCA M5602 SUBDRIVER
7617 M:      Erik Andren <[email protected]>
7618 L:      [email protected]
7619 S:      Maintained
7620 T:      git git://linuxtv.org/media_tree.git
7621 F:      drivers/media/usb/gspca/m5602/
7622
7623 GSPCA PAC207 SONIXB SUBDRIVER
7624 M:      Hans Verkuil <[email protected]>
7625 L:      [email protected]
7626 S:      Odd Fixes
7627 T:      git git://linuxtv.org/media_tree.git
7628 F:      drivers/media/usb/gspca/pac207.c
7629
7630 GSPCA SN9C20X SUBDRIVER
7631 M:      Brian Johnson <[email protected]>
7632 L:      [email protected]
7633 S:      Maintained
7634 T:      git git://linuxtv.org/media_tree.git
7635 F:      drivers/media/usb/gspca/sn9c20x.c
7636
7637 GSPCA T613 SUBDRIVER
7638 M:      Leandro Costantino <[email protected]>
7639 L:      [email protected]
7640 S:      Maintained
7641 T:      git git://linuxtv.org/media_tree.git
7642 F:      drivers/media/usb/gspca/t613.c
7643
7644 GSPCA USB WEBCAM DRIVER
7645 M:      Hans Verkuil <[email protected]>
7646 L:      [email protected]
7647 S:      Odd Fixes
7648 T:      git git://linuxtv.org/media_tree.git
7649 F:      drivers/media/usb/gspca/
7650
7651 GTP (GPRS Tunneling Protocol)
7652 M:      Pablo Neira Ayuso <[email protected]>
7653 M:      Harald Welte <[email protected]>
7654 L:      [email protected]
7655 S:      Maintained
7656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7657 F:      drivers/net/gtp.c
7658
7659 GUID PARTITION TABLE (GPT)
7660 M:      Davidlohr Bueso <[email protected]>
7661 L:      [email protected]
7662 S:      Maintained
7663 F:      block/partitions/efi.*
7664
7665 H8/300 ARCHITECTURE
7666 M:      Yoshinori Sato <[email protected]>
7667 L:      [email protected] (moderated for non-subscribers)
7668 S:      Maintained
7669 W:      http://uclinux-h8.sourceforge.jp
7670 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7671 F:      arch/h8300/
7672 F:      drivers/clk/h8300/
7673 F:      drivers/clocksource/h8300_*.c
7674 F:      drivers/irqchip/irq-renesas-h8*.c
7675
7676 HABANALABS PCI DRIVER
7677 M:      Oded Gabbay <[email protected]>
7678 S:      Supported
7679 T:      git https://github.com/HabanaAI/linux.git
7680 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7681 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7682 F:      drivers/misc/habanalabs/
7683 F:      include/uapi/misc/habanalabs.h
7684
7685 HACKRF MEDIA DRIVER
7686 M:      Antti Palosaari <[email protected]>
7687 L:      [email protected]
7688 S:      Maintained
7689 W:      https://linuxtv.org
7690 W:      http://palosaari.fi/linux/
7691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7692 T:      git git://linuxtv.org/anttip/media_tree.git
7693 F:      drivers/media/usb/hackrf/
7694
7695 HANTRO VPU CODEC DRIVER
7696 M:      Ezequiel Garcia <[email protected]>
7697 M:      Philipp Zabel <[email protected]>
7698 L:      [email protected]
7699 L:      [email protected]
7700 S:      Maintained
7701 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7702 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7703 F:      drivers/staging/media/hantro/
7704
7705 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7706 M:      Frank Seidel <[email protected]>
7707 L:      [email protected]
7708 S:      Maintained
7709 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7710 F:      drivers/platform/x86/hdaps.c
7711
7712 HARDWARE MONITORING
7713 M:      Jean Delvare <[email protected]>
7714 M:      Guenter Roeck <[email protected]>
7715 L:      [email protected]
7716 S:      Maintained
7717 W:      http://hwmon.wiki.kernel.org/
7718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7719 F:      Documentation/devicetree/bindings/hwmon/
7720 F:      Documentation/hwmon/
7721 F:      drivers/hwmon/
7722 F:      include/linux/hwmon*.h
7723 F:      include/trace/events/hwmon*.h
7724
7725 HARDWARE RANDOM NUMBER GENERATOR CORE
7726 M:      Matt Mackall <[email protected]>
7727 M:      Herbert Xu <[email protected]>
7728 L:      [email protected]
7729 S:      Odd fixes
7730 F:      Documentation/admin-guide/hw_random.rst
7731 F:      Documentation/devicetree/bindings/rng/
7732 F:      drivers/char/hw_random/
7733 F:      include/linux/hw_random.h
7734
7735 HARDWARE SPINLOCK CORE
7736 M:      Ohad Ben-Cohen <[email protected]>
7737 M:      Bjorn Andersson <[email protected]>
7738 R:      Baolin Wang <[email protected]>
7739 L:      [email protected]
7740 S:      Maintained
7741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7742 F:      Documentation/devicetree/bindings/hwlock/
7743 F:      Documentation/locking/hwspinlock.rst
7744 F:      drivers/hwspinlock/
7745 F:      include/linux/hwspinlock.h
7746
7747 HARDWARE TRACING FACILITIES
7748 M:      Alexander Shishkin <[email protected]>
7749 S:      Maintained
7750 F:      drivers/hwtracing/
7751
7752 HARMONY SOUND DRIVER
7753 L:      [email protected]
7754 S:      Maintained
7755 F:      sound/parisc/harmony.*
7756
7757 HDPVR USB VIDEO ENCODER DRIVER
7758 M:      Hans Verkuil <[email protected]>
7759 L:      [email protected]
7760 S:      Odd Fixes
7761 W:      https://linuxtv.org
7762 T:      git git://linuxtv.org/media_tree.git
7763 F:      drivers/media/usb/hdpvr/
7764
7765 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7766 M:      Jerry Hoemann <[email protected]>
7767 S:      Supported
7768 F:      Documentation/watchdog/hpwdt.rst
7769 F:      drivers/watchdog/hpwdt.c
7770
7771 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7772 M:      Don Brace <[email protected]>
7773 L:      [email protected]
7774 L:      [email protected]
7775 S:      Supported
7776 F:      Documentation/scsi/hpsa.rst
7777 F:      drivers/scsi/hpsa*.[ch]
7778 F:      include/linux/cciss*.h
7779 F:      include/uapi/linux/cciss*.h
7780
7781 HFI1 DRIVER
7782 M:      Mike Marciniszyn <[email protected]>
7783 M:      Dennis Dalessandro <[email protected]>
7784 L:      [email protected]
7785 S:      Supported
7786 F:      drivers/infiniband/hw/hfi1
7787
7788 HFS FILESYSTEM
7789 L:      [email protected]
7790 S:      Orphan
7791 F:      Documentation/filesystems/hfs.rst
7792 F:      fs/hfs/
7793
7794 HFSPLUS FILESYSTEM
7795 L:      [email protected]
7796 S:      Orphan
7797 F:      Documentation/filesystems/hfsplus.rst
7798 F:      fs/hfsplus/
7799
7800 HGA FRAMEBUFFER DRIVER
7801 M:      Ferenc Bakonyi <[email protected]>
7802 L:      [email protected]
7803 S:      Maintained
7804 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7805 F:      drivers/video/fbdev/hgafb.c
7806
7807 HIBERNATION (aka Software Suspend, aka swsusp)
7808 M:      "Rafael J. Wysocki" <[email protected]>
7809 M:      Pavel Machek <[email protected]>
7810 L:      [email protected]
7811 S:      Supported
7812 B:      https://bugzilla.kernel.org
7813 F:      arch/*/include/asm/suspend*.h
7814 F:      arch/x86/power/
7815 F:      drivers/base/power/
7816 F:      include/linux/freezer.h
7817 F:      include/linux/pm.h
7818 F:      include/linux/suspend.h
7819 F:      kernel/power/
7820
7821 HID CORE LAYER
7822 M:      Jiri Kosina <[email protected]>
7823 M:      Benjamin Tissoires <[email protected]>
7824 L:      [email protected]
7825 S:      Maintained
7826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7827 F:      drivers/hid/
7828 F:      include/linux/hid*
7829 F:      include/uapi/linux/hid*
7830
7831 HID SENSOR HUB DRIVERS
7832 M:      Jiri Kosina <[email protected]>
7833 M:      Jonathan Cameron <[email protected]>
7834 M:      Srinivas Pandruvada <[email protected]>
7835 L:      [email protected]
7836 L:      [email protected]
7837 S:      Maintained
7838 F:      Documentation/hid/hid-sensor*
7839 F:      drivers/hid/hid-sensor-*
7840 F:      drivers/iio/*/hid-*
7841 F:      include/linux/hid-sensor-*
7842
7843 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7844 M:      Thomas Gleixner <[email protected]>
7845 L:      [email protected]
7846 S:      Maintained
7847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7848 F:      Documentation/timers/
7849 F:      include/linux/clockchips.h
7850 F:      include/linux/hrtimer.h
7851 F:      kernel/time/clockevents.c
7852 F:      kernel/time/hrtimer.c
7853 F:      kernel/time/timer_*.c
7854
7855 HIGH-SPEED SCC DRIVER FOR AX.25
7856 L:      [email protected]
7857 S:      Orphan
7858 F:      drivers/net/hamradio/dmascc.c
7859 F:      drivers/net/hamradio/scc.c
7860
7861 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7862 M:      HighPoint Linux Team <[email protected]>
7863 S:      Supported
7864 W:      http://www.highpoint-tech.com
7865 F:      Documentation/scsi/hptiop.rst
7866 F:      drivers/scsi/hptiop.c
7867
7868 HIPPI
7869 M:      Jes Sorensen <[email protected]>
7870 L:      [email protected]
7871 S:      Maintained
7872 F:      drivers/net/hippi/
7873 F:      include/linux/hippidevice.h
7874 F:      include/uapi/linux/if_hippi.h
7875 F:      net/802/hippi.c
7876
7877 HISILICON DMA DRIVER
7878 M:      Zhou Wang <[email protected]>
7879 L:      [email protected]
7880 S:      Maintained
7881 F:      drivers/dma/hisi_dma.c
7882
7883 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7884 M:      Zaibo Xu <[email protected]>
7885 L:      [email protected]
7886 S:      Maintained
7887 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7888 F:      drivers/crypto/hisilicon/hpre/hpre.h
7889 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7890 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7891
7892 HISILICON LPC BUS DRIVER
7893 M:      [email protected]
7894 S:      Maintained
7895 W:      http://www.hisilicon.com
7896 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7897 F:      drivers/bus/hisi_lpc.c
7898
7899 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7900 M:      Yisen Zhuang <[email protected]>
7901 M:      Salil Mehta <[email protected]>
7902 L:      [email protected]
7903 S:      Maintained
7904 W:      http://www.hisilicon.com
7905 F:      drivers/net/ethernet/hisilicon/hns3/
7906
7907 HISILICON NETWORK SUBSYSTEM DRIVER
7908 M:      Yisen Zhuang <[email protected]>
7909 M:      Salil Mehta <[email protected]>
7910 L:      [email protected]
7911 S:      Maintained
7912 W:      http://www.hisilicon.com
7913 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7914 F:      drivers/net/ethernet/hisilicon/
7915
7916 HIKEY960 ONBOARD USB GPIO HUB DRIVER
7917 M:      John Stultz <[email protected]>
7918 L:      [email protected]
7919 S:      Maintained
7920 F:      drivers/misc/hisi_hikey_usb.c
7921 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
7922
7923 HISILICON PMU DRIVER
7924 M:      Shaokun Zhang <[email protected]>
7925 S:      Supported
7926 W:      http://www.hisilicon.com
7927 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7928 F:      drivers/perf/hisilicon
7929
7930 HISILICON QM AND ZIP Controller DRIVER
7931 M:      Zhou Wang <[email protected]>
7932 L:      [email protected]
7933 S:      Maintained
7934 F:      Documentation/ABI/testing/debugfs-hisi-zip
7935 F:      drivers/crypto/hisilicon/qm.c
7936 F:      drivers/crypto/hisilicon/qm.h
7937 F:      drivers/crypto/hisilicon/sgl.c
7938 F:      drivers/crypto/hisilicon/zip/
7939
7940 HISILICON ROCE DRIVER
7941 M:      Lijun Ou <[email protected]>
7942 M:      Wei Hu(Xavier) <[email protected]>
7943 M:      Weihang Li <[email protected]>
7944 L:      [email protected]
7945 S:      Maintained
7946 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7947 F:      drivers/infiniband/hw/hns/
7948
7949 HISILICON SAS Controller
7950 M:      John Garry <[email protected]>
7951 S:      Supported
7952 W:      http://www.hisilicon.com
7953 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7954 F:      drivers/scsi/hisi_sas/
7955
7956 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7957 M:      Zaibo Xu <[email protected]>
7958 L:      [email protected]
7959 S:      Maintained
7960 F:      Documentation/ABI/testing/debugfs-hisi-sec
7961 F:      drivers/crypto/hisilicon/sec2/sec.h
7962 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7963 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7964 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7965
7966 HISILICON STAGING DRIVERS FOR HIKEY 960/970
7967 M:      Mauro Carvalho Chehab <[email protected]>
7968 L:      [email protected]
7969 S:      Maintained
7970 F:      drivers/staging/hikey9xx/
7971
7972 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7973 M:      Zaibo Xu <[email protected]>
7974 S:      Maintained
7975 F:      drivers/char/hw_random/hisi-trng-v2.c
7976
7977 HISILICON V3XX SPI NOR FLASH Controller Driver
7978 M:      John Garry <[email protected]>
7979 S:      Maintained
7980 W:      http://www.hisilicon.com
7981 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7982
7983 HMM - Heterogeneous Memory Management
7984 M:      Jérôme Glisse <[email protected]>
7985 L:      [email protected]
7986 S:      Maintained
7987 F:      Documentation/vm/hmm.rst
7988 F:      include/linux/hmm*
7989 F:      lib/test_hmm*
7990 F:      mm/hmm*
7991 F:      tools/testing/selftests/vm/*hmm*
7992
7993 HOST AP DRIVER
7994 M:      Jouni Malinen <[email protected]>
7995 L:      [email protected]
7996 S:      Obsolete
7997 W:      http://w1.fi/hostap-driver.html
7998 F:      drivers/net/wireless/intersil/hostap/
7999
8000 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8001 L:      [email protected]
8002 S:      Orphan
8003 F:      drivers/platform/x86/tc1100-wmi.c
8004
8005 HPET:   High Precision Event Timers driver
8006 M:      Clemens Ladisch <[email protected]>
8007 S:      Maintained
8008 F:      Documentation/timers/hpet.rst
8009 F:      drivers/char/hpet.c
8010 F:      include/linux/hpet.h
8011 F:      include/uapi/linux/hpet.h
8012
8013 HPET:   x86
8014 S:      Orphan
8015 F:      arch/x86/include/asm/hpet.h
8016 F:      arch/x86/kernel/hpet.c
8017
8018 HPFS FILESYSTEM
8019 M:      Mikulas Patocka <[email protected]>
8020 S:      Maintained
8021 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8022 F:      fs/hpfs/
8023
8024 HSI SUBSYSTEM
8025 M:      Sebastian Reichel <[email protected]>
8026 S:      Maintained
8027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8028 F:      Documentation/ABI/testing/sysfs-bus-hsi
8029 F:      Documentation/driver-api/hsi.rst
8030 F:      drivers/hsi/
8031 F:      include/linux/hsi/
8032 F:      include/uapi/linux/hsi/
8033
8034 HSO 3G MODEM DRIVER
8035 L:      [email protected]
8036 S:      Orphan
8037 F:      drivers/net/usb/hso.c
8038
8039 HSR NETWORK PROTOCOL
8040 L:      [email protected]
8041 S:      Orphan
8042 F:      net/hsr/
8043
8044 HT16K33 LED CONTROLLER DRIVER
8045 M:      Robin van der Gracht <[email protected]>
8046 S:      Maintained
8047 F:      Documentation/devicetree/bindings/display/ht16k33.txt
8048 F:      drivers/auxdisplay/ht16k33.c
8049
8050 HTCPEN TOUCHSCREEN DRIVER
8051 M:      Pau Oliva Fora <[email protected]>
8052 L:      [email protected]
8053 S:      Maintained
8054 F:      drivers/input/touchscreen/htcpen.c
8055
8056 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8057 M:      Lorenzo Bianconi <[email protected]>
8058 L:      [email protected]
8059 S:      Maintained
8060 W:      http://www.st.com/
8061 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8062 F:      drivers/iio/humidity/hts221*
8063
8064 HUAWEI ETHERNET DRIVER
8065 M:      Bin Luo <[email protected]>
8066 L:      [email protected]
8067 S:      Supported
8068 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8069 F:      drivers/net/ethernet/huawei/hinic/
8070
8071 HUGETLB FILESYSTEM
8072 M:      Mike Kravetz <[email protected]>
8073 L:      [email protected]
8074 S:      Maintained
8075 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8076 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8077 F:      Documentation/vm/hugetlbfs_reserv.rst
8078 F:      fs/hugetlbfs/
8079 F:      include/linux/hugetlb.h
8080 F:      mm/hugetlb.c
8081
8082 HVA ST MEDIA DRIVER
8083 M:      Jean-Christophe Trotin <[email protected]>
8084 L:      [email protected]
8085 S:      Supported
8086 W:      https://linuxtv.org
8087 T:      git git://linuxtv.org/media_tree.git
8088 F:      drivers/media/platform/sti/hva
8089
8090 HWPOISON MEMORY FAILURE HANDLING
8091 M:      Naoya Horiguchi <[email protected]>
8092 L:      [email protected]
8093 S:      Maintained
8094 F:      mm/hwpoison-inject.c
8095 F:      mm/memory-failure.c
8096
8097 HYGON PROCESSOR SUPPORT
8098 M:      Pu Wen <[email protected]>
8099 L:      [email protected]
8100 S:      Maintained
8101 F:      arch/x86/kernel/cpu/hygon.c
8102
8103 HYNIX HI556 SENSOR DRIVER
8104 M:      Shawn Tu <[email protected]>
8105 L:      [email protected]
8106 S:      Maintained
8107 T:      git git://linuxtv.org/media_tree.git
8108 F:      drivers/media/i2c/hi556.c
8109
8110 Hyper-V CORE AND DRIVERS
8111 M:      "K. Y. Srinivasan" <[email protected]>
8112 M:      Haiyang Zhang <[email protected]>
8113 M:      Stephen Hemminger <[email protected]>
8114 M:      Wei Liu <[email protected]>
8115 L:      [email protected]
8116 S:      Supported
8117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8118 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8119 F:      Documentation/ABI/testing/debugfs-hyperv
8120 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8121 F:      arch/x86/hyperv
8122 F:      arch/x86/include/asm/hyperv-tlfs.h
8123 F:      arch/x86/include/asm/mshyperv.h
8124 F:      arch/x86/include/asm/trace/hyperv.h
8125 F:      arch/x86/kernel/cpu/mshyperv.c
8126 F:      drivers/clocksource/hyperv_timer.c
8127 F:      drivers/hid/hid-hyperv.c
8128 F:      drivers/hv/
8129 F:      drivers/input/serio/hyperv-keyboard.c
8130 F:      drivers/iommu/hyperv-iommu.c
8131 F:      drivers/net/hyperv/
8132 F:      drivers/pci/controller/pci-hyperv-intf.c
8133 F:      drivers/pci/controller/pci-hyperv.c
8134 F:      drivers/scsi/storvsc_drv.c
8135 F:      drivers/uio/uio_hv_generic.c
8136 F:      drivers/video/fbdev/hyperv_fb.c
8137 F:      include/asm-generic/hyperv-tlfs.h
8138 F:      include/asm-generic/mshyperv.h
8139 F:      include/clocksource/hyperv_timer.h
8140 F:      include/linux/hyperv.h
8141 F:      include/uapi/linux/hyperv.h
8142 F:      net/vmw_vsock/hyperv_transport.c
8143 F:      tools/hv/
8144
8145 HYPERBUS SUPPORT
8146 M:      Vignesh Raghavendra <[email protected]>
8147 L:      [email protected]
8148 S:      Supported
8149 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8150 C:      irc://irc.oftc.net/mtd
8151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8152 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8153 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8154 F:      drivers/mtd/hyperbus/
8155 F:      include/linux/mtd/hyperbus.h
8156
8157 HYPERVISOR VIRTUAL CONSOLE DRIVER
8158 L:      [email protected]
8159 S:      Odd Fixes
8160 F:      drivers/tty/hvc/
8161
8162 I2C ACPI SUPPORT
8163 M:      Mika Westerberg <[email protected]>
8164 L:      [email protected]
8165 L:      [email protected]
8166 S:      Maintained
8167 F:      drivers/i2c/i2c-core-acpi.c
8168
8169 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8170 M:      Ajay Gupta <[email protected]>
8171 L:      [email protected]
8172 S:      Maintained
8173 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8174 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8175
8176 I2C MUXES
8177 M:      Peter Rosin <[email protected]>
8178 L:      [email protected]
8179 S:      Maintained
8180 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8181 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8182 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8183 F:      Documentation/i2c/i2c-topology.rst
8184 F:      Documentation/i2c/muxes/
8185 F:      drivers/i2c/i2c-mux.c
8186 F:      drivers/i2c/muxes/
8187 F:      include/linux/i2c-mux.h
8188
8189 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8190 M:      Gregory CLEMENT <[email protected]>
8191 L:      [email protected]
8192 S:      Maintained
8193 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8194 F:      drivers/i2c/busses/i2c-mv64xxx.c
8195
8196 I2C OVER PARALLEL PORT
8197 M:      Jean Delvare <[email protected]>
8198 L:      [email protected]
8199 S:      Maintained
8200 F:      Documentation/i2c/busses/i2c-parport.rst
8201 F:      drivers/i2c/busses/i2c-parport.c
8202
8203 I2C SUBSYSTEM
8204 M:      Wolfram Sang <[email protected]>
8205 L:      [email protected]
8206 S:      Maintained
8207 W:      https://i2c.wiki.kernel.org/
8208 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8210 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8211 F:      Documentation/i2c/
8212 F:      drivers/i2c/*
8213 F:      include/linux/i2c-dev.h
8214 F:      include/linux/i2c-smbus.h
8215 F:      include/linux/i2c.h
8216 F:      include/uapi/linux/i2c-*.h
8217 F:      include/uapi/linux/i2c.h
8218
8219 I2C SUBSYSTEM HOST DRIVERS
8220 L:      [email protected]
8221 S:      Odd Fixes
8222 W:      https://i2c.wiki.kernel.org/
8223 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8225 F:      Documentation/devicetree/bindings/i2c/
8226 F:      drivers/i2c/algos/
8227 F:      drivers/i2c/busses/
8228
8229 I2C-TAOS-EVM DRIVER
8230 M:      Jean Delvare <[email protected]>
8231 L:      [email protected]
8232 S:      Maintained
8233 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8234 F:      drivers/i2c/busses/i2c-taos-evm.c
8235
8236 I2C-TINY-USB DRIVER
8237 M:      Till Harbaum <[email protected]>
8238 L:      [email protected]
8239 S:      Maintained
8240 W:      http://www.harbaum.org/till/i2c_tiny_usb
8241 F:      drivers/i2c/busses/i2c-tiny-usb.c
8242
8243 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8244 M:      Jean Delvare <[email protected]>
8245 L:      [email protected]
8246 S:      Maintained
8247 F:      Documentation/i2c/busses/i2c-ali1535.rst
8248 F:      Documentation/i2c/busses/i2c-ali1563.rst
8249 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8250 F:      Documentation/i2c/busses/i2c-amd756.rst
8251 F:      Documentation/i2c/busses/i2c-amd8111.rst
8252 F:      Documentation/i2c/busses/i2c-i801.rst
8253 F:      Documentation/i2c/busses/i2c-nforce2.rst
8254 F:      Documentation/i2c/busses/i2c-piix4.rst
8255 F:      Documentation/i2c/busses/i2c-sis5595.rst
8256 F:      Documentation/i2c/busses/i2c-sis630.rst
8257 F:      Documentation/i2c/busses/i2c-sis96x.rst
8258 F:      Documentation/i2c/busses/i2c-via.rst
8259 F:      Documentation/i2c/busses/i2c-viapro.rst
8260 F:      drivers/i2c/busses/i2c-ali1535.c
8261 F:      drivers/i2c/busses/i2c-ali1563.c
8262 F:      drivers/i2c/busses/i2c-ali15x3.c
8263 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8264 F:      drivers/i2c/busses/i2c-amd756.c
8265 F:      drivers/i2c/busses/i2c-amd8111.c
8266 F:      drivers/i2c/busses/i2c-i801.c
8267 F:      drivers/i2c/busses/i2c-isch.c
8268 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8269 F:      drivers/i2c/busses/i2c-nforce2.c
8270 F:      drivers/i2c/busses/i2c-piix4.c
8271 F:      drivers/i2c/busses/i2c-sis5595.c
8272 F:      drivers/i2c/busses/i2c-sis630.c
8273 F:      drivers/i2c/busses/i2c-sis96x.c
8274 F:      drivers/i2c/busses/i2c-via.c
8275 F:      drivers/i2c/busses/i2c-viapro.c
8276
8277 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8278 M:      Hans de Goede <[email protected]>
8279 L:      [email protected]
8280 S:      Maintained
8281 F:      drivers/i2c/busses/i2c-cht-wc.c
8282
8283 I2C/SMBUS ISMT DRIVER
8284 M:      Seth Heasley <[email protected]>
8285 M:      Neil Horman <[email protected]>
8286 L:      [email protected]
8287 F:      Documentation/i2c/busses/i2c-ismt.rst
8288 F:      drivers/i2c/busses/i2c-ismt.c
8289
8290 I2C/SMBUS STUB DRIVER
8291 M:      Jean Delvare <[email protected]>
8292 L:      [email protected]
8293 S:      Maintained
8294 F:      drivers/i2c/i2c-stub.c
8295
8296 I3C DRIVER FOR CADENCE I3C MASTER IP
8297 M:      Przemysław Gaj <[email protected]>
8298 S:      Maintained
8299 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8300 F:      drivers/i3c/master/i3c-master-cdns.c
8301
8302 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8303 M:      Vitor Soares <[email protected]>
8304 S:      Maintained
8305 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8306 F:      drivers/i3c/master/dw*
8307
8308 I3C SUBSYSTEM
8309 M:      Boris Brezillon <[email protected]>
8310 L:      [email protected] (moderated for non-subscribers)
8311 S:      Maintained
8312 C:      irc://chat.freenode.net/linux-i3c
8313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8314 F:      Documentation/ABI/testing/sysfs-bus-i3c
8315 F:      Documentation/devicetree/bindings/i3c/
8316 F:      Documentation/driver-api/i3c
8317 F:      drivers/i3c/
8318 F:      include/linux/i3c/
8319
8320 IA64 (Itanium) PLATFORM
8321 M:      Tony Luck <[email protected]>
8322 M:      Fenghua Yu <[email protected]>
8323 L:      [email protected]
8324 S:      Odd Fixes
8325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8326 F:      Documentation/ia64/
8327 F:      arch/ia64/
8328
8329 IBM Power 842 compression accelerator
8330 M:      Haren Myneni <[email protected]>
8331 S:      Supported
8332 F:      crypto/842.c
8333 F:      drivers/crypto/nx/Kconfig
8334 F:      drivers/crypto/nx/Makefile
8335 F:      drivers/crypto/nx/nx-842*
8336 F:      include/linux/sw842.h
8337 F:      lib/842/
8338
8339 IBM Power in-Nest Crypto Acceleration
8340 M:      Breno Leitão <[email protected]>
8341 M:      Nayna Jain <[email protected]>
8342 M:      Paulo Flabiano Smorigo <[email protected]>
8343 L:      [email protected]
8344 S:      Supported
8345 F:      drivers/crypto/nx/Kconfig
8346 F:      drivers/crypto/nx/Makefile
8347 F:      drivers/crypto/nx/nx-aes*
8348 F:      drivers/crypto/nx/nx-sha*
8349 F:      drivers/crypto/nx/nx.*
8350 F:      drivers/crypto/nx/nx_csbcpb.h
8351 F:      drivers/crypto/nx/nx_debugfs.c
8352
8353 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8354 M:      Tyrel Datwyler <[email protected]>
8355 L:      [email protected]
8356 L:      [email protected]
8357 S:      Supported
8358 F:      drivers/pci/hotplug/rpadlpar*
8359
8360 IBM Power Linux RAID adapter
8361 M:      Brian King <[email protected]>
8362 S:      Supported
8363 F:      drivers/scsi/ipr.*
8364
8365 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8366 M:      Tyrel Datwyler <[email protected]>
8367 L:      [email protected]
8368 L:      [email protected]
8369 S:      Supported
8370 F:      drivers/pci/hotplug/rpaphp*
8371
8372 IBM Power SRIOV Virtual NIC Device Driver
8373 M:      Dany Madden <[email protected]>
8374 M:      Lijun Pan <[email protected]>
8375 M:      Sukadev Bhattiprolu <[email protected]>
8376 L:      [email protected]
8377 S:      Supported
8378 F:      drivers/net/ethernet/ibm/ibmvnic.*
8379
8380 IBM Power Virtual Accelerator Switchboard
8381 M:      Sukadev Bhattiprolu <[email protected]>
8382 L:      [email protected]
8383 S:      Supported
8384 F:      arch/powerpc/include/asm/vas.h
8385 F:      arch/powerpc/platforms/powernv/copy-paste.h
8386 F:      arch/powerpc/platforms/powernv/vas*
8387
8388 IBM Power Virtual Ethernet Device Driver
8389 M:      Cristobal Forno <[email protected]>
8390 L:      [email protected]
8391 S:      Supported
8392 F:      drivers/net/ethernet/ibm/ibmveth.*
8393
8394 IBM Power Virtual FC Device Drivers
8395 M:      Tyrel Datwyler <[email protected]>
8396 L:      [email protected]
8397 S:      Supported
8398 F:      drivers/scsi/ibmvscsi/ibmvfc*
8399
8400 IBM Power Virtual Management Channel Driver
8401 M:      Steven Royer <[email protected]>
8402 S:      Supported
8403 F:      drivers/misc/ibmvmc.*
8404
8405 IBM Power Virtual SCSI Device Drivers
8406 M:      Tyrel Datwyler <[email protected]>
8407 L:      [email protected]
8408 S:      Supported
8409 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8410 F:      include/scsi/viosrp.h
8411
8412 IBM Power Virtual SCSI Device Target Driver
8413 M:      Michael Cyr <[email protected]>
8414 L:      [email protected]
8415 L:      [email protected]
8416 S:      Supported
8417 F:      drivers/scsi/ibmvscsi_tgt/
8418
8419 IBM Power VMX Cryptographic instructions
8420 M:      Breno Leitão <[email protected]>
8421 M:      Nayna Jain <[email protected]>
8422 M:      Paulo Flabiano Smorigo <[email protected]>
8423 L:      [email protected]
8424 S:      Supported
8425 F:      drivers/crypto/vmx/Kconfig
8426 F:      drivers/crypto/vmx/Makefile
8427 F:      drivers/crypto/vmx/aes*
8428 F:      drivers/crypto/vmx/ghash*
8429 F:      drivers/crypto/vmx/ppc-xlate.pl
8430 F:      drivers/crypto/vmx/vmx.c
8431
8432 IBM ServeRAID RAID DRIVER
8433 S:      Orphan
8434 F:      drivers/scsi/ips.*
8435
8436 ICH LPC AND GPIO DRIVER
8437 M:      Peter Tyser <[email protected]>
8438 S:      Maintained
8439 F:      drivers/gpio/gpio-ich.c
8440 F:      drivers/mfd/lpc_ich.c
8441
8442 ICY I2C DRIVER
8443 M:      Max Staudt <[email protected]>
8444 L:      [email protected]
8445 S:      Maintained
8446 F:      drivers/i2c/busses/i2c-icy.c
8447
8448 IDE SUBSYSTEM
8449 M:      "David S. Miller" <[email protected]>
8450 L:      [email protected]
8451 S:      Maintained
8452 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8454 F:      Documentation/ide/
8455 F:      drivers/ide/
8456 F:      include/linux/ide.h
8457
8458 IDE/ATAPI DRIVERS
8459 M:      Borislav Petkov <[email protected]>
8460 L:      [email protected]
8461 S:      Maintained
8462 F:      Documentation/cdrom/ide-cd.rst
8463 F:      drivers/ide/ide-cd*
8464
8465 IDEAPAD LAPTOP EXTRAS DRIVER
8466 M:      Ike Panhc <[email protected]>
8467 L:      [email protected]
8468 S:      Maintained
8469 W:      http://launchpad.net/ideapad-laptop
8470 F:      drivers/platform/x86/ideapad-laptop.c
8471
8472 IDEAPAD LAPTOP SLIDEBAR DRIVER
8473 M:      Andrey Moiseev <[email protected]>
8474 L:      [email protected]
8475 S:      Maintained
8476 W:      https://github.com/o2genum/ideapad-slidebar
8477 F:      drivers/input/misc/ideapad_slidebar.c
8478
8479 IDT VersaClock 5 CLOCK DRIVER
8480 M:      Luca Ceresoli <[email protected]>
8481 S:      Maintained
8482 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8483 F:      drivers/clk/clk-versaclock5.c
8484
8485 IEEE 802.15.4 SUBSYSTEM
8486 M:      Alexander Aring <[email protected]>
8487 M:      Stefan Schmidt <[email protected]>
8488 L:      [email protected]
8489 S:      Maintained
8490 W:      https://linux-wpan.org/
8491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8493 F:      Documentation/networking/ieee802154.rst
8494 F:      drivers/net/ieee802154/
8495 F:      include/linux/ieee802154.h
8496 F:      include/linux/nl802154.h
8497 F:      include/net/af_ieee802154.h
8498 F:      include/net/cfg802154.h
8499 F:      include/net/ieee802154_netdev.h
8500 F:      include/net/mac802154.h
8501 F:      include/net/nl802154.h
8502 F:      net/ieee802154/
8503 F:      net/mac802154/
8504
8505 IFE PROTOCOL
8506 M:      Yotam Gigi <[email protected]>
8507 M:      Jamal Hadi Salim <[email protected]>
8508 F:      include/net/ife.h
8509 F:      include/uapi/linux/ife.h
8510 F:      net/ife
8511
8512 IGORPLUG-USB IR RECEIVER
8513 M:      Sean Young <[email protected]>
8514 L:      [email protected]
8515 S:      Maintained
8516 F:      drivers/media/rc/igorplugusb.c
8517
8518 IGUANAWORKS USB IR TRANSCEIVER
8519 M:      Sean Young <[email protected]>
8520 L:      [email protected]
8521 S:      Maintained
8522 F:      drivers/media/rc/iguanair.c
8523
8524 IIO DIGITAL POTENTIOMETER DAC
8525 M:      Peter Rosin <[email protected]>
8526 L:      [email protected]
8527 S:      Maintained
8528 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8529 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8530 F:      drivers/iio/dac/dpot-dac.c
8531
8532 IIO ENVELOPE DETECTOR
8533 M:      Peter Rosin <[email protected]>
8534 L:      [email protected]
8535 S:      Maintained
8536 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8537 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8538 F:      drivers/iio/adc/envelope-detector.c
8539
8540 IIO MULTIPLEXER
8541 M:      Peter Rosin <[email protected]>
8542 L:      [email protected]
8543 S:      Maintained
8544 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8545 F:      drivers/iio/multiplexer/iio-mux.c
8546
8547 IIO SUBSYSTEM AND DRIVERS
8548 M:      Jonathan Cameron <[email protected]>
8549 R:      Lars-Peter Clausen <[email protected]>
8550 R:      Peter Meerwald-Stadler <[email protected]>
8551 L:      [email protected]
8552 S:      Maintained
8553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8554 F:      Documentation/ABI/testing/configfs-iio*
8555 F:      Documentation/ABI/testing/sysfs-bus-iio*
8556 F:      Documentation/devicetree/bindings/iio/
8557 F:      drivers/iio/
8558 F:      drivers/staging/iio/
8559 F:      include/linux/iio/
8560 F:      tools/iio/
8561
8562 IIO UNIT CONVERTER
8563 M:      Peter Rosin <[email protected]>
8564 L:      [email protected]
8565 S:      Maintained
8566 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8567 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8568 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8569 F:      drivers/iio/afe/iio-rescale.c
8570
8571 IKANOS/ADI EAGLE ADSL USB DRIVER
8572 M:      Matthieu Castet <[email protected]>
8573 M:      Stanislaw Gruszka <[email protected]>
8574 S:      Maintained
8575 F:      drivers/usb/atm/ueagle-atm.c
8576
8577 IMGTEC ASCII LCD DRIVER
8578 M:      Paul Burton <[email protected]>
8579 S:      Maintained
8580 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8581 F:      drivers/auxdisplay/img-ascii-lcd.c
8582
8583 IMGTEC IR DECODER DRIVER
8584 S:      Orphan
8585 F:      drivers/media/rc/img-ir/
8586
8587 IMON SOUNDGRAPH USB IR RECEIVER
8588 M:      Sean Young <[email protected]>
8589 L:      [email protected]
8590 S:      Maintained
8591 F:      drivers/media/rc/imon.c
8592 F:      drivers/media/rc/imon_raw.c
8593
8594 IMS TWINTURBO FRAMEBUFFER DRIVER
8595 L:      [email protected]
8596 S:      Orphan
8597 F:      drivers/video/fbdev/imsttfb.c
8598
8599 INA209 HARDWARE MONITOR DRIVER
8600 M:      Guenter Roeck <[email protected]>
8601 L:      [email protected]
8602 S:      Maintained
8603 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8604 F:      Documentation/hwmon/ina209.rst
8605 F:      drivers/hwmon/ina209.c
8606
8607 INA2XX HARDWARE MONITOR DRIVER
8608 M:      Guenter Roeck <[email protected]>
8609 L:      [email protected]
8610 S:      Maintained
8611 F:      Documentation/hwmon/ina2xx.rst
8612 F:      drivers/hwmon/ina2xx.c
8613 F:      include/linux/platform_data/ina2xx.h
8614
8615 INDUSTRY PACK SUBSYSTEM (IPACK)
8616 M:      Samuel Iglesias Gonsalvez <[email protected]>
8617 M:      Jens Taprogge <[email protected]>
8618 M:      Greg Kroah-Hartman <[email protected]>
8619 L:      [email protected]
8620 S:      Maintained
8621 W:      http://industrypack.sourceforge.net
8622 F:      drivers/ipack/
8623
8624 INFINEON DPS310 Driver
8625 M:      Eddie James <[email protected]>
8626 L:      [email protected]
8627 S:      Maintained
8628 F:      drivers/iio/pressure/dps310.c
8629
8630 INFINIBAND SUBSYSTEM
8631 M:      Doug Ledford <[email protected]>
8632 M:      Jason Gunthorpe <[email protected]>
8633 L:      [email protected]
8634 S:      Supported
8635 W:      https://github.com/linux-rdma/rdma-core
8636 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8638 F:      Documentation/devicetree/bindings/infiniband/
8639 F:      Documentation/infiniband/
8640 F:      drivers/infiniband/
8641 F:      include/rdma/
8642 F:      include/trace/events/ib_mad.h
8643 F:      include/trace/events/ib_umad.h
8644 F:      include/uapi/linux/if_infiniband.h
8645 F:      include/uapi/rdma/
8646 F:      samples/bpf/ibumad_kern.c
8647 F:      samples/bpf/ibumad_user.c
8648
8649 INGENIC JZ4780 DMA Driver
8650 M:      Zubair Lutfullah Kakakhel <[email protected]>
8651 S:      Maintained
8652 F:      drivers/dma/dma-jz4780.c
8653
8654 INGENIC JZ4780 NAND DRIVER
8655 M:      Harvey Hunt <[email protected]>
8656 L:      [email protected]
8657 S:      Maintained
8658 F:      drivers/mtd/nand/raw/ingenic/
8659
8660 INGENIC JZ47xx SoCs
8661 M:      Paul Cercueil <[email protected]>
8662 S:      Maintained
8663 F:      arch/mips/boot/dts/ingenic/
8664 F:      arch/mips/include/asm/mach-jz4740/
8665 F:      arch/mips/jz4740/
8666 F:      drivers/clk/ingenic/
8667 F:      drivers/dma/dma-jz4780.c
8668 F:      drivers/gpu/drm/ingenic/
8669 F:      drivers/i2c/busses/i2c-jz4780.c
8670 F:      drivers/iio/adc/ingenic-adc.c
8671 F:      drivers/irqchip/irq-ingenic.c
8672 F:      drivers/memory/jz4780-nemc.c
8673 F:      drivers/mmc/host/jz4740_mmc.c
8674 F:      drivers/mtd/nand/raw/ingenic/
8675 F:      drivers/pinctrl/pinctrl-ingenic.c
8676 F:      drivers/power/supply/ingenic-battery.c
8677 F:      drivers/pwm/pwm-jz4740.c
8678 F:      drivers/remoteproc/ingenic_rproc.c
8679 F:      drivers/rtc/rtc-jz4740.c
8680 F:      drivers/tty/serial/8250/8250_ingenic.c
8681 F:      drivers/usb/musb/jz4740.c
8682 F:      drivers/watchdog/jz4740_wdt.c
8683 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8684 F:      include/linux/mfd/ingenic-tcu.h
8685 F:      sound/soc/codecs/jz47*
8686 F:      sound/soc/jz4740/
8687
8688 INOTIFY
8689 M:      Jan Kara <[email protected]>
8690 R:      Amir Goldstein <[email protected]>
8691 L:      [email protected]
8692 S:      Maintained
8693 F:      Documentation/filesystems/inotify.rst
8694 F:      fs/notify/inotify/
8695 F:      include/linux/inotify.h
8696 F:      include/uapi/linux/inotify.h
8697
8698 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8699 M:      Dmitry Torokhov <[email protected]>
8700 L:      [email protected]
8701 S:      Maintained
8702 Q:      http://patchwork.kernel.org/project/linux-input/list/
8703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8704 F:      Documentation/devicetree/bindings/input/
8705 F:      Documentation/devicetree/bindings/serio/
8706 F:      Documentation/input/
8707 F:      drivers/input/
8708 F:      include/linux/input.h
8709 F:      include/linux/input/
8710 F:      include/uapi/linux/input-event-codes.h
8711 F:      include/uapi/linux/input.h
8712
8713 INPUT MULTITOUCH (MT) PROTOCOL
8714 M:      Henrik Rydberg <[email protected]>
8715 L:      [email protected]
8716 S:      Odd fixes
8717 F:      Documentation/input/multi-touch-protocol.rst
8718 F:      drivers/input/input-mt.c
8719 K:      \b(ABS|SYN)_MT_
8720
8721 INSIDE SECURE CRYPTO DRIVER
8722 M:      Antoine Tenart <[email protected]>
8723 L:      [email protected]
8724 S:      Maintained
8725 F:      drivers/crypto/inside-secure/
8726
8727 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8728 M:      Mimi Zohar <[email protected]>
8729 M:      Dmitry Kasatkin <[email protected]>
8730 L:      [email protected]
8731 S:      Supported
8732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8733 F:      security/integrity/ima/
8734
8735 INTEL 810/815 FRAMEBUFFER DRIVER
8736 M:      Antonino Daplas <[email protected]>
8737 L:      [email protected]
8738 S:      Maintained
8739 F:      drivers/video/fbdev/i810/
8740
8741 INTEL ASoC DRIVERS
8742 M:      Cezary Rojewski <[email protected]>
8743 M:      Pierre-Louis Bossart <[email protected]>
8744 M:      Liam Girdwood <[email protected]>
8745 M:      Jie Yang <[email protected]>
8746 L:      [email protected] (moderated for non-subscribers)
8747 S:      Supported
8748 F:      sound/soc/intel/
8749
8750 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8751 M:      Hans de Goede <[email protected]>
8752 L:      [email protected]
8753 S:      Maintained
8754 F:      drivers/platform/x86/intel_atomisp2_pm.c
8755
8756 INTEL ATOMISP2 LED DRIVER
8757 M:      Hans de Goede <[email protected]>
8758 L:      [email protected]
8759 S:      Maintained
8760 F:      drivers/platform/x86/intel_atomisp2_led.c
8761
8762 INTEL BROXTON PMC DRIVER
8763 M:      Mika Westerberg <[email protected]>
8764 M:      Zha Qipeng <[email protected]>
8765 S:      Maintained
8766 F:      drivers/mfd/intel_pmc_bxt.c
8767 F:      include/linux/mfd/intel_pmc_bxt.h
8768
8769 INTEL C600 SERIES SAS CONTROLLER DRIVER
8770 M:      Intel SCU Linux support <[email protected]>
8771 M:      Artur Paszkiewicz <[email protected]>
8772 L:      [email protected]
8773 S:      Supported
8774 T:      git git://git.code.sf.net/p/intel-sas/isci
8775 F:      drivers/scsi/isci/
8776
8777 INTEL CPU family model numbers
8778 M:      Tony Luck <[email protected]>
8779 M:      [email protected]
8780 L:      [email protected]
8781 S:      Supported
8782 F:      arch/x86/include/asm/intel-family.h
8783
8784 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8785 M:      Jani Nikula <[email protected]>
8786 M:      Joonas Lahtinen <[email protected]>
8787 M:      Rodrigo Vivi <[email protected]>
8788 L:      [email protected]
8789 S:      Supported
8790 W:      https://01.org/linuxgraphics/
8791 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8792 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8793 C:      irc://chat.freenode.net/intel-gfx
8794 T:      git git://anongit.freedesktop.org/drm-intel
8795 F:      Documentation/gpu/i915.rst
8796 F:      drivers/gpu/drm/i915/
8797 F:      include/drm/i915*
8798 F:      include/uapi/drm/i915_drm.h
8799
8800 INTEL ETHERNET DRIVERS
8801 M:      Jesse Brandeburg <[email protected]>
8802 M:      Tony Nguyen <[email protected]>
8803 L:      [email protected] (moderated for non-subscribers)
8804 S:      Supported
8805 W:      http://www.intel.com/support/feedback.htm
8806 W:      http://e1000.sourceforge.net/
8807 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8810 F:      Documentation/networking/device_drivers/ethernet/intel/
8811 F:      drivers/net/ethernet/intel/
8812 F:      drivers/net/ethernet/intel/*/
8813 F:      include/linux/avf/virtchnl.h
8814
8815 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8816 M:      Maik Broemme <[email protected]>
8817 L:      [email protected]
8818 S:      Maintained
8819 F:      Documentation/fb/intelfb.rst
8820 F:      drivers/video/fbdev/intelfb/
8821
8822 INTEL GPIO DRIVERS
8823 M:      Andy Shevchenko <[email protected]>
8824 L:      [email protected]
8825 S:      Maintained
8826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8827 F:      drivers/gpio/gpio-ich.c
8828 F:      drivers/gpio/gpio-intel-mid.c
8829 F:      drivers/gpio/gpio-merrifield.c
8830 F:      drivers/gpio/gpio-ml-ioh.c
8831 F:      drivers/gpio/gpio-pch.c
8832 F:      drivers/gpio/gpio-sch.c
8833 F:      drivers/gpio/gpio-sodaville.c
8834
8835 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8836 M:      Zhenyu Wang <[email protected]>
8837 M:      Zhi Wang <[email protected]>
8838 L:      [email protected]
8839 L:      [email protected]
8840 S:      Supported
8841 W:      https://01.org/igvt-g
8842 T:      git https://github.com/intel/gvt-linux.git
8843 F:      drivers/gpu/drm/i915/gvt/
8844
8845 INTEL HID EVENT DRIVER
8846 M:      Alex Hung <[email protected]>
8847 L:      [email protected]
8848 S:      Maintained
8849 F:      drivers/platform/x86/intel-hid.c
8850
8851 INTEL I/OAT DMA DRIVER
8852 M:      Dave Jiang <[email protected]>
8853 R:      Dan Williams <[email protected]>
8854 L:      [email protected]
8855 S:      Supported
8856 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8857 F:      drivers/dma/ioat*
8858
8859 INTEL IADX DRIVER
8860 M:      Dave Jiang <[email protected]>
8861 L:      [email protected]
8862 S:      Supported
8863 F:      drivers/dma/idxd/*
8864 F:      include/uapi/linux/idxd.h
8865
8866 INTEL IDLE DRIVER
8867 M:      Jacob Pan <[email protected]>
8868 M:      Len Brown <[email protected]>
8869 L:      [email protected]
8870 S:      Supported
8871 B:      https://bugzilla.kernel.org
8872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8873 F:      drivers/idle/intel_idle.c
8874
8875 INTEL INTEGRATED SENSOR HUB DRIVER
8876 M:      Srinivas Pandruvada <[email protected]>
8877 M:      Jiri Kosina <[email protected]>
8878 L:      [email protected]
8879 S:      Maintained
8880 F:      drivers/hid/intel-ish-hid/
8881
8882 INTEL IOMMU (VT-d)
8883 M:      David Woodhouse <[email protected]>
8884 M:      Lu Baolu <[email protected]>
8885 L:      [email protected]
8886 S:      Supported
8887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8888 F:      drivers/iommu/intel/
8889 F:      include/linux/intel-iommu.h
8890 F:      include/linux/intel-svm.h
8891
8892 INTEL IOP-ADMA DMA DRIVER
8893 R:      Dan Williams <[email protected]>
8894 S:      Odd fixes
8895 F:      drivers/dma/iop-adma.c
8896
8897 INTEL IPU3 CSI-2 CIO2 DRIVER
8898 M:      Yong Zhi <[email protected]>
8899 M:      Sakari Ailus <[email protected]>
8900 M:      Bingbu Cao <[email protected]>
8901 R:      Tianshu Qiu <[email protected]>
8902 L:      [email protected]
8903 S:      Maintained
8904 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8905 F:      drivers/media/pci/intel/ipu3/
8906
8907 INTEL IPU3 CSI-2 IMGU DRIVER
8908 M:      Sakari Ailus <[email protected]>
8909 R:      Bingbu Cao <[email protected]>
8910 R:      Tianshu Qiu <[email protected]>
8911 L:      [email protected]
8912 S:      Maintained
8913 F:      Documentation/admin-guide/media/ipu3.rst
8914 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8915 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8916 F:      drivers/staging/media/ipu3/
8917
8918 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8919 M:      Krzysztof Halasa <[email protected]>
8920 S:      Maintained
8921 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8922 F:      drivers/net/wan/ixp4xx_hss.c
8923 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8924 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8925 F:      include/linux/soc/ixp4xx/npe.h
8926 F:      include/linux/soc/ixp4xx/qmgr.h
8927
8928 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8929 M:      Deepak Saxena <[email protected]>
8930 S:      Maintained
8931 F:      drivers/char/hw_random/ixp4xx-rng.c
8932
8933 INTEL MANAGEMENT ENGINE (mei)
8934 M:      Tomas Winkler <[email protected]>
8935 L:      [email protected]
8936 S:      Supported
8937 F:      Documentation/driver-api/mei/*
8938 F:      drivers/misc/mei/
8939 F:      drivers/watchdog/mei_wdt.c
8940 F:      include/linux/mei_cl_bus.h
8941 F:      include/uapi/linux/mei.h
8942 F:      samples/mei/*
8943
8944 INTEL MENLOW THERMAL DRIVER
8945 M:      Sujith Thomas <[email protected]>
8946 L:      [email protected]
8947 S:      Supported
8948 W:      https://01.org/linux-acpi
8949 F:      drivers/platform/x86/intel_menlow.c
8950
8951 INTEL MIC DRIVERS (mic)
8952 M:      Sudeep Dutt <[email protected]>
8953 M:      Ashutosh Dixit <[email protected]>
8954 S:      Supported
8955 W:      https://github.com/sudeepdutt/mic
8956 W:      http://software.intel.com/en-us/mic-developer
8957 F:      Documentation/misc-devices/mic/
8958 F:      drivers/dma/mic_x100_dma.c
8959 F:      drivers/dma/mic_x100_dma.h
8960 F:      drivers/misc/mic/
8961 F:      include/linux/mic_bus.h
8962 F:      include/linux/scif.h
8963 F:      include/uapi/linux/mic_common.h
8964 F:      include/uapi/linux/mic_ioctl.h
8965 F:      include/uapi/linux/scif_ioctl.h
8966
8967 INTEL P-Unit IPC DRIVER
8968 M:      Zha Qipeng <[email protected]>
8969 L:      [email protected]
8970 S:      Maintained
8971 F:      arch/x86/include/asm/intel_punit_ipc.h
8972 F:      drivers/platform/x86/intel_punit_ipc.c
8973
8974 INTEL PMC CORE DRIVER
8975 M:      Rajneesh Bhardwaj <[email protected]>
8976 M:      David E Box <[email protected]>
8977 L:      [email protected]
8978 S:      Maintained
8979 F:      drivers/platform/x86/intel_pmc_core*
8980
8981 INTEL PMIC GPIO DRIVERS
8982 M:      Andy Shevchenko <[email protected]>
8983 S:      Maintained
8984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8985 F:      drivers/gpio/gpio-*cove.c
8986 F:      drivers/gpio/gpio-msic.c
8987
8988 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8989 M:      Andy Shevchenko <[email protected]>
8990 S:      Maintained
8991 F:      drivers/mfd/intel_msic.c
8992 F:      drivers/mfd/intel_soc_pmic*
8993 F:      include/linux/mfd/intel_msic.h
8994 F:      include/linux/mfd/intel_soc_pmic*
8995
8996 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8997 M:      Stanislav Yakovlev <[email protected]>
8998 L:      [email protected]
8999 S:      Maintained
9000 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9001 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9002 F:      drivers/net/wireless/intel/ipw2x00/
9003
9004 INTEL PSTATE DRIVER
9005 M:      Srinivas Pandruvada <[email protected]>
9006 M:      Len Brown <[email protected]>
9007 L:      [email protected]
9008 S:      Supported
9009 F:      drivers/cpufreq/intel_pstate.c
9010
9011 INTEL RDMA RNIC DRIVER
9012 M:      Faisal Latif <[email protected]>
9013 M:      Shiraz Saleem <[email protected]>
9014 L:      [email protected]
9015 S:      Supported
9016 F:      drivers/infiniband/hw/i40iw/
9017 F:      include/uapi/rdma/i40iw-abi.h
9018
9019 INTEL SCU DRIVERS
9020 M:      Mika Westerberg <[email protected]>
9021 S:      Maintained
9022 F:      arch/x86/include/asm/intel_scu_ipc.h
9023 F:      drivers/platform/x86/intel_scu_*
9024
9025 INTEL SPEED SELECT TECHNOLOGY
9026 M:      Srinivas Pandruvada <[email protected]>
9027 L:      [email protected]
9028 S:      Maintained
9029 F:      drivers/platform/x86/intel_speed_select_if/
9030 F:      include/uapi/linux/isst_if.h
9031 F:      tools/power/x86/intel-speed-select/
9032
9033 INTEL STRATIX10 FIRMWARE DRIVERS
9034 M:      Richard Gong <[email protected]>
9035 L:      [email protected]
9036 S:      Maintained
9037 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9038 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9039 F:      drivers/firmware/stratix10-rsu.c
9040 F:      drivers/firmware/stratix10-svc.c
9041 F:      include/linux/firmware/intel/stratix10-smc.h
9042 F:      include/linux/firmware/intel/stratix10-svc-client.h
9043
9044 INTEL TELEMETRY DRIVER
9045 M:      Rajneesh Bhardwaj <[email protected]>
9046 M:      "David E. Box" <[email protected]>
9047 L:      [email protected]
9048 S:      Maintained
9049 F:      arch/x86/include/asm/intel_telemetry.h
9050 F:      drivers/platform/x86/intel_telemetry*
9051
9052 INTEL UNCORE FREQUENCY CONTROL
9053 M:      Srinivas Pandruvada <[email protected]>
9054 L:      [email protected]
9055 S:      Maintained
9056 F:      drivers/platform/x86/intel-uncore-frequency.c
9057
9058 INTEL VIRTUAL BUTTON DRIVER
9059 M:      AceLan Kao <[email protected]>
9060 L:      [email protected]
9061 S:      Maintained
9062 F:      drivers/platform/x86/intel-vbtn.c
9063
9064 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9065 M:      Stanislaw Gruszka <[email protected]>
9066 L:      [email protected]
9067 S:      Supported
9068 F:      drivers/net/wireless/intel/iwlegacy/
9069
9070 INTEL WIRELESS WIFI LINK (iwlwifi)
9071 M:      Johannes Berg <[email protected]>
9072 M:      Emmanuel Grumbach <[email protected]>
9073 M:      Luca Coelho <[email protected]>
9074 M:      Intel Linux Wireless <[email protected]>
9075 L:      [email protected]
9076 S:      Supported
9077 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9079 F:      drivers/net/wireless/intel/iwlwifi/
9080
9081 INTEL WIRELESS WIMAX CONNECTION 2400
9082 M:      Inaky Perez-Gonzalez <[email protected]>
9083 M:      [email protected]
9084 L:      [email protected] (subscribers-only)
9085 S:      Supported
9086 W:      http://linuxwimax.org
9087 F:      Documentation/admin-guide/wimax/i2400m.rst
9088 F:      drivers/net/wimax/i2400m/
9089 F:      include/uapi/linux/wimax/i2400m.h
9090
9091 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9092 M:      Jithu Joseph <[email protected]>
9093 R:      Maurice Ma <[email protected]>
9094 S:      Maintained
9095 W:      https://slimbootloader.github.io/security/firmware-update.html
9096 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9097
9098 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9099 M:      Mario Limonciello <[email protected]>
9100 S:      Maintained
9101 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9102
9103 INTEL(R) TRACE HUB
9104 M:      Alexander Shishkin <[email protected]>
9105 S:      Supported
9106 F:      Documentation/trace/intel_th.rst
9107 F:      drivers/hwtracing/intel_th/
9108 F:      include/linux/intel_th.h
9109
9110 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9111 M:      Ning Sun <[email protected]>
9112 L:      [email protected]
9113 S:      Supported
9114 W:      http://tboot.sourceforge.net
9115 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9116 F:      Documentation/x86/intel_txt.rst
9117 F:      arch/x86/kernel/tboot.c
9118 F:      include/linux/tboot.h
9119
9120 INTERCONNECT API
9121 M:      Georgi Djakov <[email protected]>
9122 L:      [email protected]
9123 S:      Maintained
9124 F:      Documentation/devicetree/bindings/interconnect/
9125 F:      Documentation/driver-api/interconnect.rst
9126 F:      drivers/interconnect/
9127 F:      include/dt-bindings/interconnect/
9128 F:      include/linux/interconnect-provider.h
9129 F:      include/linux/interconnect.h
9130
9131 INVENSENSE ICM-426xx IMU DRIVER
9132 M:      Jean-Baptiste Maneyrol <[email protected]>
9133 L:      [email protected]
9134 S:      Maintained
9135 W       https://invensense.tdk.com/
9136 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9137 F:      drivers/iio/imu/inv_icm42600/
9138
9139 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9140 M:      Linus Walleij <[email protected]>
9141 L:      [email protected]
9142 S:      Maintained
9143 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9144 F:      drivers/iio/gyro/mpu3050*
9145
9146 IOC3 ETHERNET DRIVER
9147 M:      Ralf Baechle <[email protected]>
9148 L:      [email protected]
9149 S:      Maintained
9150 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9151
9152 IOMAP FILESYSTEM LIBRARY
9153 M:      Christoph Hellwig <[email protected]>
9154 M:      Darrick J. Wong <[email protected]>
9155 M:      [email protected]
9156 M:      [email protected]
9157 L:      [email protected]
9158 L:      [email protected]
9159 S:      Supported
9160 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9161 F:      fs/iomap/
9162 F:      include/linux/iomap.h
9163
9164 IOMMU DRIVERS
9165 M:      Joerg Roedel <[email protected]>
9166 L:      [email protected]
9167 S:      Maintained
9168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9169 F:      Documentation/devicetree/bindings/iommu/
9170 F:      Documentation/userspace-api/iommu.rst
9171 F:      drivers/iommu/
9172 F:      include/linux/iommu.h
9173 F:      include/linux/iova.h
9174 F:      include/linux/of_iommu.h
9175 F:      include/uapi/linux/iommu.h
9176
9177 IO_URING
9178 M:      Jens Axboe <[email protected]>
9179 L:      [email protected]
9180 S:      Maintained
9181 T:      git git://git.kernel.dk/linux-block
9182 T:      git git://git.kernel.dk/liburing
9183 F:      fs/io-wq.c
9184 F:      fs/io-wq.h
9185 F:      fs/io_uring.c
9186 F:      include/uapi/linux/io_uring.h
9187
9188 IPMI SUBSYSTEM
9189 M:      Corey Minyard <[email protected]>
9190 L:      [email protected] (moderated for non-subscribers)
9191 S:      Supported
9192 W:      http://openipmi.sourceforge.net/
9193 F:      Documentation/driver-api/ipmi.rst
9194 F:      Documentation/devicetree/bindings/ipmi/
9195 F:      drivers/char/ipmi/
9196 F:      include/linux/ipmi*
9197 F:      include/uapi/linux/ipmi*
9198
9199 IPS SCSI RAID DRIVER
9200 M:      Adaptec OEM Raid Solutions <[email protected]>
9201 L:      [email protected]
9202 S:      Maintained
9203 W:      http://www.adaptec.com/
9204 F:      drivers/scsi/ips*
9205
9206 IPVS
9207 M:      Wensong Zhang <[email protected]>
9208 M:      Simon Horman <[email protected]>
9209 M:      Julian Anastasov <[email protected]>
9210 L:      [email protected]
9211 L:      [email protected]
9212 S:      Maintained
9213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9215 F:      Documentation/networking/ipvs-sysctl.rst
9216 F:      include/net/ip_vs.h
9217 F:      include/uapi/linux/ip_vs.h
9218 F:      net/netfilter/ipvs/
9219
9220 IPWIRELESS DRIVER
9221 M:      Jiri Kosina <[email protected]>
9222 M:      David Sterba <[email protected]>
9223 S:      Odd Fixes
9224 F:      drivers/tty/ipwireless/
9225
9226 IPX NETWORK LAYER
9227 L:      [email protected]
9228 S:      Obsolete
9229 F:      include/uapi/linux/ipx.h
9230
9231 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9232 M:      Marc Zyngier <[email protected]>
9233 S:      Maintained
9234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9235 F:      Documentation/core-api/irq/irq-domain.rst
9236 F:      include/linux/irqdomain.h
9237 F:      kernel/irq/irqdomain.c
9238 F:      kernel/irq/msi.c
9239
9240 IRQ SUBSYSTEM
9241 M:      Thomas Gleixner <[email protected]>
9242 L:      [email protected]
9243 S:      Maintained
9244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9245 F:      kernel/irq/
9246
9247 IRQCHIP DRIVERS
9248 M:      Thomas Gleixner <[email protected]>
9249 M:      Jason Cooper <[email protected]>
9250 M:      Marc Zyngier <[email protected]>
9251 L:      [email protected]
9252 S:      Maintained
9253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9254 F:      Documentation/devicetree/bindings/interrupt-controller/
9255 F:      drivers/irqchip/
9256
9257 ISA
9258 M:      William Breathitt Gray <[email protected]>
9259 S:      Maintained
9260 F:      Documentation/driver-api/isa.rst
9261 F:      drivers/base/isa.c
9262 F:      include/linux/isa.h
9263
9264 ISA RADIO MODULE
9265 M:      Hans Verkuil <[email protected]>
9266 L:      [email protected]
9267 S:      Maintained
9268 W:      https://linuxtv.org
9269 T:      git git://linuxtv.org/media_tree.git
9270 F:      drivers/media/radio/radio-isa*
9271
9272 ISAPNP
9273 M:      Jaroslav Kysela <[email protected]>
9274 S:      Maintained
9275 F:      Documentation/driver-api/isapnp.rst
9276 F:      drivers/pnp/isapnp/
9277 F:      include/linux/isapnp.h
9278
9279 ISCSI
9280 M:      Lee Duncan <[email protected]>
9281 M:      Chris Leech <[email protected]>
9282 L:      [email protected]
9283 L:      [email protected]
9284 S:      Maintained
9285 W:      www.open-iscsi.com
9286 F:      drivers/scsi/*iscsi*
9287 F:      include/scsi/*iscsi*
9288
9289 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9290 M:      Peter Jones <[email protected]>
9291 M:      Konrad Rzeszutek Wilk <[email protected]>
9292 S:      Maintained
9293 F:      drivers/firmware/iscsi_ibft*
9294
9295 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9296 M:      Sagi Grimberg <[email protected]>
9297 M:      Max Gurtovoy <[email protected]>
9298 L:      [email protected]
9299 S:      Supported
9300 W:      http://www.openfabrics.org
9301 W:      www.open-iscsi.org
9302 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9303 F:      drivers/infiniband/ulp/iser/
9304
9305 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9306 M:      Sagi Grimberg <[email protected]>
9307 L:      [email protected]
9308 L:      [email protected]
9309 S:      Supported
9310 W:      http://www.linux-iscsi.org
9311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9312 F:      drivers/infiniband/ulp/isert
9313
9314 ISDN/CMTP OVER BLUETOOTH
9315 M:      Karsten Keil <[email protected]>
9316 L:      [email protected] (subscribers-only)
9317 L:      [email protected]
9318 S:      Odd Fixes
9319 W:      http://www.isdn4linux.de
9320 F:      Documentation/isdn/
9321 F:      drivers/isdn/capi/
9322 F:      include/linux/isdn/
9323 F:      include/uapi/linux/isdn/
9324 F:      net/bluetooth/cmtp/
9325
9326 ISDN/mISDN SUBSYSTEM
9327 M:      Karsten Keil <[email protected]>
9328 L:      [email protected] (subscribers-only)
9329 L:      [email protected]
9330 S:      Maintained
9331 W:      http://www.isdn4linux.de
9332 F:      drivers/isdn/Kconfig
9333 F:      drivers/isdn/Makefile
9334 F:      drivers/isdn/hardware/
9335 F:      drivers/isdn/mISDN/
9336
9337 IT87 HARDWARE MONITORING DRIVER
9338 M:      Jean Delvare <[email protected]>
9339 L:      [email protected]
9340 S:      Maintained
9341 F:      Documentation/hwmon/it87.rst
9342 F:      drivers/hwmon/it87.c
9343
9344 IT913X MEDIA DRIVER
9345 M:      Antti Palosaari <[email protected]>
9346 L:      [email protected]
9347 S:      Maintained
9348 W:      https://linuxtv.org
9349 W:      http://palosaari.fi/linux/
9350 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9351 T:      git git://linuxtv.org/anttip/media_tree.git
9352 F:      drivers/media/tuners/it913x*
9353
9354 IVTV VIDEO4LINUX DRIVER
9355 M:      Andy Walls <[email protected]>
9356 L:      [email protected]
9357 S:      Maintained
9358 W:      https://linuxtv.org
9359 T:      git git://linuxtv.org/media_tree.git
9360 F:      Documentation/admin-guide/media/ivtv*
9361 F:      drivers/media/pci/ivtv/
9362 F:      include/uapi/linux/ivtv*
9363
9364 IX2505V MEDIA DRIVER
9365 M:      Malcolm Priestley <[email protected]>
9366 L:      [email protected]
9367 S:      Maintained
9368 W:      https://linuxtv.org
9369 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9370 F:      drivers/media/dvb-frontends/ix2505v*
9371
9372 JAILHOUSE HYPERVISOR INTERFACE
9373 M:      Jan Kiszka <[email protected]>
9374 L:      [email protected]
9375 S:      Maintained
9376 F:      arch/x86/include/asm/jailhouse_para.h
9377 F:      arch/x86/kernel/jailhouse.c
9378
9379 JC42.4 TEMPERATURE SENSOR DRIVER
9380 M:      Guenter Roeck <[email protected]>
9381 L:      [email protected]
9382 S:      Maintained
9383 F:      Documentation/hwmon/jc42.rst
9384 F:      drivers/hwmon/jc42.c
9385
9386 JFS FILESYSTEM
9387 M:      Dave Kleikamp <[email protected]>
9388 L:      [email protected]
9389 S:      Maintained
9390 W:      http://jfs.sourceforge.net/
9391 T:      git git://github.com/kleikamp/linux-shaggy.git
9392 F:      Documentation/admin-guide/jfs.rst
9393 F:      fs/jfs/
9394
9395 JME NETWORK DRIVER
9396 M:      Guo-Fu Tseng <[email protected]>
9397 L:      [email protected]
9398 S:      Maintained
9399 F:      drivers/net/ethernet/jme.*
9400
9401 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9402 M:      David Woodhouse <[email protected]>
9403 M:      Richard Weinberger <[email protected]>
9404 L:      [email protected]
9405 S:      Odd Fixes
9406 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9407 T:      git git://git.infradead.org/ubifs-2.6.git
9408 F:      fs/jffs2/
9409 F:      include/uapi/linux/jffs2.h
9410
9411 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9412 M:      "Theodore Ts'o" <[email protected]>
9413 M:      Jan Kara <[email protected]>
9414 L:      [email protected]
9415 S:      Maintained
9416 F:      fs/jbd2/
9417 F:      include/linux/jbd2.h
9418
9419 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9420 M:      Mikhail Ulyanov <[email protected]>
9421 L:      [email protected]
9422 S:      Maintained
9423 F:      drivers/media/platform/rcar_jpu.c
9424
9425 JSM Neo PCI based serial card
9426 L:      [email protected]
9427 S:      Orphan
9428 F:      drivers/tty/serial/jsm/
9429
9430 K10TEMP HARDWARE MONITORING DRIVER
9431 M:      Clemens Ladisch <[email protected]>
9432 L:      [email protected]
9433 S:      Maintained
9434 F:      Documentation/hwmon/k10temp.rst
9435 F:      drivers/hwmon/k10temp.c
9436
9437 K8TEMP HARDWARE MONITORING DRIVER
9438 M:      Rudolf Marek <[email protected]>
9439 L:      [email protected]
9440 S:      Maintained
9441 F:      Documentation/hwmon/k8temp.rst
9442 F:      drivers/hwmon/k8temp.c
9443
9444 KASAN
9445 M:      Andrey Ryabinin <[email protected]>
9446 R:      Alexander Potapenko <[email protected]>
9447 R:      Dmitry Vyukov <[email protected]>
9448 L:      [email protected]
9449 S:      Maintained
9450 F:      Documentation/dev-tools/kasan.rst
9451 F:      arch/*/include/asm/kasan.h
9452 F:      arch/*/mm/kasan_init*
9453 F:      include/linux/kasan*.h
9454 F:      lib/test_kasan.c
9455 F:      mm/kasan/
9456 F:      scripts/Makefile.kasan
9457
9458 KCONFIG
9459 M:      Masahiro Yamada <[email protected]>
9460 L:      [email protected]
9461 S:      Maintained
9462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9463 F:      Documentation/kbuild/kconfig*
9464 F:      scripts/Kconfig.include
9465 F:      scripts/kconfig/
9466
9467 KCOV
9468 R:      Dmitry Vyukov <[email protected]>
9469 R:      Andrey Konovalov <[email protected]>
9470 L:      [email protected]
9471 S:      Maintained
9472 F:      Documentation/dev-tools/kcov.rst
9473 F:      include/linux/kcov.h
9474 F:      include/uapi/linux/kcov.h
9475 F:      kernel/kcov.c
9476 F:      scripts/Makefile.kcov
9477
9478 KCSAN
9479 M:      Marco Elver <[email protected]>
9480 R:      Dmitry Vyukov <[email protected]>
9481 L:      [email protected]
9482 S:      Maintained
9483 F:      Documentation/dev-tools/kcsan.rst
9484 F:      include/linux/kcsan*.h
9485 F:      kernel/kcsan/
9486 F:      lib/Kconfig.kcsan
9487 F:      scripts/Makefile.kcsan
9488
9489 KDUMP
9490 M:      Dave Young <[email protected]>
9491 M:      Baoquan He <[email protected]>
9492 R:      Vivek Goyal <[email protected]>
9493 L:      [email protected]
9494 S:      Maintained
9495 W:      http://lse.sourceforge.net/kdump/
9496 F:      Documentation/admin-guide/kdump/
9497 F:      fs/proc/vmcore.c
9498 F:      include/linux/crash_core.h
9499 F:      include/linux/crash_dump.h
9500 F:      include/uapi/linux/vmcore.h
9501 F:      kernel/crash_*.c
9502
9503 KEENE FM RADIO TRANSMITTER DRIVER
9504 M:      Hans Verkuil <[email protected]>
9505 L:      [email protected]
9506 S:      Maintained
9507 W:      https://linuxtv.org
9508 T:      git git://linuxtv.org/media_tree.git
9509 F:      drivers/media/radio/radio-keene*
9510
9511 KERNEL AUTOMOUNTER
9512 M:      Ian Kent <[email protected]>
9513 L:      [email protected]
9514 S:      Maintained
9515 F:      fs/autofs/
9516
9517 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9518 M:      Masahiro Yamada <[email protected]>
9519 M:      Michal Marek <[email protected]>
9520 L:      [email protected]
9521 S:      Maintained
9522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9523 F:      Documentation/kbuild/
9524 F:      Makefile
9525 F:      scripts/*vmlinux*
9526 F:      scripts/Kbuild*
9527 F:      scripts/Makefile*
9528 F:      scripts/basic/
9529 F:      scripts/mk*
9530 F:      scripts/mod/
9531 F:      scripts/package/
9532
9533 KERNEL JANITORS
9534 L:      [email protected]
9535 S:      Odd Fixes
9536 W:      http://kernelnewbies.org/KernelJanitors
9537
9538 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9539 M:      "J. Bruce Fields" <[email protected]>
9540 M:      Chuck Lever <[email protected]>
9541 L:      [email protected]
9542 S:      Supported
9543 W:      http://nfs.sourceforge.net/
9544 T:      git git://linux-nfs.org/~bfields/linux.git
9545 F:      fs/lockd/
9546 F:      fs/nfs_common/
9547 F:      fs/nfsd/
9548 F:      include/linux/lockd/
9549 F:      include/linux/sunrpc/
9550 F:      include/uapi/linux/nfsd/
9551 F:      include/uapi/linux/sunrpc/
9552 F:      net/sunrpc/
9553
9554 KERNEL SELFTEST FRAMEWORK
9555 M:      Shuah Khan <[email protected]>
9556 M:      Shuah Khan <[email protected]>
9557 L:      [email protected]
9558 S:      Maintained
9559 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9561 F:      Documentation/dev-tools/kselftest*
9562 F:      tools/testing/selftests/
9563
9564 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9565 M:      Brendan Higgins <[email protected]>
9566 L:      [email protected]
9567 L:      [email protected]
9568 S:      Maintained
9569 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9570 F:      Documentation/dev-tools/kunit/
9571 F:      include/kunit/
9572 F:      lib/kunit/
9573 F:      tools/testing/kunit/
9574
9575 KERNEL USERMODE HELPER
9576 M:      Luis Chamberlain <[email protected]>
9577 L:      [email protected]
9578 S:      Maintained
9579 F:      include/linux/umh.h
9580 F:      kernel/umh.c
9581
9582 KERNEL VIRTUAL MACHINE (KVM)
9583 M:      Paolo Bonzini <[email protected]>
9584 L:      [email protected]
9585 S:      Supported
9586 W:      http://www.linux-kvm.org
9587 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9588 F:      Documentation/virt/kvm/
9589 F:      include/asm-generic/kvm*
9590 F:      include/kvm/iodev.h
9591 F:      include/linux/kvm*
9592 F:      include/trace/events/kvm.h
9593 F:      include/uapi/asm-generic/kvm*
9594 F:      include/uapi/linux/kvm*
9595 F:      tools/kvm/
9596 F:      tools/testing/selftests/kvm/
9597 F:      virt/kvm/*
9598
9599 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9600 M:      Marc Zyngier <[email protected]>
9601 R:      James Morse <[email protected]>
9602 R:      Julien Thierry <[email protected]>
9603 R:      Suzuki K Poulose <[email protected]>
9604 L:      [email protected] (moderated for non-subscribers)
9605 L:      [email protected]
9606 S:      Maintained
9607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9608 F:      arch/arm64/include/asm/kvm*
9609 F:      arch/arm64/include/uapi/asm/kvm*
9610 F:      arch/arm64/kvm/
9611 F:      include/kvm/arm_*
9612
9613 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9614 M:      Huacai Chen <[email protected]>
9615 M:      Aleksandar Markovic <[email protected]>
9616 L:      [email protected]
9617 L:      [email protected]
9618 S:      Maintained
9619 F:      arch/mips/include/asm/kvm*
9620 F:      arch/mips/include/uapi/asm/kvm*
9621 F:      arch/mips/kvm/
9622
9623 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9624 M:      Paul Mackerras <[email protected]>
9625 L:      [email protected]
9626 S:      Supported
9627 W:      http://www.linux-kvm.org/
9628 T:      git git://github.com/agraf/linux-2.6.git
9629 F:      arch/powerpc/include/asm/kvm*
9630 F:      arch/powerpc/include/uapi/asm/kvm*
9631 F:      arch/powerpc/kernel/kvm*
9632 F:      arch/powerpc/kvm/
9633
9634 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9635 M:      Christian Borntraeger <[email protected]>
9636 M:      Janosch Frank <[email protected]>
9637 R:      David Hildenbrand <[email protected]>
9638 R:      Cornelia Huck <[email protected]>
9639 R:      Claudio Imbrenda <[email protected]>
9640 L:      [email protected]
9641 S:      Supported
9642 W:      http://www.ibm.com/developerworks/linux/linux390/
9643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9644 F:      Documentation/virt/kvm/s390*
9645 F:      arch/s390/include/asm/gmap.h
9646 F:      arch/s390/include/asm/kvm*
9647 F:      arch/s390/include/uapi/asm/kvm*
9648 F:      arch/s390/kvm/
9649 F:      arch/s390/mm/gmap.c
9650 F:      tools/testing/selftests/kvm/*/s390x/
9651 F:      tools/testing/selftests/kvm/s390x/
9652
9653 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9654 M:      Paolo Bonzini <[email protected]>
9655 R:      Sean Christopherson <[email protected]>
9656 R:      Vitaly Kuznetsov <[email protected]>
9657 R:      Wanpeng Li <[email protected]>
9658 R:      Jim Mattson <[email protected]>
9659 R:      Joerg Roedel <[email protected]>
9660 L:      [email protected]
9661 S:      Supported
9662 W:      http://www.linux-kvm.org
9663 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9664 F:      arch/x86/include/asm/kvm*
9665 F:      arch/x86/include/asm/pvclock-abi.h
9666 F:      arch/x86/include/asm/svm.h
9667 F:      arch/x86/include/asm/vmx*.h
9668 F:      arch/x86/include/uapi/asm/kvm*
9669 F:      arch/x86/include/uapi/asm/svm.h
9670 F:      arch/x86/include/uapi/asm/vmx.h
9671 F:      arch/x86/kernel/kvm.c
9672 F:      arch/x86/kernel/kvmclock.c
9673 F:      arch/x86/kvm/
9674 F:      arch/x86/kvm/*/
9675
9676 KERNFS
9677 M:      Greg Kroah-Hartman <[email protected]>
9678 M:      Tejun Heo <[email protected]>
9679 S:      Supported
9680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9681 F:      fs/kernfs/
9682 F:      include/linux/kernfs.h
9683
9684 KEXEC
9685 M:      Eric Biederman <[email protected]>
9686 L:      [email protected]
9687 S:      Maintained
9688 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9689 F:      include/linux/kexec.h
9690 F:      include/uapi/linux/kexec.h
9691 F:      kernel/kexec*
9692
9693 KEYS-ENCRYPTED
9694 M:      Mimi Zohar <[email protected]>
9695 L:      [email protected]
9696 L:      [email protected]
9697 S:      Supported
9698 F:      Documentation/security/keys/trusted-encrypted.rst
9699 F:      include/keys/encrypted-type.h
9700 F:      security/keys/encrypted-keys/
9701
9702 KEYS-TRUSTED
9703 M:      James Bottomley <[email protected]>
9704 M:      Jarkko Sakkinen <[email protected]>
9705 M:      Mimi Zohar <[email protected]>
9706 L:      [email protected]
9707 L:      [email protected]
9708 S:      Supported
9709 F:      Documentation/security/keys/trusted-encrypted.rst
9710 F:      include/keys/trusted-type.h
9711 F:      include/keys/trusted_tpm.h
9712 F:      security/keys/trusted-keys/
9713
9714 KEYS/KEYRINGS
9715 M:      David Howells <[email protected]>
9716 M:      Jarkko Sakkinen <[email protected]>
9717 L:      [email protected]
9718 S:      Maintained
9719 F:      Documentation/security/keys/core.rst
9720 F:      include/keys/
9721 F:      include/linux/key-type.h
9722 F:      include/linux/key.h
9723 F:      include/linux/keyctl.h
9724 F:      include/uapi/linux/keyctl.h
9725 F:      security/keys/
9726
9727 KFIFO
9728 M:      Stefani Seibold <[email protected]>
9729 S:      Maintained
9730 F:      include/linux/kfifo.h
9731 F:      lib/kfifo.c
9732 F:      samples/kfifo/
9733
9734 KGDB / KDB /debug_core
9735 M:      Jason Wessel <[email protected]>
9736 M:      Daniel Thompson <[email protected]>
9737 R:      Douglas Anderson <[email protected]>
9738 L:      [email protected]
9739 S:      Maintained
9740 W:      http://kgdb.wiki.kernel.org/
9741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9742 F:      Documentation/dev-tools/kgdb.rst
9743 F:      drivers/misc/kgdbts.c
9744 F:      drivers/tty/serial/kgdboc.c
9745 F:      include/linux/kdb.h
9746 F:      include/linux/kgdb.h
9747 F:      kernel/debug/
9748
9749 KHADAS MCU MFD DRIVER
9750 M:      Neil Armstrong <[email protected]>
9751 L:      [email protected]
9752 S:      Maintained
9753 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9754 F:      drivers/mfd/khadas-mcu.c
9755 F:      include/linux/mfd/khadas-mcu.h
9756 F:      drivers/thermal/khadas_mcu_fan.c
9757
9758 KMEMLEAK
9759 M:      Catalin Marinas <[email protected]>
9760 S:      Maintained
9761 F:      Documentation/dev-tools/kmemleak.rst
9762 F:      include/linux/kmemleak.h
9763 F:      mm/kmemleak.c
9764 F:      samples/kmemleak/kmemleak-test.c
9765
9766 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9767 M:      Luis Chamberlain <[email protected]>
9768 L:      [email protected]
9769 S:      Maintained
9770 F:      include/linux/kmod.h
9771 F:      kernel/kmod.c
9772 F:      lib/test_kmod.c
9773 F:      tools/testing/selftests/kmod/
9774
9775 KPROBES
9776 M:      Naveen N. Rao <[email protected]>
9777 M:      Anil S Keshavamurthy <[email protected]>
9778 M:      "David S. Miller" <[email protected]>
9779 M:      Masami Hiramatsu <[email protected]>
9780 S:      Maintained
9781 F:      Documentation/trace/kprobes.rst
9782 F:      include/asm-generic/kprobes.h
9783 F:      include/linux/kprobes.h
9784 F:      kernel/kprobes.c
9785
9786 KS0108 LCD CONTROLLER DRIVER
9787 M:      Miguel Ojeda Sandonis <[email protected]>
9788 S:      Maintained
9789 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9790 F:      drivers/auxdisplay/ks0108.c
9791 F:      include/linux/ks0108.h
9792
9793 KTD253 BACKLIGHT DRIVER
9794 M:      Linus Walleij <[email protected]>
9795 S:      Maintained
9796 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9797 F:      drivers/video/backlight/ktd253-backlight.c
9798
9799 L3MDEV
9800 M:      David Ahern <[email protected]>
9801 L:      [email protected]
9802 S:      Maintained
9803 F:      include/net/l3mdev.h
9804 F:      net/l3mdev
9805
9806 L7 BPF FRAMEWORK
9807 M:      John Fastabend <[email protected]>
9808 M:      Daniel Borkmann <[email protected]>
9809 M:      Jakub Sitnicki <[email protected]>
9810 M:      Lorenz Bauer <[email protected]>
9811 L:      [email protected]
9812 L:      [email protected]
9813 S:      Maintained
9814 F:      include/linux/skmsg.h
9815 F:      net/core/skmsg.c
9816 F:      net/core/sock_map.c
9817 F:      net/ipv4/tcp_bpf.c
9818 F:      net/ipv4/udp_bpf.c
9819
9820 LANTIQ / INTEL Ethernet drivers
9821 M:      Hauke Mehrtens <[email protected]>
9822 L:      [email protected]
9823 S:      Maintained
9824 F:      drivers/net/dsa/lantiq_gswip.c
9825 F:      drivers/net/dsa/lantiq_pce.h
9826 F:      drivers/net/ethernet/lantiq_xrx200.c
9827 F:      net/dsa/tag_gswip.c
9828
9829 LANTIQ MIPS ARCHITECTURE
9830 M:      John Crispin <[email protected]>
9831 L:      [email protected]
9832 S:      Maintained
9833 F:      arch/mips/lantiq
9834 F:      drivers/soc/lantiq
9835
9836 LAPB module
9837 L:      [email protected]
9838 S:      Orphan
9839 F:      Documentation/networking/lapb-module.rst
9840 F:      include/*/lapb.h
9841 F:      net/lapb/
9842
9843 LASI 53c700 driver for PARISC
9844 M:      "James E.J. Bottomley" <[email protected]>
9845 L:      [email protected]
9846 S:      Maintained
9847 F:      Documentation/scsi/53c700.rst
9848 F:      drivers/scsi/53c700*
9849
9850 LEAKING_ADDRESSES
9851 M:      Tobin C. Harding <[email protected]>
9852 M:      Tycho Andersen <[email protected]>
9853 L:      [email protected]
9854 S:      Maintained
9855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9856 F:      scripts/leaking_addresses.pl
9857
9858 LED SUBSYSTEM
9859 M:      Pavel Machek <[email protected]>
9860 R:      Dan Murphy <[email protected]>
9861 L:      [email protected]
9862 S:      Maintained
9863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9864 F:      Documentation/devicetree/bindings/leds/
9865 F:      drivers/leds/
9866 F:      include/linux/leds.h
9867
9868 LEGACY EEPROM DRIVER
9869 M:      Jean Delvare <[email protected]>
9870 S:      Maintained
9871 F:      Documentation/misc-devices/eeprom.rst
9872 F:      drivers/misc/eeprom/eeprom.c
9873
9874 LEGO MINDSTORMS EV3
9875 R:      David Lechner <[email protected]>
9876 S:      Maintained
9877 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9878 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9879 F:      drivers/power/supply/lego_ev3_battery.c
9880
9881 LEGO USB Tower driver
9882 M:      Juergen Stuber <[email protected]>
9883 L:      [email protected]
9884 S:      Maintained
9885 W:      http://legousb.sourceforge.net/
9886 F:      drivers/usb/misc/legousbtower.c
9887
9888 LG LAPTOP EXTRAS
9889 M:      Matan Ziv-Av <[email protected]>
9890 L:      [email protected]
9891 S:      Maintained
9892 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9893 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9894 F:      drivers/platform/x86/lg-laptop.c
9895
9896 LG2160 MEDIA DRIVER
9897 M:      Michael Krufky <[email protected]>
9898 L:      [email protected]
9899 S:      Maintained
9900 W:      https://linuxtv.org
9901 W:      http://github.com/mkrufky
9902 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9903 T:      git git://linuxtv.org/mkrufky/tuners.git
9904 F:      drivers/media/dvb-frontends/lg2160.*
9905
9906 LGDT3305 MEDIA DRIVER
9907 M:      Michael Krufky <[email protected]>
9908 L:      [email protected]
9909 S:      Maintained
9910 W:      https://linuxtv.org
9911 W:      http://github.com/mkrufky
9912 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9913 T:      git git://linuxtv.org/mkrufky/tuners.git
9914 F:      drivers/media/dvb-frontends/lgdt3305.*
9915
9916 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9917 M:      Viresh Kumar <[email protected]>
9918 L:      [email protected]
9919 S:      Maintained
9920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9921 F:      drivers/ata/pata_arasan_cf.c
9922 F:      include/linux/pata_arasan_cf_data.h
9923
9924 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9925 M:      Linus Walleij <[email protected]>
9926 L:      [email protected]
9927 S:      Maintained
9928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9929 F:      drivers/ata/pata_ftide010.c
9930 F:      drivers/ata/sata_gemini.c
9931 F:      drivers/ata/sata_gemini.h
9932
9933 LIBATA SATA AHCI PLATFORM devices support
9934 M:      Hans de Goede <[email protected]>
9935 M:      Jens Axboe <[email protected]>
9936 L:      [email protected]
9937 S:      Maintained
9938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9939 F:      drivers/ata/ahci_platform.c
9940 F:      drivers/ata/libahci_platform.c
9941 F:      include/linux/ahci_platform.h
9942
9943 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9944 M:      Mikael Pettersson <[email protected]>
9945 L:      [email protected]
9946 S:      Maintained
9947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9948 F:      drivers/ata/sata_promise.*
9949
9950 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9951 M:      Jens Axboe <[email protected]>
9952 L:      [email protected]
9953 S:      Maintained
9954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9955 F:      Documentation/devicetree/bindings/ata/
9956 F:      drivers/ata/
9957 F:      include/linux/ata.h
9958 F:      include/linux/libata.h
9959
9960 LIBLOCKDEP
9961 M:      Sasha Levin <[email protected]>
9962 S:      Maintained
9963 F:      tools/lib/lockdep/
9964
9965 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9966 M:      Dan Williams <[email protected]>
9967 M:      Vishal Verma <[email protected]>
9968 M:      Dave Jiang <[email protected]>
9969 L:      [email protected]
9970 S:      Supported
9971 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9972 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9973 F:      drivers/nvdimm/blk.c
9974 F:      drivers/nvdimm/region_devs.c
9975
9976 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9977 M:      Vishal Verma <[email protected]>
9978 M:      Dan Williams <[email protected]>
9979 M:      Dave Jiang <[email protected]>
9980 L:      [email protected]
9981 S:      Supported
9982 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9983 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9984 F:      drivers/nvdimm/btt*
9985
9986 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9987 M:      Dan Williams <[email protected]>
9988 M:      Vishal Verma <[email protected]>
9989 M:      Dave Jiang <[email protected]>
9990 L:      [email protected]
9991 S:      Supported
9992 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9993 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9994 F:      drivers/nvdimm/pmem*
9995
9996 LIBNVDIMM: DEVICETREE BINDINGS
9997 M:      Oliver O'Halloran <[email protected]>
9998 L:      [email protected]
9999 S:      Supported
10000 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10001 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10002 F:      drivers/nvdimm/of_pmem.c
10003
10004 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10005 M:      Dan Williams <[email protected]>
10006 M:      Vishal Verma <[email protected]>
10007 M:      Dave Jiang <[email protected]>
10008 M:      Ira Weiny <[email protected]>
10009 L:      [email protected]
10010 S:      Supported
10011 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10012 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10014 F:      drivers/acpi/nfit/*
10015 F:      drivers/nvdimm/*
10016 F:      include/linux/libnvdimm.h
10017 F:      include/linux/nd.h
10018 F:      include/uapi/linux/ndctl.h
10019 F:      tools/testing/nvdimm/
10020
10021 LICENSES and SPDX stuff
10022 M:      Thomas Gleixner <[email protected]>
10023 M:      Greg Kroah-Hartman <[email protected]>
10024 L:      [email protected]
10025 S:      Maintained
10026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10027 F:      COPYING
10028 F:      Documentation/process/license-rules.rst
10029 F:      LICENSES/
10030 F:      scripts/spdxcheck-test.sh
10031 F:      scripts/spdxcheck.py
10032
10033 LIGHTNVM PLATFORM SUPPORT
10034 M:      Matias Bjorling <[email protected]>
10035 L:      [email protected]
10036 S:      Maintained
10037 W:      http://github/OpenChannelSSD
10038 F:      drivers/lightnvm/
10039 F:      include/linux/lightnvm.h
10040 F:      include/uapi/linux/lightnvm.h
10041
10042 LINEAR RANGES HELPERS
10043 M:      Mark Brown <[email protected]>
10044 R:      Matti Vaittinen <[email protected]>
10045 F:      lib/linear_ranges.c
10046 F:      lib/test_linear_ranges.c
10047 F:      include/linux/linear_range.h
10048
10049 LINUX FOR POWER MACINTOSH
10050 M:      Benjamin Herrenschmidt <[email protected]>
10051 L:      [email protected]
10052 S:      Odd Fixes
10053 F:      arch/powerpc/platforms/powermac/
10054 F:      drivers/macintosh/
10055
10056 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10057 M:      Michael Ellerman <[email protected]>
10058 R:      Benjamin Herrenschmidt <[email protected]>
10059 R:      Paul Mackerras <[email protected]>
10060 L:      [email protected]
10061 S:      Supported
10062 W:      https://github.com/linuxppc/wiki/wiki
10063 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10065 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10066 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10067 F:      Documentation/devicetree/bindings/powerpc/
10068 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10069 F:      Documentation/powerpc/
10070 F:      arch/powerpc/
10071 F:      drivers/*/*/*pasemi*
10072 F:      drivers/*/*pasemi*
10073 F:      drivers/char/tpm/tpm_ibmvtpm*
10074 F:      drivers/crypto/nx/
10075 F:      drivers/crypto/vmx/
10076 F:      drivers/i2c/busses/i2c-opal.c
10077 F:      drivers/net/ethernet/ibm/ibmveth.*
10078 F:      drivers/net/ethernet/ibm/ibmvnic.*
10079 F:      drivers/pci/hotplug/pnv_php.c
10080 F:      drivers/pci/hotplug/rpa*
10081 F:      drivers/rtc/rtc-opal.c
10082 F:      drivers/scsi/ibmvscsi/
10083 F:      drivers/tty/hvc/hvc_opal.c
10084 F:      drivers/watchdog/wdrtas.c
10085 F:      tools/testing/selftests/powerpc
10086 N:      /pmac
10087 N:      powermac
10088 N:      powernv
10089 N:      [^a-z0-9]ps3
10090 N:      pseries
10091
10092 LINUX FOR POWERPC EMBEDDED MPC5XXX
10093 M:      Anatolij Gustschin <[email protected]>
10094 L:      [email protected]
10095 S:      Odd Fixes
10096 F:      arch/powerpc/platforms/512x/
10097 F:      arch/powerpc/platforms/52xx/
10098
10099 LINUX FOR POWERPC EMBEDDED PPC4XX
10100 L:      [email protected]
10101 S:      Orphan
10102 F:      arch/powerpc/platforms/40x/
10103 F:      arch/powerpc/platforms/44x/
10104
10105 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10106 M:      Scott Wood <[email protected]>
10107 L:      [email protected]
10108 S:      Odd fixes
10109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10110 F:      Documentation/devicetree/bindings/powerpc/fsl/
10111 F:      arch/powerpc/platforms/83xx/
10112 F:      arch/powerpc/platforms/85xx/
10113
10114 LINUX FOR POWERPC EMBEDDED PPC8XX
10115 M:      Christophe Leroy <[email protected]>
10116 L:      [email protected]
10117 S:      Maintained
10118 F:      arch/powerpc/platforms/8xx/
10119
10120 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10121 M:      Kees Cook <[email protected]>
10122 S:      Maintained
10123 F:      drivers/misc/lkdtm/*
10124 F:      tools/testing/selftests/lkdtm/*
10125
10126 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10127 M:      Alan Stern <[email protected]>
10128 M:      Andrea Parri <[email protected]>
10129 M:      Will Deacon <[email protected]>
10130 M:      Peter Zijlstra <[email protected]>
10131 M:      Boqun Feng <[email protected]>
10132 M:      Nicholas Piggin <[email protected]>
10133 M:      David Howells <[email protected]>
10134 M:      Jade Alglave <[email protected]>
10135 M:      Luc Maranget <[email protected]>
10136 M:      "Paul E. McKenney" <[email protected]>
10137 R:      Akira Yokosawa <[email protected]>
10138 R:      Daniel Lustig <[email protected]>
10139 R:      Joel Fernandes <[email protected]>
10140 L:      [email protected]
10141 L:      [email protected]
10142 S:      Supported
10143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10144 F:      Documentation/atomic_bitops.txt
10145 F:      Documentation/atomic_t.txt
10146 F:      Documentation/core-api/atomic_ops.rst
10147 F:      Documentation/core-api/refcount-vs-atomic.rst
10148 F:      Documentation/litmus-tests/
10149 F:      Documentation/memory-barriers.txt
10150 F:      tools/memory-model/
10151
10152 LIS3LV02D ACCELEROMETER DRIVER
10153 M:      Eric Piel <[email protected]>
10154 S:      Maintained
10155 F:      Documentation/misc-devices/lis3lv02d.rst
10156 F:      drivers/misc/lis3lv02d/
10157 F:      drivers/platform/x86/hp_accel.c
10158
10159 LIST KUNIT TEST
10160 M:      David Gow <[email protected]>
10161 L:      [email protected]
10162 L:      [email protected]
10163 S:      Maintained
10164 F:      lib/list-test.c
10165
10166 LIVE PATCHING
10167 M:      Josh Poimboeuf <[email protected]>
10168 M:      Jiri Kosina <[email protected]>
10169 M:      Miroslav Benes <[email protected]>
10170 M:      Petr Mladek <[email protected]>
10171 R:      Joe Lawrence <[email protected]>
10172 L:      [email protected]
10173 S:      Maintained
10174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10175 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10176 F:      Documentation/livepatch/
10177 F:      arch/powerpc/include/asm/livepatch.h
10178 F:      arch/s390/include/asm/livepatch.h
10179 F:      arch/x86/include/asm/livepatch.h
10180 F:      include/linux/livepatch.h
10181 F:      kernel/livepatch/
10182 F:      lib/livepatch/
10183 F:      samples/livepatch/
10184 F:      tools/testing/selftests/livepatch/
10185
10186 LLC (802.2)
10187 L:      [email protected]
10188 S:      Odd fixes
10189 F:      include/linux/llc.h
10190 F:      include/net/llc*
10191 F:      include/uapi/linux/llc.h
10192 F:      net/llc/
10193
10194 LM73 HARDWARE MONITOR DRIVER
10195 M:      Guillaume Ligneul <[email protected]>
10196 L:      [email protected]
10197 S:      Maintained
10198 F:      drivers/hwmon/lm73.c
10199
10200 LM78 HARDWARE MONITOR DRIVER
10201 M:      Jean Delvare <[email protected]>
10202 L:      [email protected]
10203 S:      Maintained
10204 F:      Documentation/hwmon/lm78.rst
10205 F:      drivers/hwmon/lm78.c
10206
10207 LM83 HARDWARE MONITOR DRIVER
10208 M:      Jean Delvare <[email protected]>
10209 L:      [email protected]
10210 S:      Maintained
10211 F:      Documentation/hwmon/lm83.rst
10212 F:      drivers/hwmon/lm83.c
10213
10214 LM90 HARDWARE MONITOR DRIVER
10215 M:      Jean Delvare <[email protected]>
10216 L:      [email protected]
10217 S:      Maintained
10218 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10219 F:      Documentation/hwmon/lm90.rst
10220 F:      drivers/hwmon/lm90.c
10221 F:      include/dt-bindings/thermal/lm90.h
10222
10223 LM95234 HARDWARE MONITOR DRIVER
10224 M:      Guenter Roeck <[email protected]>
10225 L:      [email protected]
10226 S:      Maintained
10227 F:      Documentation/hwmon/lm95234.rst
10228 F:      drivers/hwmon/lm95234.c
10229
10230 LME2510 MEDIA DRIVER
10231 M:      Malcolm Priestley <[email protected]>
10232 L:      [email protected]
10233 S:      Maintained
10234 W:      https://linuxtv.org
10235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10236 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10237
10238 LOADPIN SECURITY MODULE
10239 M:      Kees Cook <[email protected]>
10240 S:      Supported
10241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10242 F:      Documentation/admin-guide/LSM/LoadPin.rst
10243 F:      security/loadpin/
10244
10245 LOCKING PRIMITIVES
10246 M:      Peter Zijlstra <[email protected]>
10247 M:      Ingo Molnar <[email protected]>
10248 M:      Will Deacon <[email protected]>
10249 L:      [email protected]
10250 S:      Maintained
10251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10252 F:      Documentation/locking/
10253 F:      arch/*/include/asm/spinlock*.h
10254 F:      include/linux/lockdep.h
10255 F:      include/linux/mutex*.h
10256 F:      include/linux/rwlock*.h
10257 F:      include/linux/rwsem*.h
10258 F:      include/linux/seqlock.h
10259 F:      include/linux/spinlock*.h
10260 F:      kernel/locking/
10261 F:      lib/locking*.[ch]
10262 X:      kernel/locking/locktorture.c
10263
10264 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10265 M:      "Richard Russon (FlatCap)" <[email protected]>
10266 L:      [email protected]
10267 S:      Maintained
10268 W:      http://www.linux-ntfs.org/content/view/19/37/
10269 F:      Documentation/admin-guide/ldm.rst
10270 F:      block/partitions/ldm.*
10271
10272 LOGITECH HID GAMING KEYBOARDS
10273 M:      Hans de Goede <[email protected]>
10274 L:      [email protected]
10275 S:      Maintained
10276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10277 F:      drivers/hid/hid-lg-g15.c
10278
10279 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10280 M:      Sathya Prakash <[email protected]>
10281 M:      Sreekanth Reddy <[email protected]>
10282 M:      Suganath Prabu Subramani <[email protected]>
10283 L:      [email protected]
10284 L:      [email protected]
10285 S:      Supported
10286 W:      http://www.avagotech.com/support/
10287 F:      drivers/message/fusion/
10288 F:      drivers/scsi/mpt3sas/
10289
10290 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10291 M:      Matthew Wilcox <[email protected]>
10292 L:      [email protected]
10293 S:      Maintained
10294 F:      drivers/scsi/sym53c8xx_2/
10295
10296 LTC1660 DAC DRIVER
10297 M:      Marcus Folkesson <[email protected]>
10298 L:      [email protected]
10299 S:      Maintained
10300 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10301 F:      drivers/iio/dac/ltc1660.c
10302
10303 LTC2947 HARDWARE MONITOR DRIVER
10304 M:      Nuno Sá <[email protected]>
10305 L:      [email protected]
10306 S:      Supported
10307 W:      http://ez.analog.com/community/linux-device-drivers
10308 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10309 F:      drivers/hwmon/ltc2947-core.c
10310 F:      drivers/hwmon/ltc2947-i2c.c
10311 F:      drivers/hwmon/ltc2947-spi.c
10312 F:      drivers/hwmon/ltc2947.h
10313
10314 LTC2983 IIO TEMPERATURE DRIVER
10315 M:      Nuno Sá <[email protected]>
10316 L:      [email protected]
10317 S:      Supported
10318 W:      http://ez.analog.com/community/linux-device-drivers
10319 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10320 F:      drivers/iio/temperature/ltc2983.c
10321
10322 LTC4261 HARDWARE MONITOR DRIVER
10323 M:      Guenter Roeck <[email protected]>
10324 L:      [email protected]
10325 S:      Maintained
10326 F:      Documentation/hwmon/ltc4261.rst
10327 F:      drivers/hwmon/ltc4261.c
10328
10329 LTC4306 I2C MULTIPLEXER DRIVER
10330 M:      Michael Hennerich <[email protected]>
10331 L:      [email protected]
10332 S:      Supported
10333 W:      http://ez.analog.com/community/linux-device-drivers
10334 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10335 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10336
10337 LTP (Linux Test Project)
10338 M:      Mike Frysinger <[email protected]>
10339 M:      Cyril Hrubis <[email protected]>
10340 M:      Wanlong Gao <[email protected]>
10341 M:      Jan Stancek <[email protected]>
10342 M:      Stanislav Kholmanskikh <[email protected]>
10343 M:      Alexey Kodanev <[email protected]>
10344 L:      [email protected] (subscribers-only)
10345 S:      Maintained
10346 W:      http://linux-test-project.github.io/
10347 T:      git git://github.com/linux-test-project/ltp.git
10348
10349 M68K ARCHITECTURE
10350 M:      Geert Uytterhoeven <[email protected]>
10351 L:      [email protected]
10352 S:      Maintained
10353 W:      http://www.linux-m68k.org/
10354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10355 F:      arch/m68k/
10356 F:      drivers/zorro/
10357
10358 M68K ON APPLE MACINTOSH
10359 M:      Joshua Thompson <[email protected]>
10360 L:      [email protected]
10361 S:      Maintained
10362 W:      http://www.mac.linux-m68k.org/
10363 F:      arch/m68k/mac/
10364
10365 M68K ON HP9000/300
10366 M:      Philip Blundell <[email protected]>
10367 S:      Maintained
10368 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10369 F:      arch/m68k/hp300/
10370
10371 M88DS3103 MEDIA DRIVER
10372 M:      Antti Palosaari <[email protected]>
10373 L:      [email protected]
10374 S:      Maintained
10375 W:      https://linuxtv.org
10376 W:      http://palosaari.fi/linux/
10377 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10378 T:      git git://linuxtv.org/anttip/media_tree.git
10379 F:      drivers/media/dvb-frontends/m88ds3103*
10380
10381 M88RS2000 MEDIA DRIVER
10382 M:      Malcolm Priestley <[email protected]>
10383 L:      [email protected]
10384 S:      Maintained
10385 W:      https://linuxtv.org
10386 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10387 F:      drivers/media/dvb-frontends/m88rs2000*
10388
10389 MA901 MASTERKIT USB FM RADIO DRIVER
10390 M:      Alexey Klimov <[email protected]>
10391 L:      [email protected]
10392 S:      Maintained
10393 T:      git git://linuxtv.org/media_tree.git
10394 F:      drivers/media/radio/radio-ma901.c
10395
10396 MAC80211
10397 M:      Johannes Berg <[email protected]>
10398 L:      [email protected]
10399 S:      Maintained
10400 W:      https://wireless.wiki.kernel.org/
10401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10403 F:      Documentation/networking/mac80211-injection.rst
10404 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10405 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10406 F:      include/net/mac80211.h
10407 F:      net/mac80211/
10408
10409 MAILBOX API
10410 M:      Jassi Brar <[email protected]>
10411 L:      [email protected]
10412 S:      Maintained
10413 F:      drivers/mailbox/
10414 F:      include/linux/mailbox_client.h
10415 F:      include/linux/mailbox_controller.h
10416
10417 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10418 M:      Michael Kerrisk <[email protected]>
10419 L:      [email protected]
10420 S:      Maintained
10421 W:      http://www.kernel.org/doc/man-pages
10422
10423 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10424 M:      Rahul Bedarkar <[email protected]>
10425 L:      [email protected]
10426 S:      Maintained
10427 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10428
10429 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10430 M:      Andrew Lunn <[email protected]>
10431 M:      Vivien Didelot <[email protected]>
10432 L:      [email protected]
10433 S:      Maintained
10434 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10435 F:      Documentation/networking/devlink/mv88e6xxx.rst
10436 F:      drivers/net/dsa/mv88e6xxx/
10437 F:      include/linux/platform_data/mv88e6xxx.h
10438
10439 MARVELL ARMADA 3700 PHY DRIVERS
10440 M:      Miquel Raynal <[email protected]>
10441 S:      Maintained
10442 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10443 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10444 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10445 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10446
10447 MARVELL ARMADA DRM SUPPORT
10448 M:      Russell King <[email protected]>
10449 S:      Maintained
10450 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10451 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10452 F:      Documentation/devicetree/bindings/display/armada/
10453 F:      drivers/gpu/drm/armada/
10454 F:      include/uapi/drm/armada_drm.h
10455
10456 MARVELL CRYPTO DRIVER
10457 M:      Boris Brezillon <[email protected]>
10458 M:      Arnaud Ebalard <[email protected]>
10459 M:      Srujana Challa <[email protected]>
10460 L:      [email protected]
10461 S:      Maintained
10462 F:      drivers/crypto/marvell/
10463
10464 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10465 M:      Mirko Lindner <[email protected]>
10466 M:      Stephen Hemminger <[email protected]>
10467 L:      [email protected]
10468 S:      Maintained
10469 F:      drivers/net/ethernet/marvell/sk*
10470
10471 MARVELL LIBERTAS WIRELESS DRIVER
10472 L:      [email protected]
10473 S:      Orphan
10474 F:      drivers/net/wireless/marvell/libertas/
10475
10476 MARVELL MACCHIATOBIN SUPPORT
10477 M:      Russell King <[email protected]>
10478 L:      [email protected]
10479 S:      Maintained
10480 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10481
10482 MARVELL MV643XX ETHERNET DRIVER
10483 M:      Sebastian Hesselbarth <[email protected]>
10484 L:      [email protected]
10485 S:      Maintained
10486 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10487 F:      include/linux/mv643xx.h
10488
10489 MARVELL MV88X3310 PHY DRIVER
10490 M:      Russell King <[email protected]>
10491 L:      [email protected]
10492 S:      Maintained
10493 F:      drivers/net/phy/marvell10g.c
10494
10495 MARVELL MVEBU THERMAL DRIVER
10496 M:      Miquel Raynal <[email protected]>
10497 S:      Maintained
10498 F:      drivers/thermal/armada_thermal.c
10499
10500 MARVELL MVNETA ETHERNET DRIVER
10501 M:      Thomas Petazzoni <[email protected]>
10502 L:      [email protected]
10503 S:      Maintained
10504 F:      drivers/net/ethernet/marvell/mvneta.*
10505
10506 MARVELL MWIFIEX WIRELESS DRIVER
10507 M:      Amitkumar Karwar <[email protected]>
10508 M:      Ganapathi Bhat <[email protected]>
10509 M:      Xinming Hu <[email protected]>
10510 L:      [email protected]
10511 S:      Maintained
10512 F:      drivers/net/wireless/marvell/mwifiex/
10513
10514 MARVELL MWL8K WIRELESS DRIVER
10515 M:      Lennert Buytenhek <[email protected]>
10516 L:      [email protected]
10517 S:      Odd Fixes
10518 F:      drivers/net/wireless/marvell/mwl8k.c
10519
10520 MARVELL NAND CONTROLLER DRIVER
10521 M:      Miquel Raynal <[email protected]>
10522 L:      [email protected]
10523 S:      Maintained
10524 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10525 F:      drivers/mtd/nand/raw/marvell_nand.c
10526
10527 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10528 M:      Sunil Goutham <[email protected]>
10529 M:      Geetha sowjanya <[email protected]>
10530 M:      Subbaraya Sundeep <[email protected]>
10531 M:      hariprasad <[email protected]>
10532 L:      [email protected]
10533 S:      Supported
10534 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10535
10536 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10537 M:      Sunil Goutham <[email protected]>
10538 M:      Linu Cherian <[email protected]>
10539 M:      Geetha sowjanya <[email protected]>
10540 M:      Jerin Jacob <[email protected]>
10541 L:      [email protected]
10542 S:      Supported
10543 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10544 F:      drivers/net/ethernet/marvell/octeontx2/af/
10545
10546 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10547 M:      Nicolas Pitre <[email protected]>
10548 S:      Odd Fixes
10549 F:      drivers/mmc/host/mvsdio.*
10550
10551 MARVELL USB MDIO CONTROLLER DRIVER
10552 M:      Tobias Waldekranz <[email protected]>
10553 L:      [email protected]
10554 S:      Maintained
10555 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10556 F:      drivers/net/phy/mdio-mvusb.c
10557
10558 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10559 M:      Hu Ziji <[email protected]>
10560 L:      [email protected]
10561 S:      Supported
10562 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10563 F:      drivers/mmc/host/sdhci-xenon*
10564
10565 MATROX FRAMEBUFFER DRIVER
10566 L:      [email protected]
10567 S:      Orphan
10568 F:      drivers/video/fbdev/matrox/matroxfb_*
10569 F:      include/uapi/linux/matroxfb.h
10570
10571 MAX16065 HARDWARE MONITOR DRIVER
10572 M:      Guenter Roeck <[email protected]>
10573 L:      [email protected]
10574 S:      Maintained
10575 F:      Documentation/hwmon/max16065.rst
10576 F:      drivers/hwmon/max16065.c
10577
10578 MAX2175 SDR TUNER DRIVER
10579 M:      Ramesh Shanmugasundaram <[email protected]>
10580 L:      [email protected]
10581 S:      Maintained
10582 T:      git git://linuxtv.org/media_tree.git
10583 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10584 F:      Documentation/userspace-api/media/drivers/max2175.rst
10585 F:      drivers/media/i2c/max2175*
10586 F:      include/uapi/linux/max2175.h
10587
10588 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10589 L:      [email protected]
10590 S:      Orphan
10591 F:      Documentation/hwmon/max6650.rst
10592 F:      drivers/hwmon/max6650.c
10593
10594 MAX6697 HARDWARE MONITOR DRIVER
10595 M:      Guenter Roeck <[email protected]>
10596 L:      [email protected]
10597 S:      Maintained
10598 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10599 F:      Documentation/hwmon/max6697.rst
10600 F:      drivers/hwmon/max6697.c
10601 F:      include/linux/platform_data/max6697.h
10602
10603 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10604 M:      Jacopo Mondi <[email protected]>
10605 M:      Kieran Bingham <[email protected]>
10606 M:      Laurent Pinchart <[email protected]>
10607 M:      Niklas Söderlund <[email protected]>
10608 L:      [email protected]
10609 S:      Maintained
10610 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10611 F:      drivers/media/i2c/max9286.c
10612
10613 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10614 M:      Peter Rosin <[email protected]>
10615 L:      [email protected] (moderated for non-subscribers)
10616 S:      Maintained
10617 F:      Documentation/devicetree/bindings/sound/max9860.txt
10618 F:      sound/soc/codecs/max9860.*
10619
10620 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10621 M:      Andreas Klinger <[email protected]>
10622 L:      [email protected]
10623 S:      Maintained
10624 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10625 F:      drivers/iio/proximity/mb1232.c
10626
10627 MAXIM MAX77650 PMIC MFD DRIVER
10628 M:      Bartosz Golaszewski <[email protected]>
10629 L:      [email protected]
10630 S:      Maintained
10631 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10632 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10633 F:      drivers/gpio/gpio-max77650.c
10634 F:      drivers/input/misc/max77650-onkey.c
10635 F:      drivers/leds/leds-max77650.c
10636 F:      drivers/mfd/max77650.c
10637 F:      drivers/power/supply/max77650-charger.c
10638 F:      drivers/regulator/max77650-regulator.c
10639 F:      include/linux/mfd/max77650.h
10640
10641 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10642 M:      Javier Martinez Canillas <[email protected]>
10643 L:      [email protected]
10644 S:      Supported
10645 F:      Documentation/devicetree/bindings/*/*max77802.txt
10646 F:      drivers/regulator/max77802-regulator.c
10647 F:      include/dt-bindings/*/*max77802.h
10648
10649 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10650 M:      Krzysztof Kozlowski <[email protected]>
10651 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10652 L:      [email protected]
10653 S:      Supported
10654 F:      drivers/power/supply/max14577_charger.c
10655 F:      drivers/power/supply/max77693_charger.c
10656
10657 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10658 M:      Chanwoo Choi <[email protected]>
10659 M:      Krzysztof Kozlowski <[email protected]>
10660 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10661 L:      [email protected]
10662 S:      Supported
10663 F:      Documentation/devicetree/bindings/*/max77686.txt
10664 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10665 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10666 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10667 F:      drivers/*/max14577*.c
10668 F:      drivers/*/max77686*.c
10669 F:      drivers/*/max77693*.c
10670 F:      drivers/clk/clk-max77686.c
10671 F:      drivers/extcon/extcon-max14577.c
10672 F:      drivers/extcon/extcon-max77693.c
10673 F:      drivers/rtc/rtc-max77686.c
10674 F:      include/linux/mfd/max14577*.h
10675 F:      include/linux/mfd/max77686*.h
10676 F:      include/linux/mfd/max77693*.h
10677
10678 MAXIRADIO FM RADIO RECEIVER DRIVER
10679 M:      Hans Verkuil <[email protected]>
10680 L:      [email protected]
10681 S:      Maintained
10682 W:      https://linuxtv.org
10683 T:      git git://linuxtv.org/media_tree.git
10684 F:      drivers/media/radio/radio-maxiradio*
10685
10686 MCAN MMIO DEVICE DRIVER
10687 M:      Dan Murphy <[email protected]>
10688 M:      Sriram Dash <[email protected]>
10689 L:      [email protected]
10690 S:      Maintained
10691 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10692 F:      drivers/net/can/m_can/m_can.c
10693 F:      drivers/net/can/m_can/m_can.h
10694 F:      drivers/net/can/m_can/m_can_platform.c
10695
10696 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10697 M:      Rishi Gupta <[email protected]>
10698 L:      [email protected]
10699 L:      [email protected]
10700 S:      Maintained
10701 F:      drivers/hid/hid-mcp2221.c
10702
10703 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10704 M:      Peter Rosin <[email protected]>
10705 L:      [email protected]
10706 S:      Maintained
10707 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10708 F:      drivers/iio/potentiometer/mcp4018.c
10709 F:      drivers/iio/potentiometer/mcp4531.c
10710
10711 MCR20A IEEE-802.15.4 RADIO DRIVER
10712 M:      Xue Liu <[email protected]>
10713 L:      [email protected]
10714 S:      Maintained
10715 W:      https://github.com/xueliu/mcr20a-linux
10716 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10717 F:      drivers/net/ieee802154/mcr20a.c
10718 F:      drivers/net/ieee802154/mcr20a.h
10719
10720 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10721 M:      William Breathitt Gray <[email protected]>
10722 L:      [email protected]
10723 S:      Maintained
10724 F:      drivers/iio/dac/cio-dac.c
10725
10726 MEDIA CONTROLLER FRAMEWORK
10727 M:      Sakari Ailus <[email protected]>
10728 M:      Laurent Pinchart <[email protected]>
10729 L:      [email protected]
10730 S:      Supported
10731 W:      https://www.linuxtv.org
10732 T:      git git://linuxtv.org/media_tree.git
10733 F:      drivers/media/mc/
10734 F:      include/media/media-*.h
10735 F:      include/uapi/linux/media.h
10736
10737 MEDIA DRIVER FOR FREESCALE IMX PXP
10738 M:      Philipp Zabel <[email protected]>
10739 L:      [email protected]
10740 S:      Maintained
10741 T:      git git://linuxtv.org/media_tree.git
10742 F:      drivers/media/platform/imx-pxp.[ch]
10743
10744 MEDIA DRIVERS FOR ASCOT2E
10745 M:      Sergey Kozlov <[email protected]>
10746 M:      Abylay Ospan <[email protected]>
10747 L:      [email protected]
10748 S:      Supported
10749 W:      https://linuxtv.org
10750 W:      http://netup.tv/
10751 T:      git git://linuxtv.org/media_tree.git
10752 F:      drivers/media/dvb-frontends/ascot2e*
10753
10754 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10755 M:      Jasmin Jessich <[email protected]>
10756 L:      [email protected]
10757 S:      Maintained
10758 W:      https://linuxtv.org
10759 T:      git git://linuxtv.org/media_tree.git
10760 F:      drivers/media/dvb-frontends/cxd2099*
10761
10762 MEDIA DRIVERS FOR CXD2841ER
10763 M:      Sergey Kozlov <[email protected]>
10764 M:      Abylay Ospan <[email protected]>
10765 L:      [email protected]
10766 S:      Supported
10767 W:      https://linuxtv.org
10768 W:      http://netup.tv/
10769 T:      git git://linuxtv.org/media_tree.git
10770 F:      drivers/media/dvb-frontends/cxd2841er*
10771
10772 MEDIA DRIVERS FOR CXD2880
10773 M:      Yasunari Takiguchi <[email protected]>
10774 L:      [email protected]
10775 S:      Supported
10776 W:      http://linuxtv.org/
10777 T:      git git://linuxtv.org/media_tree.git
10778 F:      drivers/media/dvb-frontends/cxd2880/*
10779 F:      drivers/media/spi/cxd2880*
10780
10781 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10782 L:      [email protected]
10783 S:      Orphan
10784 W:      https://linuxtv.org
10785 T:      git git://linuxtv.org/media_tree.git
10786 F:      drivers/media/pci/ddbridge/*
10787
10788 MEDIA DRIVERS FOR FREESCALE IMX
10789 M:      Steve Longerbeam <[email protected]>
10790 M:      Philipp Zabel <[email protected]>
10791 L:      [email protected]
10792 S:      Maintained
10793 T:      git git://linuxtv.org/media_tree.git
10794 F:      Documentation/admin-guide/media/imx.rst
10795 F:      Documentation/devicetree/bindings/media/imx.txt
10796 F:      drivers/staging/media/imx/
10797 F:      include/linux/imx-media.h
10798 F:      include/media/imx.h
10799
10800 MEDIA DRIVERS FOR FREESCALE IMX7
10801 M:      Rui Miguel Silva <[email protected]>
10802 L:      [email protected]
10803 S:      Maintained
10804 T:      git git://linuxtv.org/media_tree.git
10805 F:      Documentation/admin-guide/media/imx7.rst
10806 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10807 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10808 F:      drivers/staging/media/imx/imx7-media-csi.c
10809 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10810
10811 MEDIA DRIVERS FOR HELENE
10812 M:      Abylay Ospan <[email protected]>
10813 L:      [email protected]
10814 S:      Supported
10815 W:      https://linuxtv.org
10816 W:      http://netup.tv/
10817 T:      git git://linuxtv.org/media_tree.git
10818 F:      drivers/media/dvb-frontends/helene*
10819
10820 MEDIA DRIVERS FOR HORUS3A
10821 M:      Sergey Kozlov <[email protected]>
10822 M:      Abylay Ospan <[email protected]>
10823 L:      [email protected]
10824 S:      Supported
10825 W:      https://linuxtv.org
10826 W:      http://netup.tv/
10827 T:      git git://linuxtv.org/media_tree.git
10828 F:      drivers/media/dvb-frontends/horus3a*
10829
10830 MEDIA DRIVERS FOR LNBH25
10831 M:      Sergey Kozlov <[email protected]>
10832 M:      Abylay Ospan <[email protected]>
10833 L:      [email protected]
10834 S:      Supported
10835 W:      https://linuxtv.org
10836 W:      http://netup.tv/
10837 T:      git git://linuxtv.org/media_tree.git
10838 F:      drivers/media/dvb-frontends/lnbh25*
10839
10840 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10841 L:      [email protected]
10842 S:      Orphan
10843 W:      https://linuxtv.org
10844 T:      git git://linuxtv.org/media_tree.git
10845 F:      drivers/media/dvb-frontends/mxl5xx*
10846
10847 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10848 M:      Sergey Kozlov <[email protected]>
10849 M:      Abylay Ospan <[email protected]>
10850 L:      [email protected]
10851 S:      Supported
10852 W:      https://linuxtv.org
10853 W:      http://netup.tv/
10854 T:      git git://linuxtv.org/media_tree.git
10855 F:      drivers/media/pci/netup_unidvb/*
10856
10857 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10858 M:      Dmitry Osipenko <[email protected]>
10859 L:      [email protected]
10860 L:      [email protected]
10861 S:      Maintained
10862 T:      git git://linuxtv.org/media_tree.git
10863 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10864 F:      drivers/staging/media/tegra-vde/
10865
10866 MEDIA DRIVERS FOR RENESAS - CEU
10867 M:      Jacopo Mondi <[email protected]>
10868 L:      [email protected]
10869 L:      [email protected]
10870 S:      Supported
10871 T:      git git://linuxtv.org/media_tree.git
10872 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10873 F:      drivers/media/platform/renesas-ceu.c
10874 F:      include/media/drv-intf/renesas-ceu.h
10875
10876 MEDIA DRIVERS FOR RENESAS - DRIF
10877 M:      Ramesh Shanmugasundaram <[email protected]>
10878 L:      [email protected]
10879 L:      [email protected]
10880 S:      Supported
10881 T:      git git://linuxtv.org/media_tree.git
10882 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10883 F:      drivers/media/platform/rcar_drif.c
10884
10885 MEDIA DRIVERS FOR RENESAS - FCP
10886 M:      Laurent Pinchart <[email protected]>
10887 L:      [email protected]
10888 L:      [email protected]
10889 S:      Supported
10890 T:      git git://linuxtv.org/media_tree.git
10891 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
10892 F:      drivers/media/platform/rcar-fcp.c
10893 F:      include/media/rcar-fcp.h
10894
10895 MEDIA DRIVERS FOR RENESAS - FDP1
10896 M:      Kieran Bingham <[email protected]>
10897 L:      [email protected]
10898 L:      [email protected]
10899 S:      Supported
10900 T:      git git://linuxtv.org/media_tree.git
10901 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
10902 F:      drivers/media/platform/rcar_fdp1.c
10903
10904 MEDIA DRIVERS FOR RENESAS - VIN
10905 M:      Niklas Söderlund <[email protected]>
10906 L:      [email protected]
10907 L:      [email protected]
10908 S:      Supported
10909 T:      git git://linuxtv.org/media_tree.git
10910 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10911 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10912 F:      drivers/media/platform/rcar-vin/
10913
10914 MEDIA DRIVERS FOR RENESAS - VSP1
10915 M:      Laurent Pinchart <[email protected]>
10916 M:      Kieran Bingham <[email protected]>
10917 L:      [email protected]
10918 L:      [email protected]
10919 S:      Supported
10920 T:      git git://linuxtv.org/media_tree.git
10921 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
10922 F:      drivers/media/platform/vsp1/
10923
10924 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10925 L:      [email protected]
10926 S:      Orphan
10927 W:      https://linuxtv.org
10928 T:      git git://linuxtv.org/media_tree.git
10929 F:      drivers/media/dvb-frontends/stv0910*
10930
10931 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10932 L:      [email protected]
10933 S:      Orphan
10934 W:      https://linuxtv.org
10935 T:      git git://linuxtv.org/media_tree.git
10936 F:      drivers/media/dvb-frontends/stv6111*
10937
10938 MEDIA DRIVERS FOR STM32 - DCMI
10939 M:      Hugues Fruchet <[email protected]>
10940 L:      [email protected]
10941 S:      Supported
10942 T:      git git://linuxtv.org/media_tree.git
10943 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10944 F:      drivers/media/platform/stm32/stm32-dcmi.c
10945
10946 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10947 M:      Mauro Carvalho Chehab <[email protected]>
10948 L:      [email protected]
10949 S:      Maintained
10950 W:      https://linuxtv.org
10951 Q:      http://patchwork.kernel.org/project/linux-media/list/
10952 T:      git git://linuxtv.org/media_tree.git
10953 F:      Documentation/admin-guide/media/
10954 F:      Documentation/devicetree/bindings/media/
10955 F:      Documentation/driver-api/media/
10956 F:      Documentation/userspace-api/media/
10957 F:      drivers/media/
10958 F:      drivers/staging/media/
10959 F:      include/linux/platform_data/media/
10960 F:      include/media/
10961 F:      include/uapi/linux/dvb/
10962 F:      include/uapi/linux/ivtv*
10963 F:      include/uapi/linux/media.h
10964 F:      include/uapi/linux/meye.h
10965 F:      include/uapi/linux/uvcvideo.h
10966 F:      include/uapi/linux/v4l2-*
10967 F:      include/uapi/linux/videodev2.h
10968
10969 MEDIATEK BLUETOOTH DRIVER
10970 M:      Sean Wang <[email protected]>
10971 L:      [email protected]
10972 L:      [email protected] (moderated for non-subscribers)
10973 S:      Maintained
10974 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10975 F:      drivers/bluetooth/btmtkuart.c
10976
10977 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10978 M:      Sean Wang <[email protected]>
10979 L:      [email protected]
10980 S:      Maintained
10981 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10982 F:      drivers/power/reset/mt6323-poweroff.c
10983
10984 MEDIATEK CIR DRIVER
10985 M:      Sean Wang <[email protected]>
10986 S:      Maintained
10987 F:      drivers/media/rc/mtk-cir.c
10988
10989 MEDIATEK DMA DRIVER
10990 M:      Sean Wang <[email protected]>
10991 L:      [email protected]
10992 L:      [email protected] (moderated for non-subscribers)
10993 L:      [email protected] (moderated for non-subscribers)
10994 S:      Maintained
10995 F:      Documentation/devicetree/bindings/dma/mtk-*
10996 F:      drivers/dma/mediatek/
10997
10998 MEDIATEK ETHERNET DRIVER
10999 M:      Felix Fietkau <[email protected]>
11000 M:      John Crispin <[email protected]>
11001 M:      Sean Wang <[email protected]>
11002 M:      Mark Lee <[email protected]>
11003 L:      [email protected]
11004 S:      Maintained
11005 F:      drivers/net/ethernet/mediatek/
11006
11007 MEDIATEK I2C CONTROLLER DRIVER
11008 M:      Qii Wang <[email protected]>
11009 L:      [email protected]
11010 S:      Maintained
11011 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11012 F:      drivers/i2c/busses/i2c-mt65xx.c
11013
11014 MEDIATEK JPEG DRIVER
11015 M:      Rick Chang <[email protected]>
11016 M:      Bin Liu <[email protected]>
11017 S:      Supported
11018 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11019 F:      drivers/media/platform/mtk-jpeg/
11020
11021 MEDIATEK MDP DRIVER
11022 M:      Minghsiu Tsai <[email protected]>
11023 M:      Houlong Wei <[email protected]>
11024 M:      Andrew-CT Chen <[email protected]>
11025 S:      Supported
11026 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11027 F:      drivers/media/platform/mtk-mdp/
11028 F:      drivers/media/platform/mtk-vpu/
11029
11030 MEDIATEK MEDIA DRIVER
11031 M:      Tiffany Lin <[email protected]>
11032 M:      Andrew-CT Chen <[email protected]>
11033 S:      Supported
11034 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11035 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11036 F:      drivers/media/platform/mtk-vcodec/
11037 F:      drivers/media/platform/mtk-vpu/
11038
11039 MEDIATEK MMC/SD/SDIO DRIVER
11040 M:      Chaotian Jing <[email protected]>
11041 S:      Maintained
11042 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11043 F:      drivers/mmc/host/mtk-sd.c
11044
11045 MEDIATEK MT76 WIRELESS LAN DRIVER
11046 M:      Felix Fietkau <[email protected]>
11047 M:      Lorenzo Bianconi <[email protected]>
11048 R:      Ryder Lee <[email protected]>
11049 L:      [email protected]
11050 S:      Maintained
11051 F:      drivers/net/wireless/mediatek/mt76/
11052
11053 MEDIATEK MT7601U WIRELESS LAN DRIVER
11054 M:      Jakub Kicinski <[email protected]>
11055 L:      [email protected]
11056 S:      Maintained
11057 F:      drivers/net/wireless/mediatek/mt7601u/
11058
11059 MEDIATEK MT7621/28/88 I2C DRIVER
11060 M:      Stefan Roese <[email protected]>
11061 L:      [email protected]
11062 S:      Maintained
11063 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11064 F:      drivers/i2c/busses/i2c-mt7621.c
11065
11066 MEDIATEK NAND CONTROLLER DRIVER
11067 L:      [email protected]
11068 S:      Orphan
11069 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11070 F:      drivers/mtd/nand/raw/mtk_*
11071
11072 MEDIATEK PMIC LED DRIVER
11073 M:      Sean Wang <[email protected]>
11074 S:      Maintained
11075 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11076 F:      drivers/leds/leds-mt6323.c
11077
11078 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11079 M:      Sean Wang <[email protected]>
11080 S:      Maintained
11081 F:      drivers/char/hw_random/mtk-rng.c
11082
11083 MEDIATEK SWITCH DRIVER
11084 M:      Sean Wang <[email protected]>
11085 M:      Landen Chao <[email protected]>
11086 L:      [email protected]
11087 S:      Maintained
11088 F:      drivers/net/dsa/mt7530.*
11089 F:      net/dsa/tag_mtk.c
11090
11091 MEDIATEK USB3 DRD IP DRIVER
11092 M:      Chunfeng Yun <[email protected]>
11093 L:      [email protected]
11094 L:      [email protected] (moderated for non-subscribers)
11095 L:      [email protected] (moderated for non-subscribers)
11096 S:      Maintained
11097 F:      drivers/usb/mtu3/
11098
11099 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11100 M:      Peter Senna Tschudin <[email protected]>
11101 M:      Martin Donnelly <[email protected]>
11102 M:      Martyn Welch <[email protected]>
11103 S:      Maintained
11104 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11105 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11106
11107 MEGARAID SCSI/SAS DRIVERS
11108 M:      Kashyap Desai <[email protected]>
11109 M:      Sumit Saxena <[email protected]>
11110 M:      Shivasharan S <[email protected]>
11111 L:      [email protected]
11112 L:      [email protected]
11113 S:      Maintained
11114 W:      http://www.avagotech.com/support/
11115 F:      Documentation/scsi/megaraid.rst
11116 F:      drivers/scsi/megaraid.*
11117 F:      drivers/scsi/megaraid/
11118
11119 MELEXIS MLX90614 DRIVER
11120 M:      Crt Mori <[email protected]>
11121 L:      [email protected]
11122 S:      Supported
11123 W:      http://www.melexis.com
11124 F:      drivers/iio/temperature/mlx90614.c
11125
11126 MELEXIS MLX90632 DRIVER
11127 M:      Crt Mori <[email protected]>
11128 L:      [email protected]
11129 S:      Supported
11130 W:      http://www.melexis.com
11131 F:      drivers/iio/temperature/mlx90632.c
11132
11133 MELFAS MIP4 TOUCHSCREEN DRIVER
11134 M:      Sangwon Jee <[email protected]>
11135 S:      Supported
11136 W:      http://www.melfas.com
11137 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11138 F:      drivers/input/touchscreen/melfas_mip4.c
11139
11140 MELLANOX ETHERNET DRIVER (mlx4_en)
11141 M:      Tariq Toukan <[email protected]>
11142 L:      [email protected]
11143 S:      Supported
11144 W:      http://www.mellanox.com
11145 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11146 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11147
11148 MELLANOX ETHERNET DRIVER (mlx5e)
11149 M:      Saeed Mahameed <[email protected]>
11150 L:      [email protected]
11151 S:      Supported
11152 W:      http://www.mellanox.com
11153 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11154 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11155
11156 MELLANOX ETHERNET INNOVA DRIVERS
11157 R:      Boris Pismenny <[email protected]>
11158 L:      [email protected]
11159 S:      Supported
11160 W:      http://www.mellanox.com
11161 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11162 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11163 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11164 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11165 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11166
11167 MELLANOX ETHERNET SWITCH DRIVERS
11168 M:      Jiri Pirko <[email protected]>
11169 M:      Ido Schimmel <[email protected]>
11170 L:      [email protected]
11171 S:      Supported
11172 W:      http://www.mellanox.com
11173 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11174 F:      drivers/net/ethernet/mellanox/mlxsw/
11175 F:      tools/testing/selftests/drivers/net/mlxsw/
11176
11177 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11178 M:      [email protected]
11179 L:      [email protected]
11180 S:      Supported
11181 W:      http://www.mellanox.com
11182 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11183 F:      drivers/net/ethernet/mellanox/mlxfw/
11184
11185 MELLANOX HARDWARE PLATFORM SUPPORT
11186 M:      Andy Shevchenko <[email protected]>
11187 M:      Darren Hart <[email protected]>
11188 M:      Vadim Pasternak <[email protected]>
11189 L:      [email protected]
11190 S:      Supported
11191 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11192 F:      drivers/platform/mellanox/
11193 F:      include/linux/platform_data/mlxreg.h
11194
11195 MELLANOX MLX4 core VPI driver
11196 M:      Tariq Toukan <[email protected]>
11197 L:      [email protected]
11198 L:      [email protected]
11199 S:      Supported
11200 W:      http://www.mellanox.com
11201 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11202 F:      drivers/net/ethernet/mellanox/mlx4/
11203 F:      include/linux/mlx4/
11204
11205 MELLANOX MLX4 IB driver
11206 M:      Yishai Hadas <[email protected]>
11207 L:      [email protected]
11208 S:      Supported
11209 W:      http://www.mellanox.com
11210 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11211 F:      drivers/infiniband/hw/mlx4/
11212 F:      include/linux/mlx4/
11213 F:      include/uapi/rdma/mlx4-abi.h
11214
11215 MELLANOX MLX5 core VPI driver
11216 M:      Saeed Mahameed <[email protected]>
11217 M:      Leon Romanovsky <[email protected]>
11218 L:      [email protected]
11219 L:      [email protected]
11220 S:      Supported
11221 W:      http://www.mellanox.com
11222 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11223 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11224 F:      drivers/net/ethernet/mellanox/mlx5/core/
11225 F:      include/linux/mlx5/
11226
11227 MELLANOX MLX5 IB driver
11228 M:      Leon Romanovsky <[email protected]>
11229 L:      [email protected]
11230 S:      Supported
11231 W:      http://www.mellanox.com
11232 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11233 F:      drivers/infiniband/hw/mlx5/
11234 F:      include/linux/mlx5/
11235 F:      include/uapi/rdma/mlx5-abi.h
11236
11237 MELLANOX MLXCPLD I2C AND MUX DRIVER
11238 M:      Vadim Pasternak <[email protected]>
11239 M:      Michael Shych <[email protected]>
11240 L:      [email protected]
11241 S:      Supported
11242 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11243 F:      drivers/i2c/busses/i2c-mlxcpld.c
11244 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11245
11246 MELLANOX MLXCPLD LED DRIVER
11247 M:      Vadim Pasternak <[email protected]>
11248 L:      [email protected]
11249 S:      Supported
11250 F:      Documentation/leds/leds-mlxcpld.rst
11251 F:      drivers/leds/leds-mlxcpld.c
11252 F:      drivers/leds/leds-mlxreg.c
11253
11254 MELLANOX PLATFORM DRIVER
11255 M:      Vadim Pasternak <[email protected]>
11256 L:      [email protected]
11257 S:      Supported
11258 F:      drivers/platform/x86/mlx-platform.c
11259
11260 MEMBARRIER SUPPORT
11261 M:      Mathieu Desnoyers <[email protected]>
11262 M:      "Paul E. McKenney" <[email protected]>
11263 L:      [email protected]
11264 S:      Supported
11265 F:      arch/powerpc/include/asm/membarrier.h
11266 F:      include/uapi/linux/membarrier.h
11267 F:      kernel/sched/membarrier.c
11268
11269 MEMBLOCK
11270 M:      Mike Rapoport <[email protected]>
11271 L:      [email protected]
11272 S:      Maintained
11273 F:      Documentation/core-api/boot-time-mm.rst
11274 F:      include/linux/memblock.h
11275 F:      mm/memblock.c
11276
11277 MEMORY CONTROLLER DRIVERS
11278 M:      Krzysztof Kozlowski <[email protected]>
11279 L:      [email protected]
11280 S:      Maintained
11281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11282 F:      Documentation/devicetree/bindings/memory-controllers/
11283 F:      drivers/memory/
11284
11285 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11286 M:      Dmitry Osipenko <[email protected]>
11287 L:      [email protected]
11288 L:      [email protected]
11289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11290 S:      Maintained
11291 F:      drivers/devfreq/tegra20-devfreq.c
11292 F:      drivers/devfreq/tegra30-devfreq.c
11293
11294 MEMORY MANAGEMENT
11295 M:      Andrew Morton <[email protected]>
11296 L:      [email protected]
11297 S:      Maintained
11298 W:      http://www.linux-mm.org
11299 T:      quilt https://ozlabs.org/~akpm/mmotm/
11300 T:      quilt https://ozlabs.org/~akpm/mmots/
11301 T:      git git://github.com/hnaz/linux-mm.git
11302 F:      include/linux/gfp.h
11303 F:      include/linux/memory_hotplug.h
11304 F:      include/linux/mm.h
11305 F:      include/linux/mmzone.h
11306 F:      include/linux/vmalloc.h
11307 F:      mm/
11308
11309 MEMORY TECHNOLOGY DEVICES (MTD)
11310 M:      Miquel Raynal <[email protected]>
11311 M:      Richard Weinberger <[email protected]>
11312 M:      Vignesh Raghavendra <[email protected]>
11313 L:      [email protected]
11314 S:      Maintained
11315 W:      http://www.linux-mtd.infradead.org/
11316 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11317 C:      irc://irc.oftc.net/mtd
11318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11320 F:      Documentation/devicetree/bindings/mtd/
11321 F:      drivers/mtd/
11322 F:      include/linux/mtd/
11323 F:      include/uapi/mtd/
11324
11325 MEN A21 WATCHDOG DRIVER
11326 M:      Johannes Thumshirn <[email protected]>
11327 L:      [email protected]
11328 S:      Maintained
11329 F:      drivers/watchdog/mena21_wdt.c
11330
11331 MEN CHAMELEON BUS (mcb)
11332 M:      Johannes Thumshirn <[email protected]>
11333 S:      Maintained
11334 F:      Documentation/driver-api/men-chameleon-bus.rst
11335 F:      drivers/mcb/
11336 F:      include/linux/mcb.h
11337
11338 MEN F21BMC (Board Management Controller)
11339 M:      Andreas Werner <[email protected]>
11340 S:      Supported
11341 F:      Documentation/hwmon/menf21bmc.rst
11342 F:      drivers/hwmon/menf21bmc_hwmon.c
11343 F:      drivers/leds/leds-menf21bmc.c
11344 F:      drivers/mfd/menf21bmc.c
11345 F:      drivers/watchdog/menf21bmc_wdt.c
11346
11347 MEN Z069 WATCHDOG DRIVER
11348 M:      Johannes Thumshirn <[email protected]>
11349 L:      [email protected]
11350 S:      Maintained
11351 F:      drivers/watchdog/menz69_wdt.c
11352
11353 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11354 M:      Neil Armstrong <[email protected]>
11355 L:      [email protected]
11356 L:      [email protected]
11357 S:      Supported
11358 W:      http://linux-meson.com/
11359 T:      git git://linuxtv.org/media_tree.git
11360 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11361 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11362 F:      drivers/media/cec/platform/meson/ao-cec.c
11363
11364 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11365 M:      Liang Yang <[email protected]>
11366 L:      [email protected]
11367 S:      Maintained
11368 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11369 F:      drivers/mtd/nand/raw/meson_*
11370
11371 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11372 M:      Neil Armstrong <[email protected]>
11373 L:      [email protected]
11374 L:      [email protected]
11375 S:      Supported
11376 T:      git git://linuxtv.org/media_tree.git
11377 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11378 F:      drivers/staging/media/meson/vdec/
11379
11380 METHODE UDPU SUPPORT
11381 M:      Vladimir Vid <[email protected]>
11382 S:      Maintained
11383 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11384
11385 MHI BUS
11386 M:      Manivannan Sadhasivam <[email protected]>
11387 M:      Hemant Kumar <[email protected]>
11388 L:      [email protected]
11389 S:      Maintained
11390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11391 F:      Documentation/ABI/stable/sysfs-bus-mhi
11392 F:      Documentation/mhi/
11393 F:      drivers/bus/mhi/
11394 F:      include/linux/mhi.h
11395
11396 MICROBLAZE ARCHITECTURE
11397 M:      Michal Simek <[email protected]>
11398 S:      Supported
11399 W:      http://www.monstr.eu/fdt/
11400 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11401 F:      arch/microblaze/
11402
11403 MICROCHIP AT91 DMA DRIVERS
11404 M:      Ludovic Desroches <[email protected]>
11405 M:      Tudor Ambarus <[email protected]>
11406 L:      [email protected] (moderated for non-subscribers)
11407 L:      [email protected]
11408 S:      Supported
11409 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11410 F:      drivers/dma/at_hdmac.c
11411 F:      drivers/dma/at_hdmac_regs.h
11412 F:      drivers/dma/at_xdmac.c
11413 F:      include/dt-bindings/dma/at91.h
11414 F:      include/linux/platform_data/dma-atmel.h
11415
11416 MICROCHIP AT91 SERIAL DRIVER
11417 M:      Richard Genoud <[email protected]>
11418 S:      Maintained
11419 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11420 F:      drivers/tty/serial/atmel_serial.c
11421 F:      drivers/tty/serial/atmel_serial.h
11422
11423 MICROCHIP AT91 USART MFD DRIVER
11424 M:      Radu Pirea <[email protected]>
11425 L:      [email protected]
11426 S:      Supported
11427 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11428 F:      drivers/mfd/at91-usart.c
11429 F:      include/dt-bindings/mfd/at91-usart.h
11430
11431 MICROCHIP AT91 USART SPI DRIVER
11432 M:      Radu Pirea <[email protected]>
11433 L:      [email protected]
11434 S:      Supported
11435 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11436 F:      drivers/spi/spi-at91-usart.c
11437
11438 MICROCHIP AUDIO ASOC DRIVERS
11439 M:      Codrin Ciubotariu <[email protected]>
11440 L:      [email protected] (moderated for non-subscribers)
11441 S:      Supported
11442 F:      sound/soc/atmel
11443
11444 MICROCHIP ECC DRIVER
11445 M:      Tudor Ambarus <[email protected]>
11446 L:      [email protected]
11447 S:      Maintained
11448 F:      drivers/crypto/atmel-ecc.*
11449
11450 MICROCHIP I2C DRIVER
11451 M:      Codrin Ciubotariu <[email protected]>
11452 L:      [email protected]
11453 S:      Supported
11454 F:      drivers/i2c/busses/i2c-at91-*.c
11455 F:      drivers/i2c/busses/i2c-at91.h
11456
11457 MICROCHIP ISC DRIVER
11458 M:      Eugen Hristev <[email protected]>
11459 L:      [email protected]
11460 S:      Supported
11461 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11462 F:      drivers/media/platform/atmel/atmel-isc-base.c
11463 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11464 F:      drivers/media/platform/atmel/atmel-isc.h
11465 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11466 F:      include/linux/atmel-isc-media.h
11467
11468 MICROCHIP ISI DRIVER
11469 M:      Eugen Hristev <[email protected]>
11470 L:      [email protected]
11471 S:      Supported
11472 F:      drivers/media/platform/atmel/atmel-isi.c
11473 F:      drivers/media/platform/atmel/atmel-isi.h
11474
11475 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11476 M:      Woojung Huh <[email protected]>
11477 M:      Microchip Linux Driver Support <[email protected]>
11478 L:      [email protected]
11479 S:      Maintained
11480 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11481 F:      drivers/net/dsa/microchip/*
11482 F:      include/linux/platform_data/microchip-ksz.h
11483 F:      net/dsa/tag_ksz.c
11484
11485 MICROCHIP LAN743X ETHERNET DRIVER
11486 M:      Bryan Whitehead <[email protected]>
11487 M:      Microchip Linux Driver Support <[email protected]>
11488 L:      [email protected]
11489 S:      Maintained
11490 F:      drivers/net/ethernet/microchip/lan743x_*
11491
11492 MICROCHIP LCDFB DRIVER
11493 M:      Nicolas Ferre <[email protected]>
11494 L:      [email protected]
11495 S:      Maintained
11496 F:      drivers/video/fbdev/atmel_lcdfb.c
11497 F:      include/video/atmel_lcdc.h
11498
11499 MICROCHIP MCP16502 PMIC DRIVER
11500 M:      Andrei Stefanescu <[email protected]>
11501 L:      [email protected] (moderated for non-subscribers)
11502 S:      Maintained
11503 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11504 F:      drivers/regulator/mcp16502.c
11505
11506 MICROCHIP MCP3911 ADC DRIVER
11507 M:      Marcus Folkesson <[email protected]>
11508 M:      Kent Gustavsson <[email protected]>
11509 L:      [email protected]
11510 S:      Supported
11511 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11512 F:      drivers/iio/adc/mcp3911.c
11513
11514 MICROCHIP MMC/SD/SDIO MCI DRIVER
11515 M:      Ludovic Desroches <[email protected]>
11516 S:      Maintained
11517 F:      drivers/mmc/host/atmel-mci.c
11518
11519 MICROCHIP NAND DRIVER
11520 M:      Tudor Ambarus <[email protected]>
11521 L:      [email protected]
11522 S:      Supported
11523 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11524 F:      drivers/mtd/nand/raw/atmel/*
11525
11526 MICROCHIP PWM DRIVER
11527 M:      Claudiu Beznea <[email protected]>
11528 L:      [email protected] (moderated for non-subscribers)
11529 L:      [email protected]
11530 S:      Supported
11531 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11532 F:      drivers/pwm/pwm-atmel.c
11533
11534 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11535 M:      Eugen Hristev <[email protected]>
11536 L:      [email protected]
11537 S:      Supported
11538 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11539 F:      drivers/iio/adc/at91-sama5d2_adc.c
11540 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11541
11542 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11543 M:      Claudiu Beznea <[email protected]>
11544 S:      Supported
11545 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11546
11547 MICROCHIP SPI DRIVER
11548 M:      Tudor Ambarus <[email protected]>
11549 S:      Supported
11550 F:      drivers/spi/spi-atmel.*
11551
11552 MICROCHIP SSC DRIVER
11553 M:      Codrin Ciubotariu <[email protected]>
11554 L:      [email protected] (moderated for non-subscribers)
11555 S:      Supported
11556 F:      drivers/misc/atmel-ssc.c
11557 F:      include/linux/atmel-ssc.h
11558
11559 MICROCHIP USB251XB DRIVER
11560 M:      Richard Leitner <[email protected]>
11561 L:      [email protected]
11562 S:      Maintained
11563 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11564 F:      drivers/usb/misc/usb251xb.c
11565
11566 MICROCHIP USBA UDC DRIVER
11567 M:      Cristian Birsan <[email protected]>
11568 L:      [email protected] (moderated for non-subscribers)
11569 S:      Supported
11570 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11571
11572 MICROCHIP WILC1000 WIFI DRIVER
11573 M:      Ajay Singh <[email protected]>
11574 M:      Claudiu Beznea <[email protected]>
11575 L:      [email protected]
11576 S:      Supported
11577 F:      drivers/net/wireless/microchip/wilc1000/
11578
11579 MICROSEMI MIPS SOCS
11580 M:      Alexandre Belloni <[email protected]>
11581 M:      Microchip Linux Driver Support <[email protected]>
11582 L:      [email protected]
11583 S:      Supported
11584 F:      Documentation/devicetree/bindings/mips/mscc.txt
11585 F:      arch/mips/boot/dts/mscc/
11586 F:      arch/mips/configs/generic/board-ocelot.config
11587 F:      arch/mips/generic/board-ocelot.c
11588
11589 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11590 M:      Don Brace <[email protected]>
11591 L:      [email protected]
11592 L:      [email protected]
11593 S:      Supported
11594 F:      Documentation/scsi/smartpqi.rst
11595 F:      drivers/scsi/smartpqi/Kconfig
11596 F:      drivers/scsi/smartpqi/Makefile
11597 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11598 F:      include/linux/cciss*.h
11599 F:      include/uapi/linux/cciss*.h
11600
11601 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11602 M:      Chen Yu <[email protected]>
11603 L:      [email protected]
11604 S:      Supported
11605 F:      drivers/platform/x86/surfacepro3_button.c
11606
11607 MICROTEK X6 SCANNER
11608 M:      Oliver Neukum <[email protected]>
11609 S:      Maintained
11610 F:      drivers/usb/image/microtek.*
11611
11612 MIPS
11613 M:      Thomas Bogendoerfer <[email protected]>
11614 L:      [email protected]
11615 S:      Maintained
11616 W:      http://www.linux-mips.org/
11617 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11619 F:      Documentation/devicetree/bindings/mips/
11620 F:      Documentation/mips/
11621 F:      arch/mips/
11622 F:      drivers/platform/mips/
11623
11624 MIPS BOSTON DEVELOPMENT BOARD
11625 M:      Paul Burton <[email protected]>
11626 L:      [email protected]
11627 S:      Maintained
11628 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11629 F:      arch/mips/boot/dts/img/boston.dts
11630 F:      arch/mips/configs/generic/board-boston.config
11631 F:      drivers/clk/imgtec/clk-boston.c
11632 F:      include/dt-bindings/clock/boston-clock.h
11633
11634 MIPS CORE DRIVERS
11635 M:      Thomas Bogendoerfer <[email protected]>
11636 M:      Serge Semin <[email protected]>
11637 L:      [email protected]
11638 S:      Supported
11639 F:      drivers/bus/mips_cdmm.c
11640 F:      drivers/clocksource/mips-gic-timer.c
11641 F:      drivers/cpuidle/cpuidle-cps.c
11642 F:      drivers/irqchip/irq-mips-cpu.c
11643 F:      drivers/irqchip/irq-mips-gic.c
11644
11645 MIPS GENERIC PLATFORM
11646 M:      Paul Burton <[email protected]>
11647 L:      [email protected]
11648 S:      Supported
11649 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11650 F:      arch/mips/generic/
11651 F:      arch/mips/tools/generic-board-config.sh
11652
11653 MIPS RINT INSTRUCTION EMULATION
11654 M:      Aleksandar Markovic <[email protected]>
11655 L:      [email protected]
11656 S:      Supported
11657 F:      arch/mips/math-emu/dp_rint.c
11658 F:      arch/mips/math-emu/sp_rint.c
11659
11660 MIPS/LOONGSON1 ARCHITECTURE
11661 M:      Keguang Zhang <[email protected]>
11662 L:      [email protected]
11663 S:      Maintained
11664 F:      arch/mips/include/asm/mach-loongson32/
11665 F:      arch/mips/loongson32/
11666 F:      drivers/*/*/*loongson1*
11667 F:      drivers/*/*loongson1*
11668
11669 MIPS/LOONGSON2EF ARCHITECTURE
11670 M:      Jiaxun Yang <[email protected]>
11671 L:      [email protected]
11672 S:      Maintained
11673 F:      arch/mips/include/asm/mach-loongson2ef/
11674 F:      arch/mips/loongson2ef/
11675 F:      drivers/*/*/*loongson2*
11676 F:      drivers/*/*loongson2*
11677
11678 MIPS/LOONGSON64 ARCHITECTURE
11679 M:      Huacai Chen <[email protected]>
11680 M:      Jiaxun Yang <[email protected]>
11681 L:      [email protected]
11682 S:      Maintained
11683 F:      arch/mips/include/asm/mach-loongson64/
11684 F:      arch/mips/loongson64/
11685 F:      drivers/*/*/*loongson3*
11686 F:      drivers/*/*loongson3*
11687 F:      drivers/irqchip/irq-loongson*
11688 F:      drivers/platform/mips/cpu_hwmon.c
11689
11690 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11691 M:      Hans Verkuil <[email protected]>
11692 L:      [email protected]
11693 S:      Odd Fixes
11694 W:      https://linuxtv.org
11695 T:      git git://linuxtv.org/media_tree.git
11696 F:      drivers/media/radio/radio-miropcm20*
11697
11698 MMP SUPPORT
11699 R:      Lubomir Rintel <[email protected]>
11700 L:      [email protected] (moderated for non-subscribers)
11701 S:      Odd Fixes
11702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11703 F:      arch/arm/boot/dts/mmp*
11704 F:      arch/arm/mach-mmp/
11705 F:      include/linux/soc/mmp/
11706
11707 MMP USB PHY DRIVERS
11708 R:      Lubomir Rintel <[email protected]>
11709 L:      [email protected] (moderated for non-subscribers)
11710 S:      Maintained
11711 F:      drivers/phy/marvell/phy-mmp3-usb.c
11712 F:      drivers/phy/marvell/phy-pxa-usb.c
11713
11714 MMU GATHER AND TLB INVALIDATION
11715 M:      Will Deacon <[email protected]>
11716 M:      "Aneesh Kumar K.V" <[email protected]>
11717 M:      Andrew Morton <[email protected]>
11718 M:      Nick Piggin <[email protected]>
11719 M:      Peter Zijlstra <[email protected]>
11720 L:      [email protected]
11721 L:      [email protected]
11722 S:      Maintained
11723 F:      arch/*/include/asm/tlb.h
11724 F:      include/asm-generic/tlb.h
11725 F:      mm/mmu_gather.c
11726
11727 MN88472 MEDIA DRIVER
11728 M:      Antti Palosaari <[email protected]>
11729 L:      [email protected]
11730 S:      Maintained
11731 W:      https://linuxtv.org
11732 W:      http://palosaari.fi/linux/
11733 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11734 F:      drivers/media/dvb-frontends/mn88472*
11735
11736 MN88473 MEDIA DRIVER
11737 M:      Antti Palosaari <[email protected]>
11738 L:      [email protected]
11739 S:      Maintained
11740 W:      https://linuxtv.org
11741 W:      http://palosaari.fi/linux/
11742 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11743 F:      drivers/media/dvb-frontends/mn88473*
11744
11745 MODULE SUPPORT
11746 M:      Jessica Yu <[email protected]>
11747 S:      Maintained
11748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11749 F:      include/linux/module.h
11750 F:      kernel/module.c
11751
11752 MONOLITHIC POWER SYSTEM PMIC DRIVER
11753 M:      Saravanan Sekar <[email protected]>
11754 S:      Maintained
11755 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11756 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11757 F:      drivers/iio/adc/mp2629_adc.c
11758 F:      drivers/mfd/mp2629.c
11759 F:      drivers/power/supply/mp2629_charger.c
11760 F:      drivers/regulator/mp5416.c
11761 F:      drivers/regulator/mpq7920.c
11762 F:      drivers/regulator/mpq7920.h
11763 F:      include/linux/mfd/mp2629.h
11764
11765 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11766 S:      Orphan
11767 W:      http://popies.net/meye/
11768 F:      Documentation/userspace-api/media/drivers/meye*
11769 F:      drivers/media/pci/meye/
11770 F:      include/uapi/linux/meye.h
11771
11772 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11773 M:      Jiri Slaby <[email protected]>
11774 S:      Maintained
11775 F:      Documentation/driver-api/serial/moxa-smartio.rst
11776 F:      drivers/tty/mxser.*
11777
11778 MR800 AVERMEDIA USB FM RADIO DRIVER
11779 M:      Alexey Klimov <[email protected]>
11780 L:      [email protected]
11781 S:      Maintained
11782 T:      git git://linuxtv.org/media_tree.git
11783 F:      drivers/media/radio/radio-mr800.c
11784
11785 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11786 M:      Alan Ott <[email protected]>
11787 L:      [email protected]
11788 S:      Maintained
11789 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11790 F:      drivers/net/ieee802154/mrf24j40.c
11791
11792 MSI LAPTOP SUPPORT
11793 M:      "Lee, Chun-Yi" <[email protected]>
11794 L:      [email protected]
11795 S:      Maintained
11796 F:      drivers/platform/x86/msi-laptop.c
11797
11798 MSI WMI SUPPORT
11799 L:      [email protected]
11800 S:      Orphan
11801 F:      drivers/platform/x86/msi-wmi.c
11802
11803 MSI001 MEDIA DRIVER
11804 M:      Antti Palosaari <[email protected]>
11805 L:      [email protected]
11806 S:      Maintained
11807 W:      https://linuxtv.org
11808 W:      http://palosaari.fi/linux/
11809 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11810 T:      git git://linuxtv.org/anttip/media_tree.git
11811 F:      drivers/media/tuners/msi001*
11812
11813 MSI2500 MEDIA DRIVER
11814 M:      Antti Palosaari <[email protected]>
11815 L:      [email protected]
11816 S:      Maintained
11817 W:      https://linuxtv.org
11818 W:      http://palosaari.fi/linux/
11819 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11820 T:      git git://linuxtv.org/anttip/media_tree.git
11821 F:      drivers/media/usb/msi2500/
11822
11823 MSTAR INTERRUPT CONTROLLER DRIVER
11824 M:      Mark-PK Tsai <[email protected]>
11825 M:      Daniel Palmer <[email protected]>
11826 S:      Maintained
11827 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
11828 F:      drivers/irqchip/irq-mst-intc.c
11829
11830 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11831 M:      Robert Jarzmik <[email protected]>
11832 L:      [email protected]
11833 S:      Maintained
11834 F:      drivers/mtd/devices/docg3*
11835
11836 MT9M032 APTINA SENSOR DRIVER
11837 M:      Laurent Pinchart <[email protected]>
11838 L:      [email protected]
11839 S:      Maintained
11840 T:      git git://linuxtv.org/media_tree.git
11841 F:      drivers/media/i2c/mt9m032.c
11842 F:      include/media/i2c/mt9m032.h
11843
11844 MT9P031 APTINA CAMERA SENSOR
11845 M:      Laurent Pinchart <[email protected]>
11846 L:      [email protected]
11847 S:      Maintained
11848 T:      git git://linuxtv.org/media_tree.git
11849 F:      drivers/media/i2c/mt9p031.c
11850 F:      include/media/i2c/mt9p031.h
11851
11852 MT9T001 APTINA CAMERA SENSOR
11853 M:      Laurent Pinchart <[email protected]>
11854 L:      [email protected]
11855 S:      Maintained
11856 T:      git git://linuxtv.org/media_tree.git
11857 F:      drivers/media/i2c/mt9t001.c
11858 F:      include/media/i2c/mt9t001.h
11859
11860 MT9T112 APTINA CAMERA SENSOR
11861 M:      Jacopo Mondi <[email protected]>
11862 L:      [email protected]
11863 S:      Odd Fixes
11864 T:      git git://linuxtv.org/media_tree.git
11865 F:      drivers/media/i2c/mt9t112.c
11866 F:      include/media/i2c/mt9t112.h
11867
11868 MT9V032 APTINA CAMERA SENSOR
11869 M:      Laurent Pinchart <[email protected]>
11870 L:      [email protected]
11871 S:      Maintained
11872 T:      git git://linuxtv.org/media_tree.git
11873 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11874 F:      drivers/media/i2c/mt9v032.c
11875 F:      include/media/i2c/mt9v032.h
11876
11877 MT9V111 APTINA CAMERA SENSOR
11878 M:      Jacopo Mondi <[email protected]>
11879 L:      [email protected]
11880 S:      Maintained
11881 T:      git git://linuxtv.org/media_tree.git
11882 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11883 F:      drivers/media/i2c/mt9v111.c
11884
11885 MULTIFUNCTION DEVICES (MFD)
11886 M:      Lee Jones <[email protected]>
11887 S:      Supported
11888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11889 F:      Documentation/devicetree/bindings/mfd/
11890 F:      drivers/mfd/
11891 F:      include/dt-bindings/mfd/
11892 F:      include/linux/mfd/
11893
11894 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11895 S:      Orphan
11896 F:      drivers/mmc/host/mmc_spi.c
11897 F:      include/linux/spi/mmc_spi.h
11898
11899 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11900 M:      Ulf Hansson <[email protected]>
11901 L:      [email protected]
11902 S:      Maintained
11903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11904 F:      Documentation/devicetree/bindings/mmc/
11905 F:      drivers/mmc/
11906 F:      include/linux/mmc/
11907 F:      include/uapi/linux/mmc/
11908
11909 MULTIPLEXER SUBSYSTEM
11910 M:      Peter Rosin <[email protected]>
11911 S:      Maintained
11912 F:      Documentation/ABI/testing/sysfs-class-mux*
11913 F:      Documentation/devicetree/bindings/mux/
11914 F:      drivers/mux/
11915 F:      include/dt-bindings/mux/
11916 F:      include/linux/mux/
11917
11918 MULTITECH MULTIPORT CARD (ISICOM)
11919 S:      Orphan
11920 F:      drivers/tty/isicom.c
11921 F:      include/linux/isicom.h
11922
11923 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11924 M:      Bin Liu <[email protected]>
11925 L:      [email protected]
11926 S:      Maintained
11927 F:      drivers/usb/musb/
11928
11929 MXL301RF MEDIA DRIVER
11930 M:      Akihiro Tsukada <[email protected]>
11931 L:      [email protected]
11932 S:      Odd Fixes
11933 F:      drivers/media/tuners/mxl301rf*
11934
11935 MXL5007T MEDIA DRIVER
11936 M:      Michael Krufky <[email protected]>
11937 L:      [email protected]
11938 S:      Maintained
11939 W:      https://linuxtv.org
11940 W:      http://github.com/mkrufky
11941 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11942 T:      git git://linuxtv.org/mkrufky/tuners.git
11943 F:      drivers/media/tuners/mxl5007t.*
11944
11945 MXSFB DRM DRIVER
11946 M:      Marek Vasut <[email protected]>
11947 M:      Stefan Agner <[email protected]>
11948 L:      [email protected]
11949 S:      Supported
11950 T:      git git://anongit.freedesktop.org/drm/drm-misc
11951 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11952 F:      drivers/gpu/drm/mxsfb/
11953
11954 MYLEX DAC960 PCI RAID Controller
11955 M:      Hannes Reinecke <[email protected]>
11956 L:      [email protected]
11957 S:      Supported
11958 F:      drivers/scsi/myrb.*
11959 F:      drivers/scsi/myrs.*
11960
11961 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11962 M:      Chris Lee <[email protected]>
11963 L:      [email protected]
11964 S:      Supported
11965 W:      https://www.cspi.com/ethernet-products/support/downloads/
11966 F:      drivers/net/ethernet/myricom/myri10ge/
11967
11968 NAND FLASH SUBSYSTEM
11969 M:      Miquel Raynal <[email protected]>
11970 R:      Richard Weinberger <[email protected]>
11971 L:      [email protected]
11972 S:      Maintained
11973 W:      http://www.linux-mtd.infradead.org/
11974 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11975 C:      irc://irc.oftc.net/mtd
11976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11977 F:      drivers/mtd/nand/
11978 F:      include/linux/mtd/*nand*.h
11979
11980 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11981 M:      Daniel Mack <[email protected]>
11982 L:      [email protected] (moderated for non-subscribers)
11983 S:      Maintained
11984 W:      http://www.native-instruments.com
11985 F:      sound/usb/caiaq/
11986
11987 NATSEMI ETHERNET DRIVER (DP8381x)
11988 S:      Orphan
11989 F:      drivers/net/ethernet/natsemi/natsemi.c
11990
11991 NCR 5380 SCSI DRIVERS
11992 M:      Finn Thain <[email protected]>
11993 M:      Michael Schmitz <[email protected]>
11994 L:      [email protected]
11995 S:      Maintained
11996 F:      Documentation/scsi/g_NCR5380.rst
11997 F:      drivers/scsi/NCR5380.*
11998 F:      drivers/scsi/arm/cumana_1.c
11999 F:      drivers/scsi/arm/oak.c
12000 F:      drivers/scsi/atari_scsi.*
12001 F:      drivers/scsi/dmx3191d.c
12002 F:      drivers/scsi/g_NCR5380.*
12003 F:      drivers/scsi/mac_scsi.*
12004 F:      drivers/scsi/sun3_scsi.*
12005 F:      drivers/scsi/sun3_scsi_vme.c
12006
12007 NCSI LIBRARY
12008 M:      Samuel Mendoza-Jonas <[email protected]>
12009 S:      Maintained
12010 F:      net/ncsi/
12011
12012 NCT6775 HARDWARE MONITOR DRIVER
12013 M:      Guenter Roeck <[email protected]>
12014 L:      [email protected]
12015 S:      Maintained
12016 F:      Documentation/hwmon/nct6775.rst
12017 F:      drivers/hwmon/nct6775.c
12018
12019 NETDEVSIM
12020 M:      Jakub Kicinski <[email protected]>
12021 S:      Maintained
12022 F:      drivers/net/netdevsim/*
12023
12024 NETEM NETWORK EMULATOR
12025 M:      Stephen Hemminger <[email protected]>
12026 L:      [email protected]
12027 S:      Maintained
12028 F:      net/sched/sch_netem.c
12029
12030 NETERION 10GbE DRIVERS (s2io/vxge)
12031 M:      Jon Mason <[email protected]>
12032 L:      [email protected]
12033 S:      Supported
12034 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12035 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12036 F:      drivers/net/ethernet/neterion/
12037
12038 NETFILTER
12039 M:      Pablo Neira Ayuso <[email protected]>
12040 M:      Jozsef Kadlecsik <[email protected]>
12041 M:      Florian Westphal <[email protected]>
12042 L:      [email protected]
12043 L:      [email protected]
12044 S:      Maintained
12045 W:      http://www.netfilter.org/
12046 W:      http://www.iptables.org/
12047 W:      http://www.nftables.org/
12048 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12051 F:      include/linux/netfilter*
12052 F:      include/linux/netfilter/
12053 F:      include/net/netfilter/
12054 F:      include/uapi/linux/netfilter*
12055 F:      include/uapi/linux/netfilter/
12056 F:      net/*/netfilter.c
12057 F:      net/*/netfilter/
12058 F:      net/bridge/br_netfilter*.c
12059 F:      net/netfilter/
12060
12061 NETROM NETWORK LAYER
12062 M:      Ralf Baechle <[email protected]>
12063 L:      [email protected]
12064 S:      Maintained
12065 W:      http://www.linux-ax25.org/
12066 F:      include/net/netrom.h
12067 F:      include/uapi/linux/netrom.h
12068 F:      net/netrom/
12069
12070 NETRONOME ETHERNET DRIVERS
12071 M:      Simon Horman <[email protected]>
12072 R:      Jakub Kicinski <[email protected]>
12073 L:      [email protected]
12074 S:      Maintained
12075 F:      drivers/net/ethernet/netronome/
12076
12077 NETWORK BLOCK DEVICE (NBD)
12078 M:      Josef Bacik <[email protected]>
12079 L:      [email protected]
12080 L:      [email protected]
12081 S:      Maintained
12082 F:      Documentation/admin-guide/blockdev/nbd.rst
12083 F:      drivers/block/nbd.c
12084 F:      include/trace/events/nbd.h
12085 F:      include/uapi/linux/nbd.h
12086
12087 NETWORK DROP MONITOR
12088 M:      Neil Horman <[email protected]>
12089 L:      [email protected]
12090 S:      Maintained
12091 W:      https://fedorahosted.org/dropwatch/
12092 F:      include/net/drop_monitor.h
12093 F:      include/uapi/linux/net_dropmon.h
12094 F:      net/core/drop_monitor.c
12095
12096 NETWORKING DRIVERS
12097 M:      "David S. Miller" <[email protected]>
12098 M:      Jakub Kicinski <[email protected]>
12099 L:      [email protected]
12100 S:      Maintained
12101 W:      http://www.linuxfoundation.org/en/Net
12102 Q:      http://patchwork.ozlabs.org/project/netdev/list/
12103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12105 F:      Documentation/devicetree/bindings/net/
12106 F:      drivers/connector/
12107 F:      drivers/net/
12108 F:      include/linux/etherdevice.h
12109 F:      include/linux/fcdevice.h
12110 F:      include/linux/fddidevice.h
12111 F:      include/linux/hippidevice.h
12112 F:      include/linux/if_*
12113 F:      include/linux/inetdevice.h
12114 F:      include/linux/netdevice.h
12115 F:      include/uapi/linux/if_*
12116 F:      include/uapi/linux/netdevice.h
12117
12118 NETWORKING DRIVERS (WIRELESS)
12119 M:      Kalle Valo <[email protected]>
12120 L:      [email protected]
12121 S:      Maintained
12122 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12125 F:      Documentation/devicetree/bindings/net/wireless/
12126 F:      drivers/net/wireless/
12127
12128 NETWORKING [DSA]
12129 M:      Andrew Lunn <[email protected]>
12130 M:      Vivien Didelot <[email protected]>
12131 M:      Florian Fainelli <[email protected]>
12132 M:      Vladimir Oltean <[email protected]>
12133 S:      Maintained
12134 F:      Documentation/devicetree/bindings/net/dsa/
12135 F:      drivers/net/dsa/
12136 F:      include/linux/dsa/
12137 F:      include/linux/platform_data/dsa.h
12138 F:      include/net/dsa.h
12139 F:      net/dsa/
12140
12141 NETWORKING [GENERAL]
12142 M:      "David S. Miller" <[email protected]>
12143 M:      Jakub Kicinski <[email protected]>
12144 L:      [email protected]
12145 S:      Maintained
12146 W:      http://www.linuxfoundation.org/en/Net
12147 Q:      http://patchwork.ozlabs.org/project/netdev/list/
12148 B:      mailto:[email protected]
12149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12151 F:      Documentation/networking/
12152 F:      include/linux/in.h
12153 F:      include/linux/net.h
12154 F:      include/linux/netdevice.h
12155 F:      include/net/
12156 F:      include/uapi/linux/in.h
12157 F:      include/uapi/linux/net.h
12158 F:      include/uapi/linux/net_namespace.h
12159 F:      include/uapi/linux/netdevice.h
12160 F:      lib/net_utils.c
12161 F:      lib/random32.c
12162 F:      net/
12163 F:      tools/testing/selftests/net/
12164
12165 NETWORKING [IPSEC]
12166 M:      Steffen Klassert <[email protected]>
12167 M:      Herbert Xu <[email protected]>
12168 M:      "David S. Miller" <[email protected]>
12169 L:      [email protected]
12170 S:      Maintained
12171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12173 F:      include/net/xfrm.h
12174 F:      include/uapi/linux/xfrm.h
12175 F:      net/ipv4/ah4.c
12176 F:      net/ipv4/esp4*
12177 F:      net/ipv4/ip_vti.c
12178 F:      net/ipv4/ipcomp.c
12179 F:      net/ipv4/xfrm*
12180 F:      net/ipv6/ah6.c
12181 F:      net/ipv6/esp6*
12182 F:      net/ipv6/ip6_vti.c
12183 F:      net/ipv6/ipcomp6.c
12184 F:      net/ipv6/xfrm*
12185 F:      net/key/
12186 F:      net/xfrm/
12187
12188 NETWORKING [IPv4/IPv6]
12189 M:      "David S. Miller" <[email protected]>
12190 M:      Alexey Kuznetsov <[email protected]>
12191 M:      Hideaki YOSHIFUJI <[email protected]>
12192 L:      [email protected]
12193 S:      Maintained
12194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12195 F:      arch/x86/net/*
12196 F:      include/net/ip*
12197 F:      net/ipv4/
12198 F:      net/ipv6/
12199
12200 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12201 M:      Paul Moore <[email protected]>
12202 L:      [email protected]
12203 L:      [email protected]
12204 S:      Maintained
12205 W:      https://github.com/netlabel
12206 F:      Documentation/netlabel/
12207 F:      include/net/calipso.h
12208 F:      include/net/cipso_ipv4.h
12209 F:      include/net/netlabel.h
12210 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12211 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12212 F:      net/ipv4/cipso_ipv4.c
12213 F:      net/ipv6/calipso.c
12214 F:      net/netfilter/xt_CONNSECMARK.c
12215 F:      net/netfilter/xt_SECMARK.c
12216 F:      net/netlabel/
12217
12218 NETWORKING [MPTCP]
12219 M:      Mat Martineau <[email protected]>
12220 M:      Matthieu Baerts <[email protected]>
12221 L:      [email protected]
12222 L:      [email protected]
12223 S:      Maintained
12224 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12225 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12226 F:      include/net/mptcp.h
12227 F:      include/uapi/linux/mptcp.h
12228 F:      net/mptcp/
12229 F:      tools/testing/selftests/net/mptcp/
12230
12231 NETWORKING [TCP]
12232 M:      Eric Dumazet <[email protected]>
12233 L:      [email protected]
12234 S:      Maintained
12235 F:      include/linux/tcp.h
12236 F:      include/net/tcp.h
12237 F:      include/trace/events/tcp.h
12238 F:      include/uapi/linux/tcp.h
12239 F:      net/ipv4/syncookies.c
12240 F:      net/ipv4/tcp*.c
12241 F:      net/ipv6/syncookies.c
12242 F:      net/ipv6/tcp*.c
12243
12244 NETWORKING [TLS]
12245 M:      Boris Pismenny <[email protected]>
12246 M:      Aviad Yehezkel <[email protected]>
12247 M:      John Fastabend <[email protected]>
12248 M:      Daniel Borkmann <[email protected]>
12249 M:      Jakub Kicinski <[email protected]>
12250 L:      [email protected]
12251 S:      Maintained
12252 F:      include/net/tls.h
12253 F:      include/uapi/linux/tls.h
12254 F:      net/tls/*
12255
12256 NETWORKING [WIRELESS]
12257 L:      [email protected]
12258 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12259
12260 NETXEN (1/10) GbE SUPPORT
12261 M:      Manish Chopra <[email protected]>
12262 M:      Rahul Verma <[email protected]>
12263 M:      [email protected]
12264 L:      [email protected]
12265 S:      Supported
12266 F:      drivers/net/ethernet/qlogic/netxen/
12267
12268 NET_FAILOVER MODULE
12269 M:      Sridhar Samudrala <[email protected]>
12270 L:      [email protected]
12271 S:      Supported
12272 F:      Documentation/networking/net_failover.rst
12273 F:      drivers/net/net_failover.c
12274 F:      include/net/net_failover.h
12275
12276 NEXTHOP
12277 M:      David Ahern <[email protected]>
12278 L:      [email protected]
12279 S:      Maintained
12280 F:      include/net/netns/nexthop.h
12281 F:      include/net/nexthop.h
12282 F:      include/uapi/linux/nexthop.h
12283 F:      net/ipv4/nexthop.c
12284
12285 NFC SUBSYSTEM
12286 L:      [email protected]
12287 S:      Orphan
12288 F:      Documentation/devicetree/bindings/net/nfc/
12289 F:      drivers/nfc/
12290 F:      include/linux/platform_data/nfcmrvl.h
12291 F:      include/net/nfc/
12292 F:      include/uapi/linux/nfc.h
12293 F:      net/nfc/
12294
12295 NFS, SUNRPC, AND LOCKD CLIENTS
12296 M:      Trond Myklebust <[email protected]>
12297 M:      Anna Schumaker <[email protected]>
12298 L:      [email protected]
12299 S:      Maintained
12300 W:      http://client.linux-nfs.org
12301 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12302 F:      fs/lockd/
12303 F:      fs/nfs/
12304 F:      fs/nfs_common/
12305 F:      include/linux/lockd/
12306 F:      include/linux/nfs*
12307 F:      include/linux/sunrpc/
12308 F:      include/uapi/linux/nfs*
12309 F:      include/uapi/linux/sunrpc/
12310 F:      net/sunrpc/
12311
12312 NILFS2 FILESYSTEM
12313 M:      Ryusuke Konishi <[email protected]>
12314 L:      [email protected]
12315 S:      Supported
12316 W:      https://nilfs.sourceforge.io/
12317 W:      https://nilfs.osdn.jp/
12318 T:      git git://github.com/konis/nilfs2.git
12319 F:      Documentation/filesystems/nilfs2.rst
12320 F:      fs/nilfs2/
12321 F:      include/trace/events/nilfs2.h
12322 F:      include/uapi/linux/nilfs2_api.h
12323 F:      include/uapi/linux/nilfs2_ondisk.h
12324
12325 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12326 M:      YOKOTA Hiroshi <[email protected]>
12327 S:      Maintained
12328 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12329 F:      Documentation/scsi/NinjaSCSI.rst
12330 F:      drivers/scsi/pcmcia/nsp_*
12331
12332 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12333 M:      GOTO Masanori <[email protected]>
12334 M:      YOKOTA Hiroshi <[email protected]>
12335 S:      Maintained
12336 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12337 F:      Documentation/scsi/NinjaSCSI.rst
12338 F:      drivers/scsi/nsp32*
12339
12340 NIOS2 ARCHITECTURE
12341 M:      Ley Foon Tan <[email protected]>
12342 S:      Maintained
12343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12344 F:      arch/nios2/
12345
12346 NITRO ENCLAVES (NE)
12347 M:      Andra Paraschiv <[email protected]>
12348 M:      Alexandru Vasile <[email protected]>
12349 M:      Alexandru Ciobotaru <[email protected]>
12350 L:      [email protected]
12351 S:      Supported
12352 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12353 F:      Documentation/virt/ne_overview.rst
12354 F:      drivers/virt/nitro_enclaves/
12355 F:      include/linux/nitro_enclaves.h
12356 F:      include/uapi/linux/nitro_enclaves.h
12357 F:      samples/nitro_enclaves/
12358
12359 NOHZ, DYNTICKS SUPPORT
12360 M:      Frederic Weisbecker <[email protected]>
12361 M:      Thomas Gleixner <[email protected]>
12362 M:      Ingo Molnar <[email protected]>
12363 L:      [email protected]
12364 S:      Maintained
12365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12366 F:      include/linux/sched/nohz.h
12367 F:      include/linux/tick.h
12368 F:      kernel/time/tick*.*
12369
12370 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12371 M:      Pavel Machek <[email protected]>
12372 M:      Sakari Ailus <[email protected]>
12373 L:      [email protected]
12374 S:      Maintained
12375 F:      drivers/media/i2c/ad5820.c
12376 F:      drivers/media/i2c/et8ek8
12377
12378 NOKIA N900 POWER SUPPLY DRIVERS
12379 R:      Pali Rohár <[email protected]>
12380 F:      drivers/power/supply/bq2415x_charger.c
12381 F:      drivers/power/supply/bq27xxx_battery.c
12382 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12383 F:      drivers/power/supply/isp1704_charger.c
12384 F:      drivers/power/supply/rx51_battery.c
12385 F:      include/linux/power/bq2415x_charger.h
12386 F:      include/linux/power/bq27xxx_battery.h
12387
12388 NOLIBC HEADER FILE
12389 M:      Willy Tarreau <[email protected]>
12390 S:      Maintained
12391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12392 F:      tools/include/nolibc/
12393
12394 NSDEPS
12395 M:      Matthias Maennich <[email protected]>
12396 S:      Maintained
12397 F:      Documentation/core-api/symbol-namespaces.rst
12398 F:      scripts/nsdeps
12399
12400 NTB AMD DRIVER
12401 M:      Sanjay R Mehta <[email protected]>
12402 M:      Shyam Sundar S K <[email protected]>
12403 L:      [email protected]
12404 S:      Supported
12405 F:      drivers/ntb/hw/amd/
12406
12407 NTB DRIVER CORE
12408 M:      Jon Mason <[email protected]>
12409 M:      Dave Jiang <[email protected]>
12410 M:      Allen Hubbe <[email protected]>
12411 L:      [email protected]
12412 S:      Supported
12413 W:      https://github.com/jonmason/ntb/wiki
12414 T:      git git://github.com/jonmason/ntb.git
12415 F:      drivers/net/ntb_netdev.c
12416 F:      drivers/ntb/
12417 F:      include/linux/ntb.h
12418 F:      include/linux/ntb_transport.h
12419 F:      tools/testing/selftests/ntb/
12420
12421 NTB IDT DRIVER
12422 M:      Serge Semin <[email protected]>
12423 L:      [email protected]
12424 S:      Supported
12425 F:      drivers/ntb/hw/idt/
12426
12427 NTB INTEL DRIVER
12428 M:      Dave Jiang <[email protected]>
12429 L:      [email protected]
12430 S:      Supported
12431 W:      https://github.com/davejiang/linux/wiki
12432 T:      git https://github.com/davejiang/linux.git
12433 F:      drivers/ntb/hw/intel/
12434
12435 NTFS FILESYSTEM
12436 M:      Anton Altaparmakov <[email protected]>
12437 L:      [email protected]
12438 S:      Supported
12439 W:      http://www.tuxera.com/
12440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12441 F:      Documentation/filesystems/ntfs.rst
12442 F:      fs/ntfs/
12443
12444 NUBUS SUBSYSTEM
12445 M:      Finn Thain <[email protected]>
12446 L:      [email protected]
12447 S:      Maintained
12448 F:      arch/*/include/asm/nubus.h
12449 F:      drivers/nubus/
12450 F:      include/linux/nubus.h
12451 F:      include/uapi/linux/nubus.h
12452
12453 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12454 M:      Antonino Daplas <[email protected]>
12455 L:      [email protected]
12456 S:      Maintained
12457 F:      drivers/video/fbdev/nvidia/
12458 F:      drivers/video/fbdev/riva/
12459
12460 NVM EXPRESS DRIVER
12461 M:      Keith Busch <[email protected]>
12462 M:      Jens Axboe <[email protected]>
12463 M:      Christoph Hellwig <[email protected]>
12464 M:      Sagi Grimberg <[email protected]>
12465 L:      [email protected]
12466 S:      Supported
12467 W:      http://git.infradead.org/nvme.git
12468 T:      git://git.infradead.org/nvme.git
12469 F:      drivers/nvme/host/
12470 F:      include/linux/nvme.h
12471 F:      include/uapi/linux/nvme_ioctl.h
12472
12473 NVM EXPRESS FC TRANSPORT DRIVERS
12474 M:      James Smart <[email protected]>
12475 L:      [email protected]
12476 S:      Supported
12477 F:      drivers/nvme/host/fc.c
12478 F:      drivers/nvme/target/fc.c
12479 F:      drivers/nvme/target/fcloop.c
12480 F:      include/linux/nvme-fc-driver.h
12481 F:      include/linux/nvme-fc.h
12482
12483 NVM EXPRESS TARGET DRIVER
12484 M:      Christoph Hellwig <[email protected]>
12485 M:      Sagi Grimberg <[email protected]>
12486 M:      Chaitanya Kulkarni <[email protected]>
12487 L:      [email protected]
12488 S:      Supported
12489 W:      http://git.infradead.org/nvme.git
12490 T:      git://git.infradead.org/nvme.git
12491 F:      drivers/nvme/target/
12492
12493 NVMEM FRAMEWORK
12494 M:      Srinivas Kandagatla <[email protected]>
12495 S:      Maintained
12496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12497 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12498 F:      Documentation/devicetree/bindings/nvmem/
12499 F:      drivers/nvmem/
12500 F:      include/linux/nvmem-consumer.h
12501 F:      include/linux/nvmem-provider.h
12502
12503 NXP FSPI DRIVER
12504 M:      Ashish Kumar <[email protected]>
12505 R:      Yogesh Gaur <[email protected]>
12506 L:      [email protected]
12507 S:      Maintained
12508 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12509 F:      drivers/spi/spi-nxp-fspi.c
12510
12511 NXP FXAS21002C DRIVER
12512 M:      Rui Miguel Silva <[email protected]>
12513 L:      [email protected]
12514 S:      Maintained
12515 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12516 F:      drivers/iio/gyro/fxas21002c.h
12517 F:      drivers/iio/gyro/fxas21002c_core.c
12518 F:      drivers/iio/gyro/fxas21002c_i2c.c
12519 F:      drivers/iio/gyro/fxas21002c_spi.c
12520
12521 NXP i.MX 8MQ DCSS DRIVER
12522 M:      Laurentiu Palcu <[email protected]>
12523 R:      Lucas Stach <[email protected]>
12524 L:      [email protected]
12525 S:      Maintained
12526 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12527 F:      drivers/gpu/drm/imx/dcss/
12528
12529 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12530 M:      Krzysztof Kozlowski <[email protected]>
12531 L:      [email protected]
12532 S:      Maintained
12533 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12534 F:      drivers/extcon/extcon-ptn5150.c
12535
12536 NXP SGTL5000 DRIVER
12537 M:      Fabio Estevam <[email protected]>
12538 L:      [email protected] (moderated for non-subscribers)
12539 S:      Maintained
12540 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12541 F:      sound/soc/codecs/sgtl5000*
12542
12543 NXP SJA1105 ETHERNET SWITCH DRIVER
12544 M:      Vladimir Oltean <[email protected]>
12545 L:      [email protected]
12546 S:      Maintained
12547 F:      drivers/net/dsa/sja1105
12548
12549 NXP TDA998X DRM DRIVER
12550 M:      Russell King <[email protected]>
12551 S:      Maintained
12552 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12553 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12554 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12555 F:      include/drm/i2c/tda998x.h
12556 F:      include/dt-bindings/display/tda998x.h
12557 K:      "nxp,tda998x"
12558
12559 NXP TFA9879 DRIVER
12560 M:      Peter Rosin <[email protected]>
12561 L:      [email protected] (moderated for non-subscribers)
12562 S:      Maintained
12563 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12564 F:      sound/soc/codecs/tfa9879*
12565
12566 NXP-NCI NFC DRIVER
12567 M:      Clément Perrochaud <[email protected]>
12568 R:      Charles Gorand <[email protected]>
12569 L:      [email protected] (moderated for non-subscribers)
12570 S:      Supported
12571 F:      drivers/nfc/nxp-nci
12572
12573 OBJAGG
12574 M:      Jiri Pirko <[email protected]>
12575 L:      [email protected]
12576 S:      Supported
12577 F:      include/linux/objagg.h
12578 F:      lib/objagg.c
12579 F:      lib/test_objagg.c
12580
12581 OBJTOOL
12582 M:      Josh Poimboeuf <[email protected]>
12583 M:      Peter Zijlstra <[email protected]>
12584 S:      Supported
12585 F:      tools/objtool/
12586 F:      include/linux/objtool.h
12587
12588 OCELOT ETHERNET SWITCH DRIVER
12589 M:      Microchip Linux Driver Support <[email protected]>
12590 M:      Vladimir Oltean <[email protected]>
12591 M:      Claudiu Manoil <[email protected]>
12592 M:      Alexandre Belloni <[email protected]>
12593 L:      [email protected]
12594 S:      Supported
12595 F:      drivers/net/dsa/ocelot/*
12596 F:      drivers/net/ethernet/mscc/
12597 F:      include/soc/mscc/ocelot*
12598 F:      net/dsa/tag_ocelot.c
12599
12600 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12601 M:      Frederic Barrat <[email protected]>
12602 M:      Andrew Donnellan <[email protected]>
12603 L:      [email protected]
12604 S:      Supported
12605 F:      Documentation/userspace-api/accelerators/ocxl.rst
12606 F:      arch/powerpc/include/asm/pnv-ocxl.h
12607 F:      arch/powerpc/platforms/powernv/ocxl.c
12608 F:      drivers/misc/ocxl/
12609 F:      include/misc/ocxl*
12610 F:      include/uapi/misc/ocxl.h
12611
12612 OMAP AUDIO SUPPORT
12613 M:      Peter Ujfalusi <[email protected]>
12614 M:      Jarkko Nikula <[email protected]>
12615 L:      [email protected] (moderated for non-subscribers)
12616 L:      [email protected]
12617 S:      Maintained
12618 F:      sound/soc/ti/n810.c
12619 F:      sound/soc/ti/omap*
12620 F:      sound/soc/ti/rx51.c
12621 F:      sound/soc/ti/sdma-pcm.*
12622
12623 OMAP CLOCK FRAMEWORK SUPPORT
12624 M:      Paul Walmsley <[email protected]>
12625 L:      [email protected]
12626 S:      Maintained
12627 F:      arch/arm/*omap*/*clock*
12628
12629 OMAP DEVICE TREE SUPPORT
12630 M:      Benoît Cousson <[email protected]>
12631 M:      Tony Lindgren <[email protected]>
12632 L:      [email protected]
12633 L:      [email protected]
12634 S:      Maintained
12635 F:      arch/arm/boot/dts/*am3*
12636 F:      arch/arm/boot/dts/*am4*
12637 F:      arch/arm/boot/dts/*am5*
12638 F:      arch/arm/boot/dts/*dra7*
12639 F:      arch/arm/boot/dts/*omap*
12640 F:      arch/arm/boot/dts/logicpd-som-lv*
12641 F:      arch/arm/boot/dts/logicpd-torpedo*
12642
12643 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12644 L:      [email protected]
12645 L:      [email protected]
12646 S:      Orphan
12647 F:      Documentation/arm/omap/dss.rst
12648 F:      drivers/video/fbdev/omap2/
12649
12650 OMAP FRAMEBUFFER SUPPORT
12651 L:      [email protected]
12652 L:      [email protected]
12653 S:      Orphan
12654 F:      drivers/video/fbdev/omap/
12655
12656 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12657 M:      Roger Quadros <[email protected]>
12658 M:      Tony Lindgren <[email protected]>
12659 L:      [email protected]
12660 S:      Maintained
12661 F:      arch/arm/mach-omap2/*gpmc*
12662 F:      drivers/memory/omap-gpmc.c
12663
12664 OMAP GPIO DRIVER
12665 M:      Grygorii Strashko <[email protected]>
12666 M:      Santosh Shilimkar <[email protected]>
12667 M:      Kevin Hilman <[email protected]>
12668 L:      [email protected]
12669 S:      Maintained
12670 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12671 F:      drivers/gpio/gpio-omap.c
12672
12673 OMAP HARDWARE SPINLOCK SUPPORT
12674 M:      Ohad Ben-Cohen <[email protected]>
12675 L:      [email protected]
12676 S:      Maintained
12677 F:      drivers/hwspinlock/omap_hwspinlock.c
12678
12679 OMAP HS MMC SUPPORT
12680 L:      [email protected]
12681 L:      [email protected]
12682 S:      Orphan
12683 F:      drivers/mmc/host/omap_hsmmc.c
12684
12685 OMAP HWMOD DATA
12686 M:      Paul Walmsley <[email protected]>
12687 L:      [email protected]
12688 S:      Maintained
12689 F:      arch/arm/mach-omap2/omap_hwmod*data*
12690
12691 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12692 M:      Benoît Cousson <[email protected]>
12693 L:      [email protected]
12694 S:      Maintained
12695 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12696
12697 OMAP HWMOD SUPPORT
12698 M:      Benoît Cousson <[email protected]>
12699 M:      Paul Walmsley <[email protected]>
12700 L:      [email protected]
12701 S:      Maintained
12702 F:      arch/arm/mach-omap2/omap_hwmod.*
12703
12704 OMAP I2C DRIVER
12705 M:      Vignesh R <[email protected]>
12706 L:      [email protected]
12707 L:      [email protected]
12708 S:      Maintained
12709 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12710 F:      drivers/i2c/busses/i2c-omap.c
12711
12712 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12713 M:      Laurent Pinchart <[email protected]>
12714 L:      [email protected]
12715 S:      Maintained
12716 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12717 F:      drivers/media/platform/omap3isp/
12718 F:      drivers/staging/media/omap4iss/
12719
12720 OMAP MMC SUPPORT
12721 M:      Aaro Koskinen <[email protected]>
12722 L:      [email protected]
12723 S:      Odd Fixes
12724 F:      drivers/mmc/host/omap.c
12725
12726 OMAP POWER MANAGEMENT SUPPORT
12727 M:      Kevin Hilman <[email protected]>
12728 L:      [email protected]
12729 S:      Maintained
12730 F:      arch/arm/*omap*/*pm*
12731 F:      drivers/cpufreq/omap-cpufreq.c
12732
12733 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12734 M:      Rajendra Nayak <[email protected]>
12735 M:      Paul Walmsley <[email protected]>
12736 L:      [email protected]
12737 S:      Maintained
12738 F:      arch/arm/mach-omap2/prm*
12739
12740 OMAP RANDOM NUMBER GENERATOR SUPPORT
12741 M:      Deepak Saxena <[email protected]>
12742 S:      Maintained
12743 F:      drivers/char/hw_random/omap-rng.c
12744
12745 OMAP USB SUPPORT
12746 L:      [email protected]
12747 L:      [email protected]
12748 S:      Orphan
12749 F:      arch/arm/*omap*/usb*
12750 F:      drivers/usb/*/*omap*
12751
12752 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12753 M:      Mark Jackson <[email protected]>
12754 L:      [email protected]
12755 S:      Maintained
12756 F:      arch/arm/boot/dts/am335x-nano.dts
12757
12758 OMAP1 SUPPORT
12759 M:      Aaro Koskinen <[email protected]>
12760 M:      Tony Lindgren <[email protected]>
12761 L:      [email protected]
12762 S:      Maintained
12763 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12765 F:      arch/arm/configs/omap1_defconfig
12766 F:      arch/arm/mach-omap1/
12767 F:      arch/arm/plat-omap/
12768 F:      drivers/i2c/busses/i2c-omap.c
12769 F:      include/linux/platform_data/ams-delta-fiq.h
12770 F:      include/linux/platform_data/i2c-omap.h
12771
12772 OMAP2+ SUPPORT
12773 M:      Tony Lindgren <[email protected]>
12774 L:      [email protected]
12775 S:      Maintained
12776 W:      http://www.muru.com/linux/omap/
12777 W:      http://linux.omap.com/
12778 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12780 F:      arch/arm/configs/omap2plus_defconfig
12781 F:      arch/arm/mach-omap2/
12782 F:      arch/arm/plat-omap/
12783 F:      drivers/bus/ti-sysc.c
12784 F:      drivers/i2c/busses/i2c-omap.c
12785 F:      drivers/irqchip/irq-omap-intc.c
12786 F:      drivers/mfd/*omap*.c
12787 F:      drivers/mfd/menelaus.c
12788 F:      drivers/mfd/palmas.c
12789 F:      drivers/mfd/tps65217.c
12790 F:      drivers/mfd/tps65218.c
12791 F:      drivers/mfd/tps65910.c
12792 F:      drivers/mfd/twl-core.[ch]
12793 F:      drivers/mfd/twl4030*.c
12794 F:      drivers/mfd/twl6030*.c
12795 F:      drivers/mfd/twl6040*.c
12796 F:      drivers/regulator/palmas-regulator*.c
12797 F:      drivers/regulator/pbias-regulator.c
12798 F:      drivers/regulator/tps65217-regulator.c
12799 F:      drivers/regulator/tps65218-regulator.c
12800 F:      drivers/regulator/tps65910-regulator.c
12801 F:      drivers/regulator/twl-regulator.c
12802 F:      drivers/regulator/twl6030-regulator.c
12803 F:      include/linux/platform_data/i2c-omap.h
12804 F:      include/linux/platform_data/ti-sysc.h
12805
12806 OMFS FILESYSTEM
12807 M:      Bob Copeland <[email protected]>
12808 L:      [email protected]
12809 S:      Maintained
12810 F:      Documentation/filesystems/omfs.rst
12811 F:      fs/omfs/
12812
12813 OMNIKEY CARDMAN 4000 DRIVER
12814 M:      Harald Welte <[email protected]>
12815 S:      Maintained
12816 F:      drivers/char/pcmcia/cm4000_cs.c
12817 F:      include/linux/cm4000_cs.h
12818 F:      include/uapi/linux/cm4000_cs.h
12819
12820 OMNIKEY CARDMAN 4040 DRIVER
12821 M:      Harald Welte <[email protected]>
12822 S:      Maintained
12823 F:      drivers/char/pcmcia/cm4040_cs.*
12824
12825 OMNIVISION OV13858 SENSOR DRIVER
12826 M:      Sakari Ailus <[email protected]>
12827 L:      [email protected]
12828 S:      Maintained
12829 T:      git git://linuxtv.org/media_tree.git
12830 F:      drivers/media/i2c/ov13858.c
12831
12832 OMNIVISION OV2680 SENSOR DRIVER
12833 M:      Rui Miguel Silva <[email protected]>
12834 L:      [email protected]
12835 S:      Maintained
12836 T:      git git://linuxtv.org/media_tree.git
12837 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12838 F:      drivers/media/i2c/ov2680.c
12839
12840 OMNIVISION OV2685 SENSOR DRIVER
12841 M:      Shunqian Zheng <[email protected]>
12842 L:      [email protected]
12843 S:      Maintained
12844 T:      git git://linuxtv.org/media_tree.git
12845 F:      drivers/media/i2c/ov2685.c
12846
12847 OMNIVISION OV2740 SENSOR DRIVER
12848 M:      Tianshu Qiu <[email protected]>
12849 R:      Shawn Tu <[email protected]>
12850 R:      Bingbu Cao <[email protected]>
12851 L:      [email protected]
12852 S:      Maintained
12853 T:      git git://linuxtv.org/media_tree.git
12854 F:      drivers/media/i2c/ov2740.c
12855
12856 OMNIVISION OV5640 SENSOR DRIVER
12857 M:      Steve Longerbeam <[email protected]>
12858 L:      [email protected]
12859 S:      Maintained
12860 T:      git git://linuxtv.org/media_tree.git
12861 F:      drivers/media/i2c/ov5640.c
12862
12863 OMNIVISION OV5647 SENSOR DRIVER
12864 M:      Dave Stevenson <[email protected]>
12865 M:      Jacopo Mondi <[email protected]>
12866 L:      [email protected]
12867 S:      Maintained
12868 T:      git git://linuxtv.org/media_tree.git
12869 F:      Documentation/devicetree/bindings/media/i2c/ov5647.yaml
12870 F:      drivers/media/i2c/ov5647.c
12871
12872 OMNIVISION OV5670 SENSOR DRIVER
12873 M:      Chiranjeevi Rapolu <[email protected]>
12874 M:      Hyungwoo Yang <[email protected]>
12875 L:      [email protected]
12876 S:      Maintained
12877 T:      git git://linuxtv.org/media_tree.git
12878 F:      drivers/media/i2c/ov5670.c
12879
12880 OMNIVISION OV5675 SENSOR DRIVER
12881 M:      Shawn Tu <[email protected]>
12882 L:      [email protected]
12883 S:      Maintained
12884 T:      git git://linuxtv.org/media_tree.git
12885 F:      drivers/media/i2c/ov5675.c
12886
12887 OMNIVISION OV5695 SENSOR DRIVER
12888 M:      Shunqian Zheng <[email protected]>
12889 L:      [email protected]
12890 S:      Maintained
12891 T:      git git://linuxtv.org/media_tree.git
12892 F:      drivers/media/i2c/ov5695.c
12893
12894 OMNIVISION OV7670 SENSOR DRIVER
12895 M:      Jonathan Corbet <[email protected]>
12896 L:      [email protected]
12897 S:      Maintained
12898 T:      git git://linuxtv.org/media_tree.git
12899 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12900 F:      drivers/media/i2c/ov7670.c
12901
12902 OMNIVISION OV772x SENSOR DRIVER
12903 M:      Jacopo Mondi <[email protected]>
12904 L:      [email protected]
12905 S:      Odd fixes
12906 T:      git git://linuxtv.org/media_tree.git
12907 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12908 F:      drivers/media/i2c/ov772x.c
12909 F:      include/media/i2c/ov772x.h
12910
12911 OMNIVISION OV7740 SENSOR DRIVER
12912 M:      Wenyou Yang <[email protected]>
12913 L:      [email protected]
12914 S:      Maintained
12915 T:      git git://linuxtv.org/media_tree.git
12916 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12917 F:      drivers/media/i2c/ov7740.c
12918
12919 OMNIVISION OV8856 SENSOR DRIVER
12920 M:      Dongchun Zhu <[email protected]>
12921 L:      [email protected]
12922 S:      Maintained
12923 T:      git git://linuxtv.org/media_tree.git
12924 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
12925 F:      drivers/media/i2c/ov8856.c
12926
12927 OMNIVISION OV9640 SENSOR DRIVER
12928 M:      Petr Cvek <[email protected]>
12929 L:      [email protected]
12930 S:      Maintained
12931 F:      drivers/media/i2c/ov9640.*
12932
12933 OMNIVISION OV9650 SENSOR DRIVER
12934 M:      Sakari Ailus <[email protected]>
12935 R:      Akinobu Mita <[email protected]>
12936 R:      Sylwester Nawrocki <[email protected]>
12937 L:      [email protected]
12938 S:      Maintained
12939 T:      git git://linuxtv.org/media_tree.git
12940 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12941 F:      drivers/media/i2c/ov9650.c
12942
12943 ONENAND FLASH DRIVER
12944 M:      Kyungmin Park <[email protected]>
12945 L:      [email protected]
12946 S:      Maintained
12947 F:      drivers/mtd/nand/onenand/
12948 F:      include/linux/mtd/onenand*.h
12949
12950 ONION OMEGA2+ BOARD
12951 M:      Harvey Hunt <[email protected]>
12952 L:      [email protected]
12953 S:      Maintained
12954 F:      arch/mips/boot/dts/ralink/omega2p.dts
12955
12956 OP-TEE DRIVER
12957 M:      Jens Wiklander <[email protected]>
12958 L:      [email protected]
12959 S:      Maintained
12960 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
12961 F:      drivers/tee/optee/
12962
12963 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12964 M:      Sumit Garg <[email protected]>
12965 L:      [email protected]
12966 S:      Maintained
12967 F:      drivers/char/hw_random/optee-rng.c
12968
12969 OPA-VNIC DRIVER
12970 M:      Dennis Dalessandro <[email protected]>
12971 M:      Niranjana Vishwanathapura <[email protected]>
12972 L:      [email protected]
12973 S:      Supported
12974 F:      drivers/infiniband/ulp/opa_vnic
12975
12976 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12977 M:      Pantelis Antoniou <[email protected]>
12978 M:      Frank Rowand <[email protected]>
12979 L:      [email protected]
12980 S:      Maintained
12981 F:      Documentation/devicetree/dynamic-resolution-notes.rst
12982 F:      Documentation/devicetree/overlay-notes.rst
12983 F:      drivers/of/overlay.c
12984 F:      drivers/of/resolver.c
12985 K:      of_overlay_notifier_
12986
12987 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12988 M:      Rob Herring <[email protected]>
12989 M:      Frank Rowand <[email protected]>
12990 L:      [email protected]
12991 S:      Maintained
12992 W:      http://www.devicetree.org/
12993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12994 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12995 F:      drivers/of/
12996 F:      include/linux/of*.h
12997 F:      scripts/dtc/
12998
12999 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13000 M:      Rob Herring <[email protected]>
13001 L:      [email protected]
13002 S:      Maintained
13003 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13005 F:      Documentation/devicetree/
13006 F:      arch/*/boot/dts/
13007 F:      include/dt-bindings/
13008
13009 OPENCORES I2C BUS DRIVER
13010 M:      Peter Korsgaard <[email protected]>
13011 M:      Andrew Lunn <[email protected]>
13012 L:      [email protected]
13013 S:      Maintained
13014 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13015 F:      Documentation/i2c/busses/i2c-ocores.rst
13016 F:      drivers/i2c/busses/i2c-ocores.c
13017 F:      include/linux/platform_data/i2c-ocores.h
13018
13019 OPENRISC ARCHITECTURE
13020 M:      Jonas Bonn <[email protected]>
13021 M:      Stefan Kristiansson <[email protected]>
13022 M:      Stafford Horne <[email protected]>
13023 L:      [email protected]
13024 S:      Maintained
13025 W:      http://openrisc.io
13026 T:      git git://github.com/openrisc/linux.git
13027 F:      Documentation/devicetree/bindings/openrisc/
13028 F:      Documentation/openrisc/
13029 F:      arch/openrisc/
13030 F:      drivers/irqchip/irq-ompic.c
13031 F:      drivers/irqchip/irq-or1k-*
13032
13033 OPENVSWITCH
13034 M:      Pravin B Shelar <[email protected]>
13035 L:      [email protected]
13036 L:      [email protected]
13037 S:      Maintained
13038 W:      http://openvswitch.org
13039 F:      include/uapi/linux/openvswitch.h
13040 F:      net/openvswitch/
13041
13042 OPERATING PERFORMANCE POINTS (OPP)
13043 M:      Viresh Kumar <[email protected]>
13044 M:      Nishanth Menon <[email protected]>
13045 M:      Stephen Boyd <[email protected]>
13046 L:      [email protected]
13047 S:      Maintained
13048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13049 F:      Documentation/devicetree/bindings/opp/
13050 F:      Documentation/power/opp.rst
13051 F:      drivers/opp/
13052 F:      include/linux/pm_opp.h
13053
13054 OPL4 DRIVER
13055 M:      Clemens Ladisch <[email protected]>
13056 L:      [email protected] (moderated for non-subscribers)
13057 S:      Maintained
13058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13059 F:      sound/drivers/opl4/
13060
13061 OPROFILE
13062 M:      Robert Richter <[email protected]>
13063 L:      [email protected]
13064 S:      Maintained
13065 F:      arch/*/include/asm/oprofile*.h
13066 F:      arch/*/oprofile/
13067 F:      drivers/oprofile/
13068 F:      include/linux/oprofile.h
13069
13070 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13071 M:      Mark Fasheh <[email protected]>
13072 M:      Joel Becker <[email protected]>
13073 M:      Joseph Qi <[email protected]>
13074 L:      [email protected] (moderated for non-subscribers)
13075 S:      Supported
13076 W:      http://ocfs2.wiki.kernel.org
13077 F:      Documentation/filesystems/dlmfs.rst
13078 F:      Documentation/filesystems/ocfs2.rst
13079 F:      fs/ocfs2/
13080
13081 ORANGEFS FILESYSTEM
13082 M:      Mike Marshall <[email protected]>
13083 R:      Martin Brandenburg <[email protected]>
13084 L:      [email protected]
13085 S:      Supported
13086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13087 F:      Documentation/filesystems/orangefs.rst
13088 F:      fs/orangefs/
13089
13090 ORINOCO DRIVER
13091 L:      [email protected]
13092 S:      Orphan
13093 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13094 W:      http://www.nongnu.org/orinoco/
13095 F:      drivers/net/wireless/intersil/orinoco/
13096
13097 OV2659 OMNIVISION SENSOR DRIVER
13098 M:      "Lad, Prabhakar" <[email protected]>
13099 L:      [email protected]
13100 S:      Maintained
13101 W:      https://linuxtv.org
13102 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13103 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13104 F:      drivers/media/i2c/ov2659.c
13105 F:      include/media/i2c/ov2659.h
13106
13107 OVERLAY FILESYSTEM
13108 M:      Miklos Szeredi <[email protected]>
13109 L:      [email protected]
13110 S:      Supported
13111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13112 F:      Documentation/filesystems/overlayfs.rst
13113 F:      fs/overlayfs/
13114
13115 P54 WIRELESS DRIVER
13116 M:      Christian Lamparter <[email protected]>
13117 L:      [email protected]
13118 S:      Maintained
13119 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13120 F:      drivers/net/wireless/intersil/p54/
13121
13122 PACKING
13123 M:      Vladimir Oltean <[email protected]>
13124 L:      [email protected]
13125 S:      Supported
13126 F:      Documentation/core-api/packing.rst
13127 F:      include/linux/packing.h
13128 F:      lib/packing.c
13129
13130 PADATA PARALLEL EXECUTION MECHANISM
13131 M:      Steffen Klassert <[email protected]>
13132 M:      Daniel Jordan <[email protected]>
13133 L:      [email protected]
13134 L:      [email protected]
13135 S:      Maintained
13136 F:      Documentation/core-api/padata.rst
13137 F:      include/linux/padata.h
13138 F:      kernel/padata.c
13139
13140 PAGE POOL
13141 M:      Jesper Dangaard Brouer <[email protected]>
13142 M:      Ilias Apalodimas <[email protected]>
13143 L:      [email protected]
13144 S:      Supported
13145 F:      include/net/page_pool.h
13146 F:      net/core/page_pool.c
13147
13148 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13149 M:      Harald Welte <[email protected]>
13150 L:      [email protected]
13151 S:      Maintained
13152 F:      drivers/platform/x86/panasonic-laptop.c
13153
13154 PARALLAX PING IIO SENSOR DRIVER
13155 M:      Andreas Klinger <[email protected]>
13156 L:      [email protected]
13157 S:      Maintained
13158 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13159 F:      drivers/iio/proximity/ping.c
13160
13161 PARALLEL LCD/KEYPAD PANEL DRIVER
13162 M:      Willy Tarreau <[email protected]>
13163 M:      Ksenija Stanojevic <[email protected]>
13164 S:      Odd Fixes
13165 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13166 F:      drivers/auxdisplay/panel.c
13167
13168 PARALLEL PORT SUBSYSTEM
13169 M:      Sudip Mukherjee <[email protected]>
13170 M:      Sudip Mukherjee <[email protected]>
13171 L:      [email protected] (subscribers-only)
13172 S:      Maintained
13173 F:      Documentation/driver-api/parport*.rst
13174 F:      drivers/char/ppdev.c
13175 F:      drivers/parport/
13176 F:      include/linux/parport*.h
13177 F:      include/uapi/linux/ppdev.h
13178
13179 PARAVIRT_OPS INTERFACE
13180 M:      Juergen Gross <[email protected]>
13181 M:      Deep Shah <[email protected]>
13182 M:      "VMware, Inc." <[email protected]>
13183 L:      [email protected]
13184 S:      Supported
13185 F:      Documentation/virt/paravirt_ops.rst
13186 F:      arch/*/include/asm/paravirt*.h
13187 F:      arch/*/kernel/paravirt*
13188 F:      include/linux/hypervisor.h
13189
13190 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13191 M:      Tim Waugh <[email protected]>
13192 L:      [email protected] (subscribers-only)
13193 S:      Maintained
13194 F:      Documentation/admin-guide/blockdev/paride.rst
13195 F:      drivers/block/paride/
13196
13197 PARISC ARCHITECTURE
13198 M:      "James E.J. Bottomley" <[email protected]>
13199 M:      Helge Deller <[email protected]>
13200 L:      [email protected]
13201 S:      Maintained
13202 W:      https://parisc.wiki.kernel.org
13203 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13206 F:      Documentation/parisc/
13207 F:      arch/parisc/
13208 F:      drivers/char/agp/parisc-agp.c
13209 F:      drivers/input/misc/hp_sdc_rtc.c
13210 F:      drivers/input/serio/gscps2.c
13211 F:      drivers/input/serio/hp_sdc*
13212 F:      drivers/parisc/
13213 F:      drivers/parport/parport_gsc.*
13214 F:      drivers/tty/serial/8250/8250_gsc.c
13215 F:      drivers/video/console/sti*
13216 F:      drivers/video/fbdev/sti*
13217 F:      drivers/video/logo/logo_parisc*
13218 F:      include/linux/hp_sdc.h
13219
13220 PARMAN
13221 M:      Jiri Pirko <[email protected]>
13222 L:      [email protected]
13223 S:      Supported
13224 F:      include/linux/parman.h
13225 F:      lib/parman.c
13226 F:      lib/test_parman.c
13227
13228 PC ENGINES APU BOARD DRIVER
13229 M:      Enrico Weigelt, metux IT consult <[email protected]>
13230 S:      Maintained
13231 F:      drivers/platform/x86/pcengines-apuv2.c
13232
13233 PC87360 HARDWARE MONITORING DRIVER
13234 M:      Jim Cromie <[email protected]>
13235 L:      [email protected]
13236 S:      Maintained
13237 F:      Documentation/hwmon/pc87360.rst
13238 F:      drivers/hwmon/pc87360.c
13239
13240 PC8736x GPIO DRIVER
13241 M:      Jim Cromie <[email protected]>
13242 S:      Maintained
13243 F:      drivers/char/pc8736x_gpio.c
13244
13245 PC87427 HARDWARE MONITORING DRIVER
13246 M:      Jean Delvare <[email protected]>
13247 L:      [email protected]
13248 S:      Maintained
13249 F:      Documentation/hwmon/pc87427.rst
13250 F:      drivers/hwmon/pc87427.c
13251
13252 PCA9532 LED DRIVER
13253 M:      Riku Voipio <[email protected]>
13254 S:      Maintained
13255 F:      drivers/leds/leds-pca9532.c
13256 F:      include/linux/leds-pca9532.h
13257
13258 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13259 M:      Guenter Roeck <[email protected]>
13260 L:      [email protected]
13261 S:      Maintained
13262 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13263
13264 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13265 M:      Khalid Aziz <[email protected]>
13266 S:      Maintained
13267 F:      drivers/firmware/pcdp.*
13268
13269 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13270 M:      Thomas Petazzoni <[email protected]>
13271 M:      Pali Rohár <[email protected]>
13272 L:      [email protected]
13273 L:      [email protected] (moderated for non-subscribers)
13274 S:      Maintained
13275 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13276 F:      drivers/pci/controller/pci-aardvark.c
13277
13278 PCI DRIVER FOR ALTERA PCIE IP
13279 M:      Ley Foon Tan <[email protected]>
13280 L:      [email protected] (moderated for non-subscribers)
13281 L:      [email protected]
13282 S:      Supported
13283 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13284 F:      drivers/pci/controller/pcie-altera.c
13285
13286 PCI DRIVER FOR APPLIEDMICRO XGENE
13287 M:      Toan Le <[email protected]>
13288 L:      [email protected]
13289 L:      [email protected]
13290 S:      Maintained
13291 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13292 F:      drivers/pci/controller/pci-xgene.c
13293
13294 PCI DRIVER FOR ARM VERSATILE PLATFORM
13295 M:      Rob Herring <[email protected]>
13296 L:      [email protected]
13297 L:      [email protected]
13298 S:      Maintained
13299 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13300 F:      drivers/pci/controller/pci-versatile.c
13301
13302 PCI DRIVER FOR ARMADA 8K
13303 M:      Thomas Petazzoni <[email protected]>
13304 L:      [email protected]
13305 L:      [email protected]
13306 S:      Maintained
13307 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13308 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13309
13310 PCI DRIVER FOR CADENCE PCIE IP
13311 M:      Tom Joseph <[email protected]>
13312 L:      [email protected]
13313 S:      Maintained
13314 F:      Documentation/devicetree/bindings/pci/cdns,*
13315 F:      drivers/pci/controller/cadence/
13316
13317 PCI DRIVER FOR FREESCALE LAYERSCAPE
13318 M:      Minghuan Lian <[email protected]>
13319 M:      Mingkai Hu <[email protected]>
13320 M:      Roy Zang <[email protected]>
13321 L:      [email protected]
13322 L:      [email protected]
13323 L:      [email protected]
13324 S:      Maintained
13325 F:      drivers/pci/controller/dwc/*layerscape*
13326
13327 PCI DRIVER FOR GENERIC OF HOSTS
13328 M:      Will Deacon <[email protected]>
13329 L:      [email protected]
13330 L:      [email protected] (moderated for non-subscribers)
13331 S:      Maintained
13332 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13333 F:      drivers/pci/controller/pci-host-common.c
13334 F:      drivers/pci/controller/pci-host-generic.c
13335
13336 PCI DRIVER FOR IMX6
13337 M:      Richard Zhu <[email protected]>
13338 M:      Lucas Stach <[email protected]>
13339 L:      [email protected]
13340 L:      [email protected] (moderated for non-subscribers)
13341 S:      Maintained
13342 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13343 F:      drivers/pci/controller/dwc/*imx6*
13344
13345 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13346 M:      Jonathan Derrick <[email protected]>
13347 L:      [email protected]
13348 S:      Supported
13349 F:      drivers/pci/controller/vmd.c
13350
13351 PCI DRIVER FOR MICROSEMI SWITCHTEC
13352 M:      Kurt Schwemmer <[email protected]>
13353 M:      Logan Gunthorpe <[email protected]>
13354 L:      [email protected]
13355 S:      Maintained
13356 F:      Documentation/ABI/testing/sysfs-class-switchtec
13357 F:      Documentation/driver-api/switchtec.rst
13358 F:      drivers/ntb/hw/mscc/
13359 F:      drivers/pci/switch/switchtec*
13360 F:      include/linux/switchtec.h
13361 F:      include/uapi/linux/switchtec_ioctl.h
13362
13363 PCI DRIVER FOR MOBIVEIL PCIE IP
13364 M:      Karthikeyan Mitran <[email protected]>
13365 M:      Hou Zhiqiang <[email protected]>
13366 L:      [email protected]
13367 S:      Supported
13368 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13369 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13370
13371 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13372 M:      Thomas Petazzoni <[email protected]>
13373 M:      Jason Cooper <[email protected]>
13374 L:      [email protected]
13375 L:      [email protected] (moderated for non-subscribers)
13376 S:      Maintained
13377 F:      drivers/pci/controller/*mvebu*
13378
13379 PCI DRIVER FOR NVIDIA TEGRA
13380 M:      Thierry Reding <[email protected]>
13381 L:      [email protected]
13382 L:      [email protected]
13383 S:      Supported
13384 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13385 F:      drivers/pci/controller/pci-tegra.c
13386
13387 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13388 M:      Hou Zhiqiang <[email protected]>
13389 L:      [email protected]
13390 L:      [email protected]
13391 S:      Maintained
13392 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13393 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13394
13395 PCI DRIVER FOR RENESAS R-CAR
13396 M:      Marek Vasut <[email protected]>
13397 M:      Yoshihiro Shimoda <[email protected]>
13398 L:      [email protected]
13399 L:      [email protected]
13400 S:      Maintained
13401 F:      Documentation/devicetree/bindings/pci/*rcar*
13402 F:      drivers/pci/controller/*rcar*
13403
13404 PCI DRIVER FOR SAMSUNG EXYNOS
13405 M:      Jingoo Han <[email protected]>
13406 L:      [email protected]
13407 L:      [email protected] (moderated for non-subscribers)
13408 L:      [email protected] (moderated for non-subscribers)
13409 S:      Maintained
13410 F:      drivers/pci/controller/dwc/pci-exynos.c
13411
13412 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13413 M:      Jingoo Han <[email protected]>
13414 M:      Gustavo Pimentel <[email protected]>
13415 L:      [email protected]
13416 S:      Maintained
13417 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13418 F:      drivers/pci/controller/dwc/*designware*
13419
13420 PCI DRIVER FOR TI DRA7XX/J721E
13421 M:      Kishon Vijay Abraham I <[email protected]>
13422 L:      [email protected]
13423 L:      [email protected]
13424 L:      [email protected]
13425 S:      Supported
13426 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13427 F:      drivers/pci/controller/cadence/pci-j721e.c
13428 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13429
13430 PCI DRIVER FOR TI KEYSTONE
13431 M:      Murali Karicheri <[email protected]>
13432 L:      [email protected]
13433 L:      [email protected] (moderated for non-subscribers)
13434 S:      Maintained
13435 F:      drivers/pci/controller/dwc/pci-keystone.c
13436
13437 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13438 M:      Linus Walleij <[email protected]>
13439 L:      [email protected]
13440 S:      Maintained
13441 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13442 F:      drivers/pci/controller/pci-v3-semi.c
13443
13444 PCI ENDPOINT SUBSYSTEM
13445 M:      Kishon Vijay Abraham I <[email protected]>
13446 M:      Lorenzo Pieralisi <[email protected]>
13447 L:      [email protected]
13448 S:      Supported
13449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13450 F:      drivers/misc/pci_endpoint_test.c
13451 F:      drivers/pci/endpoint/
13452 F:      tools/pci/
13453
13454 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13455 M:      Russell Currey <[email protected]>
13456 M:      Oliver O'Halloran <[email protected]>
13457 L:      [email protected]
13458 S:      Supported
13459 F:      Documentation/PCI/pci-error-recovery.rst
13460 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13461 F:      arch/powerpc/include/*/eeh*.h
13462 F:      arch/powerpc/kernel/eeh*.c
13463 F:      arch/powerpc/platforms/*/eeh*.c
13464 F:      drivers/pci/pcie/aer.c
13465 F:      drivers/pci/pcie/dpc.c
13466 F:      drivers/pci/pcie/err.c
13467
13468 PCI ERROR RECOVERY
13469 M:      Linas Vepstas <[email protected]>
13470 L:      [email protected]
13471 S:      Supported
13472 F:      Documentation/PCI/pci-error-recovery.rst
13473
13474 PCI MSI DRIVER FOR ALTERA MSI IP
13475 M:      Ley Foon Tan <[email protected]>
13476 L:      [email protected] (moderated for non-subscribers)
13477 L:      [email protected]
13478 S:      Supported
13479 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13480 F:      drivers/pci/controller/pcie-altera-msi.c
13481
13482 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13483 M:      Toan Le <[email protected]>
13484 L:      [email protected]
13485 L:      [email protected]
13486 S:      Maintained
13487 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13488 F:      drivers/pci/controller/pci-xgene-msi.c
13489
13490 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13491 M:      Lorenzo Pieralisi <[email protected]>
13492 R:      Rob Herring <[email protected]>
13493 L:      [email protected]
13494 S:      Supported
13495 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13497 F:      drivers/pci/controller/
13498
13499 PCI SUBSYSTEM
13500 M:      Bjorn Helgaas <[email protected]>
13501 L:      [email protected]
13502 S:      Supported
13503 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13505 F:      Documentation/PCI/
13506 F:      Documentation/devicetree/bindings/pci/
13507 F:      arch/x86/kernel/early-quirks.c
13508 F:      arch/x86/kernel/quirks.c
13509 F:      arch/x86/pci/
13510 F:      drivers/acpi/pci*
13511 F:      drivers/pci/
13512 F:      include/asm-generic/pci*
13513 F:      include/linux/of_pci.h
13514 F:      include/linux/pci*
13515 F:      include/uapi/linux/pci*
13516 F:      lib/pci*
13517
13518 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13519 M:      Jonathan Chocron <[email protected]>
13520 L:      [email protected]
13521 S:      Maintained
13522 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13523 F:      drivers/pci/controller/dwc/pcie-al.c
13524
13525 PCIE DRIVER FOR AMLOGIC MESON
13526 M:      Yue Wang <[email protected]>
13527 L:      [email protected]
13528 L:      [email protected]
13529 S:      Maintained
13530 F:      drivers/pci/controller/dwc/pci-meson.c
13531
13532 PCIE DRIVER FOR AXIS ARTPEC
13533 M:      Jesper Nilsson <[email protected]>
13534 L:      [email protected]
13535 L:      [email protected]
13536 S:      Maintained
13537 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13538 F:      drivers/pci/controller/dwc/*artpec*
13539
13540 PCIE DRIVER FOR CAVIUM THUNDERX
13541 M:      Robert Richter <[email protected]>
13542 L:      [email protected]
13543 L:      [email protected] (moderated for non-subscribers)
13544 S:      Odd Fixes
13545 F:      drivers/pci/controller/pci-thunder-*
13546
13547 PCIE DRIVER FOR HISILICON
13548 M:      Zhou Wang <[email protected]>
13549 L:      [email protected]
13550 S:      Maintained
13551 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13552 F:      drivers/pci/controller/dwc/pcie-hisi.c
13553
13554 PCIE DRIVER FOR HISILICON KIRIN
13555 M:      Xiaowei Song <[email protected]>
13556 M:      Binghui Wang <[email protected]>
13557 L:      [email protected]
13558 S:      Maintained
13559 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13560 F:      drivers/pci/controller/dwc/pcie-kirin.c
13561
13562 PCIE DRIVER FOR HISILICON STB
13563 M:      Shawn Guo <[email protected]>
13564 L:      [email protected]
13565 S:      Maintained
13566 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13567 F:      drivers/pci/controller/dwc/pcie-histb.c
13568
13569 PCIE DRIVER FOR MEDIATEK
13570 M:      Ryder Lee <[email protected]>
13571 L:      [email protected]
13572 L:      [email protected]
13573 S:      Supported
13574 F:      Documentation/devicetree/bindings/pci/mediatek*
13575 F:      drivers/pci/controller/*mediatek*
13576
13577 PCIE DRIVER FOR QUALCOMM MSM
13578 M:      Stanimir Varbanov <[email protected]>
13579 L:      [email protected]
13580 L:      [email protected]
13581 S:      Maintained
13582 F:      drivers/pci/controller/dwc/*qcom*
13583
13584 PCIE DRIVER FOR ROCKCHIP
13585 M:      Shawn Lin <[email protected]>
13586 L:      [email protected]
13587 L:      [email protected]
13588 S:      Maintained
13589 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13590 F:      drivers/pci/controller/pcie-rockchip*
13591
13592 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13593 M:      Kunihiko Hayashi <[email protected]>
13594 L:      [email protected]
13595 S:      Maintained
13596 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13597 F:      drivers/pci/controller/dwc/pcie-uniphier*
13598
13599 PCIE DRIVER FOR ST SPEAR13XX
13600 M:      Pratyush Anand <[email protected]>
13601 L:      [email protected]
13602 S:      Maintained
13603 F:      drivers/pci/controller/dwc/*spear*
13604
13605 PCMCIA SUBSYSTEM
13606 M:      Dominik Brodowski <[email protected]>
13607 S:      Odd Fixes
13608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13609 F:      Documentation/pcmcia/
13610 F:      drivers/pcmcia/
13611 F:      include/pcmcia/
13612 F:      tools/pcmcia/
13613
13614 PCNET32 NETWORK DRIVER
13615 M:      Don Fry <[email protected]>
13616 L:      [email protected]
13617 S:      Maintained
13618 F:      drivers/net/ethernet/amd/pcnet32.c
13619
13620 PCRYPT PARALLEL CRYPTO ENGINE
13621 M:      Steffen Klassert <[email protected]>
13622 L:      [email protected]
13623 S:      Maintained
13624 F:      crypto/pcrypt.c
13625 F:      include/crypto/pcrypt.h
13626
13627 PEAQ WMI HOTKEYS DRIVER
13628 M:      Hans de Goede <[email protected]>
13629 L:      [email protected]
13630 S:      Maintained
13631 F:      drivers/platform/x86/peaq-wmi.c
13632
13633 PENSANDO ETHERNET DRIVERS
13634 M:      Shannon Nelson <[email protected]>
13635 M:      Pensando Drivers <[email protected]>
13636 L:      [email protected]
13637 S:      Supported
13638 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13639 F:      drivers/net/ethernet/pensando/
13640
13641 PER-CPU MEMORY ALLOCATOR
13642 M:      Dennis Zhou <[email protected]>
13643 M:      Tejun Heo <[email protected]>
13644 M:      Christoph Lameter <[email protected]>
13645 S:      Maintained
13646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13647 F:      arch/*/include/asm/percpu.h
13648 F:      include/linux/percpu*.h
13649 F:      mm/percpu*.c
13650
13651 PER-TASK DELAY ACCOUNTING
13652 M:      Balbir Singh <[email protected]>
13653 S:      Maintained
13654 F:      include/linux/delayacct.h
13655 F:      kernel/delayacct.c
13656
13657 PERFORMANCE EVENTS SUBSYSTEM
13658 M:      Peter Zijlstra <[email protected]>
13659 M:      Ingo Molnar <[email protected]>
13660 M:      Arnaldo Carvalho de Melo <[email protected]>
13661 R:      Mark Rutland <[email protected]>
13662 R:      Alexander Shishkin <[email protected]>
13663 R:      Jiri Olsa <[email protected]>
13664 R:      Namhyung Kim <[email protected]>
13665 L:      [email protected]
13666 S:      Supported
13667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13668 F:      arch/*/events/*
13669 F:      arch/*/events/*/*
13670 F:      arch/*/include/asm/perf_event.h
13671 F:      arch/*/kernel/*/*/perf_event*.c
13672 F:      arch/*/kernel/*/perf_event*.c
13673 F:      arch/*/kernel/perf_callchain.c
13674 F:      arch/*/kernel/perf_event*.c
13675 F:      include/linux/perf_event.h
13676 F:      include/uapi/linux/perf_event.h
13677 F:      kernel/events/*
13678 F:      tools/lib/perf/
13679 F:      tools/perf/
13680
13681 PERFORMANCE EVENTS TOOLING ARM64
13682 R:      John Garry <[email protected]>
13683 R:      Will Deacon <[email protected]>
13684 R:      Mathieu Poirier <[email protected]>
13685 R:      Leo Yan <[email protected]>
13686 L:      [email protected] (moderated for non-subscribers)
13687 S:      Supported
13688 F:      tools/build/feature/test-libopencsd.c
13689 F:      tools/perf/arch/arm*/
13690 F:      tools/perf/pmu-events/arch/arm64/
13691 F:      tools/perf/util/arm-spe*
13692 F:      tools/perf/util/cs-etm*
13693
13694 PERSONALITY HANDLING
13695 M:      Christoph Hellwig <[email protected]>
13696 L:      [email protected]
13697 S:      Maintained
13698 F:      include/linux/personality.h
13699 F:      include/uapi/linux/personality.h
13700
13701 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13702 M:      Marcus Folkesson <[email protected]>
13703 L:      [email protected]
13704 S:      Maintained
13705 F:      Documentation/input/devices/pxrc.rst
13706 F:      drivers/input/joystick/pxrc.c
13707
13708 PHONET PROTOCOL
13709 M:      Remi Denis-Courmont <[email protected]>
13710 S:      Supported
13711 F:      Documentation/networking/phonet.rst
13712 F:      include/linux/phonet.h
13713 F:      include/net/phonet/
13714 F:      include/uapi/linux/phonet.h
13715 F:      net/phonet/
13716
13717 PHRAM MTD DRIVER
13718 M:      Joern Engel <[email protected]>
13719 L:      [email protected]
13720 S:      Maintained
13721 F:      drivers/mtd/devices/phram.c
13722
13723 PICOLCD HID DRIVER
13724 M:      Bruno Prémont <[email protected]>
13725 L:      [email protected]
13726 S:      Maintained
13727 F:      drivers/hid/hid-picolcd*
13728
13729 PICOXCELL SUPPORT
13730 M:      Jamie Iles <[email protected]>
13731 L:      [email protected] (moderated for non-subscribers)
13732 S:      Supported
13733 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13734 F:      arch/arm/boot/dts/picoxcell*
13735 F:      arch/arm/mach-picoxcell/
13736 F:      drivers/crypto/picoxcell*
13737
13738 PIDFD API
13739 M:      Christian Brauner <[email protected]>
13740 L:      [email protected]
13741 S:      Maintained
13742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13743 F:      samples/pidfd/
13744 F:      tools/testing/selftests/clone3/
13745 F:      tools/testing/selftests/pid_namespace/
13746 F:      tools/testing/selftests/pidfd/
13747 K:      (?i)pidfd
13748 K:      (?i)clone3
13749 K:      \b(clone_args|kernel_clone_args)\b
13750
13751 PIN CONTROL SUBSYSTEM
13752 M:      Linus Walleij <[email protected]>
13753 L:      [email protected]
13754 S:      Maintained
13755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13756 F:      Documentation/devicetree/bindings/pinctrl/
13757 F:      Documentation/driver-api/pinctl.rst
13758 F:      drivers/pinctrl/
13759 F:      include/linux/pinctrl/
13760
13761 PIN CONTROLLER - FREESCALE
13762 M:      Dong Aisheng <[email protected]>
13763 M:      Fabio Estevam <[email protected]>
13764 M:      Shawn Guo <[email protected]>
13765 M:      Stefan Agner <[email protected]>
13766 R:      Pengutronix Kernel Team <[email protected]>
13767 L:      [email protected]
13768 S:      Maintained
13769 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13770 F:      drivers/pinctrl/freescale/
13771
13772 PIN CONTROLLER - INTEL
13773 M:      Mika Westerberg <[email protected]>
13774 M:      Andy Shevchenko <[email protected]>
13775 S:      Maintained
13776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13777 F:      drivers/pinctrl/intel/
13778
13779 PIN CONTROLLER - MEDIATEK
13780 M:      Sean Wang <[email protected]>
13781 L:      [email protected] (moderated for non-subscribers)
13782 S:      Maintained
13783 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13784 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13785 F:      drivers/pinctrl/mediatek/
13786
13787 PIN CONTROLLER - MICROCHIP AT91
13788 M:      Ludovic Desroches <[email protected]>
13789 L:      [email protected] (moderated for non-subscribers)
13790 L:      [email protected]
13791 S:      Supported
13792 F:      drivers/gpio/gpio-sama5d2-piobu.c
13793 F:      drivers/pinctrl/pinctrl-at91*
13794
13795 PIN CONTROLLER - QUALCOMM
13796 M:      Bjorn Andersson <[email protected]>
13797 L:      [email protected]
13798 S:      Maintained
13799 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13800 F:      drivers/pinctrl/qcom/
13801
13802 PIN CONTROLLER - RENESAS
13803 M:      Geert Uytterhoeven <[email protected]>
13804 L:      [email protected]
13805 S:      Supported
13806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
13807 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
13808 F:      drivers/pinctrl/renesas/
13809
13810 PIN CONTROLLER - SAMSUNG
13811 M:      Tomasz Figa <[email protected]>
13812 M:      Krzysztof Kozlowski <[email protected]>
13813 M:      Sylwester Nawrocki <[email protected]>
13814 L:      [email protected] (moderated for non-subscribers)
13815 L:      [email protected] (moderated for non-subscribers)
13816 S:      Maintained
13817 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13819 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13820 F:      drivers/pinctrl/samsung/
13821 F:      include/dt-bindings/pinctrl/samsung.h
13822
13823 PIN CONTROLLER - SINGLE
13824 M:      Tony Lindgren <[email protected]>
13825 M:      Haojian Zhuang <[email protected]>
13826 L:      [email protected] (moderated for non-subscribers)
13827 L:      [email protected]
13828 S:      Maintained
13829 F:      drivers/pinctrl/pinctrl-single.c
13830
13831 PIN CONTROLLER - ST SPEAR
13832 M:      Viresh Kumar <[email protected]>
13833 L:      [email protected] (moderated for non-subscribers)
13834 S:      Maintained
13835 W:      http://www.st.com/spear
13836 F:      drivers/pinctrl/spear/
13837
13838 PISTACHIO SOC SUPPORT
13839 M:      James Hartley <[email protected]>
13840 L:      [email protected]
13841 S:      Odd Fixes
13842 F:      arch/mips/boot/dts/img/pistachio*
13843 F:      arch/mips/configs/pistachio*_defconfig
13844 F:      arch/mips/include/asm/mach-pistachio/
13845 F:      arch/mips/pistachio/
13846
13847 PKTCDVD DRIVER
13848 M:      [email protected]
13849 S:      Orphan
13850 F:      drivers/block/pktcdvd.c
13851 F:      include/linux/pktcdvd.h
13852 F:      include/uapi/linux/pktcdvd.h
13853
13854 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13855 M:      Tomasz Duszynski <[email protected]>
13856 S:      Maintained
13857 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13858 F:      drivers/iio/chemical/pms7003.c
13859
13860 PLDMFW LIBRARY
13861 M:      Jacob Keller <[email protected]>
13862 S:      Maintained
13863 F:      Documentation/driver-api/pldmfw/
13864 F:      include/linux/pldmfw.h
13865 F:      lib/pldmfw/
13866
13867 PLX DMA DRIVER
13868 M:      Logan Gunthorpe <[email protected]>
13869 S:      Maintained
13870 F:      drivers/dma/plx_dma.c
13871
13872 PM-GRAPH UTILITY
13873 M:      "Todd E Brandt" <[email protected]>
13874 L:      [email protected]
13875 S:      Supported
13876 W:      https://01.org/pm-graph
13877 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13878 T:      git git://github.com/intel/pm-graph
13879 F:      tools/power/pm-graph
13880
13881 PMBUS HARDWARE MONITORING DRIVERS
13882 M:      Guenter Roeck <[email protected]>
13883 L:      [email protected]
13884 S:      Maintained
13885 W:      http://hwmon.wiki.kernel.org/
13886 W:      http://www.roeck-us.net/linux/drivers/
13887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13888 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13889 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13890 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13891 F:      Documentation/hwmon/adm1275.rst
13892 F:      Documentation/hwmon/ibm-cffps.rst
13893 F:      Documentation/hwmon/ir35221.rst
13894 F:      Documentation/hwmon/lm25066.rst
13895 F:      Documentation/hwmon/ltc2978.rst
13896 F:      Documentation/hwmon/ltc3815.rst
13897 F:      Documentation/hwmon/max16064.rst
13898 F:      Documentation/hwmon/max20751.rst
13899 F:      Documentation/hwmon/max31785.rst
13900 F:      Documentation/hwmon/max34440.rst
13901 F:      Documentation/hwmon/max8688.rst
13902 F:      Documentation/hwmon/pmbus-core.rst
13903 F:      Documentation/hwmon/pmbus.rst
13904 F:      Documentation/hwmon/tps40422.rst
13905 F:      Documentation/hwmon/ucd9000.rst
13906 F:      Documentation/hwmon/ucd9200.rst
13907 F:      Documentation/hwmon/zl6100.rst
13908 F:      drivers/hwmon/pmbus/
13909 F:      include/linux/pmbus.h
13910
13911 PMC SIERRA MaxRAID DRIVER
13912 L:      [email protected]
13913 S:      Orphan
13914 W:      http://www.pmc-sierra.com/
13915 F:      drivers/scsi/pmcraid.*
13916
13917 PMC SIERRA PM8001 DRIVER
13918 M:      Jack Wang <[email protected]>
13919 L:      [email protected]
13920 S:      Supported
13921 F:      drivers/scsi/pm8001/
13922
13923 PNI RM3100 IIO DRIVER
13924 M:      Song Qiang <[email protected]>
13925 L:      [email protected]
13926 S:      Maintained
13927 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13928 F:      drivers/iio/magnetometer/rm3100*
13929
13930 PNP SUPPORT
13931 M:      "Rafael J. Wysocki" <[email protected]>
13932 L:      [email protected]
13933 S:      Maintained
13934 F:      drivers/pnp/
13935 F:      include/linux/pnp.h
13936
13937 POSIX CLOCKS and TIMERS
13938 M:      Thomas Gleixner <[email protected]>
13939 L:      [email protected]
13940 S:      Maintained
13941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13942 F:      fs/timerfd.c
13943 F:      include/linux/time_namespace.h
13944 F:      include/linux/timer*
13945 F:      kernel/time/*timer*
13946 F:      kernel/time/namespace.c
13947
13948 POWER MANAGEMENT CORE
13949 M:      "Rafael J. Wysocki" <[email protected]>
13950 L:      [email protected]
13951 S:      Supported
13952 B:      https://bugzilla.kernel.org
13953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13954 F:      drivers/base/power/
13955 F:      drivers/powercap/
13956 F:      include/linux/intel_rapl.h
13957 F:      include/linux/pm.h
13958 F:      include/linux/pm_*
13959 F:      include/linux/powercap.h
13960 F:      kernel/configs/nopm.config
13961
13962 POWER STATE COORDINATION INTERFACE (PSCI)
13963 M:      Mark Rutland <[email protected]>
13964 M:      Lorenzo Pieralisi <[email protected]>
13965 L:      [email protected]
13966 S:      Maintained
13967 F:      drivers/firmware/psci/
13968 F:      include/linux/psci.h
13969 F:      include/uapi/linux/psci.h
13970
13971 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13972 M:      Sebastian Reichel <[email protected]>
13973 L:      [email protected]
13974 S:      Maintained
13975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13976 F:      Documentation/ABI/testing/sysfs-class-power
13977 F:      Documentation/devicetree/bindings/power/supply/
13978 F:      drivers/power/supply/
13979 F:      include/linux/power_supply.h
13980
13981 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13982 M:      Suraj Jitindar Singh <[email protected]>
13983 L:      [email protected]
13984 S:      Maintained
13985 F:      drivers/char/powernv-op-panel.c
13986
13987 PPP OVER ATM (RFC 2364)
13988 M:      Mitchell Blank Jr <[email protected]>
13989 S:      Maintained
13990 F:      include/uapi/linux/atmppp.h
13991 F:      net/atm/pppoatm.c
13992
13993 PPP OVER ETHERNET
13994 M:      Michal Ostrowski <[email protected]>
13995 S:      Maintained
13996 F:      drivers/net/ppp/pppoe.c
13997 F:      drivers/net/ppp/pppox.c
13998
13999 PPP OVER L2TP
14000 M:      James Chapman <[email protected]>
14001 S:      Maintained
14002 F:      include/linux/if_pppol2tp.h
14003 F:      include/uapi/linux/if_pppol2tp.h
14004 F:      net/l2tp/l2tp_ppp.c
14005
14006 PPP PROTOCOL DRIVERS AND COMPRESSORS
14007 M:      Paul Mackerras <[email protected]>
14008 L:      [email protected]
14009 S:      Maintained
14010 F:      drivers/net/ppp/ppp_*
14011
14012 PPS SUPPORT
14013 M:      Rodolfo Giometti <[email protected]>
14014 L:      [email protected] (subscribers-only)
14015 S:      Maintained
14016 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14017 F:      Documentation/ABI/testing/sysfs-pps
14018 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14019 F:      Documentation/driver-api/pps.rst
14020 F:      drivers/pps/
14021 F:      include/linux/pps*.h
14022 F:      include/uapi/linux/pps.h
14023
14024 PPTP DRIVER
14025 M:      Dmitry Kozlov <[email protected]>
14026 L:      [email protected]
14027 S:      Maintained
14028 W:      http://sourceforge.net/projects/accel-pptp
14029 F:      drivers/net/ppp/pptp.c
14030
14031 PRESSURE STALL INFORMATION (PSI)
14032 M:      Johannes Weiner <[email protected]>
14033 S:      Maintained
14034 F:      include/linux/psi*
14035 F:      kernel/sched/psi.c
14036
14037 PRINTK
14038 M:      Petr Mladek <[email protected]>
14039 M:      Sergey Senozhatsky <[email protected]>
14040 R:      Steven Rostedt <[email protected]>
14041 R:      John Ogness <[email protected]>
14042 S:      Maintained
14043 F:      include/linux/printk.h
14044 F:      kernel/printk/
14045
14046 PRISM54 WIRELESS DRIVER
14047 M:      Luis Chamberlain <[email protected]>
14048 L:      [email protected]
14049 S:      Obsolete
14050 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14051 F:      drivers/net/wireless/intersil/prism54/
14052
14053 PROC FILESYSTEM
14054 R:      Alexey Dobriyan <[email protected]>
14055 L:      [email protected]
14056 L:      [email protected]
14057 S:      Maintained
14058 F:      Documentation/filesystems/proc.rst
14059 F:      fs/proc/
14060 F:      include/linux/proc_fs.h
14061 F:      tools/testing/selftests/proc/
14062
14063 PROC SYSCTL
14064 M:      Luis Chamberlain <[email protected]>
14065 M:      Kees Cook <[email protected]>
14066 M:      Iurii Zaikin <[email protected]>
14067 L:      [email protected]
14068 L:      [email protected]
14069 S:      Maintained
14070 F:      fs/proc/proc_sysctl.c
14071 F:      include/linux/sysctl.h
14072 F:      kernel/sysctl-test.c
14073 F:      kernel/sysctl.c
14074 F:      tools/testing/selftests/sysctl/
14075
14076 PS3 NETWORK SUPPORT
14077 M:      Geoff Levand <[email protected]>
14078 L:      [email protected]
14079 L:      [email protected]
14080 S:      Maintained
14081 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14082
14083 PS3 PLATFORM SUPPORT
14084 M:      Geoff Levand <[email protected]>
14085 L:      [email protected]
14086 S:      Maintained
14087 F:      arch/powerpc/boot/ps3*
14088 F:      arch/powerpc/include/asm/lv1call.h
14089 F:      arch/powerpc/include/asm/ps3*.h
14090 F:      arch/powerpc/platforms/ps3/
14091 F:      drivers/*/ps3*
14092 F:      drivers/ps3/
14093 F:      drivers/rtc/rtc-ps3.c
14094 F:      drivers/usb/host/*ps3.c
14095 F:      sound/ppc/snd_ps3*
14096
14097 PS3VRAM DRIVER
14098 M:      Jim Paris <[email protected]>
14099 M:      Geoff Levand <[email protected]>
14100 L:      [email protected]
14101 S:      Maintained
14102 F:      drivers/block/ps3vram.c
14103
14104 PSAMPLE PACKET SAMPLING SUPPORT
14105 M:      Yotam Gigi <[email protected]>
14106 S:      Maintained
14107 F:      include/net/psample.h
14108 F:      include/uapi/linux/psample.h
14109 F:      net/psample
14110
14111 PSTORE FILESYSTEM
14112 M:      Kees Cook <[email protected]>
14113 M:      Anton Vorontsov <[email protected]>
14114 M:      Colin Cross <[email protected]>
14115 M:      Tony Luck <[email protected]>
14116 S:      Maintained
14117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14118 F:      Documentation/admin-guide/ramoops.rst
14119 F:      Documentation/admin-guide/pstore-blk.rst
14120 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14121 F:      drivers/acpi/apei/erst.c
14122 F:      drivers/firmware/efi/efi-pstore.c
14123 F:      fs/pstore/
14124 F:      include/linux/pstore*
14125 K:      \b(pstore|ramoops)
14126
14127 PTP HARDWARE CLOCK SUPPORT
14128 M:      Richard Cochran <[email protected]>
14129 L:      [email protected]
14130 S:      Maintained
14131 W:      http://linuxptp.sourceforge.net/
14132 F:      Documentation/ABI/testing/sysfs-ptp
14133 F:      Documentation/driver-api/ptp.rst
14134 F:      drivers/net/phy/dp83640*
14135 F:      drivers/ptp/*
14136 F:      include/linux/ptp_cl*
14137
14138 PTRACE SUPPORT
14139 M:      Oleg Nesterov <[email protected]>
14140 S:      Maintained
14141 F:      arch/*/*/ptrace*.c
14142 F:      arch/*/include/asm/ptrace*.h
14143 F:      arch/*/ptrace*.c
14144 F:      include/asm-generic/syscall.h
14145 F:      include/linux/ptrace.h
14146 F:      include/linux/regset.h
14147 F:      include/linux/tracehook.h
14148 F:      include/uapi/linux/ptrace.h
14149 F:      include/uapi/linux/ptrace.h
14150 F:      kernel/ptrace.c
14151
14152 PULSE8-CEC DRIVER
14153 M:      Hans Verkuil <[email protected]>
14154 L:      [email protected]
14155 S:      Maintained
14156 T:      git git://linuxtv.org/media_tree.git
14157 F:      Documentation/admin-guide/media/pulse8-cec.rst
14158 F:      drivers/media/cec/usb/pulse8/
14159
14160 PVRUSB2 VIDEO4LINUX DRIVER
14161 M:      Mike Isely <[email protected]>
14162 L:      [email protected]       (subscribers-only)
14163 L:      [email protected]
14164 S:      Maintained
14165 W:      http://www.isely.net/pvrusb2/
14166 T:      git git://linuxtv.org/media_tree.git
14167 F:      Documentation/driver-api/media/drivers/pvrusb2*
14168 F:      drivers/media/usb/pvrusb2/
14169
14170 PWC WEBCAM DRIVER
14171 M:      Hans Verkuil <[email protected]>
14172 L:      [email protected]
14173 S:      Odd Fixes
14174 T:      git git://linuxtv.org/media_tree.git
14175 F:      drivers/media/usb/pwc/*
14176 F:      include/trace/events/pwc.h
14177
14178 PWM FAN DRIVER
14179 M:      Kamil Debski <[email protected]>
14180 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14181 L:      [email protected]
14182 S:      Supported
14183 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14184 F:      Documentation/hwmon/pwm-fan.rst
14185 F:      drivers/hwmon/pwm-fan.c
14186
14187 PWM IR Transmitter
14188 M:      Sean Young <[email protected]>
14189 L:      [email protected]
14190 S:      Maintained
14191 F:      drivers/media/rc/pwm-ir-tx.c
14192
14193 PWM SUBSYSTEM
14194 M:      Thierry Reding <[email protected]>
14195 R:      Uwe Kleine-König <[email protected]>
14196 M:      Lee Jones <[email protected]>
14197 L:      [email protected]
14198 S:      Maintained
14199 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14201 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14202 F:      Documentation/devicetree/bindings/pwm/
14203 F:      Documentation/driver-api/pwm.rst
14204 F:      drivers/gpio/gpio-mvebu.c
14205 F:      drivers/pwm/
14206 F:      drivers/video/backlight/pwm_bl.c
14207 F:      include/linux/pwm.h
14208 F:      include/linux/pwm_backlight.h
14209 K:      pwm_(config|apply_state|ops)
14210
14211 PXA GPIO DRIVER
14212 M:      Robert Jarzmik <[email protected]>
14213 L:      [email protected]
14214 S:      Maintained
14215 F:      drivers/gpio/gpio-pxa.c
14216
14217 PXA MMCI DRIVER
14218 S:      Orphan
14219
14220 PXA RTC DRIVER
14221 M:      Robert Jarzmik <[email protected]>
14222 L:      [email protected]
14223 S:      Maintained
14224
14225 PXA2xx/PXA3xx SUPPORT
14226 M:      Daniel Mack <[email protected]>
14227 M:      Haojian Zhuang <[email protected]>
14228 M:      Robert Jarzmik <[email protected]>
14229 L:      [email protected] (moderated for non-subscribers)
14230 S:      Maintained
14231 T:      git git://github.com/hzhuang1/linux.git
14232 T:      git git://github.com/rjarzmik/linux.git
14233 F:      arch/arm/boot/dts/pxa*
14234 F:      arch/arm/mach-pxa/
14235 F:      drivers/dma/pxa*
14236 F:      drivers/pcmcia/pxa2xx*
14237 F:      drivers/pinctrl/pxa/
14238 F:      drivers/spi/spi-pxa2xx*
14239 F:      drivers/usb/gadget/udc/pxa2*
14240 F:      include/sound/pxa2xx-lib.h
14241 F:      sound/arm/pxa*
14242 F:      sound/soc/pxa/
14243
14244 QAT DRIVER
14245 M:      Giovanni Cabiddu <[email protected]>
14246 L:      [email protected]
14247 S:      Supported
14248 F:      drivers/crypto/qat/
14249
14250 QCOM AUDIO (ASoC) DRIVERS
14251 M:      Patrick Lai <[email protected]>
14252 M:      Banajit Goswami <[email protected]>
14253 L:      [email protected] (moderated for non-subscribers)
14254 S:      Supported
14255 F:      sound/soc/qcom/
14256
14257 QCOM IPA DRIVER
14258 M:      Alex Elder <[email protected]>
14259 L:      [email protected]
14260 S:      Supported
14261 F:      drivers/net/ipa/
14262
14263 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14264 M:      Gabriel Somlo <[email protected]>
14265 M:      "Michael S. Tsirkin" <[email protected]>
14266 L:      [email protected]
14267 S:      Maintained
14268 F:      drivers/firmware/qemu_fw_cfg.c
14269 F:      include/uapi/linux/qemu_fw_cfg.h
14270
14271 QIB DRIVER
14272 M:      Dennis Dalessandro <[email protected]>
14273 M:      Mike Marciniszyn <[email protected]>
14274 L:      [email protected]
14275 S:      Supported
14276 F:      drivers/infiniband/hw/qib/
14277
14278 QLOGIC QL41xxx FCOE DRIVER
14279 M:      Saurav Kashyap <[email protected]>
14280 M:      Javed Hasan <[email protected]>
14281 M:      [email protected]
14282 L:      [email protected]
14283 S:      Supported
14284 F:      drivers/scsi/qedf/
14285
14286 QLOGIC QL41xxx ISCSI DRIVER
14287 M:      Nilesh Javali <[email protected]>
14288 M:      Manish Rangankar <[email protected]>
14289 M:      [email protected]
14290 L:      [email protected]
14291 S:      Supported
14292 F:      drivers/scsi/qedi/
14293
14294 QLOGIC QL4xxx ETHERNET DRIVER
14295 M:      Ariel Elior <[email protected]>
14296 M:      [email protected]
14297 L:      [email protected]
14298 S:      Supported
14299 F:      drivers/net/ethernet/qlogic/qed/
14300 F:      drivers/net/ethernet/qlogic/qede/
14301 F:      include/linux/qed/
14302
14303 QLOGIC QL4xxx RDMA DRIVER
14304 M:      Michal Kalderon <[email protected]>
14305 M:      Ariel Elior <[email protected]>
14306 L:      [email protected]
14307 S:      Supported
14308 F:      drivers/infiniband/hw/qedr/
14309 F:      include/uapi/rdma/qedr-abi.h
14310
14311 QLOGIC QLA1280 SCSI DRIVER
14312 M:      Michael Reed <[email protected]>
14313 L:      [email protected]
14314 S:      Maintained
14315 F:      drivers/scsi/qla1280.[ch]
14316
14317 QLOGIC QLA2XXX FC-SCSI DRIVER
14318 M:      Nilesh Javali <[email protected]>
14319 M:      [email protected]
14320 L:      [email protected]
14321 S:      Supported
14322 F:      drivers/scsi/qla2xxx/
14323
14324 QLOGIC QLA3XXX NETWORK DRIVER
14325 M:      [email protected]
14326 L:      [email protected]
14327 S:      Supported
14328 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14329
14330 QLOGIC QLA4XXX iSCSI DRIVER
14331 M:      Nilesh Javali <[email protected]>
14332 M:      Manish Rangankar <[email protected]>
14333 M:      [email protected]
14334 L:      [email protected]
14335 S:      Supported
14336 F:      drivers/scsi/qla4xxx/
14337
14338 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14339 M:      Shahed Shaikh <[email protected]>
14340 M:      Manish Chopra <[email protected]>
14341 M:      [email protected]
14342 L:      [email protected]
14343 S:      Supported
14344 F:      drivers/net/ethernet/qlogic/qlcnic/
14345
14346 QLOGIC QLGE 10Gb ETHERNET DRIVER
14347 M:      Manish Chopra <[email protected]>
14348 M:      [email protected]
14349 L:      [email protected]
14350 S:      Supported
14351 F:      drivers/staging/qlge/
14352
14353 QM1D1B0004 MEDIA DRIVER
14354 M:      Akihiro Tsukada <[email protected]>
14355 L:      [email protected]
14356 S:      Odd Fixes
14357 F:      drivers/media/tuners/qm1d1b0004*
14358
14359 QM1D1C0042 MEDIA DRIVER
14360 M:      Akihiro Tsukada <[email protected]>
14361 L:      [email protected]
14362 S:      Odd Fixes
14363 F:      drivers/media/tuners/qm1d1c0042*
14364
14365 QNX4 FILESYSTEM
14366 M:      Anders Larsen <[email protected]>
14367 S:      Maintained
14368 W:      http://www.alarsen.net/linux/qnx4fs/
14369 F:      fs/qnx4/
14370 F:      include/uapi/linux/qnx4_fs.h
14371 F:      include/uapi/linux/qnxtypes.h
14372
14373 QORIQ DPAA2 FSL-MC BUS DRIVER
14374 M:      Stuart Yoder <[email protected]>
14375 M:      Laurentiu Tudor <[email protected]>
14376 L:      [email protected]
14377 S:      Maintained
14378 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14379 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14380 F:      drivers/bus/fsl-mc/
14381
14382 QT1010 MEDIA DRIVER
14383 M:      Antti Palosaari <[email protected]>
14384 L:      [email protected]
14385 S:      Maintained
14386 W:      https://linuxtv.org
14387 W:      http://palosaari.fi/linux/
14388 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14389 T:      git git://linuxtv.org/anttip/media_tree.git
14390 F:      drivers/media/tuners/qt1010*
14391
14392 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14393 M:      Kalle Valo <[email protected]>
14394 L:      [email protected]
14395 S:      Supported
14396 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14398 F:      drivers/net/wireless/ath/ath10k/
14399
14400 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14401 M:      Kalle Valo <[email protected]>
14402 L:      [email protected]
14403 S:      Supported
14404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14405 F:      drivers/net/wireless/ath/ath11k/
14406
14407 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14408 M:      QCA ath9k Development <[email protected]>
14409 L:      [email protected]
14410 S:      Supported
14411 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14412 F:      drivers/net/wireless/ath/ath9k/
14413
14414 QUALCOMM CAMERA SUBSYSTEM DRIVER
14415 M:      Todor Tomov <[email protected]>
14416 L:      [email protected]
14417 S:      Maintained
14418 F:      Documentation/admin-guide/media/qcom_camss.rst
14419 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14420 F:      drivers/media/platform/qcom/camss/
14421
14422 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14423 M:      Niklas Cassel <[email protected]>
14424 L:      [email protected]
14425 L:      [email protected]
14426 S:      Maintained
14427 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14428 F:      drivers/power/avs/qcom-cpr.c
14429
14430 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14431 M:      Ilia Lin <[email protected]>
14432 L:      [email protected]
14433 S:      Maintained
14434 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14435 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14436
14437 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14438 M:      Timur Tabi <[email protected]>
14439 L:      [email protected]
14440 S:      Maintained
14441 F:      drivers/net/ethernet/qualcomm/emac/
14442
14443 QUALCOMM ETHQOS ETHERNET DRIVER
14444 M:      Vinod Koul <[email protected]>
14445 L:      [email protected]
14446 S:      Maintained
14447 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14448 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14449
14450 QUALCOMM GENERIC INTERFACE I2C DRIVER
14451 M:      Akash Asthana <[email protected]>
14452 M:      Mukesh Savaliya <[email protected]>
14453 L:      [email protected]
14454 L:      [email protected]
14455 S:      Supported
14456 F:      drivers/i2c/busses/i2c-qcom-geni.c
14457
14458 QUALCOMM HEXAGON ARCHITECTURE
14459 M:      Brian Cain <[email protected]>
14460 L:      [email protected]
14461 S:      Supported
14462 F:      arch/hexagon/
14463
14464 QUALCOMM HIDMA DRIVER
14465 M:      Sinan Kaya <[email protected]>
14466 L:      [email protected]
14467 L:      [email protected]
14468 L:      [email protected]
14469 S:      Supported
14470 F:      drivers/dma/qcom/hidma*
14471
14472 QUALCOMM I2C CCI DRIVER
14473 M:      Loic Poulain <[email protected]>
14474 M:      Robert Foss <[email protected]>
14475 L:      [email protected]
14476 L:      [email protected]
14477 S:      Maintained
14478 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14479 F:      drivers/i2c/busses/i2c-qcom-cci.c
14480
14481 QUALCOMM IOMMU
14482 M:      Rob Clark <[email protected]>
14483 L:      [email protected]
14484 L:      [email protected]
14485 S:      Maintained
14486 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14487
14488 QUALCOMM IPCC MAILBOX DRIVER
14489 M:      Manivannan Sadhasivam <[email protected]>
14490 L:      [email protected]
14491 S:      Supported
14492 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14493 F:      drivers/mailbox/qcom-ipcc.c
14494 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14495
14496 QUALCOMM RMNET DRIVER
14497 M:      Subash Abhinov Kasiviswanathan <[email protected]>
14498 M:      Sean Tranchetti <[email protected]>
14499 L:      [email protected]
14500 S:      Maintained
14501 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14502 F:      drivers/net/ethernet/qualcomm/rmnet/
14503 F:      include/linux/if_rmnet.h
14504
14505 QUALCOMM TSENS THERMAL DRIVER
14506 M:      Amit Kucheria <[email protected]>
14507 L:      [email protected]
14508 L:      [email protected]
14509 S:      Maintained
14510 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14511 F:      drivers/thermal/qcom/
14512
14513 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14514 M:      Stanimir Varbanov <[email protected]>
14515 L:      [email protected]
14516 L:      [email protected]
14517 S:      Maintained
14518 T:      git git://linuxtv.org/media_tree.git
14519 F:      Documentation/devicetree/bindings/media/*venus*
14520 F:      drivers/media/platform/qcom/venus/
14521
14522 QUALCOMM WCN36XX WIRELESS DRIVER
14523 M:      Kalle Valo <[email protected]>
14524 L:      [email protected]
14525 S:      Supported
14526 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14527 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14528 F:      drivers/net/wireless/ath/wcn36xx/
14529
14530 QUANTENNA QTNFMAC WIRELESS DRIVER
14531 M:      Igor Mitsyanko <[email protected]>
14532 R:      Sergey Matyukevich <[email protected]>
14533 L:      [email protected]
14534 S:      Maintained
14535 F:      drivers/net/wireless/quantenna
14536
14537 RADEON and AMDGPU DRM DRIVERS
14538 M:      Alex Deucher <[email protected]>
14539 M:      Christian König <[email protected]>
14540 L:      [email protected]
14541 S:      Supported
14542 T:      git git://people.freedesktop.org/~agd5f/linux
14543 F:      drivers/gpu/drm/amd/
14544 F:      drivers/gpu/drm/radeon/
14545 F:      include/uapi/drm/amdgpu_drm.h
14546 F:      include/uapi/drm/radeon_drm.h
14547
14548 RADEON FRAMEBUFFER DISPLAY DRIVER
14549 M:      Benjamin Herrenschmidt <[email protected]>
14550 L:      [email protected]
14551 S:      Maintained
14552 F:      drivers/video/fbdev/aty/radeon*
14553 F:      include/uapi/linux/radeonfb.h
14554
14555 RADIOSHARK RADIO DRIVER
14556 M:      Hans Verkuil <[email protected]>
14557 L:      [email protected]
14558 S:      Maintained
14559 T:      git git://linuxtv.org/media_tree.git
14560 F:      drivers/media/radio/radio-shark.c
14561
14562 RADIOSHARK2 RADIO DRIVER
14563 M:      Hans Verkuil <[email protected]>
14564 L:      [email protected]
14565 S:      Maintained
14566 T:      git git://linuxtv.org/media_tree.git
14567 F:      drivers/media/radio/radio-shark2.c
14568 F:      drivers/media/radio/radio-tea5777.c
14569
14570 RADOS BLOCK DEVICE (RBD)
14571 M:      Ilya Dryomov <[email protected]>
14572 R:      Dongsheng Yang <[email protected]>
14573 L:      [email protected]
14574 S:      Supported
14575 W:      http://ceph.com/
14576 T:      git git://github.com/ceph/ceph-client.git
14577 F:      Documentation/ABI/testing/sysfs-bus-rbd
14578 F:      drivers/block/rbd.c
14579 F:      drivers/block/rbd_types.h
14580
14581 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14582 M:      Paul Mackerras <[email protected]>
14583 L:      [email protected]
14584 S:      Maintained
14585 F:      drivers/video/fbdev/aty/aty128fb.c
14586
14587 RAINSHADOW-CEC DRIVER
14588 M:      Hans Verkuil <[email protected]>
14589 L:      [email protected]
14590 S:      Maintained
14591 T:      git git://linuxtv.org/media_tree.git
14592 F:      drivers/media/cec/usb/rainshadow/
14593
14594 RALINK MIPS ARCHITECTURE
14595 M:      John Crispin <[email protected]>
14596 L:      [email protected]
14597 S:      Maintained
14598 F:      arch/mips/ralink
14599
14600 RALINK RT2X00 WIRELESS LAN DRIVER
14601 M:      Stanislaw Gruszka <[email protected]>
14602 M:      Helmut Schaa <[email protected]>
14603 L:      [email protected]
14604 S:      Maintained
14605 F:      drivers/net/wireless/ralink/rt2x00/
14606
14607 RAMDISK RAM BLOCK DEVICE DRIVER
14608 M:      Jens Axboe <[email protected]>
14609 S:      Maintained
14610 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14611 F:      drivers/block/brd.c
14612
14613 RANCHU VIRTUAL BOARD FOR MIPS
14614 M:      Miodrag Dinic <[email protected]>
14615 L:      [email protected]
14616 S:      Supported
14617 F:      arch/mips/configs/generic/board-ranchu.config
14618 F:      arch/mips/generic/board-ranchu.c
14619
14620 RANDOM NUMBER DRIVER
14621 M:      "Theodore Ts'o" <[email protected]>
14622 S:      Maintained
14623 F:      drivers/char/random.c
14624
14625 RAPIDIO SUBSYSTEM
14626 M:      Matt Porter <[email protected]>
14627 M:      Alexandre Bounine <[email protected]>
14628 S:      Maintained
14629 F:      drivers/rapidio/
14630
14631 RAS INFRASTRUCTURE
14632 M:      Tony Luck <[email protected]>
14633 M:      Borislav Petkov <[email protected]>
14634 L:      [email protected]
14635 S:      Maintained
14636 F:      Documentation/admin-guide/ras.rst
14637 F:      drivers/ras/
14638 F:      include/linux/ras.h
14639 F:      include/ras/ras_event.h
14640
14641 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14642 L:      [email protected]
14643 S:      Orphan
14644 F:      drivers/net/wireless/ray*
14645
14646 RC-CORE / LIRC FRAMEWORK
14647 M:      Sean Young <[email protected]>
14648 L:      [email protected]
14649 S:      Maintained
14650 W:      http://linuxtv.org
14651 T:      git git://linuxtv.org/media_tree.git
14652 F:      Documentation/driver-api/media/rc-core.rst
14653 F:      Documentation/userspace-api/media/rc/
14654 F:      drivers/media/rc/
14655 F:      include/media/rc-map.h
14656 F:      include/media/rc-core.h
14657 F:      include/uapi/linux/lirc.h
14658
14659 RCMM REMOTE CONTROLS DECODER
14660 M:      Patrick Lerda <[email protected]>
14661 S:      Maintained
14662 F:      drivers/media/rc/ir-rcmm-decoder.c
14663
14664 RCUTORTURE TEST FRAMEWORK
14665 M:      "Paul E. McKenney" <[email protected]>
14666 M:      Josh Triplett <[email protected]>
14667 R:      Steven Rostedt <[email protected]>
14668 R:      Mathieu Desnoyers <[email protected]>
14669 R:      Lai Jiangshan <[email protected]>
14670 L:      [email protected]
14671 S:      Supported
14672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14673 F:      tools/testing/selftests/rcutorture
14674
14675 RDACM20 Camera Sensor
14676 M:      Jacopo Mondi <[email protected]>
14677 M:      Kieran Bingham <[email protected]>
14678 M:      Laurent Pinchart <[email protected]>
14679 M:      Niklas Söderlund <[email protected]>
14680 L:      [email protected]
14681 S:      Maintained
14682 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14683 F:      drivers/media/i2c/max9271.c
14684 F:      drivers/media/i2c/max9271.h
14685 F:      drivers/media/i2c/rdacm20.c
14686
14687 RDC R-321X SoC
14688 M:      Florian Fainelli <[email protected]>
14689 S:      Maintained
14690
14691 RDC R6040 FAST ETHERNET DRIVER
14692 M:      Florian Fainelli <[email protected]>
14693 L:      [email protected]
14694 S:      Maintained
14695 F:      drivers/net/ethernet/rdc/r6040.c
14696
14697 RDMAVT - RDMA verbs software
14698 M:      Dennis Dalessandro <[email protected]>
14699 M:      Mike Marciniszyn <[email protected]>
14700 L:      [email protected]
14701 S:      Supported
14702 F:      drivers/infiniband/sw/rdmavt
14703
14704 RDS - RELIABLE DATAGRAM SOCKETS
14705 M:      Santosh Shilimkar <[email protected]>
14706 L:      [email protected]
14707 L:      [email protected]
14708 L:      [email protected] (moderated for non-subscribers)
14709 S:      Supported
14710 W:      https://oss.oracle.com/projects/rds/
14711 F:      Documentation/networking/rds.rst
14712 F:      net/rds/
14713
14714 RDT - RESOURCE ALLOCATION
14715 M:      Fenghua Yu <[email protected]>
14716 M:      Reinette Chatre <[email protected]>
14717 L:      [email protected]
14718 S:      Supported
14719 F:      Documentation/x86/resctrl*
14720 F:      arch/x86/include/asm/resctrl.h
14721 F:      arch/x86/kernel/cpu/resctrl/
14722 F:      tools/testing/selftests/resctrl/
14723
14724 READ-COPY UPDATE (RCU)
14725 M:      "Paul E. McKenney" <[email protected]>
14726 M:      Josh Triplett <[email protected]>
14727 R:      Steven Rostedt <[email protected]>
14728 R:      Mathieu Desnoyers <[email protected]>
14729 R:      Lai Jiangshan <[email protected]>
14730 R:      Joel Fernandes <[email protected]>
14731 L:      [email protected]
14732 S:      Supported
14733 W:      http://www.rdrop.com/users/paulmck/RCU/
14734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14735 F:      Documentation/RCU/
14736 F:      include/linux/rcu*
14737 F:      kernel/rcu/
14738 X:      Documentation/RCU/torture.rst
14739 X:      include/linux/srcu*.h
14740 X:      kernel/rcu/srcu*.c
14741
14742 REAL TIME CLOCK (RTC) SUBSYSTEM
14743 M:      Alessandro Zummo <[email protected]>
14744 M:      Alexandre Belloni <[email protected]>
14745 L:      [email protected]
14746 S:      Maintained
14747 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14749 F:      Documentation/admin-guide/rtc.rst
14750 F:      Documentation/devicetree/bindings/rtc/
14751 F:      drivers/rtc/
14752 F:      include/linux/platform_data/rtc-*
14753 F:      include/linux/rtc.h
14754 F:      include/linux/rtc/
14755 F:      include/uapi/linux/rtc.h
14756 F:      tools/testing/selftests/rtc/
14757
14758 REALTEK AUDIO CODECS
14759 M:      Oder Chiou <[email protected]>
14760 S:      Maintained
14761 F:      include/sound/rt*.h
14762 F:      sound/soc/codecs/rt*
14763
14764 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14765 M:      Linus Walleij <[email protected]>
14766 S:      Maintained
14767 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14768 F:      drivers/net/dsa/realtek-smi*
14769 F:      drivers/net/dsa/rtl83*
14770
14771 REALTEK WIRELESS DRIVER (rtlwifi family)
14772 M:      Ping-Ke Shih <[email protected]>
14773 L:      [email protected]
14774 S:      Maintained
14775 W:      https://wireless.wiki.kernel.org/
14776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14777 F:      drivers/net/wireless/realtek/rtlwifi/
14778
14779 REALTEK WIRELESS DRIVER (rtw88)
14780 M:      Yan-Hsuan Chuang <[email protected]>
14781 L:      [email protected]
14782 S:      Maintained
14783 F:      drivers/net/wireless/realtek/rtw88/
14784
14785 REDPINE WIRELESS DRIVER
14786 M:      Amitkumar Karwar <[email protected]>
14787 M:      Siva Rebbagondla <[email protected]>
14788 L:      [email protected]
14789 S:      Maintained
14790 F:      drivers/net/wireless/rsi/
14791
14792 REGISTER MAP ABSTRACTION
14793 M:      Mark Brown <[email protected]>
14794 L:      [email protected]
14795 S:      Supported
14796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14797 F:      Documentation/devicetree/bindings/regmap/
14798 F:      drivers/base/regmap/
14799 F:      include/linux/regmap.h
14800
14801 REISERFS FILE SYSTEM
14802 L:      [email protected]
14803 S:      Supported
14804 F:      fs/reiserfs/
14805
14806 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14807 M:      Ohad Ben-Cohen <[email protected]>
14808 M:      Bjorn Andersson <[email protected]>
14809 L:      [email protected]
14810 S:      Maintained
14811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14812 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14813 F:      Documentation/devicetree/bindings/remoteproc/
14814 F:      Documentation/staging/remoteproc.rst
14815 F:      drivers/remoteproc/
14816 F:      include/linux/remoteproc.h
14817 F:      include/linux/remoteproc/
14818
14819 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14820 M:      Ohad Ben-Cohen <[email protected]>
14821 M:      Bjorn Andersson <[email protected]>
14822 L:      [email protected]
14823 S:      Maintained
14824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14825 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14826 F:      Documentation/staging/rpmsg.rst
14827 F:      drivers/rpmsg/
14828 F:      include/linux/rpmsg.h
14829 F:      include/linux/rpmsg/
14830 F:      include/uapi/linux/rpmsg.h
14831 F:      samples/rpmsg/
14832
14833 RENESAS CLOCK DRIVERS
14834 M:      Geert Uytterhoeven <[email protected]>
14835 L:      [email protected]
14836 S:      Supported
14837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14838 F:      Documentation/devicetree/bindings/clock/renesas,*
14839 F:      drivers/clk/renesas/
14840
14841 RENESAS EMEV2 I2C DRIVER
14842 M:      Wolfram Sang <[email protected]>
14843 S:      Supported
14844 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14845 F:      drivers/i2c/busses/i2c-emev2.c
14846
14847 RENESAS ETHERNET DRIVERS
14848 R:      Sergei Shtylyov <[email protected]>
14849 L:      [email protected]
14850 L:      [email protected]
14851 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14852 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14853 F:      drivers/net/ethernet/renesas/
14854 F:      include/linux/sh_eth.h
14855
14856 RENESAS R-CAR GYROADC DRIVER
14857 M:      Marek Vasut <[email protected]>
14858 L:      [email protected]
14859 S:      Supported
14860 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14861 F:      drivers/iio/adc/rcar-gyroadc.c
14862
14863 RENESAS R-CAR I2C DRIVERS
14864 M:      Wolfram Sang <[email protected]>
14865 S:      Supported
14866 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14867 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14868 F:      drivers/i2c/busses/i2c-rcar.c
14869 F:      drivers/i2c/busses/i2c-sh_mobile.c
14870
14871 RENESAS R-CAR THERMAL DRIVERS
14872 M:      Niklas Söderlund <[email protected]>
14873 L:      [email protected]
14874 S:      Supported
14875 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
14876 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
14877 F:      drivers/thermal/rcar_gen3_thermal.c
14878 F:      drivers/thermal/rcar_thermal.c
14879
14880 RENESAS RIIC DRIVER
14881 M:      Chris Brandt <[email protected]>
14882 S:      Supported
14883 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14884 F:      drivers/i2c/busses/i2c-riic.c
14885
14886 RENESAS USB PHY DRIVER
14887 M:      Yoshihiro Shimoda <[email protected]>
14888 L:      [email protected]
14889 S:      Maintained
14890 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14891
14892 RESET CONTROLLER FRAMEWORK
14893 M:      Philipp Zabel <[email protected]>
14894 S:      Maintained
14895 T:      git git://git.pengutronix.de/git/pza/linux
14896 F:      Documentation/devicetree/bindings/reset/
14897 F:      drivers/reset/
14898 F:      include/dt-bindings/reset/
14899 F:      include/linux/reset-controller.h
14900 F:      include/linux/reset.h
14901 F:      include/linux/reset/
14902 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14903
14904 RESTARTABLE SEQUENCES SUPPORT
14905 M:      Mathieu Desnoyers <[email protected]>
14906 M:      Peter Zijlstra <[email protected]>
14907 M:      "Paul E. McKenney" <[email protected]>
14908 M:      Boqun Feng <[email protected]>
14909 L:      [email protected]
14910 S:      Supported
14911 F:      include/trace/events/rseq.h
14912 F:      include/uapi/linux/rseq.h
14913 F:      kernel/rseq.c
14914 F:      tools/testing/selftests/rseq/
14915
14916 RFKILL
14917 M:      Johannes Berg <[email protected]>
14918 L:      [email protected]
14919 S:      Maintained
14920 W:      https://wireless.wiki.kernel.org/
14921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14923 F:      Documentation/ABI/stable/sysfs-class-rfkill
14924 F:      Documentation/driver-api/rfkill.rst
14925 F:      include/linux/rfkill.h
14926 F:      include/uapi/linux/rfkill.h
14927 F:      net/rfkill/
14928
14929 RHASHTABLE
14930 M:      Thomas Graf <[email protected]>
14931 M:      Herbert Xu <[email protected]>
14932 L:      [email protected]
14933 S:      Maintained
14934 F:      include/linux/rhashtable-types.h
14935 F:      include/linux/rhashtable.h
14936 F:      lib/rhashtable.c
14937 F:      lib/test_rhashtable.c
14938
14939 RICOH R5C592 MEMORYSTICK DRIVER
14940 M:      Maxim Levitsky <[email protected]>
14941 S:      Maintained
14942 F:      drivers/memstick/host/r592.*
14943
14944 RICOH SMARTMEDIA/XD DRIVER
14945 M:      Maxim Levitsky <[email protected]>
14946 S:      Maintained
14947 F:      drivers/mtd/nand/raw/r852.c
14948 F:      drivers/mtd/nand/raw/r852.h
14949
14950 RISC-V ARCHITECTURE
14951 M:      Paul Walmsley <[email protected]>
14952 M:      Palmer Dabbelt <[email protected]>
14953 M:      Albert Ou <[email protected]>
14954 L:      [email protected]
14955 S:      Supported
14956 P:      Documentation/riscv/patch-acceptance.rst
14957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14958 F:      arch/riscv/
14959 N:      riscv
14960 K:      riscv
14961
14962 RNBD BLOCK DRIVERS
14963 M:      Danil Kipnis <[email protected]>
14964 M:      Jack Wang <[email protected]>
14965 L:      [email protected]
14966 S:      Maintained
14967 F:      drivers/block/rnbd/
14968
14969 ROCCAT DRIVERS
14970 M:      Stefan Achatz <[email protected]>
14971 S:      Maintained
14972 W:      http://sourceforge.net/projects/roccat/
14973 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14974 F:      drivers/hid/hid-roccat*
14975 F:      include/linux/hid-roccat*
14976
14977 ROCKCHIP ISP V1 DRIVER
14978 M:      Helen Koike <[email protected]>
14979 M:      Dafna Hirschfeld <[email protected]>
14980 L:      [email protected]
14981 S:      Maintained
14982 F:      Documentation/admin-guide/media/rkisp1.rst
14983 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
14984 F:      drivers/staging/media/rkisp1/
14985
14986 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14987 M:      Jacob Chen <[email protected]>
14988 M:      Ezequiel Garcia <[email protected]>
14989 L:      [email protected]
14990 L:      [email protected]
14991 S:      Maintained
14992 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
14993 F:      drivers/media/platform/rockchip/rga/
14994
14995 ROCKCHIP VIDEO DECODER DRIVER
14996 M:      Ezequiel Garcia <[email protected]>
14997 L:      [email protected]
14998 L:      [email protected]
14999 S:      Maintained
15000 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15001 F:      drivers/staging/media/rkvdec/
15002
15003 ROCKER DRIVER
15004 M:      Jiri Pirko <[email protected]>
15005 L:      [email protected]
15006 S:      Supported
15007 F:      drivers/net/ethernet/rocker/
15008
15009 ROCKETPORT DRIVER
15010 S:      Maintained
15011 W:      http://www.comtrol.com
15012 F:      Documentation/driver-api/serial/rocket.rst
15013 F:      drivers/tty/rocket*
15014
15015 ROCKETPORT EXPRESS/INFINITY DRIVER
15016 M:      Kevin Cernekee <[email protected]>
15017 L:      [email protected]
15018 S:      Odd Fixes
15019 F:      drivers/tty/serial/rp2.*
15020
15021 ROHM BD99954 CHARGER IC
15022 R:      Matti Vaittinen <[email protected]>
15023 L:      [email protected]
15024 S:      Supported
15025 F:      drivers/power/supply/bd99954-charger.c
15026 F:      drivers/power/supply/bd99954-charger.h
15027
15028 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15029 M:      Tomasz Duszynski <[email protected]>
15030 S:      Maintained
15031 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15032 F:      drivers/iio/light/bh1750.c
15033
15034 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15035 M:      Marek Vasut <[email protected]>
15036 L:      [email protected]
15037 L:      [email protected]
15038 S:      Supported
15039 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15040 F:      drivers/gpio/gpio-bd9571mwv.c
15041 F:      drivers/mfd/bd9571mwv.c
15042 F:      drivers/regulator/bd9571mwv-regulator.c
15043 F:      include/linux/mfd/bd9571mwv.h
15044
15045 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15046 R:      Matti Vaittinen <[email protected]>
15047 L:      [email protected]
15048 S:      Supported
15049 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15050 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15051 F:      drivers/clk/clk-bd718x7.c
15052 F:      drivers/gpio/gpio-bd70528.c
15053 F:      drivers/gpio/gpio-bd71828.c
15054 F:      drivers/mfd/rohm-bd70528.c
15055 F:      drivers/mfd/rohm-bd71828.c
15056 F:      drivers/mfd/rohm-bd718x7.c
15057 F:      drivers/power/supply/bd70528-charger.c
15058 F:      drivers/regulator/bd70528-regulator.c
15059 F:      drivers/regulator/bd71828-regulator.c
15060 F:      drivers/regulator/bd718x7-regulator.c
15061 F:      drivers/regulator/rohm-regulator.c
15062 F:      drivers/rtc/rtc-bd70528.c
15063 F:      drivers/watchdog/bd70528_wdt.c
15064 F:      include/linux/mfd/rohm-bd70528.h
15065 F:      include/linux/mfd/rohm-bd71828.h
15066 F:      include/linux/mfd/rohm-bd718x7.h
15067 F:      include/linux/mfd/rohm-generic.h
15068 F:      include/linux/mfd/rohm-shared.h
15069
15070 ROSE NETWORK LAYER
15071 M:      Ralf Baechle <[email protected]>
15072 L:      [email protected]
15073 S:      Maintained
15074 W:      http://www.linux-ax25.org/
15075 F:      include/net/rose.h
15076 F:      include/uapi/linux/rose.h
15077 F:      net/rose/
15078
15079 ROTATION DRIVER FOR ALLWINNER A83T
15080 M:      Jernej Skrabec <[email protected]>
15081 L:      [email protected]
15082 S:      Maintained
15083 T:      git git://linuxtv.org/media_tree.git
15084 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15085 F:      drivers/media/platform/sunxi/sun8i-rotate/
15086
15087 RTL2830 MEDIA DRIVER
15088 M:      Antti Palosaari <[email protected]>
15089 L:      [email protected]
15090 S:      Maintained
15091 W:      https://linuxtv.org
15092 W:      http://palosaari.fi/linux/
15093 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15094 T:      git git://linuxtv.org/anttip/media_tree.git
15095 F:      drivers/media/dvb-frontends/rtl2830*
15096
15097 RTL2832 MEDIA DRIVER
15098 M:      Antti Palosaari <[email protected]>
15099 L:      [email protected]
15100 S:      Maintained
15101 W:      https://linuxtv.org
15102 W:      http://palosaari.fi/linux/
15103 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15104 T:      git git://linuxtv.org/anttip/media_tree.git
15105 F:      drivers/media/dvb-frontends/rtl2832*
15106
15107 RTL2832_SDR MEDIA DRIVER
15108 M:      Antti Palosaari <[email protected]>
15109 L:      [email protected]
15110 S:      Maintained
15111 W:      https://linuxtv.org
15112 W:      http://palosaari.fi/linux/
15113 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15114 T:      git git://linuxtv.org/anttip/media_tree.git
15115 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15116
15117 RTL8180 WIRELESS DRIVER
15118 L:      [email protected]
15119 S:      Orphan
15120 W:      https://wireless.wiki.kernel.org/
15121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15122 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15123
15124 RTL8187 WIRELESS DRIVER
15125 M:      Herton Ronaldo Krzesinski <[email protected]>
15126 M:      Hin-Tak Leung <[email protected]>
15127 M:      Larry Finger <[email protected]>
15128 L:      [email protected]
15129 S:      Maintained
15130 W:      https://wireless.wiki.kernel.org/
15131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15132 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15133
15134 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15135 M:      Jes Sorensen <[email protected]>
15136 L:      [email protected]
15137 S:      Maintained
15138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15139 F:      drivers/net/wireless/realtek/rtl8xxxu/
15140
15141 RTRS TRANSPORT DRIVERS
15142 M:      Danil Kipnis <[email protected]>
15143 M:      Jack Wang <[email protected]>
15144 L:      [email protected]
15145 S:      Maintained
15146 F:      drivers/infiniband/ulp/rtrs/
15147
15148 RXRPC SOCKETS (AF_RXRPC)
15149 M:      David Howells <[email protected]>
15150 L:      [email protected]
15151 S:      Supported
15152 W:      https://www.infradead.org/~dhowells/kafs/
15153 F:      Documentation/networking/rxrpc.rst
15154 F:      include/keys/rxrpc-type.h
15155 F:      include/net/af_rxrpc.h
15156 F:      include/trace/events/rxrpc.h
15157 F:      include/uapi/linux/rxrpc.h
15158 F:      net/rxrpc/
15159
15160 S3 SAVAGE FRAMEBUFFER DRIVER
15161 M:      Antonino Daplas <[email protected]>
15162 L:      [email protected]
15163 S:      Maintained
15164 F:      drivers/video/fbdev/savage/
15165
15166 S390
15167 M:      Heiko Carstens <[email protected]>
15168 M:      Vasily Gorbik <[email protected]>
15169 M:      Christian Borntraeger <[email protected]>
15170 L:      [email protected]
15171 S:      Supported
15172 W:      http://www.ibm.com/developerworks/linux/linux390/
15173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15174 F:      Documentation/driver-api/s390-drivers.rst
15175 F:      Documentation/s390/
15176 F:      arch/s390/
15177 F:      drivers/s390/
15178
15179 S390 COMMON I/O LAYER
15180 M:      Vineeth Vijayan <[email protected]>
15181 M:      Peter Oberparleiter <[email protected]>
15182 L:      [email protected]
15183 S:      Supported
15184 W:      http://www.ibm.com/developerworks/linux/linux390/
15185 F:      drivers/s390/cio/
15186
15187 S390 DASD DRIVER
15188 M:      Stefan Haberland <[email protected]>
15189 M:      Jan Hoeppner <[email protected]>
15190 L:      [email protected]
15191 S:      Supported
15192 W:      http://www.ibm.com/developerworks/linux/linux390/
15193 F:      block/partitions/ibm.c
15194 F:      drivers/s390/block/dasd*
15195 F:      include/linux/dasd_mod.h
15196
15197 S390 IOMMU (PCI)
15198 M:      Matthew Rosato <[email protected]>
15199 M:      Gerald Schaefer <[email protected]>
15200 L:      [email protected]
15201 S:      Supported
15202 W:      http://www.ibm.com/developerworks/linux/linux390/
15203 F:      drivers/iommu/s390-iommu.c
15204
15205 S390 IUCV NETWORK LAYER
15206 M:      Julian Wiedmann <[email protected]>
15207 M:      Karsten Graul <[email protected]>
15208 M:      Ursula Braun <[email protected]>
15209 L:      [email protected]
15210 S:      Supported
15211 W:      http://www.ibm.com/developerworks/linux/linux390/
15212 F:      drivers/s390/net/*iucv*
15213 F:      include/net/iucv/
15214 F:      net/iucv/
15215
15216 S390 NETWORK DRIVERS
15217 M:      Julian Wiedmann <[email protected]>
15218 M:      Karsten Graul <[email protected]>
15219 M:      Ursula Braun <[email protected]>
15220 L:      [email protected]
15221 S:      Supported
15222 W:      http://www.ibm.com/developerworks/linux/linux390/
15223 F:      drivers/s390/net/
15224
15225 S390 PCI SUBSYSTEM
15226 M:      Niklas Schnelle <[email protected]>
15227 M:      Gerald Schaefer <[email protected]>
15228 L:      [email protected]
15229 S:      Supported
15230 W:      http://www.ibm.com/developerworks/linux/linux390/
15231 F:      arch/s390/pci/
15232 F:      drivers/pci/hotplug/s390_pci_hpc.c
15233 F:      Documentation/s390/pci.rst
15234
15235 S390 VFIO AP DRIVER
15236 M:      Tony Krowiak <[email protected]>
15237 M:      Pierre Morel <[email protected]>
15238 M:      Halil Pasic <[email protected]>
15239 L:      [email protected]
15240 S:      Supported
15241 W:      http://www.ibm.com/developerworks/linux/linux390/
15242 F:      Documentation/s390/vfio-ap.rst
15243 F:      drivers/s390/crypto/vfio_ap_drv.c
15244 F:      drivers/s390/crypto/vfio_ap_ops.c
15245 F:      drivers/s390/crypto/vfio_ap_private.h
15246
15247 S390 VFIO-CCW DRIVER
15248 M:      Cornelia Huck <[email protected]>
15249 M:      Eric Farman <[email protected]>
15250 R:      Halil Pasic <[email protected]>
15251 L:      [email protected]
15252 L:      [email protected]
15253 S:      Supported
15254 F:      Documentation/s390/vfio-ccw.rst
15255 F:      drivers/s390/cio/vfio_ccw*
15256 F:      include/uapi/linux/vfio_ccw.h
15257
15258 S390 ZCRYPT DRIVER
15259 M:      Harald Freudenberger <[email protected]>
15260 L:      [email protected]
15261 S:      Supported
15262 W:      http://www.ibm.com/developerworks/linux/linux390/
15263 F:      drivers/s390/crypto/
15264
15265 S390 ZFCP DRIVER
15266 M:      Steffen Maier <[email protected]>
15267 M:      Benjamin Block <[email protected]>
15268 L:      [email protected]
15269 S:      Supported
15270 W:      http://www.ibm.com/developerworks/linux/linux390/
15271 F:      drivers/s390/scsi/zfcp_*
15272
15273 S3C24XX SD/MMC Driver
15274 M:      Ben Dooks <[email protected]>
15275 L:      [email protected] (moderated for non-subscribers)
15276 S:      Supported
15277 F:      drivers/mmc/host/s3cmci.*
15278
15279 SAA6588 RDS RECEIVER DRIVER
15280 M:      Hans Verkuil <[email protected]>
15281 L:      [email protected]
15282 S:      Odd Fixes
15283 W:      https://linuxtv.org
15284 T:      git git://linuxtv.org/media_tree.git
15285 F:      drivers/media/i2c/saa6588*
15286
15287 SAA7134 VIDEO4LINUX DRIVER
15288 M:      Mauro Carvalho Chehab <[email protected]>
15289 L:      [email protected]
15290 S:      Odd fixes
15291 W:      https://linuxtv.org
15292 T:      git git://linuxtv.org/media_tree.git
15293 F:      Documentation/driver-api/media/drivers/saa7134*
15294 F:      drivers/media/pci/saa7134/
15295
15296 SAA7146 VIDEO4LINUX-2 DRIVER
15297 M:      Hans Verkuil <[email protected]>
15298 L:      [email protected]
15299 S:      Maintained
15300 T:      git git://linuxtv.org/media_tree.git
15301 F:      drivers/media/common/saa7146/
15302 F:      drivers/media/pci/saa7146/
15303 F:      include/media/drv-intf/saa7146*
15304
15305 SAFESETID SECURITY MODULE
15306 M:      Micah Morton <[email protected]>
15307 S:      Supported
15308 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15309 F:      security/safesetid/
15310
15311 SAMSUNG AUDIO (ASoC) DRIVERS
15312 M:      Krzysztof Kozlowski <[email protected]>
15313 M:      Sangbeom Kim <[email protected]>
15314 M:      Sylwester Nawrocki <[email protected]>
15315 L:      [email protected] (moderated for non-subscribers)
15316 S:      Supported
15317 F:      Documentation/devicetree/bindings/sound/samsung*
15318 F:      sound/soc/samsung/
15319
15320 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15321 M:      Krzysztof Kozlowski <[email protected]>
15322 L:      [email protected]
15323 L:      [email protected]
15324 S:      Maintained
15325 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15326 F:      drivers/crypto/exynos-rng.c
15327
15328 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15329 M:      Łukasz Stelmach <[email protected]>
15330 L:      [email protected]
15331 S:      Maintained
15332 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15333 F:      drivers/char/hw_random/exynos-trng.c
15334
15335 SAMSUNG FRAMEBUFFER DRIVER
15336 M:      Jingoo Han <[email protected]>
15337 L:      [email protected]
15338 S:      Maintained
15339 F:      drivers/video/fbdev/s3c-fb.c
15340
15341 SAMSUNG LAPTOP DRIVER
15342 M:      Corentin Chary <[email protected]>
15343 L:      [email protected]
15344 S:      Maintained
15345 F:      drivers/platform/x86/samsung-laptop.c
15346
15347 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15348 M:      Sangbeom Kim <[email protected]>
15349 M:      Krzysztof Kozlowski <[email protected]>
15350 M:      Bartlomiej Zolnierkiewicz <[email protected]>
15351 L:      [email protected]
15352 L:      [email protected]
15353 S:      Supported
15354 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15355 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15356 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15357 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15358 F:      drivers/clk/clk-s2mps11.c
15359 F:      drivers/mfd/sec*.c
15360 F:      drivers/regulator/s2m*.c
15361 F:      drivers/regulator/s5m*.c
15362 F:      drivers/rtc/rtc-s5m.c
15363 F:      include/linux/mfd/samsung/
15364
15365 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15366 M:      Sylwester Nawrocki <[email protected]>
15367 L:      [email protected]
15368 L:      [email protected] (moderated for non-subscribers)
15369 S:      Maintained
15370 F:      drivers/media/platform/s3c-camif/
15371 F:      include/media/drv-intf/s3c_camif.h
15372
15373 SAMSUNG S3FWRN5 NFC DRIVER
15374 M:      Robert Baldyga <[email protected]>
15375 M:      Krzysztof Opasiak <[email protected]>
15376 L:      [email protected] (moderated for non-subscribers)
15377 S:      Supported
15378 F:      drivers/nfc/s3fwrn5
15379
15380 SAMSUNG S5C73M3 CAMERA DRIVER
15381 M:      Kyungmin Park <[email protected]>
15382 M:      Andrzej Hajda <[email protected]>
15383 L:      [email protected]
15384 S:      Supported
15385 F:      drivers/media/i2c/s5c73m3/*
15386
15387 SAMSUNG S5K5BAF CAMERA DRIVER
15388 M:      Kyungmin Park <[email protected]>
15389 M:      Andrzej Hajda <[email protected]>
15390 L:      [email protected]
15391 S:      Supported
15392 F:      drivers/media/i2c/s5k5baf.c
15393
15394 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15395 M:      Krzysztof Kozlowski <[email protected]>
15396 M:      Vladimir Zapolskiy <[email protected]>
15397 M:      Kamil Konieczny <[email protected]>
15398 L:      [email protected]
15399 L:      [email protected]
15400 S:      Maintained
15401 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15402 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15403 F:      drivers/crypto/s5p-sss.c
15404
15405 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15406 M:      Kyungmin Park <[email protected]>
15407 M:      Sylwester Nawrocki <[email protected]>
15408 L:      [email protected]
15409 S:      Supported
15410 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15411 F:      drivers/media/platform/exynos4-is/
15412
15413 SAMSUNG SOC CLOCK DRIVERS
15414 M:      Sylwester Nawrocki <[email protected]>
15415 M:      Tomasz Figa <[email protected]>
15416 M:      Chanwoo Choi <[email protected]>
15417 L:      [email protected] (moderated for non-subscribers)
15418 S:      Supported
15419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15420 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15421 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15422 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15423 F:      drivers/clk/samsung/
15424 F:      include/dt-bindings/clock/exynos*.h
15425
15426 SAMSUNG SPI DRIVERS
15427 M:      Kukjin Kim <[email protected]>
15428 M:      Krzysztof Kozlowski <[email protected]>
15429 M:      Andi Shyti <[email protected]>
15430 L:      [email protected]
15431 L:      [email protected] (moderated for non-subscribers)
15432 S:      Maintained
15433 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15434 F:      drivers/spi/spi-s3c*
15435 F:      include/linux/platform_data/spi-s3c64xx.h
15436
15437 SAMSUNG SXGBE DRIVERS
15438 M:      Byungho An <[email protected]>
15439 L:      [email protected]
15440 S:      Supported
15441 F:      drivers/net/ethernet/samsung/sxgbe/
15442
15443 SAMSUNG THERMAL DRIVER
15444 M:      Bartlomiej Zolnierkiewicz <[email protected]>
15445 L:      [email protected]
15446 L:      [email protected]
15447 S:      Supported
15448 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15449 F:      drivers/thermal/samsung/
15450
15451 SAMSUNG USB2 PHY DRIVER
15452 M:      Kamil Debski <[email protected]>
15453 M:      Sylwester Nawrocki <[email protected]>
15454 L:      [email protected]
15455 S:      Supported
15456 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15457 F:      Documentation/driver-api/phy/samsung-usb2.rst
15458 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15459 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15460 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15461 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15462 F:      drivers/phy/samsung/phy-samsung-usb2.c
15463 F:      drivers/phy/samsung/phy-samsung-usb2.h
15464
15465 SC1200 WDT DRIVER
15466 M:      Zwane Mwaikambo <[email protected]>
15467 S:      Maintained
15468 F:      drivers/watchdog/sc1200wdt.c
15469
15470 SCHEDULER
15471 M:      Ingo Molnar <[email protected]>
15472 M:      Peter Zijlstra <[email protected]>
15473 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
15474 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
15475 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
15476 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
15477 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
15478 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
15479 R:      Daniel Bristot de Oliveira <[email protected]> (SCHED_DEADLINE)
15480 L:      [email protected]
15481 S:      Maintained
15482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15483 F:      include/linux/preempt.h
15484 F:      include/linux/sched.h
15485 F:      include/linux/wait.h
15486 F:      include/uapi/linux/sched.h
15487 F:      kernel/sched/
15488
15489 SCR24X CHIP CARD INTERFACE DRIVER
15490 M:      Lubomir Rintel <[email protected]>
15491 S:      Supported
15492 F:      drivers/char/pcmcia/scr24x_cs.c
15493
15494 SCSI CDROM DRIVER
15495 M:      Jens Axboe <[email protected]>
15496 L:      [email protected]
15497 S:      Maintained
15498 W:      http://www.kernel.dk
15499 F:      drivers/scsi/sr*
15500
15501 SCSI RDMA PROTOCOL (SRP) INITIATOR
15502 M:      Bart Van Assche <[email protected]>
15503 L:      [email protected]
15504 S:      Supported
15505 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15506 F:      drivers/infiniband/ulp/srp/
15507 F:      include/scsi/srp.h
15508
15509 SCSI RDMA PROTOCOL (SRP) TARGET
15510 M:      Bart Van Assche <[email protected]>
15511 L:      [email protected]
15512 L:      [email protected]
15513 S:      Supported
15514 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15515 F:      drivers/infiniband/ulp/srpt/
15516
15517 SCSI SG DRIVER
15518 M:      Doug Gilbert <[email protected]>
15519 L:      [email protected]
15520 S:      Maintained
15521 W:      http://sg.danny.cz/sg
15522 F:      Documentation/scsi/scsi-generic.rst
15523 F:      drivers/scsi/sg.c
15524 F:      include/scsi/sg.h
15525
15526 SCSI SUBSYSTEM
15527 M:      "James E.J. Bottomley" <[email protected]>
15528 M:      "Martin K. Petersen" <[email protected]>
15529 L:      [email protected]
15530 S:      Maintained
15531 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15534 F:      Documentation/devicetree/bindings/scsi/
15535 F:      drivers/scsi/
15536 F:      include/scsi/
15537
15538 SCSI TAPE DRIVER
15539 M:      Kai Mäkisara <[email protected]>
15540 L:      [email protected]
15541 S:      Maintained
15542 F:      Documentation/scsi/st.rst
15543 F:      drivers/scsi/st.*
15544 F:      drivers/scsi/st_*.h
15545
15546 SCSI TARGET SUBSYSTEM
15547 M:      "Martin K. Petersen" <[email protected]>
15548 L:      [email protected]
15549 L:      [email protected]
15550 S:      Supported
15551 W:      http://www.linux-iscsi.org
15552 Q:      https://patchwork.kernel.org/project/target-devel/list/
15553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15554 F:      Documentation/target/
15555 F:      drivers/target/
15556 F:      include/target/
15557
15558 SCTP PROTOCOL
15559 M:      Vlad Yasevich <[email protected]>
15560 M:      Neil Horman <[email protected]>
15561 M:      Marcelo Ricardo Leitner <[email protected]>
15562 L:      [email protected]
15563 S:      Maintained
15564 W:      http://lksctp.sourceforge.net
15565 F:      Documentation/networking/sctp.rst
15566 F:      include/linux/sctp.h
15567 F:      include/net/sctp/
15568 F:      include/uapi/linux/sctp.h
15569 F:      net/sctp/
15570
15571 SCx200 CPU SUPPORT
15572 M:      Jim Cromie <[email protected]>
15573 S:      Odd Fixes
15574 F:      Documentation/i2c/busses/scx200_acb.rst
15575 F:      arch/x86/platform/scx200/
15576 F:      drivers/i2c/busses/scx200*
15577 F:      drivers/mtd/maps/scx200_docflash.c
15578 F:      drivers/watchdog/scx200_wdt.c
15579 F:      include/linux/scx200.h
15580
15581 SCx200 GPIO DRIVER
15582 M:      Jim Cromie <[email protected]>
15583 S:      Maintained
15584 F:      drivers/char/scx200_gpio.c
15585 F:      include/linux/scx200_gpio.h
15586
15587 SCx200 HRT CLOCKSOURCE DRIVER
15588 M:      Jim Cromie <[email protected]>
15589 S:      Maintained
15590 F:      drivers/clocksource/scx200_hrt.c
15591
15592 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15593 M:      Sascha Sommer <[email protected]>
15594 L:      [email protected] (subscribers-only)
15595 S:      Maintained
15596 F:      drivers/mmc/host/sdricoh_cs.c
15597
15598 SECO BOARDS CEC DRIVER
15599 M:      Ettore Chimenti <[email protected]>
15600 S:      Maintained
15601 F:      drivers/media/cec/platform/seco/seco-cec.c
15602 F:      drivers/media/cec/platform/seco/seco-cec.h
15603
15604 SECURE COMPUTING
15605 M:      Kees Cook <[email protected]>
15606 R:      Andy Lutomirski <[email protected]>
15607 R:      Will Drewry <[email protected]>
15608 S:      Supported
15609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15610 F:      Documentation/userspace-api/seccomp_filter.rst
15611 F:      include/linux/seccomp.h
15612 F:      include/uapi/linux/seccomp.h
15613 F:      kernel/seccomp.c
15614 F:      tools/testing/selftests/kselftest_harness.h
15615 F:      tools/testing/selftests/seccomp/*
15616 K:      \bsecure_computing
15617 K:      \bTIF_SECCOMP\b
15618
15619 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15620 M:      Al Cooper <[email protected]>
15621 L:      [email protected]
15622 L:      [email protected]
15623 S:      Maintained
15624 F:      drivers/mmc/host/sdhci-brcmstb*
15625
15626 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15627 M:      Adrian Hunter <[email protected]>
15628 L:      [email protected]
15629 S:      Maintained
15630 F:      drivers/mmc/host/sdhci*
15631 F:      include/linux/mmc/sdhci*
15632
15633 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15634 M:      Eugen Hristev <[email protected]>
15635 L:      [email protected]
15636 S:      Supported
15637 F:      drivers/mmc/host/sdhci-of-at91.c
15638
15639 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15640 M:      Ben Dooks <[email protected]>
15641 M:      Jaehoon Chung <[email protected]>
15642 L:      [email protected]
15643 S:      Maintained
15644 F:      drivers/mmc/host/sdhci-s3c*
15645
15646 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15647 M:      Viresh Kumar <[email protected]>
15648 L:      [email protected]
15649 S:      Maintained
15650 F:      drivers/mmc/host/sdhci-spear.c
15651
15652 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15653 M:      Kishon Vijay Abraham I <[email protected]>
15654 L:      [email protected]
15655 S:      Maintained
15656 F:      drivers/mmc/host/sdhci-omap.c
15657
15658 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15659 M:      Jonathan Derrick <[email protected]>
15660 M:      Revanth Rajashekar <[email protected]>
15661 L:      [email protected]
15662 S:      Supported
15663 F:      block/opal_proto.h
15664 F:      block/sed*
15665 F:      include/linux/sed*
15666 F:      include/uapi/linux/sed*
15667
15668 SECURITY CONTACT
15669 M:      Security Officers <[email protected]>
15670 S:      Supported
15671 F:      Documentation/admin-guide/security-bugs.rst
15672
15673 SECURITY SUBSYSTEM
15674 M:      James Morris <[email protected]>
15675 M:      "Serge E. Hallyn" <[email protected]>
15676 L:      [email protected] (suggested Cc:)
15677 S:      Supported
15678 W:      http://kernsec.org/
15679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15680 F:      security/
15681 X:      security/selinux/
15682
15683 SELINUX SECURITY MODULE
15684 M:      Paul Moore <[email protected]>
15685 M:      Stephen Smalley <[email protected]>
15686 M:      Eric Paris <[email protected]>
15687 L:      [email protected]
15688 S:      Supported
15689 W:      https://selinuxproject.org
15690 W:      https://github.com/SELinuxProject
15691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15692 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15693 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15694 F:      Documentation/admin-guide/LSM/SELinux.rst
15695 F:      include/trace/events/avc.h
15696 F:      include/uapi/linux/selinux_netlink.h
15697 F:      scripts/selinux/
15698 F:      security/selinux/
15699
15700 SENSABLE PHANTOM
15701 M:      Jiri Slaby <[email protected]>
15702 S:      Maintained
15703 F:      drivers/misc/phantom.c
15704 F:      include/uapi/linux/phantom.h
15705
15706 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
15707 M:      Tomasz Duszynski <[email protected]>
15708 S:      Maintained
15709 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
15710 F:      drivers/iio/chemical/scd30.h
15711 F:      drivers/iio/chemical/scd30_core.c
15712 F:      drivers/iio/chemical/scd30_i2c.c
15713 F:      drivers/iio/chemical/scd30_serial.c
15714
15715 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15716 M:      Tomasz Duszynski <[email protected]>
15717 S:      Maintained
15718 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15719 F:      drivers/iio/chemical/sps30.c
15720
15721 SERIAL DEVICE BUS
15722 M:      Rob Herring <[email protected]>
15723 L:      [email protected]
15724 S:      Maintained
15725 F:      Documentation/devicetree/bindings/serial/serial.yaml
15726 F:      drivers/tty/serdev/
15727 F:      include/linux/serdev.h
15728
15729 SERIAL DRIVERS
15730 M:      Greg Kroah-Hartman <[email protected]>
15731 L:      [email protected]
15732 S:      Maintained
15733 F:      Documentation/devicetree/bindings/serial/
15734 F:      drivers/tty/serial/
15735
15736 SERIAL IR RECEIVER
15737 M:      Sean Young <[email protected]>
15738 L:      [email protected]
15739 S:      Maintained
15740 F:      drivers/media/rc/serial_ir.c
15741
15742 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15743 M:      Srinivas Kandagatla <[email protected]>
15744 L:      [email protected] (moderated for non-subscribers)
15745 S:      Maintained
15746 F:      Documentation/devicetree/bindings/slimbus/
15747 F:      drivers/slimbus/
15748 F:      include/linux/slimbus.h
15749
15750 SFC NETWORK DRIVER
15751 M:      Solarflare linux maintainers <[email protected]>
15752 M:      Edward Cree <[email protected]>
15753 M:      Martin Habets <[email protected]>
15754 L:      [email protected]
15755 S:      Supported
15756 F:      drivers/net/ethernet/sfc/
15757
15758 SFF/SFP/SFP+ MODULE SUPPORT
15759 M:      Russell King <[email protected]>
15760 L:      [email protected]
15761 S:      Maintained
15762 F:      drivers/net/phy/phylink.c
15763 F:      drivers/net/phy/sfp*
15764 F:      include/linux/phylink.h
15765 F:      include/linux/sfp.h
15766 K:      phylink\.h|struct\s+phylink|\.phylink|>phylink_|phylink_(autoneg|clear|connect|create|destroy|disconnect|ethtool|helper|mac|mii|of|set|start|stop|test|validate)
15767
15768 SGI GRU DRIVER
15769 M:      Dimitri Sivanich <[email protected]>
15770 S:      Maintained
15771 F:      drivers/misc/sgi-gru/
15772
15773 SGI XP/XPC/XPNET DRIVER
15774 M:      Cliff Whickman <[email protected]>
15775 M:      Robin Holt <[email protected]>
15776 S:      Maintained
15777 F:      drivers/misc/sgi-xp/
15778
15779 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15780 M:      Ursula Braun <[email protected]>
15781 M:      Karsten Graul <[email protected]>
15782 L:      [email protected]
15783 S:      Supported
15784 W:      http://www.ibm.com/developerworks/linux/linux390/
15785 F:      net/smc/
15786
15787 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15788 M:      Linus Walleij <[email protected]>
15789 L:      [email protected]
15790 S:      Maintained
15791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15792 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15793 F:      drivers/iio/light/gp2ap002.c
15794
15795 SHARP RJ54N1CB0C SENSOR DRIVER
15796 M:      Jacopo Mondi <[email protected]>
15797 L:      [email protected]
15798 S:      Odd fixes
15799 T:      git git://linuxtv.org/media_tree.git
15800 F:      drivers/media/i2c/rj54n1cb0c.c
15801 F:      include/media/i2c/rj54n1cb0c.h
15802
15803 SH_VOU V4L2 OUTPUT DRIVER
15804 L:      [email protected]
15805 S:      Orphan
15806 F:      drivers/media/platform/sh_vou.c
15807 F:      include/media/drv-intf/sh_vou.h
15808
15809 SI2157 MEDIA DRIVER
15810 M:      Antti Palosaari <[email protected]>
15811 L:      [email protected]
15812 S:      Maintained
15813 W:      https://linuxtv.org
15814 W:      http://palosaari.fi/linux/
15815 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15816 T:      git git://linuxtv.org/anttip/media_tree.git
15817 F:      drivers/media/tuners/si2157*
15818
15819 SI2165 MEDIA DRIVER
15820 M:      Matthias Schwarzott <[email protected]>
15821 L:      [email protected]
15822 S:      Maintained
15823 W:      https://linuxtv.org
15824 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15825 F:      drivers/media/dvb-frontends/si2165*
15826
15827 SI2168 MEDIA DRIVER
15828 M:      Antti Palosaari <[email protected]>
15829 L:      [email protected]
15830 S:      Maintained
15831 W:      https://linuxtv.org
15832 W:      http://palosaari.fi/linux/
15833 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15834 T:      git git://linuxtv.org/anttip/media_tree.git
15835 F:      drivers/media/dvb-frontends/si2168*
15836
15837 SI470X FM RADIO RECEIVER I2C DRIVER
15838 M:      Hans Verkuil <[email protected]>
15839 L:      [email protected]
15840 S:      Odd Fixes
15841 W:      https://linuxtv.org
15842 T:      git git://linuxtv.org/media_tree.git
15843 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15844
15845 SI470X FM RADIO RECEIVER USB DRIVER
15846 M:      Hans Verkuil <[email protected]>
15847 L:      [email protected]
15848 S:      Maintained
15849 W:      https://linuxtv.org
15850 T:      git git://linuxtv.org/media_tree.git
15851 F:      drivers/media/radio/si470x/radio-si470x-common.c
15852 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15853 F:      drivers/media/radio/si470x/radio-si470x.h
15854
15855 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15856 M:      Eduardo Valentin <[email protected]>
15857 L:      [email protected]
15858 S:      Odd Fixes
15859 W:      https://linuxtv.org
15860 T:      git git://linuxtv.org/media_tree.git
15861 F:      drivers/media/radio/si4713/si4713.?
15862
15863 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15864 M:      Eduardo Valentin <[email protected]>
15865 L:      [email protected]
15866 S:      Odd Fixes
15867 W:      https://linuxtv.org
15868 T:      git git://linuxtv.org/media_tree.git
15869 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15870
15871 SI4713 FM RADIO TRANSMITTER USB DRIVER
15872 M:      Hans Verkuil <[email protected]>
15873 L:      [email protected]
15874 S:      Maintained
15875 W:      https://linuxtv.org
15876 T:      git git://linuxtv.org/media_tree.git
15877 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15878
15879 SIANO DVB DRIVER
15880 M:      Mauro Carvalho Chehab <[email protected]>
15881 L:      [email protected]
15882 S:      Odd fixes
15883 W:      https://linuxtv.org
15884 T:      git git://linuxtv.org/media_tree.git
15885 F:      drivers/media/common/siano/
15886 F:      drivers/media/mmc/siano/
15887 F:      drivers/media/usb/siano/
15888 F:      drivers/media/usb/siano/
15889
15890 SIFIVE DRIVERS
15891 M:      Palmer Dabbelt <[email protected]>
15892 M:      Paul Walmsley <[email protected]>
15893 L:      [email protected]
15894 S:      Supported
15895 T:      git git://github.com/sifive/riscv-linux.git
15896 N:      sifive
15897 K:      [^@]sifive
15898
15899 SIFIVE FU540 SYSTEM-ON-CHIP
15900 M:      Paul Walmsley <[email protected]>
15901 M:      Palmer Dabbelt <[email protected]>
15902 L:      [email protected]
15903 S:      Supported
15904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15905 N:      fu540
15906 K:      fu540
15907
15908 SIFIVE PDMA DRIVER
15909 M:      Green Wan <[email protected]>
15910 S:      Maintained
15911 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15912 F:      drivers/dma/sf-pdma/
15913
15914 SILEAD TOUCHSCREEN DRIVER
15915 M:      Hans de Goede <[email protected]>
15916 L:      [email protected]
15917 L:      [email protected]
15918 S:      Maintained
15919 F:      drivers/input/touchscreen/silead.c
15920 F:      drivers/platform/x86/touchscreen_dmi.c
15921
15922 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15923 M:      Jérôme Pouiller <[email protected]>
15924 S:      Supported
15925 F:      drivers/staging/wfx/
15926
15927 SILICON MOTION SM712 FRAME BUFFER DRIVER
15928 M:      Sudip Mukherjee <[email protected]>
15929 M:      Teddy Wang <[email protected]>
15930 M:      Sudip Mukherjee <[email protected]>
15931 L:      [email protected]
15932 S:      Maintained
15933 F:      Documentation/fb/sm712fb.rst
15934 F:      drivers/video/fbdev/sm712*
15935
15936 SIMPLE FIRMWARE INTERFACE (SFI)
15937 S:      Obsolete
15938 W:      http://simplefirmware.org/
15939 F:      arch/x86/platform/sfi/
15940 F:      drivers/sfi/
15941 F:      include/linux/sfi*.h
15942
15943 SIMPLEFB FB DRIVER
15944 M:      Hans de Goede <[email protected]>
15945 L:      [email protected]
15946 S:      Maintained
15947 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15948 F:      drivers/video/fbdev/simplefb.c
15949 F:      include/linux/platform_data/simplefb.h
15950
15951 SIMTEC EB110ATX (Chalice CATS)
15952 M:      Vincent Sanders <[email protected]>
15953 M:      Simtec Linux Team <[email protected]>
15954 S:      Supported
15955 W:      http://www.simtec.co.uk/products/EB110ATX/
15956
15957 SIMTEC EB2410ITX (BAST)
15958 M:      Vincent Sanders <[email protected]>
15959 M:      Simtec Linux Team <[email protected]>
15960 S:      Supported
15961 W:      http://www.simtec.co.uk/products/EB2410ITX/
15962 F:      arch/arm/mach-s3c24xx/bast-ide.c
15963 F:      arch/arm/mach-s3c24xx/bast-irq.c
15964 F:      arch/arm/mach-s3c24xx/mach-bast.c
15965
15966 SIOX
15967 M:      Thorsten Scherer <[email protected]>
15968 M:      Uwe Kleine-König <[email protected]>
15969 R:      Pengutronix Kernel Team <[email protected]>
15970 S:      Supported
15971 F:      drivers/gpio/gpio-siox.c
15972 F:      drivers/siox/*
15973 F:      include/trace/events/siox.h
15974
15975 SIPHASH PRF ROUTINES
15976 M:      Jason A. Donenfeld <[email protected]>
15977 S:      Maintained
15978 F:      include/linux/siphash.h
15979 F:      lib/siphash.c
15980 F:      lib/test_siphash.c
15981
15982 SIS 190 ETHERNET DRIVER
15983 M:      Francois Romieu <[email protected]>
15984 L:      [email protected]
15985 S:      Maintained
15986 F:      drivers/net/ethernet/sis/sis190.c
15987
15988 SIS 900/7016 FAST ETHERNET DRIVER
15989 M:      Daniele Venzano <[email protected]>
15990 L:      [email protected]
15991 S:      Maintained
15992 W:      http://www.brownhat.org/sis900.html
15993 F:      drivers/net/ethernet/sis/sis900.*
15994
15995 SIS FRAMEBUFFER DRIVER
15996 M:      Thomas Winischhofer <[email protected]>
15997 S:      Maintained
15998 W:      http://www.winischhofer.net/linuxsisvga.shtml
15999 F:      Documentation/fb/sisfb.rst
16000 F:      drivers/video/fbdev/sis/
16001 F:      include/video/sisfb.h
16002
16003 SIS USB2VGA DRIVER
16004 M:      Thomas Winischhofer <[email protected]>
16005 S:      Maintained
16006 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16007 F:      drivers/usb/misc/sisusbvga/
16008
16009 SLAB ALLOCATOR
16010 M:      Christoph Lameter <[email protected]>
16011 M:      Pekka Enberg <[email protected]>
16012 M:      David Rientjes <[email protected]>
16013 M:      Joonsoo Kim <[email protected]>
16014 M:      Andrew Morton <[email protected]>
16015 L:      [email protected]
16016 S:      Maintained
16017 F:      include/linux/sl?b*.h
16018 F:      mm/sl?b*
16019
16020 SLEEPABLE READ-COPY UPDATE (SRCU)
16021 M:      Lai Jiangshan <[email protected]>
16022 M:      "Paul E. McKenney" <[email protected]>
16023 M:      Josh Triplett <[email protected]>
16024 R:      Steven Rostedt <[email protected]>
16025 R:      Mathieu Desnoyers <[email protected]>
16026 L:      [email protected]
16027 S:      Supported
16028 W:      http://www.rdrop.com/users/paulmck/RCU/
16029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16030 F:      include/linux/srcu*.h
16031 F:      kernel/rcu/srcu*.c
16032
16033 SMACK SECURITY MODULE
16034 M:      Casey Schaufler <[email protected]>
16035 L:      [email protected]
16036 S:      Maintained
16037 W:      http://schaufler-ca.com
16038 T:      git git://github.com/cschaufler/smack-next
16039 F:      Documentation/admin-guide/LSM/Smack.rst
16040 F:      security/smack/
16041
16042 SMC91x ETHERNET DRIVER
16043 M:      Nicolas Pitre <[email protected]>
16044 S:      Odd Fixes
16045 F:      drivers/net/ethernet/smsc/smc91x.*
16046
16047 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16048 M:      Mark Rutland <[email protected]>
16049 M:      Lorenzo Pieralisi <[email protected]>
16050 M:      Sudeep Holla <[email protected]>
16051 L:      [email protected]
16052 S:      Maintained
16053 F:      drivers/firmware/smccc/
16054 F:      include/linux/arm-smccc.h
16055
16056 SMIA AND SMIA++ IMAGE SENSOR DRIVER
16057 M:      Sakari Ailus <[email protected]>
16058 L:      [email protected]
16059 S:      Maintained
16060 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
16061 F:      drivers/media/i2c/smiapp-pll.c
16062 F:      drivers/media/i2c/smiapp-pll.h
16063 F:      drivers/media/i2c/smiapp/
16064 F:      include/uapi/linux/smiapp.h
16065
16066 SMM665 HARDWARE MONITOR DRIVER
16067 M:      Guenter Roeck <[email protected]>
16068 L:      [email protected]
16069 S:      Maintained
16070 F:      Documentation/hwmon/smm665.rst
16071 F:      drivers/hwmon/smm665.c
16072
16073 SMSC EMC2103 HARDWARE MONITOR DRIVER
16074 M:      Steve Glendinning <[email protected]>
16075 L:      [email protected]
16076 S:      Maintained
16077 F:      Documentation/hwmon/emc2103.rst
16078 F:      drivers/hwmon/emc2103.c
16079
16080 SMSC SCH5627 HARDWARE MONITOR DRIVER
16081 M:      Hans de Goede <[email protected]>
16082 L:      [email protected]
16083 S:      Supported
16084 F:      Documentation/hwmon/sch5627.rst
16085 F:      drivers/hwmon/sch5627.c
16086
16087 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16088 M:      Steve Glendinning <[email protected]>
16089 L:      [email protected]
16090 S:      Maintained
16091 F:      drivers/video/fbdev/smscufx.c
16092
16093 SMSC47B397 HARDWARE MONITOR DRIVER
16094 M:      Jean Delvare <[email protected]>
16095 L:      [email protected]
16096 S:      Maintained
16097 F:      Documentation/hwmon/smsc47b397.rst
16098 F:      drivers/hwmon/smsc47b397.c
16099
16100 SMSC911x ETHERNET DRIVER
16101 M:      Steve Glendinning <[email protected]>
16102 L:      [email protected]
16103 S:      Maintained
16104 F:      drivers/net/ethernet/smsc/smsc911x.*
16105 F:      include/linux/smsc911x.h
16106
16107 SMSC9420 PCI ETHERNET DRIVER
16108 M:      Steve Glendinning <[email protected]>
16109 L:      [email protected]
16110 S:      Maintained
16111 F:      drivers/net/ethernet/smsc/smsc9420.*
16112
16113 SOCIONEXT (SNI) AVE NETWORK DRIVER
16114 M:      Kunihiko Hayashi <[email protected]>
16115 L:      [email protected]
16116 S:      Maintained
16117 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16118 F:      drivers/net/ethernet/socionext/sni_ave.c
16119
16120 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16121 M:      Jassi Brar <[email protected]>
16122 M:      Ilias Apalodimas <[email protected]>
16123 L:      [email protected]
16124 S:      Maintained
16125 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16126 F:      drivers/net/ethernet/socionext/netsec.c
16127
16128 SOCIONEXT (SNI) Synquacer SPI DRIVER
16129 M:      Masahisa Kojima <[email protected]>
16130 M:      Jassi Brar <[email protected]>
16131 L:      [email protected]
16132 S:      Maintained
16133 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16134 F:      drivers/spi/spi-synquacer.c
16135
16136 SOCIONEXT SYNQUACER I2C DRIVER
16137 M:      Ard Biesheuvel <[email protected]>
16138 L:      [email protected]
16139 S:      Maintained
16140 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16141 F:      drivers/i2c/busses/i2c-synquacer.c
16142
16143 SOCIONEXT UNIPHIER SOUND DRIVER
16144 L:      [email protected] (moderated for non-subscribers)
16145 S:      Orphan
16146 F:      sound/soc/uniphier/
16147
16148 SOEKRIS NET48XX LED SUPPORT
16149 M:      Chris Boot <[email protected]>
16150 S:      Maintained
16151 F:      drivers/leds/leds-net48xx.c
16152
16153 SOFT-IWARP DRIVER (siw)
16154 M:      Bernard Metzler <[email protected]>
16155 L:      [email protected]
16156 S:      Supported
16157 F:      drivers/infiniband/sw/siw/
16158 F:      include/uapi/rdma/siw-abi.h
16159
16160 SOFT-ROCE DRIVER (rxe)
16161 M:      Zhu Yanjun <[email protected]>
16162 L:      [email protected]
16163 S:      Supported
16164 F:      drivers/infiniband/sw/rxe/
16165 F:      include/uapi/rdma/rdma_user_rxe.h
16166
16167 SOFTLOGIC 6x10 MPEG CODEC
16168 M:      Bluecherry Maintainers <[email protected]>
16169 M:      Anton Sviridenko <[email protected]>
16170 M:      Andrey Utkin <[email protected]>
16171 M:      Ismael Luceno <[email protected]>
16172 L:      [email protected]
16173 S:      Supported
16174 F:      drivers/media/pci/solo6x10/
16175
16176 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16177 M:      James Morse <[email protected]>
16178 L:      [email protected]
16179 S:      Maintained
16180 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16181 F:      drivers/firmware/arm_sdei.c
16182 F:      include/linux/arm_sdei.h
16183 F:      include/uapi/linux/arm_sdei.h
16184
16185 SOFTWARE RAID (Multiple Disks) SUPPORT
16186 M:      Song Liu <[email protected]>
16187 L:      [email protected]
16188 S:      Supported
16189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16190 F:      drivers/md/Kconfig
16191 F:      drivers/md/Makefile
16192 F:      drivers/md/md*
16193 F:      drivers/md/raid*
16194 F:      include/linux/raid/
16195 F:      include/uapi/linux/raid/
16196
16197 SOLIDRUN CLEARFOG SUPPORT
16198 M:      Russell King <[email protected]>
16199 S:      Maintained
16200 F:      arch/arm/boot/dts/armada-388-clearfog*
16201 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16202
16203 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16204 M:      Russell King <[email protected]>
16205 S:      Maintained
16206 F:      arch/arm/boot/dts/imx6*-cubox-i*
16207 F:      arch/arm/boot/dts/imx6*-hummingboard*
16208 F:      arch/arm/boot/dts/imx6*-sr-*
16209
16210 SONIC NETWORK DRIVER
16211 M:      Thomas Bogendoerfer <[email protected]>
16212 L:      [email protected]
16213 S:      Maintained
16214 F:      drivers/net/ethernet/natsemi/sonic.*
16215
16216 SONICS SILICON BACKPLANE DRIVER (SSB)
16217 M:      Michael Buesch <[email protected]>
16218 L:      [email protected]
16219 S:      Maintained
16220 F:      drivers/ssb/
16221 F:      include/linux/ssb/
16222
16223 SONY IMX214 SENSOR DRIVER
16224 M:      Ricardo Ribalda <[email protected]>
16225 L:      [email protected]
16226 S:      Maintained
16227 T:      git git://linuxtv.org/media_tree.git
16228 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
16229 F:      drivers/media/i2c/imx214.c
16230
16231 SONY IMX219 SENSOR DRIVER
16232 M:      Dave Stevenson <[email protected]>
16233 L:      [email protected]
16234 S:      Maintained
16235 T:      git git://linuxtv.org/media_tree.git
16236 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16237 F:      drivers/media/i2c/imx219.c
16238
16239 SONY IMX258 SENSOR DRIVER
16240 M:      Sakari Ailus <[email protected]>
16241 L:      [email protected]
16242 S:      Maintained
16243 T:      git git://linuxtv.org/media_tree.git
16244 F:      drivers/media/i2c/imx258.c
16245
16246 SONY IMX274 SENSOR DRIVER
16247 M:      Leon Luo <[email protected]>
16248 L:      [email protected]
16249 S:      Maintained
16250 T:      git git://linuxtv.org/media_tree.git
16251 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16252 F:      drivers/media/i2c/imx274.c
16253
16254 SONY IMX290 SENSOR DRIVER
16255 M:      Manivannan Sadhasivam <[email protected]>
16256 L:      [email protected]
16257 S:      Maintained
16258 T:      git git://linuxtv.org/media_tree.git
16259 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16260 F:      drivers/media/i2c/imx290.c
16261
16262 SONY IMX319 SENSOR DRIVER
16263 M:      Bingbu Cao <[email protected]>
16264 L:      [email protected]
16265 S:      Maintained
16266 T:      git git://linuxtv.org/media_tree.git
16267 F:      drivers/media/i2c/imx319.c
16268
16269 SONY IMX355 SENSOR DRIVER
16270 M:      Tianshu Qiu <[email protected]>
16271 L:      [email protected]
16272 S:      Maintained
16273 T:      git git://linuxtv.org/media_tree.git
16274 F:      drivers/media/i2c/imx355.c
16275
16276 SONY MEMORYSTICK SUBSYSTEM
16277 M:      Maxim Levitsky <[email protected]>
16278 M:      Alex Dubov <[email protected]>
16279 M:      Ulf Hansson <[email protected]>
16280 L:      [email protected]
16281 S:      Maintained
16282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16283 F:      drivers/memstick/
16284 F:      include/linux/memstick.h
16285
16286 SONY VAIO CONTROL DEVICE DRIVER
16287 M:      Mattia Dongili <[email protected]>
16288 L:      [email protected]
16289 S:      Maintained
16290 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16291 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16292 F:      drivers/char/sonypi.c
16293 F:      drivers/platform/x86/sony-laptop.c
16294 F:      include/linux/sony-laptop.h
16295
16296 SOUND
16297 M:      Jaroslav Kysela <[email protected]>
16298 M:      Takashi Iwai <[email protected]>
16299 L:      [email protected] (moderated for non-subscribers)
16300 S:      Maintained
16301 W:      http://www.alsa-project.org/
16302 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16304 F:      Documentation/sound/
16305 F:      include/sound/
16306 F:      include/uapi/sound/
16307 F:      sound/
16308
16309 SOUND - COMPRESSED AUDIO
16310 M:      Vinod Koul <[email protected]>
16311 L:      [email protected] (moderated for non-subscribers)
16312 S:      Supported
16313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16314 F:      Documentation/sound/designs/compress-offload.rst
16315 F:      include/sound/compress_driver.h
16316 F:      include/uapi/sound/compress_*
16317 F:      sound/core/compress_offload.c
16318 F:      sound/soc/soc-compress.c
16319
16320 SOUND - DMAENGINE HELPERS
16321 M:      Lars-Peter Clausen <[email protected]>
16322 S:      Supported
16323 F:      include/sound/dmaengine_pcm.h
16324 F:      sound/core/pcm_dmaengine.c
16325 F:      sound/soc/soc-generic-dmaengine-pcm.c
16326
16327 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16328 M:      Liam Girdwood <[email protected]>
16329 M:      Mark Brown <[email protected]>
16330 L:      [email protected] (moderated for non-subscribers)
16331 S:      Supported
16332 W:      http://alsa-project.org/main/index.php/ASoC
16333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16334 F:      Documentation/devicetree/bindings/sound/
16335 F:      Documentation/sound/soc/
16336 F:      include/dt-bindings/sound/
16337 F:      include/sound/soc*
16338 F:      sound/soc/
16339
16340 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16341 M:      Pierre-Louis Bossart <[email protected]>
16342 M:      Liam Girdwood <[email protected]>
16343 M:      Ranjani Sridharan <[email protected]>
16344 M:      Kai Vehmanen <[email protected]>
16345 M:      Daniel Baluta <[email protected]>
16346 L:      [email protected] (moderated for non-subscribers)
16347 S:      Supported
16348 W:      https://github.com/thesofproject/linux/
16349 F:      sound/soc/sof/
16350
16351 SOUNDWIRE SUBSYSTEM
16352 M:      Vinod Koul <[email protected]>
16353 M:      Bard Liao <[email protected]>
16354 R:      Pierre-Louis Bossart <[email protected]>
16355 R:      Sanyog Kale <[email protected]>
16356 L:      [email protected] (moderated for non-subscribers)
16357 S:      Supported
16358 F:      Documentation/driver-api/soundwire/
16359 F:      drivers/soundwire/
16360 F:      include/linux/soundwire/
16361
16362 SP2 MEDIA DRIVER
16363 M:      Olli Salonen <[email protected]>
16364 L:      [email protected]
16365 S:      Maintained
16366 W:      https://linuxtv.org
16367 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16368 F:      drivers/media/dvb-frontends/sp2*
16369
16370 SPARC + UltraSPARC (sparc/sparc64)
16371 M:      "David S. Miller" <[email protected]>
16372 L:      [email protected]
16373 S:      Maintained
16374 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16377 F:      arch/sparc/
16378 F:      drivers/sbus/
16379
16380 SPARC SERIAL DRIVERS
16381 M:      "David S. Miller" <[email protected]>
16382 L:      [email protected]
16383 S:      Maintained
16384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16386 F:      drivers/tty/serial/suncore.c
16387 F:      drivers/tty/serial/sunhv.c
16388 F:      drivers/tty/serial/sunsab.c
16389 F:      drivers/tty/serial/sunsab.h
16390 F:      drivers/tty/serial/sunsu.c
16391 F:      drivers/tty/serial/sunzilog.c
16392 F:      drivers/tty/serial/sunzilog.h
16393 F:      drivers/tty/vcc.c
16394 F:      include/linux/sunserialcore.h
16395
16396 SPARSE CHECKER
16397 M:      "Luc Van Oostenryck" <[email protected]>
16398 L:      [email protected]
16399 S:      Maintained
16400 W:      https://sparse.docs.kernel.org/
16401 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16402 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16403 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16404 F:      include/linux/compiler.h
16405
16406 SPEAKUP CONSOLE SPEECH DRIVER
16407 M:      William Hubbs <[email protected]>
16408 M:      Chris Brannon <[email protected]>
16409 M:      Kirk Reiser <[email protected]>
16410 M:      Samuel Thibault <[email protected]>
16411 L:      [email protected]
16412 S:      Odd Fixes
16413 W:      http://www.linux-speakup.org/
16414 F:      drivers/accessibility/speakup/
16415
16416 SPEAR CLOCK FRAMEWORK SUPPORT
16417 M:      Viresh Kumar <[email protected]>
16418 L:      [email protected] (moderated for non-subscribers)
16419 S:      Maintained
16420 W:      http://www.st.com/spear
16421 F:      drivers/clk/spear/
16422
16423 SPEAR PLATFORM SUPPORT
16424 M:      Viresh Kumar <[email protected]>
16425 M:      Shiraz Hashim <[email protected]>
16426 L:      [email protected] (moderated for non-subscribers)
16427 S:      Maintained
16428 W:      http://www.st.com/spear
16429 F:      arch/arm/boot/dts/spear*
16430 F:      arch/arm/mach-spear/
16431
16432 SPI NOR SUBSYSTEM
16433 M:      Tudor Ambarus <[email protected]>
16434 L:      [email protected]
16435 S:      Maintained
16436 W:      http://www.linux-mtd.infradead.org/
16437 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16438 C:      irc://irc.oftc.net/mtd
16439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16440 F:      drivers/mtd/spi-nor/
16441 F:      include/linux/mtd/spi-nor.h
16442
16443 SPI SUBSYSTEM
16444 M:      Mark Brown <[email protected]>
16445 L:      [email protected]
16446 S:      Maintained
16447 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16449 F:      Documentation/devicetree/bindings/spi/
16450 F:      Documentation/spi/
16451 F:      drivers/spi/
16452 F:      include/linux/spi/
16453 F:      include/uapi/linux/spi/
16454 F:      tools/spi/
16455
16456 SPIDERNET NETWORK DRIVER for CELL
16457 M:      Ishizaki Kou <[email protected]>
16458 L:      [email protected]
16459 S:      Supported
16460 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16461 F:      drivers/net/ethernet/toshiba/spider_net*
16462
16463 SPMI SUBSYSTEM
16464 R:      Stephen Boyd <[email protected]>
16465 L:      [email protected]
16466 F:      Documentation/devicetree/bindings/spmi/
16467 F:      drivers/spmi/
16468 F:      include/dt-bindings/spmi/spmi.h
16469 F:      include/linux/spmi.h
16470 F:      include/trace/events/spmi.h
16471
16472 SPU FILE SYSTEM
16473 M:      Jeremy Kerr <[email protected]>
16474 L:      [email protected]
16475 S:      Supported
16476 W:      http://www.ibm.com/developerworks/power/cell/
16477 F:      Documentation/filesystems/spufs/spufs.rst
16478 F:      arch/powerpc/platforms/cell/spufs/
16479
16480 SQUASHFS FILE SYSTEM
16481 M:      Phillip Lougher <[email protected]>
16482 L:      [email protected] (subscribers-only)
16483 S:      Maintained
16484 W:      http://squashfs.org.uk
16485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16486 F:      Documentation/filesystems/squashfs.rst
16487 F:      fs/squashfs/
16488
16489 SRM (Alpha) environment access
16490 M:      Jan-Benedict Glaw <[email protected]>
16491 S:      Maintained
16492 F:      arch/alpha/kernel/srm_env.c
16493
16494 ST LSM6DSx IMU IIO DRIVER
16495 M:      Lorenzo Bianconi <[email protected]>
16496 L:      [email protected]
16497 S:      Maintained
16498 W:      http://www.st.com/
16499 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16500 F:      drivers/iio/imu/st_lsm6dsx/
16501
16502 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16503 M:      Mickael Guene <[email protected]>
16504 L:      [email protected]
16505 S:      Maintained
16506 T:      git git://linuxtv.org/media_tree.git
16507 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16508 F:      drivers/media/i2c/st-mipid02.c
16509
16510 ST STM32 I2C/SMBUS DRIVER
16511 M:      Pierre-Yves MORDRET <[email protected]>
16512 L:      [email protected]
16513 S:      Maintained
16514 F:      drivers/i2c/busses/i2c-stm32*
16515
16516 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16517 M:      Song Qiang <[email protected]>
16518 L:      [email protected]
16519 S:      Maintained
16520 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16521 F:      drivers/iio/proximity/vl53l0x-i2c.c
16522
16523 STABLE BRANCH
16524 M:      Greg Kroah-Hartman <[email protected]>
16525 M:      Sasha Levin <[email protected]>
16526 L:      [email protected]
16527 S:      Supported
16528 F:      Documentation/process/stable-kernel-rules.rst
16529
16530 STAGING - ATOMISP DRIVER
16531 M:      Mauro Carvalho Chehab <[email protected]>
16532 R:      Sakari Ailus <[email protected]>
16533 L:      [email protected]
16534 S:      Maintained
16535 F:      drivers/staging/media/atomisp/
16536
16537 STAGING - COMEDI
16538 M:      Ian Abbott <[email protected]>
16539 M:      H Hartley Sweeten <[email protected]>
16540 S:      Odd Fixes
16541 F:      drivers/staging/comedi/
16542
16543 STAGING - FIELDBUS SUBSYSTEM
16544 M:      Sven Van Asbroeck <[email protected]>
16545 S:      Maintained
16546 F:      drivers/staging/fieldbus/*
16547 F:      drivers/staging/fieldbus/Documentation/
16548
16549 STAGING - HMS ANYBUS-S BUS
16550 M:      Sven Van Asbroeck <[email protected]>
16551 S:      Maintained
16552 F:      drivers/staging/fieldbus/anybuss/
16553
16554 STAGING - INDUSTRIAL IO
16555 M:      Jonathan Cameron <[email protected]>
16556 L:      [email protected]
16557 S:      Odd Fixes
16558 F:      Documentation/devicetree/bindings/staging/iio/
16559 F:      drivers/staging/iio/
16560
16561 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16562 M:      Marc Dietrich <[email protected]>
16563 L:      [email protected] (moderated for non-subscribers)
16564 L:      [email protected]
16565 S:      Maintained
16566 F:      drivers/staging/nvec/
16567
16568 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16569 M:      Jens Frederich <[email protected]>
16570 M:      Daniel Drake <[email protected]>
16571 M:      Jon Nettleton <[email protected]>
16572 S:      Maintained
16573 W:      http://wiki.laptop.org/go/DCON
16574 F:      drivers/staging/olpc_dcon/
16575
16576 STAGING - REALTEK RTL8188EU DRIVERS
16577 M:      Larry Finger <[email protected]>
16578 S:      Odd Fixes
16579 F:      drivers/staging/rtl8188eu/
16580
16581 STAGING - REALTEK RTL8712U DRIVERS
16582 M:      Larry Finger <[email protected]>
16583 M:      Florian Schilhabel <[email protected]>.
16584 S:      Odd Fixes
16585 F:      drivers/staging/rtl8712/
16586
16587 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16588 M:      Michael Hennerich <[email protected]>
16589 L:      [email protected]
16590 S:      Supported
16591 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16592 F:      drivers/staging/fbtft/fb_seps525.c
16593
16594 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16595 M:      Sudip Mukherjee <[email protected]>
16596 M:      Teddy Wang <[email protected]>
16597 M:      Sudip Mukherjee <[email protected]>
16598 L:      [email protected]
16599 S:      Maintained
16600 F:      drivers/staging/sm750fb/
16601
16602 STAGING - VIA VT665X DRIVERS
16603 M:      Forest Bond <[email protected]>
16604 S:      Odd Fixes
16605 F:      drivers/staging/vt665?/
16606
16607 STAGING SUBSYSTEM
16608 M:      Greg Kroah-Hartman <[email protected]>
16609 L:      [email protected]
16610 S:      Supported
16611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16612 F:      drivers/staging/
16613
16614 STARFIRE/DURALAN NETWORK DRIVER
16615 M:      Ion Badulescu <[email protected]>
16616 S:      Odd Fixes
16617 F:      drivers/net/ethernet/adaptec/starfire*
16618
16619 STEC S1220 SKD DRIVER
16620 M:      Damien Le Moal <[email protected]>
16621 L:      [email protected]
16622 S:      Maintained
16623 F:      drivers/block/skd*[ch]
16624
16625 STI AUDIO (ASoC) DRIVERS
16626 M:      Arnaud Pouliquen <[email protected]>
16627 L:      [email protected] (moderated for non-subscribers)
16628 S:      Maintained
16629 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16630 F:      sound/soc/sti/
16631
16632 STI CEC DRIVER
16633 M:      Benjamin Gaignard <[email protected]>
16634 S:      Maintained
16635 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16636 F:      drivers/media/cec/platform/sti/
16637
16638 STK1160 USB VIDEO CAPTURE DRIVER
16639 M:      Ezequiel Garcia <[email protected]>
16640 L:      [email protected]
16641 S:      Maintained
16642 T:      git git://linuxtv.org/media_tree.git
16643 F:      drivers/media/usb/stk1160/
16644
16645 STM32 AUDIO (ASoC) DRIVERS
16646 M:      Olivier Moysan <[email protected]>
16647 M:      Arnaud Pouliquen <[email protected]>
16648 L:      [email protected] (moderated for non-subscribers)
16649 S:      Maintained
16650 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16651 F:      sound/soc/stm/
16652
16653 STM32 TIMER/LPTIMER DRIVERS
16654 M:      Fabrice Gasnier <[email protected]>
16655 S:      Maintained
16656 F:      Documentation/ABI/testing/*timer-stm32
16657 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16658 F:      drivers/*/stm32-*timer*
16659 F:      drivers/pwm/pwm-stm32*
16660 F:      include/linux/*/stm32-*tim*
16661
16662 STMMAC ETHERNET DRIVER
16663 M:      Giuseppe Cavallaro <[email protected]>
16664 M:      Alexandre Torgue <[email protected]>
16665 M:      Jose Abreu <[email protected]>
16666 L:      [email protected]
16667 S:      Supported
16668 W:      http://www.stlinux.com
16669 F:      Documentation/networking/device_drivers/ethernet/stmicro/
16670 F:      drivers/net/ethernet/stmicro/stmmac/
16671
16672 SUN3/3X
16673 M:      Sam Creasey <[email protected]>
16674 S:      Maintained
16675 W:      http://sammy.net/sun3/
16676 F:      arch/m68k/include/asm/sun3*
16677 F:      arch/m68k/kernel/*sun3*
16678 F:      arch/m68k/sun3*/
16679 F:      drivers/net/ethernet/i825xx/sun3*
16680
16681 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16682 M:      Hans de Goede <[email protected]>
16683 L:      [email protected]
16684 S:      Maintained
16685 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16686 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16687
16688 SUNDANCE NETWORK DRIVER
16689 M:      Denis Kirjanov <[email protected]>
16690 L:      [email protected]
16691 S:      Maintained
16692 F:      drivers/net/ethernet/dlink/sundance.c
16693
16694 SUPERH
16695 M:      Yoshinori Sato <[email protected]>
16696 M:      Rich Felker <[email protected]>
16697 L:      [email protected]
16698 S:      Maintained
16699 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16700 F:      Documentation/sh/
16701 F:      arch/sh/
16702 F:      drivers/sh/
16703
16704 SUSPEND TO RAM
16705 M:      "Rafael J. Wysocki" <[email protected]>
16706 M:      Len Brown <[email protected]>
16707 M:      Pavel Machek <[email protected]>
16708 L:      [email protected]
16709 S:      Supported
16710 B:      https://bugzilla.kernel.org
16711 F:      Documentation/power/
16712 F:      arch/x86/kernel/acpi/
16713 F:      drivers/base/power/
16714 F:      include/linux/freezer.h
16715 F:      include/linux/pm.h
16716 F:      include/linux/suspend.h
16717 F:      kernel/power/
16718
16719 SVGA HANDLING
16720 M:      Martin Mares <[email protected]>
16721 L:      [email protected]
16722 S:      Maintained
16723 F:      Documentation/admin-guide/svga.rst
16724 F:      arch/x86/boot/video*
16725
16726 SWIOTLB SUBSYSTEM
16727 M:      Konrad Rzeszutek Wilk <[email protected]>
16728 L:      [email protected]
16729 S:      Supported
16730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16731 F:      arch/*/kernel/pci-swiotlb.c
16732 F:      include/linux/swiotlb.h
16733 F:      kernel/dma/swiotlb.c
16734
16735 SWITCHDEV
16736 M:      Jiri Pirko <[email protected]>
16737 M:      Ivan Vecera <[email protected]>
16738 L:      [email protected]
16739 S:      Supported
16740 F:      include/net/switchdev.h
16741 F:      net/switchdev/
16742
16743 SY8106A REGULATOR DRIVER
16744 M:      Icenowy Zheng <[email protected]>
16745 S:      Maintained
16746 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16747 F:      drivers/regulator/sy8106a-regulator.c
16748
16749 SYNC FILE FRAMEWORK
16750 M:      Sumit Semwal <[email protected]>
16751 R:      Gustavo Padovan <[email protected]>
16752 L:      [email protected]
16753 L:      [email protected]
16754 S:      Maintained
16755 T:      git git://anongit.freedesktop.org/drm/drm-misc
16756 F:      Documentation/driver-api/sync_file.rst
16757 F:      drivers/dma-buf/dma-fence*
16758 F:      drivers/dma-buf/sw_sync.c
16759 F:      drivers/dma-buf/sync_*
16760 F:      include/linux/sync_file.h
16761 F:      include/uapi/linux/sync_file.h
16762
16763 SYNOPSYS ARC ARCHITECTURE
16764 M:      Vineet Gupta <[email protected]>
16765 L:      [email protected]
16766 S:      Supported
16767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16768 F:      Documentation/devicetree/bindings/arc/*
16769 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16770 F:      arch/arc/
16771 F:      drivers/clocksource/arc_timer.c
16772 F:      drivers/tty/serial/arc_uart.c
16773
16774 SYNOPSYS ARC HSDK SDP pll clock driver
16775 M:      Eugeniy Paltsev <[email protected]>
16776 S:      Supported
16777 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16778 F:      drivers/clk/clk-hsdk-pll.c
16779
16780 SYNOPSYS ARC SDP clock driver
16781 M:      Eugeniy Paltsev <[email protected]>
16782 S:      Supported
16783 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16784 F:      drivers/clk/axs10x/*
16785
16786 SYNOPSYS ARC SDP platform support
16787 M:      Alexey Brodkin <[email protected]>
16788 S:      Supported
16789 F:      Documentation/devicetree/bindings/arc/axs10*
16790 F:      arch/arc/boot/dts/ax*
16791 F:      arch/arc/plat-axs10x
16792
16793 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16794 M:      Eugeniy Paltsev <[email protected]>
16795 S:      Supported
16796 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16797 F:      drivers/reset/reset-axs10x.c
16798
16799 SYNOPSYS CREG GPIO DRIVER
16800 M:      Eugeniy Paltsev <[email protected]>
16801 S:      Maintained
16802 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16803 F:      drivers/gpio/gpio-creg-snps.c
16804
16805 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16806 R:      Andy Shevchenko <[email protected]>
16807 S:      Maintained
16808 F:      drivers/tty/serial/8250/8250_dw.c
16809 F:      drivers/tty/serial/8250/8250_dwlib.*
16810 F:      drivers/tty/serial/8250/8250_lpss.c
16811
16812 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16813 M:      Hoan Tran <[email protected]>
16814 M:      Serge Semin <[email protected]>
16815 L:      [email protected]
16816 S:      Maintained
16817 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16818 F:      drivers/gpio/gpio-dwapb.c
16819
16820 SYNOPSYS DESIGNWARE APB SSI DRIVER
16821 M:      Serge Semin <[email protected]>
16822 L:      [email protected]
16823 S:      Supported
16824 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
16825 F:      drivers/spi/spi-dw*
16826
16827 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16828 M:      Eugeniy Paltsev <[email protected]>
16829 S:      Maintained
16830 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16831 F:      drivers/dma/dw-axi-dmac/
16832
16833 SYNOPSYS DESIGNWARE DMAC DRIVER
16834 M:      Viresh Kumar <[email protected]>
16835 R:      Andy Shevchenko <[email protected]>
16836 S:      Maintained
16837 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16838 F:      drivers/dma/dw/
16839 F:      include/dt-bindings/dma/dw-dmac.h
16840 F:      include/linux/dma/dw.h
16841 F:      include/linux/platform_data/dma-dw.h
16842
16843 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16844 M:      Jose Abreu <[email protected]>
16845 L:      [email protected]
16846 S:      Supported
16847 F:      drivers/net/ethernet/synopsys/
16848
16849 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16850 M:      Jose Abreu <[email protected]>
16851 L:      [email protected]
16852 S:      Supported
16853 F:      drivers/net/phy/mdio-xpcs.c
16854 F:      include/linux/mdio-xpcs.h
16855
16856 SYNOPSYS DESIGNWARE I2C DRIVER
16857 M:      Jarkko Nikula <[email protected]>
16858 R:      Andy Shevchenko <[email protected]>
16859 R:      Mika Westerberg <[email protected]>
16860 L:      [email protected]
16861 S:      Maintained
16862 F:      drivers/i2c/busses/i2c-designware-*
16863 F:      include/linux/platform_data/i2c-designware.h
16864
16865 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16866 M:      Jaehoon Chung <[email protected]>
16867 L:      [email protected]
16868 S:      Maintained
16869 F:      drivers/mmc/host/dw_mmc*
16870
16871 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16872 M:      Eugeniy Paltsev <[email protected]>
16873 S:      Supported
16874 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16875 F:      drivers/reset/reset-hsdk.c
16876 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16877
16878 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16879 M:      Prabu Thangamuthu <[email protected]>
16880 M:      Manjunath M B <[email protected]>
16881 L:      [email protected]
16882 S:      Maintained
16883 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16884
16885 SYSTEM CONFIGURATION (SYSCON)
16886 M:      Lee Jones <[email protected]>
16887 M:      Arnd Bergmann <[email protected]>
16888 S:      Supported
16889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16890 F:      drivers/mfd/syscon.c
16891
16892 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16893 M:      Sudeep Holla <[email protected]>
16894 L:      [email protected]
16895 S:      Maintained
16896 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16897 F:      drivers/clk/clk-sc[mp]i.c
16898 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16899 F:      drivers/firmware/arm_scmi/
16900 F:      drivers/firmware/arm_scpi.c
16901 F:      drivers/reset/reset-scmi.c
16902 F:      include/linux/sc[mp]i_protocol.h
16903 F:      include/trace/events/scmi.h
16904
16905 SYSTEM RESET/SHUTDOWN DRIVERS
16906 M:      Sebastian Reichel <[email protected]>
16907 L:      [email protected]
16908 S:      Maintained
16909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16910 F:      Documentation/devicetree/bindings/power/reset/
16911 F:      drivers/power/reset/
16912
16913 SYSTEM TRACE MODULE CLASS
16914 M:      Alexander Shishkin <[email protected]>
16915 S:      Maintained
16916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16917 F:      Documentation/trace/stm.rst
16918 F:      drivers/hwtracing/stm/
16919 F:      include/linux/stm.h
16920 F:      include/uapi/linux/stm.h
16921
16922 SYSTEM76 ACPI DRIVER
16923 M:      Jeremy Soller <[email protected]>
16924 M:      System76 Product Development <[email protected]>
16925 L:      [email protected]
16926 S:      Maintained
16927 F:      drivers/platform/x86/system76_acpi.c
16928
16929 SYSV FILESYSTEM
16930 M:      Christoph Hellwig <[email protected]>
16931 S:      Maintained
16932 F:      Documentation/filesystems/sysv-fs.rst
16933 F:      fs/sysv/
16934 F:      include/linux/sysv_fs.h
16935
16936 TASKSTATS STATISTICS INTERFACE
16937 M:      Balbir Singh <[email protected]>
16938 S:      Maintained
16939 F:      Documentation/accounting/taskstats*
16940 F:      include/linux/taskstats*
16941 F:      kernel/taskstats.c
16942
16943 TC subsystem
16944 M:      Jamal Hadi Salim <[email protected]>
16945 M:      Cong Wang <[email protected]>
16946 M:      Jiri Pirko <[email protected]>
16947 L:      [email protected]
16948 S:      Maintained
16949 F:      include/net/pkt_cls.h
16950 F:      include/net/pkt_sched.h
16951 F:      include/net/tc_act/
16952 F:      include/uapi/linux/pkt_cls.h
16953 F:      include/uapi/linux/pkt_sched.h
16954 F:      include/uapi/linux/tc_act/
16955 F:      include/uapi/linux/tc_ematch/
16956 F:      net/sched/
16957
16958 TC90522 MEDIA DRIVER
16959 M:      Akihiro Tsukada <[email protected]>
16960 L:      [email protected]
16961 S:      Odd Fixes
16962 F:      drivers/media/dvb-frontends/tc90522*
16963
16964 TCP LOW PRIORITY MODULE
16965 M:      "Wong Hoi Sing, Edison" <[email protected]>
16966 M:      "Hung Hing Lun, Mike" <[email protected]>
16967 S:      Maintained
16968 W:      http://tcp-lp-mod.sourceforge.net/
16969 F:      net/ipv4/tcp_lp.c
16970
16971 TDA10071 MEDIA DRIVER
16972 M:      Antti Palosaari <[email protected]>
16973 L:      [email protected]
16974 S:      Maintained
16975 W:      https://linuxtv.org
16976 W:      http://palosaari.fi/linux/
16977 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16978 T:      git git://linuxtv.org/anttip/media_tree.git
16979 F:      drivers/media/dvb-frontends/tda10071*
16980
16981 TDA18212 MEDIA DRIVER
16982 M:      Antti Palosaari <[email protected]>
16983 L:      [email protected]
16984 S:      Maintained
16985 W:      https://linuxtv.org
16986 W:      http://palosaari.fi/linux/
16987 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16988 T:      git git://linuxtv.org/anttip/media_tree.git
16989 F:      drivers/media/tuners/tda18212*
16990
16991 TDA18218 MEDIA DRIVER
16992 M:      Antti Palosaari <[email protected]>
16993 L:      [email protected]
16994 S:      Maintained
16995 W:      https://linuxtv.org
16996 W:      http://palosaari.fi/linux/
16997 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16998 T:      git git://linuxtv.org/anttip/media_tree.git
16999 F:      drivers/media/tuners/tda18218*
17000
17001 TDA18250 MEDIA DRIVER
17002 M:      Olli Salonen <[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/media_tree.git
17008 F:      drivers/media/tuners/tda18250*
17009
17010 TDA18271 MEDIA DRIVER
17011 M:      Michael Krufky <[email protected]>
17012 L:      [email protected]
17013 S:      Maintained
17014 W:      https://linuxtv.org
17015 W:      http://github.com/mkrufky
17016 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17017 T:      git git://linuxtv.org/mkrufky/tuners.git
17018 F:      drivers/media/tuners/tda18271*
17019
17020 TDA1997x MEDIA DRIVER
17021 M:      Tim Harvey <[email protected]>
17022 L:      [email protected]
17023 S:      Maintained
17024 W:      https://linuxtv.org
17025 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17026 F:      drivers/media/i2c/tda1997x.*
17027
17028 TDA827x MEDIA DRIVER
17029 M:      Michael Krufky <[email protected]>
17030 L:      [email protected]
17031 S:      Maintained
17032 W:      https://linuxtv.org
17033 W:      http://github.com/mkrufky
17034 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17035 T:      git git://linuxtv.org/mkrufky/tuners.git
17036 F:      drivers/media/tuners/tda8290.*
17037
17038 TDA8290 MEDIA DRIVER
17039 M:      Michael Krufky <[email protected]>
17040 L:      [email protected]
17041 S:      Maintained
17042 W:      https://linuxtv.org
17043 W:      http://github.com/mkrufky
17044 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17045 T:      git git://linuxtv.org/mkrufky/tuners.git
17046 F:      drivers/media/tuners/tda8290.*
17047
17048 TDA9840 MEDIA DRIVER
17049 M:      Hans Verkuil <[email protected]>
17050 L:      [email protected]
17051 S:      Maintained
17052 W:      https://linuxtv.org
17053 T:      git git://linuxtv.org/media_tree.git
17054 F:      drivers/media/i2c/tda9840*
17055
17056 TEA5761 TUNER DRIVER
17057 M:      Mauro Carvalho Chehab <[email protected]>
17058 L:      [email protected]
17059 S:      Odd fixes
17060 W:      https://linuxtv.org
17061 T:      git git://linuxtv.org/media_tree.git
17062 F:      drivers/media/tuners/tea5761.*
17063
17064 TEA5767 TUNER DRIVER
17065 M:      Mauro Carvalho Chehab <[email protected]>
17066 L:      [email protected]
17067 S:      Maintained
17068 W:      https://linuxtv.org
17069 T:      git git://linuxtv.org/media_tree.git
17070 F:      drivers/media/tuners/tea5767.*
17071
17072 TEA6415C MEDIA DRIVER
17073 M:      Hans Verkuil <[email protected]>
17074 L:      [email protected]
17075 S:      Maintained
17076 W:      https://linuxtv.org
17077 T:      git git://linuxtv.org/media_tree.git
17078 F:      drivers/media/i2c/tea6415c*
17079
17080 TEA6420 MEDIA DRIVER
17081 M:      Hans Verkuil <[email protected]>
17082 L:      [email protected]
17083 S:      Maintained
17084 W:      https://linuxtv.org
17085 T:      git git://linuxtv.org/media_tree.git
17086 F:      drivers/media/i2c/tea6420*
17087
17088 TEAM DRIVER
17089 M:      Jiri Pirko <[email protected]>
17090 L:      [email protected]
17091 S:      Supported
17092 F:      drivers/net/team/
17093 F:      include/linux/if_team.h
17094 F:      include/uapi/linux/if_team.h
17095
17096 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17097 M:      "Savoir-faire Linux Inc." <[email protected]>
17098 S:      Maintained
17099 F:      arch/x86/platform/ts5500/
17100
17101 TECHNOTREND USB IR RECEIVER
17102 M:      Sean Young <[email protected]>
17103 L:      [email protected]
17104 S:      Maintained
17105 F:      drivers/media/rc/ttusbir.c
17106
17107 TECHWELL TW9910 VIDEO DECODER
17108 L:      [email protected]
17109 S:      Orphan
17110 F:      drivers/media/i2c/tw9910.c
17111 F:      include/media/i2c/tw9910.h
17112
17113 TEE SUBSYSTEM
17114 M:      Jens Wiklander <[email protected]>
17115 L:      [email protected]
17116 S:      Maintained
17117 F:      Documentation/staging/tee.rst
17118 F:      drivers/tee/
17119 F:      include/linux/tee_drv.h
17120 F:      include/uapi/linux/tee.h
17121
17122 TEGRA ARCHITECTURE SUPPORT
17123 M:      Thierry Reding <[email protected]>
17124 M:      Jonathan Hunter <[email protected]>
17125 L:      [email protected]
17126 S:      Supported
17127 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17129 N:      [^a-z]tegra
17130
17131 TEGRA CLOCK DRIVER
17132 M:      Peter De Schrijver <[email protected]>
17133 M:      Prashant Gaikwad <[email protected]>
17134 S:      Supported
17135 F:      drivers/clk/tegra/
17136
17137 TEGRA DMA DRIVERS
17138 M:      Laxman Dewangan <[email protected]>
17139 M:      Jon Hunter <[email protected]>
17140 S:      Supported
17141 F:      drivers/dma/tegra*
17142
17143 TEGRA I2C DRIVER
17144 M:      Laxman Dewangan <[email protected]>
17145 R:      Dmitry Osipenko <[email protected]>
17146 S:      Supported
17147 F:      drivers/i2c/busses/i2c-tegra.c
17148
17149 TEGRA IOMMU DRIVERS
17150 M:      Thierry Reding <[email protected]>
17151 R:      Krishna Reddy <[email protected]>
17152 L:      [email protected]
17153 S:      Supported
17154 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17155 F:      drivers/iommu/tegra*
17156
17157 TEGRA KBC DRIVER
17158 M:      Laxman Dewangan <[email protected]>
17159 S:      Supported
17160 F:      drivers/input/keyboard/tegra-kbc.c
17161
17162 TEGRA NAND DRIVER
17163 M:      Stefan Agner <[email protected]>
17164 M:      Lucas Stach <[email protected]>
17165 S:      Maintained
17166 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17167 F:      drivers/mtd/nand/raw/tegra_nand.c
17168
17169 TEGRA PWM DRIVER
17170 M:      Thierry Reding <[email protected]>
17171 S:      Supported
17172 F:      drivers/pwm/pwm-tegra.c
17173
17174 TEGRA SERIAL DRIVER
17175 M:      Laxman Dewangan <[email protected]>
17176 S:      Supported
17177 F:      drivers/tty/serial/serial-tegra.c
17178
17179 TEGRA SPI DRIVER
17180 M:      Laxman Dewangan <[email protected]>
17181 S:      Supported
17182 F:      drivers/spi/spi-tegra*
17183
17184 TEGRA VIDEO DRIVER
17185 M:      Thierry Reding <[email protected]>
17186 M:      Jonathan Hunter <[email protected]>
17187 M:      Sowjanya Komatineni <[email protected]>
17188 L:      [email protected]
17189 L:      [email protected]
17190 S:      Maintained
17191 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17192 F:      drivers/staging/media/tegra-video/
17193
17194 TEGRA XUSB PADCTL DRIVER
17195 M:      JC Kuo <[email protected]>
17196 S:      Supported
17197 F:      drivers/phy/tegra/xusb*
17198
17199 TEHUTI ETHERNET DRIVER
17200 M:      Andy Gospodarek <[email protected]>
17201 L:      [email protected]
17202 S:      Supported
17203 F:      drivers/net/ethernet/tehuti/*
17204
17205 TELECOM CLOCK DRIVER FOR MCPL0010
17206 M:      Mark Gross <[email protected]>
17207 S:      Supported
17208 F:      drivers/char/tlclk.c
17209
17210 TEMPO SEMICONDUCTOR DRIVERS
17211 M:      Steven Eckhoff <[email protected]>
17212 S:      Maintained
17213 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17214 F:      sound/soc/codecs/tscs*.c
17215 F:      sound/soc/codecs/tscs*.h
17216
17217 TENSILICA XTENSA PORT (xtensa)
17218 M:      Chris Zankel <[email protected]>
17219 M:      Max Filippov <[email protected]>
17220 L:      [email protected]
17221 S:      Maintained
17222 T:      git git://github.com/czankel/xtensa-linux.git
17223 F:      arch/xtensa/
17224 F:      drivers/irqchip/irq-xtensa-*
17225
17226 TEXAS INSTRUMENTS ASoC DRIVERS
17227 M:      Peter Ujfalusi <[email protected]>
17228 L:      [email protected] (moderated for non-subscribers)
17229 S:      Maintained
17230 F:      sound/soc/ti/
17231
17232 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17233 M:      Ricardo Ribalda <[email protected]>
17234 L:      [email protected]
17235 S:      Supported
17236 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17237 F:      drivers/iio/dac/ti-dac7612.c
17238
17239 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17240 M:      Nishanth Menon <[email protected]>
17241 M:      Tero Kristo <[email protected]>
17242 M:      Santosh Shilimkar <[email protected]>
17243 L:      [email protected]
17244 S:      Maintained
17245 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17246 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17247 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17248 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17249 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17250 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17251 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17252 F:      drivers/clk/keystone/sci-clk.c
17253 F:      drivers/firmware/ti_sci*
17254 F:      drivers/irqchip/irq-ti-sci-inta.c
17255 F:      drivers/irqchip/irq-ti-sci-intr.c
17256 F:      drivers/reset/reset-ti-sci.c
17257 F:      drivers/soc/ti/ti_sci_inta_msi.c
17258 F:      drivers/soc/ti/ti_sci_pm_domains.c
17259 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17260 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17261 F:      include/linux/soc/ti/ti_sci_protocol.h
17262
17263 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17264 M:      Hans Verkuil <[email protected]>
17265 L:      [email protected]
17266 S:      Maintained
17267 W:      https://linuxtv.org
17268 T:      git git://linuxtv.org/media_tree.git
17269 F:      drivers/media/radio/radio-raremono.c
17270
17271 THERMAL
17272 M:      Zhang Rui <[email protected]>
17273 M:      Daniel Lezcano <[email protected]>
17274 R:      Amit Kucheria <[email protected]>
17275 L:      [email protected]
17276 S:      Supported
17277 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17279 F:      Documentation/devicetree/bindings/thermal/
17280 F:      drivers/thermal/
17281 F:      include/linux/cpu_cooling.h
17282 F:      include/linux/thermal.h
17283 F:      include/uapi/linux/thermal.h
17284
17285 THERMAL DRIVER FOR AMLOGIC SOCS
17286 M:      Guillaume La Roque <[email protected]>
17287 L:      [email protected]
17288 L:      [email protected]
17289 S:      Supported
17290 W:      http://linux-meson.com/
17291 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17292 F:      drivers/thermal/amlogic_thermal.c
17293
17294 THERMAL/CPU_COOLING
17295 M:      Amit Daniel Kachhap <[email protected]>
17296 M:      Daniel Lezcano <[email protected]>
17297 M:      Viresh Kumar <[email protected]>
17298 M:      Javi Merino <[email protected]>
17299 L:      [email protected]
17300 S:      Supported
17301 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17302 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17303 F:      drivers/thermal/cpufreq_cooling.c
17304 F:      drivers/thermal/cpuidle_cooling.c
17305 F:      include/linux/cpu_cooling.h
17306
17307 THERMAL/POWER_ALLOCATOR
17308 M:      Lukasz Luba <[email protected]>
17309 L:      [email protected]
17310 S:      Maintained
17311 F:      Documentation/driver-api/thermal/power_allocator.rst
17312 F:      drivers/thermal/gov_power_allocator.c
17313 F:      include/trace/events/thermal_power_allocator.h
17314
17315 THINKPAD ACPI EXTRAS DRIVER
17316 M:      Henrique de Moraes Holschuh <[email protected]>
17317 L:      [email protected]
17318 L:      [email protected]
17319 S:      Maintained
17320 W:      http://ibm-acpi.sourceforge.net
17321 W:      http://thinkwiki.org/wiki/Ibm-acpi
17322 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17323 F:      drivers/platform/x86/thinkpad_acpi.c
17324
17325 THUNDERBOLT DRIVER
17326 M:      Andreas Noever <[email protected]>
17327 M:      Michael Jamet <[email protected]>
17328 M:      Mika Westerberg <[email protected]>
17329 M:      Yehezkel Bernat <[email protected]>
17330 L:      [email protected]
17331 S:      Maintained
17332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17333 F:      Documentation/admin-guide/thunderbolt.rst
17334 F:      drivers/thunderbolt/
17335 F:      include/linux/thunderbolt.h
17336
17337 THUNDERBOLT NETWORK DRIVER
17338 M:      Michael Jamet <[email protected]>
17339 M:      Mika Westerberg <[email protected]>
17340 M:      Yehezkel Bernat <[email protected]>
17341 L:      [email protected]
17342 S:      Maintained
17343 F:      drivers/net/thunderbolt.c
17344
17345 THUNDERX GPIO DRIVER
17346 M:      Robert Richter <[email protected]>
17347 S:      Odd Fixes
17348 F:      drivers/gpio/gpio-thunderx.c
17349
17350 TI AM437X VPFE DRIVER
17351 M:      "Lad, Prabhakar" <[email protected]>
17352 L:      [email protected]
17353 S:      Maintained
17354 W:      https://linuxtv.org
17355 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17356 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17357 F:      drivers/media/platform/am437x/
17358
17359 TI BANDGAP AND THERMAL DRIVER
17360 M:      Eduardo Valentin <[email protected]>
17361 M:      Keerthy <[email protected]>
17362 L:      [email protected]
17363 L:      [email protected]
17364 S:      Maintained
17365 F:      drivers/thermal/ti-soc-thermal/
17366
17367 TI BQ27XXX POWER SUPPLY DRIVER
17368 R:      Andrew F. Davis <[email protected]>
17369 F:      drivers/power/supply/bq27xxx_battery.c
17370 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17371 F:      include/linux/power/bq27xxx_battery.h
17372
17373 TI CDCE706 CLOCK DRIVER
17374 M:      Max Filippov <[email protected]>
17375 S:      Maintained
17376 F:      drivers/clk/clk-cdce706.c
17377
17378 TI CLOCK DRIVER
17379 M:      Tero Kristo <[email protected]>
17380 L:      [email protected]
17381 S:      Maintained
17382 F:      drivers/clk/ti/
17383 F:      include/linux/clk/ti.h
17384
17385 TI DAVINCI MACHINE SUPPORT
17386 M:      Sekhar Nori <[email protected]>
17387 R:      Bartosz Golaszewski <[email protected]>
17388 L:      [email protected] (moderated for non-subscribers)
17389 S:      Supported
17390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17391 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17392 F:      arch/arm/boot/dts/da850*
17393 F:      arch/arm/mach-davinci/
17394 F:      drivers/i2c/busses/i2c-davinci.c
17395
17396 TI DAVINCI SERIES CLOCK DRIVER
17397 M:      David Lechner <[email protected]>
17398 R:      Sekhar Nori <[email protected]>
17399 S:      Maintained
17400 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17401 F:      drivers/clk/davinci/
17402
17403 TI DAVINCI SERIES GPIO DRIVER
17404 M:      Keerthy <[email protected]>
17405 L:      [email protected]
17406 S:      Maintained
17407 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17408 F:      drivers/gpio/gpio-davinci.c
17409
17410 TI DAVINCI SERIES MEDIA DRIVER
17411 M:      "Lad, Prabhakar" <[email protected]>
17412 L:      [email protected]
17413 S:      Maintained
17414 W:      https://linuxtv.org
17415 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17416 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17417 F:      drivers/media/platform/davinci/
17418 F:      include/media/davinci/
17419
17420 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17421 R:      David Lechner <[email protected]>
17422 L:      [email protected]
17423 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17424 F:      drivers/counter/ti-eqep.c
17425
17426 TI ETHERNET SWITCH DRIVER (CPSW)
17427 R:      Grygorii Strashko <[email protected]>
17428 L:      [email protected]
17429 L:      [email protected]
17430 S:      Maintained
17431 F:      drivers/net/ethernet/ti/cpsw*
17432 F:      drivers/net/ethernet/ti/davinci*
17433
17434 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17435 M:      Alex Dubov <[email protected]>
17436 S:      Maintained
17437 W:      http://tifmxx.berlios.de/
17438 F:      drivers/memstick/host/tifm_ms.c
17439 F:      drivers/misc/tifm*
17440 F:      drivers/mmc/host/tifm_sd.c
17441 F:      include/linux/tifm.h
17442
17443 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17444 M:      Santosh Shilimkar <[email protected]>
17445 L:      [email protected]
17446 L:      [email protected] (moderated for non-subscribers)
17447 S:      Maintained
17448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17449 F:      drivers/soc/ti/*
17450
17451 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17452 M:      M R Swami Reddy <[email protected]>
17453 M:      Vishwas A Deshpande <[email protected]>
17454 L:      [email protected] (moderated for non-subscribers)
17455 S:      Maintained
17456 F:      sound/soc/codecs/isabelle*
17457 F:      sound/soc/codecs/lm49453*
17458
17459 TI LP855x BACKLIGHT DRIVER
17460 M:      Milo Kim <[email protected]>
17461 S:      Maintained
17462 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17463 F:      drivers/video/backlight/lp855x_bl.c
17464 F:      include/linux/platform_data/lp855x.h
17465
17466 TI LP8727 CHARGER DRIVER
17467 M:      Milo Kim <[email protected]>
17468 S:      Maintained
17469 F:      drivers/power/supply/lp8727_charger.c
17470 F:      include/linux/platform_data/lp8727.h
17471
17472 TI LP8788 MFD DRIVER
17473 M:      Milo Kim <[email protected]>
17474 S:      Maintained
17475 F:      drivers/iio/adc/lp8788_adc.c
17476 F:      drivers/leds/leds-lp8788.c
17477 F:      drivers/mfd/lp8788*.c
17478 F:      drivers/power/supply/lp8788-charger.c
17479 F:      drivers/regulator/lp8788-*.c
17480 F:      include/linux/mfd/lp8788*.h
17481
17482 TI NETCP ETHERNET DRIVER
17483 M:      Wingman Kwok <[email protected]>
17484 M:      Murali Karicheri <[email protected]>
17485 L:      [email protected]
17486 S:      Maintained
17487 F:      drivers/net/ethernet/ti/netcp*
17488
17489 TI PCM3060 ASoC CODEC DRIVER
17490 M:      Kirill Marinushkin <[email protected]>
17491 L:      [email protected] (moderated for non-subscribers)
17492 S:      Maintained
17493 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17494 F:      sound/soc/codecs/pcm3060*
17495
17496 TI TAS571X FAMILY ASoC CODEC DRIVER
17497 M:      Kevin Cernekee <[email protected]>
17498 L:      [email protected] (moderated for non-subscribers)
17499 S:      Odd Fixes
17500 F:      sound/soc/codecs/tas571x*
17501
17502 TI TCAN4X5X DEVICE DRIVER
17503 M:      Dan Murphy <[email protected]>
17504 L:      [email protected]
17505 S:      Maintained
17506 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17507 F:      drivers/net/can/m_can/tcan4x5x.c
17508
17509 TI TRF7970A NFC DRIVER
17510 M:      Mark Greer <[email protected]>
17511 L:      [email protected]
17512 L:      [email protected] (moderated for non-subscribers)
17513 S:      Supported
17514 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17515 F:      drivers/nfc/trf7970a.c
17516
17517 TI TWL4030 SERIES SOC CODEC DRIVER
17518 M:      Peter Ujfalusi <[email protected]>
17519 L:      [email protected] (moderated for non-subscribers)
17520 S:      Maintained
17521 F:      sound/soc/codecs/twl4030*
17522
17523 TI VPE/CAL DRIVERS
17524 M:      Benoit Parrot <[email protected]>
17525 L:      [email protected]
17526 S:      Maintained
17527 W:      http://linuxtv.org/
17528 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17529 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17530 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17531 F:      drivers/media/platform/ti-vpe/
17532
17533 TI WILINK WIRELESS DRIVERS
17534 L:      [email protected]
17535 S:      Orphan
17536 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17537 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17539 F:      drivers/net/wireless/ti/
17540 F:      include/linux/wl12xx.h
17541
17542 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17543 M:      John Stultz <[email protected]>
17544 M:      Thomas Gleixner <[email protected]>
17545 R:      Stephen Boyd <[email protected]>
17546 L:      [email protected]
17547 S:      Supported
17548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17549 F:      include/linux/clocksource.h
17550 F:      include/linux/time.h
17551 F:      include/linux/timex.h
17552 F:      include/uapi/linux/time.h
17553 F:      include/uapi/linux/timex.h
17554 F:      kernel/time/alarmtimer.c
17555 F:      kernel/time/clocksource.c
17556 F:      kernel/time/ntp.c
17557 F:      kernel/time/time*.c
17558 F:      tools/testing/selftests/timers/
17559
17560 TIPC NETWORK LAYER
17561 M:      Jon Maloy <[email protected]>
17562 M:      Ying Xue <[email protected]>
17563 L:      [email protected] (core kernel code)
17564 L:      [email protected] (user apps, general discussion)
17565 S:      Maintained
17566 W:      http://tipc.sourceforge.net/
17567 F:      include/uapi/linux/tipc*.h
17568 F:      net/tipc/
17569
17570 TLAN NETWORK DRIVER
17571 M:      Samuel Chessman <[email protected]>
17572 L:      [email protected] (subscribers-only)
17573 S:      Maintained
17574 W:      http://sourceforge.net/projects/tlan/
17575 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17576 F:      drivers/net/ethernet/ti/tlan.*
17577
17578 TM6000 VIDEO4LINUX DRIVER
17579 M:      Mauro Carvalho Chehab <[email protected]>
17580 L:      [email protected]
17581 S:      Odd fixes
17582 W:      https://linuxtv.org
17583 T:      git git://linuxtv.org/media_tree.git
17584 F:      Documentation/admin-guide/media/tm6000*
17585 F:      drivers/media/usb/tm6000/
17586
17587 TMIO/SDHI MMC DRIVER
17588 M:      Wolfram Sang <[email protected]>
17589 L:      [email protected]
17590 S:      Supported
17591 F:      drivers/mmc/host/renesas_sdhi*
17592 F:      drivers/mmc/host/tmio_mmc*
17593 F:      include/linux/mfd/tmio.h
17594
17595 TMP401 HARDWARE MONITOR DRIVER
17596 M:      Guenter Roeck <[email protected]>
17597 L:      [email protected]
17598 S:      Maintained
17599 F:      Documentation/hwmon/tmp401.rst
17600 F:      drivers/hwmon/tmp401.c
17601
17602 TMP513 HARDWARE MONITOR DRIVER
17603 M:      Eric Tremblay <[email protected]>
17604 L:      [email protected]
17605 S:      Maintained
17606 F:      Documentation/hwmon/tmp513.rst
17607 F:      drivers/hwmon/tmp513.c
17608
17609 TMPFS (SHMEM FILESYSTEM)
17610 M:      Hugh Dickins <[email protected]>
17611 L:      [email protected]
17612 S:      Maintained
17613 F:      include/linux/shmem_fs.h
17614 F:      mm/shmem.c
17615
17616 TOMOYO SECURITY MODULE
17617 M:      Kentaro Takeda <[email protected]>
17618 M:      Tetsuo Handa <[email protected]>
17619 L:      [email protected] (subscribers-only, for developers in English)
17620 L:      [email protected] (subscribers-only, for users in English)
17621 L:      [email protected] (subscribers-only, for developers in Japanese)
17622 L:      [email protected] (subscribers-only, for users in Japanese)
17623 S:      Maintained
17624 W:      https://tomoyo.osdn.jp/
17625 F:      security/tomoyo/
17626
17627 TOPSTAR LAPTOP EXTRAS DRIVER
17628 M:      Herton Ronaldo Krzesinski <[email protected]>
17629 L:      [email protected]
17630 S:      Maintained
17631 F:      drivers/platform/x86/topstar-laptop.c
17632
17633 TORTURE-TEST MODULES
17634 M:      Davidlohr Bueso <[email protected]>
17635 M:      "Paul E. McKenney" <[email protected]>
17636 M:      Josh Triplett <[email protected]>
17637 L:      [email protected]
17638 S:      Supported
17639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17640 F:      Documentation/RCU/torture.rst
17641 F:      kernel/locking/locktorture.c
17642 F:      kernel/rcu/rcuperf.c
17643 F:      kernel/rcu/rcutorture.c
17644 F:      kernel/torture.c
17645
17646 TOSHIBA ACPI EXTRAS DRIVER
17647 M:      Azael Avalos <[email protected]>
17648 L:      [email protected]
17649 S:      Maintained
17650 F:      drivers/platform/x86/toshiba_acpi.c
17651
17652 TOSHIBA BLUETOOTH DRIVER
17653 M:      Azael Avalos <[email protected]>
17654 L:      [email protected]
17655 S:      Maintained
17656 F:      drivers/platform/x86/toshiba_bluetooth.c
17657
17658 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17659 M:      Azael Avalos <[email protected]>
17660 L:      [email protected]
17661 S:      Maintained
17662 F:      drivers/platform/x86/toshiba_haps.c
17663
17664 TOSHIBA SMM DRIVER
17665 M:      Jonathan Buzzard <[email protected]>
17666 S:      Maintained
17667 W:      http://www.buzzard.org.uk/toshiba/
17668 F:      drivers/char/toshiba.c
17669 F:      include/linux/toshiba.h
17670 F:      include/uapi/linux/toshiba.h
17671
17672 TOSHIBA TC358743 DRIVER
17673 M:      Mats Randgaard <[email protected]>
17674 L:      [email protected]
17675 S:      Maintained
17676 F:      drivers/media/i2c/tc358743*
17677 F:      include/media/i2c/tc358743.h
17678
17679 TOSHIBA WMI HOTKEYS DRIVER
17680 M:      Azael Avalos <[email protected]>
17681 L:      [email protected]
17682 S:      Maintained
17683 F:      drivers/platform/x86/toshiba-wmi.c
17684
17685 TPM DEVICE DRIVER
17686 M:      Peter Huewe <[email protected]>
17687 M:      Jarkko Sakkinen <[email protected]>
17688 R:      Jason Gunthorpe <[email protected]>
17689 L:      [email protected]
17690 S:      Maintained
17691 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17692 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
17694 F:      drivers/char/tpm/
17695
17696 TRACING
17697 M:      Steven Rostedt <[email protected]>
17698 M:      Ingo Molnar <[email protected]>
17699 S:      Maintained
17700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17701 F:      Documentation/trace/ftrace.rst
17702 F:      arch/*/*/*/ftrace.h
17703 F:      arch/*/kernel/ftrace.c
17704 F:      include/*/ftrace.h
17705 F:      include/linux/trace*.h
17706 F:      include/trace/
17707 F:      kernel/trace/
17708 F:      tools/testing/selftests/ftrace/
17709
17710 TRACING MMIO ACCESSES (MMIOTRACE)
17711 M:      Steven Rostedt <[email protected]>
17712 M:      Ingo Molnar <[email protected]>
17713 R:      Karol Herbst <[email protected]>
17714 R:      Pekka Paalanen <[email protected]>
17715 L:      [email protected]
17716 L:      [email protected]
17717 S:      Maintained
17718 F:      arch/x86/mm/kmmio.c
17719 F:      arch/x86/mm/mmio-mod.c
17720 F:      arch/x86/mm/testmmiotrace.c
17721 F:      include/linux/mmiotrace.h
17722 F:      kernel/trace/trace_mmiotrace.c
17723
17724 TRIVIAL PATCHES
17725 M:      Jiri Kosina <[email protected]>
17726 S:      Maintained
17727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17728 K:      ^Subject:.*(?i)trivial
17729
17730 TTY LAYER
17731 M:      Greg Kroah-Hartman <[email protected]>
17732 M:      Jiri Slaby <[email protected]>
17733 S:      Supported
17734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17735 F:      Documentation/driver-api/serial/
17736 F:      drivers/tty/
17737 F:      drivers/tty/serial/serial_core.c
17738 F:      include/linux/serial.h
17739 F:      include/linux/serial_core.h
17740 F:      include/linux/tty.h
17741 F:      include/uapi/linux/serial.h
17742 F:      include/uapi/linux/serial_core.h
17743 F:      include/uapi/linux/tty.h
17744
17745 TUA9001 MEDIA DRIVER
17746 M:      Antti Palosaari <[email protected]>
17747 L:      [email protected]
17748 S:      Maintained
17749 W:      https://linuxtv.org
17750 W:      http://palosaari.fi/linux/
17751 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17752 T:      git git://linuxtv.org/anttip/media_tree.git
17753 F:      drivers/media/tuners/tua9001*
17754
17755 TULIP NETWORK DRIVERS
17756 L:      [email protected]
17757 L:      [email protected]
17758 S:      Orphan
17759 F:      drivers/net/ethernet/dec/tulip/
17760
17761 TUN/TAP driver
17762 M:      Maxim Krasnyansky <[email protected]>
17763 S:      Maintained
17764 W:      http://vtun.sourceforge.net/tun
17765 F:      Documentation/networking/tuntap.rst
17766 F:      arch/um/os-Linux/drivers/
17767
17768 TURBOCHANNEL SUBSYSTEM
17769 M:      "Maciej W. Rozycki" <[email protected]>
17770 M:      Ralf Baechle <[email protected]>
17771 L:      [email protected]
17772 S:      Maintained
17773 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17774 F:      drivers/tc/
17775 F:      include/linux/tc.h
17776
17777 TURBOSTAT UTILITY
17778 M:      "Len Brown" <[email protected]>
17779 L:      [email protected]
17780 S:      Supported
17781 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17782 B:      https://bugzilla.kernel.org
17783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17784 F:      tools/power/x86/turbostat/
17785
17786 TW5864 VIDEO4LINUX DRIVER
17787 M:      Bluecherry Maintainers <[email protected]>
17788 M:      Anton Sviridenko <[email protected]>
17789 M:      Andrey Utkin <[email protected]>
17790 M:      Andrey Utkin <[email protected]>
17791 L:      [email protected]
17792 S:      Supported
17793 F:      drivers/media/pci/tw5864/
17794
17795 TW68 VIDEO4LINUX DRIVER
17796 M:      Hans Verkuil <[email protected]>
17797 L:      [email protected]
17798 S:      Odd Fixes
17799 W:      https://linuxtv.org
17800 T:      git git://linuxtv.org/media_tree.git
17801 F:      drivers/media/pci/tw68/
17802
17803 TW686X VIDEO4LINUX DRIVER
17804 M:      Ezequiel Garcia <[email protected]>
17805 L:      [email protected]
17806 S:      Maintained
17807 W:      http://linuxtv.org
17808 T:      git git://linuxtv.org/media_tree.git
17809 F:      drivers/media/pci/tw686x/
17810
17811 UACCE ACCELERATOR FRAMEWORK
17812 M:      Zhangfei Gao <[email protected]>
17813 M:      Zhou Wang <[email protected]>
17814 L:      [email protected]
17815 L:      [email protected]
17816 S:      Maintained
17817 F:      Documentation/ABI/testing/sysfs-driver-uacce
17818 F:      Documentation/misc-devices/uacce.rst
17819 F:      drivers/misc/uacce/
17820 F:      include/linux/uacce.h
17821 F:      include/uapi/misc/uacce/
17822
17823 UBI FILE SYSTEM (UBIFS)
17824 M:      Richard Weinberger <[email protected]>
17825 L:      [email protected]
17826 S:      Supported
17827 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17830 F:      Documentation/filesystems/ubifs-authentication.rst
17831 F:      Documentation/filesystems/ubifs.rst
17832 F:      fs/ubifs/
17833
17834 UCLINUX (M68KNOMMU AND COLDFIRE)
17835 M:      Greg Ungerer <[email protected]>
17836 L:      [email protected]
17837 L:      [email protected]  (subscribers-only)
17838 S:      Maintained
17839 W:      http://www.linux-m68k.org/
17840 W:      http://www.uclinux.org/
17841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17842 F:      arch/m68k/*/*_no.*
17843 F:      arch/m68k/68*/
17844 F:      arch/m68k/coldfire/
17845 F:      arch/m68k/include/asm/*_no.*
17846
17847 UDF FILESYSTEM
17848 M:      Jan Kara <[email protected]>
17849 S:      Maintained
17850 F:      Documentation/filesystems/udf.rst
17851 F:      fs/udf/
17852
17853 UDRAW TABLET
17854 M:      Bastien Nocera <[email protected]>
17855 L:      [email protected]
17856 S:      Maintained
17857 F:      drivers/hid/hid-udraw-ps3.c
17858
17859 UFS FILESYSTEM
17860 M:      Evgeniy Dushistov <[email protected]>
17861 S:      Maintained
17862 F:      Documentation/admin-guide/ufs.rst
17863 F:      fs/ufs/
17864
17865 UHID USERSPACE HID IO DRIVER
17866 M:      David Rheinsberg <[email protected]>
17867 L:      [email protected]
17868 S:      Maintained
17869 F:      drivers/hid/uhid.c
17870 F:      include/uapi/linux/uhid.h
17871
17872 ULPI BUS
17873 M:      Heikki Krogerus <[email protected]>
17874 L:      [email protected]
17875 S:      Maintained
17876 F:      drivers/usb/common/ulpi.c
17877 F:      include/linux/ulpi/
17878
17879 UNICODE SUBSYSTEM
17880 M:      Gabriel Krisman Bertazi <[email protected]>
17881 L:      [email protected]
17882 S:      Supported
17883 F:      fs/unicode/
17884
17885 UNIFDEF
17886 M:      Tony Finch <[email protected]>
17887 S:      Maintained
17888 W:      http://dotat.at/prog/unifdef
17889 F:      scripts/unifdef.c
17890
17891 UNIFORM CDROM DRIVER
17892 M:      Jens Axboe <[email protected]>
17893 S:      Maintained
17894 W:      http://www.kernel.dk
17895 F:      Documentation/cdrom/
17896 F:      drivers/cdrom/cdrom.c
17897 F:      include/linux/cdrom.h
17898 F:      include/uapi/linux/cdrom.h
17899
17900 UNISYS S-PAR DRIVERS
17901 M:      David Kershner <[email protected]>
17902 L:      [email protected] (Unisys internal)
17903 S:      Supported
17904 F:      drivers/staging/unisys/
17905 F:      drivers/visorbus/
17906 F:      include/linux/visorbus.h
17907
17908 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17909 R:      Alim Akhtar <[email protected]>
17910 R:      Avri Altman <[email protected]>
17911 L:      [email protected]
17912 S:      Supported
17913 F:      Documentation/scsi/ufs.rst
17914 F:      drivers/scsi/ufs/
17915
17916 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17917 M:      Pedro Sousa <[email protected]>
17918 L:      [email protected]
17919 S:      Supported
17920 F:      drivers/scsi/ufs/*dwc*
17921
17922 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17923 M:      Stanley Chu <[email protected]>
17924 L:      [email protected]
17925 L:      [email protected] (moderated for non-subscribers)
17926 S:      Maintained
17927 F:      drivers/scsi/ufs/ufs-mediatek*
17928
17929 UNSORTED BLOCK IMAGES (UBI)
17930 M:      Richard Weinberger <[email protected]>
17931 L:      [email protected]
17932 S:      Supported
17933 W:      http://www.linux-mtd.infradead.org/
17934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17936 F:      drivers/mtd/ubi/
17937 F:      include/linux/mtd/ubi.h
17938 F:      include/uapi/mtd/ubi-user.h
17939
17940 USB "USBNET" DRIVER FRAMEWORK
17941 M:      Oliver Neukum <[email protected]>
17942 L:      [email protected]
17943 S:      Maintained
17944 W:      http://www.linux-usb.org/usbnet
17945 F:      drivers/net/usb/usbnet.c
17946 F:      include/linux/usb/usbnet.h
17947
17948 USB ACM DRIVER
17949 M:      Oliver Neukum <[email protected]>
17950 L:      [email protected]
17951 S:      Maintained
17952 F:      Documentation/usb/acm.rst
17953 F:      drivers/usb/class/cdc-acm.*
17954
17955 USB APPLE MFI FASTCHARGE DRIVER
17956 M:      Bastien Nocera <[email protected]>
17957 L:      [email protected]
17958 S:      Maintained
17959 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17960
17961 USB AR5523 WIRELESS DRIVER
17962 M:      Pontus Fuchs <[email protected]>
17963 L:      [email protected]
17964 S:      Maintained
17965 F:      drivers/net/wireless/ath/ar5523/
17966
17967 USB ATTACHED SCSI
17968 M:      Oliver Neukum <[email protected]>
17969 L:      [email protected]
17970 L:      [email protected]
17971 S:      Maintained
17972 F:      drivers/usb/storage/uas.c
17973
17974 USB CDC ETHERNET DRIVER
17975 M:      Oliver Neukum <[email protected]>
17976 L:      [email protected]
17977 S:      Maintained
17978 F:      drivers/net/usb/cdc_*.c
17979 F:      include/uapi/linux/usb/cdc.h
17980
17981 USB CHAOSKEY DRIVER
17982 M:      Keith Packard <[email protected]>
17983 L:      [email protected]
17984 S:      Maintained
17985 F:      drivers/usb/misc/chaoskey.c
17986
17987 USB CYPRESS C67X00 DRIVER
17988 M:      Peter Korsgaard <[email protected]>
17989 L:      [email protected]
17990 S:      Maintained
17991 F:      drivers/usb/c67x00/
17992
17993 USB DAVICOM DM9601 DRIVER
17994 M:      Peter Korsgaard <[email protected]>
17995 L:      [email protected]
17996 S:      Maintained
17997 W:      http://www.linux-usb.org/usbnet
17998 F:      drivers/net/usb/dm9601.c
17999
18000 USB EHCI DRIVER
18001 M:      Alan Stern <[email protected]>
18002 L:      [email protected]
18003 S:      Maintained
18004 F:      Documentation/usb/ehci.rst
18005 F:      drivers/usb/host/ehci*
18006
18007 USB GADGET/PERIPHERAL SUBSYSTEM
18008 M:      Felipe Balbi <[email protected]>
18009 L:      [email protected]
18010 S:      Maintained
18011 W:      http://www.linux-usb.org/gadget
18012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18013 F:      drivers/usb/gadget/
18014 F:      include/linux/usb/gadget*
18015
18016 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18017 M:      Jiri Kosina <[email protected]>
18018 M:      Benjamin Tissoires <[email protected]>
18019 L:      [email protected]
18020 S:      Maintained
18021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18022 F:      Documentation/hid/hiddev.rst
18023 F:      drivers/hid/usbhid/
18024
18025 USB INTEL XHCI ROLE MUX DRIVER
18026 M:      Hans de Goede <[email protected]>
18027 L:      [email protected]
18028 S:      Maintained
18029 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18030
18031 USB IP DRIVER FOR HISILICON KIRIN
18032 M:      Yu Chen <[email protected]>
18033 M:      Binghui Wang <[email protected]>
18034 L:      [email protected]
18035 S:      Maintained
18036 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
18037 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18038
18039 USB ISP116X DRIVER
18040 M:      Olav Kongas <[email protected]>
18041 L:      [email protected]
18042 S:      Maintained
18043 F:      drivers/usb/host/isp116x*
18044 F:      include/linux/usb/isp116x.h
18045
18046 USB LAN78XX ETHERNET DRIVER
18047 M:      Woojung Huh <[email protected]>
18048 M:      Microchip Linux Driver Support <[email protected]>
18049 L:      [email protected]
18050 S:      Maintained
18051 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18052 F:      drivers/net/usb/lan78xx.*
18053 F:      include/dt-bindings/net/microchip-lan78xx.h
18054
18055 USB MASS STORAGE DRIVER
18056 M:      Alan Stern <[email protected]>
18057 L:      [email protected]
18058 L:      [email protected]
18059 S:      Maintained
18060 F:      drivers/usb/storage/
18061
18062 USB MIDI DRIVER
18063 M:      Clemens Ladisch <[email protected]>
18064 L:      [email protected] (moderated for non-subscribers)
18065 S:      Maintained
18066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18067 F:      sound/usb/midi.*
18068
18069 USB NETWORKING DRIVERS
18070 L:      [email protected]
18071 S:      Odd Fixes
18072 F:      drivers/net/usb/
18073
18074 USB OHCI DRIVER
18075 M:      Alan Stern <[email protected]>
18076 L:      [email protected]
18077 S:      Maintained
18078 F:      Documentation/usb/ohci.rst
18079 F:      drivers/usb/host/ohci*
18080
18081 USB OTG FSM (Finite State Machine)
18082 M:      Peter Chen <[email protected]>
18083 L:      [email protected]
18084 S:      Maintained
18085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18086 F:      drivers/usb/common/usb-otg-fsm.c
18087
18088 USB OVER IP DRIVER
18089 M:      Valentina Manea <[email protected]>
18090 M:      Shuah Khan <[email protected]>
18091 M:      Shuah Khan <[email protected]>
18092 L:      [email protected]
18093 S:      Maintained
18094 F:      Documentation/usb/usbip_protocol.rst
18095 F:      drivers/usb/usbip/
18096 F:      tools/testing/selftests/drivers/usb/usbip/
18097 F:      tools/usb/usbip/
18098
18099 USB PEGASUS DRIVER
18100 M:      Petko Manolov <[email protected]>
18101 L:      [email protected]
18102 L:      [email protected]
18103 S:      Maintained
18104 W:      https://github.com/petkan/pegasus
18105 T:      git git://github.com/petkan/pegasus.git
18106 F:      drivers/net/usb/pegasus.*
18107
18108 USB PHY LAYER
18109 M:      Felipe Balbi <[email protected]>
18110 L:      [email protected]
18111 S:      Maintained
18112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18113 F:      drivers/usb/phy/
18114
18115 USB PRINTER DRIVER (usblp)
18116 M:      Pete Zaitcev <[email protected]>
18117 L:      [email protected]
18118 S:      Supported
18119 F:      drivers/usb/class/usblp.c
18120
18121 USB QMI WWAN NETWORK DRIVER
18122 M:      Bjørn Mork <[email protected]>
18123 L:      [email protected]
18124 S:      Maintained
18125 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18126 F:      drivers/net/usb/qmi_wwan.c
18127
18128 USB RTL8150 DRIVER
18129 M:      Petko Manolov <[email protected]>
18130 L:      [email protected]
18131 L:      [email protected]
18132 S:      Maintained
18133 W:      https://github.com/petkan/rtl8150
18134 T:      git git://github.com/petkan/rtl8150.git
18135 F:      drivers/net/usb/rtl8150.c
18136
18137 USB SERIAL SUBSYSTEM
18138 M:      Johan Hovold <[email protected]>
18139 L:      [email protected]
18140 S:      Maintained
18141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18142 F:      Documentation/usb/usb-serial.rst
18143 F:      drivers/usb/serial/
18144 F:      include/linux/usb/serial.h
18145
18146 USB SMSC75XX ETHERNET DRIVER
18147 M:      Steve Glendinning <[email protected]>
18148 L:      [email protected]
18149 S:      Maintained
18150 F:      drivers/net/usb/smsc75xx.*
18151
18152 USB SMSC95XX ETHERNET DRIVER
18153 M:      Steve Glendinning <[email protected]>
18154 M:      Microchip Linux Driver Support <[email protected]>
18155 L:      [email protected]
18156 S:      Maintained
18157 F:      drivers/net/usb/smsc95xx.*
18158
18159 USB SUBSYSTEM
18160 M:      Greg Kroah-Hartman <[email protected]>
18161 L:      [email protected]
18162 S:      Supported
18163 W:      http://www.linux-usb.org
18164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18165 F:      Documentation/devicetree/bindings/usb/
18166 F:      Documentation/usb/
18167 F:      drivers/usb/
18168 F:      include/linux/usb.h
18169 F:      include/linux/usb/
18170
18171 USB TYPEC BUS FOR ALTERNATE MODES
18172 M:      Heikki Krogerus <[email protected]>
18173 L:      [email protected]
18174 S:      Maintained
18175 F:      Documentation/ABI/testing/sysfs-bus-typec
18176 F:      Documentation/driver-api/usb/typec_bus.rst
18177 F:      drivers/usb/typec/altmodes/
18178 F:      include/linux/usb/typec_altmode.h
18179
18180 USB TYPEC CLASS
18181 M:      Heikki Krogerus <[email protected]>
18182 L:      [email protected]
18183 S:      Maintained
18184 F:      Documentation/ABI/testing/sysfs-class-typec
18185 F:      Documentation/driver-api/usb/typec.rst
18186 F:      drivers/usb/typec/
18187 F:      include/linux/usb/typec.h
18188
18189 USB TYPEC INTEL PMC MUX DRIVER
18190 M:      Heikki Krogerus <[email protected]>
18191 L:      [email protected]
18192 S:      Maintained
18193 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18194 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18195
18196 USB TYPEC PI3USB30532 MUX DRIVER
18197 M:      Hans de Goede <[email protected]>
18198 L:      [email protected]
18199 S:      Maintained
18200 F:      drivers/usb/typec/mux/pi3usb30532.c
18201
18202 USB TYPEC PORT CONTROLLER DRIVERS
18203 M:      Guenter Roeck <[email protected]>
18204 L:      [email protected]
18205 S:      Maintained
18206 F:      drivers/usb/typec/tcpm/
18207
18208 USB UHCI DRIVER
18209 M:      Alan Stern <[email protected]>
18210 L:      [email protected]
18211 S:      Maintained
18212 F:      drivers/usb/host/uhci*
18213
18214 USB VIDEO CLASS
18215 M:      Laurent Pinchart <[email protected]>
18216 L:      [email protected] (subscribers-only)
18217 L:      [email protected]
18218 S:      Maintained
18219 W:      http://www.ideasonboard.org/uvc/
18220 T:      git git://linuxtv.org/media_tree.git
18221 F:      drivers/media/usb/uvc/
18222 F:      include/uapi/linux/uvcvideo.h
18223
18224 USB WEBCAM GADGET
18225 M:      Laurent Pinchart <[email protected]>
18226 L:      [email protected]
18227 S:      Maintained
18228 F:      drivers/usb/gadget/function/*uvc*
18229 F:      drivers/usb/gadget/legacy/webcam.c
18230 F:      include/uapi/linux/usb/g_uvc.h
18231
18232 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18233 M:      Jussi Kivilinna <[email protected]>
18234 L:      [email protected]
18235 S:      Maintained
18236 F:      drivers/net/wireless/rndis_wlan.c
18237
18238 USB XHCI DRIVER
18239 M:      Mathias Nyman <[email protected]>
18240 L:      [email protected]
18241 S:      Supported
18242 F:      drivers/usb/host/pci-quirks*
18243 F:      drivers/usb/host/xhci*
18244
18245 USB ZD1201 DRIVER
18246 L:      [email protected]
18247 S:      Orphan
18248 W:      http://linux-lc100020.sourceforge.net
18249 F:      drivers/net/wireless/zydas/zd1201.*
18250
18251 USB ZR364XX DRIVER
18252 M:      Antoine Jacquet <[email protected]>
18253 L:      [email protected]
18254 L:      [email protected]
18255 S:      Maintained
18256 W:      http://royale.zerezo.com/zr364xx/
18257 T:      git git://linuxtv.org/media_tree.git
18258 F:      Documentation/admin-guide/media/zr364xx*
18259 F:      drivers/media/usb/zr364xx/
18260
18261 USER-MODE LINUX (UML)
18262 M:      Jeff Dike <[email protected]>
18263 M:      Richard Weinberger <[email protected]>
18264 M:      Anton Ivanov <[email protected]>
18265 L:      [email protected]
18266 S:      Maintained
18267 W:      http://user-mode-linux.sourceforge.net
18268 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18270 F:      Documentation/virt/uml/
18271 F:      arch/um/
18272 F:      arch/x86/um/
18273 F:      fs/hostfs/
18274
18275 USERSPACE COPYIN/COPYOUT (UIOVEC)
18276 M:      Alexander Viro <[email protected]>
18277 S:      Maintained
18278 F:      include/linux/uio.h
18279 F:      lib/iov_iter.c
18280
18281 USERSPACE DMA BUFFER DRIVER
18282 M:      Gerd Hoffmann <[email protected]>
18283 L:      [email protected]
18284 S:      Maintained
18285 T:      git git://anongit.freedesktop.org/drm/drm-misc
18286 F:      drivers/dma-buf/udmabuf.c
18287 F:      include/uapi/linux/udmabuf.h
18288
18289 USERSPACE I/O (UIO)
18290 M:      Greg Kroah-Hartman <[email protected]>
18291 S:      Maintained
18292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18293 F:      Documentation/driver-api/uio-howto.rst
18294 F:      drivers/uio/
18295 F:      include/linux/uio_driver.h
18296
18297 UTIL-LINUX PACKAGE
18298 M:      Karel Zak <[email protected]>
18299 L:      [email protected]
18300 S:      Maintained
18301 W:      http://en.wikipedia.org/wiki/Util-linux
18302 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18303
18304 UUID HELPERS
18305 M:      Christoph Hellwig <[email protected]>
18306 R:      Andy Shevchenko <[email protected]>
18307 L:      [email protected]
18308 S:      Maintained
18309 T:      git git://git.infradead.org/users/hch/uuid.git
18310 F:      include/linux/uuid.h
18311 F:      include/uapi/linux/uuid.h
18312 F:      lib/test_uuid.c
18313 F:      lib/uuid.c
18314
18315 UVESAFB DRIVER
18316 M:      Michal Januszewski <[email protected]>
18317 L:      [email protected]
18318 S:      Maintained
18319 W:      https://github.com/mjanusz/v86d
18320 F:      Documentation/fb/uvesafb.rst
18321 F:      drivers/video/fbdev/uvesafb.*
18322
18323 Ux500 CLOCK DRIVERS
18324 M:      Ulf Hansson <[email protected]>
18325 L:      [email protected]
18326 L:      [email protected] (moderated for non-subscribers)
18327 S:      Maintained
18328 F:      drivers/clk/ux500/
18329
18330 VF610 NAND DRIVER
18331 M:      Stefan Agner <[email protected]>
18332 L:      [email protected]
18333 S:      Supported
18334 F:      drivers/mtd/nand/raw/vf610_nfc.c
18335
18336 VFAT/FAT/MSDOS FILESYSTEM
18337 M:      OGAWA Hirofumi <[email protected]>
18338 S:      Maintained
18339 F:      Documentation/filesystems/vfat.rst
18340 F:      fs/fat/
18341
18342 VFIO DRIVER
18343 M:      Alex Williamson <[email protected]>
18344 R:      Cornelia Huck <[email protected]>
18345 L:      [email protected]
18346 S:      Maintained
18347 T:      git git://github.com/awilliam/linux-vfio.git
18348 F:      Documentation/driver-api/vfio.rst
18349 F:      drivers/vfio/
18350 F:      include/linux/vfio.h
18351 F:      include/uapi/linux/vfio.h
18352
18353 VFIO MEDIATED DEVICE DRIVERS
18354 M:      Kirti Wankhede <[email protected]>
18355 L:      [email protected]
18356 S:      Maintained
18357 F:      Documentation/driver-api/vfio-mediated-device.rst
18358 F:      drivers/vfio/mdev/
18359 F:      include/linux/mdev.h
18360 F:      samples/vfio-mdev/
18361
18362 VFIO PLATFORM DRIVER
18363 M:      Eric Auger <[email protected]>
18364 L:      [email protected]
18365 S:      Maintained
18366 F:      drivers/vfio/platform/
18367
18368 VGA_SWITCHEROO
18369 R:      Lukas Wunner <[email protected]>
18370 S:      Maintained
18371 T:      git git://anongit.freedesktop.org/drm/drm-misc
18372 F:      Documentation/gpu/vga-switcheroo.rst
18373 F:      drivers/gpu/vga/vga_switcheroo.c
18374 F:      include/linux/vga_switcheroo.h
18375
18376 VIA RHINE NETWORK DRIVER
18377 S:      Maintained
18378 M:      Kevin Brace <[email protected]>
18379 F:      drivers/net/ethernet/via/via-rhine.c
18380
18381 VIA SD/MMC CARD CONTROLLER DRIVER
18382 M:      Bruce Chang <[email protected]>
18383 M:      Harald Welte <[email protected]>
18384 S:      Maintained
18385 F:      drivers/mmc/host/via-sdmmc.c
18386
18387 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18388 M:      Florian Tobias Schandinat <[email protected]>
18389 L:      [email protected]
18390 S:      Maintained
18391 F:      drivers/video/fbdev/via/
18392 F:      include/linux/via-core.h
18393 F:      include/linux/via-gpio.h
18394 F:      include/linux/via_i2c.h
18395
18396 VIA VELOCITY NETWORK DRIVER
18397 M:      Francois Romieu <[email protected]>
18398 L:      [email protected]
18399 S:      Maintained
18400 F:      drivers/net/ethernet/via/via-velocity.*
18401
18402 VICODEC VIRTUAL CODEC DRIVER
18403 M:      Hans Verkuil <[email protected]>
18404 L:      [email protected]
18405 S:      Maintained
18406 W:      https://linuxtv.org
18407 T:      git git://linuxtv.org/media_tree.git
18408 F:      drivers/media/test-drivers/vicodec/*
18409
18410 VIDEO I2C POLLING DRIVER
18411 M:      Matt Ranostay <[email protected]>
18412 L:      [email protected]
18413 S:      Maintained
18414 F:      drivers/media/i2c/video-i2c.c
18415
18416 VIDEO MULTIPLEXER DRIVER
18417 M:      Philipp Zabel <[email protected]>
18418 L:      [email protected]
18419 S:      Maintained
18420 F:      drivers/media/platform/video-mux.c
18421
18422 VIDEOBUF2 FRAMEWORK
18423 M:      Tomasz Figa <[email protected]>
18424 M:      Marek Szyprowski <[email protected]>
18425 L:      [email protected]
18426 S:      Maintained
18427 F:      drivers/media/common/videobuf2/*
18428 F:      include/media/videobuf2-*
18429
18430 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18431 M:      Helen Koike <[email protected]>
18432 R:      Shuah Khan <[email protected]>
18433 L:      [email protected]
18434 S:      Maintained
18435 W:      https://linuxtv.org
18436 T:      git git://linuxtv.org/media_tree.git
18437 F:      drivers/media/test-drivers/vimc/*
18438
18439 VIRT LIB
18440 M:      Alex Williamson <[email protected]>
18441 M:      Paolo Bonzini <[email protected]>
18442 L:      [email protected]
18443 S:      Supported
18444 F:      virt/lib/
18445
18446 VIRTIO AND VHOST VSOCK DRIVER
18447 M:      Stefan Hajnoczi <[email protected]>
18448 M:      Stefano Garzarella <[email protected]>
18449 L:      [email protected]
18450 L:      [email protected]
18451 L:      [email protected]
18452 S:      Maintained
18453 F:      drivers/net/vsockmon.c
18454 F:      drivers/vhost/vsock.c
18455 F:      include/linux/virtio_vsock.h
18456 F:      include/uapi/linux/virtio_vsock.h
18457 F:      include/uapi/linux/vm_sockets_diag.h
18458 F:      include/uapi/linux/vsockmon.h
18459 F:      net/vmw_vsock/af_vsock_tap.c
18460 F:      net/vmw_vsock/diag.c
18461 F:      net/vmw_vsock/virtio_transport.c
18462 F:      net/vmw_vsock/virtio_transport_common.c
18463 F:      net/vmw_vsock/vsock_loopback.c
18464 F:      tools/testing/vsock/
18465
18466 VIRTIO BLOCK AND SCSI DRIVERS
18467 M:      "Michael S. Tsirkin" <[email protected]>
18468 M:      Jason Wang <[email protected]>
18469 R:      Paolo Bonzini <[email protected]>
18470 R:      Stefan Hajnoczi <[email protected]>
18471 L:      [email protected]
18472 S:      Maintained
18473 F:      drivers/block/virtio_blk.c
18474 F:      drivers/scsi/virtio_scsi.c
18475 F:      drivers/vhost/scsi.c
18476 F:      include/uapi/linux/virtio_blk.h
18477 F:      include/uapi/linux/virtio_scsi.h
18478
18479 VIRTIO CONSOLE DRIVER
18480 M:      Amit Shah <[email protected]>
18481 L:      [email protected]
18482 S:      Maintained
18483 F:      drivers/char/virtio_console.c
18484 F:      include/linux/virtio_console.h
18485 F:      include/uapi/linux/virtio_console.h
18486
18487 VIRTIO CORE AND NET DRIVERS
18488 M:      "Michael S. Tsirkin" <[email protected]>
18489 M:      Jason Wang <[email protected]>
18490 L:      [email protected]
18491 S:      Maintained
18492 F:      Documentation/devicetree/bindings/virtio/
18493 F:      drivers/block/virtio_blk.c
18494 F:      drivers/crypto/virtio/
18495 F:      drivers/net/virtio_net.c
18496 F:      drivers/vdpa/
18497 F:      drivers/virtio/
18498 F:      include/linux/vdpa.h
18499 F:      include/linux/virtio*.h
18500 F:      include/uapi/linux/virtio_*.h
18501 F:      tools/virtio/
18502
18503 VIRTIO BALLOON
18504 M:      "Michael S. Tsirkin" <[email protected]>
18505 M:      David Hildenbrand <[email protected]>
18506 L:      [email protected]
18507 S:      Maintained
18508 F:      drivers/virtio/virtio_balloon.c
18509 F:      include/uapi/linux/virtio_balloon.h
18510 F:      include/linux/balloon_compaction.h
18511 F:      mm/balloon_compaction.c
18512
18513 VIRTIO CRYPTO DRIVER
18514 M:      Gonglei <[email protected]>
18515 L:      [email protected]
18516 L:      [email protected]
18517 S:      Maintained
18518 F:      drivers/crypto/virtio/
18519 F:      include/uapi/linux/virtio_crypto.h
18520
18521 VIRTIO DRIVERS FOR S390
18522 M:      Cornelia Huck <[email protected]>
18523 M:      Halil Pasic <[email protected]>
18524 L:      [email protected]
18525 L:      [email protected]
18526 L:      [email protected]
18527 S:      Supported
18528 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18529 F:      drivers/s390/virtio/
18530
18531 VIRTIO FILE SYSTEM
18532 M:      Vivek Goyal <[email protected]>
18533 M:      Stefan Hajnoczi <[email protected]>
18534 M:      Miklos Szeredi <[email protected]>
18535 L:      [email protected]
18536 L:      [email protected]
18537 S:      Supported
18538 W:      https://virtio-fs.gitlab.io/
18539 F:      Documentation/filesystems/virtiofs.rst
18540 F:      fs/fuse/virtio_fs.c
18541 F:      include/uapi/linux/virtio_fs.h
18542
18543 VIRTIO GPU DRIVER
18544 M:      David Airlie <[email protected]>
18545 M:      Gerd Hoffmann <[email protected]>
18546 L:      [email protected]
18547 L:      [email protected]
18548 S:      Maintained
18549 T:      git git://anongit.freedesktop.org/drm/drm-misc
18550 F:      drivers/gpu/drm/virtio/
18551 F:      include/uapi/linux/virtio_gpu.h
18552
18553 VIRTIO HOST (VHOST)
18554 M:      "Michael S. Tsirkin" <[email protected]>
18555 M:      Jason Wang <[email protected]>
18556 L:      [email protected]
18557 L:      [email protected]
18558 L:      [email protected]
18559 S:      Maintained
18560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18561 F:      drivers/vhost/
18562 F:      include/linux/vhost_iotlb.h
18563 F:      include/uapi/linux/vhost.h
18564
18565 VIRTIO INPUT DRIVER
18566 M:      Gerd Hoffmann <[email protected]>
18567 S:      Maintained
18568 F:      drivers/virtio/virtio_input.c
18569 F:      include/uapi/linux/virtio_input.h
18570
18571 VIRTIO IOMMU DRIVER
18572 M:      Jean-Philippe Brucker <[email protected]>
18573 L:      [email protected]
18574 S:      Maintained
18575 F:      drivers/iommu/virtio-iommu.c
18576 F:      include/uapi/linux/virtio_iommu.h
18577
18578 VIRTIO MEM DRIVER
18579 M:      David Hildenbrand <[email protected]>
18580 L:      [email protected]
18581 S:      Maintained
18582 F:      drivers/virtio/virtio_mem.c
18583 F:      include/uapi/linux/virtio_mem.h
18584
18585 VIRTUAL BOX GUEST DEVICE DRIVER
18586 M:      Hans de Goede <[email protected]>
18587 M:      Arnd Bergmann <[email protected]>
18588 M:      Greg Kroah-Hartman <[email protected]>
18589 S:      Maintained
18590 F:      drivers/virt/vboxguest/
18591 F:      include/linux/vbox_utils.h
18592 F:      include/uapi/linux/vbox*.h
18593
18594 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18595 M:      Hans de Goede <[email protected]>
18596 L:      [email protected]
18597 S:      Maintained
18598 F:      fs/vboxsf/*
18599
18600 VIRTUAL SERIO DEVICE DRIVER
18601 M:      Stephen Chandler Paul <[email protected]>
18602 S:      Maintained
18603 F:      drivers/input/serio/userio.c
18604 F:      include/uapi/linux/userio.h
18605
18606 VIVID VIRTUAL VIDEO DRIVER
18607 M:      Hans Verkuil <[email protected]>
18608 L:      [email protected]
18609 S:      Maintained
18610 W:      https://linuxtv.org
18611 T:      git git://linuxtv.org/media_tree.git
18612 F:      drivers/media/test-drivers/vivid/*
18613
18614 VIDTV VIRTUAL DIGITAL TV DRIVER
18615 M:      Daniel W. S. Almeida <[email protected]>
18616 L:      [email protected]
18617 S:      Maintained
18618 W:      https://linuxtv.org
18619 T:      git git://linuxtv.org/media_tree.git
18620 F:      drivers/media/test-drivers/vidtv/*
18621
18622 VLYNQ BUS
18623 M:      Florian Fainelli <[email protected]>
18624 L:      [email protected] (subscribers-only)
18625 S:      Maintained
18626 F:      drivers/vlynq/vlynq.c
18627 F:      include/linux/vlynq.h
18628
18629 VME SUBSYSTEM
18630 M:      Martyn Welch <[email protected]>
18631 M:      Manohar Vanga <[email protected]>
18632 M:      Greg Kroah-Hartman <[email protected]>
18633 L:      [email protected]
18634 S:      Maintained
18635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18636 F:      Documentation/driver-api/vme.rst
18637 F:      drivers/staging/vme/
18638 F:      drivers/vme/
18639 F:      include/linux/vme*
18640
18641 VMWARE BALLOON DRIVER
18642 M:      Nadav Amit <[email protected]>
18643 M:      "VMware, Inc." <[email protected]>
18644 L:      [email protected]
18645 S:      Maintained
18646 F:      drivers/misc/vmw_balloon.c
18647
18648 VMWARE HYPERVISOR INTERFACE
18649 M:      Deep Shah <[email protected]>
18650 M:      "VMware, Inc." <[email protected]>
18651 L:      [email protected]
18652 S:      Supported
18653 F:      arch/x86/include/asm/vmware.h
18654 F:      arch/x86/kernel/cpu/vmware.c
18655
18656 VMWARE PVRDMA DRIVER
18657 M:      Adit Ranadive <[email protected]>
18658 M:      VMware PV-Drivers <[email protected]>
18659 L:      [email protected]
18660 S:      Maintained
18661 F:      drivers/infiniband/hw/vmw_pvrdma/
18662
18663 VMware PVSCSI driver
18664 M:      Jim Gill <[email protected]>
18665 M:      VMware PV-Drivers <[email protected]>
18666 L:      [email protected]
18667 S:      Maintained
18668 F:      drivers/scsi/vmw_pvscsi.c
18669 F:      drivers/scsi/vmw_pvscsi.h
18670
18671 VMWARE VIRTUAL PTP CLOCK DRIVER
18672 M:      Vivek Thampi <[email protected]>
18673 M:      "VMware, Inc." <[email protected]>
18674 L:      [email protected]
18675 S:      Supported
18676 F:      drivers/ptp/ptp_vmw.c
18677
18678 VMWARE VMMOUSE SUBDRIVER
18679 M:      "VMware Graphics" <[email protected]>
18680 M:      "VMware, Inc." <[email protected]>
18681 L:      [email protected]
18682 S:      Maintained
18683 F:      drivers/input/mouse/vmmouse.c
18684 F:      drivers/input/mouse/vmmouse.h
18685
18686 VMWARE VMXNET3 ETHERNET DRIVER
18687 M:      Ronak Doshi <[email protected]>
18688 M:      "VMware, Inc." <[email protected]>
18689 L:      [email protected]
18690 S:      Maintained
18691 F:      drivers/net/vmxnet3/
18692
18693 VOCORE VOCORE2 BOARD
18694 M:      Harvey Hunt <[email protected]>
18695 L:      [email protected]
18696 S:      Maintained
18697 F:      arch/mips/boot/dts/ralink/vocore2.dts
18698
18699 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18700 M:      Liam Girdwood <[email protected]>
18701 M:      Mark Brown <[email protected]>
18702 L:      [email protected]
18703 S:      Supported
18704 W:      http://www.slimlogic.co.uk/?p=48
18705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18706 F:      Documentation/devicetree/bindings/regulator/
18707 F:      Documentation/power/regulator/
18708 F:      drivers/regulator/
18709 F:      include/dt-bindings/regulator/
18710 F:      include/linux/regulator/
18711 K:      regulator_get_optional
18712
18713 VRF
18714 M:      David Ahern <[email protected]>
18715 M:      Shrijeet Mukherjee <[email protected]>
18716 L:      [email protected]
18717 S:      Maintained
18718 F:      Documentation/networking/vrf.rst
18719 F:      drivers/net/vrf.c
18720
18721 VSPRINTF
18722 M:      Petr Mladek <[email protected]>
18723 M:      Steven Rostedt <[email protected]>
18724 M:      Sergey Senozhatsky <[email protected]>
18725 R:      Andy Shevchenko <[email protected]>
18726 R:      Rasmus Villemoes <[email protected]>
18727 S:      Maintained
18728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18729 F:      Documentation/core-api/printk-formats.rst
18730 F:      lib/test_printf.c
18731 F:      lib/vsprintf.c
18732
18733 VT1211 HARDWARE MONITOR DRIVER
18734 M:      Juerg Haefliger <[email protected]>
18735 L:      [email protected]
18736 S:      Maintained
18737 F:      Documentation/hwmon/vt1211.rst
18738 F:      drivers/hwmon/vt1211.c
18739
18740 VT8231 HARDWARE MONITOR DRIVER
18741 M:      Roger Lucas <[email protected]>
18742 L:      [email protected]
18743 S:      Maintained
18744 F:      drivers/hwmon/vt8231.c
18745
18746 VUB300 USB to SDIO/SD/MMC bridge chip
18747 L:      [email protected]
18748 S:      Orphan
18749 F:      drivers/mmc/host/vub300.c
18750
18751 W1 DALLAS'S 1-WIRE BUS
18752 M:      Evgeniy Polyakov <[email protected]>
18753 S:      Maintained
18754 F:      Documentation/devicetree/bindings/w1/
18755 F:      Documentation/w1/
18756 F:      drivers/w1/
18757 F:      include/linux/w1.h
18758
18759 W83791D HARDWARE MONITORING DRIVER
18760 M:      Marc Hulsman <[email protected]>
18761 L:      [email protected]
18762 S:      Maintained
18763 F:      Documentation/hwmon/w83791d.rst
18764 F:      drivers/hwmon/w83791d.c
18765
18766 W83793 HARDWARE MONITORING DRIVER
18767 M:      Rudolf Marek <[email protected]>
18768 L:      [email protected]
18769 S:      Maintained
18770 F:      Documentation/hwmon/w83793.rst
18771 F:      drivers/hwmon/w83793.c
18772
18773 W83795 HARDWARE MONITORING DRIVER
18774 M:      Jean Delvare <[email protected]>
18775 L:      [email protected]
18776 S:      Maintained
18777 F:      drivers/hwmon/w83795.c
18778
18779 W83L51xD SD/MMC CARD INTERFACE DRIVER
18780 M:      Pierre Ossman <[email protected]>
18781 S:      Maintained
18782 F:      drivers/mmc/host/wbsd.*
18783
18784 WACOM PROTOCOL 4 SERIAL TABLETS
18785 M:      Julian Squires <[email protected]>
18786 M:      Hans de Goede <[email protected]>
18787 L:      [email protected]
18788 S:      Maintained
18789 F:      drivers/input/tablet/wacom_serial4.c
18790
18791 WATCHDOG DEVICE DRIVERS
18792 M:      Wim Van Sebroeck <[email protected]>
18793 M:      Guenter Roeck <[email protected]>
18794 L:      [email protected]
18795 S:      Maintained
18796 W:      http://www.linux-watchdog.org/
18797 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18798 F:      Documentation/devicetree/bindings/watchdog/
18799 F:      Documentation/watchdog/
18800 F:      drivers/watchdog/
18801 F:      include/linux/watchdog.h
18802 F:      include/uapi/linux/watchdog.h
18803
18804 WHISKEYCOVE PMIC GPIO DRIVER
18805 M:      Kuppuswamy Sathyanarayanan <[email protected]>
18806 L:      [email protected]
18807 S:      Maintained
18808 F:      drivers/gpio/gpio-wcove.c
18809
18810 WHWAVE RTC DRIVER
18811 M:      Dianlong Li <[email protected]>
18812 L:      [email protected]
18813 S:      Maintained
18814 F:      drivers/rtc/rtc-sd3078.c
18815
18816 WIIMOTE HID DRIVER
18817 M:      David Rheinsberg <[email protected]>
18818 L:      [email protected]
18819 S:      Maintained
18820 F:      drivers/hid/hid-wiimote*
18821
18822 WILOCITY WIL6210 WIRELESS DRIVER
18823 M:      Maya Erez <[email protected]>
18824 L:      [email protected]
18825 L:      [email protected]
18826 S:      Supported
18827 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18828 F:      drivers/net/wireless/ath/wil6210/
18829
18830 WIMAX STACK
18831 M:      Inaky Perez-Gonzalez <[email protected]>
18832 M:      [email protected]
18833 L:      [email protected] (subscribers-only)
18834 S:      Supported
18835 W:      http://linuxwimax.org
18836 F:      Documentation/admin-guide/wimax/wimax.rst
18837 F:      include/linux/wimax/debug.h
18838 F:      include/net/wimax.h
18839 F:      include/uapi/linux/wimax.h
18840 F:      net/wimax/
18841
18842 WINBOND CIR DRIVER
18843 M:      David Härdeman <[email protected]>
18844 S:      Maintained
18845 F:      drivers/media/rc/winbond-cir.c
18846
18847 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18848 M:      William Breathitt Gray <[email protected]>
18849 L:      [email protected]
18850 S:      Maintained
18851 F:      drivers/watchdog/ebc-c384_wdt.c
18852
18853 WINSYSTEMS WS16C48 GPIO DRIVER
18854 M:      William Breathitt Gray <[email protected]>
18855 L:      [email protected]
18856 S:      Maintained
18857 F:      drivers/gpio/gpio-ws16c48.c
18858
18859 WIREGUARD SECURE NETWORK TUNNEL
18860 M:      Jason A. Donenfeld <[email protected]>
18861 L:      [email protected]
18862 L:      [email protected]
18863 S:      Maintained
18864 F:      drivers/net/wireguard/
18865 F:      tools/testing/selftests/wireguard/
18866
18867 WISTRON LAPTOP BUTTON DRIVER
18868 M:      Miloslav Trmac <[email protected]>
18869 S:      Maintained
18870 F:      drivers/input/misc/wistron_btns.c
18871
18872 WL3501 WIRELESS PCMCIA CARD DRIVER
18873 L:      [email protected]
18874 S:      Odd fixes
18875 F:      drivers/net/wireless/wl3501*
18876
18877 WOLFSON MICROELECTRONICS DRIVERS
18878 L:      [email protected]
18879 S:      Supported
18880 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18881 T:      git https://github.com/CirrusLogic/linux-drivers.git
18882 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
18883 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
18884 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18885 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
18886 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
18887 F:      Documentation/hwmon/wm83??.rst
18888 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18889 F:      drivers/clk/clk-wm83*.c
18890 F:      drivers/extcon/extcon-arizona.c
18891 F:      drivers/gpio/gpio-*wm*.c
18892 F:      drivers/gpio/gpio-arizona.c
18893 F:      drivers/hwmon/wm83??-hwmon.c
18894 F:      drivers/input/misc/wm831x-on.c
18895 F:      drivers/input/touchscreen/wm831x-ts.c
18896 F:      drivers/input/touchscreen/wm97*.c
18897 F:      drivers/leds/leds-wm83*.c
18898 F:      drivers/mfd/arizona*
18899 F:      drivers/mfd/cs47l24*
18900 F:      drivers/mfd/wm*.c
18901 F:      drivers/power/supply/wm83*.c
18902 F:      drivers/regulator/arizona*
18903 F:      drivers/regulator/wm8*.c
18904 F:      drivers/rtc/rtc-wm83*.c
18905 F:      drivers/video/backlight/wm83*_bl.c
18906 F:      drivers/watchdog/wm83*_wdt.c
18907 F:      include/linux/mfd/arizona/
18908 F:      include/linux/mfd/wm831x/
18909 F:      include/linux/mfd/wm8350/
18910 F:      include/linux/mfd/wm8400*
18911 F:      include/linux/regulator/arizona*
18912 F:      include/linux/wm97xx.h
18913 F:      include/sound/wm????.h
18914 F:      sound/soc/codecs/arizona.?
18915 F:      sound/soc/codecs/cs47l24*
18916 F:      sound/soc/codecs/wm*
18917
18918 WORKQUEUE
18919 M:      Tejun Heo <[email protected]>
18920 R:      Lai Jiangshan <[email protected]>
18921 S:      Maintained
18922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18923 F:      Documentation/core-api/workqueue.rst
18924 F:      include/linux/workqueue.h
18925 F:      kernel/workqueue.c
18926
18927 X-POWERS AXP288 PMIC DRIVERS
18928 M:      Hans de Goede <[email protected]>
18929 S:      Maintained
18930 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18931 N:      axp288
18932
18933 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18934 M:      Chen-Yu Tsai <[email protected]>
18935 L:      [email protected]
18936 S:      Maintained
18937 N:      axp[128]
18938
18939 X.25 NETWORK LAYER
18940 M:      Andrew Hendry <[email protected]>
18941 L:      [email protected]
18942 S:      Odd Fixes
18943 F:      Documentation/networking/x25*
18944 F:      include/net/x25*
18945 F:      net/x25/
18946
18947 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18948 M:      Thomas Gleixner <[email protected]>
18949 M:      Ingo Molnar <[email protected]>
18950 M:      Borislav Petkov <[email protected]>
18951 M:      [email protected]
18952 R:      "H. Peter Anvin" <[email protected]>
18953 L:      [email protected]
18954 S:      Maintained
18955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18956 F:      Documentation/devicetree/bindings/x86/
18957 F:      Documentation/x86/
18958 F:      arch/x86/
18959
18960 X86 ENTRY CODE
18961 M:      Andy Lutomirski <[email protected]>
18962 L:      [email protected]
18963 S:      Maintained
18964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18965 F:      arch/x86/entry/
18966
18967 X86 MCE INFRASTRUCTURE
18968 M:      Tony Luck <[email protected]>
18969 M:      Borislav Petkov <[email protected]>
18970 L:      [email protected]
18971 S:      Maintained
18972 F:      arch/x86/kernel/cpu/mce/*
18973
18974 X86 MICROCODE UPDATE SUPPORT
18975 M:      Borislav Petkov <[email protected]>
18976 S:      Maintained
18977 F:      arch/x86/kernel/cpu/microcode/*
18978
18979 X86 MM
18980 M:      Dave Hansen <[email protected]>
18981 M:      Andy Lutomirski <[email protected]>
18982 M:      Peter Zijlstra <[email protected]>
18983 L:      [email protected]
18984 S:      Maintained
18985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18986 F:      arch/x86/mm/
18987
18988 X86 PLATFORM DRIVERS
18989 M:      Hans de Goede <[email protected]>
18990 M:      Mark Gross <[email protected]>
18991 L:      [email protected]
18992 S:      Maintained
18993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
18994 F:      drivers/platform/olpc/
18995 F:      drivers/platform/x86/
18996
18997 X86 PLATFORM DRIVERS - ARCH
18998 R:      Darren Hart <[email protected]>
18999 R:      Andy Shevchenko <[email protected]>
19000 L:      [email protected]
19001 L:      [email protected]
19002 S:      Maintained
19003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19004 F:      arch/x86/platform
19005
19006 X86 PLATFORM UV HPE SUPERDOME FLEX
19007 M:      Steve Wahl <[email protected]>
19008 R:      Dimitri Sivanich <[email protected]>
19009 R:      Russ Anderson <[email protected]>
19010 S:      Supported
19011 F:      arch/x86/include/asm/uv/
19012 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19013 F:      arch/x86/platform/uv/
19014
19015 X86 VDSO
19016 M:      Andy Lutomirski <[email protected]>
19017 L:      [email protected]
19018 S:      Maintained
19019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19020 F:      arch/x86/entry/vdso/
19021
19022 XARRAY
19023 M:      Matthew Wilcox <[email protected]>
19024 L:      [email protected]
19025 S:      Supported
19026 F:      Documentation/core-api/xarray.rst
19027 F:      include/linux/idr.h
19028 F:      include/linux/xarray.h
19029 F:      lib/idr.c
19030 F:      lib/xarray.c
19031 F:      tools/testing/radix-tree
19032
19033 XBOX DVD IR REMOTE
19034 M:      Benjamin Valentin <[email protected]>
19035 S:      Maintained
19036 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19037 F:      drivers/media/rc/xbox_remote.c
19038
19039 XC2028/3028 TUNER DRIVER
19040 M:      Mauro Carvalho Chehab <[email protected]>
19041 L:      [email protected]
19042 S:      Maintained
19043 W:      https://linuxtv.org
19044 T:      git git://linuxtv.org/media_tree.git
19045 F:      drivers/media/tuners/tuner-xc2028.*
19046
19047 XDP (eXpress Data Path)
19048 M:      Alexei Starovoitov <[email protected]>
19049 M:      Daniel Borkmann <[email protected]>
19050 M:      David S. Miller <[email protected]>
19051 M:      Jakub Kicinski <[email protected]>
19052 M:      Jesper Dangaard Brouer <[email protected]>
19053 M:      John Fastabend <[email protected]>
19054 L:      [email protected]
19055 L:      [email protected]
19056 S:      Supported
19057 F:      include/net/xdp.h
19058 F:      include/trace/events/xdp.h
19059 F:      kernel/bpf/cpumap.c
19060 F:      kernel/bpf/devmap.c
19061 F:      net/core/xdp.c
19062 N:      xdp
19063 K:      xdp
19064
19065 XDP SOCKETS (AF_XDP)
19066 M:      Björn Töpel <[email protected]>
19067 M:      Magnus Karlsson <[email protected]>
19068 R:      Jonathan Lemon <[email protected]>
19069 L:      [email protected]
19070 L:      [email protected]
19071 S:      Maintained
19072 F:      include/net/xdp_sock*
19073 F:      include/net/xsk_buff_pool.h
19074 F:      include/uapi/linux/if_xdp.h
19075 F:      net/xdp/
19076 F:      samples/bpf/xdpsock*
19077 F:      tools/lib/bpf/xsk*
19078
19079 XEN BLOCK SUBSYSTEM
19080 M:      Konrad Rzeszutek Wilk <[email protected]>
19081 M:      Roger Pau Monné <[email protected]>
19082 L:      [email protected] (moderated for non-subscribers)
19083 S:      Supported
19084 F:      drivers/block/xen*
19085 F:      drivers/block/xen-blkback/*
19086
19087 XEN HYPERVISOR ARM
19088 M:      Stefano Stabellini <[email protected]>
19089 L:      [email protected] (moderated for non-subscribers)
19090 S:      Maintained
19091 F:      arch/arm/include/asm/xen/
19092 F:      arch/arm/xen/
19093
19094 XEN HYPERVISOR ARM64
19095 M:      Stefano Stabellini <[email protected]>
19096 L:      [email protected] (moderated for non-subscribers)
19097 S:      Maintained
19098 F:      arch/arm64/include/asm/xen/
19099 F:      arch/arm64/xen/
19100
19101 XEN HYPERVISOR INTERFACE
19102 M:      Boris Ostrovsky <[email protected]>
19103 M:      Juergen Gross <[email protected]>
19104 R:      Stefano Stabellini <[email protected]>
19105 L:      [email protected] (moderated for non-subscribers)
19106 S:      Supported
19107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19108 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19109 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19110 F:      arch/x86/include/asm/pvclock-abi.h
19111 F:      arch/x86/include/asm/xen/
19112 F:      arch/x86/platform/pvh/
19113 F:      arch/x86/xen/
19114 F:      drivers/*/xen-*front.c
19115 F:      drivers/xen/
19116 F:      include/uapi/xen/
19117 F:      include/xen/
19118
19119 XEN NETWORK BACKEND DRIVER
19120 M:      Wei Liu <[email protected]>
19121 M:      Paul Durrant <[email protected]>
19122 L:      [email protected] (moderated for non-subscribers)
19123 L:      [email protected]
19124 S:      Supported
19125 F:      drivers/net/xen-netback/*
19126
19127 XEN PCI SUBSYSTEM
19128 M:      Konrad Rzeszutek Wilk <[email protected]>
19129 L:      [email protected] (moderated for non-subscribers)
19130 S:      Supported
19131 F:      arch/x86/pci/*xen*
19132 F:      drivers/pci/*xen*
19133
19134 XEN PVSCSI DRIVERS
19135 M:      Juergen Gross <[email protected]>
19136 L:      [email protected] (moderated for non-subscribers)
19137 L:      [email protected]
19138 S:      Supported
19139 F:      drivers/scsi/xen-scsifront.c
19140 F:      drivers/xen/xen-scsiback.c
19141 F:      include/xen/interface/io/vscsiif.h
19142
19143 XEN SOUND FRONTEND DRIVER
19144 M:      Oleksandr Andrushchenko <[email protected]>
19145 L:      [email protected] (moderated for non-subscribers)
19146 L:      [email protected] (moderated for non-subscribers)
19147 S:      Supported
19148 F:      sound/xen/*
19149
19150 XEN SWIOTLB SUBSYSTEM
19151 M:      Konrad Rzeszutek Wilk <[email protected]>
19152 L:      [email protected] (moderated for non-subscribers)
19153 L:      [email protected]
19154 S:      Supported
19155 F:      arch/x86/xen/*swiotlb*
19156 F:      drivers/xen/*swiotlb*
19157
19158 XFS FILESYSTEM
19159 M:      Darrick J. Wong <[email protected]>
19160 M:      [email protected]
19161 L:      [email protected]
19162 S:      Supported
19163 W:      http://xfs.org/
19164 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19165 F:      Documentation/ABI/testing/sysfs-fs-xfs
19166 F:      Documentation/admin-guide/xfs.rst
19167 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19168 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19169 F:      fs/xfs/
19170 F:      include/uapi/linux/dqblk_xfs.h
19171 F:      include/uapi/linux/fsmap.h
19172
19173 XILINX AXI ETHERNET DRIVER
19174 M:      Radhey Shyam Pandey <[email protected]>
19175 S:      Maintained
19176 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19177
19178 XILINX CAN DRIVER
19179 M:      Appana Durga Kedareswara rao <[email protected]>
19180 R:      Naga Sureshkumar Relli <[email protected]>
19181 L:      [email protected]
19182 S:      Maintained
19183 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19184 F:      drivers/net/can/xilinx_can.c
19185
19186 XILINX SD-FEC IP CORES
19187 M:      Derek Kiernan <[email protected]>
19188 M:      Dragan Cvetic <[email protected]>
19189 S:      Maintained
19190 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19191 F:      Documentation/misc-devices/xilinx_sdfec.rst
19192 F:      drivers/misc/Kconfig
19193 F:      drivers/misc/Makefile
19194 F:      drivers/misc/xilinx_sdfec.c
19195 F:      include/uapi/misc/xilinx_sdfec.h
19196
19197 XILINX UARTLITE SERIAL DRIVER
19198 M:      Peter Korsgaard <[email protected]>
19199 L:      [email protected]
19200 S:      Maintained
19201 F:      drivers/tty/serial/uartlite.c
19202
19203 XILINX VIDEO IP CORES
19204 M:      Hyun Kwon <[email protected]>
19205 M:      Laurent Pinchart <[email protected]>
19206 L:      [email protected]
19207 S:      Supported
19208 T:      git git://linuxtv.org/media_tree.git
19209 F:      Documentation/devicetree/bindings/media/xilinx/
19210 F:      drivers/media/platform/xilinx/
19211 F:      include/uapi/linux/xilinx-v4l2-controls.h
19212
19213 XILINX ZYNQMP DPDMA DRIVER
19214 M:      Hyun Kwon <[email protected]>
19215 M:      Laurent Pinchart <[email protected]>
19216 L:      [email protected]
19217 S:      Supported
19218 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19219 F:      drivers/dma/xilinx/xilinx_dpdma.c
19220 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19221
19222 XILINX ZYNQMP PSGTR PHY DRIVER
19223 M:      Anurag Kumar Vulisha <[email protected]>
19224 M:      Laurent Pinchart <[email protected]>
19225 L:      [email protected]
19226 S:      Supported
19227 T:      git https://github.com/Xilinx/linux-xlnx.git
19228 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19229 F:      drivers/phy/xilinx/phy-zynqmp.c
19230
19231 XILLYBUS DRIVER
19232 M:      Eli Billauer <[email protected]>
19233 L:      [email protected]
19234 S:      Supported
19235 F:      drivers/char/xillybus/
19236
19237 XLP9XX I2C DRIVER
19238 M:      George Cherian <[email protected]>
19239 L:      [email protected]
19240 S:      Supported
19241 W:      http://www.marvell.com
19242 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19243 F:      drivers/i2c/busses/i2c-xlp9xx.c
19244
19245 XRA1403 GPIO EXPANDER
19246 M:      Nandor Han <[email protected]>
19247 M:      Semi Malinen <[email protected]>
19248 L:      [email protected]
19249 S:      Maintained
19250 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19251 F:      drivers/gpio/gpio-xra1403.c
19252
19253 XTENSA XTFPGA PLATFORM SUPPORT
19254 M:      Max Filippov <[email protected]>
19255 L:      [email protected]
19256 S:      Maintained
19257 F:      drivers/spi/spi-xtensa-xtfpga.c
19258 F:      sound/soc/xtensa/xtfpga-i2s.c
19259
19260 YAM DRIVER FOR AX.25
19261 M:      Jean-Paul Roubelat <[email protected]>
19262 L:      [email protected]
19263 S:      Maintained
19264 F:      drivers/net/hamradio/yam*
19265 F:      include/linux/yam.h
19266
19267 YAMA SECURITY MODULE
19268 M:      Kees Cook <[email protected]>
19269 S:      Supported
19270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19271 F:      Documentation/admin-guide/LSM/Yama.rst
19272 F:      security/yama/
19273
19274 YEALINK PHONE DRIVER
19275 M:      Henk Vergonet <[email protected]>
19276 L:      [email protected]
19277 S:      Maintained
19278 F:      Documentation/input/devices/yealink.rst
19279 F:      drivers/input/misc/yealink.*
19280
19281 Z8530 DRIVER FOR AX.25
19282 M:      Joerg Reuter <[email protected]>
19283 L:      [email protected]
19284 S:      Maintained
19285 W:      http://yaina.de/jreuter/
19286 W:      http://www.qsl.net/dl1bke/
19287 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19288 F:      drivers/net/hamradio/*scc.c
19289 F:      drivers/net/hamradio/z8530.h
19290
19291 ZBUD COMPRESSED PAGE ALLOCATOR
19292 M:      Seth Jennings <[email protected]>
19293 M:      Dan Streetman <[email protected]>
19294 L:      [email protected]
19295 S:      Maintained
19296 F:      include/linux/zbud.h
19297 F:      mm/zbud.c
19298
19299 ZD1211RW WIRELESS DRIVER
19300 M:      Daniel Drake <[email protected]>
19301 M:      Ulrich Kunitz <[email protected]>
19302 L:      [email protected]
19303 L:      [email protected] (subscribers-only)
19304 S:      Maintained
19305 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19306 F:      drivers/net/wireless/zydas/zd1211rw/
19307
19308 ZD1301 MEDIA DRIVER
19309 M:      Antti Palosaari <[email protected]>
19310 L:      [email protected]
19311 S:      Maintained
19312 W:      https://linuxtv.org/
19313 W:      http://palosaari.fi/linux/
19314 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19315 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19316
19317 ZD1301_DEMOD MEDIA DRIVER
19318 M:      Antti Palosaari <[email protected]>
19319 L:      [email protected]
19320 S:      Maintained
19321 W:      https://linuxtv.org/
19322 W:      http://palosaari.fi/linux/
19323 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19324 F:      drivers/media/dvb-frontends/zd1301_demod*
19325
19326 ZHAOXIN PROCESSOR SUPPORT
19327 M:      Tony W Wang-oc <[email protected]>
19328 L:      [email protected]
19329 S:      Maintained
19330 F:      arch/x86/kernel/cpu/zhaoxin.c
19331
19332 ZONEFS FILESYSTEM
19333 M:      Damien Le Moal <[email protected]>
19334 M:      Naohiro Aota <[email protected]>
19335 R:      Johannes Thumshirn <[email protected]>
19336 L:      [email protected]
19337 S:      Maintained
19338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19339 F:      Documentation/filesystems/zonefs.rst
19340 F:      fs/zonefs/
19341
19342 ZR36067 VIDEO FOR LINUX DRIVER
19343 M:      Corentin Labbe <[email protected]>
19344 L:      [email protected]
19345 L:      [email protected]
19346 S:      Maintained
19347 W:      http://mjpeg.sourceforge.net/driver-zoran/
19348 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19349 F:      Documentation/driver-api/media/drivers/zoran.rst
19350 F:      drivers/staging/media/zoran/
19351
19352 ZPOOL COMPRESSED PAGE STORAGE API
19353 M:      Dan Streetman <[email protected]>
19354 L:      [email protected]
19355 S:      Maintained
19356 F:      include/linux/zpool.h
19357 F:      mm/zpool.c
19358
19359 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19360 M:      Minchan Kim <[email protected]>
19361 M:      Nitin Gupta <[email protected]>
19362 R:      Sergey Senozhatsky <[email protected]>
19363 L:      [email protected]
19364 S:      Maintained
19365 F:      Documentation/admin-guide/blockdev/zram.rst
19366 F:      drivers/block/zram/
19367
19368 ZS DECSTATION Z85C30 SERIAL DRIVER
19369 M:      "Maciej W. Rozycki" <[email protected]>
19370 S:      Maintained
19371 F:      drivers/tty/serial/zs.*
19372
19373 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19374 M:      Minchan Kim <[email protected]>
19375 M:      Nitin Gupta <[email protected]>
19376 R:      Sergey Senozhatsky <[email protected]>
19377 L:      [email protected]
19378 S:      Maintained
19379 F:      Documentation/vm/zsmalloc.rst
19380 F:      include/linux/zsmalloc.h
19381 F:      mm/zsmalloc.c
19382
19383 ZSWAP COMPRESSED SWAP CACHING
19384 M:      Seth Jennings <[email protected]>
19385 M:      Dan Streetman <[email protected]>
19386 M:      Vitaly Wool <[email protected]>
19387 L:      [email protected]
19388 S:      Maintained
19389 F:      mm/zswap.c
19390
19391 THE REST
19392 M:      Linus Torvalds <[email protected]>
19393 L:      [email protected]
19394 S:      Buried alive in reporters
19395 Q:      http://patchwork.kernel.org/project/LKML/list/
19396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19397 F:      *
19398 F:      */
This page took 1.069393 seconds and 4 git commands to generate.