]> Git Repo - linux.git/blob - MAINTAINERS
userfaultfd: wp: drop _PAGE_UFFD_WP properly when fork
[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
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         W: *Web-page* with status/info
88         B: URI for where to file *bugs*. A web-page with detailed bug
89            filing info, a direct bug tracker link, or a mailto: URI.
90         C: URI for *chat* protocol, server and channel where developers
91            usually hang out, for example irc://server/channel.
92         Q: *Patchwork* web based patch tracking system site
93         T: *SCM* tree type and location.
94            Type is one of: git, hg, quilt, stgit, topgit
95         S: *Status*, one of the following:
96            Supported:   Someone is actually paid to look after this.
97            Maintained:  Someone actually looks after it.
98            Odd Fixes:   It has a maintainer but they don't have time to do
99                         much other than throw the odd patch in. See below..
100            Orphan:      No current maintainer [but maybe you could take the
101                         role as you write your new code].
102            Obsolete:    Old code. Something tagged obsolete generally means
103                         it has been replaced by a better system and you
104                         should be using that.
105         P: Subsystem Profile document for more details submitting
106            patches to the given subsystem. This is either an in-tree file,
107            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
108            for details.
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         N: Files and directories *Regex* patterns.
116            N:   [^a-z]tegra     all files whose path contains the word tegra
117            One pattern per line.  Multiple N: lines acceptable.
118            scripts/get_maintainer.pl has different behavior for files that
119            match F: pattern and matches of N: patterns.  By default,
120            get_maintainer will not look at git log history when an F: pattern
121            match occurs.  When an N: match occurs, git log history is used
122            to also notify the people that have git commit signatures.
123         X: *Excluded* files and directories that are NOT maintained, same
124            rules as F:. Files exclusions are tested before file matches.
125            Can be useful for excluding a specific subdirectory, for instance:
126            F:   net/
127            X:   net/ipv6/
128            matches all files in and below net excluding net/ipv6/
129         K: *Content regex* (perl extended) pattern match in a patch or file.
130            For instance:
131            K: of_get_profile
132               matches patches or files that contain "of_get_profile"
133            K: \b(printk|pr_(info|err))\b
134               matches patches or files that contain one or more of the words
135               printk, pr_info or pr_err
136            One regex pattern per line.  Multiple K: lines acceptable.
137
138 Maintainers List
139 ----------------
140
141 .. note:: When reading this list, please look for the most precise areas
142           first. When adding to this list, please keep the entries in
143           alphabetical order.
144
145 3C59X NETWORK DRIVER
146 M:      Steffen Klassert <[email protected]>
147 L:      [email protected]
148 S:      Odd Fixes
149 F:      Documentation/networking/device_drivers/3com/vortex.txt
150 F:      drivers/net/ethernet/3com/3c59x.c
151
152 3CR990 NETWORK DRIVER
153 M:      David Dillow <[email protected]>
154 L:      [email protected]
155 S:      Maintained
156 F:      drivers/net/ethernet/3com/typhoon*
157
158 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
159 M:      Adam Radford <[email protected]>
160 L:      [email protected]
161 W:      http://www.lsi.com
162 S:      Supported
163 F:      drivers/scsi/3w-*
164
165 53C700 AND 53C700-66 SCSI DRIVER
166 M:      "James E.J. Bottomley" <[email protected]>
167 L:      [email protected]
168 S:      Maintained
169 F:      drivers/scsi/53c700*
170
171 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
172 M:      Alexander Aring <[email protected]>
173 M:      Jukka Rissanen <[email protected]>
174 L:      [email protected]
175 L:      [email protected]
176 S:      Maintained
177 F:      net/6lowpan/
178 F:      include/net/6lowpan.h
179 F:      Documentation/networking/6lowpan.rst
180
181 6PACK NETWORK DRIVER FOR AX.25
182 M:      Andreas Koensgen <[email protected]>
183 L:      [email protected]
184 S:      Maintained
185 F:      drivers/net/hamradio/6pack.c
186
187 8169 10/100/1000 GIGABIT ETHERNET DRIVER
188 M:      Realtek linux nic maintainers <[email protected]>
189 M:      Heiner Kallweit <[email protected]>
190 L:      [email protected]
191 S:      Maintained
192 F:      drivers/net/ethernet/realtek/r8169*
193
194 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
195 M:      Greg Kroah-Hartman <[email protected]>
196 L:      [email protected]
197 S:      Maintained
198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
199 F:      drivers/tty/serial/8250*
200 F:      include/linux/serial_8250.h
201
202 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
203 L:      [email protected]
204 S:      Orphan / Obsolete
205 F:      drivers/net/ethernet/8390/
206
207 9P FILE SYSTEM
208 M:      Eric Van Hensbergen <[email protected]>
209 M:      Latchesar Ionkov <[email protected]>
210 M:      Dominique Martinet <[email protected]>
211 L:      [email protected]
212 W:      http://swik.net/v9fs
213 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
215 T:      git git://github.com/martinetd/linux.git
216 S:      Maintained
217 F:      Documentation/filesystems/9p.rst
218 F:      fs/9p/
219 F:      net/9p/
220 F:      include/net/9p/
221 F:      include/uapi/linux/virtio_9p.h
222 F:      include/trace/events/9p.h
223
224 A8293 MEDIA DRIVER
225 M:      Antti Palosaari <[email protected]>
226 L:      [email protected]
227 W:      https://linuxtv.org
228 W:      http://palosaari.fi/linux/
229 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
230 T:      git git://linuxtv.org/anttip/media_tree.git
231 S:      Maintained
232 F:      drivers/media/dvb-frontends/a8293*
233
234 AACRAID SCSI RAID DRIVER
235 M:      Adaptec OEM Raid Solutions <[email protected]>
236 L:      [email protected]
237 W:      http://www.adaptec.com/
238 S:      Supported
239 F:      Documentation/scsi/aacraid.rst
240 F:      drivers/scsi/aacraid/
241
242 ABI/API
243 L:      [email protected]
244 F:      include/linux/syscalls.h
245 F:      kernel/sys_ni.c
246
247 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
248 M:      Hans de Goede <[email protected]>
249 L:      [email protected]
250 S:      Maintained
251 F:      drivers/hwmon/abituguru.c
252
253 ABIT UGURU 3 HARDWARE MONITOR DRIVER
254 M:      Alistair John Strachan <[email protected]>
255 L:      [email protected]
256 S:      Maintained
257 F:      drivers/hwmon/abituguru3.c
258
259 ACCES 104-DIO-48E GPIO DRIVER
260 M:      William Breathitt Gray <[email protected]>
261 L:      [email protected]
262 S:      Maintained
263 F:      drivers/gpio/gpio-104-dio-48e.c
264
265 ACCES 104-IDI-48 GPIO DRIVER
266 M:      "William Breathitt Gray" <[email protected]>
267 L:      [email protected]
268 S:      Maintained
269 F:      drivers/gpio/gpio-104-idi-48.c
270
271 ACCES 104-IDIO-16 GPIO DRIVER
272 M:      "William Breathitt Gray" <[email protected]>
273 L:      [email protected]
274 S:      Maintained
275 F:      drivers/gpio/gpio-104-idio-16.c
276
277 ACCES 104-QUAD-8 DRIVER
278 M:      William Breathitt Gray <[email protected]>
279 L:      [email protected]
280 S:      Maintained
281 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
282 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
283 F:      drivers/counter/104-quad-8.c
284
285 ACCES PCI-IDIO-16 GPIO DRIVER
286 M:      William Breathitt Gray <[email protected]>
287 L:      [email protected]
288 S:      Maintained
289 F:      drivers/gpio/gpio-pci-idio-16.c
290
291 ACCES PCIe-IDIO-24 GPIO DRIVER
292 M:      William Breathitt Gray <[email protected]>
293 L:      [email protected]
294 S:      Maintained
295 F:      drivers/gpio/gpio-pcie-idio-24.c
296
297 ACENIC DRIVER
298 M:      Jes Sorensen <[email protected]>
299 L:      [email protected]
300 S:      Maintained
301 F:      drivers/net/ethernet/alteon/acenic*
302
303 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
304 M:      Peter Kaestle <[email protected]>
305 L:      [email protected]
306 S:      Maintained
307 W:      http://piie.net/?section=acerhdf
308 F:      drivers/platform/x86/acerhdf.c
309
310 ACER WMI LAPTOP EXTRAS
311 M:      "Lee, Chun-Yi" <[email protected]>
312 L:      [email protected]
313 S:      Maintained
314 F:      drivers/platform/x86/acer-wmi.c
315
316 ACPI
317 M:      "Rafael J. Wysocki" <[email protected]>
318 M:      Len Brown <[email protected]>
319 L:      [email protected]
320 S:      Supported
321 W:      https://01.org/linux-acpi
322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
323 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
324 B:      https://bugzilla.kernel.org
325 F:      Documentation/ABI/testing/configfs-acpi
326 F:      Documentation/ABI/testing/sysfs-bus-acpi
327 F:      Documentation/firmware-guide/acpi/
328 F:      drivers/acpi/
329 F:      drivers/pci/*/*acpi*
330 F:      drivers/pci/*acpi*
331 F:      drivers/pnp/pnpacpi/
332 F:      include/acpi/
333 F:      include/linux/acpi.h
334 F:      include/linux/fwnode.h
335 F:      tools/power/acpi/
336
337 ACPI APEI
338 M:      "Rafael J. Wysocki" <[email protected]>
339 M:      Len Brown <[email protected]>
340 R:      James Morse <[email protected]>
341 R:      Tony Luck <[email protected]>
342 R:      Borislav Petkov <[email protected]>
343 L:      [email protected]
344 F:      drivers/acpi/apei/
345
346 ACPI COMPONENT ARCHITECTURE (ACPICA)
347 M:      Robert Moore <[email protected]>
348 M:      Erik Kaneda <[email protected]>
349 M:      "Rafael J. Wysocki" <[email protected]>
350 L:      [email protected]
351 L:      [email protected]
352 S:      Supported
353 W:      https://acpica.org/
354 W:      https://github.com/acpica/acpica/
355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
356 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
357 B:      https://bugzilla.kernel.org
358 B:      https://bugs.acpica.org
359 F:      drivers/acpi/acpica/
360 F:      include/acpi/
361 F:      tools/power/acpi/
362
363 ACPI FAN DRIVER
364 M:      Zhang Rui <[email protected]>
365 L:      [email protected]
366 S:      Supported
367 W:      https://01.org/linux-acpi
368 B:      https://bugzilla.kernel.org
369 F:      drivers/acpi/fan.c
370
371 ACPI FOR ARM64 (ACPI/arm64)
372 M:      Lorenzo Pieralisi <[email protected]>
373 M:      Hanjun Guo <[email protected]>
374 M:      Sudeep Holla <[email protected]>
375 L:      [email protected]
376 L:      [email protected] (moderated for non-subscribers)
377 S:      Maintained
378 F:      drivers/acpi/arm64
379
380 ACPI I2C MULTI INSTANTIATE DRIVER
381 M:      Hans de Goede <[email protected]>
382 L:      [email protected]
383 S:      Maintained
384 F:      drivers/platform/x86/i2c-multi-instantiate.c
385
386 ACPI PMIC DRIVERS
387 M:      "Rafael J. Wysocki" <[email protected]>
388 M:      Len Brown <[email protected]>
389 R:      Andy Shevchenko <[email protected]>
390 R:      Mika Westerberg <[email protected]>
391 L:      [email protected]
392 S:      Supported
393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
394 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
395 B:      https://bugzilla.kernel.org
396 F:      drivers/acpi/pmic/
397
398 ACPI THERMAL DRIVER
399 M:      Zhang Rui <[email protected]>
400 L:      [email protected]
401 S:      Supported
402 W:      https://01.org/linux-acpi
403 B:      https://bugzilla.kernel.org
404 F:      drivers/acpi/*thermal*
405
406 ACPI VIDEO DRIVER
407 M:      Zhang Rui <[email protected]>
408 L:      [email protected]
409 S:      Supported
410 W:      https://01.org/linux-acpi
411 B:      https://bugzilla.kernel.org
412 F:      drivers/acpi/acpi_video.c
413
414 ACPI WMI DRIVER
415 L:      [email protected]
416 S:      Orphan
417 F:      drivers/platform/x86/wmi.c
418 F:      include/uapi/linux/wmi.h
419
420 AD1889 ALSA SOUND DRIVER
421 W:      https://parisc.wiki.kernel.org/index.php/AD1889
422 L:      [email protected]
423 S:      Maintained
424 F:      sound/pci/ad1889.*
425
426 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
427 M:      Michael Hennerich <[email protected]>
428 W:      http://wiki.analog.com/AD5254
429 W:      http://ez.analog.com/community/linux-device-drivers
430 S:      Supported
431 F:      drivers/misc/ad525x_dpot.c
432
433 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
434 M:      Michael Hennerich <[email protected]>
435 W:      http://wiki.analog.com/AD5398
436 W:      http://ez.analog.com/community/linux-device-drivers
437 S:      Supported
438 F:      drivers/regulator/ad5398.c
439
440 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
441 M:      Michael Hennerich <[email protected]>
442 W:      http://wiki.analog.com/AD7142
443 W:      http://ez.analog.com/community/linux-device-drivers
444 S:      Supported
445 F:      drivers/input/misc/ad714x.c
446
447 AD7877 TOUCHSCREEN DRIVER
448 M:      Michael Hennerich <[email protected]>
449 W:      http://wiki.analog.com/AD7877
450 W:      http://ez.analog.com/community/linux-device-drivers
451 S:      Supported
452 F:      drivers/input/touchscreen/ad7877.c
453
454 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
455 M:      Michael Hennerich <[email protected]>
456 W:      http://wiki.analog.com/AD7879
457 W:      http://ez.analog.com/community/linux-device-drivers
458 S:      Supported
459 F:      drivers/input/touchscreen/ad7879.c
460
461 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
462 M:      Jiri Kosina <[email protected]>
463 S:      Maintained
464
465 ADF7242 IEEE 802.15.4 RADIO DRIVER
466 M:      Michael Hennerich <[email protected]>
467 W:      https://wiki.analog.com/ADF7242
468 W:      http://ez.analog.com/community/linux-device-drivers
469 L:      [email protected]
470 S:      Supported
471 F:      drivers/net/ieee802154/adf7242.c
472 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
473
474 ADM1025 HARDWARE MONITOR DRIVER
475 M:      Jean Delvare <[email protected]>
476 L:      [email protected]
477 S:      Maintained
478 F:      Documentation/hwmon/adm1025.rst
479 F:      drivers/hwmon/adm1025.c
480
481 ADM1029 HARDWARE MONITOR DRIVER
482 M:      Corentin Labbe <[email protected]>
483 L:      [email protected]
484 S:      Maintained
485 F:      drivers/hwmon/adm1029.c
486
487 ADM8211 WIRELESS DRIVER
488 L:      [email protected]
489 W:      http://wireless.kernel.org/
490 S:      Orphan
491 F:      drivers/net/wireless/admtek/adm8211.*
492
493 ADP1653 FLASH CONTROLLER DRIVER
494 M:      Sakari Ailus <[email protected]>
495 L:      [email protected]
496 S:      Maintained
497 F:      drivers/media/i2c/adp1653.c
498 F:      include/media/i2c/adp1653.h
499
500 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
501 M:      Michael Hennerich <[email protected]>
502 W:      http://wiki.analog.com/ADP5520
503 W:      http://ez.analog.com/community/linux-device-drivers
504 S:      Supported
505 F:      drivers/mfd/adp5520.c
506 F:      drivers/video/backlight/adp5520_bl.c
507 F:      drivers/leds/leds-adp5520.c
508 F:      drivers/gpio/gpio-adp5520.c
509 F:      drivers/input/keyboard/adp5520-keys.c
510
511 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
512 M:      Michael Hennerich <[email protected]>
513 W:      http://wiki.analog.com/ADP5588
514 W:      http://ez.analog.com/community/linux-device-drivers
515 S:      Supported
516 F:      drivers/input/keyboard/adp5588-keys.c
517 F:      drivers/gpio/gpio-adp5588.c
518
519 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
520 M:      Michael Hennerich <[email protected]>
521 W:      http://wiki.analog.com/ADP8860
522 W:      http://ez.analog.com/community/linux-device-drivers
523 S:      Supported
524 F:      drivers/video/backlight/adp8860_bl.c
525
526 ADT746X FAN DRIVER
527 M:      Colin Leroy <[email protected]>
528 S:      Maintained
529 F:      drivers/macintosh/therm_adt746x.c
530
531 ADT7475 HARDWARE MONITOR DRIVER
532 M:      Jean Delvare <[email protected]>
533 L:      [email protected]
534 S:      Maintained
535 F:      Documentation/hwmon/adt7475.rst
536 F:      drivers/hwmon/adt7475.c
537
538 ADVANSYS SCSI DRIVER
539 M:      Matthew Wilcox <[email protected]>
540 M:      Hannes Reinecke <[email protected]>
541 L:      [email protected]
542 S:      Maintained
543 F:      Documentation/scsi/advansys.rst
544 F:      drivers/scsi/advansys.c
545
546 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
547 M:      Michael Hennerich <[email protected]>
548 W:      http://wiki.analog.com/ADXL345
549 W:      http://ez.analog.com/community/linux-device-drivers
550 S:      Supported
551 F:      drivers/input/misc/adxl34x.c
552 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
553
554 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
555 M:      Stefan Popa <[email protected]>
556 W:      http://ez.analog.com/community/linux-device-drivers
557 S:      Supported
558 F:      drivers/iio/accel/adxl372.c
559 F:      drivers/iio/accel/adxl372_spi.c
560 F:      drivers/iio/accel/adxl372_i2c.c
561 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
562
563 AF9013 MEDIA DRIVER
564 M:      Antti Palosaari <[email protected]>
565 L:      [email protected]
566 W:      https://linuxtv.org
567 W:      http://palosaari.fi/linux/
568 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
569 T:      git git://linuxtv.org/anttip/media_tree.git
570 S:      Maintained
571 F:      drivers/media/dvb-frontends/af9013*
572
573 AF9033 MEDIA DRIVER
574 M:      Antti Palosaari <[email protected]>
575 L:      [email protected]
576 W:      https://linuxtv.org
577 W:      http://palosaari.fi/linux/
578 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
579 T:      git git://linuxtv.org/anttip/media_tree.git
580 S:      Maintained
581 F:      drivers/media/dvb-frontends/af9033*
582
583 AFFS FILE SYSTEM
584 M:      David Sterba <[email protected]>
585 L:      [email protected]
586 S:      Odd Fixes
587 F:      Documentation/filesystems/affs.rst
588 F:      fs/affs/
589
590 AFS FILESYSTEM
591 M:      David Howells <[email protected]>
592 L:      [email protected]
593 S:      Supported
594 F:      fs/afs/
595 F:      include/trace/events/afs.h
596 F:      Documentation/filesystems/afs.rst
597 W:      https://www.infradead.org/~dhowells/kafs/
598
599 AGPGART DRIVER
600 M:      David Airlie <[email protected]>
601 T:      git git://anongit.freedesktop.org/drm/drm
602 S:      Maintained
603 F:      drivers/char/agp/
604 F:      include/linux/agp*
605 F:      include/uapi/linux/agp*
606
607 AHA152X SCSI DRIVER
608 M:      "Juergen E. Fischer" <[email protected]>
609 L:      [email protected]
610 S:      Maintained
611 F:      drivers/scsi/aha152x*
612 F:      drivers/scsi/pcmcia/aha152x*
613
614 AIC7XXX / AIC79XX SCSI DRIVER
615 M:      Hannes Reinecke <[email protected]>
616 L:      [email protected]
617 S:      Maintained
618 F:      drivers/scsi/aic7xxx/
619
620 AIMSLAB FM RADIO RECEIVER DRIVER
621 M:      Hans Verkuil <[email protected]>
622 L:      [email protected]
623 T:      git git://linuxtv.org/media_tree.git
624 W:      https://linuxtv.org
625 S:      Maintained
626 F:      drivers/media/radio/radio-aimslab*
627
628 AIO
629 M:      Benjamin LaHaise <[email protected]>
630 L:      [email protected]
631 S:      Supported
632 F:      fs/aio.c
633 F:      include/linux/*aio*.h
634
635 AIRSPY MEDIA DRIVER
636 M:      Antti Palosaari <[email protected]>
637 L:      [email protected]
638 W:      https://linuxtv.org
639 W:      http://palosaari.fi/linux/
640 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
641 T:      git git://linuxtv.org/anttip/media_tree.git
642 S:      Maintained
643 F:      drivers/media/usb/airspy/
644
645 ALACRITECH GIGABIT ETHERNET DRIVER
646 M:      Lino Sanfilippo <[email protected]>
647 S:      Maintained
648 F:      drivers/net/ethernet/alacritech/*
649
650 FORCEDETH GIGABIT ETHERNET DRIVER
651 M:      Rain River <[email protected]>
652 M:      Zhu Yanjun <[email protected]>
653 L:      [email protected]
654 S:      Maintained
655 F:      drivers/net/ethernet/nvidia/*
656
657 ALCATEL SPEEDTOUCH USB DRIVER
658 M:      Duncan Sands <[email protected]>
659 L:      [email protected]
660 W:      http://www.linux-usb.org/SpeedTouch/
661 S:      Maintained
662 F:      drivers/usb/atm/speedtch.c
663 F:      drivers/usb/atm/usbatm.c
664
665 ALCHEMY AU1XX0 MMC DRIVER
666 M:      Manuel Lauss <[email protected]>
667 S:      Maintained
668 F:      drivers/mmc/host/au1xmmc.c
669
670 ALI1563 I2C DRIVER
671 M:      Rudolf Marek <[email protected]>
672 L:      [email protected]
673 S:      Maintained
674 F:      Documentation/i2c/busses/i2c-ali1563.rst
675 F:      drivers/i2c/busses/i2c-ali1563.c
676
677 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
678 M:      Tomislav Denis <[email protected]>
679 W:      http://www.allsensors.com/
680 S:      Maintained
681 L:      [email protected]
682 F:      drivers/iio/pressure/dlhl60d.c
683 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
684
685 ALLEGRO DVT VIDEO IP CORE DRIVER
686 M:      Michael Tretter <[email protected]>
687 R:      Pengutronix Kernel Team <[email protected]>
688 L:      [email protected]
689 S:      Maintained
690 F:      drivers/staging/media/allegro-dvt/
691
692 ALLWINNER CPUFREQ DRIVER
693 M:      Yangtao Li <[email protected]>
694 L:      [email protected]
695 S:      Maintained
696 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
697 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
698
699 ALLWINNER CRYPTO DRIVERS
700 M:      Corentin Labbe <[email protected]>
701 L:      [email protected]
702 S:      Maintained
703 F:      drivers/crypto/allwinner/
704
705 ALLWINNER THERMAL DRIVER
706 M:      Vasily Khoruzhick <[email protected]>
707 M:      Yangtao Li <[email protected]>
708 L:      [email protected]
709 S:      Maintained
710 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
711 F:      drivers/thermal/sun8i_thermal.c
712
713 ALLWINNER VPU DRIVER
714 M:      Maxime Ripard <[email protected]>
715 M:      Paul Kocialkowski <[email protected]>
716 L:      [email protected]
717 S:      Maintained
718 F:      drivers/staging/media/sunxi/cedrus/
719
720 ALPHA PORT
721 M:      Richard Henderson <[email protected]>
722 M:      Ivan Kokshaysky <[email protected]>
723 M:      Matt Turner <[email protected]>
724 S:      Odd Fixes
725 L:      [email protected]
726 F:      arch/alpha/
727
728 ALPS PS/2 TOUCHPAD DRIVER
729 R:      Pali Rohár <[email protected]>
730 F:      drivers/input/mouse/alps.*
731
732 ALTERA I2C CONTROLLER DRIVER
733 M:      Thor Thayer <[email protected]>
734 S:      Maintained
735 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
736 F:      drivers/i2c/busses/i2c-altera.c
737
738 ALTERA MAILBOX DRIVER
739 M:      Ley Foon Tan <[email protected]>
740 L:      [email protected] (moderated for non-subscribers)
741 S:      Maintained
742 F:      drivers/mailbox/mailbox-altera.c
743
744 ALTERA PIO DRIVER
745 M:      Joyce Ooi <[email protected]>
746 L:      [email protected]
747 S:      Maintained
748 F:      drivers/gpio/gpio-altera.c
749
750 ALTERA SYSTEM MANAGER DRIVER
751 M:      Thor Thayer <[email protected]>
752 S:      Maintained
753 F:      drivers/mfd/altera-sysmgr.c
754 F:      include/linux/mfd/altera-sysmgr.h
755
756 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
757 M:      Thor Thayer <[email protected]>
758 S:      Maintained
759 F:      drivers/gpio/gpio-altera-a10sr.c
760 F:      drivers/mfd/altera-a10sr.c
761 F:      drivers/reset/reset-a10sr.c
762 F:      include/linux/mfd/altera-a10sr.h
763 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
764
765 ALTERA TRIPLE SPEED ETHERNET DRIVER
766 M:      Thor Thayer <[email protected]>
767 L:      [email protected]
768 L:      [email protected] (moderated for non-subscribers)
769 S:      Maintained
770 F:      drivers/net/ethernet/altera/
771
772 ALTERA UART/JTAG UART SERIAL DRIVERS
773 M:      Tobias Klauser <[email protected]>
774 L:      [email protected]
775 L:      [email protected] (moderated for non-subscribers)
776 S:      Maintained
777 F:      drivers/tty/serial/altera_uart.c
778 F:      drivers/tty/serial/altera_jtaguart.c
779 F:      include/linux/altera_uart.h
780 F:      include/linux/altera_jtaguart.h
781
782 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
783 M:      Talel Shenhar <[email protected]>
784 S:      Maintained
785 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
786 F:      drivers/thermal/thermal_mmio.c
787
788 AMAZON ETHERNET DRIVERS
789 M:      Netanel Belgazal <[email protected]>
790 M:      Arthur Kiyanovski <[email protected]>
791 R:      Guy Tzalik <[email protected]>
792 R:      Saeed Bishara <[email protected]>
793 R:      Zorik Machulsky <[email protected]>
794 L:      [email protected]
795 S:      Supported
796 F:      Documentation/networking/device_drivers/amazon/ena.txt
797 F:      drivers/net/ethernet/amazon/
798
799 AMAZON RDMA EFA DRIVER
800 M:      Gal Pressman <[email protected]>
801 R:      Yossi Leybovich <[email protected]>
802 L:      [email protected]
803 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
804 S:      Supported
805 F:      drivers/infiniband/hw/efa/
806 F:      include/uapi/rdma/efa-abi.h
807
808 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
809 M:      Tom Lendacky <[email protected]>
810 L:      [email protected]
811 S:      Supported
812 F:      drivers/crypto/ccp/
813 F:      include/linux/ccp.h
814
815 AMD DISPLAY CORE
816 M:      Harry Wentland <[email protected]>
817 M:      Leo Li <[email protected]>
818 L:      [email protected]
819 T:      git git://people.freedesktop.org/~agd5f/linux
820 S:      Supported
821 F:      drivers/gpu/drm/amd/display/
822
823 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
824 M:      Huang Rui <[email protected]>
825 L:      [email protected]
826 S:      Supported
827 F:      Documentation/hwmon/fam15h_power.rst
828 F:      drivers/hwmon/fam15h_power.c
829
830 AMD FCH GPIO DRIVER
831 M:      Enrico Weigelt, metux IT consult <[email protected]>
832 L:      [email protected]
833 S:      Maintained
834 F:      drivers/gpio/gpio-amd-fch.c
835 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
836
837 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
838 L:      [email protected] (moderated for non-subscribers)
839 S:      Orphan
840 F:      drivers/usb/gadget/udc/amd5536udc.*
841
842 AMD GEODE PROCESSOR/CHIPSET SUPPORT
843 M:      Andres Salomon <[email protected]>
844 L:      [email protected] (moderated for non-subscribers)
845 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
846 S:      Supported
847 F:      drivers/char/hw_random/geode-rng.c
848 F:      drivers/crypto/geode*
849 F:      drivers/video/fbdev/geode/
850 F:      arch/x86/include/asm/geode.h
851
852 AMD IOMMU (AMD-VI)
853 M:      Joerg Roedel <[email protected]>
854 L:      [email protected]
855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
856 S:      Maintained
857 F:      drivers/iommu/amd_iommu*.[ch]
858 F:      include/linux/amd-iommu.h
859
860 AMD KFD
861 M:      Felix Kuehling <[email protected]>
862 L:      [email protected]
863 T:      git git://people.freedesktop.org/~agd5f/linux
864 S:      Supported
865 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
866 F:      drivers/gpu/drm/amd/amdkfd/
867 F:      drivers/gpu/drm/amd/include/cik_structs.h
868 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
869 F:      drivers/gpu/drm/amd/include/vi_structs.h
870 F:      drivers/gpu/drm/amd/include/v9_structs.h
871 F:      include/uapi/linux/kfd_ioctl.h
872
873 AMD MP2 I2C DRIVER
874 M:      Elie Morisse <[email protected]>
875 M:      Nehal Shah <[email protected]>
876 M:      Shyam Sundar S K <[email protected]>
877 L:      [email protected]
878 S:      Maintained
879 F:      drivers/i2c/busses/i2c-amd-mp2*
880
881 AMD POWERPLAY
882 M:      Evan Quan <[email protected]>
883 L:      [email protected]
884 S:      Supported
885 F:      drivers/gpu/drm/amd/powerplay/
886 T:      git git://people.freedesktop.org/~agd5f/linux
887
888 AMD SEATTLE DEVICE TREE SUPPORT
889 M:      Brijesh Singh <[email protected]>
890 M:      Suravee Suthikulpanit <[email protected]>
891 M:      Tom Lendacky <[email protected]>
892 S:      Supported
893 F:      arch/arm64/boot/dts/amd/
894
895 AMD XGBE DRIVER
896 M:      Tom Lendacky <[email protected]>
897 L:      [email protected]
898 S:      Supported
899 F:      drivers/net/ethernet/amd/xgbe/
900 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
901
902 ANALOG DEVICES INC AD5686 DRIVER
903 M:      Stefan Popa <[email protected]>
904 L:      [email protected]
905 W:      http://ez.analog.com/community/linux-device-drivers
906 S:      Supported
907 F:      drivers/iio/dac/ad5686*
908 F:      drivers/iio/dac/ad5696*
909
910 ANALOG DEVICES INC AD5758 DRIVER
911 M:      Stefan Popa <[email protected]>
912 L:      [email protected]
913 W:      http://ez.analog.com/community/linux-device-drivers
914 S:      Supported
915 F:      drivers/iio/dac/ad5758.c
916 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
917
918 ANALOG DEVICES INC AD7091R5 DRIVER
919 M:      Beniamin Bia <[email protected]>
920 L:      [email protected]
921 W:      http://ez.analog.com/community/linux-device-drivers
922 S:      Supported
923 F:      drivers/iio/adc/ad7091r5.c
924 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
925
926 ANALOG DEVICES INC AD7124 DRIVER
927 M:      Stefan Popa <[email protected]>
928 L:      [email protected]
929 W:      http://ez.analog.com/community/linux-device-drivers
930 S:      Supported
931 F:      drivers/iio/adc/ad7124.c
932 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
933
934 ANALOG DEVICES INC AD7192 DRIVER
935 M:      Alexandru Tachici <[email protected]>
936 L:      [email protected]
937 W:      http://ez.analog.com/community/linux-device-drivers
938 S:      Supported
939 F:      drivers/iio/adc/ad7192.c
940 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
941
942 ANALOG DEVICES INC AD7292 DRIVER
943 M:      Marcelo Schmitt <[email protected]>
944 L:      [email protected]
945 W:      http://ez.analog.com/community/linux-device-drivers
946 S:      Supported
947 F:      drivers/iio/adc/ad7292.c
948 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
949
950 ANALOG DEVICES INC AD7606 DRIVER
951 M:      Stefan Popa <[email protected]>
952 M:      Beniamin Bia <[email protected]>
953 L:      [email protected]
954 W:      http://ez.analog.com/community/linux-device-drivers
955 S:      Supported
956 F:      drivers/iio/adc/ad7606.c
957 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
958
959 ANALOG DEVICES INC AD7768-1 DRIVER
960 M:      Stefan Popa <[email protected]>
961 L:      [email protected]
962 W:      http://ez.analog.com/community/linux-device-drivers
963 S:      Supported
964 F:      drivers/iio/adc/ad7768-1.c
965 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
966
967 ANALOG DEVICES INC AD7780 DRIVER
968 M:      Michael Hennerich <[email protected]>
969 M:      Renato Lui Geh <[email protected]>
970 L:      [email protected]
971 W:      http://ez.analog.com/community/linux-device-drivers
972 S:      Supported
973 F:      drivers/iio/adc/ad7780.c
974 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
975
976 ANALOG DEVICES INC AD9389B DRIVER
977 M:      Hans Verkuil <[email protected]>
978 L:      [email protected]
979 S:      Maintained
980 F:      drivers/media/i2c/ad9389b*
981
982 ANALOG DEVICES INC ADGS1408 DRIVER
983 M:      Mircea Caprioru <[email protected]>
984 S:      Supported
985 F:      drivers/mux/adgs1408.c
986 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
987
988 ANALOG DEVICES INC ADIN DRIVER
989 M:      Alexandru Ardelean <[email protected]>
990 L:      [email protected]
991 W:      http://ez.analog.com/community/linux-device-drivers
992 S:      Supported
993 F:      drivers/net/phy/adin.c
994 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
995
996 ANALOG DEVICES INC ADIS DRIVER LIBRARY
997 M:      Alexandru Ardelean <[email protected]>
998 S:      Supported
999 L:      [email protected]
1000 F:      include/linux/iio/imu/adis.h
1001 F:      drivers/iio/imu/adis.c
1002
1003 ANALOG DEVICES INC ADIS16460 DRIVER
1004 M:      Dragos Bogdan <[email protected]>
1005 S:      Supported
1006 L:      [email protected]
1007 W:      http://ez.analog.com/community/linux-device-drivers
1008 F:      drivers/iio/imu/adis16460.c
1009 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1010
1011 ANALOG DEVICES INC ADM1177 DRIVER
1012 M:      Beniamin Bia <[email protected]>
1013 M:      Michael Hennerich <[email protected]>
1014 L:      [email protected]
1015 W:      http://ez.analog.com/community/linux-device-drivers
1016 S:      Supported
1017 F:      drivers/hwmon/adm1177.c
1018 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1019
1020 ANALOG DEVICES INC ADP5061 DRIVER
1021 M:      Stefan Popa <[email protected]>
1022 L:      [email protected]
1023 W:      http://ez.analog.com/community/linux-device-drivers
1024 S:      Supported
1025 F:      drivers/power/supply/adp5061.c
1026
1027 ANALOG DEVICES INC ADV7180 DRIVER
1028 M:      Lars-Peter Clausen <[email protected]>
1029 L:      [email protected]
1030 W:      http://ez.analog.com/community/linux-device-drivers
1031 S:      Supported
1032 F:      drivers/media/i2c/adv7180.c
1033
1034 ANALOG DEVICES INC ADV748X DRIVER
1035 M:      Kieran Bingham <[email protected]>
1036 L:      [email protected]
1037 S:      Maintained
1038 F:      drivers/media/i2c/adv748x/*
1039
1040 ANALOG DEVICES INC ADV7511 DRIVER
1041 M:      Hans Verkuil <[email protected]>
1042 L:      [email protected]
1043 S:      Maintained
1044 F:      drivers/media/i2c/adv7511*
1045
1046 ANALOG DEVICES INC ADV7604 DRIVER
1047 M:      Hans Verkuil <[email protected]>
1048 L:      [email protected]
1049 S:      Maintained
1050 F:      drivers/media/i2c/adv7604*
1051
1052 ANALOG DEVICES INC ADV7842 DRIVER
1053 M:      Hans Verkuil <[email protected]>
1054 L:      [email protected]
1055 S:      Maintained
1056 F:      drivers/media/i2c/adv7842*
1057
1058 ANALOG DEVICES INC ASOC CODEC DRIVERS
1059 M:      Lars-Peter Clausen <[email protected]>
1060 M:      Nuno Sá <[email protected]>
1061 L:      [email protected] (moderated for non-subscribers)
1062 W:      http://wiki.analog.com/
1063 W:      http://ez.analog.com/community/linux-device-drivers
1064 S:      Supported
1065 F:      sound/soc/codecs/adau*
1066 F:      sound/soc/codecs/adav*
1067 F:      sound/soc/codecs/ad1*
1068 F:      sound/soc/codecs/ad7*
1069 F:      sound/soc/codecs/ssm*
1070 F:      sound/soc/codecs/sigmadsp.*
1071
1072 ANALOG DEVICES INC DMA DRIVERS
1073 M:      Lars-Peter Clausen <[email protected]>
1074 W:      http://ez.analog.com/community/linux-device-drivers
1075 S:      Supported
1076 F:      drivers/dma/dma-axi-dmac.c
1077
1078 ANALOG DEVICES INC IIO DRIVERS
1079 M:      Lars-Peter Clausen <[email protected]>
1080 M:      Michael Hennerich <[email protected]>
1081 M:      Stefan Popa <[email protected]>
1082 W:      http://wiki.analog.com/
1083 W:      http://ez.analog.com/community/linux-device-drivers
1084 S:      Supported
1085 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1086 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1087 F:      drivers/iio/*/ad*
1088 F:      drivers/iio/adc/ltc249*
1089 X:      drivers/iio/*/adjd*
1090 F:      drivers/staging/iio/*/ad*
1091
1092 ANALOG DEVICES INC HMC425A DRIVER
1093 M:      Beniamin Bia <[email protected]>
1094 M:      Michael Hennerich <[email protected]>
1095 L:      [email protected]
1096 S:      Supported
1097 W:      http://ez.analog.com/community/linux-device-drivers
1098 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1099 F:      drivers/iio/amplifiers/hmc425a.c
1100
1101 ANALOGBITS PLL LIBRARIES
1102 M:      Paul Walmsley <[email protected]>
1103 S:      Supported
1104 F:      drivers/clk/analogbits/*
1105 F:      include/linux/clk/analogbits*
1106
1107 ANDES ARCHITECTURE
1108 M:      Nick Hu <[email protected]>
1109 M:      Greentime Hu <[email protected]>
1110 M:      Vincent Chen <[email protected]>
1111 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1112 S:      Supported
1113 F:      arch/nds32/
1114 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1115 F:      Documentation/devicetree/bindings/nds32/
1116 K:      nds32
1117 N:      nds32
1118
1119 ANDROID CONFIG FRAGMENTS
1120 M:      Rob Herring <[email protected]>
1121 S:      Supported
1122 F:      kernel/configs/android*
1123
1124 ANDROID DRIVERS
1125 M:      Greg Kroah-Hartman <[email protected]>
1126 M:      Arve Hjønnevåg <[email protected]>
1127 M:      Todd Kjos <[email protected]>
1128 M:      Martijn Coenen <[email protected]>
1129 M:      Joel Fernandes <[email protected]>
1130 M:      Christian Brauner <[email protected]>
1131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1132 L:      [email protected]
1133 S:      Supported
1134 F:      drivers/android/
1135 F:      drivers/staging/android/
1136
1137 ANDROID GOLDFISH PIC DRIVER
1138 M:      Miodrag Dinic <[email protected]>
1139 S:      Supported
1140 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1141 F:      drivers/irqchip/irq-goldfish-pic.c
1142
1143 ANDROID GOLDFISH RTC DRIVER
1144 M:      Miodrag Dinic <[email protected]>
1145 S:      Supported
1146 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1147 F:      drivers/rtc/rtc-goldfish.c
1148
1149 ANDROID ION DRIVER
1150 M:      Laura Abbott <[email protected]>
1151 M:      Sumit Semwal <[email protected]>
1152 L:      [email protected]
1153 L:      [email protected]
1154 L:      [email protected] (moderated for non-subscribers)
1155 S:      Supported
1156 F:      drivers/staging/android/ion
1157 F:      drivers/staging/android/uapi/ion.h
1158
1159 AOA (Apple Onboard Audio) ALSA DRIVER
1160 M:      Johannes Berg <[email protected]>
1161 L:      [email protected]
1162 L:      [email protected] (moderated for non-subscribers)
1163 S:      Maintained
1164 F:      sound/aoa/
1165
1166 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1167 M:      William Breathitt Gray <[email protected]>
1168 L:      [email protected]
1169 S:      Maintained
1170 F:      drivers/iio/adc/stx104.c
1171
1172 APM DRIVER
1173 M:      Jiri Kosina <[email protected]>
1174 S:      Odd fixes
1175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1176 F:      arch/x86/kernel/apm_32.c
1177 F:      include/linux/apm_bios.h
1178 F:      include/uapi/linux/apm_bios.h
1179 F:      drivers/char/apm-emulation.c
1180
1181 APPARMOR SECURITY MODULE
1182 M:      John Johansen <[email protected]>
1183 L:      [email protected] (subscribers-only, general discussion)
1184 W:      wiki.apparmor.net
1185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1186 S:      Supported
1187 F:      security/apparmor/
1188 F:      Documentation/admin-guide/LSM/apparmor.rst
1189
1190 APPLE BCM5974 MULTITOUCH DRIVER
1191 M:      Henrik Rydberg <[email protected]>
1192 L:      [email protected]
1193 S:      Odd fixes
1194 F:      drivers/input/mouse/bcm5974.c
1195
1196 APPLE SMC DRIVER
1197 M:      Henrik Rydberg <[email protected]>
1198 L:      [email protected]
1199 S:      Odd fixes
1200 F:      drivers/hwmon/applesmc.c
1201
1202 APPLETALK NETWORK LAYER
1203 L:      [email protected]
1204 S:      Odd fixes
1205 F:      drivers/net/appletalk/
1206 F:      net/appletalk/
1207 F:      include/linux/atalk.h
1208 F:      include/uapi/linux/atalk.h
1209
1210 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1211 M:      Khuong Dinh <[email protected]>
1212 S:      Supported
1213 F:      arch/arm64/boot/dts/apm/
1214
1215 APPLIED MICRO (APM) X-GENE SOC EDAC
1216 M:      Khuong Dinh <[email protected]>
1217 S:      Supported
1218 F:      drivers/edac/xgene_edac.c
1219 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1220
1221 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1222 M:      Iyappan Subramanian <[email protected]>
1223 M:      Keyur Chudgar <[email protected]>
1224 S:      Supported
1225 F:      drivers/net/ethernet/apm/xgene-v2/
1226
1227 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1228 M:      Iyappan Subramanian <[email protected]>
1229 M:      Keyur Chudgar <[email protected]>
1230 M:      Quan Nguyen <[email protected]>
1231 S:      Supported
1232 F:      drivers/net/ethernet/apm/xgene/
1233 F:      drivers/net/phy/mdio-xgene.c
1234 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1235 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1236
1237 APPLIED MICRO (APM) X-GENE SOC PMU
1238 M:      Khuong Dinh <[email protected]>
1239 S:      Supported
1240 F:      drivers/perf/xgene_pmu.c
1241 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1242 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1243
1244 APTINA CAMERA SENSOR PLL
1245 M:      Laurent Pinchart <[email protected]>
1246 L:      [email protected]
1247 S:      Maintained
1248 F:      drivers/media/i2c/aptina-pll.*
1249
1250 AQUANTIA ETHERNET DRIVER (atlantic)
1251 M:      Igor Russkikh <[email protected]>
1252 L:      [email protected]
1253 S:      Supported
1254 W:      https://www.marvell.com/
1255 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1256 F:      drivers/net/ethernet/aquantia/atlantic/
1257 F:      Documentation/networking/device_drivers/aquantia/atlantic.txt
1258
1259 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1260 M:      Egor Pomozov <[email protected]>
1261 L:      [email protected]
1262 S:      Supported
1263 W:      http://www.aquantia.com
1264 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1265
1266 ARC FRAMEBUFFER DRIVER
1267 M:      Jaya Kumar <[email protected]>
1268 S:      Maintained
1269 F:      drivers/video/fbdev/arcfb.c
1270 F:      drivers/video/fbdev/core/fb_defio.c
1271
1272 ARC PGU DRM DRIVER
1273 M:      Alexey Brodkin <[email protected]>
1274 S:      Supported
1275 F:      drivers/gpu/drm/arc/
1276 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1277
1278 ARCNET NETWORK LAYER
1279 M:      Michael Grzeschik <[email protected]>
1280 L:      [email protected]
1281 S:      Maintained
1282 F:      drivers/net/arcnet/
1283 F:      include/uapi/linux/if_arcnet.h
1284
1285 ARM ARCHITECTED TIMER DRIVER
1286 M:      Mark Rutland <[email protected]>
1287 M:      Marc Zyngier <[email protected]>
1288 L:      [email protected] (moderated for non-subscribers)
1289 S:      Maintained
1290 F:      arch/arm/include/asm/arch_timer.h
1291 F:      arch/arm64/include/asm/arch_timer.h
1292 F:      drivers/clocksource/arm_arch_timer.c
1293
1294 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1295 M:      Linus Walleij <[email protected]>
1296 L:      [email protected] (moderated for non-subscribers)
1297 S:      Maintained
1298 F:      Documentation/devicetree/bindings/arm/arm-boards
1299 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1300 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1301 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1302 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1303 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1304 F:      arch/arm/mach-integrator/
1305 F:      arch/arm/mach-realview/
1306 F:      arch/arm/mach-versatile/
1307 F:      arch/arm/plat-versatile/
1308 F:      arch/arm/boot/dts/arm-realview-*
1309 F:      arch/arm/boot/dts/integrator*
1310 F:      arch/arm/boot/dts/versatile*
1311 F:      drivers/clk/versatile/
1312 F:      drivers/i2c/busses/i2c-versatile.c
1313 F:      drivers/irqchip/irq-versatile-fpga.c
1314 F:      drivers/mtd/maps/physmap_of_versatile.c
1315 F:      drivers/power/reset/arm-versatile-reboot.c
1316 F:      drivers/soc/versatile/
1317
1318 ARM HDLCD DRM DRIVER
1319 M:      Liviu Dudau <[email protected]>
1320 S:      Supported
1321 F:      drivers/gpu/drm/arm/hdlcd_*
1322 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1323
1324 ARM KOMEDA DRM-KMS DRIVER
1325 M:      James (Qian) Wang <[email protected]>
1326 M:      Liviu Dudau <[email protected]>
1327 M:      Mihail Atanassov <[email protected]>
1328 L:      Mali DP Maintainers <[email protected]>
1329 S:      Supported
1330 T:      git git://anongit.freedesktop.org/drm/drm-misc
1331 F:      drivers/gpu/drm/arm/display/include/
1332 F:      drivers/gpu/drm/arm/display/komeda/
1333 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1334 F:      Documentation/gpu/komeda-kms.rst
1335
1336 ARM MALI-DP DRM DRIVER
1337 M:      Liviu Dudau <[email protected]>
1338 M:      Brian Starkey <[email protected]>
1339 L:      Mali DP Maintainers <[email protected]>
1340 S:      Supported
1341 T:      git git://anongit.freedesktop.org/drm/drm-misc
1342 F:      drivers/gpu/drm/arm/
1343 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1344 F:      Documentation/gpu/afbc.rst
1345
1346 ARM MALI PANFROST DRM DRIVER
1347 M:      Rob Herring <[email protected]>
1348 M:      Tomeu Vizoso <[email protected]>
1349 R:      Steven Price <[email protected]>
1350 R:      Alyssa Rosenzweig <[email protected]>
1351 L:      [email protected]
1352 S:      Supported
1353 T:      git git://anongit.freedesktop.org/drm/drm-misc
1354 F:      drivers/gpu/drm/panfrost/
1355 F:      include/uapi/drm/panfrost_drm.h
1356
1357 ARM MFM AND FLOPPY DRIVERS
1358 M:      Ian Molton <[email protected]>
1359 S:      Maintained
1360 F:      arch/arm/mach-rpc/floppydma.S
1361 F:      arch/arm/include/asm/floppy.h
1362
1363 ARM PMU PROFILING AND DEBUGGING
1364 M:      Will Deacon <[email protected]>
1365 M:      Mark Rutland <[email protected]>
1366 S:      Maintained
1367 L:      [email protected] (moderated for non-subscribers)
1368 F:      arch/arm*/kernel/perf_*
1369 F:      arch/arm/oprofile/common.c
1370 F:      arch/arm*/kernel/hw_breakpoint.c
1371 F:      arch/arm*/include/asm/hw_breakpoint.h
1372 F:      arch/arm*/include/asm/perf_event.h
1373 F:      drivers/perf/*
1374 F:      include/linux/perf/arm_pmu.h
1375 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1376 F:      Documentation/devicetree/bindings/perf/
1377
1378 ARM PORT
1379 M:      Russell King <[email protected]>
1380 L:      [email protected] (moderated for non-subscribers)
1381 W:      http://www.armlinux.org.uk/
1382 S:      Odd Fixes
1383 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1384 F:      arch/arm/
1385 X:      arch/arm/boot/dts/
1386
1387 ARM PRIMECELL AACI PL041 DRIVER
1388 M:      Russell King <[email protected]>
1389 S:      Odd Fixes
1390 F:      sound/arm/aaci.*
1391
1392 ARM PRIMECELL BUS SUPPORT
1393 M:      Russell King <[email protected]>
1394 S:      Odd Fixes
1395 F:      drivers/amba/
1396 F:      include/linux/amba/bus.h
1397
1398 ARM PRIMECELL CLCD PL110 DRIVER
1399 M:      Russell King <[email protected]>
1400 S:      Odd Fixes
1401 F:      drivers/video/fbdev/amba-clcd.*
1402
1403 ARM PRIMECELL KMI PL050 DRIVER
1404 M:      Russell King <[email protected]>
1405 S:      Odd Fixes
1406 F:      drivers/input/serio/ambakmi.*
1407 F:      include/linux/amba/kmi.h
1408
1409 ARM PRIMECELL MMCI PL180/1 DRIVER
1410 M:      Russell King <[email protected]>
1411 S:      Odd Fixes
1412 F:      drivers/mmc/host/mmci.*
1413 F:      include/linux/amba/mmci.h
1414
1415 ARM PRIMECELL SSP PL022 SPI DRIVER
1416 M:      Linus Walleij <[email protected]>
1417 L:      [email protected] (moderated for non-subscribers)
1418 S:      Maintained
1419 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1420 F:      drivers/spi/spi-pl022.c
1421
1422 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1423 M:      Russell King <[email protected]>
1424 S:      Odd Fixes
1425 F:      drivers/tty/serial/amba-pl01*.c
1426 F:      include/linux/amba/serial.h
1427
1428 ARM PRIMECELL VIC PL190/PL192 DRIVER
1429 M:      Linus Walleij <[email protected]>
1430 L:      [email protected] (moderated for non-subscribers)
1431 S:      Maintained
1432 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1433 F:      drivers/irqchip/irq-vic.c
1434
1435 AMAZON ANNAPURNA LABS FIC DRIVER
1436 M:      Talel Shenhar <[email protected]>
1437 S:      Maintained
1438 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
1439 F:      drivers/irqchip/irq-al-fic.c
1440
1441 ARM SMMU DRIVERS
1442 M:      Will Deacon <[email protected]>
1443 R:      Robin Murphy <[email protected]>
1444 L:      [email protected] (moderated for non-subscribers)
1445 S:      Maintained
1446 F:      drivers/iommu/arm-smmu*
1447 F:      drivers/iommu/io-pgtable-arm.c
1448 F:      drivers/iommu/io-pgtable-arm-v7s.c
1449
1450 ARM SUB-ARCHITECTURES
1451 L:      [email protected] (moderated for non-subscribers)
1452 S:      Maintained
1453 F:      arch/arm/mach-*/
1454 F:      arch/arm/plat-*/
1455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1456
1457 ARM/ACTIONS SEMI ARCHITECTURE
1458 M:      Andreas Färber <[email protected]>
1459 M:      Manivannan Sadhasivam <[email protected]>
1460 L:      [email protected] (moderated for non-subscribers)
1461 S:      Maintained
1462 N:      owl
1463 F:      arch/arm/mach-actions/
1464 F:      arch/arm/boot/dts/owl-*
1465 F:      arch/arm64/boot/dts/actions/
1466 F:      drivers/clk/actions/
1467 F:      drivers/clocksource/timer-owl*
1468 F:      drivers/dma/owl-dma.c
1469 F:      drivers/i2c/busses/i2c-owl.c
1470 F:      drivers/mmc/host/owl-mmc.c
1471 F:      drivers/pinctrl/actions/*
1472 F:      drivers/soc/actions/
1473 F:      include/dt-bindings/power/owl-*
1474 F:      include/linux/soc/actions/
1475 F:      Documentation/devicetree/bindings/arm/actions.yaml
1476 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1477 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1478 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1479 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1480 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1481 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1482 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1483
1484 ARM/ADS SPHERE MACHINE SUPPORT
1485 M:      Lennert Buytenhek <[email protected]>
1486 L:      [email protected] (moderated for non-subscribers)
1487 S:      Maintained
1488
1489 ARM/AFEB9260 MACHINE SUPPORT
1490 M:      Sergey Lapin <[email protected]>
1491 L:      [email protected] (moderated for non-subscribers)
1492 S:      Maintained
1493
1494 ARM/AJECO 1ARM MACHINE SUPPORT
1495 M:      Lennert Buytenhek <[email protected]>
1496 L:      [email protected] (moderated for non-subscribers)
1497 S:      Maintained
1498
1499 ARM/Allwinner SoC Clock Support
1500 M:      Emilio López <[email protected]>
1501 S:      Maintained
1502 F:      drivers/clk/sunxi/
1503
1504 ARM/Allwinner sunXi SoC support
1505 M:      Maxime Ripard <[email protected]>
1506 M:      Chen-Yu Tsai <[email protected]>
1507 L:      [email protected] (moderated for non-subscribers)
1508 S:      Maintained
1509 N:      sun[x456789]i
1510 N:      sun50i
1511 F:      arch/arm/mach-sunxi/
1512 F:      arch/arm64/boot/dts/allwinner/
1513 F:      drivers/clk/sunxi-ng/
1514 F:      drivers/pinctrl/sunxi/
1515 F:      drivers/soc/sunxi/
1516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1517
1518 Allwinner A10 CSI driver
1519 M:      Maxime Ripard <[email protected]>
1520 L:      [email protected]
1521 T:      git git://linuxtv.org/media_tree.git
1522 F:      drivers/media/platform/sunxi/sun4i-csi/
1523 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
1524 S:      Maintained
1525
1526 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1527 M:      Neil Armstrong <[email protected]>
1528 M:      Jerome Brunet <[email protected]>
1529 L:      [email protected]
1530 S:      Maintained
1531 F:      drivers/clk/meson/
1532 F:      include/dt-bindings/clock/meson*
1533 F:      include/dt-bindings/clock/gxbb*
1534 F:      Documentation/devicetree/bindings/clock/amlogic*
1535
1536 ARM/Amlogic Meson SoC support
1537 M:      Kevin Hilman <[email protected]>
1538 L:      [email protected] (moderated for non-subscribers)
1539 L:      [email protected]
1540 W:      http://linux-meson.com/
1541 S:      Maintained
1542 F:      arch/arm/mach-meson/
1543 F:      arch/arm/boot/dts/meson*
1544 F:      arch/arm64/boot/dts/amlogic/
1545 F:      drivers/pinctrl/meson/
1546 F:      drivers/mmc/host/meson*
1547 F:      drivers/soc/amlogic/
1548 F:      drivers/rtc/rtc-meson*
1549 N:      meson
1550
1551 ARM/Amlogic Meson SoC Crypto Drivers
1552 M:      Corentin Labbe <[email protected]>
1553 L:      [email protected]
1554 L:      [email protected]
1555 S:      Maintained
1556 F:      drivers/crypto/amlogic/
1557 F:      Documentation/devicetree/bindings/crypto/amlogic*
1558
1559 ARM/Amlogic Meson SoC Sound Drivers
1560 M:      Jerome Brunet <[email protected]>
1561 L:      [email protected] (moderated for non-subscribers)
1562 S:      Maintained
1563 F:      sound/soc/meson/
1564 F:      Documentation/devicetree/bindings/sound/amlogic*
1565
1566 ARM/Annapurna Labs ALPINE ARCHITECTURE
1567 M:      Tsahee Zidenberg <[email protected]>
1568 M:      Antoine Tenart <[email protected]>
1569 L:      [email protected] (moderated for non-subscribers)
1570 S:      Maintained
1571 F:      arch/arm/mach-alpine/
1572 F:      arch/arm/boot/dts/alpine*
1573 F:      arch/arm64/boot/dts/al/
1574 F:      drivers/*/*alpine*
1575
1576 ARM/ARTPEC MACHINE SUPPORT
1577 M:      Jesper Nilsson <[email protected]>
1578 M:      Lars Persson <[email protected]>
1579 S:      Maintained
1580 L:      [email protected]
1581 F:      arch/arm/mach-artpec
1582 F:      arch/arm/boot/dts/artpec6*
1583 F:      drivers/clk/axis
1584 F:      drivers/crypto/axis
1585 F:      drivers/mmc/host/usdhi6rol0.c
1586 F:      drivers/pinctrl/pinctrl-artpec*
1587 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1588
1589 ARM/ASPEED I2C DRIVER
1590 M:      Brendan Higgins <[email protected]>
1591 R:      Benjamin Herrenschmidt <[email protected]>
1592 R:      Joel Stanley <[email protected]>
1593 L:      [email protected]
1594 L:      [email protected] (moderated for non-subscribers)
1595 S:      Maintained
1596 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1597 F:      drivers/i2c/busses/i2c-aspeed.c
1598 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1599 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1600
1601 ARM/ASPEED MACHINE SUPPORT
1602 M:      Joel Stanley <[email protected]>
1603 R:      Andrew Jeffery <[email protected]>
1604 L:      [email protected] (moderated for non-subscribers)
1605 L:      [email protected] (moderated for non-subscribers)
1606 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1607 S:      Supported
1608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1609 F:      arch/arm/mach-aspeed/
1610 F:      arch/arm/boot/dts/aspeed-*
1611 N:      aspeed
1612
1613 ARM/BITMAIN ARCHITECTURE
1614 M:      Manivannan Sadhasivam <[email protected]>
1615 L:      [email protected] (moderated for non-subscribers)
1616 S:      Maintained
1617 F:      arch/arm64/boot/dts/bitmain/
1618 F:      drivers/clk/clk-bm1880.c
1619 F:      drivers/pinctrl/pinctrl-bm1880.c
1620 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1621 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1622 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1623
1624 ARM/CALXEDA HIGHBANK ARCHITECTURE
1625 M:      Andre Przywara <[email protected]>
1626 L:      [email protected] (moderated for non-subscribers)
1627 S:      Maintained
1628 F:      arch/arm/mach-highbank/
1629 F:      arch/arm/boot/dts/highbank.dts
1630 F:      arch/arm/boot/dts/ecx-*.dts*
1631
1632 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1633 M:      Krzysztof Halasa <[email protected]>
1634 S:      Maintained
1635 F:      arch/arm/mach-cns3xxx/
1636
1637 ARM/CAVIUM THUNDER NETWORK DRIVER
1638 M:      Sunil Goutham <[email protected]>
1639 M:      Robert Richter <[email protected]>
1640 L:      [email protected] (moderated for non-subscribers)
1641 S:      Supported
1642 F:      drivers/net/ethernet/cavium/thunder/
1643
1644 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1645 M:      Lukasz Majewski <[email protected]>
1646 L:      [email protected] (moderated for non-subscribers)
1647 S:      Maintained
1648 F:      arch/arm/mach-ep93xx/ts72xx.c
1649
1650 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1651 M:      Alexander Shiyan <[email protected]>
1652 L:      [email protected] (moderated for non-subscribers)
1653 S:      Odd Fixes
1654 N:      clps711x
1655
1656 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1657 M:      Lennert Buytenhek <[email protected]>
1658 L:      [email protected] (moderated for non-subscribers)
1659 S:      Maintained
1660
1661 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1662 M:      Hartley Sweeten <[email protected]>
1663 M:      Alexander Sverdlin <[email protected]>
1664 L:      [email protected] (moderated for non-subscribers)
1665 S:      Maintained
1666 F:      arch/arm/mach-ep93xx/
1667 F:      arch/arm/mach-ep93xx/include/mach/
1668
1669 ARM/CLKDEV SUPPORT
1670 M:      Russell King <[email protected]>
1671 L:      [email protected] (moderated for non-subscribers)
1672 S:      Maintained
1673 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1674 F:      drivers/clk/clkdev.c
1675
1676 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1677 M:      Mike Rapoport <[email protected]>
1678 L:      [email protected] (moderated for non-subscribers)
1679 S:      Maintained
1680
1681 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1682 M:      Baruch Siach <[email protected]>
1683 L:      [email protected] (moderated for non-subscribers)
1684 S:      Maintained
1685 F:      arch/arm/boot/dts/cx92755*
1686 N:      digicolor
1687
1688 ARM/CONTEC MICRO9 MACHINE SUPPORT
1689 M:      Hubert Feurstein <[email protected]>
1690 S:      Maintained
1691 F:      arch/arm/mach-ep93xx/micro9.c
1692
1693 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1694 M:      Mathieu Poirier <[email protected]>
1695 R:      Suzuki K Poulose <[email protected]>
1696 R:      Mike Leach <[email protected]>
1697 L:      [email protected] (moderated for non-subscribers)
1698 S:      Maintained
1699 F:      drivers/hwtracing/coresight/*
1700 F:      include/dt-bindings/arm/coresight-cti-dt.h
1701 F:      Documentation/trace/coresight/*
1702 F:      Documentation/devicetree/bindings/arm/coresight.txt
1703 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1704 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1705 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1706 F:      tools/perf/arch/arm/util/pmu.c
1707 F:      tools/perf/arch/arm/util/auxtrace.c
1708 F:      tools/perf/arch/arm/util/cs-etm.c
1709 F:      tools/perf/arch/arm/util/cs-etm.h
1710 F:      tools/perf/util/cs-etm.*
1711 F:      tools/perf/util/cs-etm-decoder/*
1712
1713 ARM/CORGI MACHINE SUPPORT
1714 M:      Richard Purdie <[email protected]>
1715 S:      Maintained
1716
1717 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1718 M:      Hans Ulli Kroll <[email protected]>
1719 M:      Linus Walleij <[email protected]>
1720 L:      [email protected] (moderated for non-subscribers)
1721 T:      git git://github.com/ulli-kroll/linux.git
1722 S:      Maintained
1723 F:      Documentation/devicetree/bindings/arm/gemini.txt
1724 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1725 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1726 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1727 F:      arch/arm/mach-gemini/
1728 F:      drivers/net/ethernet/cortina/
1729 F:      drivers/pinctrl/pinctrl-gemini.c
1730 F:      drivers/rtc/rtc-ftrtc010.c
1731
1732 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1733 M:      Barry Song <[email protected]>
1734 L:      [email protected] (moderated for non-subscribers)
1735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1736 S:      Maintained
1737 F:      arch/arm/boot/dts/prima2*
1738 F:      arch/arm/mach-prima2/
1739 F:      drivers/clk/sirf/
1740 F:      drivers/clocksource/timer-prima2.c
1741 F:      drivers/clocksource/timer-atlas7.c
1742 N:      [^a-z]sirf
1743 X:      drivers/gnss
1744
1745 ARM/CZ.NIC TURRIS MOX SUPPORT
1746 M:      Marek Behun <[email protected]>
1747 W:      http://mox.turris.cz
1748 S:      Maintained
1749 F:      Documentation/ABI/testing/debugfs-moxtet
1750 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1751 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1752 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1753 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1754 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1755 F:      include/linux/moxtet.h
1756 F:      drivers/bus/moxtet.c
1757 F:      drivers/firmware/turris-mox-rwtm.c
1758 F:      drivers/gpio/gpio-moxtet.c
1759
1760 ARM/EBSA110 MACHINE SUPPORT
1761 M:      Russell King <[email protected]>
1762 L:      [email protected] (moderated for non-subscribers)
1763 W:      http://www.armlinux.org.uk/
1764 S:      Maintained
1765 F:      arch/arm/mach-ebsa110/
1766 F:      drivers/net/ethernet/amd/am79c961a.*
1767
1768 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1769 M:      Uwe Kleine-König <[email protected]>
1770 R:      Pengutronix Kernel Team <[email protected]>
1771 L:      [email protected] (moderated for non-subscribers)
1772 S:      Maintained
1773 N:      efm32
1774
1775 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1776 M:      Robert Jarzmik <[email protected]>
1777 L:      [email protected] (moderated for non-subscribers)
1778 S:      Maintained
1779 F:      arch/arm/mach-pxa/ezx.c
1780
1781 ARM/FARADAY FA526 PORT
1782 M:      Hans Ulli Kroll <[email protected]>
1783 L:      [email protected] (moderated for non-subscribers)
1784 S:      Maintained
1785 T:      git git://git.berlios.de/gemini-board
1786 F:      arch/arm/mm/*-fa*
1787
1788 ARM/FOOTBRIDGE ARCHITECTURE
1789 M:      Russell King <[email protected]>
1790 L:      [email protected] (moderated for non-subscribers)
1791 W:      http://www.armlinux.org.uk/
1792 S:      Maintained
1793 F:      arch/arm/include/asm/hardware/dec21285.h
1794 F:      arch/arm/mach-footbridge/
1795
1796 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1797 M:      Shawn Guo <[email protected]>
1798 M:      Sascha Hauer <[email protected]>
1799 R:      Pengutronix Kernel Team <[email protected]>
1800 R:      Fabio Estevam <[email protected]>
1801 R:      NXP Linux Team <[email protected]>
1802 L:      [email protected] (moderated for non-subscribers)
1803 S:      Maintained
1804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1805 N:      imx
1806 N:      mxs
1807 X:      drivers/media/i2c/
1808
1809 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1810 M:      Shawn Guo <[email protected]>
1811 M:      Sascha Hauer <[email protected]>
1812 R:      Pengutronix Kernel Team <[email protected]>
1813 R:      Stefan Agner <[email protected]>
1814 L:      [email protected] (moderated for non-subscribers)
1815 S:      Maintained
1816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1817 F:      arch/arm/mach-imx/*vf610*
1818 F:      arch/arm/boot/dts/vf*
1819
1820 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1821 M:      Shawn Guo <[email protected]>
1822 M:      Li Yang <[email protected]>
1823 L:      [email protected] (moderated for non-subscribers)
1824 S:      Maintained
1825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1826 F:      arch/arm/boot/dts/ls1021a*
1827 F:      arch/arm64/boot/dts/freescale/fsl-*
1828 F:      arch/arm64/boot/dts/freescale/qoriq-*
1829
1830 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1831 M:      Lennert Buytenhek <[email protected]>
1832 L:      [email protected] (moderated for non-subscribers)
1833 S:      Maintained
1834
1835 ARM/GUMSTIX MACHINE SUPPORT
1836 M:      Steve Sakoman <[email protected]>
1837 L:      [email protected] (moderated for non-subscribers)
1838 S:      Maintained
1839
1840 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1841 M:      Philipp Zabel <[email protected]>
1842 M:      Paul Parsons <[email protected]>
1843 L:      [email protected] (moderated for non-subscribers)
1844 S:      Maintained
1845 F:      arch/arm/mach-pxa/hx4700.c
1846 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1847 F:      sound/soc/pxa/hx4700.c
1848
1849 ARM/HISILICON SOC SUPPORT
1850 M:      Wei Xu <[email protected]>
1851 L:      [email protected] (moderated for non-subscribers)
1852 W:      http://www.hisilicon.com
1853 S:      Supported
1854 T:      git git://github.com/hisilicon/linux-hisi.git
1855 F:      arch/arm/mach-hisi/
1856 F:      arch/arm/boot/dts/hi3*
1857 F:      arch/arm/boot/dts/hip*
1858 F:      arch/arm/boot/dts/hisi*
1859 F:      arch/arm64/boot/dts/hisilicon/
1860
1861 ARM/HP JORNADA 7XX MACHINE SUPPORT
1862 M:      Kristoffer Ericson <[email protected]>
1863 W:      www.jlime.com
1864 S:      Maintained
1865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1866 F:      arch/arm/mach-sa1100/jornada720.c
1867 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1868
1869 ARM/IGEP MACHINE SUPPORT
1870 M:      Enric Balletbo i Serra <[email protected]>
1871 M:      Javier Martinez Canillas <[email protected]>
1872 L:      [email protected]
1873 L:      [email protected] (moderated for non-subscribers)
1874 S:      Maintained
1875 F:      arch/arm/boot/dts/omap3-igep*
1876
1877 ARM/INCOME PXA270 SUPPORT
1878 M:      Marek Vasut <[email protected]>
1879 L:      [email protected] (moderated for non-subscribers)
1880 S:      Maintained
1881 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1882
1883 ARM/INTEL IOP32X ARM ARCHITECTURE
1884 M:      Lennert Buytenhek <[email protected]>
1885 L:      [email protected] (moderated for non-subscribers)
1886 S:      Maintained
1887
1888 ARM/INTEL IQ81342EX MACHINE SUPPORT
1889 M:      Lennert Buytenhek <[email protected]>
1890 L:      [email protected] (moderated for non-subscribers)
1891 S:      Maintained
1892
1893 ARM/INTEL IXDP2850 MACHINE SUPPORT
1894 M:      Lennert Buytenhek <[email protected]>
1895 L:      [email protected] (moderated for non-subscribers)
1896 S:      Maintained
1897
1898 ARM/INTEL IXP4XX ARM ARCHITECTURE
1899 M:      Linus Walleij <[email protected]>
1900 M:      Imre Kaloz <[email protected]>
1901 M:      Krzysztof Halasa <[email protected]>
1902 L:      [email protected] (moderated for non-subscribers)
1903 S:      Maintained
1904 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1905 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1906 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1907 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1908 F:      arch/arm/mach-ixp4xx/
1909 F:      drivers/clocksource/timer-ixp4xx.c
1910 F:      drivers/gpio/gpio-ixp4xx.c
1911 F:      drivers/irqchip/irq-ixp4xx.c
1912 F:      include/linux/irqchip/irq-ixp4xx.h
1913 F:      include/linux/platform_data/timer-ixp4xx.h
1914
1915 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1916 M:      Jonathan Cameron <[email protected]>
1917 L:      [email protected] (moderated for non-subscribers)
1918 S:      Maintained
1919 F:      arch/arm/mach-pxa/stargate2.c
1920 F:      drivers/pcmcia/pxa2xx_stargate2.c
1921
1922 ARM/INTEL XSC3 (MANZANO) ARM CORE
1923 M:      Lennert Buytenhek <[email protected]>
1924 L:      [email protected] (moderated for non-subscribers)
1925 S:      Maintained
1926
1927 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1928 M:      Lennert Buytenhek <[email protected]>
1929 L:      [email protected] (moderated for non-subscribers)
1930 S:      Maintained
1931
1932 ARM/LG1K ARCHITECTURE
1933 M:      Chanho Min <[email protected]>
1934 L:      [email protected] (moderated for non-subscribers)
1935 S:      Maintained
1936 F:      arch/arm64/boot/dts/lg/
1937
1938 ARM/LOGICPD PXA270 MACHINE SUPPORT
1939 M:      Lennert Buytenhek <[email protected]>
1940 L:      [email protected] (moderated for non-subscribers)
1941 S:      Maintained
1942
1943 ARM/LPC18XX ARCHITECTURE
1944 M:      Vladimir Zapolskiy <[email protected]>
1945 L:      [email protected] (moderated for non-subscribers)
1946 S:      Maintained
1947 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1948 F:      arch/arm/boot/dts/lpc43*
1949 F:      drivers/i2c/busses/i2c-lpc2k.c
1950 F:      drivers/memory/pl172.c
1951 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1952 F:      drivers/rtc/rtc-lpc24xx.c
1953 N:      lpc18xx
1954
1955 ARM/LPC32XX SOC SUPPORT
1956 M:      Vladimir Zapolskiy <[email protected]>
1957 M:      Sylvain Lemieux <[email protected]>
1958 L:      [email protected] (moderated for non-subscribers)
1959 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1960 S:      Maintained
1961 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1962 F:      arch/arm/boot/dts/lpc32*
1963 F:      arch/arm/mach-lpc32xx/
1964 F:      drivers/i2c/busses/i2c-pnx.c
1965 F:      drivers/net/ethernet/nxp/lpc_eth.c
1966 F:      drivers/usb/host/ohci-nxp.c
1967 F:      drivers/watchdog/pnx4008_wdt.c
1968 N:      lpc32xx
1969
1970 ARM/MAGICIAN MACHINE SUPPORT
1971 M:      Philipp Zabel <[email protected]>
1972 S:      Maintained
1973
1974 ARM/Marvell Dove/MV78xx0/Orion SOC support
1975 M:      Jason Cooper <[email protected]>
1976 M:      Andrew Lunn <[email protected]>
1977 M:      Sebastian Hesselbarth <[email protected]>
1978 M:      Gregory Clement <[email protected]>
1979 L:      [email protected] (moderated for non-subscribers)
1980 S:      Maintained
1981 F:      Documentation/devicetree/bindings/soc/dove/
1982 F:      arch/arm/mach-dove/
1983 F:      arch/arm/mach-mv78xx0/
1984 F:      arch/arm/mach-orion5x/
1985 F:      arch/arm/plat-orion/
1986 F:      arch/arm/boot/dts/dove*
1987 F:      arch/arm/boot/dts/orion5x*
1988 T:      git git://git.infradead.org/linux-mvebu.git
1989
1990 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
1991 M:      Jason Cooper <[email protected]>
1992 M:      Andrew Lunn <[email protected]>
1993 M:      Gregory Clement <[email protected]>
1994 M:      Sebastian Hesselbarth <[email protected]>
1995 L:      [email protected] (moderated for non-subscribers)
1996 S:      Maintained
1997 F:      arch/arm/boot/dts/armada*
1998 F:      arch/arm/boot/dts/kirkwood*
1999 F:      arch/arm/configs/mvebu_*_defconfig
2000 F:      arch/arm/mach-mvebu/
2001 F:      arch/arm64/boot/dts/marvell/armada*
2002 F:      arch/arm64/boot/dts/marvell/cn913*
2003 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2004 F:      drivers/cpufreq/armada-8k-cpufreq.c
2005 F:      drivers/cpufreq/mvebu-cpufreq.c
2006 F:      drivers/irqchip/irq-armada-370-xp.c
2007 F:      drivers/irqchip/irq-mvebu-*
2008 F:      drivers/pinctrl/mvebu/
2009 F:      drivers/rtc/rtc-armada38x.c
2010 T:      git git://git.infradead.org/linux-mvebu.git
2011
2012 ARM/Mediatek RTC DRIVER
2013 M:      Eddie Huang <[email protected]>
2014 M:      Sean Wang <[email protected]>
2015 L:      [email protected] (moderated for non-subscribers)
2016 L:      [email protected] (moderated for non-subscribers)
2017 S:      Maintained
2018 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2019 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2020 F:      drivers/rtc/rtc-mt2712.c
2021 F:      drivers/rtc/rtc-mt6397.c
2022 F:      drivers/rtc/rtc-mt7622.c
2023
2024 ARM/Mediatek SoC support
2025 M:      Matthias Brugger <[email protected]>
2026 L:      [email protected] (moderated for non-subscribers)
2027 L:      [email protected] (moderated for non-subscribers)
2028 W:      https://mtk.bcnfs.org/
2029 C:      irc://chat.freenode.net/linux-mediatek
2030 S:      Maintained
2031 F:      arch/arm/boot/dts/mt6*
2032 F:      arch/arm/boot/dts/mt7*
2033 F:      arch/arm/boot/dts/mt8*
2034 F:      arch/arm/mach-mediatek/
2035 F:      arch/arm64/boot/dts/mediatek/
2036 F:      drivers/soc/mediatek/
2037 N:      mtk
2038 N:      mt[678]
2039 K:      mediatek
2040
2041 ARM/Mediatek USB3 PHY DRIVER
2042 M:      Chunfeng Yun <[email protected]>
2043 L:      [email protected] (moderated for non-subscribers)
2044 L:      [email protected] (moderated for non-subscribers)
2045 S:      Maintained
2046 F:      drivers/phy/mediatek/
2047 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2048
2049 ARM/Microchip (AT91) SoC support
2050 M:      Nicolas Ferre <[email protected]>
2051 M:      Alexandre Belloni <[email protected]>
2052 M:      Ludovic Desroches <[email protected]>
2053 L:      [email protected] (moderated for non-subscribers)
2054 W:      http://www.linux4sam.org
2055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2056 S:      Supported
2057 N:      at91
2058 N:      atmel
2059 F:      arch/arm/mach-at91/
2060 F:      include/soc/at91/
2061 F:      arch/arm/boot/dts/at91*.dts
2062 F:      arch/arm/boot/dts/at91*.dtsi
2063 F:      arch/arm/boot/dts/sama*.dts
2064 F:      arch/arm/boot/dts/sama*.dtsi
2065 F:      arch/arm/include/debug/at91.S
2066 F:      drivers/memory/atmel*
2067 F:      drivers/watchdog/sama5d4_wdt.c
2068 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2069 X:      drivers/net/wireless/atmel/
2070
2071 ARM/MIOA701 MACHINE SUPPORT
2072 M:      Robert Jarzmik <[email protected]>
2073 L:      [email protected] (moderated for non-subscribers)
2074 F:      arch/arm/mach-pxa/mioa701.c
2075 S:      Maintained
2076
2077 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2078 M:      Michael Petchkovsky <[email protected]>
2079 S:      Maintained
2080
2081 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2082 M:      Linus Walleij <[email protected]>
2083 L:      [email protected] (moderated for non-subscribers)
2084 S:      Maintained
2085 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2086 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2087 F:      arch/arm/mach-nomadik/
2088 F:      arch/arm/mach-u300/
2089 F:      arch/arm/mach-ux500/
2090 F:      drivers/soc/ux500/
2091 F:      arch/arm/boot/dts/ste-*
2092 F:      drivers/clk/clk-nomadik.c
2093 F:      drivers/clk/clk-u300.c
2094 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2095 F:      drivers/clocksource/timer-u300.c
2096 F:      drivers/dma/coh901318*
2097 F:      drivers/dma/ste_dma40*
2098 F:      drivers/hwspinlock/u8500_hsem.c
2099 F:      drivers/i2c/busses/i2c-nomadik.c
2100 F:      drivers/i2c/busses/i2c-stu300.c
2101 F:      drivers/iio/adc/ab8500-gpadc.c
2102 F:      drivers/mfd/ab3100*
2103 F:      drivers/mfd/ab8500*
2104 F:      drivers/mfd/abx500*
2105 F:      drivers/mfd/dbx500*
2106 F:      drivers/mfd/db8500*
2107 F:      drivers/pinctrl/nomadik/
2108 F:      drivers/pinctrl/pinctrl-coh901*
2109 F:      drivers/pinctrl/pinctrl-u300.c
2110 F:      drivers/rtc/rtc-ab3100.c
2111 F:      drivers/rtc/rtc-ab8500.c
2112 F:      drivers/rtc/rtc-coh901331.c
2113 F:      drivers/rtc/rtc-pl031.c
2114 F:      drivers/watchdog/coh901327_wdt.c
2115 F:      Documentation/devicetree/bindings/arm/ste-*
2116 F:      Documentation/devicetree/bindings/arm/ux500/
2117 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2119
2120 ARM/NUVOTON NPCM ARCHITECTURE
2121 M:      Avi Fishman <[email protected]>
2122 M:      Tomer Maimon <[email protected]>
2123 M:      Tali Perry <[email protected]>
2124 R:      Patrick Venture <[email protected]>
2125 R:      Nancy Yuen <[email protected]>
2126 R:      Benjamin Fair <[email protected]>
2127 L:      [email protected] (moderated for non-subscribers)
2128 S:      Supported
2129 F:      arch/arm/mach-npcm/
2130 F:      arch/arm/boot/dts/nuvoton-npcm*
2131 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2132 F:      drivers/*/*npcm*
2133 F:      Documentation/devicetree/bindings/*/*npcm*
2134 F:      Documentation/devicetree/bindings/*/*/*npcm*
2135
2136 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2137 L:      [email protected] (subscribers-only)
2138 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2139 S:      Orphan
2140 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2141 F:      arch/arm/mach-s3c24xx/gta02.h
2142
2143 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2144 M:      Alexander Clouter <[email protected]>
2145 L:      [email protected] (moderated for non-subscribers)
2146 W:      http://www.digriz.org.uk/ts78xx/kernel
2147 S:      Maintained
2148 F:      arch/arm/mach-orion5x/ts78xx-*
2149
2150 ARM/OXNAS platform support
2151 M:      Neil Armstrong <[email protected]>
2152 L:      [email protected] (moderated for non-subscribers)
2153 L:      [email protected] (moderated for non-subscribers)
2154 S:      Maintained
2155 F:      arch/arm/mach-oxnas/
2156 F:      arch/arm/boot/dts/ox8*.dts*
2157 N:      oxnas
2158
2159 ARM/PALM TREO SUPPORT
2160 M:      Tomas Cech <[email protected]>
2161 L:      [email protected]
2162 W:      http://hackndev.com
2163 S:      Maintained
2164 F:      arch/arm/mach-pxa/palmtreo.*
2165
2166 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2167 M:      Marek Vasut <[email protected]>
2168 L:      [email protected]
2169 W:      http://hackndev.com
2170 S:      Maintained
2171 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2172 F:      arch/arm/mach-pxa/palmtx.c
2173 F:      arch/arm/mach-pxa/palmt5.*
2174 F:      arch/arm/mach-pxa/include/mach/palmld.h
2175 F:      arch/arm/mach-pxa/palmld.c
2176 F:      arch/arm/mach-pxa/palmte2.*
2177 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2178 F:      arch/arm/mach-pxa/palmtc.c
2179
2180 ARM/PALMZ72 SUPPORT
2181 M:      Sergey Lapin <[email protected]>
2182 L:      [email protected]
2183 W:      http://hackndev.com
2184 S:      Maintained
2185 F:      arch/arm/mach-pxa/palmz72.*
2186
2187 ARM/PLEB SUPPORT
2188 M:      Peter Chubb <[email protected]>
2189 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2190 S:      Maintained
2191
2192 ARM/PT DIGITAL BOARD PORT
2193 M:      Stefan Eletzhofer <[email protected]>
2194 L:      [email protected] (moderated for non-subscribers)
2195 W:      http://www.armlinux.org.uk/
2196 S:      Maintained
2197
2198 ARM/QUALCOMM SUPPORT
2199 M:      Andy Gross <[email protected]>
2200 M:      Bjorn Andersson <[email protected]>
2201 L:      [email protected]
2202 S:      Maintained
2203 F:      Documentation/devicetree/bindings/soc/qcom/
2204 F:      Documentation/devicetree/bindings/*/qcom*
2205 F:      arch/arm/boot/dts/qcom-*.dts
2206 F:      arch/arm/boot/dts/qcom-*.dtsi
2207 F:      arch/arm/mach-qcom/
2208 F:      arch/arm64/boot/dts/qcom/
2209 F:      drivers/*/qcom/
2210 F:      drivers/*/qcom*
2211 F:      drivers/*/*/qcom/
2212 F:      drivers/*/*/qcom*
2213 F:      drivers/*/pm8???-*
2214 F:      drivers/bluetooth/btqcomsmd.c
2215 F:      drivers/clocksource/timer-qcom.c
2216 F:      drivers/extcon/extcon-qcom*
2217 F:      drivers/iommu/msm*
2218 F:      drivers/i2c/busses/i2c-qup.c
2219 F:      drivers/i2c/busses/i2c-qcom-geni.c
2220 F:      drivers/mfd/ssbi.c
2221 F:      drivers/mmc/host/mmci_qcom*
2222 F:      drivers/mmc/host/sdhci-msm.c
2223 F:      drivers/pci/controller/dwc/pcie-qcom.c
2224 F:      drivers/phy/qualcomm/
2225 F:      drivers/power/*/msm*
2226 F:      drivers/reset/reset-qcom-*
2227 F:      drivers/scsi/ufs/ufs-qcom.*
2228 F:      drivers/spi/spi-qup.c
2229 F:      drivers/spi/spi-geni-qcom.c
2230 F:      drivers/spi/spi-qcom-qspi.c
2231 F:      drivers/tty/serial/msm_serial.c
2232 F:      drivers/usb/dwc3/dwc3-qcom.c
2233 F:      include/dt-bindings/*/qcom*
2234 F:      include/linux/*/qcom*
2235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2236
2237 ARM/RADISYS ENP2611 MACHINE SUPPORT
2238 M:      Lennert Buytenhek <[email protected]>
2239 L:      [email protected] (moderated for non-subscribers)
2240 S:      Maintained
2241
2242 ARM/RDA MICRO ARCHITECTURE
2243 M:      Manivannan Sadhasivam <[email protected]>
2244 L:      [email protected] (moderated for non-subscribers)
2245 L:      [email protected] (moderated for non-subscribers)
2246 S:      Maintained
2247 F:      arch/arm/boot/dts/rda8810pl-*
2248 F:      drivers/clocksource/timer-rda.c
2249 F:      drivers/gpio/gpio-rda.c
2250 F:      drivers/irqchip/irq-rda-intc.c
2251 F:      drivers/tty/serial/rda-uart.c
2252 F:      Documentation/devicetree/bindings/arm/rda.yaml
2253 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2254 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2255 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2256 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2257
2258 ARM/REALTEK ARCHITECTURE
2259 M:      Andreas Färber <[email protected]>
2260 L:      [email protected] (moderated for non-subscribers)
2261 L:      [email protected] (moderated for non-subscribers)
2262 S:      Maintained
2263 F:      arch/arm64/boot/dts/realtek/
2264 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2265
2266 ARM/RENESAS ARM64 ARCHITECTURE
2267 M:      Geert Uytterhoeven <[email protected]>
2268 M:      Magnus Damm <[email protected]>
2269 L:      [email protected]
2270 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2272 S:      Supported
2273 F:      arch/arm64/boot/dts/renesas/
2274 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2275 F:      drivers/soc/renesas/
2276 F:      include/linux/soc/renesas/
2277
2278 ARM/RISCPC ARCHITECTURE
2279 M:      Russell King <[email protected]>
2280 L:      [email protected] (moderated for non-subscribers)
2281 W:      http://www.armlinux.org.uk/
2282 S:      Maintained
2283 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2284 F:      arch/arm/include/asm/hardware/ioc.h
2285 F:      arch/arm/include/asm/hardware/iomd.h
2286 F:      arch/arm/include/asm/hardware/memc.h
2287 F:      arch/arm/mach-rpc/
2288 F:      drivers/net/ethernet/8390/etherh.c
2289 F:      drivers/net/ethernet/i825xx/ether1*
2290 F:      drivers/net/ethernet/seeq/ether3*
2291 F:      drivers/scsi/arm/
2292
2293 ARM/Rockchip SoC support
2294 M:      Heiko Stuebner <[email protected]>
2295 L:      [email protected] (moderated for non-subscribers)
2296 L:      [email protected]
2297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2298 S:      Maintained
2299 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2300 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2301 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2302 F:      arch/arm/boot/dts/rk3*
2303 F:      arch/arm/boot/dts/rv1108*
2304 F:      arch/arm/mach-rockchip/
2305 F:      drivers/clk/rockchip/
2306 F:      drivers/i2c/busses/i2c-rk3x.c
2307 F:      drivers/*/*rockchip*
2308 F:      drivers/*/*/*rockchip*
2309 F:      sound/soc/rockchip/
2310 N:      rockchip
2311
2312 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2313 M:      Kukjin Kim <[email protected]>
2314 M:      Krzysztof Kozlowski <[email protected]>
2315 L:      [email protected] (moderated for non-subscribers)
2316 L:      [email protected] (moderated for non-subscribers)
2317 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2318 S:      Maintained
2319 F:      arch/arm/boot/dts/s3c*
2320 F:      arch/arm/boot/dts/s5p*
2321 F:      arch/arm/boot/dts/exynos*
2322 F:      arch/arm64/boot/dts/exynos/
2323 F:      arch/arm/plat-samsung/
2324 F:      arch/arm/mach-s3c24*/
2325 F:      arch/arm/mach-s3c64xx/
2326 F:      arch/arm/mach-s5p*/
2327 F:      arch/arm/mach-exynos*/
2328 F:      drivers/*/*s3c24*
2329 F:      drivers/*/*/*s3c24*
2330 F:      drivers/*/*s3c64xx*
2331 F:      drivers/*/*s5pv210*
2332 F:      drivers/memory/samsung/
2333 F:      drivers/soc/samsung/
2334 F:      drivers/tty/serial/samsung*
2335 F:      include/linux/soc/samsung/
2336 F:      Documentation/arm/samsung/
2337 F:      Documentation/devicetree/bindings/arm/samsung/
2338 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2339 N:      exynos
2340
2341 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2342 M:      Kyungmin Park <[email protected]>
2343 L:      [email protected] (moderated for non-subscribers)
2344 S:      Maintained
2345 F:      arch/arm/mach-s5pv210/
2346
2347 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2348 M:      Kyungmin Park <[email protected]>
2349 M:      Kamil Debski <[email protected]>
2350 M:      Andrzej Hajda <[email protected]>
2351 L:      [email protected]
2352 L:      [email protected]
2353 S:      Maintained
2354 F:      drivers/media/platform/s5p-g2d/
2355
2356 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2357 M:      Marek Szyprowski <[email protected]>
2358 L:      [email protected] (moderated for non-subscribers)
2359 L:      [email protected]
2360 S:      Maintained
2361 F:      drivers/media/platform/s5p-cec/
2362 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2363
2364 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2365 M:      Andrzej Pietrasiewicz <[email protected]>
2366 M:      Jacek Anaszewski <[email protected]>
2367 M:      Sylwester Nawrocki <[email protected]>
2368 L:      [email protected]
2369 L:      [email protected]
2370 S:      Maintained
2371 F:      drivers/media/platform/s5p-jpeg/
2372
2373 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2374 M:      Kyungmin Park <[email protected]>
2375 M:      Kamil Debski <[email protected]>
2376 M:      Jeongtae Park <[email protected]>
2377 M:      Andrzej Hajda <[email protected]>
2378 L:      [email protected]
2379 L:      [email protected]
2380 S:      Maintained
2381 F:      drivers/media/platform/s5p-mfc/
2382
2383 ARM/SHMOBILE ARM ARCHITECTURE
2384 M:      Geert Uytterhoeven <[email protected]>
2385 M:      Magnus Damm <[email protected]>
2386 L:      [email protected]
2387 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2389 S:      Supported
2390 F:      arch/arm/boot/dts/emev2*
2391 F:      arch/arm/boot/dts/gr-peach*
2392 F:      arch/arm/boot/dts/iwg20d-q7*
2393 F:      arch/arm/boot/dts/r7s*
2394 F:      arch/arm/boot/dts/r8a*
2395 F:      arch/arm/boot/dts/r9a*
2396 F:      arch/arm/boot/dts/sh*
2397 F:      arch/arm/configs/shmobile_defconfig
2398 F:      arch/arm/include/debug/renesas-scif.S
2399 F:      arch/arm/mach-shmobile/
2400 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2401 F:      drivers/soc/renesas/
2402 F:      include/linux/soc/renesas/
2403
2404 ARM/SOCFPGA ARCHITECTURE
2405 M:      Dinh Nguyen <[email protected]>
2406 S:      Maintained
2407 F:      arch/arm/mach-socfpga/
2408 F:      arch/arm/boot/dts/socfpga*
2409 F:      arch/arm/configs/socfpga_defconfig
2410 F:      arch/arm64/boot/dts/altera/
2411 F:      arch/arm64/boot/dts/intel/
2412 W:      http://www.rocketboards.org
2413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2414
2415 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2416 M:      Dinh Nguyen <[email protected]>
2417 S:      Maintained
2418 F:      drivers/clk/socfpga/
2419
2420 ARM/SOCFPGA EDAC SUPPORT
2421 M:      Thor Thayer <[email protected]>
2422 S:      Maintained
2423 F:      drivers/edac/altera_edac.
2424
2425 ARM/SPREADTRUM SoC SUPPORT
2426 M:      Orson Zhai <[email protected]>
2427 M:      Baolin Wang <[email protected]>
2428 M:      Chunyan Zhang <[email protected]>
2429 S:      Maintained
2430 F:      arch/arm64/boot/dts/sprd
2431 N:      sprd
2432 N:      sc27xx
2433 N:      sc2731
2434
2435 ARM/STI ARCHITECTURE
2436 M:      Patrice Chotard <[email protected]>
2437 L:      [email protected] (moderated for non-subscribers)
2438 W:      http://www.stlinux.com
2439 S:      Maintained
2440 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2441 F:      arch/arm/mach-sti/
2442 F:      arch/arm/boot/dts/sti*
2443 F:      drivers/char/hw_random/st-rng.c
2444 F:      drivers/clocksource/arm_global_timer.c
2445 F:      drivers/clocksource/clksrc_st_lpc.c
2446 F:      drivers/cpufreq/sti-cpufreq.c
2447 F:      drivers/dma/st_fdma*
2448 F:      drivers/i2c/busses/i2c-st.c
2449 F:      drivers/media/rc/st_rc.c
2450 F:      drivers/media/platform/sti/c8sectpfe/
2451 F:      drivers/mmc/host/sdhci-st.c
2452 F:      drivers/phy/st/phy-miphy28lp.c
2453 F:      drivers/phy/st/phy-stih407-usb.c
2454 F:      drivers/pinctrl/pinctrl-st.c
2455 F:      drivers/remoteproc/st_remoteproc.c
2456 F:      drivers/remoteproc/st_slim_rproc.c
2457 F:      drivers/reset/sti/
2458 F:      drivers/rtc/rtc-st-lpc.c
2459 F:      drivers/tty/serial/st-asc.c
2460 F:      drivers/usb/dwc3/dwc3-st.c
2461 F:      drivers/usb/host/ehci-st.c
2462 F:      drivers/usb/host/ohci-st.c
2463 F:      drivers/watchdog/st_lpc_wdt.c
2464 F:      drivers/ata/ahci_st.c
2465 F:      include/linux/remoteproc/st_slim_rproc.h
2466
2467 ARM/STM32 ARCHITECTURE
2468 M:      Maxime Coquelin <[email protected]>
2469 M:      Alexandre Torgue <[email protected]>
2470 L:      [email protected] (moderated for non-subscribers)
2471 L:      [email protected] (moderated for non-subscribers)
2472 S:      Maintained
2473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2474 N:      stm32
2475 N:      stm
2476 F:      arch/arm/boot/dts/stm32*
2477 F:      arch/arm/mach-stm32/
2478 F:      drivers/clocksource/armv7m_systick.c
2479
2480 ARM/Synaptics SoC support
2481 M:      Jisheng Zhang <[email protected]>
2482 M:      Sebastian Hesselbarth <[email protected]>
2483 L:      [email protected] (moderated for non-subscribers)
2484 S:      Maintained
2485 F:      arch/arm/mach-berlin/
2486 F:      arch/arm/boot/dts/berlin*
2487 F:      arch/arm64/boot/dts/synaptics/
2488
2489 ARM/TANGO ARCHITECTURE
2490 M:      Marc Gonzalez <[email protected]>
2491 M:      Mans Rullgard <[email protected]>
2492 L:      [email protected]
2493 S:      Odd Fixes
2494 N:      tango
2495
2496 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2497 M:      Lennert Buytenhek <[email protected]>
2498 L:      [email protected] (moderated for non-subscribers)
2499 S:      Maintained
2500
2501 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2502 M:      Hans Verkuil <[email protected]>
2503 L:      [email protected]
2504 L:      [email protected]
2505 S:      Maintained
2506 F:      drivers/media/platform/tegra-cec/
2507 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2508
2509 ARM/TETON BGA MACHINE SUPPORT
2510 M:      "Mark F. Brown" <[email protected]>
2511 L:      [email protected] (moderated for non-subscribers)
2512 S:      Maintained
2513
2514 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2515 M:      Santosh Shilimkar <[email protected]>
2516 L:      [email protected]
2517 S:      Maintained
2518 F:      drivers/memory/*emif*
2519
2520 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2521 M:      Tero Kristo <[email protected]>
2522 M:      Nishanth Menon <[email protected]>
2523 L:      [email protected] (moderated for non-subscribers)
2524 S:      Supported
2525 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2526 F:      arch/arm64/boot/dts/ti/Makefile
2527 F:      arch/arm64/boot/dts/ti/k3-*
2528 F:      include/dt-bindings/pinctrl/k3.h
2529
2530 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2531 M:      Santosh Shilimkar <[email protected]>
2532 L:      [email protected] (moderated for non-subscribers)
2533 S:      Maintained
2534 F:      arch/arm/mach-keystone/
2535 F:      arch/arm/boot/dts/keystone-*
2536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2537
2538 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2539 M:      Santosh Shilimkar <[email protected]>
2540 L:      [email protected]
2541 S:      Maintained
2542 F:      drivers/clk/keystone/
2543
2544 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2545 M:      Santosh Shilimkar <[email protected]>
2546 L:      [email protected] (moderated for non-subscribers)
2547 L:      [email protected]
2548 S:      Maintained
2549 F:      drivers/clocksource/timer-keystone.c
2550
2551 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2552 M:      Santosh Shilimkar <[email protected]>
2553 L:      [email protected]
2554 S:      Maintained
2555 F:      drivers/power/reset/keystone-reset.c
2556
2557 ARM/THECUS N2100 MACHINE SUPPORT
2558 M:      Lennert Buytenhek <[email protected]>
2559 L:      [email protected] (moderated for non-subscribers)
2560 S:      Maintained
2561
2562 ARM/TOSA MACHINE SUPPORT
2563 M:      Dmitry Eremin-Solenikov <[email protected]>
2564 M:      Dirk Opfer <[email protected]>
2565 S:      Maintained
2566
2567 ARM/UNIPHIER ARCHITECTURE
2568 M:      Masahiro Yamada <[email protected]>
2569 L:      [email protected] (moderated for non-subscribers)
2570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2571 S:      Maintained
2572 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2573 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2574 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2575 F:      arch/arm/boot/dts/uniphier*
2576 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2577 F:      arch/arm/mach-uniphier/
2578 F:      arch/arm/mm/cache-uniphier.c
2579 F:      arch/arm64/boot/dts/socionext/uniphier*
2580 F:      drivers/bus/uniphier-system-bus.c
2581 F:      drivers/clk/uniphier/
2582 F:      drivers/dma/uniphier-mdmac.c
2583 F:      drivers/gpio/gpio-uniphier.c
2584 F:      drivers/i2c/busses/i2c-uniphier*
2585 F:      drivers/irqchip/irq-uniphier-aidet.c
2586 F:      drivers/mmc/host/uniphier-sd.c
2587 F:      drivers/pinctrl/uniphier/
2588 F:      drivers/reset/reset-uniphier.c
2589 F:      drivers/tty/serial/8250/8250_uniphier.c
2590 N:      uniphier
2591
2592 Ux500 CLOCK DRIVERS
2593 M:      Ulf Hansson <[email protected]>
2594 L:      [email protected]
2595 L:      [email protected] (moderated for non-subscribers)
2596 S:      Maintained
2597 F:      drivers/clk/ux500/
2598
2599 ARM/VERSATILE EXPRESS PLATFORM
2600 M:      Liviu Dudau <[email protected]>
2601 M:      Sudeep Holla <[email protected]>
2602 M:      Lorenzo Pieralisi <[email protected]>
2603 L:      [email protected] (moderated for non-subscribers)
2604 S:      Maintained
2605 F:      arch/arm/boot/dts/vexpress*
2606 F:      arch/arm64/boot/dts/arm/
2607 F:      arch/arm/mach-vexpress/
2608 F:      */*/vexpress*
2609 F:      */*/*/vexpress*
2610 F:      drivers/clk/versatile/clk-vexpress-osc.c
2611 F:      drivers/clocksource/timer-versatile.c
2612 N:      mps2
2613
2614 ARM/VFP SUPPORT
2615 M:      Russell King <[email protected]>
2616 L:      [email protected] (moderated for non-subscribers)
2617 W:      http://www.armlinux.org.uk/
2618 S:      Maintained
2619 F:      arch/arm/vfp/
2620
2621 ARM/VOIPAC PXA270 SUPPORT
2622 M:      Marek Vasut <[email protected]>
2623 L:      [email protected] (moderated for non-subscribers)
2624 S:      Maintained
2625 F:      arch/arm/mach-pxa/vpac270.c
2626 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2627
2628 ARM/VT8500 ARM ARCHITECTURE
2629 M:      Tony Prisk <[email protected]>
2630 L:      [email protected] (moderated for non-subscribers)
2631 S:      Maintained
2632 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2633 F:      arch/arm/mach-vt8500/
2634 F:      drivers/clocksource/timer-vt8500.c
2635 F:      drivers/i2c/busses/i2c-wmt.c
2636 F:      drivers/mmc/host/wmt-sdmmc.c
2637 F:      drivers/pwm/pwm-vt8500.c
2638 F:      drivers/rtc/rtc-vt8500.c
2639 F:      drivers/tty/serial/vt8500_serial.c
2640 F:      drivers/usb/host/ehci-platform.c
2641 F:      drivers/usb/host/uhci-platform.c
2642 F:      drivers/video/fbdev/vt8500lcdfb.*
2643 F:      drivers/video/fbdev/wm8505fb*
2644 F:      drivers/video/fbdev/wmt_ge_rops.*
2645
2646 ARM/ZIPIT Z2 SUPPORT
2647 M:      Marek Vasut <[email protected]>
2648 L:      [email protected] (moderated for non-subscribers)
2649 S:      Maintained
2650 F:      arch/arm/mach-pxa/z2.c
2651 F:      arch/arm/mach-pxa/include/mach/z2.h
2652
2653 ARM/ZTE ARCHITECTURE
2654 M:      Jun Nie <[email protected]>
2655 M:      Shawn Guo <[email protected]>
2656 L:      [email protected] (moderated for non-subscribers)
2657 S:      Maintained
2658 F:      arch/arm/boot/dts/zx2967*
2659 F:      arch/arm/mach-zx/
2660 F:      arch/arm64/boot/dts/zte/
2661 F:      drivers/clk/zte/
2662 F:      drivers/dma/zx_dma.c
2663 F:      drivers/gpio/gpio-zx.c
2664 F:      drivers/i2c/busses/i2c-zx2967.c
2665 F:      drivers/mmc/host/dw_mmc-zx.*
2666 F:      drivers/pinctrl/zte/
2667 F:      drivers/soc/zte/
2668 F:      drivers/thermal/zx2967_thermal.c
2669 F:      drivers/watchdog/zx2967_wdt.c
2670 F:      Documentation/devicetree/bindings/arm/zte.yaml
2671 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2672 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2673 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2674 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2675 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2676 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2677 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2678 F:      Documentation/devicetree/bindings/soc/zte/
2679 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2680 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2681 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2682 F:      include/dt-bindings/clock/zx2967*.h
2683 F:      include/dt-bindings/soc/zte,*.h
2684 F:      sound/soc/codecs/zx_aud96p22.c
2685 F:      sound/soc/zte/
2686
2687 ARM/ZYNQ ARCHITECTURE
2688 M:      Michal Simek <[email protected]>
2689 L:      [email protected] (moderated for non-subscribers)
2690 W:      http://wiki.xilinx.com
2691 T:      git https://github.com/Xilinx/linux-xlnx.git
2692 S:      Supported
2693 F:      arch/arm/mach-zynq/
2694 F:      drivers/cpuidle/cpuidle-zynq.c
2695 F:      drivers/block/xsysace.c
2696 N:      zynq
2697 N:      xilinx
2698 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2699 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2700 F:      drivers/clocksource/timer-cadence-ttc.c
2701 F:      drivers/i2c/busses/i2c-cadence.c
2702 F:      drivers/mmc/host/sdhci-of-arasan.c
2703 F:      drivers/edac/synopsys_edac.c
2704 F:      drivers/i2c/busses/i2c-xiic.c
2705
2706 ARM64 PORT (AARCH64 ARCHITECTURE)
2707 M:      Catalin Marinas <[email protected]>
2708 M:      Will Deacon <[email protected]>
2709 L:      [email protected] (moderated for non-subscribers)
2710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2711 S:      Maintained
2712 F:      arch/arm64/
2713 X:      arch/arm64/boot/dts/
2714 F:      Documentation/arm64/
2715 F:      tools/testing/selftests/arm64/
2716
2717 AS3645A LED FLASH CONTROLLER DRIVER
2718 M:      Sakari Ailus <[email protected]>
2719 L:      [email protected]
2720 S:      Maintained
2721 F:      drivers/leds/leds-as3645a.c
2722
2723 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2724 M:      Tianshu Qiu <[email protected]>
2725 L:      [email protected]
2726 T:      git git://linuxtv.org/media_tree.git
2727 S:      Maintained
2728 F:      drivers/media/i2c/ak7375.c
2729 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2730
2731 ASAHI KASEI AK8974 DRIVER
2732 M:      Linus Walleij <[email protected]>
2733 L:      [email protected]
2734 W:      http://www.akm.com/
2735 S:      Supported
2736 F:      drivers/iio/magnetometer/ak8974.c
2737
2738 ASC7621 HARDWARE MONITOR DRIVER
2739 M:      George Joseph <[email protected]>
2740 L:      [email protected]
2741 S:      Maintained
2742 F:      Documentation/hwmon/asc7621.rst
2743 F:      drivers/hwmon/asc7621.c
2744
2745 ASPEED PINCTRL DRIVERS
2746 M:      Andrew Jeffery <[email protected]>
2747 L:      [email protected] (moderated for non-subscribers)
2748 L:      [email protected] (moderated for non-subscribers)
2749 L:      [email protected]
2750 S:      Maintained
2751 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2752 F:      drivers/pinctrl/aspeed/
2753
2754 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2755 M:      Eddie James <[email protected]>
2756 L:      [email protected] (moderated for non-subscribers)
2757 S:      Maintained
2758 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2759 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2760 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2761
2762 ASPEED VIDEO ENGINE DRIVER
2763 M:      Eddie James <[email protected]>
2764 L:      [email protected]
2765 L:      [email protected] (moderated for non-subscribers)
2766 S:      Maintained
2767 F:      drivers/media/platform/aspeed-video.c
2768 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2769
2770 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2771 M:      Corentin Chary <[email protected]>
2772 L:      [email protected]
2773 L:      [email protected]
2774 S:      Maintained
2775 W:      http://acpi4asus.sf.net
2776 F:      drivers/platform/x86/asus*.c
2777 F:      drivers/platform/x86/eeepc*.c
2778
2779 ASUS WIRELESS RADIO CONTROL DRIVER
2780 M:      João Paulo Rechi Vita <[email protected]>
2781 L:      [email protected]
2782 S:      Maintained
2783 F:      drivers/platform/x86/asus-wireless.c
2784
2785 ASYMMETRIC KEYS
2786 M:      David Howells <[email protected]>
2787 L:      [email protected]
2788 S:      Maintained
2789 F:      Documentation/crypto/asymmetric-keys.txt
2790 F:      include/linux/verification.h
2791 F:      include/crypto/public_key.h
2792 F:      include/crypto/pkcs7.h
2793 F:      crypto/asymmetric_keys/
2794
2795 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2796 R:      Dan Williams <[email protected]>
2797 W:      http://sourceforge.net/projects/xscaleiop
2798 S:      Odd fixes
2799 F:      Documentation/crypto/async-tx-api.txt
2800 F:      crypto/async_tx/
2801 F:      drivers/dma/
2802 F:      include/linux/dmaengine.h
2803 F:      include/linux/async_tx.h
2804
2805 AT24 EEPROM DRIVER
2806 M:      Bartosz Golaszewski <[email protected]>
2807 L:      [email protected]
2808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2809 S:      Maintained
2810 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2811 F:      drivers/misc/eeprom/at24.c
2812
2813 ATA OVER ETHERNET (AOE) DRIVER
2814 M:      "Justin Sanders" <[email protected]>
2815 W:      http://www.openaoe.org/
2816 S:      Supported
2817 F:      Documentation/admin-guide/aoe/
2818 F:      drivers/block/aoe/
2819
2820 ATHEROS 71XX/9XXX GPIO DRIVER
2821 M:      Alban Bedel <[email protected]>
2822 S:      Maintained
2823 W:      https://github.com/AlbanBedel/linux
2824 T:      git git://github.com/AlbanBedel/linux
2825 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2826 F:      drivers/gpio/gpio-ath79.c
2827
2828 ATHEROS 71XX/9XXX USB PHY DRIVER
2829 M:      Alban Bedel <[email protected]>
2830 W:      https://github.com/AlbanBedel/linux
2831 T:      git git://github.com/AlbanBedel/linux
2832 S:      Maintained
2833 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2834 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2835
2836 ATHEROS ATH GENERIC UTILITIES
2837 M:      Kalle Valo <[email protected]>
2838 L:      [email protected]
2839 S:      Supported
2840 F:      drivers/net/wireless/ath/*
2841
2842 ATHEROS ATH5K WIRELESS DRIVER
2843 M:      Jiri Slaby <[email protected]>
2844 M:      Nick Kossifidis <[email protected]>
2845 M:      Luis Chamberlain <[email protected]>
2846 L:      [email protected]
2847 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2848 S:      Maintained
2849 F:      drivers/net/wireless/ath/ath5k/
2850
2851 ATHEROS ATH6KL WIRELESS DRIVER
2852 M:      Kalle Valo <[email protected]>
2853 L:      [email protected]
2854 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2856 S:      Supported
2857 F:      drivers/net/wireless/ath/ath6kl/
2858
2859 ATI_REMOTE2 DRIVER
2860 M:      Ville Syrjala <[email protected]>
2861 S:      Maintained
2862 F:      drivers/input/misc/ati_remote2.c
2863
2864 ATK0110 HWMON DRIVER
2865 M:      Luca Tettamanti <[email protected]>
2866 L:      [email protected]
2867 S:      Maintained
2868 F:      drivers/hwmon/asus_atk0110.c
2869
2870 ATLX ETHERNET DRIVERS
2871 M:      Jay Cliburn <[email protected]>
2872 M:      Chris Snook <[email protected]>
2873 L:      [email protected]
2874 W:      http://sourceforge.net/projects/atl1
2875 W:      http://atl1.sourceforge.net
2876 S:      Maintained
2877 F:      drivers/net/ethernet/atheros/
2878
2879 ATM
2880 M:      Chas Williams <[email protected]>
2881 L:      [email protected] (moderated for non-subscribers)
2882 L:      [email protected]
2883 W:      http://linux-atm.sourceforge.net
2884 S:      Maintained
2885 F:      drivers/atm/
2886 F:      include/linux/atm*
2887 F:      include/uapi/linux/atm*
2888
2889 ATMEL MACB ETHERNET DRIVER
2890 M:      Nicolas Ferre <[email protected]>
2891 S:      Supported
2892 F:      drivers/net/ethernet/cadence/
2893
2894 ATMEL MAXTOUCH DRIVER
2895 M:      Nick Dyer <[email protected]>
2896 T:      git git://github.com/ndyer/linux.git
2897 S:      Maintained
2898 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2899 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2900
2901 ATMEL WIRELESS DRIVER
2902 M:      Simon Kelley <[email protected]>
2903 L:      [email protected]
2904 W:      http://www.thekelleys.org.uk/atmel
2905 W:      http://atmelwlandriver.sourceforge.net/
2906 S:      Maintained
2907 F:      drivers/net/wireless/atmel/atmel*
2908
2909 ATOMIC INFRASTRUCTURE
2910 M:      Will Deacon <[email protected]>
2911 M:      Peter Zijlstra <[email protected]>
2912 R:      Boqun Feng <[email protected]>
2913 L:      [email protected]
2914 S:      Maintained
2915 F:      arch/*/include/asm/atomic*.h
2916 F:      include/*/atomic*.h
2917 F:      scripts/atomic/
2918
2919 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2920 M:      Bradley Grove <[email protected]>
2921 L:      [email protected]
2922 W:      http://www.attotech.com
2923 S:      Supported
2924 F:      drivers/scsi/esas2r
2925
2926 ATUSB IEEE 802.15.4 RADIO DRIVER
2927 M:      Stefan Schmidt <[email protected]>
2928 L:      [email protected]
2929 S:      Maintained
2930 F:      drivers/net/ieee802154/atusb.c
2931 F:      drivers/net/ieee802154/atusb.h
2932 F:      drivers/net/ieee802154/at86rf230.h
2933
2934 AUDIT SUBSYSTEM
2935 M:      Paul Moore <[email protected]>
2936 M:      Eric Paris <[email protected]>
2937 L:      [email protected] (moderated for non-subscribers)
2938 W:      https://github.com/linux-audit
2939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2940 S:      Supported
2941 F:      include/linux/audit.h
2942 F:      include/uapi/linux/audit.h
2943 F:      kernel/audit*
2944
2945 AUXILIARY DISPLAY DRIVERS
2946 M:      Miguel Ojeda Sandonis <[email protected]>
2947 S:      Maintained
2948 F:      drivers/auxdisplay/
2949 F:      include/linux/cfag12864b.h
2950
2951 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2952 M:      Andreas Klinger <[email protected]>
2953 L:      [email protected]
2954 S:      Maintained
2955 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2956 F:      drivers/iio/adc/hx711.c
2957
2958 AX.25 NETWORK LAYER
2959 M:      Ralf Baechle <[email protected]>
2960 L:      [email protected]
2961 W:      http://www.linux-ax25.org/
2962 S:      Maintained
2963 F:      include/uapi/linux/ax25.h
2964 F:      include/net/ax25.h
2965 F:      net/ax25/
2966
2967 AXENTIA ARM DEVICES
2968 M:      Peter Rosin <[email protected]>
2969 L:      [email protected] (moderated for non-subscribers)
2970 S:      Maintained
2971 F:      arch/arm/boot/dts/at91-linea.dtsi
2972 F:      arch/arm/boot/dts/at91-natte.dtsi
2973 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2974 F:      arch/arm/boot/dts/at91-tse850-3.dts
2975
2976 AXENTIA ASOC DRIVERS
2977 M:      Peter Rosin <[email protected]>
2978 L:      [email protected] (moderated for non-subscribers)
2979 S:      Maintained
2980 F:      Documentation/devicetree/bindings/sound/axentia,*
2981 F:      sound/soc/atmel/tse850-pcm5142.c
2982
2983 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
2984 M:      Nuno Sá <[email protected]>
2985 W:      http://ez.analog.com/community/linux-device-drivers
2986 L:      [email protected]
2987 S:      Supported
2988 F:      drivers/hwmon/axi-fan-control.c
2989 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
2990
2991 AXXIA I2C CONTROLLER
2992 M:      Krzysztof Adamski <[email protected]>
2993 L:      [email protected]
2994 S:      Maintained
2995 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2996 F:      drivers/i2c/busses/i2c-axxia.c
2997
2998 AZ6007 DVB DRIVER
2999 M:      Mauro Carvalho Chehab <[email protected]>
3000 L:      [email protected]
3001 W:      https://linuxtv.org
3002 T:      git git://linuxtv.org/media_tree.git
3003 S:      Maintained
3004 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3005
3006 AZTECH FM RADIO RECEIVER DRIVER
3007 M:      Hans Verkuil <[email protected]>
3008 L:      [email protected]
3009 T:      git git://linuxtv.org/media_tree.git
3010 W:      https://linuxtv.org
3011 S:      Maintained
3012 F:      drivers/media/radio/radio-aztech*
3013
3014 B43 WIRELESS DRIVER
3015 L:      [email protected]
3016 L:      [email protected]
3017 W:      http://wireless.kernel.org/en/users/Drivers/b43
3018 S:      Odd Fixes
3019 F:      drivers/net/wireless/broadcom/b43/
3020
3021 B43LEGACY WIRELESS DRIVER
3022 M:      Larry Finger <[email protected]>
3023 L:      [email protected]
3024 L:      [email protected]
3025 W:      http://wireless.kernel.org/en/users/Drivers/b43
3026 S:      Maintained
3027 F:      drivers/net/wireless/broadcom/b43legacy/
3028
3029 BACKLIGHT CLASS/SUBSYSTEM
3030 M:      Lee Jones <[email protected]>
3031 M:      Daniel Thompson <[email protected]>
3032 M:      Jingoo Han <[email protected]>
3033 L:      [email protected]
3034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3035 S:      Maintained
3036 F:      drivers/video/backlight/
3037 F:      include/linux/backlight.h
3038 F:      include/linux/pwm_backlight.h
3039 F:      Documentation/devicetree/bindings/leds/backlight
3040 F:      Documentation/ABI/stable/sysfs-class-backlight
3041 F:      Documentation/ABI/testing/sysfs-class-backlight
3042
3043 BATMAN ADVANCED
3044 M:      Marek Lindner <[email protected]>
3045 M:      Simon Wunderlich <[email protected]>
3046 M:      Antonio Quartulli <[email protected]>
3047 M:      Sven Eckelmann <[email protected]>
3048 L:      [email protected] (moderated for non-subscribers)
3049 W:      https://www.open-mesh.org/
3050 B:      https://www.open-mesh.org/projects/batman-adv/issues
3051 C:      irc://chat.freenode.net/batman
3052 Q:      https://patchwork.open-mesh.org/project/batman/list/
3053 T:      git https://git.open-mesh.org/linux-merge.git
3054 S:      Maintained
3055 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3056 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3057 F:      Documentation/networking/batman-adv.rst
3058 F:      include/uapi/linux/batadv_packet.h
3059 F:      include/uapi/linux/batman_adv.h
3060 F:      net/batman-adv/
3061
3062 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3063 M:      Thomas Sailer <[email protected]>
3064 L:      [email protected]
3065 W:      http://www.baycom.org/~tom/ham/ham.html
3066 S:      Maintained
3067 F:      drivers/net/hamradio/baycom*
3068
3069 BCACHE (BLOCK LAYER CACHE)
3070 M:      Coly Li <[email protected]>
3071 M:      Kent Overstreet <[email protected]>
3072 L:      [email protected]
3073 W:      http://bcache.evilpiepirate.org
3074 C:      irc://irc.oftc.net/bcache
3075 S:      Maintained
3076 F:      drivers/md/bcache/
3077
3078 BDISP ST MEDIA DRIVER
3079 M:      Fabien Dessenne <[email protected]>
3080 L:      [email protected]
3081 T:      git git://linuxtv.org/media_tree.git
3082 W:      https://linuxtv.org
3083 S:      Supported
3084 F:      drivers/media/platform/sti/bdisp
3085
3086 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3087 M:      Dariusz Marcinkiewicz <[email protected]>
3088 L:      [email protected]
3089 S:      Maintained
3090 F:      drivers/net/ethernet/ec_bhf.c
3091
3092 BEFS FILE SYSTEM
3093 M:      Luis de Bethencourt <[email protected]>
3094 M:      Salah Triki <[email protected]>
3095 S:      Maintained
3096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3097 F:      Documentation/filesystems/befs.rst
3098 F:      fs/befs/
3099
3100 BFQ I/O SCHEDULER
3101 M:      Paolo Valente <[email protected]>
3102 M:      Jens Axboe <[email protected]>
3103 L:      [email protected]
3104 S:      Maintained
3105 F:      block/bfq-*
3106 F:      Documentation/block/bfq-iosched.rst
3107
3108 BFS FILE SYSTEM
3109 M:      "Tigran A. Aivazian" <[email protected]>
3110 S:      Maintained
3111 F:      Documentation/filesystems/bfs.rst
3112 F:      fs/bfs/
3113 F:      include/uapi/linux/bfs_fs.h
3114
3115 BLINKM RGB LED DRIVER
3116 M:      Jan-Simon Moeller <[email protected]>
3117 S:      Maintained
3118 F:      drivers/leds/leds-blinkm.c
3119
3120 BLOCK LAYER
3121 M:      Jens Axboe <[email protected]>
3122 L:      [email protected]
3123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3124 S:      Maintained
3125 F:      block/
3126 F:      drivers/block/
3127 F:      kernel/trace/blktrace.c
3128 F:      lib/sbitmap.c
3129
3130 BLOCK2MTD DRIVER
3131 M:      Joern Engel <[email protected]>
3132 L:      [email protected]
3133 S:      Maintained
3134 F:      drivers/mtd/devices/block2mtd.c
3135
3136 BLUETOOTH DRIVERS
3137 M:      Marcel Holtmann <[email protected]>
3138 M:      Johan Hedberg <[email protected]>
3139 L:      [email protected]
3140 W:      http://www.bluez.org/
3141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3143 S:      Maintained
3144 F:      drivers/bluetooth/
3145
3146 BLUETOOTH SUBSYSTEM
3147 M:      Marcel Holtmann <[email protected]>
3148 M:      Johan Hedberg <[email protected]>
3149 L:      [email protected]
3150 W:      http://www.bluez.org/
3151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3153 S:      Maintained
3154 F:      net/bluetooth/
3155 F:      include/net/bluetooth/
3156
3157 BONDING DRIVER
3158 M:      Jay Vosburgh <[email protected]>
3159 M:      Veaceslav Falico <[email protected]>
3160 M:      Andy Gospodarek <[email protected]>
3161 L:      [email protected]
3162 W:      http://sourceforge.net/projects/bonding/
3163 S:      Supported
3164 F:      drivers/net/bonding/
3165 F:      include/uapi/linux/if_bonding.h
3166
3167 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3168 M:      Dan Robertson <[email protected]>
3169 L:      [email protected]
3170 S:      Maintained
3171 F:      drivers/iio/accel/bma400*
3172 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3173
3174 BPF (Safe dynamic programs and tools)
3175 M:      Alexei Starovoitov <[email protected]>
3176 M:      Daniel Borkmann <[email protected]>
3177 R:      Martin KaFai Lau <[email protected]>
3178 R:      Song Liu <[email protected]>
3179 R:      Yonghong Song <[email protected]>
3180 R:      Andrii Nakryiko <[email protected]>
3181 R:      John Fastabend <[email protected]>
3182 R:      KP Singh <[email protected]>
3183 L:      [email protected]
3184 L:      [email protected]
3185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3187 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3188 S:      Supported
3189 F:      arch/*/net/*
3190 F:      Documentation/networking/filter.txt
3191 F:      Documentation/bpf/
3192 F:      include/linux/bpf*
3193 F:      include/linux/filter.h
3194 F:      include/trace/events/xdp.h
3195 F:      include/uapi/linux/bpf*
3196 F:      include/uapi/linux/filter.h
3197 F:      kernel/bpf/
3198 F:      kernel/trace/bpf_trace.c
3199 F:      lib/test_bpf.c
3200 F:      net/bpf/
3201 F:      net/core/filter.c
3202 F:      net/sched/act_bpf.c
3203 F:      net/sched/cls_bpf.c
3204 F:      samples/bpf/
3205 F:      tools/bpf/
3206 F:      tools/lib/bpf/
3207 F:      tools/testing/selftests/bpf/
3208 K:      bpf
3209 N:      bpf
3210
3211 BPF JIT for ARM
3212 M:      Shubham Bansal <[email protected]>
3213 L:      [email protected]
3214 L:      [email protected]
3215 S:      Maintained
3216 F:      arch/arm/net/
3217
3218 BPF JIT for ARM64
3219 M:      Daniel Borkmann <[email protected]>
3220 M:      Alexei Starovoitov <[email protected]>
3221 M:      Zi Shen Lim <[email protected]>
3222 L:      [email protected]
3223 L:      [email protected]
3224 S:      Supported
3225 F:      arch/arm64/net/
3226
3227 BPF JIT for MIPS (32-BIT AND 64-BIT)
3228 M:      Paul Burton <[email protected]>
3229 L:      [email protected]
3230 L:      [email protected]
3231 S:      Maintained
3232 F:      arch/mips/net/
3233
3234 BPF JIT for NFP NICs
3235 M:      Jakub Kicinski <[email protected]>
3236 L:      [email protected]
3237 L:      [email protected]
3238 S:      Supported
3239 F:      drivers/net/ethernet/netronome/nfp/bpf/
3240
3241 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3242 M:      Naveen N. Rao <[email protected]>
3243 M:      Sandipan Das <[email protected]>
3244 L:      [email protected]
3245 L:      [email protected]
3246 S:      Maintained
3247 F:      arch/powerpc/net/
3248
3249 BPF JIT for RISC-V (32-bit)
3250 M:      Luke Nelson <[email protected]>
3251 M:      Xi Wang <[email protected]>
3252 L:      [email protected]
3253 L:      [email protected]
3254 S:      Maintained
3255 F:      arch/riscv/net/
3256 X:      arch/riscv/net/bpf_jit_comp64.c
3257
3258 BPF JIT for RISC-V (64-bit)
3259 M:      Björn Töpel <[email protected]>
3260 L:      [email protected]
3261 L:      [email protected]
3262 S:      Maintained
3263 F:      arch/riscv/net/
3264 X:      arch/riscv/net/bpf_jit_comp32.c
3265
3266 BPF JIT for S390
3267 M:      Ilya Leoshkevich <[email protected]>
3268 M:      Heiko Carstens <[email protected]>
3269 M:      Vasily Gorbik <[email protected]>
3270 L:      [email protected]
3271 L:      [email protected]
3272 S:      Maintained
3273 F:      arch/s390/net/
3274 X:      arch/s390/net/pnet.c
3275
3276 BPF JIT for SPARC (32-BIT AND 64-BIT)
3277 M:      David S. Miller <[email protected]>
3278 L:      [email protected]
3279 L:      [email protected]
3280 S:      Maintained
3281 F:      arch/sparc/net/
3282
3283 BPF JIT for X86 32-BIT
3284 M:      Wang YanQing <[email protected]>
3285 L:      [email protected]
3286 L:      [email protected]
3287 S:      Maintained
3288 F:      arch/x86/net/bpf_jit_comp32.c
3289
3290 BPF JIT for X86 64-BIT
3291 M:      Alexei Starovoitov <[email protected]>
3292 M:      Daniel Borkmann <[email protected]>
3293 L:      [email protected]
3294 L:      [email protected]
3295 S:      Supported
3296 F:      arch/x86/net/
3297 X:      arch/x86/net/bpf_jit_comp32.c
3298
3299 BROADCOM B44 10/100 ETHERNET DRIVER
3300 M:      Michael Chan <[email protected]>
3301 L:      [email protected]
3302 S:      Supported
3303 F:      drivers/net/ethernet/broadcom/b44.*
3304
3305 BROADCOM B53 ETHERNET SWITCH DRIVER
3306 M:      Florian Fainelli <[email protected]>
3307 L:      [email protected]
3308 L:      [email protected] (subscribers-only)
3309 S:      Supported
3310 F:      drivers/net/dsa/b53/*
3311 F:      include/linux/platform_data/b53.h
3312
3313 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3314 M:      Florian Fainelli <[email protected]>
3315 M:      Ray Jui <[email protected]>
3316 M:      Scott Branden <[email protected]>
3317 M:      [email protected]
3318 T:      git git://github.com/broadcom/mach-bcm
3319 S:      Maintained
3320 N:      bcm281*
3321 N:      bcm113*
3322 N:      bcm216*
3323 N:      kona
3324 F:      arch/arm/mach-bcm/
3325
3326 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3327 M:      Nicolas Saenz Julienne <[email protected]>
3328 L:      [email protected]
3329 L:      [email protected] (moderated for non-subscribers)
3330 L:      [email protected] (moderated for non-subscribers)
3331 T:      git git://github.com/anholt/linux
3332 S:      Maintained
3333 N:      bcm2711
3334 N:      bcm2835
3335 F:      drivers/staging/vc04_services
3336 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3337 F:      drivers/pci/controller/pcie-brcmstb.c
3338
3339 BROADCOM BCM47XX MIPS ARCHITECTURE
3340 M:      Hauke Mehrtens <[email protected]>
3341 M:      Rafał Miłecki <[email protected]>
3342 L:      [email protected]
3343 S:      Maintained
3344 F:      Documentation/devicetree/bindings/mips/brcm/
3345 F:      arch/mips/bcm47xx/*
3346 F:      arch/mips/include/asm/mach-bcm47xx/*
3347
3348 BROADCOM BCM5301X ARM ARCHITECTURE
3349 M:      Hauke Mehrtens <[email protected]>
3350 M:      Rafał Miłecki <[email protected]>
3351 M:      [email protected]
3352 L:      [email protected]
3353 S:      Maintained
3354 F:      arch/arm/mach-bcm/bcm_5301x.c
3355 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3356 F:      arch/arm/boot/dts/bcm470*
3357 F:      arch/arm/boot/dts/bcm953012*
3358
3359 BROADCOM BCM53573 ARM ARCHITECTURE
3360 M:      Rafał Miłecki <[email protected]>
3361 L:      [email protected]
3362 L:      [email protected]
3363 S:      Maintained
3364 F:      arch/arm/boot/dts/bcm53573*
3365 F:      arch/arm/boot/dts/bcm47189*
3366
3367 BROADCOM BCM63XX ARM ARCHITECTURE
3368 M:      Florian Fainelli <[email protected]>
3369 M:      [email protected]
3370 L:      [email protected] (moderated for non-subscribers)
3371 T:      git git://github.com/broadcom/stblinux.git
3372 S:      Maintained
3373 N:      bcm63xx
3374
3375 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3376 M:      Kevin Cernekee <[email protected]>
3377 L:      [email protected]
3378 S:      Maintained
3379 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3380
3381 BROADCOM BCM7XXX ARM ARCHITECTURE
3382 M:      Florian Fainelli <[email protected]>
3383 M:      [email protected]
3384 L:      [email protected] (moderated for non-subscribers)
3385 T:      git git://github.com/broadcom/stblinux.git
3386 S:      Maintained
3387 F:      arch/arm/mach-bcm/*brcmstb*
3388 F:      arch/arm/boot/dts/bcm7*.dts*
3389 F:      drivers/bus/brcmstb_gisb.c
3390 F:      arch/arm/mm/cache-b15-rac.c
3391 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3392 N:      brcmstb
3393 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3394 F:      drivers/pci/controller/pcie-brcmstb.c
3395
3396 BROADCOM BMIPS CPUFREQ DRIVER
3397 M:      Markus Mayer <[email protected]>
3398 M:      [email protected]
3399 L:      [email protected]
3400 S:      Maintained
3401 F:      drivers/cpufreq/bmips-cpufreq.c
3402
3403 BROADCOM BMIPS MIPS ARCHITECTURE
3404 M:      Florian Fainelli <[email protected]>
3405 L:      [email protected]
3406 L:      [email protected]
3407 T:      git git://github.com/broadcom/stblinux.git
3408 S:      Maintained
3409 F:      arch/mips/bmips/*
3410 F:      arch/mips/include/asm/mach-bmips/*
3411 F:      arch/mips/kernel/*bmips*
3412 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3413 F:      drivers/irqchip/irq-bcm63*
3414 F:      drivers/irqchip/irq-bcm7*
3415 F:      drivers/irqchip/irq-brcmstb*
3416 F:      include/linux/bcm963xx_nvram.h
3417 F:      include/linux/bcm963xx_tag.h
3418
3419 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3420 M:      Rasesh Mody <[email protected]>
3421 M:      [email protected]
3422 L:      [email protected]
3423 S:      Supported
3424 F:      drivers/net/ethernet/broadcom/bnx2.*
3425 F:      drivers/net/ethernet/broadcom/bnx2_*
3426
3427 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3428 M:      [email protected]
3429 L:      [email protected]
3430 S:      Supported
3431 F:      drivers/scsi/bnx2fc/
3432
3433 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3434 M:      [email protected]
3435 L:      [email protected]
3436 S:      Supported
3437 F:      drivers/scsi/bnx2i/
3438
3439 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3440 M:      Ariel Elior <[email protected]>
3441 M:      Sudarsana Kalluru <[email protected]>
3442 M:      [email protected]
3443 L:      [email protected]
3444 S:      Supported
3445 F:      drivers/net/ethernet/broadcom/bnx2x/
3446
3447 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3448 M:      Michael Chan <[email protected]>
3449 L:      [email protected]
3450 S:      Supported
3451 F:      drivers/net/ethernet/broadcom/bnxt/
3452
3453 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3454 M:      Arend van Spriel <[email protected]>
3455 M:      Franky Lin <[email protected]>
3456 M:      Hante Meuleman <[email protected]>
3457 M:      Chi-Hsien Lin <[email protected]>
3458 M:      Wright Feng <[email protected]>
3459 L:      [email protected]
3460 L:      [email protected]
3461 L:      [email protected]
3462 S:      Supported
3463 F:      drivers/net/wireless/broadcom/brcm80211/
3464
3465 BROADCOM BRCMSTB GPIO DRIVER
3466 M:      Gregory Fong <[email protected]>
3467 L:      [email protected]
3468 S:      Supported
3469 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3470 F:      drivers/gpio/gpio-brcmstb.c
3471
3472 BROADCOM BRCMSTB I2C DRIVER
3473 M:      Kamal Dasu <[email protected]>
3474 L:      [email protected]
3475 L:      [email protected]
3476 S:      Supported
3477 F:      drivers/i2c/busses/i2c-brcmstb.c
3478 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3479
3480 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3481 M:      Al Cooper <[email protected]>
3482 L:      [email protected]
3483 L:      [email protected]
3484 S:      Maintained
3485 F:      drivers/phy/broadcom/phy-brcm-usb*
3486
3487 BROADCOM GENET ETHERNET DRIVER
3488 M:      Doug Berger <[email protected]>
3489 M:      Florian Fainelli <[email protected]>
3490 L:      [email protected]
3491 L:      [email protected]
3492 S:      Supported
3493 F:      drivers/net/ethernet/broadcom/genet/
3494
3495 BROADCOM IPROC ARM ARCHITECTURE
3496 M:      Ray Jui <[email protected]>
3497 M:      Scott Branden <[email protected]>
3498 M:      [email protected]
3499 L:      [email protected] (moderated for non-subscribers)
3500 T:      git git://github.com/broadcom/cygnus-linux.git
3501 S:      Maintained
3502 N:      iproc
3503 N:      cygnus
3504 N:      bcm[-_]nsp
3505 N:      bcm9113*
3506 N:      bcm9583*
3507 N:      bcm9585*
3508 N:      bcm9586*
3509 N:      bcm988312
3510 N:      bcm113*
3511 N:      bcm583*
3512 N:      bcm585*
3513 N:      bcm586*
3514 N:      bcm88312
3515 N:      hr2
3516 N:      stingray
3517 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3518 F:      arch/arm64/boot/dts/broadcom/stingray/*
3519 F:      drivers/clk/bcm/clk-ns*
3520 F:      drivers/clk/bcm/clk-sr*
3521 F:      drivers/pinctrl/bcm/pinctrl-ns*
3522 F:      include/dt-bindings/clock/bcm-sr*
3523
3524 BROADCOM KONA GPIO DRIVER
3525 M:      Ray Jui <[email protected]>
3526 L:      [email protected]
3527 S:      Supported
3528 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3529 F:      drivers/gpio/gpio-bcm-kona.c
3530
3531 BROADCOM NETXTREME-E ROCE DRIVER
3532 M:      Selvin Xavier <[email protected]>
3533 M:      Devesh Sharma <[email protected]>
3534 M:      Somnath Kotur <[email protected]>
3535 M:      Sriharsha Basavapatna <[email protected]>
3536 L:      [email protected]
3537 W:      http://www.broadcom.com
3538 S:      Supported
3539 F:      drivers/infiniband/hw/bnxt_re/
3540 F:      include/uapi/rdma/bnxt_re-abi.h
3541
3542 BROADCOM NVRAM DRIVER
3543 M:      Rafał Miłecki <[email protected]>
3544 L:      [email protected]
3545 S:      Maintained
3546 F:      drivers/firmware/broadcom/*
3547
3548 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3549 M:      Rafał Miłecki <[email protected]>
3550 L:      [email protected]
3551 S:      Maintained
3552 F:      drivers/bcma/
3553 F:      include/linux/bcma/
3554
3555 BROADCOM STB AVS CPUFREQ DRIVER
3556 M:      Markus Mayer <[email protected]>
3557 M:      [email protected]
3558 L:      [email protected]
3559 S:      Maintained
3560 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3561 F:      drivers/cpufreq/brcmstb*
3562
3563 BROADCOM STB AVS TMON DRIVER
3564 M:      Markus Mayer <[email protected]>
3565 M:      [email protected]
3566 L:      [email protected]
3567 S:      Maintained
3568 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3569 F:      drivers/thermal/broadcom/brcmstb*
3570
3571 BROADCOM STB NAND FLASH DRIVER
3572 M:      Brian Norris <[email protected]>
3573 M:      Kamal Dasu <[email protected]>
3574 L:      [email protected]
3575 L:      [email protected]
3576 S:      Maintained
3577 F:      drivers/mtd/nand/raw/brcmnand/
3578
3579 BROADCOM STB DPFE DRIVER
3580 M:      Markus Mayer <[email protected]>
3581 M:      [email protected]
3582 L:      [email protected] (moderated for non-subscribers)
3583 S:      Maintained
3584 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3585 F:      drivers/memory/brcmstb_dpfe.c
3586
3587 BROADCOM SPI DRIVER
3588 M:      Kamal Dasu <[email protected]>
3589 M:      [email protected]
3590 S:      Maintained
3591 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3592 F:      drivers/spi/spi-bcm-qspi.*
3593 F:      drivers/spi/spi-brcmstb-qspi.c
3594 F:      drivers/spi/spi-iproc-qspi.c
3595
3596 BROADCOM SYSTEMPORT ETHERNET DRIVER
3597 M:      Florian Fainelli <[email protected]>
3598 L:      [email protected]
3599 L:      [email protected]
3600 S:      Supported
3601 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3602
3603 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3604 M:      Siva Reddy Kallam <[email protected]>
3605 M:      Prashant Sreedharan <[email protected]>
3606 M:      Michael Chan <[email protected]>
3607 L:      [email protected]
3608 S:      Supported
3609 F:      drivers/net/ethernet/broadcom/tg3.*
3610
3611 BROCADE BFA FC SCSI DRIVER
3612 M:      Anil Gurumurthy <[email protected]>
3613 M:      Sudarsana Kalluru <[email protected]>
3614 L:      [email protected]
3615 S:      Supported
3616 F:      drivers/scsi/bfa/
3617
3618 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3619 M:      Rasesh Mody <[email protected]>
3620 M:      Sudarsana Kalluru <[email protected]>
3621 M:      [email protected]
3622 L:      [email protected]
3623 S:      Supported
3624 F:      drivers/net/ethernet/brocade/bna/
3625
3626 BSG (block layer generic sg v4 driver)
3627 M:      FUJITA Tomonori <[email protected]>
3628 L:      [email protected]
3629 S:      Supported
3630 F:      block/bsg.c
3631 F:      include/linux/bsg.h
3632 F:      include/uapi/linux/bsg.h
3633
3634 BT87X AUDIO DRIVER
3635 M:      Clemens Ladisch <[email protected]>
3636 L:      [email protected] (moderated for non-subscribers)
3637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3638 S:      Maintained
3639 F:      Documentation/sound/cards/bt87x.rst
3640 F:      sound/pci/bt87x.c
3641
3642 BT8XXGPIO DRIVER
3643 M:      Michael Buesch <[email protected]>
3644 S:      Maintained
3645 W:      http://bu3sch.de/btgpio.php
3646 F:      drivers/gpio/gpio-bt8xx.c
3647
3648 BTRFS FILE SYSTEM
3649 M:      Chris Mason <[email protected]>
3650 M:      Josef Bacik <[email protected]>
3651 M:      David Sterba <[email protected]>
3652 L:      [email protected]
3653 W:      http://btrfs.wiki.kernel.org/
3654 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3656 S:      Maintained
3657 F:      Documentation/filesystems/btrfs.rst
3658 F:      fs/btrfs/
3659 F:      include/linux/btrfs*
3660 F:      include/uapi/linux/btrfs*
3661
3662 BTTV VIDEO4LINUX DRIVER
3663 M:      Mauro Carvalho Chehab <[email protected]>
3664 L:      [email protected]
3665 W:      https://linuxtv.org
3666 T:      git git://linuxtv.org/media_tree.git
3667 S:      Odd fixes
3668 F:      Documentation/media/v4l-drivers/bttv*
3669 F:      drivers/media/pci/bt8xx/bttv*
3670
3671 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3672 M:      Chanwoo Choi <[email protected]>
3673 L:      [email protected]
3674 L:      [email protected]
3675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3676 S:      Maintained
3677 F:      drivers/devfreq/exynos-bus.c
3678 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3679
3680 BUSLOGIC SCSI DRIVER
3681 M:      Khalid Aziz <[email protected]>
3682 L:      [email protected]
3683 S:      Maintained
3684 F:      drivers/scsi/BusLogic.*
3685 F:      drivers/scsi/FlashPoint.*
3686
3687 C-MEDIA CMI8788 DRIVER
3688 M:      Clemens Ladisch <[email protected]>
3689 L:      [email protected] (moderated for non-subscribers)
3690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3691 S:      Maintained
3692 F:      sound/pci/oxygen/
3693
3694 C-SKY ARCHITECTURE
3695 M:      Guo Ren <[email protected]>
3696 L:      [email protected]
3697 T:      git https://github.com/c-sky/csky-linux.git
3698 S:      Supported
3699 F:      arch/csky/
3700 F:      Documentation/devicetree/bindings/csky/
3701 F:      drivers/irqchip/irq-csky-*
3702 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3703 F:      drivers/clocksource/timer-gx6605s.c
3704 F:      drivers/clocksource/timer-mp-csky.c
3705 F:      Documentation/devicetree/bindings/timer/csky,*
3706 K:      csky
3707 N:      csky
3708
3709 C6X ARCHITECTURE
3710 M:      Mark Salter <[email protected]>
3711 M:      Aurelien Jacquiot <[email protected]>
3712 L:      [email protected]
3713 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3714 S:      Maintained
3715 F:      arch/c6x/
3716
3717 CA8210 IEEE-802.15.4 RADIO DRIVER
3718 M:      Harry Morris <[email protected]>
3719 L:      [email protected]
3720 W:      https://github.com/Cascoda/ca8210-linux.git
3721 S:      Maintained
3722 F:      drivers/net/ieee802154/ca8210.c
3723 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3724
3725 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3726 M:      David Howells <[email protected]>
3727 L:      [email protected] (moderated for non-subscribers)
3728 S:      Supported
3729 F:      Documentation/filesystems/caching/cachefiles.txt
3730 F:      fs/cachefiles/
3731
3732 CADENCE MIPI-CSI2 BRIDGES
3733 M:      Maxime Ripard <[email protected]>
3734 L:      [email protected]
3735 S:      Maintained
3736 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3737 F:      drivers/media/platform/cadence/cdns-csi2*
3738
3739 CADENCE NAND DRIVER
3740 M:      Piotr Sroka <[email protected]>
3741 L:      [email protected]
3742 S:      Maintained
3743 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3744 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3745
3746 CADET FM/AM RADIO RECEIVER DRIVER
3747 M:      Hans Verkuil <[email protected]>
3748 L:      [email protected]
3749 T:      git git://linuxtv.org/media_tree.git
3750 W:      https://linuxtv.org
3751 S:      Maintained
3752 F:      drivers/media/radio/radio-cadet*
3753
3754 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3755 M:      Jonathan Corbet <[email protected]>
3756 L:      [email protected]
3757 T:      git git://linuxtv.org/media_tree.git
3758 S:      Maintained
3759 F:      Documentation/media/v4l-drivers/cafe_ccic*
3760 F:      drivers/media/platform/marvell-ccic/
3761
3762 CAIF NETWORK LAYER
3763 L:      [email protected]
3764 S:      Orphan
3765 F:      Documentation/networking/caif/
3766 F:      drivers/net/caif/
3767 F:      include/uapi/linux/caif/
3768 F:      include/net/caif/
3769 F:      net/caif/
3770
3771 CAKE QDISC
3772 M:      Toke Høiland-Jørgensen <[email protected]>
3773 L:      [email protected] (moderated for non-subscribers)
3774 S:      Maintained
3775 F:      net/sched/sch_cake.c
3776
3777 CAN NETWORK DRIVERS
3778 M:      Wolfgang Grandegger <[email protected]>
3779 M:      Marc Kleine-Budde <[email protected]>
3780 L:      [email protected]
3781 W:      https://github.com/linux-can
3782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3784 S:      Maintained
3785 F:      Documentation/devicetree/bindings/net/can/
3786 F:      drivers/net/can/
3787 F:      include/linux/can/dev.h
3788 F:      include/linux/can/led.h
3789 F:      include/linux/can/rx-offload.h
3790 F:      include/linux/can/platform/
3791 F:      include/uapi/linux/can/error.h
3792 F:      include/uapi/linux/can/netlink.h
3793 F:      include/uapi/linux/can/vxcan.h
3794
3795 CAN NETWORK LAYER
3796 M:      Oliver Hartkopp <[email protected]>
3797 M:      Marc Kleine-Budde <[email protected]>
3798 L:      [email protected]
3799 W:      https://github.com/linux-can
3800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3802 S:      Maintained
3803 F:      Documentation/networking/can.rst
3804 F:      net/can/
3805 F:      include/linux/can/core.h
3806 F:      include/linux/can/skb.h
3807 F:      include/net/netns/can.h
3808 F:      include/uapi/linux/can.h
3809 F:      include/uapi/linux/can/bcm.h
3810 F:      include/uapi/linux/can/raw.h
3811 F:      include/uapi/linux/can/gw.h
3812
3813 CAN-J1939 NETWORK LAYER
3814 M:      Robin van der Gracht <[email protected]>
3815 M:      Oleksij Rempel <[email protected]>
3816 R:      Pengutronix Kernel Team <[email protected]>
3817 L:      [email protected]
3818 S:      Maintained
3819 F:      Documentation/networking/j1939.rst
3820 F:      net/can/j1939/
3821 F:      include/uapi/linux/can/j1939.h
3822
3823 CAPABILITIES
3824 M:      Serge Hallyn <[email protected]>
3825 L:      [email protected]
3826 S:      Supported
3827 F:      include/linux/capability.h
3828 F:      include/uapi/linux/capability.h
3829 F:      security/commoncap.c
3830 F:      kernel/capability.c
3831
3832 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3833 M:      Kevin Tsai <[email protected]>
3834 S:      Maintained
3835 F:      drivers/iio/light/cm*
3836
3837 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3838 M:      Christian Lamparter <[email protected]>
3839 L:      [email protected]
3840 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3841 S:      Maintained
3842 F:      drivers/net/wireless/ath/carl9170/
3843
3844 CAVIUM I2C DRIVER
3845 M:      Robert Richter <[email protected]>
3846 W:      http://www.marvell.com
3847 S:      Supported
3848 F:      drivers/i2c/busses/i2c-octeon*
3849 F:      drivers/i2c/busses/i2c-thunderx*
3850
3851 CAVIUM LIQUIDIO NETWORK DRIVER
3852 M:      Derek Chickles <[email protected]>
3853 M:      Satanand Burla <[email protected]>
3854 M:      Felix Manlunas <[email protected]>
3855 L:      [email protected]
3856 W:      http://www.marvell.com
3857 S:      Supported
3858 F:      drivers/net/ethernet/cavium/liquidio/
3859
3860 CAVIUM MMC DRIVER
3861 M:      Robert Richter <[email protected]>
3862 W:      http://www.marvell.com
3863 S:      Supported
3864 F:      drivers/mmc/host/cavium*
3865
3866 CAVIUM OCTEON-TX CRYPTO DRIVER
3867 M:      George Cherian <[email protected]>
3868 L:      [email protected]
3869 W:      http://www.marvell.com
3870 S:      Supported
3871 F:      drivers/crypto/cavium/cpt/
3872
3873 CAVIUM THUNDERX2 ARM64 SOC
3874 M:      Robert Richter <[email protected]>
3875 L:      [email protected] (moderated for non-subscribers)
3876 S:      Maintained
3877 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3878 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3879
3880 CC2520 IEEE-802.15.4 RADIO DRIVER
3881 M:      Varka Bhadram <[email protected]>
3882 L:      [email protected]
3883 S:      Maintained
3884 F:      drivers/net/ieee802154/cc2520.c
3885 F:      include/linux/spi/cc2520.h
3886 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3887
3888 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3889 M:      Gilad Ben-Yossef <[email protected]>
3890 L:      [email protected]
3891 S:      Supported
3892 F:      drivers/crypto/ccree/
3893 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3894
3895 CEC FRAMEWORK
3896 M:      Hans Verkuil <[email protected]>
3897 L:      [email protected]
3898 T:      git git://linuxtv.org/media_tree.git
3899 W:      http://linuxtv.org
3900 S:      Supported
3901 F:      Documentation/media/kapi/cec-core.rst
3902 F:      Documentation/media/uapi/cec
3903 F:      drivers/media/cec/
3904 F:      drivers/media/rc/keymaps/rc-cec.c
3905 F:      include/media/cec.h
3906 F:      include/media/cec-notifier.h
3907 F:      include/uapi/linux/cec.h
3908 F:      include/uapi/linux/cec-funcs.h
3909 F:      Documentation/devicetree/bindings/media/cec.txt
3910 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3911
3912 CEC GPIO DRIVER
3913 M:      Hans Verkuil <[email protected]>
3914 L:      [email protected]
3915 T:      git git://linuxtv.org/media_tree.git
3916 W:      http://linuxtv.org
3917 S:      Supported
3918 F:      drivers/media/platform/cec-gpio/
3919 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3920
3921 CELL BROADBAND ENGINE ARCHITECTURE
3922 M:      Arnd Bergmann <[email protected]>
3923 L:      [email protected]
3924 W:      http://www.ibm.com/developerworks/power/cell/
3925 S:      Supported
3926 F:      arch/powerpc/include/asm/cell*.h
3927 F:      arch/powerpc/include/asm/spu*.h
3928 F:      arch/powerpc/include/uapi/asm/spu*.h
3929 F:      arch/powerpc/oprofile/*cell*
3930 F:      arch/powerpc/platforms/cell/
3931
3932 CEPH COMMON CODE (LIBCEPH)
3933 M:      Ilya Dryomov <[email protected]>
3934 M:      Jeff Layton <[email protected]>
3935 M:      Sage Weil <[email protected]>
3936 L:      [email protected]
3937 W:      http://ceph.com/
3938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3939 T:      git git://github.com/ceph/ceph-client.git
3940 S:      Supported
3941 F:      net/ceph/
3942 F:      include/linux/ceph/
3943 F:      include/linux/crush/
3944
3945 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3946 M:      Jeff Layton <[email protected]>
3947 M:      Sage Weil <[email protected]>
3948 M:      Ilya Dryomov <[email protected]>
3949 L:      [email protected]
3950 W:      http://ceph.com/
3951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3952 T:      git git://github.com/ceph/ceph-client.git
3953 S:      Supported
3954 F:      Documentation/filesystems/ceph.rst
3955 F:      fs/ceph/
3956
3957 CERTIFICATE HANDLING
3958 M:      David Howells <[email protected]>
3959 M:      David Woodhouse <[email protected]>
3960 L:      [email protected]
3961 S:      Maintained
3962 F:      Documentation/admin-guide/module-signing.rst
3963 F:      certs/
3964 F:      scripts/sign-file.c
3965 F:      scripts/extract-cert.c
3966
3967 CFAG12864B LCD DRIVER
3968 M:      Miguel Ojeda Sandonis <[email protected]>
3969 S:      Maintained
3970 F:      drivers/auxdisplay/cfag12864b.c
3971 F:      include/linux/cfag12864b.h
3972
3973 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3974 M:      Miguel Ojeda Sandonis <[email protected]>
3975 S:      Maintained
3976 F:      drivers/auxdisplay/cfag12864bfb.c
3977 F:      include/linux/cfag12864b.h
3978
3979 802.11 (including CFG80211/NL80211)
3980 M:      Johannes Berg <[email protected]>
3981 L:      [email protected]
3982 W:      http://wireless.kernel.org/
3983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3985 S:      Maintained
3986 F:      net/wireless/
3987 F:      include/uapi/linux/nl80211.h
3988 F:      include/linux/ieee80211.h
3989 F:      include/net/wext.h
3990 F:      include/net/cfg80211.h
3991 F:      include/net/iw_handler.h
3992 F:      include/net/ieee80211_radiotap.h
3993 F:      Documentation/driver-api/80211/cfg80211.rst
3994 F:      Documentation/networking/regulatory.txt
3995
3996 CHAR and MISC DRIVERS
3997 M:      Arnd Bergmann <[email protected]>
3998 M:      Greg Kroah-Hartman <[email protected]>
3999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4000 S:      Supported
4001 F:      drivers/char/
4002 F:      drivers/misc/
4003 F:      include/linux/miscdevice.h
4004
4005 CHECKPATCH
4006 M:      Andy Whitcroft <[email protected]>
4007 M:      Joe Perches <[email protected]>
4008 S:      Maintained
4009 F:      scripts/checkpatch.pl
4010
4011 CHINESE DOCUMENTATION
4012 M:      Harry Wei <[email protected]>
4013 M:      Alex Shi <[email protected]>
4014 L:      [email protected] (subscribers-only)
4015 S:      Maintained
4016 F:      Documentation/translations/zh_CN/
4017
4018 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4019 M:      Peter Chen <[email protected]>
4020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4021 L:      [email protected]
4022 S:      Maintained
4023 F:      drivers/usb/chipidea/
4024
4025 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4026 M:      Hans de Goede <[email protected]>
4027 L:      [email protected]
4028 S:      Maintained
4029 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4030 F:      drivers/input/touchscreen/chipone_icn8318.c
4031
4032 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4033 M:      Hans de Goede <[email protected]>
4034 L:      [email protected]
4035 S:      Maintained
4036 F:      drivers/input/touchscreen/chipone_icn8505.c
4037
4038 CHROME HARDWARE PLATFORM SUPPORT
4039 M:      Benson Leung <[email protected]>
4040 M:      Enric Balletbo i Serra <[email protected]>
4041 S:      Maintained
4042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4043 F:      drivers/platform/chrome/
4044
4045 CHROMEOS EC SUBDRIVERS
4046 M:      Benson Leung <[email protected]>
4047 M:      Enric Balletbo i Serra <[email protected]>
4048 R:      Guenter Roeck <[email protected]>
4049 S:      Maintained
4050 N:      cros_ec
4051 N:      cros-ec
4052 F:      drivers/power/supply/cros_usbpd-charger.c
4053
4054 CHROMEOS EC CODEC DRIVER
4055 M:      Cheng-Yi Chiang <[email protected]>
4056 S:      Maintained
4057 R:      Enric Balletbo i Serra <[email protected]>
4058 R:      Guenter Roeck <[email protected]>
4059 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4060 F:      sound/soc/codecs/cros_ec_codec.*
4061
4062 CIRRUS LOGIC AUDIO CODEC DRIVERS
4063 M:      James Schulman <[email protected]>
4064 M:      David Rhodes <[email protected]>
4065 L:      [email protected] (moderated for non-subscribers)
4066 S:      Maintained
4067 F:      sound/soc/codecs/cs*
4068
4069 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4070 M:      Hartley Sweeten <[email protected]>
4071 L:      [email protected]
4072 S:      Maintained
4073 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4074
4075 CIRRUS LOGIC LOCHNAGAR DRIVER
4076 M:      Charles Keepax <[email protected]>
4077 M:      Richard Fitzgerald <[email protected]>
4078 L:      [email protected]
4079 S:      Supported
4080 F:      drivers/clk/clk-lochnagar.c
4081 F:      drivers/hwmon/lochnagar-hwmon.c
4082 F:      drivers/mfd/lochnagar-i2c.c
4083 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4084 F:      drivers/regulator/lochnagar-regulator.c
4085 F:      sound/soc/codecs/lochnagar-sc.c
4086 F:      include/dt-bindings/clk/lochnagar.h
4087 F:      include/dt-bindings/pinctrl/lochnagar.h
4088 F:      include/linux/mfd/lochnagar*
4089 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
4090 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
4091 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
4092 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
4093 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
4094 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
4095 F:      Documentation/hwmon/lochnagar.rst
4096
4097 CISCO FCOE HBA DRIVER
4098 M:      Satish Kharat <[email protected]>
4099 M:      Sesidhar Baddela <[email protected]>
4100 M:      Karan Tilak Kumar <[email protected]>
4101 L:      [email protected]
4102 S:      Supported
4103 F:      drivers/scsi/fnic/
4104
4105 CISCO SCSI HBA DRIVER
4106 M:      Karan Tilak Kumar <[email protected]>
4107 M:      Sesidhar Baddela <[email protected]>
4108 L:      [email protected]
4109 S:      Supported
4110 F:      drivers/scsi/snic/
4111
4112 CISCO VIC ETHERNET NIC DRIVER
4113 M:      Christian Benvenuti <[email protected]>
4114 M:      Govindarajulu Varadarajan <[email protected]>
4115 S:      Supported
4116 F:      drivers/net/ethernet/cisco/enic/
4117
4118 CISCO VIC LOW LATENCY NIC DRIVER
4119 M:      Christian Benvenuti <[email protected]>
4120 M:      Nelson Escobar <[email protected]>
4121 M:      Parvi Kaustubhi <[email protected]>
4122 S:      Supported
4123 F:      drivers/infiniband/hw/usnic/
4124
4125 CIRRUS LOGIC MADERA CODEC DRIVERS
4126 M:      Charles Keepax <[email protected]>
4127 M:      Richard Fitzgerald <[email protected]>
4128 L:      [email protected] (moderated for non-subscribers)
4129 L:      [email protected]
4130 T:      git https://github.com/CirrusLogic/linux-drivers.git
4131 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4132 S:      Supported
4133 F:      Documentation/devicetree/bindings/mfd/madera.txt
4134 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4135 F:      Documentation/devicetree/bindings/sound/madera.txt
4136 F:      include/dt-bindings/sound/madera*
4137 F:      include/linux/irqchip/irq-madera*
4138 F:      include/linux/mfd/madera/*
4139 F:      include/sound/madera*
4140 F:      drivers/gpio/gpio-madera*
4141 F:      drivers/irqchip/irq-madera*
4142 F:      drivers/mfd/madera*
4143 F:      drivers/mfd/cs47l*
4144 F:      drivers/pinctrl/cirrus/*
4145 F:      sound/soc/codecs/cs47l*
4146 F:      sound/soc/codecs/madera*
4147
4148 CLANG-FORMAT FILE
4149 M:      Miguel Ojeda <[email protected]>
4150 S:      Maintained
4151 F:      .clang-format
4152
4153 CLANG/LLVM BUILD SUPPORT
4154 L:      [email protected]
4155 W:      https://clangbuiltlinux.github.io/
4156 B:      https://github.com/ClangBuiltLinux/linux/issues
4157 C:      irc://chat.freenode.net/clangbuiltlinux
4158 S:      Supported
4159 K:      \b(?i:clang|llvm)\b
4160 F:      Documentation/kbuild/llvm.rst
4161
4162 CLEANCACHE API
4163 M:      Konrad Rzeszutek Wilk <[email protected]>
4164 L:      [email protected]
4165 S:      Maintained
4166 F:      mm/cleancache.c
4167 F:      include/linux/cleancache.h
4168
4169 CLK API
4170 M:      Russell King <[email protected]>
4171 L:      [email protected]
4172 S:      Maintained
4173 F:      include/linux/clk.h
4174
4175 CLOCKSOURCE, CLOCKEVENT DRIVERS
4176 M:      Daniel Lezcano <[email protected]>
4177 M:      Thomas Gleixner <[email protected]>
4178 L:      [email protected]
4179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4180 S:      Supported
4181 F:      drivers/clocksource/
4182 F:      Documentation/devicetree/bindings/timer/
4183
4184 CMPC ACPI DRIVER
4185 M:      Thadeu Lima de Souza Cascardo <[email protected]>
4186 M:      Daniel Oliveira Nascimento <[email protected]>
4187 L:      [email protected]
4188 S:      Supported
4189 F:      drivers/platform/x86/classmate-laptop.c
4190
4191 COBALT MEDIA DRIVER
4192 M:      Hans Verkuil <[email protected]>
4193 L:      [email protected]
4194 T:      git git://linuxtv.org/media_tree.git
4195 W:      https://linuxtv.org
4196 S:      Supported
4197 F:      drivers/media/pci/cobalt/
4198
4199 COCCINELLE/Semantic Patches (SmPL)
4200 M:      Julia Lawall <[email protected]>
4201 M:      Gilles Muller <[email protected]>
4202 M:      Nicolas Palix <[email protected]>
4203 M:      Michal Marek <[email protected]>
4204 L:      [email protected] (moderated for non-subscribers)
4205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4206 W:      http://coccinelle.lip6.fr/
4207 S:      Supported
4208 F:      Documentation/dev-tools/coccinelle.rst
4209 F:      scripts/coccinelle/
4210 F:      scripts/coccicheck
4211
4212 CODA FILE SYSTEM
4213 M:      Jan Harkes <[email protected]>
4214 M:      [email protected]
4215 L:      [email protected]
4216 W:      http://www.coda.cs.cmu.edu/
4217 S:      Maintained
4218 F:      Documentation/filesystems/coda.txt
4219 F:      fs/coda/
4220 F:      include/linux/coda*.h
4221 F:      include/uapi/linux/coda*.h
4222
4223 CODA V4L2 MEM2MEM DRIVER
4224 M:      Philipp Zabel <[email protected]>
4225 L:      [email protected]
4226 S:      Maintained
4227 F:      Documentation/devicetree/bindings/media/coda.txt
4228 F:      drivers/media/platform/coda/
4229
4230 CODE OF CONDUCT
4231 M:      Greg Kroah-Hartman <[email protected]>
4232 S:      Supported
4233 F:      Documentation/process/code-of-conduct.rst
4234 F:      Documentation/process/code-of-conduct-interpretation.rst
4235
4236 COMMON CLK FRAMEWORK
4237 M:      Michael Turquette <[email protected]>
4238 M:      Stephen Boyd <[email protected]>
4239 L:      [email protected]
4240 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4242 S:      Maintained
4243 F:      Documentation/devicetree/bindings/clock/
4244 F:      drivers/clk/
4245 X:      drivers/clk/clkdev.c
4246 F:      include/linux/clk-pr*
4247 F:      include/linux/clk/
4248 F:      include/linux/of_clk.h
4249
4250 COMMON INTERNET FILE SYSTEM (CIFS)
4251 M:      Steve French <[email protected]>
4252 L:      [email protected]
4253 L:      [email protected] (moderated for non-subscribers)
4254 W:      http://linux-cifs.samba.org/
4255 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4256 S:      Supported
4257 F:      Documentation/admin-guide/cifs/
4258 F:      fs/cifs/
4259
4260 COMPACTPCI HOTPLUG CORE
4261 M:      Scott Murray <[email protected]>
4262 L:      [email protected]
4263 S:      Maintained
4264 F:      drivers/pci/hotplug/cpci_hotplug*
4265
4266 COMPACTPCI HOTPLUG GENERIC DRIVER
4267 M:      Scott Murray <[email protected]>
4268 L:      [email protected]
4269 S:      Maintained
4270 F:      drivers/pci/hotplug/cpcihp_generic.c
4271
4272 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4273 M:      Scott Murray <[email protected]>
4274 L:      [email protected]
4275 S:      Maintained
4276 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4277
4278 COMPAL LAPTOP SUPPORT
4279 M:      Cezary Jackiewicz <[email protected]>
4280 L:      [email protected]
4281 S:      Maintained
4282 F:      drivers/platform/x86/compal-laptop.c
4283
4284 COMPILER ATTRIBUTES
4285 M:      Miguel Ojeda <[email protected]>
4286 S:      Maintained
4287 F:      include/linux/compiler_attributes.h
4288
4289 CONEXANT ACCESSRUNNER USB DRIVER
4290 L:      [email protected]
4291 W:      http://accessrunner.sourceforge.net/
4292 S:      Orphan
4293 F:      drivers/usb/atm/cxacru.c
4294
4295 CONFIGFS
4296 M:      Joel Becker <[email protected]>
4297 M:      Christoph Hellwig <[email protected]>
4298 T:      git git://git.infradead.org/users/hch/configfs.git
4299 S:      Supported
4300 F:      fs/configfs/
4301 F:      include/linux/configfs.h
4302
4303 CONNECTOR
4304 M:      Evgeniy Polyakov <[email protected]>
4305 L:      [email protected]
4306 S:      Maintained
4307 F:      drivers/connector/
4308
4309 CONTROL GROUP (CGROUP)
4310 M:      Tejun Heo <[email protected]>
4311 M:      Li Zefan <[email protected]>
4312 M:      Johannes Weiner <[email protected]>
4313 L:      [email protected]
4314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4315 S:      Maintained
4316 F:      Documentation/admin-guide/cgroup-v2.rst
4317 F:      Documentation/admin-guide/cgroup-v1/
4318 F:      include/linux/cgroup*
4319 F:      kernel/cgroup/
4320
4321 CONTROL GROUP - CPUSET
4322 M:      Li Zefan <[email protected]>
4323 L:      [email protected]
4324 W:      http://www.bullopensource.org/cpuset/
4325 W:      http://oss.sgi.com/projects/cpusets/
4326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4327 S:      Maintained
4328 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4329 F:      include/linux/cpuset.h
4330 F:      kernel/cgroup/cpuset.c
4331
4332 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4333 M:      Johannes Weiner <[email protected]>
4334 M:      Michal Hocko <[email protected]>
4335 M:      Vladimir Davydov <[email protected]>
4336 L:      [email protected]
4337 L:      [email protected]
4338 S:      Maintained
4339 F:      mm/memcontrol.c
4340 F:      mm/swap_cgroup.c
4341
4342 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4343 M:      Tejun Heo <[email protected]>
4344 M:      Jens Axboe <[email protected]>
4345 L:      [email protected]
4346 L:      [email protected]
4347 T:      git git://git.kernel.dk/linux-block
4348 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4349 F:      block/blk-cgroup.c
4350 F:      include/linux/blk-cgroup.h
4351 F:      block/blk-throttle.c
4352 F:      block/blk-iolatency.c
4353 F:      block/bfq-cgroup.c
4354
4355 CORETEMP HARDWARE MONITORING DRIVER
4356 M:      Fenghua Yu <[email protected]>
4357 L:      [email protected]
4358 S:      Maintained
4359 F:      Documentation/hwmon/coretemp.rst
4360 F:      drivers/hwmon/coretemp.c
4361
4362 COSA/SRP SYNC SERIAL DRIVER
4363 M:      Jan "Yenya" Kasprzak <[email protected]>
4364 W:      http://www.fi.muni.cz/~kas/cosa/
4365 S:      Maintained
4366 F:      drivers/net/wan/cosa*
4367
4368 COUNTER SUBSYSTEM
4369 M:      William Breathitt Gray <[email protected]>
4370 L:      [email protected]
4371 S:      Maintained
4372 F:      Documentation/ABI/testing/sysfs-bus-counter*
4373 F:      Documentation/driver-api/generic-counter.rst
4374 F:      drivers/counter/
4375 F:      include/linux/counter.h
4376 F:      include/linux/counter_enum.h
4377
4378 CPMAC ETHERNET DRIVER
4379 M:      Florian Fainelli <[email protected]>
4380 L:      [email protected]
4381 S:      Maintained
4382 F:      drivers/net/ethernet/ti/cpmac.c
4383
4384 CPU FREQUENCY SCALING FRAMEWORK
4385 M:      "Rafael J. Wysocki" <[email protected]>
4386 M:      Viresh Kumar <[email protected]>
4387 L:      [email protected]
4388 S:      Maintained
4389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4391 B:      https://bugzilla.kernel.org
4392 F:      Documentation/admin-guide/pm/cpufreq.rst
4393 F:      Documentation/admin-guide/pm/intel_pstate.rst
4394 F:      Documentation/cpu-freq/
4395 F:      Documentation/devicetree/bindings/cpufreq/
4396 F:      drivers/cpufreq/
4397 F:      kernel/sched/cpufreq*.c
4398 F:      include/linux/cpufreq.h
4399 F:      include/linux/sched/cpufreq.h
4400 F:      tools/testing/selftests/cpufreq/
4401
4402 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4403 M:      Viresh Kumar <[email protected]>
4404 M:      Sudeep Holla <[email protected]>
4405 L:      [email protected]
4406 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4407 S:      Maintained
4408 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4409
4410 CPU POWER MONITORING SUBSYSTEM
4411 M:      Thomas Renninger <[email protected]>
4412 M:      Shuah Khan <[email protected]>
4413 M:      Shuah Khan <[email protected]>
4414 L:      [email protected]
4415 S:      Maintained
4416 F:      tools/power/cpupower/
4417
4418 CPUID/MSR DRIVER
4419 M:      "H. Peter Anvin" <[email protected]>
4420 S:      Maintained
4421 F:      arch/x86/kernel/cpuid.c
4422 F:      arch/x86/kernel/msr.c
4423
4424 CPUIDLE DRIVER - ARM BIG LITTLE
4425 M:      Lorenzo Pieralisi <[email protected]>
4426 M:      Daniel Lezcano <[email protected]>
4427 L:      [email protected]
4428 L:      [email protected]
4429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4430 S:      Maintained
4431 F:      drivers/cpuidle/cpuidle-big_little.c
4432
4433 CPUIDLE DRIVER - ARM EXYNOS
4434 M:      Bartlomiej Zolnierkiewicz <[email protected]>
4435 M:      Daniel Lezcano <[email protected]>
4436 M:      Kukjin Kim <[email protected]>
4437 L:      [email protected]
4438 L:      [email protected]
4439 S:      Supported
4440 F:      drivers/cpuidle/cpuidle-exynos.c
4441 F:      arch/arm/mach-exynos/pm.c
4442
4443 CPUIDLE DRIVER - ARM PSCI
4444 M:      Lorenzo Pieralisi <[email protected]>
4445 M:      Sudeep Holla <[email protected]>
4446 L:      [email protected]
4447 L:      [email protected]
4448 S:      Supported
4449 F:      drivers/cpuidle/cpuidle-psci.c
4450
4451 CPU IDLE TIME MANAGEMENT FRAMEWORK
4452 M:      "Rafael J. Wysocki" <[email protected]>
4453 M:      Daniel Lezcano <[email protected]>
4454 L:      [email protected]
4455 S:      Maintained
4456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4457 B:      https://bugzilla.kernel.org
4458 F:      Documentation/admin-guide/pm/cpuidle.rst
4459 F:      Documentation/driver-api/pm/cpuidle.rst
4460 F:      drivers/cpuidle/*
4461 F:      include/linux/cpuidle.h
4462
4463 CRAMFS FILESYSTEM
4464 M:      Nicolas Pitre <[email protected]>
4465 S:      Maintained
4466 F:      Documentation/filesystems/cramfs.rst
4467 F:      fs/cramfs/
4468
4469 CREATIVE SB0540
4470 M:      Bastien Nocera <[email protected]>
4471 L:      [email protected]
4472 S:      Maintained
4473 F:      drivers/hid/hid-creative-sb0540.c
4474
4475 CRYPTO API
4476 M:      Herbert Xu <[email protected]>
4477 M:      "David S. Miller" <[email protected]>
4478 L:      [email protected]
4479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4481 S:      Maintained
4482 F:      Documentation/crypto/
4483 F:      Documentation/devicetree/bindings/crypto/
4484 F:      arch/*/crypto/
4485 F:      crypto/
4486 F:      drivers/crypto/
4487 F:      include/crypto/
4488 F:      include/linux/crypto*
4489 F:      lib/crypto/
4490
4491 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4492 M:      Neil Horman <[email protected]>
4493 L:      [email protected]
4494 S:      Maintained
4495 F:      crypto/ansi_cprng.c
4496 F:      crypto/rng.c
4497
4498 CS3308 MEDIA DRIVER
4499 M:      Hans Verkuil <[email protected]>
4500 L:      [email protected]
4501 T:      git git://linuxtv.org/media_tree.git
4502 W:      http://linuxtv.org
4503 S:      Odd Fixes
4504 F:      drivers/media/i2c/cs3308.c
4505
4506 CS5535 Audio ALSA driver
4507 M:      Jaya Kumar <[email protected]>
4508 S:      Maintained
4509 F:      sound/pci/cs5535audio/
4510
4511 CSI DRIVERS FOR ALLWINNER V3s
4512 M:      Yong Deng <[email protected]>
4513 L:      [email protected]
4514 T:      git git://linuxtv.org/media_tree.git
4515 S:      Maintained
4516 F:      drivers/media/platform/sunxi/sun6i-csi/
4517 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4518
4519 CW1200 WLAN driver
4520 M:      Solomon Peachy <[email protected]>
4521 S:      Maintained
4522 F:      drivers/net/wireless/st/cw1200/
4523
4524 CX18 VIDEO4LINUX DRIVER
4525 M:      Andy Walls <[email protected]>
4526 L:      [email protected]
4527 T:      git git://linuxtv.org/media_tree.git
4528 W:      https://linuxtv.org
4529 S:      Maintained
4530 F:      drivers/media/pci/cx18/
4531 F:      include/uapi/linux/ivtv*
4532
4533 CX2341X MPEG ENCODER HELPER MODULE
4534 M:      Hans Verkuil <[email protected]>
4535 L:      [email protected]
4536 T:      git git://linuxtv.org/media_tree.git
4537 W:      https://linuxtv.org
4538 S:      Maintained
4539 F:      drivers/media/common/cx2341x*
4540 F:      include/media/drv-intf/cx2341x.h
4541
4542 CX24120 MEDIA DRIVER
4543 M:      Jemma Denson <[email protected]>
4544 M:      Patrick Boettcher <[email protected]>
4545 L:      [email protected]
4546 W:      https://linuxtv.org
4547 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4548 S:      Maintained
4549 F:      drivers/media/dvb-frontends/cx24120*
4550
4551 CX88 VIDEO4LINUX DRIVER
4552 M:      Mauro Carvalho Chehab <[email protected]>
4553 L:      [email protected]
4554 W:      https://linuxtv.org
4555 T:      git git://linuxtv.org/media_tree.git
4556 S:      Odd fixes
4557 F:      Documentation/media/v4l-drivers/cx88*
4558 F:      drivers/media/pci/cx88/
4559
4560 CXD2820R MEDIA DRIVER
4561 M:      Antti Palosaari <[email protected]>
4562 L:      [email protected]
4563 W:      https://linuxtv.org
4564 W:      http://palosaari.fi/linux/
4565 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4566 T:      git git://linuxtv.org/anttip/media_tree.git
4567 S:      Maintained
4568 F:      drivers/media/dvb-frontends/cxd2820r*
4569
4570 CXGB3 ETHERNET DRIVER (CXGB3)
4571 M:      Vishal Kulkarni <[email protected]>
4572 L:      [email protected]
4573 W:      http://www.chelsio.com
4574 S:      Supported
4575 F:      drivers/net/ethernet/chelsio/cxgb3/
4576
4577 CXGB3 ISCSI DRIVER (CXGB3I)
4578 M:      Karen Xie <[email protected]>
4579 L:      [email protected]
4580 W:      http://www.chelsio.com
4581 S:      Supported
4582 F:      drivers/scsi/cxgbi/cxgb3i
4583
4584 CXGB4 CRYPTO DRIVER (chcr)
4585 M:      Ayush Sawal <[email protected]>
4586 M:      Vinay Kumar Yadav <[email protected]>
4587 M:      Rohit Maheshwari <[email protected]>
4588 L:      [email protected]
4589 W:      http://www.chelsio.com
4590 S:      Supported
4591 F:      drivers/crypto/chelsio
4592
4593 CXGB4 ETHERNET DRIVER (CXGB4)
4594 M:      Vishal Kulkarni <[email protected]>
4595 L:      [email protected]
4596 W:      http://www.chelsio.com
4597 S:      Supported
4598 F:      drivers/net/ethernet/chelsio/cxgb4/
4599
4600 CXGB4 ISCSI DRIVER (CXGB4I)
4601 M:      Karen Xie <[email protected]>
4602 L:      [email protected]
4603 W:      http://www.chelsio.com
4604 S:      Supported
4605 F:      drivers/scsi/cxgbi/cxgb4i
4606
4607 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4608 M:      Potnuri Bharat Teja <[email protected]>
4609 L:      [email protected]
4610 W:      http://www.openfabrics.org
4611 S:      Supported
4612 F:      drivers/infiniband/hw/cxgb4/
4613 F:      include/uapi/rdma/cxgb4-abi.h
4614
4615 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4616 M:      Vishal Kulkarni <[email protected]>
4617 L:      [email protected]
4618 W:      http://www.chelsio.com
4619 S:      Supported
4620 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4621
4622 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4623 M:      Frederic Barrat <[email protected]>
4624 M:      Andrew Donnellan <[email protected]>
4625 L:      [email protected]
4626 S:      Supported
4627 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4628 F:      drivers/misc/cxl/
4629 F:      include/misc/cxl*
4630 F:      include/uapi/misc/cxl.h
4631 F:      Documentation/powerpc/cxl.rst
4632 F:      Documentation/ABI/testing/sysfs-class-cxl
4633
4634 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4635 M:      Manoj N. Kumar <[email protected]>
4636 M:      Matthew R. Ochs <[email protected]>
4637 M:      Uma Krishnan <[email protected]>
4638 L:      [email protected]
4639 S:      Supported
4640 F:      drivers/scsi/cxlflash/
4641 F:      include/uapi/scsi/cxlflash_ioctl.h
4642 F:      Documentation/powerpc/cxlflash.rst
4643
4644 CYBERPRO FB DRIVER
4645 M:      Russell King <[email protected]>
4646 L:      [email protected] (moderated for non-subscribers)
4647 W:      http://www.armlinux.org.uk/
4648 S:      Maintained
4649 F:      drivers/video/fbdev/cyber2000fb.*
4650
4651 CYCLADES ASYNC MUX DRIVER
4652 W:      http://www.cyclades.com/
4653 S:      Orphan
4654 F:      drivers/tty/cyclades.c
4655 F:      include/linux/cyclades.h
4656 F:      include/uapi/linux/cyclades.h
4657
4658 CYCLADES PC300 DRIVER
4659 W:      http://www.cyclades.com/
4660 S:      Orphan
4661 F:      drivers/net/wan/pc300*
4662
4663 CYPRESS_FIRMWARE MEDIA DRIVER
4664 M:      Antti Palosaari <[email protected]>
4665 L:      [email protected]
4666 W:      https://linuxtv.org
4667 W:      http://palosaari.fi/linux/
4668 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4669 T:      git git://linuxtv.org/anttip/media_tree.git
4670 S:      Maintained
4671 F:      drivers/media/common/cypress_firmware*
4672
4673 CYTTSP TOUCHSCREEN DRIVER
4674 M:      Ferruh Yigit <[email protected]>
4675 L:      [email protected]
4676 S:      Supported
4677 F:      drivers/input/touchscreen/cyttsp*
4678 F:      include/linux/input/cyttsp.h
4679
4680 D-LINK DIR-685 TOUCHKEYS DRIVER
4681 M:      Linus Walleij <[email protected]>
4682 L:      [email protected]
4683 S:      Supported
4684 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4685
4686 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4687 M:      Joshua Kinard <[email protected]>
4688 S:      Maintained
4689 F:      drivers/rtc/rtc-ds1685.c
4690 F:      include/linux/rtc/ds1685.h
4691
4692 DAMA SLAVE for AX.25
4693 M:      Joerg Reuter <[email protected]>
4694 W:      http://yaina.de/jreuter/
4695 W:      http://www.qsl.net/dl1bke/
4696 L:      [email protected]
4697 S:      Maintained
4698 F:      net/ax25/af_ax25.c
4699 F:      net/ax25/ax25_dev.c
4700 F:      net/ax25/ax25_ds_*
4701 F:      net/ax25/ax25_in.c
4702 F:      net/ax25/ax25_out.c
4703 F:      net/ax25/ax25_timer.c
4704 F:      net/ax25/sysctl_net_ax25.c
4705
4706 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4707 L:      [email protected]
4708 S:      Orphan
4709 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4710 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4711
4712 DC390/AM53C974 SCSI driver
4713 M:      Hannes Reinecke <[email protected]>
4714 L:      [email protected]
4715 S:      Maintained
4716 F:      drivers/scsi/am53c974.c
4717
4718 DC395x SCSI driver
4719 M:      Oliver Neukum <[email protected]>
4720 M:      Ali Akcaagac <[email protected]>
4721 M:      Jamie Lenehan <[email protected]>
4722 L:      [email protected]
4723 W:      http://twibble.org/dist/dc395x/
4724 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4725 S:      Maintained
4726 F:      Documentation/scsi/dc395x.rst
4727 F:      drivers/scsi/dc395x.*
4728
4729 DCCP PROTOCOL
4730 M:      Gerrit Renker <[email protected]>
4731 L:      [email protected]
4732 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4733 S:      Maintained
4734 F:      include/linux/dccp.h
4735 F:      include/uapi/linux/dccp.h
4736 F:      include/linux/tfrc.h
4737 F:      net/dccp/
4738
4739 DECnet NETWORK LAYER
4740 W:      http://linux-decnet.sourceforge.net
4741 L:      [email protected]
4742 S:      Orphan
4743 F:      Documentation/networking/decnet.txt
4744 F:      net/decnet/
4745
4746 DECSTATION PLATFORM SUPPORT
4747 M:      "Maciej W. Rozycki" <[email protected]>
4748 L:      [email protected]
4749 W:      http://www.linux-mips.org/wiki/DECstation
4750 S:      Maintained
4751 F:      arch/mips/dec/
4752 F:      arch/mips/include/asm/dec/
4753 F:      arch/mips/include/asm/mach-dec/
4754
4755 DEFXX FDDI NETWORK DRIVER
4756 M:      "Maciej W. Rozycki" <[email protected]>
4757 S:      Maintained
4758 F:      drivers/net/fddi/defxx.*
4759
4760 DEINTERLACE DRIVERS FOR ALLWINNER H3
4761 M:      Jernej Skrabec <[email protected]>
4762 L:      [email protected]
4763 T:      git git://linuxtv.org/media_tree.git
4764 S:      Maintained
4765 F:      drivers/media/platform/sunxi/sun8i-di/
4766 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4767
4768 DEFZA FDDI NETWORK DRIVER
4769 M:      "Maciej W. Rozycki" <[email protected]>
4770 S:      Maintained
4771 F:      drivers/net/fddi/defza.*
4772
4773 DELL LAPTOP DRIVER
4774 M:      Matthew Garrett <[email protected]>
4775 M:      Pali Rohár <[email protected]>
4776 L:      [email protected]
4777 S:      Maintained
4778 F:      drivers/platform/x86/dell-laptop.c
4779
4780 DELL LAPTOP FREEFALL DRIVER
4781 M:      Pali Rohár <[email protected]>
4782 S:      Maintained
4783 F:      drivers/platform/x86/dell-smo8800.c
4784
4785 DELL LAPTOP RBTN DRIVER
4786 M:      Pali Rohár <[email protected]>
4787 S:      Maintained
4788 F:      drivers/platform/x86/dell-rbtn.*
4789
4790 DELL LAPTOP SMM DRIVER
4791 M:      Pali Rohár <[email protected]>
4792 S:      Maintained
4793 F:      drivers/hwmon/dell-smm-hwmon.c
4794 F:      include/uapi/linux/i8k.h
4795
4796 DELL REMOTE BIOS UPDATE DRIVER
4797 M:      Stuart Hayes <[email protected]>
4798 L:      [email protected]
4799 S:      Maintained
4800 F:      drivers/platform/x86/dell_rbu.c
4801
4802 DELL SMBIOS DRIVER
4803 M:      Pali Rohár <[email protected]>
4804 M:      Mario Limonciello <[email protected]>
4805 L:      [email protected]
4806 S:      Maintained
4807 F:      drivers/platform/x86/dell-smbios.*
4808
4809 DELL SMBIOS SMM DRIVER
4810 M:      Mario Limonciello <[email protected]>
4811 L:      [email protected]
4812 S:      Maintained
4813 F:      drivers/platform/x86/dell-smbios-smm.c
4814
4815 DELL SMBIOS WMI DRIVER
4816 M:      Mario Limonciello <[email protected]>
4817 L:      [email protected]
4818 S:      Maintained
4819 F:      drivers/platform/x86/dell-smbios-wmi.c
4820 F:      tools/wmi/dell-smbios-example.c
4821
4822 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4823 M:      Stuart Hayes <[email protected]>
4824 L:      [email protected]
4825 S:      Maintained
4826 F:      Documentation/driver-api/dcdbas.rst
4827 F:      drivers/platform/x86/dcdbas.*
4828
4829 DELL WMI DESCRIPTOR DRIVER
4830 M:      Mario Limonciello <[email protected]>
4831 S:      Maintained
4832 F:      drivers/platform/x86/dell-wmi-descriptor.c
4833
4834 DELL WMI NOTIFICATIONS DRIVER
4835 M:      Matthew Garrett <[email protected]>
4836 M:      Pali Rohár <[email protected]>
4837 S:      Maintained
4838 F:      drivers/platform/x86/dell-wmi.c
4839
4840 DELTA ST MEDIA DRIVER
4841 M:      Hugues Fruchet <[email protected]>
4842 L:      [email protected]
4843 T:      git git://linuxtv.org/media_tree.git
4844 W:      https://linuxtv.org
4845 S:      Supported
4846 F:      drivers/media/platform/sti/delta
4847
4848 DENALI NAND DRIVER
4849 M:      Masahiro Yamada <[email protected]>
4850 L:      [email protected]
4851 S:      Supported
4852 F:      drivers/mtd/nand/raw/denali*
4853
4854 DESIGNWARE EDMA CORE IP DRIVER
4855 M:      Gustavo Pimentel <[email protected]>
4856 L:      [email protected]
4857 S:      Maintained
4858 F:      drivers/dma/dw-edma/
4859 F:      include/linux/dma/edma.h
4860
4861 DESIGNWARE USB2 DRD IP DRIVER
4862 M:      Minas Harutyunyan <[email protected]>
4863 L:      [email protected]
4864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4865 S:      Maintained
4866 F:      drivers/usb/dwc2/
4867
4868 DESIGNWARE USB3 DRD IP DRIVER
4869 M:      Felipe Balbi <[email protected]>
4870 L:      [email protected]
4871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4872 S:      Maintained
4873 F:      drivers/usb/dwc3/
4874
4875 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4876 M:      Andreas Klinger <[email protected]>
4877 L:      [email protected]
4878 S:      Maintained
4879 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4880 F:      drivers/iio/proximity/srf*.c
4881
4882 DEVICE COREDUMP (DEV_COREDUMP)
4883 M:      Johannes Berg <[email protected]>
4884 L:      [email protected]
4885 S:      Maintained
4886 F:      drivers/base/devcoredump.c
4887 F:      include/linux/devcoredump.h
4888
4889 DEVICE FREQUENCY (DEVFREQ)
4890 M:      MyungJoo Ham <[email protected]>
4891 M:      Kyungmin Park <[email protected]>
4892 M:      Chanwoo Choi <[email protected]>
4893 L:      [email protected]
4894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4895 S:      Maintained
4896 F:      drivers/devfreq/
4897 F:      include/linux/devfreq.h
4898 F:      Documentation/devicetree/bindings/devfreq/
4899 F:      include/trace/events/devfreq.h
4900
4901 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4902 M:      Chanwoo Choi <[email protected]>
4903 L:      [email protected]
4904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4905 S:      Supported
4906 F:      drivers/devfreq/event/
4907 F:      drivers/devfreq/devfreq-event.c
4908 F:      include/dt-bindings/pmu/exynos_ppmu.h
4909 F:      include/linux/devfreq-event.h
4910 F:      Documentation/devicetree/bindings/devfreq/event/
4911
4912 DEVICE NUMBER REGISTRY
4913 M:      Torben Mathiasen <[email protected]>
4914 W:      http://lanana.org/docs/device-list/index.html
4915 S:      Maintained
4916
4917 DEVICE-MAPPER  (LVM)
4918 M:      Alasdair Kergon <[email protected]>
4919 M:      Mike Snitzer <[email protected]>
4920 M:      [email protected]
4921 L:      [email protected]
4922 W:      http://sources.redhat.com/dm
4923 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4925 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4926 S:      Maintained
4927 F:      Documentation/admin-guide/device-mapper/
4928 F:      drivers/md/Makefile
4929 F:      drivers/md/Kconfig
4930 F:      drivers/md/dm*
4931 F:      drivers/md/persistent-data/
4932 F:      include/linux/device-mapper.h
4933 F:      include/linux/dm-*.h
4934 F:      include/uapi/linux/dm-*.h
4935
4936 DEVLINK
4937 M:      Jiri Pirko <[email protected]>
4938 L:      [email protected]
4939 S:      Supported
4940 F:      net/core/devlink.c
4941 F:      include/net/devlink.h
4942 F:      include/uapi/linux/devlink.h
4943 F:      Documentation/networking/devlink
4944
4945 DIALOG SEMICONDUCTOR DRIVERS
4946 M:      Support Opensource <[email protected]>
4947 W:      http://www.dialog-semiconductor.com/products
4948 S:      Supported
4949 F:      Documentation/hwmon/da90??.rst
4950 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4951 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4952 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4953 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4954 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4955 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4956 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4957 F:      drivers/gpio/gpio-da90??.c
4958 F:      drivers/hwmon/da90??-hwmon.c
4959 F:      drivers/iio/adc/da91??-*.c
4960 F:      drivers/input/misc/da90??_onkey.c
4961 F:      drivers/input/touchscreen/da9052_tsi.c
4962 F:      drivers/leds/leds-da90??.c
4963 F:      drivers/mfd/da903x.c
4964 F:      drivers/mfd/da90??-*.c
4965 F:      drivers/mfd/da91??-*.c
4966 F:      drivers/pinctrl/pinctrl-da90??.c
4967 F:      drivers/power/supply/da9052-battery.c
4968 F:      drivers/power/supply/da91??-*.c
4969 F:      drivers/regulator/da903x.c
4970 F:      drivers/regulator/da9???-regulator.[ch]
4971 F:      drivers/regulator/slg51000-regulator.[ch]
4972 F:      drivers/thermal/da90??-thermal.c
4973 F:      drivers/rtc/rtc-da90??.c
4974 F:      drivers/video/backlight/da90??_bl.c
4975 F:      drivers/watchdog/da90??_wdt.c
4976 F:      include/linux/mfd/da903x.h
4977 F:      include/linux/mfd/da9052/
4978 F:      include/linux/mfd/da9055/
4979 F:      include/linux/mfd/da9062/
4980 F:      include/linux/mfd/da9063/
4981 F:      include/linux/mfd/da9150/
4982 F:      include/linux/regulator/da9211.h
4983 F:      include/sound/da[79]*.h
4984 F:      sound/soc/codecs/da[79]*.[ch]
4985
4986 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4987 M:      William Breathitt Gray <[email protected]>
4988 L:      [email protected]
4989 S:      Maintained
4990 F:      drivers/gpio/gpio-gpio-mm.c
4991
4992 DIOLAN U2C-12 I2C DRIVER
4993 M:      Guenter Roeck <[email protected]>
4994 L:      [email protected]
4995 S:      Maintained
4996 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4997
4998 FILESYSTEM DIRECT ACCESS (DAX)
4999 M:      Dan Williams <[email protected]>
5000 R:      Matthew Wilcox <[email protected]>
5001 R:      Jan Kara <[email protected]>
5002 L:      [email protected]
5003 L:      [email protected]
5004 S:      Supported
5005 F:      fs/dax.c
5006 F:      include/linux/dax.h
5007 F:      include/trace/events/fs_dax.h
5008
5009 DEVICE DIRECT ACCESS (DAX)
5010 M:      Dan Williams <[email protected]>
5011 M:      Vishal Verma <[email protected]>
5012 M:      Dave Jiang <[email protected]>
5013 L:      [email protected]
5014 S:      Supported
5015 F:      drivers/dax/
5016
5017 DIRECTORY NOTIFICATION (DNOTIFY)
5018 M:      Jan Kara <[email protected]>
5019 R:      Amir Goldstein <[email protected]>
5020 L:      [email protected]
5021 S:      Maintained
5022 F:      Documentation/filesystems/dnotify.txt
5023 F:      fs/notify/dnotify/
5024 F:      include/linux/dnotify.h
5025
5026 DISK GEOMETRY AND PARTITION HANDLING
5027 M:      Andries Brouwer <[email protected]>
5028 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5029 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5030 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5031 S:      Maintained
5032
5033 DISKQUOTA
5034 M:      Jan Kara <[email protected]>
5035 S:      Maintained
5036 F:      Documentation/filesystems/quota.txt
5037 F:      fs/quota/
5038 F:      include/linux/quota*.h
5039 F:      include/uapi/linux/quota*.h
5040
5041 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5042 M:      Bernie Thompson <[email protected]>
5043 L:      [email protected]
5044 S:      Maintained
5045 W:      http://plugable.com/category/projects/udlfb/
5046 F:      drivers/video/fbdev/udlfb.c
5047 F:      include/video/udlfb.h
5048 F:      Documentation/fb/udlfb.rst
5049
5050 DISTRIBUTED LOCK MANAGER (DLM)
5051 M:      Christine Caulfield <[email protected]>
5052 M:      David Teigland <[email protected]>
5053 L:      [email protected]
5054 W:      http://sources.redhat.com/cluster/
5055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5056 S:      Supported
5057 F:      fs/dlm/
5058
5059 DMA BUFFER SHARING FRAMEWORK
5060 M:      Sumit Semwal <[email protected]>
5061 S:      Maintained
5062 L:      [email protected]
5063 L:      [email protected]
5064 L:      [email protected] (moderated for non-subscribers)
5065 F:      drivers/dma-buf/
5066 F:      include/linux/dma-buf*
5067 F:      include/linux/dma-resv.h
5068 F:      include/linux/*fence.h
5069 F:      Documentation/driver-api/dma-buf.rst
5070 K:      dma_(buf|fence|resv)
5071 T:      git git://anongit.freedesktop.org/drm/drm-misc
5072
5073 DMA-BUF HEAPS FRAMEWORK
5074 M:      Sumit Semwal <[email protected]>
5075 R:      Andrew F. Davis <[email protected]>
5076 R:      Benjamin Gaignard <[email protected]>
5077 R:      Liam Mark <[email protected]>
5078 R:      Laura Abbott <[email protected]>
5079 R:      Brian Starkey <[email protected]>
5080 R:      John Stultz <[email protected]>
5081 S:      Maintained
5082 L:      [email protected]
5083 L:      [email protected]
5084 L:      [email protected] (moderated for non-subscribers)
5085 F:      include/uapi/linux/dma-heap.h
5086 F:      include/linux/dma-heap.h
5087 F:      drivers/dma-buf/dma-heap.c
5088 F:      drivers/dma-buf/heaps/*
5089 T:      git git://anongit.freedesktop.org/drm/drm-misc
5090
5091 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5092 M:      Vinod Koul <[email protected]>
5093 L:      [email protected]
5094 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5095 S:      Maintained
5096 F:      drivers/dma/
5097 F:      include/linux/dmaengine.h
5098 F:      include/linux/of_dma.h
5099 F:      Documentation/devicetree/bindings/dma/
5100 F:      Documentation/driver-api/dmaengine/
5101 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
5102
5103 DMA MAPPING HELPERS
5104 M:      Christoph Hellwig <[email protected]>
5105 M:      Marek Szyprowski <[email protected]>
5106 R:      Robin Murphy <[email protected]>
5107 L:      [email protected]
5108 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5109 W:      http://git.infradead.org/users/hch/dma-mapping.git
5110 S:      Supported
5111 F:      kernel/dma/
5112 F:      include/asm-generic/dma-mapping.h
5113 F:      include/linux/dma-direct.h
5114 F:      include/linux/dma-mapping.h
5115 F:      include/linux/dma-noncoherent.h
5116
5117 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5118 M:      Lukasz Luba <[email protected]>
5119 L:      [email protected]
5120 L:      [email protected]
5121 S:      Maintained
5122 F:      drivers/memory/samsung/exynos5422-dmc.c
5123 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5124
5125 DME1737 HARDWARE MONITOR DRIVER
5126 M:      Juerg Haefliger <[email protected]>
5127 L:      [email protected]
5128 S:      Maintained
5129 F:      Documentation/hwmon/dme1737.rst
5130 F:      drivers/hwmon/dme1737.c
5131
5132 DMI/SMBIOS SUPPORT
5133 M:      Jean Delvare <[email protected]>
5134 S:      Maintained
5135 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5136 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5137 F:      drivers/firmware/dmi-id.c
5138 F:      drivers/firmware/dmi_scan.c
5139 F:      include/linux/dmi.h
5140
5141 DOCUMENTATION
5142 M:      Jonathan Corbet <[email protected]>
5143 L:      [email protected]
5144 S:      Maintained
5145 F:      Documentation/
5146 F:      scripts/documentation-file-ref-check
5147 F:      scripts/kernel-doc
5148 F:      scripts/sphinx-pre-install
5149 X:      Documentation/ABI/
5150 X:      Documentation/firmware-guide/acpi/
5151 X:      Documentation/devicetree/
5152 X:      Documentation/i2c/
5153 X:      Documentation/media/
5154 X:      Documentation/power/
5155 X:      Documentation/spi/
5156 T:      git git://git.lwn.net/linux.git docs-next
5157
5158 DOCUMENTATION/ITALIAN
5159 M:      Federico Vaga <[email protected]>
5160 L:      [email protected]
5161 S:      Maintained
5162 F:      Documentation/translations/it_IT
5163
5164 DOCUMENTATION SCRIPTS
5165 M:      Mauro Carvalho Chehab <[email protected]>
5166 L:      [email protected]
5167 S:      Maintained
5168 F:      scripts/documentation-file-ref-check
5169 F:      scripts/sphinx-pre-install
5170 F:      Documentation/sphinx/parse-headers.pl
5171
5172 DONGWOON DW9714 LENS VOICE COIL DRIVER
5173 M:      Sakari Ailus <[email protected]>
5174 L:      [email protected]
5175 T:      git git://linuxtv.org/media_tree.git
5176 S:      Maintained
5177 F:      drivers/media/i2c/dw9714.c
5178 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5179
5180 DONGWOON DW9807 LENS VOICE COIL DRIVER
5181 M:      Sakari Ailus <[email protected]>
5182 L:      [email protected]
5183 T:      git git://linuxtv.org/media_tree.git
5184 S:      Maintained
5185 F:      drivers/media/i2c/dw9807-vcm.c
5186 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5187
5188 DOUBLETALK DRIVER
5189 M:      "James R. Van Zandt" <[email protected]>
5190 L:      [email protected]
5191 S:      Maintained
5192 F:      drivers/char/dtlk.c
5193 F:      include/linux/dtlk.h
5194
5195 DPAA2 DATAPATH I/O (DPIO) DRIVER
5196 M:      Roy Pledge <[email protected]>
5197 L:      [email protected]
5198 S:      Maintained
5199 F:      drivers/soc/fsl/dpio
5200
5201 DPAA2 ETHERNET DRIVER
5202 M:      Ioana Radulescu <[email protected]>
5203 L:      [email protected]
5204 S:      Maintained
5205 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5206 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5207 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5208 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5209 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5210 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5211 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5212 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5213 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5214
5215 DPAA2 ETHERNET SWITCH DRIVER
5216 M:      Ioana Radulescu <[email protected]>
5217 M:      Ioana Ciornei <[email protected]>
5218 L:      [email protected]
5219 S:      Maintained
5220 F:      drivers/staging/fsl-dpaa2/ethsw
5221
5222 DPT_I2O SCSI RAID DRIVER
5223 M:      Adaptec OEM Raid Solutions <[email protected]>
5224 L:      [email protected]
5225 W:      http://www.adaptec.com/
5226 S:      Maintained
5227 F:      drivers/scsi/dpt*
5228 F:      drivers/scsi/dpt/
5229
5230 DRBD DRIVER
5231 M:      Philipp Reisner <[email protected]>
5232 M:      Lars Ellenberg <[email protected]>
5233 L:      [email protected]
5234 W:      http://www.drbd.org
5235 T:      git git://git.linbit.com/linux-drbd.git
5236 T:      git git://git.linbit.com/drbd-8.4.git
5237 S:      Supported
5238 F:      drivers/block/drbd/
5239 F:      lib/lru_cache.c
5240 F:      Documentation/admin-guide/blockdev/
5241
5242 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5243 M:      Greg Kroah-Hartman <[email protected]>
5244 R:      "Rafael J. Wysocki" <[email protected]>
5245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5246 S:      Supported
5247 F:      Documentation/core-api/kobject.rst
5248 F:      drivers/base/
5249 F:      fs/debugfs/
5250 F:      fs/sysfs/
5251 F:      include/linux/debugfs.h
5252 F:      include/linux/kobj*
5253 F:      lib/kobj*
5254
5255 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5256 M:      Kevin Hilman <[email protected]>
5257 M:      Nishanth Menon <[email protected]>
5258 S:      Maintained
5259 F:      drivers/power/avs/
5260 F:      include/linux/power/smartreflex.h
5261 L:      [email protected]
5262
5263 DRM DRIVER FOR ARM PL111 CLCD
5264 M:      Eric Anholt <[email protected]>
5265 T:      git git://anongit.freedesktop.org/drm/drm-misc
5266 S:      Supported
5267 F:      drivers/gpu/drm/pl111/
5268
5269 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5270 M:      Linus Walleij <[email protected]>
5271 T:      git git://anongit.freedesktop.org/drm/drm-misc
5272 S:      Maintained
5273 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5274 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5275
5276 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5277 M:      Dave Airlie <[email protected]>
5278 S:      Odd Fixes
5279 F:      drivers/gpu/drm/ast/
5280
5281 DRM DRIVER FOR ASPEED BMC GFX
5282 M:      Joel Stanley <[email protected]>
5283 L:      [email protected]
5284 T:      git git://anongit.freedesktop.org/drm/drm-misc
5285 S:      Supported
5286 F:      drivers/gpu/drm/aspeed/
5287 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5288
5289 DRM DRIVER FOR BOCHS VIRTUAL GPU
5290 M:      Gerd Hoffmann <[email protected]>
5291 L:      [email protected]
5292 T:      git git://anongit.freedesktop.org/drm/drm-misc
5293 S:      Maintained
5294 F:      drivers/gpu/drm/bochs/
5295
5296 DRM DRIVER FOR BOE HIMAX8279D PANELS
5297 M:      Jerry Han <[email protected]>
5298 S:      Maintained
5299 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5300 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.txt
5301
5302 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5303 M:      Linus Walleij <[email protected]>
5304 T:      git git://anongit.freedesktop.org/drm/drm-misc
5305 S:      Maintained
5306 F:      drivers/gpu/drm/tve200/
5307
5308 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5309 M:      Icenowy Zheng <[email protected]>
5310 S:      Maintained
5311 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5312 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5313
5314 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5315 M:      Jagan Teki <[email protected]>
5316 S:      Maintained
5317 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5318 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5319
5320 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5321 M:      Hans de Goede <[email protected]>
5322 T:      git git://anongit.freedesktop.org/drm/drm-misc
5323 S:      Maintained
5324 F:      drivers/gpu/drm/tiny/gm12u320.c
5325
5326 DRM DRIVER FOR ILITEK ILI9225 PANELS
5327 M:      David Lechner <[email protected]>
5328 T:      git git://anongit.freedesktop.org/drm/drm-misc
5329 S:      Maintained
5330 F:      drivers/gpu/drm/tiny/ili9225.c
5331 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5332
5333 DRM DRIVER FOR ILITEK ILI9486 PANELS
5334 M:      Kamlesh Gurudasani <[email protected]>
5335 T:      git git://anongit.freedesktop.org/drm/drm-misc
5336 S:      Maintained
5337 F:      drivers/gpu/drm/tiny/ili9486.c
5338 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5339
5340 DRM DRIVER FOR HX8357D PANELS
5341 M:      Eric Anholt <[email protected]>
5342 T:      git git://anongit.freedesktop.org/drm/drm-misc
5343 S:      Maintained
5344 F:      drivers/gpu/drm/tiny/hx8357d.c
5345 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5346
5347 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5348 S:      Orphan / Obsolete
5349 F:      drivers/gpu/drm/i810/
5350 F:      include/uapi/drm/i810_drm.h
5351
5352 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5353 S:      Orphan / Obsolete
5354 F:      drivers/gpu/drm/mga/
5355 F:      include/uapi/drm/mga_drm.h
5356
5357 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5358 M:      Dave Airlie <[email protected]>
5359 S:      Odd Fixes
5360 F:      drivers/gpu/drm/mgag200/
5361
5362 DRM DRIVER FOR MI0283QT
5363 M:      Noralf Trønnes <[email protected]>
5364 T:      git git://anongit.freedesktop.org/drm/drm-misc
5365 S:      Maintained
5366 F:      drivers/gpu/drm/tiny/mi0283qt.c
5367 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5368
5369 DRM DRIVER FOR MSM ADRENO GPU
5370 M:      Rob Clark <[email protected]>
5371 M:      Sean Paul <[email protected]>
5372 L:      [email protected]
5373 L:      [email protected]
5374 L:      [email protected]
5375 T:      git https://gitlab.freedesktop.org/drm/msm.git
5376 S:      Maintained
5377 F:      drivers/gpu/drm/msm/
5378 F:      include/uapi/drm/msm_drm.h
5379 F:      Documentation/devicetree/bindings/display/msm/
5380
5381 DRM DRIVER FOR NOVATEK NT35510 PANELS
5382 M:      Linus Walleij <[email protected]>
5383 T:      git git://anongit.freedesktop.org/drm/drm-misc
5384 S:      Maintained
5385 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5386 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5387
5388 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5389 M:      Ben Skeggs <[email protected]>
5390 L:      [email protected]
5391 L:      [email protected]
5392 T:      git git://github.com/skeggsb/linux
5393 S:      Supported
5394 F:      drivers/gpu/drm/nouveau/
5395 F:      include/uapi/drm/nouveau_drm.h
5396
5397 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5398 M:      Stefan Mavrodiev <[email protected]>
5399 S:      Maintained
5400 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5401 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5402
5403 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5404 M:      Noralf Trønnes <[email protected]>
5405 T:      git git://anongit.freedesktop.org/drm/drm-misc
5406 S:      Maintained
5407 F:      drivers/gpu/drm/tiny/repaper.c
5408 F:      Documentation/devicetree/bindings/display/repaper.txt
5409
5410 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5411 M:      Dave Airlie <[email protected]>
5412 M:      Gerd Hoffmann <[email protected]>
5413 L:      [email protected]
5414 T:      git git://anongit.freedesktop.org/drm/drm-misc
5415 S:      Obsolete
5416 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5417 F:      drivers/gpu/drm/cirrus/
5418
5419 DRM DRIVER FOR QXL VIRTUAL GPU
5420 M:      Dave Airlie <[email protected]>
5421 M:      Gerd Hoffmann <[email protected]>
5422 L:      [email protected]
5423 L:      [email protected]
5424 T:      git git://anongit.freedesktop.org/drm/drm-misc
5425 S:      Maintained
5426 F:      drivers/gpu/drm/qxl/
5427 F:      include/uapi/drm/qxl_drm.h
5428
5429 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5430 M:      Robert Chiras <[email protected]>
5431 S:      Maintained
5432 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5433 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5434
5435 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5436 S:      Orphan / Obsolete
5437 F:      drivers/gpu/drm/r128/
5438 F:      include/uapi/drm/r128_drm.h
5439
5440 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5441 M:      Guido Günther <[email protected]>
5442 R:      Purism Kernel Team <[email protected]>
5443 S:      Maintained
5444 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5445 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5446
5447 DRM DRIVER FOR SAVAGE VIDEO CARDS
5448 S:      Orphan / Obsolete
5449 F:      drivers/gpu/drm/savage/
5450 F:      include/uapi/drm/savage_drm.h
5451
5452 DRM DRIVER FOR SIS VIDEO CARDS
5453 S:      Orphan / Obsolete
5454 F:      drivers/gpu/drm/sis/
5455 F:      include/uapi/drm/sis_drm.h
5456
5457 DRM DRIVER FOR SITRONIX ST7701 PANELS
5458 M:      Jagan Teki <[email protected]>
5459 S:      Maintained
5460 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5461 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5462
5463 DRM DRIVER FOR SITRONIX ST7586 PANELS
5464 M:      David Lechner <[email protected]>
5465 T:      git git://anongit.freedesktop.org/drm/drm-misc
5466 S:      Maintained
5467 F:      drivers/gpu/drm/tiny/st7586.c
5468 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5469
5470 DRM DRIVER FOR SITRONIX ST7735R PANELS
5471 M:      David Lechner <[email protected]>
5472 T:      git git://anongit.freedesktop.org/drm/drm-misc
5473 S:      Maintained
5474 F:      drivers/gpu/drm/tiny/st7735r.c
5475 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5476
5477 DRM DRIVER FOR SONY ACX424AKP PANELS
5478 M:      Linus Walleij <[email protected]>
5479 T:      git git://anongit.freedesktop.org/drm/drm-misc
5480 S:      Maintained
5481 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5482
5483 DRM DRIVER FOR ST-ERICSSON MCDE
5484 M:      Linus Walleij <[email protected]>
5485 T:      git git://anongit.freedesktop.org/drm/drm-misc
5486 S:      Maintained
5487 F:      drivers/gpu/drm/mcde/
5488 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5489
5490 DRM DRIVER FOR TDFX VIDEO CARDS
5491 S:      Orphan / Obsolete
5492 F:      drivers/gpu/drm/tdfx/
5493
5494 DRM DRIVER FOR TPO TPG110 PANELS
5495 M:      Linus Walleij <[email protected]>
5496 T:      git git://anongit.freedesktop.org/drm/drm-misc
5497 S:      Maintained
5498 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5499 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5500
5501 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5502 M:      Dave Airlie <[email protected]>
5503 R:      Sean Paul <[email protected]>
5504 L:      [email protected]
5505 S:      Odd Fixes
5506 F:      drivers/gpu/drm/udl/
5507 T:      git git://anongit.freedesktop.org/drm/drm-misc
5508
5509 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5510 M:      Hans de Goede <[email protected]>
5511 L:      [email protected]
5512 S:      Maintained
5513 F:      drivers/gpu/drm/vboxvideo/
5514 T:      git git://anongit.freedesktop.org/drm/drm-misc
5515
5516 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5517 M:      Rodrigo Siqueira <[email protected]>
5518 R:      Haneen Mohammed <[email protected]>
5519 R:      Daniel Vetter <[email protected]>
5520 T:      git git://anongit.freedesktop.org/drm/drm-misc
5521 S:      Maintained
5522 L:      [email protected]
5523 F:      drivers/gpu/drm/vkms/
5524 F:      Documentation/gpu/vkms.rst
5525
5526 DRM DRIVER FOR VMWARE VIRTUAL GPU
5527 M:      "VMware Graphics" <[email protected]>
5528 M:      Thomas Hellstrom <[email protected]>
5529 L:      [email protected]
5530 T:      git git://people.freedesktop.org/~thomash/linux
5531 S:      Supported
5532 F:      drivers/gpu/drm/vmwgfx/
5533 F:      include/uapi/drm/vmwgfx_drm.h
5534
5535 DRM DRIVERS
5536 M:      David Airlie <[email protected]>
5537 M:      Daniel Vetter <[email protected]>
5538 L:      [email protected]
5539 T:      git git://anongit.freedesktop.org/drm/drm
5540 B:      https://bugs.freedesktop.org/
5541 C:      irc://chat.freenode.net/dri-devel
5542 S:      Maintained
5543 F:      drivers/gpu/drm/
5544 F:      drivers/gpu/vga/
5545 F:      Documentation/devicetree/bindings/display/
5546 F:      Documentation/devicetree/bindings/gpu/
5547 F:      Documentation/gpu/
5548 F:      include/drm/
5549 F:      include/uapi/drm/
5550 F:      include/linux/vga*
5551
5552 DRM DRIVERS AND MISC GPU PATCHES
5553 M:      Maarten Lankhorst <[email protected]>
5554 M:      Maxime Ripard <[email protected]>
5555 M:      Thomas Zimmermann <[email protected]>
5556 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5557 S:      Maintained
5558 T:      git git://anongit.freedesktop.org/drm/drm-misc
5559 F:      Documentation/gpu/
5560 F:      drivers/gpu/vga/
5561 F:      drivers/gpu/drm/*
5562 F:      include/drm/drm*
5563 F:      include/uapi/drm/drm*
5564 F:      include/linux/vga*
5565
5566 DRM DRIVERS FOR ALLWINNER A10
5567 M:      Maxime Ripard <[email protected]>
5568 M:      Chen-Yu Tsai <[email protected]>
5569 L:      [email protected]
5570 S:      Supported
5571 F:      drivers/gpu/drm/sun4i/
5572 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5573 T:      git git://anongit.freedesktop.org/drm/drm-misc
5574
5575 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5576 M:      Maxime Ripard <[email protected]>
5577 M:      Chen-Yu Tsai <[email protected]>
5578 R:      Jernej Skrabec <[email protected]>
5579 L:      [email protected]
5580 S:      Supported
5581 F:      drivers/gpu/drm/sun4i/sun8i*
5582 T:      git git://anongit.freedesktop.org/drm/drm-misc
5583
5584 DRM DRIVERS FOR AMLOGIC SOCS
5585 M:      Neil Armstrong <[email protected]>
5586 L:      [email protected]
5587 L:      [email protected]
5588 W:      http://linux-meson.com/
5589 S:      Supported
5590 F:      drivers/gpu/drm/meson/
5591 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5592 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5593 F:      Documentation/gpu/meson.rst
5594 T:      git git://anongit.freedesktop.org/drm/drm-misc
5595
5596 DRM DRIVERS FOR ATMEL HLCDC
5597 M:      Sam Ravnborg <[email protected]>
5598 M:      Boris Brezillon <[email protected]>
5599 L:      [email protected]
5600 S:      Supported
5601 F:      drivers/gpu/drm/atmel-hlcdc/
5602 F:      Documentation/devicetree/bindings/display/atmel/
5603 T:      git git://anongit.freedesktop.org/drm/drm-misc
5604
5605 DRM DRIVERS FOR BRIDGE CHIPS
5606 M:      Andrzej Hajda <[email protected]>
5607 M:      Neil Armstrong <[email protected]>
5608 R:      Laurent Pinchart <[email protected]>
5609 R:      Jonas Karlman <[email protected]>
5610 R:      Jernej Skrabec <[email protected]>
5611 S:      Maintained
5612 T:      git git://anongit.freedesktop.org/drm/drm-misc
5613 F:      drivers/gpu/drm/bridge/
5614
5615 DRM DRIVERS FOR EXYNOS
5616 M:      Inki Dae <[email protected]>
5617 M:      Joonyoung Shim <[email protected]>
5618 M:      Seung-Woo Kim <[email protected]>
5619 M:      Kyungmin Park <[email protected]>
5620 L:      [email protected]
5621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5622 S:      Supported
5623 F:      drivers/gpu/drm/exynos/
5624 F:      include/uapi/drm/exynos_drm.h
5625 F:      Documentation/devicetree/bindings/display/exynos/
5626
5627 DRM DRIVERS FOR FREESCALE DCU
5628 M:      Stefan Agner <[email protected]>
5629 M:      Alison Wang <[email protected]>
5630 L:      [email protected]
5631 S:      Supported
5632 F:      drivers/gpu/drm/fsl-dcu/
5633 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5634 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5635 T:      git git://anongit.freedesktop.org/drm/drm-misc
5636
5637 DRM DRIVERS FOR FREESCALE IMX
5638 M:      Philipp Zabel <[email protected]>
5639 L:      [email protected]
5640 S:      Maintained
5641 F:      drivers/gpu/drm/imx/
5642 F:      drivers/gpu/ipu-v3/
5643 F:      Documentation/devicetree/bindings/display/imx/
5644
5645 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5646 M:      Patrik Jakobsson <[email protected]>
5647 L:      [email protected]
5648 T:      git git://github.com/patjak/drm-gma500
5649 S:      Maintained
5650 F:      drivers/gpu/drm/gma500/
5651
5652 DRM DRIVERS FOR HISILICON
5653 M:      Xinliang Liu <[email protected]>
5654 M:      Rongrong Zou <[email protected]>
5655 R:      John Stultz <[email protected]>
5656 R:      Xinwei Kong <[email protected]>
5657 R:      Chen Feng <[email protected]>
5658 L:      [email protected]
5659 T:      git git://anongit.freedesktop.org/drm/drm-misc
5660 S:      Maintained
5661 F:      drivers/gpu/drm/hisilicon/
5662 F:      Documentation/devicetree/bindings/display/hisilicon/
5663
5664 DRM DRIVERS FOR LIMA
5665 M:      Qiang Yu <[email protected]>
5666 L:      [email protected]
5667 L:      [email protected] (moderated for non-subscribers)
5668 S:      Maintained
5669 F:      drivers/gpu/drm/lima/
5670 F:      include/uapi/drm/lima_drm.h
5671 T:      git git://anongit.freedesktop.org/drm/drm-misc
5672
5673 DRM DRIVERS FOR MEDIATEK
5674 M:      Chun-Kuang Hu <[email protected]>
5675 M:      Philipp Zabel <[email protected]>
5676 L:      [email protected]
5677 S:      Supported
5678 F:      drivers/gpu/drm/mediatek/
5679 F:      Documentation/devicetree/bindings/display/mediatek/
5680
5681 DRM DRIVERS FOR NVIDIA TEGRA
5682 M:      Thierry Reding <[email protected]>
5683 L:      [email protected]
5684 L:      [email protected]
5685 T:      git git://anongit.freedesktop.org/tegra/linux.git
5686 S:      Supported
5687 F:      drivers/gpu/drm/tegra/
5688 F:      drivers/gpu/host1x/
5689 F:      include/linux/host1x.h
5690 F:      include/uapi/drm/tegra_drm.h
5691 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5692
5693 DRM DRIVERS FOR RENESAS
5694 M:      Laurent Pinchart <[email protected]>
5695 M:      Kieran Bingham <[email protected]>
5696 L:      [email protected]
5697 L:      [email protected]
5698 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5699 S:      Supported
5700 F:      drivers/gpu/drm/rcar-du/
5701 F:      drivers/gpu/drm/shmobile/
5702 F:      include/linux/platform_data/shmob_drm.h
5703 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5704 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5705 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5706
5707 DRM DRIVERS FOR ROCKCHIP
5708 M:      Sandy Huang <[email protected]>
5709 M:      Heiko Stübner <[email protected]>
5710 L:      [email protected]
5711 S:      Maintained
5712 F:      drivers/gpu/drm/rockchip/
5713 F:      Documentation/devicetree/bindings/display/rockchip/
5714 T:      git git://anongit.freedesktop.org/drm/drm-misc
5715
5716 DRM DRIVERS FOR STI
5717 M:      Benjamin Gaignard <[email protected]>
5718 M:      Vincent Abriou <[email protected]>
5719 L:      [email protected]
5720 T:      git git://anongit.freedesktop.org/drm/drm-misc
5721 S:      Maintained
5722 F:      drivers/gpu/drm/sti
5723 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5724
5725 DRM DRIVERS FOR STM
5726 M:      Yannick Fertre <[email protected]>
5727 M:      Philippe Cornu <[email protected]>
5728 M:      Benjamin Gaignard <[email protected]>
5729 M:      Vincent Abriou <[email protected]>
5730 L:      [email protected]
5731 T:      git git://anongit.freedesktop.org/drm/drm-misc
5732 S:      Maintained
5733 F:      drivers/gpu/drm/stm
5734 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5735
5736 DRM DRIVERS FOR TI LCDC
5737 M:      Jyri Sarha <[email protected]>
5738 R:      Tomi Valkeinen <[email protected]>
5739 L:      [email protected]
5740 S:      Maintained
5741 F:      drivers/gpu/drm/tilcdc/
5742 F:      Documentation/devicetree/bindings/display/tilcdc/
5743
5744 DRM DRIVERS FOR TI OMAP
5745 M:      Tomi Valkeinen <[email protected]>
5746 L:      [email protected]
5747 S:      Maintained
5748 F:      drivers/gpu/drm/omapdrm/
5749 F:      Documentation/devicetree/bindings/display/ti/
5750
5751 DRM DRIVERS FOR TI KEYSTONE
5752 M:      Jyri Sarha <[email protected]>
5753 M:      Tomi Valkeinen <[email protected]>
5754 L:      [email protected]
5755 S:      Maintained
5756 F:      drivers/gpu/drm/tidss/
5757 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5758 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5759 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5760 T:      git git://anongit.freedesktop.org/drm/drm-misc
5761
5762 DRM DRIVERS FOR V3D
5763 M:      Eric Anholt <[email protected]>
5764 S:      Supported
5765 F:      drivers/gpu/drm/v3d/
5766 F:      include/uapi/drm/v3d_drm.h
5767 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5768 T:      git git://anongit.freedesktop.org/drm/drm-misc
5769
5770 DRM DRIVERS FOR VC4
5771 M:      Eric Anholt <[email protected]>
5772 T:      git git://github.com/anholt/linux
5773 S:      Supported
5774 F:      drivers/gpu/drm/vc4/
5775 F:      include/uapi/drm/vc4_drm.h
5776 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5777 T:      git git://anongit.freedesktop.org/drm/drm-misc
5778
5779 DRM DRIVERS FOR VIVANTE GPU IP
5780 M:      Lucas Stach <[email protected]>
5781 R:      Russell King <[email protected]>
5782 R:      Christian Gmeiner <[email protected]>
5783 L:      [email protected] (moderated for non-subscribers)
5784 L:      [email protected]
5785 S:      Maintained
5786 F:      drivers/gpu/drm/etnaviv/
5787 F:      include/uapi/drm/etnaviv_drm.h
5788 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5789
5790 DRM DRIVERS FOR ZTE ZX
5791 M:      Shawn Guo <[email protected]>
5792 L:      [email protected]
5793 S:      Maintained
5794 F:      drivers/gpu/drm/zte/
5795 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5796 T:      git git://anongit.freedesktop.org/drm/drm-misc
5797
5798 DRM PANEL DRIVERS
5799 M:      Thierry Reding <[email protected]>
5800 R:      Sam Ravnborg <[email protected]>
5801 L:      [email protected]
5802 T:      git git://anongit.freedesktop.org/drm/drm-misc
5803 S:      Maintained
5804 F:      drivers/gpu/drm/drm_panel.c
5805 F:      drivers/gpu/drm/panel/
5806 F:      include/drm/drm_panel.h
5807 F:      Documentation/devicetree/bindings/display/panel/
5808
5809 DRM DRIVERS FOR XEN
5810 M:      Oleksandr Andrushchenko <[email protected]>
5811 T:      git git://anongit.freedesktop.org/drm/drm-misc
5812 L:      [email protected]
5813 L:      [email protected] (moderated for non-subscribers)
5814 S:      Supported
5815 F:      drivers/gpu/drm/xen/
5816 F:      Documentation/gpu/xen-front.rst
5817
5818 DRM TTM SUBSYSTEM
5819 M:      Christian Koenig <[email protected]>
5820 M:      Huang Rui <[email protected]>
5821 T:      git git://people.freedesktop.org/~agd5f/linux
5822 S:      Maintained
5823 L:      [email protected]
5824 F:      include/drm/ttm/
5825 F:      drivers/gpu/drm/ttm/
5826
5827 DSBR100 USB FM RADIO DRIVER
5828 M:      Alexey Klimov <[email protected]>
5829 L:      [email protected]
5830 T:      git git://linuxtv.org/media_tree.git
5831 S:      Maintained
5832 F:      drivers/media/radio/dsbr100.c
5833
5834 DT3155 MEDIA DRIVER
5835 M:      Hans Verkuil <[email protected]>
5836 L:      [email protected]
5837 T:      git git://linuxtv.org/media_tree.git
5838 W:      https://linuxtv.org
5839 S:      Odd Fixes
5840 F:      drivers/media/pci/dt3155/
5841
5842 DVB_USB_AF9015 MEDIA DRIVER
5843 M:      Antti Palosaari <[email protected]>
5844 L:      [email protected]
5845 W:      https://linuxtv.org
5846 W:      http://palosaari.fi/linux/
5847 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5848 T:      git git://linuxtv.org/anttip/media_tree.git
5849 S:      Maintained
5850 F:      drivers/media/usb/dvb-usb-v2/af9015*
5851
5852 DVB_USB_AF9035 MEDIA DRIVER
5853 M:      Antti Palosaari <[email protected]>
5854 L:      [email protected]
5855 W:      https://linuxtv.org
5856 W:      http://palosaari.fi/linux/
5857 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5858 T:      git git://linuxtv.org/anttip/media_tree.git
5859 S:      Maintained
5860 F:      drivers/media/usb/dvb-usb-v2/af9035*
5861
5862 DVB_USB_ANYSEE MEDIA DRIVER
5863 M:      Antti Palosaari <[email protected]>
5864 L:      [email protected]
5865 W:      https://linuxtv.org
5866 W:      http://palosaari.fi/linux/
5867 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5868 T:      git git://linuxtv.org/anttip/media_tree.git
5869 S:      Maintained
5870 F:      drivers/media/usb/dvb-usb-v2/anysee*
5871
5872 DVB_USB_AU6610 MEDIA DRIVER
5873 M:      Antti Palosaari <[email protected]>
5874 L:      [email protected]
5875 W:      https://linuxtv.org
5876 W:      http://palosaari.fi/linux/
5877 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5878 T:      git git://linuxtv.org/anttip/media_tree.git
5879 S:      Maintained
5880 F:      drivers/media/usb/dvb-usb-v2/au6610*
5881
5882 DVB_USB_CE6230 MEDIA DRIVER
5883 M:      Antti Palosaari <[email protected]>
5884 L:      [email protected]
5885 W:      https://linuxtv.org
5886 W:      http://palosaari.fi/linux/
5887 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5888 T:      git git://linuxtv.org/anttip/media_tree.git
5889 S:      Maintained
5890 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5891
5892 DVB_USB_CXUSB MEDIA DRIVER
5893 M:      Michael Krufky <[email protected]>
5894 L:      [email protected]
5895 W:      https://linuxtv.org
5896 W:      http://github.com/mkrufky
5897 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5898 T:      git git://linuxtv.org/media_tree.git
5899 S:      Maintained
5900 F:      drivers/media/usb/dvb-usb/cxusb*
5901
5902 DVB_USB_EC168 MEDIA DRIVER
5903 M:      Antti Palosaari <[email protected]>
5904 L:      [email protected]
5905 W:      https://linuxtv.org
5906 W:      http://palosaari.fi/linux/
5907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5908 T:      git git://linuxtv.org/anttip/media_tree.git
5909 S:      Maintained
5910 F:      drivers/media/usb/dvb-usb-v2/ec168*
5911
5912 DVB_USB_GL861 MEDIA DRIVER
5913 M:      Antti Palosaari <[email protected]>
5914 L:      [email protected]
5915 W:      https://linuxtv.org
5916 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5917 T:      git git://linuxtv.org/anttip/media_tree.git
5918 S:      Maintained
5919 F:      drivers/media/usb/dvb-usb-v2/gl861*
5920
5921 DVB_USB_MXL111SF MEDIA DRIVER
5922 M:      Michael Krufky <[email protected]>
5923 L:      [email protected]
5924 W:      https://linuxtv.org
5925 W:      http://github.com/mkrufky
5926 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5927 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5928 S:      Maintained
5929 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5930
5931 DVB_USB_RTL28XXU MEDIA DRIVER
5932 M:      Antti Palosaari <[email protected]>
5933 L:      [email protected]
5934 W:      https://linuxtv.org
5935 W:      http://palosaari.fi/linux/
5936 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5937 T:      git git://linuxtv.org/anttip/media_tree.git
5938 S:      Maintained
5939 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5940
5941 DVB_USB_V2 MEDIA DRIVER
5942 M:      Antti Palosaari <[email protected]>
5943 L:      [email protected]
5944 W:      https://linuxtv.org
5945 W:      http://palosaari.fi/linux/
5946 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5947 T:      git git://linuxtv.org/anttip/media_tree.git
5948 S:      Maintained
5949 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5950 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5951
5952 DYNAMIC DEBUG
5953 M:      Jason Baron <[email protected]>
5954 S:      Maintained
5955 F:      lib/dynamic_debug.c
5956 F:      include/linux/dynamic_debug.h
5957
5958 DYNAMIC INTERRUPT MODERATION
5959 M:      Tal Gilboa <[email protected]>
5960 S:      Maintained
5961 F:      include/linux/dim.h
5962 F:      lib/dim/
5963
5964 DZ DECSTATION DZ11 SERIAL DRIVER
5965 M:      "Maciej W. Rozycki" <[email protected]>
5966 S:      Maintained
5967 F:      drivers/tty/serial/dz.*
5968
5969 E3X0 POWER BUTTON DRIVER
5970 M:      Moritz Fischer <[email protected]>
5971 L:      [email protected]
5972 W:      http://www.ettus.com
5973 S:      Supported
5974 F:      drivers/input/misc/e3x0-button.c
5975 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5976
5977 E4000 MEDIA DRIVER
5978 M:      Antti Palosaari <[email protected]>
5979 L:      [email protected]
5980 W:      https://linuxtv.org
5981 W:      http://palosaari.fi/linux/
5982 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5983 T:      git git://linuxtv.org/anttip/media_tree.git
5984 S:      Maintained
5985 F:      drivers/media/tuners/e4000*
5986
5987 EARTH_PT1 MEDIA DRIVER
5988 M:      Akihiro Tsukada <[email protected]>
5989 L:      [email protected]
5990 S:      Odd Fixes
5991 F:      drivers/media/pci/pt1/
5992
5993 EARTH_PT3 MEDIA DRIVER
5994 M:      Akihiro Tsukada <[email protected]>
5995 L:      [email protected]
5996 S:      Odd Fixes
5997 F:      drivers/media/pci/pt3/
5998
5999 EC100 MEDIA DRIVER
6000 M:      Antti Palosaari <[email protected]>
6001 L:      [email protected]
6002 W:      https://linuxtv.org
6003 W:      http://palosaari.fi/linux/
6004 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6005 T:      git git://linuxtv.org/anttip/media_tree.git
6006 S:      Maintained
6007 F:      drivers/media/dvb-frontends/ec100*
6008
6009 ECRYPT FILE SYSTEM
6010 M:      Tyler Hicks <[email protected]>
6011 L:      [email protected]
6012 W:      http://ecryptfs.org
6013 W:      https://launchpad.net/ecryptfs
6014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6015 S:      Odd Fixes
6016 F:      Documentation/filesystems/ecryptfs.rst
6017 F:      fs/ecryptfs/
6018
6019 EDAC-AMD64
6020 M:      Borislav Petkov <[email protected]>
6021 L:      [email protected]
6022 S:      Maintained
6023 F:      drivers/edac/amd64_edac*
6024
6025 EDAC-ARMADA
6026 M:      Jan Luebbe <[email protected]>
6027 L:      [email protected]
6028 S:      Maintained
6029 F:      drivers/edac/armada_xp_*
6030
6031 EDAC-AST2500
6032 M:      Stefan Schaeckeler <[email protected]>
6033 S:      Supported
6034 F:      drivers/edac/aspeed_edac.c
6035 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6036
6037 EDAC-BLUEFIELD
6038 M:      Shravan Kumar Ramani <[email protected]>
6039 S:      Supported
6040 F:      drivers/edac/bluefield_edac.c
6041
6042 EDAC-CALXEDA
6043 M:      Robert Richter <[email protected]>
6044 L:      [email protected]
6045 S:      Maintained
6046 F:      drivers/edac/highbank*
6047
6048 EDAC-CAVIUM OCTEON
6049 M:      Ralf Baechle <[email protected]>
6050 M:      Robert Richter <[email protected]>
6051 L:      [email protected]
6052 L:      [email protected]
6053 S:      Supported
6054 F:      drivers/edac/octeon_edac*
6055
6056 EDAC-CAVIUM THUNDERX
6057 M:      Robert Richter <[email protected]>
6058 L:      [email protected]
6059 S:      Supported
6060 F:      drivers/edac/thunderx_edac*
6061
6062 EDAC-CORE
6063 M:      Borislav Petkov <[email protected]>
6064 M:      Mauro Carvalho Chehab <[email protected]>
6065 M:      Tony Luck <[email protected]>
6066 R:      James Morse <[email protected]>
6067 R:      Robert Richter <[email protected]>
6068 L:      [email protected]
6069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6070 S:      Supported
6071 F:      Documentation/admin-guide/ras.rst
6072 F:      Documentation/driver-api/edac.rst
6073 F:      drivers/edac/
6074 F:      include/linux/edac.h
6075
6076 EDAC-DMC520
6077 M:      Lei Wang <[email protected]>
6078 L:      [email protected]
6079 S:      Supported
6080 F:      drivers/edac/dmc520_edac.c
6081
6082 EDAC-E752X
6083 M:      Mark Gross <[email protected]>
6084 L:      [email protected]
6085 S:      Maintained
6086 F:      drivers/edac/e752x_edac.c
6087
6088 EDAC-E7XXX
6089 L:      [email protected]
6090 S:      Maintained
6091 F:      drivers/edac/e7xxx_edac.c
6092
6093 EDAC-FSL_DDR
6094 M:      York Sun <[email protected]>
6095 L:      [email protected]
6096 S:      Maintained
6097 F:      drivers/edac/fsl_ddr_edac.*
6098
6099 EDAC-GHES
6100 M:      Mauro Carvalho Chehab <[email protected]>
6101 L:      [email protected]
6102 S:      Maintained
6103 F:      drivers/edac/ghes_edac.c
6104
6105 EDAC-I10NM
6106 M:      Tony Luck <[email protected]>
6107 L:      [email protected]
6108 S:      Maintained
6109 F:      drivers/edac/i10nm_base.c
6110
6111 EDAC-I3000
6112 L:      [email protected]
6113 S:      Orphan
6114 F:      drivers/edac/i3000_edac.c
6115
6116 EDAC-I5000
6117 L:      [email protected]
6118 S:      Maintained
6119 F:      drivers/edac/i5000_edac.c
6120
6121 EDAC-I5400
6122 M:      Mauro Carvalho Chehab <[email protected]>
6123 L:      [email protected]
6124 S:      Maintained
6125 F:      drivers/edac/i5400_edac.c
6126
6127 EDAC-I7300
6128 M:      Mauro Carvalho Chehab <[email protected]>
6129 L:      [email protected]
6130 S:      Maintained
6131 F:      drivers/edac/i7300_edac.c
6132
6133 EDAC-I7CORE
6134 M:      Mauro Carvalho Chehab <[email protected]>
6135 L:      [email protected]
6136 S:      Maintained
6137 F:      drivers/edac/i7core_edac.c
6138
6139 EDAC-I82443BXGX
6140 M:      Tim Small <[email protected]>
6141 L:      [email protected]
6142 S:      Maintained
6143 F:      drivers/edac/i82443bxgx_edac.c
6144
6145 EDAC-I82975X
6146 M:      "Arvind R." <[email protected]>
6147 L:      [email protected]
6148 S:      Maintained
6149 F:      drivers/edac/i82975x_edac.c
6150
6151 EDAC-IE31200
6152 M:      Jason Baron <[email protected]>
6153 L:      [email protected]
6154 S:      Maintained
6155 F:      drivers/edac/ie31200_edac.c
6156
6157 EDAC-MPC85XX
6158 M:      Johannes Thumshirn <[email protected]>
6159 L:      [email protected]
6160 S:      Maintained
6161 F:      drivers/edac/mpc85xx_edac.[ch]
6162
6163 EDAC-PASEMI
6164 M:      Egor Martovetsky <[email protected]>
6165 L:      [email protected]
6166 S:      Maintained
6167 F:      drivers/edac/pasemi_edac.c
6168
6169 EDAC-PND2
6170 M:      Tony Luck <[email protected]>
6171 L:      [email protected]
6172 S:      Maintained
6173 F:      drivers/edac/pnd2_edac.[ch]
6174
6175 EDAC-R82600
6176 M:      Tim Small <[email protected]>
6177 L:      [email protected]
6178 S:      Maintained
6179 F:      drivers/edac/r82600_edac.c
6180
6181 EDAC-SBRIDGE
6182 M:      Tony Luck <[email protected]>
6183 R:      Qiuxu Zhuo <[email protected]>
6184 L:      [email protected]
6185 S:      Maintained
6186 F:      drivers/edac/sb_edac.c
6187
6188 EDAC-SIFIVE
6189 M:      Yash Shah <[email protected]>
6190 L:      [email protected]
6191 S:      Supported
6192 F:      drivers/edac/sifive_edac.c
6193 F:      drivers/soc/sifive_l2_cache.c
6194
6195 EDAC-SKYLAKE
6196 M:      Tony Luck <[email protected]>
6197 L:      [email protected]
6198 S:      Maintained
6199 F:      drivers/edac/skx_*.c
6200
6201 EDAC-TI
6202 M:      Tero Kristo <[email protected]>
6203 L:      [email protected]
6204 S:      Maintained
6205 F:      drivers/edac/ti_edac.c
6206
6207 EDAC-QCOM
6208 M:      Channagoud Kadabi <[email protected]>
6209 M:      Venkata Narendra Kumar Gutta <[email protected]>
6210 L:      [email protected]
6211 L:      [email protected]
6212 S:      Maintained
6213 F:      drivers/edac/qcom_edac.c
6214
6215 EDIROL UA-101/UA-1000 DRIVER
6216 M:      Clemens Ladisch <[email protected]>
6217 L:      [email protected] (moderated for non-subscribers)
6218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6219 S:      Maintained
6220 F:      sound/usb/misc/ua101.c
6221
6222 EFI TEST DRIVER
6223 L:      [email protected]
6224 M:      Ivan Hu <[email protected]>
6225 M:      Ard Biesheuvel <[email protected]>
6226 S:      Maintained
6227 F:      drivers/firmware/efi/test/
6228
6229 EFI VARIABLE FILESYSTEM
6230 M:      Matthew Garrett <[email protected]>
6231 M:      Jeremy Kerr <[email protected]>
6232 M:      Ard Biesheuvel <[email protected]>
6233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6234 L:      [email protected]
6235 S:      Maintained
6236 F:      fs/efivarfs/
6237
6238 EFIFB FRAMEBUFFER DRIVER
6239 L:      [email protected]
6240 M:      Peter Jones <[email protected]>
6241 S:      Maintained
6242 F:      drivers/video/fbdev/efifb.c
6243
6244 EFS FILESYSTEM
6245 W:      http://aeschi.ch.eu.org/efs/
6246 S:      Orphan
6247 F:      fs/efs/
6248
6249 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6250 M:      Douglas Miller <[email protected]>
6251 L:      [email protected]
6252 S:      Maintained
6253 F:      drivers/net/ethernet/ibm/ehea/
6254
6255 EM28XX VIDEO4LINUX DRIVER
6256 M:      Mauro Carvalho Chehab <[email protected]>
6257 L:      [email protected]
6258 W:      https://linuxtv.org
6259 T:      git git://linuxtv.org/media_tree.git
6260 S:      Maintained
6261 F:      drivers/media/usb/em28xx/
6262 F:      Documentation/media/v4l-drivers/em28xx*
6263
6264 EMBEDDED LINUX
6265 M:      Paul Gortmaker <[email protected]>
6266 M:      Matt Mackall <[email protected]>
6267 M:      David Woodhouse <[email protected]>
6268 L:      [email protected]
6269 S:      Maintained
6270
6271 Emulex 10Gbps iSCSI - OneConnect DRIVER
6272 M:      Subbu Seetharaman <[email protected]>
6273 M:      Ketan Mukadam <[email protected]>
6274 M:      Jitendra Bhivare <[email protected]>
6275 L:      [email protected]
6276 W:      http://www.broadcom.com
6277 S:      Supported
6278 F:      drivers/scsi/be2iscsi/
6279
6280 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6281 M:      Ajit Khaparde <[email protected]>
6282 M:      Sriharsha Basavapatna <[email protected]>
6283 M:      Somnath Kotur <[email protected]>
6284 L:      [email protected]
6285 W:      http://www.emulex.com
6286 S:      Supported
6287 F:      drivers/net/ethernet/emulex/benet/
6288
6289 EMULEX ONECONNECT ROCE DRIVER
6290 M:      Selvin Xavier <[email protected]>
6291 M:      Devesh Sharma <[email protected]>
6292 L:      [email protected]
6293 W:      http://www.broadcom.com
6294 S:      Odd Fixes
6295 F:      drivers/infiniband/hw/ocrdma/
6296 F:      include/uapi/rdma/ocrdma-abi.h
6297
6298 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6299 M:      James Smart <[email protected]>
6300 M:      Dick Kennedy <[email protected]>
6301 L:      [email protected]
6302 W:      http://www.broadcom.com
6303 S:      Supported
6304 F:      drivers/scsi/lpfc/
6305
6306 ENE CB710 FLASH CARD READER DRIVER
6307 M:      Michał Mirosław <[email protected]>
6308 S:      Maintained
6309 F:      drivers/misc/cb710/
6310 F:      drivers/mmc/host/cb710-mmc.*
6311 F:      include/linux/cb710.h
6312
6313 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6314 M:      Maxim Levitsky <[email protected]>
6315 S:      Maintained
6316 F:      drivers/media/rc/ene_ir.*
6317
6318 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6319 M:      Laurentiu Tudor <[email protected]>
6320 L:      [email protected]
6321 S:      Maintained
6322 F:      drivers/tty/ehv_bytechan.c
6323
6324 EPSON S1D13XXX FRAMEBUFFER DRIVER
6325 M:      Kristoffer Ericson <[email protected]>
6326 S:      Maintained
6327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6328 F:      drivers/video/fbdev/s1d13xxxfb.c
6329 F:      include/video/s1d13xxxfb.h
6330
6331 EROFS FILE SYSTEM
6332 M:      Gao Xiang <[email protected]>
6333 M:      Chao Yu <[email protected]>
6334 L:      [email protected]
6335 S:      Maintained
6336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6337 F:      Documentation/filesystems/erofs.rst
6338 F:      fs/erofs/
6339 F:      include/trace/events/erofs.h
6340
6341 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6342 M:      Jeff Layton <[email protected]>
6343 S:      Maintained
6344 F:      lib/errseq.c
6345 F:      include/linux/errseq.h
6346
6347 ET131X NETWORK DRIVER
6348 M:      Mark Einon <[email protected]>
6349 S:      Odd Fixes
6350 F:      drivers/net/ethernet/agere/
6351
6352 ETHERNET BRIDGE
6353 M:      Roopa Prabhu <[email protected]>
6354 M:      Nikolay Aleksandrov <[email protected]>
6355 L:      [email protected] (moderated for non-subscribers)
6356 L:      [email protected]
6357 W:      http://www.linuxfoundation.org/en/Net:Bridge
6358 S:      Maintained
6359 F:      include/linux/netfilter_bridge/
6360 F:      net/bridge/
6361
6362 ETHERNET PHY LIBRARY
6363 M:      Andrew Lunn <[email protected]>
6364 M:      Florian Fainelli <[email protected]>
6365 M:      Heiner Kallweit <[email protected]>
6366 R:      Russell King <[email protected]>
6367 L:      [email protected]
6368 S:      Maintained
6369 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6370 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6371 F:      Documentation/devicetree/bindings/net/mdio*
6372 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6373 F:      Documentation/networking/phy.rst
6374 F:      drivers/net/phy/
6375 F:      drivers/of/of_mdio.c
6376 F:      drivers/of/of_net.c
6377 F:      include/dt-bindings/net/qca-ar803x.h
6378 F:      include/linux/*mdio*.h
6379 F:      include/linux/of_net.h
6380 F:      include/linux/phy.h
6381 F:      include/linux/phy_fixed.h
6382 F:      include/linux/platform_data/mdio-bcm-unimac.h
6383 F:      include/linux/platform_data/mdio-gpio.h
6384 F:      include/trace/events/mdio.h
6385 F:      include/uapi/linux/mdio.h
6386 F:      include/uapi/linux/mii.h
6387
6388 EXFAT FILE SYSTEM
6389 M:      Namjae Jeon <[email protected]>
6390 M:      Sungjong Seo <[email protected]>
6391 L:      [email protected]
6392 S:      Maintained
6393 F:      fs/exfat/
6394
6395 EXT2 FILE SYSTEM
6396 M:      Jan Kara <[email protected]>
6397 L:      [email protected]
6398 S:      Maintained
6399 F:      Documentation/filesystems/ext2.rst
6400 F:      fs/ext2/
6401 F:      include/linux/ext2*
6402
6403 EXT4 FILE SYSTEM
6404 M:      "Theodore Ts'o" <[email protected]>
6405 M:      Andreas Dilger <[email protected]>
6406 L:      [email protected]
6407 W:      http://ext4.wiki.kernel.org
6408 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6410 S:      Maintained
6411 F:      Documentation/filesystems/ext4/
6412 F:      fs/ext4/
6413
6414 Extended Verification Module (EVM)
6415 M:      Mimi Zohar <[email protected]>
6416 L:      [email protected]
6417 S:      Supported
6418 F:      security/integrity/evm/
6419
6420 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6421 M:      Ard Biesheuvel <[email protected]>
6422 L:      [email protected]
6423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6424 S:      Maintained
6425 F:      Documentation/admin-guide/efi-stub.rst
6426 F:      arch/*/kernel/efi.c
6427 F:      arch/*/include/asm/efi.h
6428 F:      arch/x86/platform/efi/
6429 F:      drivers/firmware/efi/
6430 F:      include/linux/efi*.h
6431 F:      arch/arm/boot/compressed/efi-header.S
6432 F:      arch/arm64/kernel/efi-entry.S
6433
6434 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6435 M:      MyungJoo Ham <[email protected]>
6436 M:      Chanwoo Choi <[email protected]>
6437 L:      [email protected]
6438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6439 S:      Maintained
6440 F:      drivers/extcon/
6441 F:      include/linux/extcon/
6442 F:      include/linux/extcon.h
6443 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6444 F:      Documentation/devicetree/bindings/extcon/
6445
6446 EXYNOS DP DRIVER
6447 M:      Jingoo Han <[email protected]>
6448 L:      [email protected]
6449 S:      Maintained
6450 F:      drivers/gpu/drm/exynos/exynos_dp*
6451
6452 EXYNOS SYSMMU (IOMMU) driver
6453 M:      Marek Szyprowski <[email protected]>
6454 L:      [email protected]
6455 S:      Maintained
6456 F:      drivers/iommu/exynos-iommu.c
6457
6458 EZchip NPS platform support
6459 M:      Vineet Gupta <[email protected]>
6460 M:      Ofer Levi <[email protected]>
6461 S:      Supported
6462 F:      arch/arc/plat-eznps
6463 F:      arch/arc/boot/dts/eznps.dts
6464
6465 F2FS FILE SYSTEM
6466 M:      Jaegeuk Kim <[email protected]>
6467 M:      Chao Yu <[email protected]>
6468 L:      [email protected]
6469 W:      https://f2fs.wiki.kernel.org/
6470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6471 S:      Maintained
6472 F:      Documentation/filesystems/f2fs.rst
6473 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6474 F:      fs/f2fs/
6475 F:      include/linux/f2fs_fs.h
6476 F:      include/trace/events/f2fs.h
6477
6478 F71805F HARDWARE MONITORING DRIVER
6479 M:      Jean Delvare <[email protected]>
6480 L:      [email protected]
6481 S:      Maintained
6482 F:      Documentation/hwmon/f71805f.rst
6483 F:      drivers/hwmon/f71805f.c
6484
6485 FADDR2LINE
6486 M:      Josh Poimboeuf <[email protected]>
6487 S:      Maintained
6488 F:      scripts/faddr2line
6489
6490 FAILOVER MODULE
6491 M:      Sridhar Samudrala <[email protected]>
6492 L:      [email protected]
6493 S:      Supported
6494 F:      net/core/failover.c
6495 F:      include/net/failover.h
6496 F:      Documentation/networking/failover.rst
6497
6498 FANOTIFY
6499 M:      Jan Kara <[email protected]>
6500 R:      Amir Goldstein <[email protected]>
6501 L:      [email protected]
6502 S:      Maintained
6503 F:      fs/notify/fanotify/
6504 F:      include/linux/fanotify.h
6505 F:      include/uapi/linux/fanotify.h
6506
6507 FARSYNC SYNCHRONOUS DRIVER
6508 M:      Kevin Curtis <[email protected]>
6509 W:      http://www.farsite.co.uk/
6510 S:      Supported
6511 F:      drivers/net/wan/farsync.*
6512
6513 FAULT INJECTION SUPPORT
6514 M:      Akinobu Mita <[email protected]>
6515 S:      Supported
6516 F:      Documentation/fault-injection/
6517 F:      lib/fault-inject.c
6518
6519 FBTFT Framebuffer drivers
6520 S:      Orphan
6521 L:      [email protected]
6522 L:      [email protected]
6523 F:      drivers/staging/fbtft/
6524
6525 FC0011 TUNER DRIVER
6526 M:      Michael Buesch <[email protected]>
6527 L:      [email protected]
6528 S:      Maintained
6529 F:      drivers/media/tuners/fc0011.h
6530 F:      drivers/media/tuners/fc0011.c
6531
6532 FC2580 MEDIA DRIVER
6533 M:      Antti Palosaari <[email protected]>
6534 L:      [email protected]
6535 W:      https://linuxtv.org
6536 W:      http://palosaari.fi/linux/
6537 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6538 T:      git git://linuxtv.org/anttip/media_tree.git
6539 S:      Maintained
6540 F:      drivers/media/tuners/fc2580*
6541
6542 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6543 M:      Hannes Reinecke <[email protected]>
6544 L:      [email protected]
6545 W:      www.Open-FCoE.org
6546 S:      Supported
6547 F:      drivers/scsi/libfc/
6548 F:      drivers/scsi/fcoe/
6549 F:      include/scsi/fc/
6550 F:      include/scsi/libfc.h
6551 F:      include/scsi/libfcoe.h
6552 F:      include/uapi/scsi/fc/
6553
6554 FILE LOCKING (flock() and fcntl()/lockf())
6555 M:      Jeff Layton <[email protected]>
6556 M:      "J. Bruce Fields" <[email protected]>
6557 L:      [email protected]
6558 S:      Maintained
6559 F:      include/linux/fcntl.h
6560 F:      include/uapi/linux/fcntl.h
6561 F:      fs/fcntl.c
6562 F:      fs/locks.c
6563
6564 FILESYSTEMS (VFS and infrastructure)
6565 M:      Alexander Viro <[email protected]>
6566 L:      [email protected]
6567 S:      Maintained
6568 F:      fs/*
6569 F:      include/linux/fs.h
6570 F:      include/linux/fs_types.h
6571 F:      include/uapi/linux/fs.h
6572 F:      include/uapi/linux/openat2.h
6573
6574 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6575 M:      Riku Voipio <[email protected]>
6576 L:      [email protected]
6577 S:      Maintained
6578 F:      drivers/hwmon/f75375s.c
6579 F:      include/linux/f75375s.h
6580
6581 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6582 M:      Clemens Ladisch <[email protected]>
6583 M:      Takashi Sakamoto <[email protected]>
6584 L:      [email protected] (moderated for non-subscribers)
6585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6586 S:      Maintained
6587 F:      sound/firewire/
6588 F:      include/uapi/sound/firewire.h
6589
6590 FIREWIRE MEDIA DRIVERS (firedtv)
6591 M:      Stefan Richter <[email protected]>
6592 L:      [email protected]
6593 L:      [email protected]
6594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6595 S:      Maintained
6596 F:      drivers/media/firewire/
6597
6598 FIREWIRE SBP-2 TARGET
6599 M:      Chris Boot <[email protected]>
6600 L:      [email protected]
6601 L:      [email protected]
6602 L:      [email protected]
6603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6604 S:      Maintained
6605 F:      drivers/target/sbp/
6606
6607 FIREWIRE SUBSYSTEM
6608 M:      Stefan Richter <[email protected]>
6609 L:      [email protected]
6610 W:      http://ieee1394.wiki.kernel.org/
6611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6612 S:      Maintained
6613 F:      drivers/firewire/
6614 F:      include/linux/firewire.h
6615 F:      include/uapi/linux/firewire*.h
6616 F:      tools/firewire/
6617
6618 FIRMWARE LOADER (request_firmware)
6619 M:      Luis Chamberlain <[email protected]>
6620 L:      [email protected]
6621 S:      Maintained
6622 F:      Documentation/firmware_class/
6623 F:      drivers/base/firmware_loader/
6624 F:      include/linux/firmware.h
6625
6626 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6627 M:      Joshua Morris <[email protected]>
6628 M:      Philip Kelleher <[email protected]>
6629 S:      Maintained
6630 F:      drivers/block/rsxx/
6631
6632 FLEXTIMER FTM-QUADDEC DRIVER
6633 M:      Patrick Havelange <[email protected]>
6634 L:      [email protected]
6635 S:      Maintained
6636 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6637 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6638 F:      drivers/counter/ftm-quaddec.c
6639
6640 FLOPPY DRIVER
6641 M:      Denis Efremov <[email protected]>
6642 S:      Odd Fixes
6643 L:      [email protected]
6644 F:      drivers/block/floppy.c
6645
6646 FPGA MANAGER FRAMEWORK
6647 M:      Moritz Fischer <[email protected]>
6648 L:      [email protected]
6649 S:      Maintained
6650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6651 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6652 F:      Documentation/fpga/
6653 F:      Documentation/driver-api/fpga/
6654 F:      Documentation/devicetree/bindings/fpga/
6655 F:      drivers/fpga/
6656 F:      include/linux/fpga/
6657 W:      http://www.rocketboards.org
6658
6659 FPGA DFL DRIVERS
6660 M:      Wu Hao <[email protected]>
6661 L:      [email protected]
6662 S:      Maintained
6663 F:      Documentation/fpga/dfl.rst
6664 F:      include/uapi/linux/fpga-dfl.h
6665 F:      drivers/fpga/dfl*
6666
6667 FPU EMULATOR
6668 M:      Bill Metzenthen <[email protected]>
6669 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6670 S:      Maintained
6671 F:      arch/x86/math-emu/
6672
6673 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6674 L:      [email protected]
6675 S:      Orphan
6676 F:      drivers/net/wan/dlci.c
6677 F:      drivers/net/wan/sdla.c
6678
6679 FRAMEBUFFER LAYER
6680 M:      Bartlomiej Zolnierkiewicz <[email protected]>
6681 L:      [email protected]
6682 L:      [email protected]
6683 T:      git git://anongit.freedesktop.org/drm/drm-misc
6684 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6685 S:      Maintained
6686 F:      Documentation/fb/
6687 F:      drivers/video/
6688 F:      include/video/
6689 F:      include/linux/fb.h
6690 F:      include/uapi/video/
6691 F:      include/uapi/linux/fb.h
6692
6693 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6694 M:      Horia Geantă <[email protected]>
6695 M:      Aymen Sghaier <[email protected]>
6696 L:      [email protected]
6697 S:      Maintained
6698 F:      drivers/crypto/caam/
6699 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6700
6701 FREESCALE DIU FRAMEBUFFER DRIVER
6702 M:      Timur Tabi <[email protected]>
6703 L:      [email protected]
6704 S:      Maintained
6705 F:      drivers/video/fbdev/fsl-diu-fb.*
6706
6707 FREESCALE DMA DRIVER
6708 M:      Li Yang <[email protected]>
6709 M:      Zhang Wei <[email protected]>
6710 L:      [email protected]
6711 S:      Maintained
6712 F:      drivers/dma/fsldma.*
6713
6714 FREESCALE ENETC ETHERNET DRIVERS
6715 M:      Claudiu Manoil <[email protected]>
6716 L:      [email protected]
6717 S:      Maintained
6718 F:      drivers/net/ethernet/freescale/enetc/
6719
6720 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6721 M:      Claudiu Manoil <[email protected]>
6722 L:      [email protected]
6723 S:      Maintained
6724 F:      drivers/net/ethernet/freescale/gianfar*
6725 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6726
6727 FREESCALE GPMI NAND DRIVER
6728 M:      Han Xu <[email protected]>
6729 L:      [email protected]
6730 S:      Maintained
6731 F:      drivers/mtd/nand/raw/gpmi-nand/*
6732
6733 FREESCALE I2C CPM DRIVER
6734 M:      Jochen Friedrich <[email protected]>
6735 L:      [email protected]
6736 L:      [email protected]
6737 S:      Maintained
6738 F:      drivers/i2c/busses/i2c-cpm.c
6739
6740 FREESCALE IMX DDR PMU DRIVER
6741 M:      Frank Li <[email protected]>
6742 L:      [email protected]
6743 S:      Maintained
6744 F:      drivers/perf/fsl_imx8_ddr_perf.c
6745 F:      Documentation/admin-guide/perf/imx-ddr.rst
6746 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6747
6748 FREESCALE IMX I2C DRIVER
6749 M:      Oleksij Rempel <[email protected]>
6750 R:      Pengutronix Kernel Team <[email protected]>
6751 L:      [email protected]
6752 S:      Maintained
6753 F:      drivers/i2c/busses/i2c-imx.c
6754 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6755
6756 FREESCALE IMX LPI2C DRIVER
6757 M:      Dong Aisheng <[email protected]>
6758 L:      [email protected]
6759 L:      [email protected]
6760 S:      Maintained
6761 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6762 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6763
6764 FREESCALE IMX / MXC FEC DRIVER
6765 M:      Fugang Duan <[email protected]>
6766 L:      [email protected]
6767 S:      Maintained
6768 F:      drivers/net/ethernet/freescale/fec_main.c
6769 F:      drivers/net/ethernet/freescale/fec_ptp.c
6770 F:      drivers/net/ethernet/freescale/fec.h
6771 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6772
6773 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6774 M:      Sascha Hauer <[email protected]>
6775 R:      Pengutronix Kernel Team <[email protected]>
6776 L:      [email protected]
6777 L:      [email protected] (moderated for non-subscribers)
6778 S:      Maintained
6779 F:      include/linux/platform_data/video-imxfb.h
6780 F:      drivers/video/fbdev/imxfb.c
6781
6782 FREESCALE QORIQ DPAA ETHERNET DRIVER
6783 M:      Madalin Bucur <[email protected]>
6784 L:      [email protected]
6785 S:      Maintained
6786 F:      drivers/net/ethernet/freescale/dpaa
6787
6788 FREESCALE QORIQ DPAA FMAN DRIVER
6789 M:      Madalin Bucur <[email protected]>
6790 L:      [email protected]
6791 S:      Maintained
6792 F:      drivers/net/ethernet/freescale/fman
6793 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6794
6795 FREESCALE QORIQ PTP CLOCK DRIVER
6796 M:      Yangbo Lu <[email protected]>
6797 L:      [email protected]
6798 S:      Maintained
6799 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6800 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6801 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6802 F:      drivers/ptp/ptp_qoriq.c
6803 F:      drivers/ptp/ptp_qoriq_debugfs.c
6804 F:      include/linux/fsl/ptp_qoriq.h
6805 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6806
6807 FREESCALE QUAD SPI DRIVER
6808 M:      Han Xu <[email protected]>
6809 L:      [email protected]
6810 S:      Maintained
6811 F:      drivers/spi/spi-fsl-qspi.c
6812
6813 FREESCALE QUICC ENGINE LIBRARY
6814 M:      Qiang Zhao <[email protected]>
6815 L:      [email protected]
6816 S:      Maintained
6817 F:      drivers/soc/fsl/qe/
6818 F:      include/soc/fsl/*qe*.h
6819 F:      include/soc/fsl/*ucc*.h
6820
6821 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6822 M:      Li Yang <[email protected]>
6823 L:      [email protected]
6824 L:      [email protected]
6825 S:      Maintained
6826 F:      drivers/net/ethernet/freescale/ucc_geth*
6827
6828 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6829 M:      Zhao Qiang <[email protected]>
6830 L:      [email protected]
6831 L:      [email protected]
6832 S:      Maintained
6833 F:      drivers/net/wan/fsl_ucc_hdlc*
6834
6835 FREESCALE QUICC ENGINE UCC UART DRIVER
6836 M:      Timur Tabi <[email protected]>
6837 L:      [email protected]
6838 S:      Maintained
6839 F:      drivers/tty/serial/ucc_uart.c
6840
6841 FREESCALE SOC DRIVERS
6842 M:      Li Yang <[email protected]>
6843 L:      [email protected]
6844 L:      [email protected]
6845 S:      Maintained
6846 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6847 F:      Documentation/devicetree/bindings/soc/fsl/
6848 F:      drivers/soc/fsl/
6849 F:      include/linux/fsl/
6850
6851 FREESCALE SOC FS_ENET DRIVER
6852 M:      Pantelis Antoniou <[email protected]>
6853 L:      [email protected]
6854 L:      [email protected]
6855 S:      Maintained
6856 F:      drivers/net/ethernet/freescale/fs_enet/
6857 F:      include/linux/fs_enet_pd.h
6858
6859 FREESCALE SOC SOUND DRIVERS
6860 M:      Timur Tabi <[email protected]>
6861 M:      Nicolin Chen <[email protected]>
6862 M:      Xiubo Li <[email protected]>
6863 R:      Fabio Estevam <[email protected]>
6864 L:      [email protected] (moderated for non-subscribers)
6865 L:      [email protected]
6866 S:      Maintained
6867 F:      sound/soc/fsl/fsl*
6868 F:      sound/soc/fsl/imx*
6869 F:      sound/soc/fsl/mpc8610_hpcd.c
6870
6871 FREESCALE USB PERIPHERAL DRIVERS
6872 M:      Li Yang <[email protected]>
6873 L:      [email protected]
6874 L:      [email protected]
6875 S:      Maintained
6876 F:      drivers/usb/gadget/udc/fsl*
6877
6878 FREEVXFS FILESYSTEM
6879 M:      Christoph Hellwig <[email protected]>
6880 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6881 S:      Maintained
6882 F:      fs/freevxfs/
6883
6884 FREEZER
6885 M:      "Rafael J. Wysocki" <[email protected]>
6886 M:      Pavel Machek <[email protected]>
6887 L:      [email protected]
6888 S:      Supported
6889 F:      Documentation/power/freezing-of-tasks.rst
6890 F:      include/linux/freezer.h
6891 F:      kernel/freezer.c
6892
6893 FRONTSWAP API
6894 M:      Konrad Rzeszutek Wilk <[email protected]>
6895 L:      [email protected]
6896 S:      Maintained
6897 F:      mm/frontswap.c
6898 F:      include/linux/frontswap.h
6899
6900 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6901 M:      David Howells <[email protected]>
6902 L:      [email protected] (moderated for non-subscribers)
6903 S:      Supported
6904 F:      Documentation/filesystems/caching/
6905 F:      fs/fscache/
6906 F:      include/linux/fscache*.h
6907
6908 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6909 M:      Theodore Y. Ts'o <[email protected]>
6910 M:      Jaegeuk Kim <[email protected]>
6911 M:      Eric Biggers <[email protected]>
6912 L:      [email protected]
6913 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6914 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6915 S:      Supported
6916 F:      fs/crypto/
6917 F:      include/linux/fscrypt*.h
6918 F:      include/uapi/linux/fscrypt.h
6919 F:      Documentation/filesystems/fscrypt.rst
6920
6921 FSI SUBSYSTEM
6922 M:      Jeremy Kerr <[email protected]>
6923 M:      Joel Stanley <[email protected]>
6924 R:      Alistar Popple <[email protected]>
6925 R:      Eddie James <[email protected]>
6926 L:      [email protected]
6927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6928 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6929 S:      Supported
6930 F:      drivers/fsi/
6931 F:      include/linux/fsi*.h
6932 F:      include/trace/events/fsi*.h
6933
6934 FSI-ATTACHED I2C DRIVER
6935 M:      Eddie James <[email protected]>
6936 L:      [email protected]
6937 L:      [email protected] (moderated for non-subscribers)
6938 S:      Maintained
6939 F:      drivers/i2c/busses/i2c-fsi.c
6940 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6941
6942 FSI-ATTACHED SPI DRIVER
6943 M:      Eddie James <[email protected]>
6944 L:      [email protected]
6945 S:      Maintained
6946 F:      drivers/spi/spi-fsi.c
6947 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
6948
6949 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6950 M:      Jan Kara <[email protected]>
6951 R:      Amir Goldstein <[email protected]>
6952 L:      [email protected]
6953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
6954 S:      Maintained
6955 F:      fs/notify/
6956 F:      include/linux/fsnotify*.h
6957
6958 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
6959 M:      Eric Biggers <[email protected]>
6960 M:      Theodore Y. Ts'o <[email protected]>
6961 L:      [email protected]
6962 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6963 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
6964 S:      Supported
6965 F:      fs/verity/
6966 F:      include/linux/fsverity.h
6967 F:      include/uapi/linux/fsverity.h
6968 F:      Documentation/filesystems/fsverity.rst
6969
6970 FUJITSU LAPTOP EXTRAS
6971 M:      Jonathan Woithe <[email protected]>
6972 L:      [email protected]
6973 S:      Maintained
6974 F:      drivers/platform/x86/fujitsu-laptop.c
6975
6976 FUJITSU M-5MO LS CAMERA ISP DRIVER
6977 M:      Kyungmin Park <[email protected]>
6978 M:      Heungjun Kim <[email protected]>
6979 L:      [email protected]
6980 S:      Maintained
6981 F:      drivers/media/i2c/m5mols/
6982 F:      include/media/i2c/m5mols.h
6983
6984 FUJITSU TABLET EXTRAS
6985 M:      Robert Gerlach <[email protected]>
6986 L:      [email protected]
6987 S:      Maintained
6988 F:      drivers/platform/x86/fujitsu-tablet.c
6989
6990 FUSE: FILESYSTEM IN USERSPACE
6991 M:      Miklos Szeredi <[email protected]>
6992 L:      [email protected]
6993 W:      http://fuse.sourceforge.net/
6994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6995 S:      Maintained
6996 F:      fs/fuse/
6997 F:      include/uapi/linux/fuse.h
6998 F:      Documentation/filesystems/fuse.rst
6999
7000 FUTEX SUBSYSTEM
7001 M:      Thomas Gleixner <[email protected]>
7002 M:      Ingo Molnar <[email protected]>
7003 R:      Peter Zijlstra <[email protected]>
7004 R:      Darren Hart <[email protected]>
7005 L:      [email protected]
7006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7007 S:      Maintained
7008 F:      kernel/futex.c
7009 F:      include/asm-generic/futex.h
7010 F:      include/linux/futex.h
7011 F:      include/uapi/linux/futex.h
7012 F:      tools/testing/selftests/futex/
7013 F:      tools/perf/bench/futex*
7014 F:      Documentation/*futex*
7015
7016 GCC PLUGINS
7017 M:      Kees Cook <[email protected]>
7018 R:      Emese Revfy <[email protected]>
7019 L:      [email protected]
7020 S:      Maintained
7021 F:      scripts/gcc-plugins/
7022 F:      scripts/gcc-plugin.sh
7023 F:      scripts/Makefile.gcc-plugins
7024 F:      Documentation/kbuild/gcc-plugins.rst
7025
7026 GASKET DRIVER FRAMEWORK
7027 M:      Rob Springer <[email protected]>
7028 M:      Todd Poynor <[email protected]>
7029 M:      Ben Chan <[email protected]>
7030 S:      Maintained
7031 F:      drivers/staging/gasket/
7032
7033 GCOV BASED KERNEL PROFILING
7034 M:      Peter Oberparleiter <[email protected]>
7035 S:      Maintained
7036 F:      kernel/gcov/
7037 F:      Documentation/dev-tools/gcov.rst
7038
7039 GDB KERNEL DEBUGGING HELPER SCRIPTS
7040 M:      Jan Kiszka <[email protected]>
7041 M:      Kieran Bingham <[email protected]>
7042 S:      Supported
7043 F:      scripts/gdb/
7044
7045 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7046 M:      Achim Leubner <[email protected]>
7047 L:      [email protected]
7048 W:      http://www.icp-vortex.com/
7049 S:      Supported
7050 F:      drivers/scsi/gdt*
7051
7052 GEMTEK FM RADIO RECEIVER DRIVER
7053 M:      Hans Verkuil <[email protected]>
7054 L:      [email protected]
7055 T:      git git://linuxtv.org/media_tree.git
7056 W:      https://linuxtv.org
7057 S:      Maintained
7058 F:      drivers/media/radio/radio-gemtek*
7059
7060 GENERIC ARCHITECTURE TOPOLOGY
7061 M:      Sudeep Holla <[email protected]>
7062 L:      [email protected]
7063 S:      Maintained
7064 F:      drivers/base/arch_topology.c
7065 F:      include/linux/arch_topology.h
7066
7067 GENERIC GPIO I2C DRIVER
7068 M:      Wolfram Sang <[email protected]>
7069 S:      Supported
7070 F:      drivers/i2c/busses/i2c-gpio.c
7071 F:      include/linux/platform_data/i2c-gpio.h
7072
7073 GENERIC GPIO I2C MULTIPLEXER DRIVER
7074 M:      Peter Korsgaard <[email protected]>
7075 L:      [email protected]
7076 S:      Supported
7077 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7078 F:      include/linux/platform_data/i2c-mux-gpio.h
7079 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7080
7081 GENERIC HDLC (WAN) DRIVERS
7082 M:      Krzysztof Halasa <[email protected]>
7083 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7084 S:      Maintained
7085 F:      drivers/net/wan/c101.c
7086 F:      drivers/net/wan/hd6457*
7087 F:      drivers/net/wan/hdlc*
7088 F:      drivers/net/wan/n2.c
7089 F:      drivers/net/wan/pc300too.c
7090 F:      drivers/net/wan/pci200syn.c
7091 F:      drivers/net/wan/wanxl*
7092
7093 GENERIC INCLUDE/ASM HEADER FILES
7094 M:      Arnd Bergmann <[email protected]>
7095 L:      [email protected]
7096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7097 S:      Maintained
7098 F:      include/asm-generic/
7099 F:      include/uapi/asm-generic/
7100
7101 GENERIC PHY FRAMEWORK
7102 M:      Kishon Vijay Abraham I <[email protected]>
7103 L:      [email protected]
7104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
7105 S:      Supported
7106 F:      drivers/phy/
7107 F:      include/linux/phy/
7108 F:      Documentation/devicetree/bindings/phy/
7109
7110 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7111 M:      Wolfram Sang <[email protected]>
7112 S:      Supported
7113 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7114
7115 GENERIC PM DOMAINS
7116 M:      "Rafael J. Wysocki" <[email protected]>
7117 M:      Kevin Hilman <[email protected]>
7118 M:      Ulf Hansson <[email protected]>
7119 L:      [email protected]
7120 S:      Supported
7121 F:      drivers/base/power/domain*.c
7122 F:      include/linux/pm_domain.h
7123 F:      Documentation/devicetree/bindings/power/power?domain*
7124
7125 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7126 M:      Eugen Hristev <[email protected]>
7127 L:      [email protected]
7128 S:      Maintained
7129 F:      drivers/input/touchscreen/resistive-adc-touch.c
7130
7131 GENERIC UIO DRIVER FOR PCI DEVICES
7132 M:      "Michael S. Tsirkin" <[email protected]>
7133 L:      [email protected]
7134 S:      Supported
7135 F:      drivers/uio/uio_pci_generic.c
7136
7137 GENERIC VDSO LIBRARY
7138 M:      Andy Lutomirski <[email protected]>
7139 M:      Thomas Gleixner <[email protected]>
7140 M:      Vincenzo Frascino <[email protected]>
7141 L:      [email protected]
7142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7143 S:      Maintained
7144 F:      lib/vdso/
7145 F:      kernel/time/vsyscall.c
7146 F:      include/vdso/
7147 F:      include/asm-generic/vdso/vsyscall.h
7148
7149 GENWQE (IBM Generic Workqueue Card)
7150 M:      Frank Haverkamp <[email protected]>
7151 S:      Supported
7152 F:      drivers/misc/genwqe/
7153
7154 GET_MAINTAINER SCRIPT
7155 M:      Joe Perches <[email protected]>
7156 S:      Maintained
7157 F:      scripts/get_maintainer.pl
7158
7159 GFS2 FILE SYSTEM
7160 M:      Bob Peterson <[email protected]>
7161 M:      Andreas Gruenbacher <[email protected]>
7162 L:      [email protected]
7163 W:      http://sources.redhat.com/cluster/
7164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7165 S:      Supported
7166 F:      Documentation/filesystems/gfs2*.txt
7167 F:      fs/gfs2/
7168 F:      include/uapi/linux/gfs2_ondisk.h
7169
7170 GNSS SUBSYSTEM
7171 M:      Johan Hovold <[email protected]>
7172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7173 S:      Maintained
7174 F:      Documentation/ABI/testing/sysfs-class-gnss
7175 F:      Documentation/devicetree/bindings/gnss/
7176 F:      drivers/gnss/
7177 F:      include/linux/gnss.h
7178
7179 GO7007 MPEG CODEC
7180 M:      Hans Verkuil <[email protected]>
7181 L:      [email protected]
7182 S:      Maintained
7183 F:      drivers/media/usb/go7007/
7184
7185 GOODIX TOUCHSCREEN
7186 M:      Bastien Nocera <[email protected]>
7187 L:      [email protected]
7188 S:      Maintained
7189 F:      drivers/input/touchscreen/goodix.c
7190
7191 GOOGLE ETHERNET DRIVERS
7192 M:      Catherine Sullivan <[email protected]>
7193 R:      Sagi Shahar <[email protected]>
7194 R:      Jon Olson <[email protected]>
7195 L:      [email protected]
7196 S:      Supported
7197 F:      Documentation/networking/device_drivers/google/gve.rst
7198 F:      drivers/net/ethernet/google
7199
7200 GPD POCKET FAN DRIVER
7201 M:      Hans de Goede <[email protected]>
7202 L:      [email protected]
7203 S:      Maintained
7204 F:      drivers/platform/x86/gpd-pocket-fan.c
7205
7206 GPIO ACPI SUPPORT
7207 M:      Mika Westerberg <[email protected]>
7208 M:      Andy Shevchenko <[email protected]>
7209 L:      [email protected]
7210 L:      [email protected]
7211 S:      Maintained
7212 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7213 F:      drivers/gpio/gpiolib-acpi.c
7214 F:      drivers/gpio/gpiolib-acpi.h
7215
7216 GPIO IR Transmitter
7217 M:      Sean Young <[email protected]>
7218 L:      [email protected]
7219 S:      Maintained
7220 F:      drivers/media/rc/gpio-ir-tx.c
7221
7222 GPIO MOCKUP DRIVER
7223 M:      Bamvor Jian Zhang <[email protected]>
7224 L:      [email protected]
7225 S:      Maintained
7226 F:      drivers/gpio/gpio-mockup.c
7227 F:      tools/testing/selftests/gpio/
7228
7229 GPIO SUBSYSTEM
7230 M:      Linus Walleij <[email protected]>
7231 M:      Bartosz Golaszewski <[email protected]>
7232 L:      [email protected]
7233 S:      Maintained
7234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7235 F:      Documentation/ABI/obsolete/sysfs-gpio
7236 F:      Documentation/ABI/testing/gpio-cdev
7237 F:      Documentation/admin-guide/gpio/
7238 F:      Documentation/devicetree/bindings/gpio/
7239 F:      Documentation/driver-api/gpio/
7240 F:      drivers/gpio/
7241 F:      include/asm-generic/gpio.h
7242 F:      include/linux/gpio/
7243 F:      include/linux/gpio.h
7244 F:      include/linux/of_gpio.h
7245 F:      include/uapi/linux/gpio.h
7246 F:      tools/gpio/
7247
7248 GRE DEMULTIPLEXER DRIVER
7249 M:      Dmitry Kozlov <[email protected]>
7250 L:      [email protected]
7251 S:      Maintained
7252 F:      net/ipv4/gre_demux.c
7253 F:      net/ipv4/gre_offload.c
7254 F:      include/net/gre.h
7255
7256 GRETH 10/100/1G Ethernet MAC device driver
7257 M:      Andreas Larsson <[email protected]>
7258 L:      [email protected]
7259 S:      Maintained
7260 F:      drivers/net/ethernet/aeroflex/
7261
7262 GREYBUS AUDIO PROTOCOLS DRIVERS
7263 M:      Vaibhav Agarwal <[email protected]>
7264 M:      Mark Greer <[email protected]>
7265 S:      Maintained
7266 F:      drivers/staging/greybus/audio_apbridgea.c
7267 F:      drivers/staging/greybus/audio_apbridgea.h
7268 F:      drivers/staging/greybus/audio_codec.c
7269 F:      drivers/staging/greybus/audio_codec.h
7270 F:      drivers/staging/greybus/audio_gb.c
7271 F:      drivers/staging/greybus/audio_manager.c
7272 F:      drivers/staging/greybus/audio_manager.h
7273 F:      drivers/staging/greybus/audio_manager_module.c
7274 F:      drivers/staging/greybus/audio_manager_private.h
7275 F:      drivers/staging/greybus/audio_manager_sysfs.c
7276 F:      drivers/staging/greybus/audio_module.c
7277 F:      drivers/staging/greybus/audio_topology.c
7278
7279 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7280 M:      Viresh Kumar <[email protected]>
7281 S:      Maintained
7282 F:      drivers/staging/greybus/authentication.c
7283 F:      drivers/staging/greybus/bootrom.c
7284 F:      drivers/staging/greybus/firmware.h
7285 F:      drivers/staging/greybus/fw-core.c
7286 F:      drivers/staging/greybus/fw-download.c
7287 F:      drivers/staging/greybus/fw-management.c
7288 F:      drivers/staging/greybus/greybus_authentication.h
7289 F:      drivers/staging/greybus/greybus_firmware.h
7290 F:      drivers/staging/greybus/hid.c
7291 F:      drivers/staging/greybus/i2c.c
7292 F:      drivers/staging/greybus/spi.c
7293 F:      drivers/staging/greybus/spilib.c
7294 F:      drivers/staging/greybus/spilib.h
7295
7296 GREYBUS LOOPBACK DRIVER
7297 M:      Bryan O'Donoghue <[email protected]>
7298 S:      Maintained
7299 F:      drivers/staging/greybus/loopback.c
7300
7301 GREYBUS PLATFORM DRIVERS
7302 M:      Vaibhav Hiremath <[email protected]>
7303 S:      Maintained
7304 F:      drivers/staging/greybus/arche-platform.c
7305 F:      drivers/staging/greybus/arche-apb-ctrl.c
7306 F:      drivers/staging/greybus/arche_platform.h
7307
7308 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7309 M:      Rui Miguel Silva <[email protected]>
7310 S:      Maintained
7311 F:      drivers/staging/greybus/sdio.c
7312 F:      drivers/staging/greybus/light.c
7313 F:      drivers/staging/greybus/gpio.c
7314 F:      drivers/staging/greybus/power_supply.c
7315 F:      drivers/staging/greybus/spi.c
7316 F:      drivers/staging/greybus/spilib.c
7317
7318 GREYBUS SUBSYSTEM
7319 M:      Johan Hovold <[email protected]>
7320 M:      Alex Elder <[email protected]>
7321 M:      Greg Kroah-Hartman <[email protected]>
7322 S:      Maintained
7323 F:      drivers/staging/greybus/
7324 F:      drivers/greybus/
7325 F:      include/linux/greybus.h
7326 F:      include/linux/greybus/
7327 L:      [email protected] (moderated for non-subscribers)
7328
7329 GREYBUS UART PROTOCOLS DRIVERS
7330 M:      David Lin <[email protected]>
7331 S:      Maintained
7332 F:      drivers/staging/greybus/uart.c
7333 F:      drivers/staging/greybus/log.c
7334
7335 GS1662 VIDEO SERIALIZER
7336 M:      Charles-Antoine Couret <[email protected]>
7337 L:      [email protected]
7338 T:      git git://linuxtv.org/media_tree.git
7339 S:      Maintained
7340 F:      drivers/media/spi/gs1662.c
7341
7342 GSPCA FINEPIX SUBDRIVER
7343 M:      Frank Zago <[email protected]>
7344 L:      [email protected]
7345 T:      git git://linuxtv.org/media_tree.git
7346 S:      Maintained
7347 F:      drivers/media/usb/gspca/finepix.c
7348
7349 GSPCA GL860 SUBDRIVER
7350 M:      Olivier Lorin <[email protected]>
7351 L:      [email protected]
7352 T:      git git://linuxtv.org/media_tree.git
7353 S:      Maintained
7354 F:      drivers/media/usb/gspca/gl860/
7355
7356 GSPCA M5602 SUBDRIVER
7357 M:      Erik Andren <[email protected]>
7358 L:      [email protected]
7359 T:      git git://linuxtv.org/media_tree.git
7360 S:      Maintained
7361 F:      drivers/media/usb/gspca/m5602/
7362
7363 GSPCA PAC207 SONIXB SUBDRIVER
7364 M:      Hans Verkuil <[email protected]>
7365 L:      [email protected]
7366 T:      git git://linuxtv.org/media_tree.git
7367 S:      Odd Fixes
7368 F:      drivers/media/usb/gspca/pac207.c
7369
7370 GSPCA SN9C20X SUBDRIVER
7371 M:      Brian Johnson <[email protected]>
7372 L:      [email protected]
7373 T:      git git://linuxtv.org/media_tree.git
7374 S:      Maintained
7375 F:      drivers/media/usb/gspca/sn9c20x.c
7376
7377 GSPCA T613 SUBDRIVER
7378 M:      Leandro Costantino <[email protected]>
7379 L:      [email protected]
7380 T:      git git://linuxtv.org/media_tree.git
7381 S:      Maintained
7382 F:      drivers/media/usb/gspca/t613.c
7383
7384 GSPCA USB WEBCAM DRIVER
7385 M:      Hans Verkuil <[email protected]>
7386 L:      [email protected]
7387 T:      git git://linuxtv.org/media_tree.git
7388 S:      Odd Fixes
7389 F:      drivers/media/usb/gspca/
7390
7391 GTP (GPRS Tunneling Protocol)
7392 M:      Pablo Neira Ayuso <[email protected]>
7393 M:      Harald Welte <[email protected]>
7394 L:      [email protected]
7395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7396 S:      Maintained
7397 F:      drivers/net/gtp.c
7398
7399 GUID PARTITION TABLE (GPT)
7400 M:      Davidlohr Bueso <[email protected]>
7401 L:      [email protected]
7402 S:      Maintained
7403 F:      block/partitions/efi.*
7404
7405 H8/300 ARCHITECTURE
7406 M:      Yoshinori Sato <[email protected]>
7407 L:      [email protected] (moderated for non-subscribers)
7408 W:      http://uclinux-h8.sourceforge.jp
7409 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7410 S:      Maintained
7411 F:      arch/h8300/
7412 F:      drivers/clocksource/h8300_*.c
7413 F:      drivers/clk/h8300/
7414 F:      drivers/irqchip/irq-renesas-h8*.c
7415
7416 HABANALABS PCI DRIVER
7417 M:      Oded Gabbay <[email protected]>
7418 T:      git https://github.com/HabanaAI/linux.git
7419 S:      Supported
7420 F:      drivers/misc/habanalabs/
7421 F:      include/uapi/misc/habanalabs.h
7422 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7423 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7424
7425 HACKRF MEDIA DRIVER
7426 M:      Antti Palosaari <[email protected]>
7427 L:      [email protected]
7428 W:      https://linuxtv.org
7429 W:      http://palosaari.fi/linux/
7430 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7431 T:      git git://linuxtv.org/anttip/media_tree.git
7432 S:      Maintained
7433 F:      drivers/media/usb/hackrf/
7434
7435 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7436 M:      Frank Seidel <[email protected]>
7437 L:      [email protected]
7438 S:      Maintained
7439 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7440 F:      drivers/platform/x86/hdaps.c
7441
7442 HARDWARE MONITORING
7443 M:      Jean Delvare <[email protected]>
7444 M:      Guenter Roeck <[email protected]>
7445 L:      [email protected]
7446 W:      http://hwmon.wiki.kernel.org/
7447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7448 S:      Maintained
7449 F:      Documentation/devicetree/bindings/hwmon/
7450 F:      Documentation/hwmon/
7451 F:      drivers/hwmon/
7452 F:      include/linux/hwmon*.h
7453 F:      include/trace/events/hwmon*.h
7454
7455 HARDWARE RANDOM NUMBER GENERATOR CORE
7456 M:      Matt Mackall <[email protected]>
7457 M:      Herbert Xu <[email protected]>
7458 L:      [email protected]
7459 S:      Odd fixes
7460 F:      Documentation/devicetree/bindings/rng/
7461 F:      Documentation/admin-guide/hw_random.rst
7462 F:      drivers/char/hw_random/
7463 F:      include/linux/hw_random.h
7464
7465 HARDWARE TRACING FACILITIES
7466 M:      Alexander Shishkin <[email protected]>
7467 S:      Maintained
7468 F:      drivers/hwtracing/
7469
7470 HARDWARE SPINLOCK CORE
7471 M:      Ohad Ben-Cohen <[email protected]>
7472 M:      Bjorn Andersson <[email protected]>
7473 R:      Baolin Wang <[email protected]>
7474 L:      [email protected]
7475 S:      Maintained
7476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7477 F:      Documentation/devicetree/bindings/hwlock/
7478 F:      Documentation/hwspinlock.txt
7479 F:      drivers/hwspinlock/
7480 F:      include/linux/hwspinlock.h
7481
7482 HARMONY SOUND DRIVER
7483 L:      [email protected]
7484 S:      Maintained
7485 F:      sound/parisc/harmony.*
7486
7487 HDPVR USB VIDEO ENCODER DRIVER
7488 M:      Hans Verkuil <[email protected]>
7489 L:      [email protected]
7490 T:      git git://linuxtv.org/media_tree.git
7491 W:      https://linuxtv.org
7492 S:      Odd Fixes
7493 F:      drivers/media/usb/hdpvr/
7494
7495 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7496 M:      Jerry Hoemann <[email protected]>
7497 S:      Supported
7498 F:      Documentation/watchdog/hpwdt.rst
7499 F:      drivers/watchdog/hpwdt.c
7500
7501 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7502 M:      Don Brace <[email protected]>
7503 L:      [email protected]
7504 L:      [email protected]
7505 S:      Supported
7506 F:      Documentation/scsi/hpsa.rst
7507 F:      drivers/scsi/hpsa*.[ch]
7508 F:      include/linux/cciss*.h
7509 F:      include/uapi/linux/cciss*.h
7510
7511 HFI1 DRIVER
7512 M:      Mike Marciniszyn <[email protected]>
7513 M:      Dennis Dalessandro <[email protected]>
7514 L:      [email protected]
7515 S:      Supported
7516 F:      drivers/infiniband/hw/hfi1
7517
7518 HFS FILESYSTEM
7519 L:      [email protected]
7520 S:      Orphan
7521 F:      Documentation/filesystems/hfs.rst
7522 F:      fs/hfs/
7523
7524 HFSPLUS FILESYSTEM
7525 L:      [email protected]
7526 S:      Orphan
7527 F:      Documentation/filesystems/hfsplus.rst
7528 F:      fs/hfsplus/
7529
7530 HGA FRAMEBUFFER DRIVER
7531 M:      Ferenc Bakonyi <[email protected]>
7532 L:      [email protected]
7533 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7534 S:      Maintained
7535 F:      drivers/video/fbdev/hgafb.c
7536
7537 HIBERNATION (aka Software Suspend, aka swsusp)
7538 M:      "Rafael J. Wysocki" <[email protected]>
7539 M:      Pavel Machek <[email protected]>
7540 L:      [email protected]
7541 B:      https://bugzilla.kernel.org
7542 S:      Supported
7543 F:      arch/x86/power/
7544 F:      drivers/base/power/
7545 F:      kernel/power/
7546 F:      include/linux/suspend.h
7547 F:      include/linux/freezer.h
7548 F:      include/linux/pm.h
7549 F:      arch/*/include/asm/suspend*.h
7550
7551 HID CORE LAYER
7552 M:      Jiri Kosina <[email protected]>
7553 M:      Benjamin Tissoires <[email protected]>
7554 L:      [email protected]
7555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7556 S:      Maintained
7557 F:      drivers/hid/
7558 F:      include/linux/hid*
7559 F:      include/uapi/linux/hid*
7560
7561 HID SENSOR HUB DRIVERS
7562 M:      Jiri Kosina <[email protected]>
7563 M:      Jonathan Cameron <[email protected]>
7564 M:      Srinivas Pandruvada <[email protected]>
7565 L:      [email protected]
7566 L:      [email protected]
7567 S:      Maintained
7568 F:      Documentation/hid/hid-sensor*
7569 F:      drivers/hid/hid-sensor-*
7570 F:      drivers/iio/*/hid-*
7571 F:      include/linux/hid-sensor-*
7572
7573 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7574 M:      Thomas Gleixner <[email protected]>
7575 L:      [email protected]
7576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7577 S:      Maintained
7578 F:      Documentation/timers/
7579 F:      kernel/time/hrtimer.c
7580 F:      kernel/time/clockevents.c
7581 F:      kernel/time/timer_*.c
7582 F:      include/linux/clockchips.h
7583 F:      include/linux/hrtimer.h
7584
7585 HIGH-SPEED SCC DRIVER FOR AX.25
7586 L:      [email protected]
7587 S:      Orphan
7588 F:      drivers/net/hamradio/dmascc.c
7589 F:      drivers/net/hamradio/scc.c
7590
7591 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7592 M:      HighPoint Linux Team <[email protected]>
7593 W:      http://www.highpoint-tech.com
7594 S:      Supported
7595 F:      Documentation/scsi/hptiop.rst
7596 F:      drivers/scsi/hptiop.c
7597
7598 HIPPI
7599 M:      Jes Sorensen <[email protected]>
7600 L:      [email protected]
7601 S:      Maintained
7602 F:      include/linux/hippidevice.h
7603 F:      include/uapi/linux/if_hippi.h
7604 F:      net/802/hippi.c
7605 F:      drivers/net/hippi/
7606
7607 HISILICON DMA DRIVER
7608 M:      Zhou Wang <[email protected]>
7609 L:      [email protected]
7610 S:      Maintained
7611 F:      drivers/dma/hisi_dma.c
7612
7613 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7614 M:      Zaibo Xu <[email protected]>
7615 L:      [email protected]
7616 S:      Maintained
7617 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7618 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7619 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7620 F:      drivers/crypto/hisilicon/sec2/sec.h
7621 F:      Documentation/ABI/testing/debugfs-hisi-sec
7622
7623 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7624 M:      Zaibo Xu <[email protected]>
7625 L:      [email protected]
7626 S:      Maintained
7627 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7628 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7629 F:      drivers/crypto/hisilicon/hpre/hpre.h
7630 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7631
7632 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7633 M:      Yisen Zhuang <[email protected]>
7634 M:      Salil Mehta <[email protected]>
7635 L:      [email protected]
7636 W:      http://www.hisilicon.com
7637 S:      Maintained
7638 F:      drivers/net/ethernet/hisilicon/hns3/
7639
7640 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7641 M:      Zaibo Xu <[email protected]>
7642 S:      Maintained
7643 F:      drivers/char/hw_random/hisi-trng-v2.c
7644
7645 HISILICON LPC BUS DRIVER
7646 M:      [email protected]
7647 W:      http://www.hisilicon.com
7648 S:      Maintained
7649 F:      drivers/bus/hisi_lpc.c
7650 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7651
7652 HISILICON NETWORK SUBSYSTEM DRIVER
7653 M:      Yisen Zhuang <[email protected]>
7654 M:      Salil Mehta <[email protected]>
7655 L:      [email protected]
7656 W:      http://www.hisilicon.com
7657 S:      Maintained
7658 F:      drivers/net/ethernet/hisilicon/
7659 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7660
7661 HISILICON PMU DRIVER
7662 M:      Shaokun Zhang <[email protected]>
7663 W:      http://www.hisilicon.com
7664 S:      Supported
7665 F:      drivers/perf/hisilicon
7666 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7667
7668 HISILICON ROCE DRIVER
7669 M:      Lijun Ou <[email protected]>
7670 M:      Wei Hu(Xavier) <[email protected]>
7671 M:      Weihang Li <[email protected]>
7672 L:      [email protected]
7673 S:      Maintained
7674 F:      drivers/infiniband/hw/hns/
7675 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7676
7677 HISILICON SAS Controller
7678 M:      John Garry <[email protected]>
7679 W:      http://www.hisilicon.com
7680 S:      Supported
7681 F:      drivers/scsi/hisi_sas/
7682 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7683
7684 HISILICON V3XX SPI NOR FLASH Controller Driver
7685 M:      John Garry <[email protected]>
7686 W:      http://www.hisilicon.com
7687 S:      Maintained
7688 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7689
7690 HISILICON QM AND ZIP Controller DRIVER
7691 M:      Zhou Wang <[email protected]>
7692 L:      [email protected]
7693 S:      Maintained
7694 F:      drivers/crypto/hisilicon/qm.c
7695 F:      drivers/crypto/hisilicon/qm.h
7696 F:      drivers/crypto/hisilicon/sgl.c
7697 F:      drivers/crypto/hisilicon/zip/
7698 F:      Documentation/ABI/testing/debugfs-hisi-zip
7699
7700 HMM - Heterogeneous Memory Management
7701 M:      Jérôme Glisse <[email protected]>
7702 L:      [email protected]
7703 S:      Maintained
7704 F:      mm/hmm*
7705 F:      include/linux/hmm*
7706 F:      Documentation/vm/hmm.rst
7707
7708 HOST AP DRIVER
7709 M:      Jouni Malinen <[email protected]>
7710 L:      [email protected]
7711 W:      http://w1.fi/hostap-driver.html
7712 S:      Obsolete
7713 F:      drivers/net/wireless/intersil/hostap/
7714
7715 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7716 L:      [email protected]
7717 S:      Orphan
7718 F:      drivers/platform/x86/tc1100-wmi.c
7719
7720 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7721 M:      Jaroslav Kysela <[email protected]>
7722 S:      Obsolete
7723 F:      drivers/staging/hp/hp100.*
7724
7725 HPET:   High Precision Event Timers driver
7726 M:      Clemens Ladisch <[email protected]>
7727 S:      Maintained
7728 F:      Documentation/timers/hpet.rst
7729 F:      drivers/char/hpet.c
7730 F:      include/linux/hpet.h
7731 F:      include/uapi/linux/hpet.h
7732
7733 HPET:   x86
7734 S:      Orphan
7735 F:      arch/x86/kernel/hpet.c
7736 F:      arch/x86/include/asm/hpet.h
7737
7738 HPFS FILESYSTEM
7739 M:      Mikulas Patocka <[email protected]>
7740 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7741 S:      Maintained
7742 F:      fs/hpfs/
7743
7744 HSI SUBSYSTEM
7745 M:      Sebastian Reichel <[email protected]>
7746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7747 S:      Maintained
7748 F:      Documentation/ABI/testing/sysfs-bus-hsi
7749 F:      Documentation/driver-api/hsi.rst
7750 F:      drivers/hsi/
7751 F:      include/linux/hsi/
7752 F:      include/uapi/linux/hsi/
7753
7754 HSO 3G MODEM DRIVER
7755 L:      [email protected]
7756 S:      Orphan
7757 F:      drivers/net/usb/hso.c
7758
7759 HSR NETWORK PROTOCOL
7760 L:      [email protected]
7761 S:      Orphan
7762 F:      net/hsr/
7763
7764 HT16K33 LED CONTROLLER DRIVER
7765 M:      Robin van der Gracht <[email protected]>
7766 S:      Maintained
7767 F:      drivers/auxdisplay/ht16k33.c
7768 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7769
7770 HTCPEN TOUCHSCREEN DRIVER
7771 M:      Pau Oliva Fora <[email protected]>
7772 L:      [email protected]
7773 S:      Maintained
7774 F:      drivers/input/touchscreen/htcpen.c
7775
7776 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7777 M:      Lorenzo Bianconi <[email protected]>
7778 L:      [email protected]
7779 W:      http://www.st.com/
7780 S:      Maintained
7781 F:      drivers/iio/humidity/hts221*
7782 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7783
7784 HUAWEI ETHERNET DRIVER
7785 M:      Aviad Krawczyk <[email protected]>
7786 L:      [email protected]
7787 S:      Supported
7788 F:      Documentation/networking/hinic.txt
7789 F:      drivers/net/ethernet/huawei/hinic/
7790
7791 HUGETLB FILESYSTEM
7792 M:      Mike Kravetz <[email protected]>
7793 L:      [email protected]
7794 S:      Maintained
7795 F:      fs/hugetlbfs/
7796 F:      mm/hugetlb.c
7797 F:      include/linux/hugetlb.h
7798 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7799 F:      Documentation/vm/hugetlbfs_reserv.rst
7800 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7801
7802 HVA ST MEDIA DRIVER
7803 M:      Jean-Christophe Trotin <[email protected]>
7804 L:      [email protected]
7805 T:      git git://linuxtv.org/media_tree.git
7806 W:      https://linuxtv.org
7807 S:      Supported
7808 F:      drivers/media/platform/sti/hva
7809
7810 HWPOISON MEMORY FAILURE HANDLING
7811 M:      Naoya Horiguchi <[email protected]>
7812 L:      [email protected]
7813 S:      Maintained
7814 F:      mm/memory-failure.c
7815 F:      mm/hwpoison-inject.c
7816
7817 HYGON PROCESSOR SUPPORT
7818 M:      Pu Wen <[email protected]>
7819 L:      [email protected]
7820 S:      Maintained
7821 F:      arch/x86/kernel/cpu/hygon.c
7822
7823 HYNIX HI556 SENSOR DRIVER
7824 M:      Shawn Tu <[email protected]>
7825 L:      [email protected]
7826 T:      git git://linuxtv.org/media_tree.git
7827 S:      Maintained
7828 F:      drivers/media/i2c/hi556.c
7829
7830 Hyper-V CORE AND DRIVERS
7831 M:      "K. Y. Srinivasan" <[email protected]>
7832 M:      Haiyang Zhang <[email protected]>
7833 M:      Stephen Hemminger <[email protected]>
7834 M:      Wei Liu <[email protected]>
7835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7836 L:      [email protected]
7837 S:      Supported
7838 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7839 F:      arch/x86/include/asm/mshyperv.h
7840 F:      arch/x86/include/asm/trace/hyperv.h
7841 F:      arch/x86/include/asm/hyperv-tlfs.h
7842 F:      arch/x86/kernel/cpu/mshyperv.c
7843 F:      arch/x86/hyperv
7844 F:      drivers/clocksource/hyperv_timer.c
7845 F:      drivers/hid/hid-hyperv.c
7846 F:      drivers/hv/
7847 F:      drivers/input/serio/hyperv-keyboard.c
7848 F:      drivers/pci/controller/pci-hyperv.c
7849 F:      drivers/pci/controller/pci-hyperv-intf.c
7850 F:      drivers/net/hyperv/
7851 F:      drivers/scsi/storvsc_drv.c
7852 F:      drivers/uio/uio_hv_generic.c
7853 F:      drivers/video/fbdev/hyperv_fb.c
7854 F:      drivers/iommu/hyperv-iommu.c
7855 F:      net/vmw_vsock/hyperv_transport.c
7856 F:      include/clocksource/hyperv_timer.h
7857 F:      include/linux/hyperv.h
7858 F:      include/uapi/linux/hyperv.h
7859 F:      include/asm-generic/mshyperv.h
7860 F:      tools/hv/
7861 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7862 F:      Documentation/ABI/testing/debugfs-hyperv
7863
7864 HYPERBUS SUPPORT
7865 M:      Vignesh Raghavendra <[email protected]>
7866 L:      [email protected]
7867 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
7869 C:      irc://irc.oftc.net/mtd
7870 S:      Supported
7871 F:      drivers/mtd/hyperbus/
7872 F:      include/linux/mtd/hyperbus.h
7873 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7874 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7875
7876 HYPERVISOR VIRTUAL CONSOLE DRIVER
7877 L:      [email protected]
7878 S:      Odd Fixes
7879 F:      drivers/tty/hvc/
7880
7881 I2C ACPI SUPPORT
7882 M:      Mika Westerberg <[email protected]>
7883 L:      [email protected]
7884 L:      [email protected]
7885 S:      Maintained
7886 F:      drivers/i2c/i2c-core-acpi.c
7887
7888 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7889 M:      Ajay Gupta <[email protected]>
7890 L:      [email protected]
7891 S:      Maintained
7892 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7893 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7894
7895 I2C MUXES
7896 M:      Peter Rosin <[email protected]>
7897 L:      [email protected]
7898 S:      Maintained
7899 F:      Documentation/i2c/i2c-topology.rst
7900 F:      Documentation/i2c/muxes/
7901 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7902 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7903 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7904 F:      drivers/i2c/i2c-mux.c
7905 F:      drivers/i2c/muxes/
7906 F:      include/linux/i2c-mux.h
7907
7908 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7909 M:      Gregory CLEMENT <[email protected]>
7910 L:      [email protected]
7911 S:      Maintained
7912 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7913 F:      drivers/i2c/busses/i2c-mv64xxx.c
7914
7915 I2C OVER PARALLEL PORT
7916 M:      Jean Delvare <[email protected]>
7917 L:      [email protected]
7918 S:      Maintained
7919 F:      Documentation/i2c/busses/i2c-parport.rst
7920 F:      drivers/i2c/busses/i2c-parport.c
7921
7922 I2C SUBSYSTEM
7923 M:      Wolfram Sang <[email protected]>
7924 L:      [email protected]
7925 W:      https://i2c.wiki.kernel.org/
7926 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7928 S:      Maintained
7929 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7930 F:      Documentation/i2c/
7931 F:      drivers/i2c/*
7932 F:      include/linux/i2c.h
7933 F:      include/linux/i2c-dev.h
7934 F:      include/linux/i2c-smbus.h
7935 F:      include/uapi/linux/i2c.h
7936 F:      include/uapi/linux/i2c-*.h
7937
7938 I2C SUBSYSTEM HOST DRIVERS
7939 L:      [email protected]
7940 W:      https://i2c.wiki.kernel.org/
7941 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7943 S:      Odd Fixes
7944 F:      Documentation/devicetree/bindings/i2c/
7945 F:      drivers/i2c/algos/
7946 F:      drivers/i2c/busses/
7947
7948 I2C-TAOS-EVM DRIVER
7949 M:      Jean Delvare <[email protected]>
7950 L:      [email protected]
7951 S:      Maintained
7952 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7953 F:      drivers/i2c/busses/i2c-taos-evm.c
7954
7955 I2C-TINY-USB DRIVER
7956 M:      Till Harbaum <[email protected]>
7957 L:      [email protected]
7958 W:      http://www.harbaum.org/till/i2c_tiny_usb
7959 S:      Maintained
7960 F:      drivers/i2c/busses/i2c-tiny-usb.c
7961
7962 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7963 M:      Jean Delvare <[email protected]>
7964 L:      [email protected]
7965 S:      Maintained
7966 F:      Documentation/i2c/busses/i2c-ali1535.rst
7967 F:      Documentation/i2c/busses/i2c-ali1563.rst
7968 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7969 F:      Documentation/i2c/busses/i2c-amd756.rst
7970 F:      Documentation/i2c/busses/i2c-amd8111.rst
7971 F:      Documentation/i2c/busses/i2c-i801.rst
7972 F:      Documentation/i2c/busses/i2c-nforce2.rst
7973 F:      Documentation/i2c/busses/i2c-piix4.rst
7974 F:      Documentation/i2c/busses/i2c-sis5595.rst
7975 F:      Documentation/i2c/busses/i2c-sis630.rst
7976 F:      Documentation/i2c/busses/i2c-sis96x.rst
7977 F:      Documentation/i2c/busses/i2c-via.rst
7978 F:      Documentation/i2c/busses/i2c-viapro.rst
7979 F:      drivers/i2c/busses/i2c-ali1535.c
7980 F:      drivers/i2c/busses/i2c-ali1563.c
7981 F:      drivers/i2c/busses/i2c-ali15x3.c
7982 F:      drivers/i2c/busses/i2c-amd756.c
7983 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7984 F:      drivers/i2c/busses/i2c-amd8111.c
7985 F:      drivers/i2c/busses/i2c-i801.c
7986 F:      drivers/i2c/busses/i2c-isch.c
7987 F:      drivers/i2c/busses/i2c-nforce2.c
7988 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7989 F:      drivers/i2c/busses/i2c-piix4.c
7990 F:      drivers/i2c/busses/i2c-sis5595.c
7991 F:      drivers/i2c/busses/i2c-sis630.c
7992 F:      drivers/i2c/busses/i2c-sis96x.c
7993 F:      drivers/i2c/busses/i2c-via.c
7994 F:      drivers/i2c/busses/i2c-viapro.c
7995
7996 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7997 M:      Hans de Goede <[email protected]>
7998 L:      [email protected]
7999 S:      Maintained
8000 F:      drivers/i2c/busses/i2c-cht-wc.c
8001
8002 I2C/SMBUS ISMT DRIVER
8003 M:      Seth Heasley <[email protected]>
8004 M:      Neil Horman <[email protected]>
8005 L:      [email protected]
8006 F:      drivers/i2c/busses/i2c-ismt.c
8007 F:      Documentation/i2c/busses/i2c-ismt.rst
8008
8009 I2C/SMBUS STUB DRIVER
8010 M:      Jean Delvare <[email protected]>
8011 L:      [email protected]
8012 S:      Maintained
8013 F:      drivers/i2c/i2c-stub.c
8014
8015 I3C SUBSYSTEM
8016 M:      Boris Brezillon <[email protected]>
8017 L:      [email protected] (moderated for non-subscribers)
8018 C:      irc://chat.freenode.net/linux-i3c
8019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8020 S:      Maintained
8021 F:      Documentation/ABI/testing/sysfs-bus-i3c
8022 F:      Documentation/devicetree/bindings/i3c/
8023 F:      Documentation/driver-api/i3c
8024 F:      drivers/i3c/
8025 F:      include/linux/i3c/
8026
8027 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8028 M:      Vitor Soares <[email protected]>
8029 S:      Maintained
8030 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8031 F:      drivers/i3c/master/dw*
8032
8033 I3C DRIVER FOR CADENCE I3C MASTER IP
8034 M:      Przemysław Gaj <[email protected]>
8035 S:      Maintained
8036 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8037 F:      drivers/i3c/master/i3c-master-cdns.c
8038
8039 IA64 (Itanium) PLATFORM
8040 M:      Tony Luck <[email protected]>
8041 M:      Fenghua Yu <[email protected]>
8042 L:      [email protected]
8043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8044 S:      Maintained
8045 F:      arch/ia64/
8046 F:      Documentation/ia64/
8047
8048 IBM Power 842 compression accelerator
8049 M:      Haren Myneni <[email protected]>
8050 S:      Supported
8051 F:      drivers/crypto/nx/Makefile
8052 F:      drivers/crypto/nx/Kconfig
8053 F:      drivers/crypto/nx/nx-842*
8054 F:      include/linux/sw842.h
8055 F:      crypto/842.c
8056 F:      lib/842/
8057
8058 IBM Power in-Nest Crypto Acceleration
8059 M:      Breno Leitão <[email protected]>
8060 M:      Nayna Jain <[email protected]>
8061 M:      Paulo Flabiano Smorigo <[email protected]>
8062 L:      [email protected]
8063 S:      Supported
8064 F:      drivers/crypto/nx/Makefile
8065 F:      drivers/crypto/nx/Kconfig
8066 F:      drivers/crypto/nx/nx-aes*
8067 F:      drivers/crypto/nx/nx-sha*
8068 F:      drivers/crypto/nx/nx.*
8069 F:      drivers/crypto/nx/nx_csbcpb.h
8070 F:      drivers/crypto/nx/nx_debugfs.c
8071
8072 IBM Power Linux RAID adapter
8073 M:      Brian King <[email protected]>
8074 S:      Supported
8075 F:      drivers/scsi/ipr.*
8076
8077 IBM Power SRIOV Virtual NIC Device Driver
8078 M:      Thomas Falcon <[email protected]>
8079 M:      John Allen <[email protected]>
8080 L:      [email protected]
8081 S:      Supported
8082 F:      drivers/net/ethernet/ibm/ibmvnic.*
8083
8084 IBM Power Virtual Accelerator Switchboard
8085 M:      Sukadev Bhattiprolu <[email protected]>
8086 L:      [email protected]
8087 S:      Supported
8088 F:      arch/powerpc/platforms/powernv/vas*
8089 F:      arch/powerpc/platforms/powernv/copy-paste.h
8090 F:      arch/powerpc/include/asm/vas.h
8091
8092 IBM Power Virtual Ethernet Device Driver
8093 M:      Thomas Falcon <[email protected]>
8094 L:      [email protected]
8095 S:      Supported
8096 F:      drivers/net/ethernet/ibm/ibmveth.*
8097
8098 IBM Power Virtual FC Device Drivers
8099 M:      Tyrel Datwyler <[email protected]>
8100 L:      [email protected]
8101 S:      Supported
8102 F:      drivers/scsi/ibmvscsi/ibmvfc*
8103
8104 IBM Power Virtual Management Channel Driver
8105 M:      Steven Royer <[email protected]>
8106 S:      Supported
8107 F:      drivers/misc/ibmvmc.*
8108
8109 IBM Power Virtual SCSI Device Drivers
8110 M:      Tyrel Datwyler <[email protected]>
8111 L:      [email protected]
8112 S:      Supported
8113 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8114 F:      include/scsi/viosrp.h
8115
8116 IBM Power Virtual SCSI Device Target Driver
8117 M:      Michael Cyr <[email protected]>
8118 L:      [email protected]
8119 L:      [email protected]
8120 S:      Supported
8121 F:      drivers/scsi/ibmvscsi_tgt/
8122
8123 IBM Power VMX Cryptographic instructions
8124 M:      Breno Leitão <[email protected]>
8125 M:      Nayna Jain <[email protected]>
8126 M:      Paulo Flabiano Smorigo <[email protected]>
8127 L:      [email protected]
8128 S:      Supported
8129 F:      drivers/crypto/vmx/Makefile
8130 F:      drivers/crypto/vmx/Kconfig
8131 F:      drivers/crypto/vmx/vmx.c
8132 F:      drivers/crypto/vmx/aes*
8133 F:      drivers/crypto/vmx/ghash*
8134 F:      drivers/crypto/vmx/ppc-xlate.pl
8135
8136 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8137 M:      Tyrel Datwyler <[email protected]>
8138 L:      [email protected]
8139 L:      [email protected]
8140 S:      Supported
8141 F:      drivers/pci/hotplug/rpaphp*
8142
8143 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8144 M:      Tyrel Datwyler <[email protected]>
8145 L:      [email protected]
8146 L:      [email protected]
8147 S:      Supported
8148 F:      drivers/pci/hotplug/rpadlpar*
8149
8150 IBM ServeRAID RAID DRIVER
8151 S:      Orphan
8152 F:      drivers/scsi/ips.*
8153
8154 ICH LPC AND GPIO DRIVER
8155 M:      Peter Tyser <[email protected]>
8156 S:      Maintained
8157 F:      drivers/gpio/gpio-ich.c
8158 F:      drivers/mfd/lpc_ich.c
8159
8160 ICY I2C DRIVER
8161 M:      Max Staudt <[email protected]>
8162 L:      [email protected]
8163 S:      Maintained
8164 F:      drivers/i2c/busses/i2c-icy.c
8165
8166 IDE SUBSYSTEM
8167 M:      "David S. Miller" <[email protected]>
8168 L:      [email protected]
8169 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8171 S:      Maintained
8172 F:      Documentation/ide/
8173 F:      drivers/ide/
8174 F:      include/linux/ide.h
8175
8176 IDE/ATAPI DRIVERS
8177 M:      Borislav Petkov <[email protected]>
8178 L:      [email protected]
8179 S:      Maintained
8180 F:      Documentation/cdrom/ide-cd.rst
8181 F:      drivers/ide/ide-cd*
8182
8183 IDEAPAD LAPTOP EXTRAS DRIVER
8184 M:      Ike Panhc <[email protected]>
8185 L:      [email protected]
8186 S:      Maintained
8187 W:      http://launchpad.net/ideapad-laptop
8188 F:      drivers/platform/x86/ideapad-laptop.c
8189
8190 IDEAPAD LAPTOP SLIDEBAR DRIVER
8191 M:      Andrey Moiseev <[email protected]>
8192 L:      [email protected]
8193 S:      Maintained
8194 W:      https://github.com/o2genum/ideapad-slidebar
8195 F:      drivers/input/misc/ideapad_slidebar.c
8196
8197 IDT VersaClock 5 CLOCK DRIVER
8198 M:      Marek Vasut <[email protected]>
8199 S:      Maintained
8200 F:      drivers/clk/clk-versaclock5.c
8201
8202 IEEE 802.15.4 SUBSYSTEM
8203 M:      Alexander Aring <[email protected]>
8204 M:      Stefan Schmidt <[email protected]>
8205 L:      [email protected]
8206 W:      http://wpan.cakelab.org/
8207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8209 S:      Maintained
8210 F:      net/ieee802154/
8211 F:      net/mac802154/
8212 F:      drivers/net/ieee802154/
8213 F:      include/linux/nl802154.h
8214 F:      include/linux/ieee802154.h
8215 F:      include/net/nl802154.h
8216 F:      include/net/mac802154.h
8217 F:      include/net/af_ieee802154.h
8218 F:      include/net/cfg802154.h
8219 F:      include/net/ieee802154_netdev.h
8220 F:      Documentation/networking/ieee802154.rst
8221
8222 IFE PROTOCOL
8223 M:      Yotam Gigi <[email protected]>
8224 M:      Jamal Hadi Salim <[email protected]>
8225 F:      net/ife
8226 F:      include/net/ife.h
8227 F:      include/uapi/linux/ife.h
8228
8229 IGORPLUG-USB IR RECEIVER
8230 M:      Sean Young <[email protected]>
8231 L:      [email protected]
8232 S:      Maintained
8233 F:      drivers/media/rc/igorplugusb.c
8234
8235 IGUANAWORKS USB IR TRANSCEIVER
8236 M:      Sean Young <[email protected]>
8237 L:      [email protected]
8238 S:      Maintained
8239 F:      drivers/media/rc/iguanair.c
8240
8241 IIO DIGITAL POTENTIOMETER DAC
8242 M:      Peter Rosin <[email protected]>
8243 L:      [email protected]
8244 S:      Maintained
8245 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8246 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8247 F:      drivers/iio/dac/dpot-dac.c
8248
8249 IIO ENVELOPE DETECTOR
8250 M:      Peter Rosin <[email protected]>
8251 L:      [email protected]
8252 S:      Maintained
8253 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8254 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8255 F:      drivers/iio/adc/envelope-detector.c
8256
8257 IIO MULTIPLEXER
8258 M:      Peter Rosin <[email protected]>
8259 L:      [email protected]
8260 S:      Maintained
8261 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8262 F:      drivers/iio/multiplexer/iio-mux.c
8263
8264 IIO SUBSYSTEM AND DRIVERS
8265 M:      Jonathan Cameron <[email protected]>
8266 R:      Hartmut Knaack <[email protected]>
8267 R:      Lars-Peter Clausen <[email protected]>
8268 R:      Peter Meerwald-Stadler <[email protected]>
8269 L:      [email protected]
8270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8271 S:      Maintained
8272 F:      Documentation/ABI/testing/configfs-iio*
8273 F:      Documentation/ABI/testing/sysfs-bus-iio*
8274 F:      Documentation/devicetree/bindings/iio/
8275 F:      drivers/iio/
8276 F:      drivers/staging/iio/
8277 F:      include/linux/iio/
8278 F:      tools/iio/
8279
8280 IIO UNIT CONVERTER
8281 M:      Peter Rosin <[email protected]>
8282 L:      [email protected]
8283 S:      Maintained
8284 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8285 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8286 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8287 F:      drivers/iio/afe/iio-rescale.c
8288
8289 IKANOS/ADI EAGLE ADSL USB DRIVER
8290 M:      Matthieu Castet <[email protected]>
8291 M:      Stanislaw Gruszka <[email protected]>
8292 S:      Maintained
8293 F:      drivers/usb/atm/ueagle-atm.c
8294
8295 IMGTEC ASCII LCD DRIVER
8296 M:      Paul Burton <[email protected]>
8297 S:      Maintained
8298 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8299 F:      drivers/auxdisplay/img-ascii-lcd.c
8300
8301 IMGTEC IR DECODER DRIVER
8302 S:      Orphan
8303 F:      drivers/media/rc/img-ir/
8304
8305 IMON SOUNDGRAPH USB IR RECEIVER
8306 M:      Sean Young <[email protected]>
8307 L:      [email protected]
8308 S:      Maintained
8309 F:      drivers/media/rc/imon_raw.c
8310 F:      drivers/media/rc/imon.c
8311
8312 IMS TWINTURBO FRAMEBUFFER DRIVER
8313 L:      [email protected]
8314 S:      Orphan
8315 F:      drivers/video/fbdev/imsttfb.c
8316
8317 INA209 HARDWARE MONITOR DRIVER
8318 M:      Guenter Roeck <[email protected]>
8319 L:      [email protected]
8320 S:      Maintained
8321 F:      Documentation/hwmon/ina209.rst
8322 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8323 F:      drivers/hwmon/ina209.c
8324
8325 INA2XX HARDWARE MONITOR DRIVER
8326 M:      Guenter Roeck <[email protected]>
8327 L:      [email protected]
8328 S:      Maintained
8329 F:      Documentation/hwmon/ina2xx.rst
8330 F:      drivers/hwmon/ina2xx.c
8331 F:      include/linux/platform_data/ina2xx.h
8332
8333 INDUSTRY PACK SUBSYSTEM (IPACK)
8334 M:      Samuel Iglesias Gonsalvez <[email protected]>
8335 M:      Jens Taprogge <[email protected]>
8336 M:      Greg Kroah-Hartman <[email protected]>
8337 L:      [email protected]
8338 W:      http://industrypack.sourceforge.net
8339 S:      Maintained
8340 F:      drivers/ipack/
8341
8342 INFINEON DPS310 Driver
8343 M:      Eddie James <[email protected]>
8344 L:      [email protected]
8345 F:      drivers/iio/pressure/dps310.c
8346 S:      Maintained
8347
8348 INFINIBAND SUBSYSTEM
8349 M:      Doug Ledford <[email protected]>
8350 M:      Jason Gunthorpe <[email protected]>
8351 L:      [email protected]
8352 W:      https://github.com/linux-rdma/rdma-core
8353 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8355 S:      Supported
8356 F:      Documentation/devicetree/bindings/infiniband/
8357 F:      Documentation/infiniband/
8358 F:      drivers/infiniband/
8359 F:      include/uapi/linux/if_infiniband.h
8360 F:      include/uapi/rdma/
8361 F:      include/rdma/
8362 F:      include/trace/events/ib_mad.h
8363 F:      include/trace/events/ib_umad.h
8364 F:      samples/bpf/ibumad_kern.c
8365 F:      samples/bpf/ibumad_user.c
8366
8367 INGENIC JZ4780 DMA Driver
8368 M:      Zubair Lutfullah Kakakhel <[email protected]>
8369 S:      Maintained
8370 F:      drivers/dma/dma-jz4780.c
8371
8372 INGENIC JZ4780 NAND DRIVER
8373 M:      Harvey Hunt <[email protected]>
8374 L:      [email protected]
8375 S:      Maintained
8376 F:      drivers/mtd/nand/raw/ingenic/
8377
8378 INGENIC JZ47xx SoCs
8379 M:      Paul Cercueil <[email protected]>
8380 S:      Maintained
8381 F:      arch/mips/boot/dts/ingenic/
8382 F:      arch/mips/include/asm/mach-jz4740/
8383 F:      arch/mips/jz4740/
8384 F:      drivers/clk/ingenic/
8385 F:      drivers/dma/dma-jz4780.c
8386 F:      drivers/gpu/drm/ingenic/
8387 F:      drivers/i2c/busses/i2c-jz4780.c
8388 F:      drivers/iio/adc/ingenic-adc.c
8389 F:      drivers/irqchip/irq-ingenic.c
8390 F:      drivers/memory/jz4780-nemc.c
8391 F:      drivers/mmc/host/jz4740_mmc.c
8392 F:      drivers/mtd/nand/raw/ingenic/
8393 F:      drivers/pinctrl/pinctrl-ingenic.c
8394 F:      drivers/power/supply/ingenic-battery.c
8395 F:      drivers/pwm/pwm-jz4740.c
8396 F:      drivers/rtc/rtc-jz4740.c
8397 F:      drivers/tty/serial/8250/8250_ingenic.c
8398 F:      drivers/usb/musb/jz4740.c
8399 F:      drivers/watchdog/jz4740_wdt.c
8400 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8401 F:      include/linux/mfd/ingenic-tcu.h
8402 F:      sound/soc/jz4740/
8403 F:      sound/soc/codecs/jz47*
8404
8405 INOTIFY
8406 M:      Jan Kara <[email protected]>
8407 R:      Amir Goldstein <[email protected]>
8408 L:      [email protected]
8409 S:      Maintained
8410 F:      Documentation/filesystems/inotify.rst
8411 F:      fs/notify/inotify/
8412 F:      include/linux/inotify.h
8413 F:      include/uapi/linux/inotify.h
8414
8415 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8416 M:      Dmitry Torokhov <[email protected]>
8417 L:      [email protected]
8418 Q:      http://patchwork.kernel.org/project/linux-input/list/
8419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8420 S:      Maintained
8421 F:      drivers/input/
8422 F:      include/linux/input.h
8423 F:      include/uapi/linux/input.h
8424 F:      include/uapi/linux/input-event-codes.h
8425 F:      include/linux/input/
8426 F:      Documentation/devicetree/bindings/input/
8427 F:      Documentation/devicetree/bindings/serio/
8428 F:      Documentation/input/
8429
8430 INPUT MULTITOUCH (MT) PROTOCOL
8431 M:      Henrik Rydberg <[email protected]>
8432 L:      [email protected]
8433 S:      Odd fixes
8434 F:      Documentation/input/multi-touch-protocol.rst
8435 F:      drivers/input/input-mt.c
8436 K:      \b(ABS|SYN)_MT_
8437
8438 INSIDE SECURE CRYPTO DRIVER
8439 M:      Antoine Tenart <[email protected]>
8440 F:      drivers/crypto/inside-secure/
8441 S:      Maintained
8442 L:      [email protected]
8443
8444 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8445 M:      Mimi Zohar <[email protected]>
8446 M:      Dmitry Kasatkin <[email protected]>
8447 L:      [email protected]
8448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8449 S:      Supported
8450 F:      security/integrity/ima/
8451
8452 INTEL 810/815 FRAMEBUFFER DRIVER
8453 M:      Antonino Daplas <[email protected]>
8454 L:      [email protected]
8455 S:      Maintained
8456 F:      drivers/video/fbdev/i810/
8457
8458 INTEL ASoC DRIVERS
8459 M:      Cezary Rojewski <[email protected]>
8460 M:      Pierre-Louis Bossart <[email protected]>
8461 M:      Liam Girdwood <[email protected]>
8462 M:      Jie Yang <[email protected]>
8463 L:      [email protected] (moderated for non-subscribers)
8464 S:      Supported
8465 F:      sound/soc/intel/
8466
8467 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8468 M:      Hans de Goede <[email protected]>
8469 L:      [email protected]
8470 S:      Maintained
8471 F:      drivers/platform/x86/intel_atomisp2_pm.c
8472
8473 INTEL C600 SERIES SAS CONTROLLER DRIVER
8474 M:      Intel SCU Linux support <[email protected]>
8475 M:      Artur Paszkiewicz <[email protected]>
8476 L:      [email protected]
8477 T:      git git://git.code.sf.net/p/intel-sas/isci
8478 S:      Supported
8479 F:      drivers/scsi/isci/
8480
8481 INTEL CPU family model numbers
8482 M:      Tony Luck <[email protected]>
8483 M:      [email protected]
8484 L:      [email protected]
8485 S:      Supported
8486 F:      arch/x86/include/asm/intel-family.h
8487
8488 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8489 M:      Jani Nikula <[email protected]>
8490 M:      Joonas Lahtinen <[email protected]>
8491 M:      Rodrigo Vivi <[email protected]>
8492 L:      [email protected]
8493 W:      https://01.org/linuxgraphics/
8494 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8495 C:      irc://chat.freenode.net/intel-gfx
8496 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8497 T:      git git://anongit.freedesktop.org/drm-intel
8498 S:      Supported
8499 F:      drivers/gpu/drm/i915/
8500 F:      include/drm/i915*
8501 F:      include/uapi/drm/i915_drm.h
8502 F:      Documentation/gpu/i915.rst
8503
8504 INTEL ETHERNET DRIVERS
8505 M:      Jeff Kirsher <[email protected]>
8506 L:      [email protected] (moderated for non-subscribers)
8507 W:      http://www.intel.com/support/feedback.htm
8508 W:      http://e1000.sourceforge.net/
8509 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8512 S:      Supported
8513 F:      Documentation/networking/device_drivers/intel/e100.rst
8514 F:      Documentation/networking/device_drivers/intel/e1000.rst
8515 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8516 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8517 F:      Documentation/networking/device_drivers/intel/igb.rst
8518 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8519 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8520 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8521 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8522 F:      Documentation/networking/device_drivers/intel/i40e.rst
8523 F:      Documentation/networking/device_drivers/intel/iavf.rst
8524 F:      Documentation/networking/device_drivers/intel/ice.rst
8525 F:      drivers/net/ethernet/intel/
8526 F:      drivers/net/ethernet/intel/*/
8527 F:      include/linux/avf/virtchnl.h
8528
8529 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8530 M:      Maik Broemme <[email protected]>
8531 L:      [email protected]
8532 S:      Maintained
8533 F:      Documentation/fb/intelfb.rst
8534 F:      drivers/video/fbdev/intelfb/
8535
8536 INTEL GPIO DRIVERS
8537 M:      Andy Shevchenko <[email protected]>
8538 L:      [email protected]
8539 S:      Maintained
8540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8541 F:      drivers/gpio/gpio-ich.c
8542 F:      drivers/gpio/gpio-intel-mid.c
8543 F:      drivers/gpio/gpio-merrifield.c
8544 F:      drivers/gpio/gpio-ml-ioh.c
8545 F:      drivers/gpio/gpio-pch.c
8546 F:      drivers/gpio/gpio-sch.c
8547 F:      drivers/gpio/gpio-sodaville.c
8548
8549 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8550 M:      Zhenyu Wang <[email protected]>
8551 M:      Zhi Wang <[email protected]>
8552 L:      [email protected]
8553 L:      [email protected]
8554 W:      https://01.org/igvt-g
8555 T:      git https://github.com/intel/gvt-linux.git
8556 S:      Supported
8557 F:      drivers/gpu/drm/i915/gvt/
8558
8559 INTEL HID EVENT DRIVER
8560 M:      Alex Hung <[email protected]>
8561 L:      [email protected]
8562 S:      Maintained
8563 F:      drivers/platform/x86/intel-hid.c
8564
8565 INTEL I/OAT DMA DRIVER
8566 M:      Dave Jiang <[email protected]>
8567 R:      Dan Williams <[email protected]>
8568 L:      [email protected]
8569 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8570 S:      Supported
8571 F:      drivers/dma/ioat*
8572
8573 INTEL IADX DRIVER
8574 M:      Dave Jiang <[email protected]>
8575 L:      [email protected]
8576 S:      Supported
8577 F:      drivers/dma/idxd/*
8578 F:      include/uapi/linux/idxd.h
8579
8580 INTEL IDLE DRIVER
8581 M:      Jacob Pan <[email protected]>
8582 M:      Len Brown <[email protected]>
8583 L:      [email protected]
8584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8585 B:      https://bugzilla.kernel.org
8586 S:      Supported
8587 F:      drivers/idle/intel_idle.c
8588
8589 INTEL INTEGRATED SENSOR HUB DRIVER
8590 M:      Srinivas Pandruvada <[email protected]>
8591 M:      Jiri Kosina <[email protected]>
8592 L:      [email protected]
8593 S:      Maintained
8594 F:      drivers/hid/intel-ish-hid/
8595
8596 INTEL IOMMU (VT-d)
8597 M:      David Woodhouse <[email protected]>
8598 M:      Lu Baolu <[email protected]>
8599 L:      [email protected]
8600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8601 S:      Supported
8602 F:      drivers/iommu/dmar.c
8603 F:      drivers/iommu/intel*.[ch]
8604 F:      include/linux/intel-iommu.h
8605 F:      include/linux/intel-svm.h
8606
8607 INTEL IOP-ADMA DMA DRIVER
8608 R:      Dan Williams <[email protected]>
8609 S:      Odd fixes
8610 F:      drivers/dma/iop-adma.c
8611
8612 INTEL IPU3 CSI-2 CIO2 DRIVER
8613 M:      Yong Zhi <[email protected]>
8614 M:      Sakari Ailus <[email protected]>
8615 M:      Bingbu Cao <[email protected]>
8616 R:      Tian Shu Qiu <[email protected]>
8617 L:      [email protected]
8618 S:      Maintained
8619 F:      drivers/media/pci/intel/ipu3/
8620 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8621
8622 INTEL IPU3 CSI-2 IMGU DRIVER
8623 M:      Sakari Ailus <[email protected]>
8624 L:      [email protected]
8625 S:      Maintained
8626 F:      drivers/staging/media/ipu3/
8627 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8628 F:      Documentation/media/v4l-drivers/ipu3.rst
8629 F:      Documentation/media/v4l-drivers/ipu3_rcb.svg
8630
8631 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8632 M:      Krzysztof Halasa <[email protected]>
8633 S:      Maintained
8634 F:      include/linux/soc/ixp4xx/qmgr.h
8635 F:      include/linux/soc/ixp4xx/npe.h
8636 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8637 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8638 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8639 F:      drivers/net/wan/ixp4xx_hss.c
8640
8641 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8642 M:      Deepak Saxena <[email protected]>
8643 S:      Maintained
8644 F:      drivers/char/hw_random/ixp4xx-rng.c
8645
8646 INTEL MANAGEMENT ENGINE (mei)
8647 M:      Tomas Winkler <[email protected]>
8648 L:      [email protected]
8649 S:      Supported
8650 F:      include/uapi/linux/mei.h
8651 F:      include/linux/mei_cl_bus.h
8652 F:      drivers/misc/mei/*
8653 F:      drivers/watchdog/mei_wdt.c
8654 F:      Documentation/driver-api/mei/*
8655 F:      samples/mei/*
8656
8657 INTEL MENLOW THERMAL DRIVER
8658 M:      Sujith Thomas <[email protected]>
8659 L:      [email protected]
8660 S:      Supported
8661 W:      https://01.org/linux-acpi
8662 F:      drivers/platform/x86/intel_menlow.c
8663
8664 INTEL MIC DRIVERS (mic)
8665 M:      Sudeep Dutt <[email protected]>
8666 M:      Ashutosh Dixit <[email protected]>
8667 S:      Supported
8668 W:      https://github.com/sudeepdutt/mic
8669 W:      http://software.intel.com/en-us/mic-developer
8670 F:      Documentation/misc-devices/mic/
8671 F:      drivers/dma/mic_x100_dma.c
8672 F:      drivers/dma/mic_x100_dma.h
8673 F:      drivers/misc/mic/
8674 F:      include/linux/mic_bus.h
8675 F:      include/linux/scif.h
8676 F:      include/uapi/linux/mic_common.h
8677 F:      include/uapi/linux/mic_ioctl.h
8678 F:      include/uapi/linux/scif_ioctl.h
8679
8680 INTEL PMC CORE DRIVER
8681 M:      Rajneesh Bhardwaj <[email protected]>
8682 M:      Vishwanath Somayaji <[email protected]>
8683 L:      [email protected]
8684 S:      Maintained
8685 F:      drivers/platform/x86/intel_pmc_core*
8686
8687 INTEL PMC/P-Unit IPC DRIVER
8688 M:      Zha Qipeng<[email protected]>
8689 L:      [email protected]
8690 S:      Maintained
8691 F:      arch/x86/include/asm/intel_pmc_ipc.h
8692 F:      arch/x86/include/asm/intel_punit_ipc.h
8693 F:      drivers/platform/x86/intel_pmc_ipc.c
8694 F:      drivers/platform/x86/intel_punit_ipc.c
8695
8696 INTEL PMIC GPIO DRIVERS
8697 M:      Andy Shevchenko <[email protected]>
8698 S:      Maintained
8699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8700 F:      drivers/gpio/gpio-*cove.c
8701 F:      drivers/gpio/gpio-msic.c
8702
8703 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8704 R:      Andy Shevchenko <[email protected]>
8705 S:      Maintained
8706 F:      drivers/mfd/intel_msic.c
8707 F:      drivers/mfd/intel_soc_pmic*
8708 F:      include/linux/mfd/intel_msic.h
8709 F:      include/linux/mfd/intel_soc_pmic*
8710
8711 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8712 M:      Stanislav Yakovlev <[email protected]>
8713 L:      [email protected]
8714 S:      Maintained
8715 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8716 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8717 F:      drivers/net/wireless/intel/ipw2x00/
8718
8719 INTEL PSTATE DRIVER
8720 M:      Srinivas Pandruvada <[email protected]>
8721 M:      Len Brown <[email protected]>
8722 L:      [email protected]
8723 S:      Supported
8724 F:      drivers/cpufreq/intel_pstate.c
8725
8726 INTEL RDMA RNIC DRIVER
8727 M:      Faisal Latif <[email protected]>
8728 M:      Shiraz Saleem <[email protected]>
8729 L:      [email protected]
8730 S:      Supported
8731 F:      drivers/infiniband/hw/i40iw/
8732 F:      include/uapi/rdma/i40iw-abi.h
8733
8734 INTEL SPEED SELECT TECHNOLOGY
8735 M:      Srinivas Pandruvada <[email protected]>
8736 L:      [email protected]
8737 S:      Maintained
8738 F:      drivers/platform/x86/intel_speed_select_if/
8739 F:      include/uapi/linux/isst_if.h
8740 F:      tools/power/x86/intel-speed-select/
8741
8742 INTEL STRATIX10 FIRMWARE DRIVERS
8743 M:      Richard Gong <[email protected]>
8744 L:      [email protected]
8745 S:      Maintained
8746 F:      drivers/firmware/stratix10-rsu.c
8747 F:      drivers/firmware/stratix10-svc.c
8748 F:      include/linux/firmware/intel/stratix10-smc.h
8749 F:      include/linux/firmware/intel/stratix10-svc-client.h
8750 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8751 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8752
8753 INTEL TELEMETRY DRIVER
8754 M:      Rajneesh Bhardwaj <[email protected]>
8755 M:      "David E. Box" <[email protected]>
8756 L:      [email protected]
8757 S:      Maintained
8758 F:      arch/x86/include/asm/intel_telemetry.h
8759 F:      drivers/platform/x86/intel_telemetry*
8760
8761 INTEL UNCORE FREQUENCY CONTROL
8762 M:      Srinivas Pandruvada <[email protected]>
8763 L:      [email protected]
8764 S:      Maintained
8765 F:      drivers/platform/x86/intel-uncore-frequency.c
8766
8767 INTEL VIRTUAL BUTTON DRIVER
8768 M:      AceLan Kao <[email protected]>
8769 L:      [email protected]
8770 S:      Maintained
8771 F:      drivers/platform/x86/intel-vbtn.c
8772
8773 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8774 M:      Stanislaw Gruszka <[email protected]>
8775 L:      [email protected]
8776 S:      Supported
8777 F:      drivers/net/wireless/intel/iwlegacy/
8778
8779 INTEL WIRELESS WIFI LINK (iwlwifi)
8780 M:      Johannes Berg <[email protected]>
8781 M:      Emmanuel Grumbach <[email protected]>
8782 M:      Luca Coelho <[email protected]>
8783 M:      Intel Linux Wireless <[email protected]>
8784 L:      [email protected]
8785 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8787 S:      Supported
8788 F:      drivers/net/wireless/intel/iwlwifi/
8789
8790 INTEL WIRELESS WIMAX CONNECTION 2400
8791 M:      Inaky Perez-Gonzalez <[email protected]>
8792 M:      [email protected]
8793 L:      [email protected] (subscribers-only)
8794 S:      Supported
8795 W:      http://linuxwimax.org
8796 F:      Documentation/admin-guide/wimax/i2400m.rst
8797 F:      drivers/net/wimax/i2400m/
8798 F:      include/uapi/linux/wimax/i2400m.h
8799
8800 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8801 M:      Mario Limonciello <[email protected]>
8802 S:      Maintained
8803 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8804
8805 INTEL(R) TRACE HUB
8806 M:      Alexander Shishkin <[email protected]>
8807 S:      Supported
8808 F:      Documentation/trace/intel_th.rst
8809 F:      drivers/hwtracing/intel_th/
8810 F:      include/linux/intel_th.h
8811
8812 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8813 M:      Ning Sun <[email protected]>
8814 L:      [email protected]
8815 W:      http://tboot.sourceforge.net
8816 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8817 S:      Supported
8818 F:      Documentation/x86/intel_txt.rst
8819 F:      include/linux/tboot.h
8820 F:      arch/x86/kernel/tboot.c
8821
8822 INTERCONNECT API
8823 M:      Georgi Djakov <[email protected]>
8824 L:      [email protected]
8825 S:      Maintained
8826 F:      Documentation/driver-api/interconnect.rst
8827 F:      Documentation/devicetree/bindings/interconnect/
8828 F:      drivers/interconnect/
8829 F:      include/dt-bindings/interconnect/
8830 F:      include/linux/interconnect-provider.h
8831 F:      include/linux/interconnect.h
8832
8833 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8834 M:      Linus Walleij <[email protected]>
8835 L:      [email protected]
8836 S:      Maintained
8837 F:      drivers/iio/gyro/mpu3050*
8838 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8839
8840 IOC3 ETHERNET DRIVER
8841 M:      Ralf Baechle <[email protected]>
8842 L:      [email protected]
8843 S:      Maintained
8844 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8845
8846 IOMAP FILESYSTEM LIBRARY
8847 M:      Christoph Hellwig <[email protected]>
8848 M:      Darrick J. Wong <[email protected]>
8849 M:      [email protected]
8850 M:      [email protected]
8851 L:      [email protected]
8852 L:      [email protected]
8853 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8854 S:      Supported
8855 F:      fs/iomap/
8856 F:      include/linux/iomap.h
8857
8858 IOMMU DRIVERS
8859 M:      Joerg Roedel <[email protected]>
8860 L:      [email protected]
8861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8862 S:      Maintained
8863 F:      Documentation/devicetree/bindings/iommu/
8864 F:      drivers/iommu/
8865 F:      include/linux/iommu.h
8866 F:      include/linux/of_iommu.h
8867 F:      include/linux/iova.h
8868
8869 IO_URING
8870 M:      Jens Axboe <[email protected]>
8871 L:      [email protected]
8872 T:      git git://git.kernel.dk/linux-block
8873 T:      git git://git.kernel.dk/liburing
8874 S:      Maintained
8875 F:      fs/io_uring.c
8876 F:      fs/io-wq.c
8877 F:      fs/io-wq.h
8878 F:      include/uapi/linux/io_uring.h
8879
8880 IPMI SUBSYSTEM
8881 M:      Corey Minyard <[email protected]>
8882 L:      [email protected] (moderated for non-subscribers)
8883 W:      http://openipmi.sourceforge.net/
8884 S:      Supported
8885 F:      Documentation/devicetree/bindings/ipmi/
8886 F:      Documentation/IPMI.txt
8887 F:      drivers/char/ipmi/
8888 F:      include/linux/ipmi*
8889 F:      include/uapi/linux/ipmi*
8890
8891 IPS SCSI RAID DRIVER
8892 M:      Adaptec OEM Raid Solutions <[email protected]>
8893 L:      [email protected]
8894 W:      http://www.adaptec.com/
8895 S:      Maintained
8896 F:      drivers/scsi/ips*
8897
8898 IPVS
8899 M:      Wensong Zhang <[email protected]>
8900 M:      Simon Horman <[email protected]>
8901 M:      Julian Anastasov <[email protected]>
8902 L:      [email protected]
8903 L:      [email protected]
8904 S:      Maintained
8905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8907 F:      Documentation/networking/ipvs-sysctl.txt
8908 F:      include/net/ip_vs.h
8909 F:      include/uapi/linux/ip_vs.h
8910 F:      net/netfilter/ipvs/
8911
8912 IPWIRELESS DRIVER
8913 M:      Jiri Kosina <[email protected]>
8914 M:      David Sterba <[email protected]>
8915 S:      Odd Fixes
8916 F:      drivers/tty/ipwireless/
8917
8918 IPX NETWORK LAYER
8919 L:      [email protected]
8920 S:      Obsolete
8921 F:      include/uapi/linux/ipx.h
8922
8923 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8924 M:      Marc Zyngier <[email protected]>
8925 S:      Maintained
8926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8927 F:      Documentation/IRQ-domain.txt
8928 F:      include/linux/irqdomain.h
8929 F:      kernel/irq/irqdomain.c
8930 F:      kernel/irq/msi.c
8931
8932 IRQ SUBSYSTEM
8933 M:      Thomas Gleixner <[email protected]>
8934 L:      [email protected]
8935 S:      Maintained
8936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8937 F:      kernel/irq/
8938
8939 IRQCHIP DRIVERS
8940 M:      Thomas Gleixner <[email protected]>
8941 M:      Jason Cooper <[email protected]>
8942 M:      Marc Zyngier <[email protected]>
8943 L:      [email protected]
8944 S:      Maintained
8945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8946 F:      Documentation/devicetree/bindings/interrupt-controller/
8947 F:      drivers/irqchip/
8948
8949 ISA
8950 M:      William Breathitt Gray <[email protected]>
8951 S:      Maintained
8952 F:      Documentation/driver-api/isa.rst
8953 F:      drivers/base/isa.c
8954 F:      include/linux/isa.h
8955
8956 ISA RADIO MODULE
8957 M:      Hans Verkuil <[email protected]>
8958 L:      [email protected]
8959 T:      git git://linuxtv.org/media_tree.git
8960 W:      https://linuxtv.org
8961 S:      Maintained
8962 F:      drivers/media/radio/radio-isa*
8963
8964 ISAPNP
8965 M:      Jaroslav Kysela <[email protected]>
8966 S:      Maintained
8967 F:      Documentation/driver-api/isapnp.rst
8968 F:      drivers/pnp/isapnp/
8969 F:      include/linux/isapnp.h
8970
8971 ISCSI
8972 M:      Lee Duncan <[email protected]>
8973 M:      Chris Leech <[email protected]>
8974 L:      [email protected]
8975 L:      [email protected]
8976 W:      www.open-iscsi.com
8977 S:      Maintained
8978 F:      drivers/scsi/*iscsi*
8979 F:      include/scsi/*iscsi*
8980
8981 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8982 M:      Peter Jones <[email protected]>
8983 M:      Konrad Rzeszutek Wilk <[email protected]>
8984 S:      Maintained
8985 F:      drivers/firmware/iscsi_ibft*
8986
8987 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8988 M:      Sagi Grimberg <[email protected]>
8989 M:      Max Gurtovoy <[email protected]>
8990 L:      [email protected]
8991 S:      Supported
8992 W:      http://www.openfabrics.org
8993 W:      www.open-iscsi.org
8994 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8995 F:      drivers/infiniband/ulp/iser/
8996
8997 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
8998 M:      Sagi Grimberg <[email protected]>
8999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9000 L:      [email protected]
9001 L:      [email protected]
9002 S:      Supported
9003 W:      http://www.linux-iscsi.org
9004 F:      drivers/infiniband/ulp/isert
9005
9006 ISDN/mISDN SUBSYSTEM
9007 M:      Karsten Keil <[email protected]>
9008 L:      [email protected] (subscribers-only)
9009 L:      [email protected]
9010 W:      http://www.isdn4linux.de
9011 S:      Maintained
9012 F:      drivers/isdn/mISDN/
9013 F:      drivers/isdn/hardware/
9014 F:      drivers/isdn/Kconfig
9015 F:      drivers/isdn/Makefile
9016
9017 ISDN/CMTP OVER BLUETOOTH
9018 M:      Karsten Keil <[email protected]>
9019 L:      [email protected] (subscribers-only)
9020 L:      [email protected]
9021 W:      http://www.isdn4linux.de
9022 S:      Odd Fixes
9023 F:      Documentation/isdn/
9024 F:      drivers/isdn/capi/
9025 F:      net/bluetooth/cmtp/
9026 F:      include/linux/isdn/
9027 F:      include/uapi/linux/isdn/
9028
9029 IT87 HARDWARE MONITORING DRIVER
9030 M:      Jean Delvare <[email protected]>
9031 L:      [email protected]
9032 S:      Maintained
9033 F:      Documentation/hwmon/it87.rst
9034 F:      drivers/hwmon/it87.c
9035
9036 IT913X MEDIA DRIVER
9037 M:      Antti Palosaari <[email protected]>
9038 L:      [email protected]
9039 W:      https://linuxtv.org
9040 W:      http://palosaari.fi/linux/
9041 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9042 T:      git git://linuxtv.org/anttip/media_tree.git
9043 S:      Maintained
9044 F:      drivers/media/tuners/it913x*
9045
9046 IVTV VIDEO4LINUX DRIVER
9047 M:      Andy Walls <[email protected]>
9048 L:      [email protected]
9049 T:      git git://linuxtv.org/media_tree.git
9050 W:      https://linuxtv.org
9051 S:      Maintained
9052 F:      Documentation/media/v4l-drivers/ivtv*
9053 F:      drivers/media/pci/ivtv/
9054 F:      include/uapi/linux/ivtv*
9055
9056 IX2505V MEDIA DRIVER
9057 M:      Malcolm Priestley <[email protected]>
9058 L:      [email protected]
9059 W:      https://linuxtv.org
9060 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9061 S:      Maintained
9062 F:      drivers/media/dvb-frontends/ix2505v*
9063
9064 JAILHOUSE HYPERVISOR INTERFACE
9065 M:      Jan Kiszka <[email protected]>
9066 L:      [email protected]
9067 S:      Maintained
9068 F:      arch/x86/kernel/jailhouse.c
9069 F:      arch/x86/include/asm/jailhouse_para.h
9070
9071 JC42.4 TEMPERATURE SENSOR DRIVER
9072 M:      Guenter Roeck <[email protected]>
9073 L:      [email protected]
9074 S:      Maintained
9075 F:      drivers/hwmon/jc42.c
9076 F:      Documentation/hwmon/jc42.rst
9077
9078 JFS FILESYSTEM
9079 M:      Dave Kleikamp <[email protected]>
9080 L:      [email protected]
9081 W:      http://jfs.sourceforge.net/
9082 T:      git git://github.com/kleikamp/linux-shaggy.git
9083 S:      Maintained
9084 F:      Documentation/admin-guide/jfs.rst
9085 F:      fs/jfs/
9086
9087 JME NETWORK DRIVER
9088 M:      Guo-Fu Tseng <[email protected]>
9089 L:      [email protected]
9090 S:      Maintained
9091 F:      drivers/net/ethernet/jme.*
9092
9093 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9094 M:      David Woodhouse <[email protected]>
9095 M:      Richard Weinberger <[email protected]>
9096 L:      [email protected]
9097 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9098 T:      git git://git.infradead.org/ubifs-2.6.git
9099 S:      Odd Fixes
9100 F:      fs/jffs2/
9101 F:      include/uapi/linux/jffs2.h
9102
9103 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9104 M:      "Theodore Ts'o" <[email protected]>
9105 M:      Jan Kara <[email protected]>
9106 L:      [email protected]
9107 S:      Maintained
9108 F:      fs/jbd2/
9109 F:      include/linux/jbd2.h
9110
9111 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9112 M:      Mikhail Ulyanov <[email protected]>
9113 L:      [email protected]
9114 S:      Maintained
9115 F:      drivers/media/platform/rcar_jpu.c
9116
9117 JSM Neo PCI based serial card
9118 L:      [email protected]
9119 S:      Orphan
9120 F:      drivers/tty/serial/jsm/
9121
9122 K10TEMP HARDWARE MONITORING DRIVER
9123 M:      Clemens Ladisch <[email protected]>
9124 L:      [email protected]
9125 S:      Maintained
9126 F:      Documentation/hwmon/k10temp.rst
9127 F:      drivers/hwmon/k10temp.c
9128
9129 K8TEMP HARDWARE MONITORING DRIVER
9130 M:      Rudolf Marek <[email protected]>
9131 L:      [email protected]
9132 S:      Maintained
9133 F:      Documentation/hwmon/k8temp.rst
9134 F:      drivers/hwmon/k8temp.c
9135
9136 KASAN
9137 M:      Andrey Ryabinin <[email protected]>
9138 R:      Alexander Potapenko <[email protected]>
9139 R:      Dmitry Vyukov <[email protected]>
9140 L:      [email protected]
9141 S:      Maintained
9142 F:      arch/*/include/asm/kasan.h
9143 F:      arch/*/mm/kasan_init*
9144 F:      Documentation/dev-tools/kasan.rst
9145 F:      include/linux/kasan*.h
9146 F:      lib/test_kasan.c
9147 F:      mm/kasan/
9148 F:      scripts/Makefile.kasan
9149
9150 KCONFIG
9151 M:      Masahiro Yamada <[email protected]>
9152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9153 L:      [email protected]
9154 S:      Maintained
9155 F:      Documentation/kbuild/kconfig*
9156 F:      scripts/kconfig/
9157 F:      scripts/Kconfig.include
9158
9159 KDUMP
9160 M:      Dave Young <[email protected]>
9161 M:      Baoquan He <[email protected]>
9162 R:      Vivek Goyal <[email protected]>
9163 L:      [email protected]
9164 W:      http://lse.sourceforge.net/kdump/
9165 S:      Maintained
9166 F:      Documentation/admin-guide/kdump/
9167
9168 KEENE FM RADIO TRANSMITTER DRIVER
9169 M:      Hans Verkuil <[email protected]>
9170 L:      [email protected]
9171 T:      git git://linuxtv.org/media_tree.git
9172 W:      https://linuxtv.org
9173 S:      Maintained
9174 F:      drivers/media/radio/radio-keene*
9175
9176 KERNEL AUTOMOUNTER
9177 M:      Ian Kent <[email protected]>
9178 L:      [email protected]
9179 S:      Maintained
9180 F:      fs/autofs/
9181
9182 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9183 M:      Masahiro Yamada <[email protected]>
9184 M:      Michal Marek <[email protected]>
9185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9186 L:      [email protected]
9187 S:      Maintained
9188 F:      Documentation/kbuild/
9189 F:      Makefile
9190 F:      scripts/Kbuild*
9191 F:      scripts/Makefile*
9192 F:      scripts/basic/
9193 F:      scripts/mk*
9194 F:      scripts/*vmlinux*
9195 F:      scripts/mod/
9196 F:      scripts/package/
9197
9198 KERNEL JANITORS
9199 L:      [email protected]
9200 W:      http://kernelnewbies.org/KernelJanitors
9201 S:      Odd Fixes
9202
9203 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9204 M:      "J. Bruce Fields" <[email protected]>
9205 M:      Chuck Lever <[email protected]>
9206 L:      [email protected]
9207 W:      http://nfs.sourceforge.net/
9208 T:      git git://linux-nfs.org/~bfields/linux.git
9209 S:      Supported
9210 F:      fs/nfsd/
9211 F:      include/uapi/linux/nfsd/
9212 F:      fs/lockd/
9213 F:      fs/nfs_common/
9214 F:      net/sunrpc/
9215 F:      include/linux/lockd/
9216 F:      include/linux/sunrpc/
9217 F:      include/uapi/linux/sunrpc/
9218
9219 KERNEL SELFTEST FRAMEWORK
9220 M:      Shuah Khan <[email protected]>
9221 M:      Shuah Khan <[email protected]>
9222 L:      [email protected]
9223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9224 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9225 S:      Maintained
9226 F:      tools/testing/selftests/
9227 F:      Documentation/dev-tools/kselftest*
9228
9229 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9230 M:      Brendan Higgins <[email protected]>
9231 L:      [email protected]
9232 L:      [email protected]
9233 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9234 S:      Maintained
9235 F:      Documentation/dev-tools/kunit/
9236 F:      include/kunit/
9237 F:      lib/kunit/
9238 F:      tools/testing/kunit/
9239
9240 KERNEL USERMODE HELPER
9241 M:      Luis Chamberlain <[email protected]>
9242 L:      [email protected]
9243 S:      Maintained
9244 F:      kernel/umh.c
9245 F:      include/linux/umh.h
9246
9247 KERNEL VIRTUAL MACHINE (KVM)
9248 M:      Paolo Bonzini <[email protected]>
9249 L:      [email protected]
9250 W:      http://www.linux-kvm.org
9251 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9252 S:      Supported
9253 F:      Documentation/virt/kvm/
9254 F:      include/trace/events/kvm.h
9255 F:      include/uapi/asm-generic/kvm*
9256 F:      include/uapi/linux/kvm*
9257 F:      include/asm-generic/kvm*
9258 F:      include/linux/kvm*
9259 F:      include/kvm/iodev.h
9260 F:      virt/kvm/*
9261 F:      tools/kvm/
9262 F:      tools/testing/selftests/kvm/
9263
9264 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9265 M:      Marc Zyngier <[email protected]>
9266 R:      James Morse <[email protected]>
9267 R:      Julien Thierry <[email protected]>
9268 R:      Suzuki K Poulose <[email protected]>
9269 L:      [email protected] (moderated for non-subscribers)
9270 L:      [email protected]
9271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9272 S:      Maintained
9273 F:      arch/arm64/include/uapi/asm/kvm*
9274 F:      arch/arm64/include/asm/kvm*
9275 F:      arch/arm64/kvm/
9276 F:      virt/kvm/arm/
9277 F:      include/kvm/arm_*
9278
9279 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9280 L:      [email protected]
9281 L:      [email protected]
9282 S:      Orphan
9283 F:      arch/mips/include/uapi/asm/kvm*
9284 F:      arch/mips/include/asm/kvm*
9285 F:      arch/mips/kvm/
9286
9287 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9288 M:      Paul Mackerras <[email protected]>
9289 L:      [email protected]
9290 W:      http://www.linux-kvm.org/
9291 T:      git git://github.com/agraf/linux-2.6.git
9292 S:      Supported
9293 F:      arch/powerpc/include/uapi/asm/kvm*
9294 F:      arch/powerpc/include/asm/kvm*
9295 F:      arch/powerpc/kvm/
9296 F:      arch/powerpc/kernel/kvm*
9297
9298 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9299 M:      Christian Borntraeger <[email protected]>
9300 M:      Janosch Frank <[email protected]>
9301 R:      David Hildenbrand <[email protected]>
9302 R:      Cornelia Huck <[email protected]>
9303 L:      [email protected]
9304 W:      http://www.ibm.com/developerworks/linux/linux390/
9305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9306 S:      Supported
9307 F:      Documentation/virt/kvm/s390*
9308 F:      arch/s390/include/uapi/asm/kvm*
9309 F:      arch/s390/include/asm/gmap.h
9310 F:      arch/s390/include/asm/kvm*
9311 F:      arch/s390/kvm/
9312 F:      arch/s390/mm/gmap.c
9313 F:      tools/testing/selftests/kvm/s390x/
9314 F:      tools/testing/selftests/kvm/*/s390x/
9315
9316 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9317 M:      Paolo Bonzini <[email protected]>
9318 R:      Sean Christopherson <[email protected]>
9319 R:      Vitaly Kuznetsov <[email protected]>
9320 R:      Wanpeng Li <[email protected]>
9321 R:      Jim Mattson <[email protected]>
9322 R:      Joerg Roedel <[email protected]>
9323 L:      [email protected]
9324 W:      http://www.linux-kvm.org
9325 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9326 S:      Supported
9327 F:      arch/x86/kvm/
9328 F:      arch/x86/kvm/*/
9329 F:      arch/x86/include/uapi/asm/kvm*
9330 F:      arch/x86/include/uapi/asm/vmx.h
9331 F:      arch/x86/include/uapi/asm/svm.h
9332 F:      arch/x86/include/asm/kvm*
9333 F:      arch/x86/include/asm/pvclock-abi.h
9334 F:      arch/x86/include/asm/svm.h
9335 F:      arch/x86/include/asm/vmx*.h
9336 F:      arch/x86/kernel/kvm.c
9337 F:      arch/x86/kernel/kvmclock.c
9338
9339 KERNFS
9340 M:      Greg Kroah-Hartman <[email protected]>
9341 M:      Tejun Heo <[email protected]>
9342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9343 S:      Supported
9344 F:      include/linux/kernfs.h
9345 F:      fs/kernfs/
9346
9347 KEXEC
9348 M:      Eric Biederman <[email protected]>
9349 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9350 L:      [email protected]
9351 S:      Maintained
9352 F:      include/linux/kexec.h
9353 F:      include/uapi/linux/kexec.h
9354 F:      kernel/kexec*
9355
9356 KEYS-ENCRYPTED
9357 M:      Mimi Zohar <[email protected]>
9358 L:      [email protected]
9359 L:      [email protected]
9360 S:      Supported
9361 F:      Documentation/security/keys/trusted-encrypted.rst
9362 F:      include/keys/encrypted-type.h
9363 F:      security/keys/encrypted-keys/
9364
9365 KEYS-TRUSTED
9366 M:      James Bottomley <[email protected]>
9367 M:      Jarkko Sakkinen <[email protected]>
9368 M:      Mimi Zohar <[email protected]>
9369 L:      [email protected]
9370 L:      [email protected]
9371 S:      Supported
9372 F:      Documentation/security/keys/trusted-encrypted.rst
9373 F:      include/keys/trusted-type.h
9374 F:      include/keys/trusted_tpm.h
9375 F:      security/keys/trusted-keys/
9376
9377 KEYS/KEYRINGS
9378 M:      David Howells <[email protected]>
9379 M:      Jarkko Sakkinen <[email protected]>
9380 L:      [email protected]
9381 S:      Maintained
9382 F:      Documentation/security/keys/core.rst
9383 F:      include/linux/key.h
9384 F:      include/linux/key-type.h
9385 F:      include/linux/keyctl.h
9386 F:      include/uapi/linux/keyctl.h
9387 F:      include/keys/
9388 F:      security/keys/
9389
9390 KGDB / KDB /debug_core
9391 M:      Jason Wessel <[email protected]>
9392 M:      Daniel Thompson <[email protected]>
9393 R:      Douglas Anderson <[email protected]>
9394 W:      http://kgdb.wiki.kernel.org/
9395 L:      [email protected]
9396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9397 S:      Maintained
9398 F:      Documentation/dev-tools/kgdb.rst
9399 F:      drivers/misc/kgdbts.c
9400 F:      drivers/tty/serial/kgdboc.c
9401 F:      include/linux/kdb.h
9402 F:      include/linux/kgdb.h
9403 F:      kernel/debug/
9404
9405 KMEMLEAK
9406 M:      Catalin Marinas <[email protected]>
9407 S:      Maintained
9408 F:      Documentation/dev-tools/kmemleak.rst
9409 F:      include/linux/kmemleak.h
9410 F:      mm/kmemleak.c
9411 F:      mm/kmemleak-test.c
9412
9413 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9414 M:      Luis Chamberlain <[email protected]>
9415 L:      [email protected]
9416 S:      Maintained
9417 F:      kernel/kmod.c
9418 F:      include/linux/kmod.h
9419 F:      lib/test_kmod.c
9420 F:      tools/testing/selftests/kmod/
9421
9422 KPROBES
9423 M:      Naveen N. Rao <[email protected]>
9424 M:      Anil S Keshavamurthy <[email protected]>
9425 M:      "David S. Miller" <[email protected]>
9426 M:      Masami Hiramatsu <[email protected]>
9427 S:      Maintained
9428 F:      Documentation/kprobes.txt
9429 F:      include/linux/kprobes.h
9430 F:      include/asm-generic/kprobes.h
9431 F:      kernel/kprobes.c
9432
9433 KS0108 LCD CONTROLLER DRIVER
9434 M:      Miguel Ojeda Sandonis <[email protected]>
9435 S:      Maintained
9436 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9437 F:      drivers/auxdisplay/ks0108.c
9438 F:      include/linux/ks0108.h
9439
9440 L3MDEV
9441 M:      David Ahern <[email protected]>
9442 L:      [email protected]
9443 S:      Maintained
9444 F:      net/l3mdev
9445 F:      include/net/l3mdev.h
9446
9447 L7 BPF FRAMEWORK
9448 M:      John Fastabend <[email protected]>
9449 M:      Daniel Borkmann <[email protected]>
9450 M:      Jakub Sitnicki <[email protected]>
9451 M:      Lorenz Bauer <[email protected]>
9452 L:      [email protected]
9453 L:      [email protected]
9454 S:      Maintained
9455 F:      include/linux/skmsg.h
9456 F:      net/core/skmsg.c
9457 F:      net/core/sock_map.c
9458 F:      net/ipv4/tcp_bpf.c
9459 F:      net/ipv4/udp_bpf.c
9460
9461 LANTIQ / INTEL Ethernet drivers
9462 M:      Hauke Mehrtens <[email protected]>
9463 L:      [email protected]
9464 S:      Maintained
9465 F:      net/dsa/tag_gswip.c
9466 F:      drivers/net/ethernet/lantiq_xrx200.c
9467 F:      drivers/net/dsa/lantiq_pce.h
9468 F:      drivers/net/dsa/lantiq_gswip.c
9469
9470 LANTIQ MIPS ARCHITECTURE
9471 M:      John Crispin <[email protected]>
9472 L:      [email protected]
9473 S:      Maintained
9474 F:      arch/mips/lantiq
9475 F:      drivers/soc/lantiq
9476
9477 LAPB module
9478 L:      [email protected]
9479 S:      Orphan
9480 F:      Documentation/networking/lapb-module.txt
9481 F:      include/*/lapb.h
9482 F:      net/lapb/
9483
9484 LASI 53c700 driver for PARISC
9485 M:      "James E.J. Bottomley" <[email protected]>
9486 L:      [email protected]
9487 S:      Maintained
9488 F:      Documentation/scsi/53c700.rst
9489 F:      drivers/scsi/53c700*
9490
9491 LEAKING_ADDRESSES
9492 M:      Tobin C. Harding <[email protected]>
9493 M:      Tycho Andersen <[email protected]>
9494 L:      [email protected]
9495 S:      Maintained
9496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9497 F:      scripts/leaking_addresses.pl
9498
9499 LED SUBSYSTEM
9500 M:      Jacek Anaszewski <[email protected]>
9501 M:      Pavel Machek <[email protected]>
9502 R:      Dan Murphy <[email protected]>
9503 L:      [email protected]
9504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9506 S:      Maintained
9507 F:      Documentation/devicetree/bindings/leds/
9508 F:      drivers/leds/
9509 F:      include/linux/leds.h
9510
9511 LEGACY EEPROM DRIVER
9512 M:      Jean Delvare <[email protected]>
9513 S:      Maintained
9514 F:      Documentation/misc-devices/eeprom.rst
9515 F:      drivers/misc/eeprom/eeprom.c
9516
9517 LEGO MINDSTORMS EV3
9518 R:      David Lechner <[email protected]>
9519 S:      Maintained
9520 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9521 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9522 F:      drivers/power/supply/lego_ev3_battery.c
9523
9524 LEGO USB Tower driver
9525 M:      Juergen Stuber <[email protected]>
9526 L:      [email protected]
9527 W:      http://legousb.sourceforge.net/
9528 S:      Maintained
9529 F:      drivers/usb/misc/legousbtower.c
9530
9531 LG LAPTOP EXTRAS
9532 M:      Matan Ziv-Av <[email protected]>
9533 L:      [email protected]
9534 S:      Maintained
9535 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9536 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9537 F:      drivers/platform/x86/lg-laptop.c
9538
9539 LG2160 MEDIA DRIVER
9540 M:      Michael Krufky <[email protected]>
9541 L:      [email protected]
9542 W:      https://linuxtv.org
9543 W:      http://github.com/mkrufky
9544 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9545 T:      git git://linuxtv.org/mkrufky/tuners.git
9546 S:      Maintained
9547 F:      drivers/media/dvb-frontends/lg2160.*
9548
9549 LGDT3305 MEDIA DRIVER
9550 M:      Michael Krufky <[email protected]>
9551 L:      [email protected]
9552 W:      https://linuxtv.org
9553 W:      http://github.com/mkrufky
9554 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9555 T:      git git://linuxtv.org/mkrufky/tuners.git
9556 S:      Maintained
9557 F:      drivers/media/dvb-frontends/lgdt3305.*
9558
9559 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9560 M:      Viresh Kumar <[email protected]>
9561 L:      [email protected]
9562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9563 S:      Maintained
9564 F:      include/linux/pata_arasan_cf_data.h
9565 F:      drivers/ata/pata_arasan_cf.c
9566
9567 LIBATA PATA DRIVERS
9568 M:      Bartlomiej Zolnierkiewicz <[email protected]>
9569 M:      Jens Axboe <[email protected]>
9570 L:      [email protected]
9571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9572 S:      Maintained
9573 F:      drivers/ata/pata_*.c
9574 F:      drivers/ata/ata_generic.c
9575
9576 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9577 M:      Linus Walleij <[email protected]>
9578 L:      [email protected]
9579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9580 S:      Maintained
9581 F:      drivers/ata/pata_ftide010.c
9582 F:      drivers/ata/sata_gemini.c
9583 F:      drivers/ata/sata_gemini.h
9584
9585 LIBATA SATA AHCI PLATFORM devices support
9586 M:      Hans de Goede <[email protected]>
9587 M:      Jens Axboe <[email protected]>
9588 L:      [email protected]
9589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9590 S:      Maintained
9591 F:      drivers/ata/ahci_platform.c
9592 F:      drivers/ata/libahci_platform.c
9593 F:      include/linux/ahci_platform.h
9594
9595 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9596 M:      Mikael Pettersson <[email protected]>
9597 L:      [email protected]
9598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9599 S:      Maintained
9600 F:      drivers/ata/sata_promise.*
9601
9602 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9603 M:      Jens Axboe <[email protected]>
9604 L:      [email protected]
9605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9606 S:      Maintained
9607 F:      drivers/ata/
9608 F:      include/linux/ata.h
9609 F:      include/linux/libata.h
9610 F:      Documentation/devicetree/bindings/ata/
9611
9612 LIBLOCKDEP
9613 M:      Sasha Levin <[email protected]>
9614 S:      Maintained
9615 F:      tools/lib/lockdep/
9616
9617 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9618 M:      Dan Williams <[email protected]>
9619 M:      Vishal Verma <[email protected]>
9620 M:      Dave Jiang <[email protected]>
9621 L:      [email protected]
9622 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9623 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9624 S:      Supported
9625 F:      drivers/nvdimm/blk.c
9626 F:      drivers/nvdimm/region_devs.c
9627
9628 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9629 M:      Vishal Verma <[email protected]>
9630 M:      Dan Williams <[email protected]>
9631 M:      Dave Jiang <[email protected]>
9632 L:      [email protected]
9633 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9634 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9635 S:      Supported
9636 F:      drivers/nvdimm/btt*
9637
9638 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9639 M:      Dan Williams <[email protected]>
9640 M:      Vishal Verma <[email protected]>
9641 M:      Dave Jiang <[email protected]>
9642 L:      [email protected]
9643 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9644 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9645 S:      Supported
9646 F:      drivers/nvdimm/pmem*
9647
9648 LIBNVDIMM: DEVICETREE BINDINGS
9649 M:      Oliver O'Halloran <[email protected]>
9650 L:      [email protected]
9651 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9652 S:      Supported
9653 F:      drivers/nvdimm/of_pmem.c
9654 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9655
9656 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9657 M:      Dan Williams <[email protected]>
9658 M:      Vishal Verma <[email protected]>
9659 M:      Dave Jiang <[email protected]>
9660 M:      Ira Weiny <[email protected]>
9661 L:      [email protected]
9662 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9663 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9665 S:      Supported
9666 F:      drivers/nvdimm/*
9667 F:      drivers/acpi/nfit/*
9668 F:      include/linux/nd.h
9669 F:      include/linux/libnvdimm.h
9670 F:      include/uapi/linux/ndctl.h
9671
9672 LICENSES and SPDX stuff
9673 M:      Thomas Gleixner <[email protected]>
9674 M:      Greg Kroah-Hartman <[email protected]>
9675 L:      [email protected]
9676 S:      Maintained
9677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9678 F:      COPYING
9679 F:      Documentation/process/license-rules.rst
9680 F:      LICENSES/
9681 F:      scripts/spdxcheck-test.sh
9682 F:      scripts/spdxcheck.py
9683
9684 LIGHTNVM PLATFORM SUPPORT
9685 M:      Matias Bjorling <[email protected]>
9686 W:      http://github/OpenChannelSSD
9687 L:      [email protected]
9688 S:      Maintained
9689 F:      drivers/lightnvm/
9690 F:      include/linux/lightnvm.h
9691 F:      include/uapi/linux/lightnvm.h
9692
9693 LINUX FOR POWER MACINTOSH
9694 M:      Benjamin Herrenschmidt <[email protected]>
9695 L:      [email protected]
9696 S:      Odd Fixes
9697 F:      arch/powerpc/platforms/powermac/
9698 F:      drivers/macintosh/
9699
9700 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9701 M:      Michael Ellerman <[email protected]>
9702 R:      Benjamin Herrenschmidt <[email protected]>
9703 R:      Paul Mackerras <[email protected]>
9704 W:      https://github.com/linuxppc/wiki/wiki
9705 L:      [email protected]
9706 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9708 S:      Supported
9709 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9710 F:      Documentation/devicetree/bindings/powerpc/
9711 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9712 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9713 F:      Documentation/powerpc/
9714 F:      arch/powerpc/
9715 F:      drivers/char/tpm/tpm_ibmvtpm*
9716 F:      drivers/crypto/nx/
9717 F:      drivers/crypto/vmx/
9718 F:      drivers/i2c/busses/i2c-opal.c
9719 F:      drivers/net/ethernet/ibm/ibmveth.*
9720 F:      drivers/net/ethernet/ibm/ibmvnic.*
9721 F:      drivers/*/*/*pasemi*
9722 F:      drivers/*/*pasemi*
9723 F:      drivers/pci/hotplug/pnv_php.c
9724 F:      drivers/pci/hotplug/rpa*
9725 F:      drivers/rtc/rtc-opal.c
9726 F:      drivers/scsi/ibmvscsi/
9727 F:      drivers/tty/hvc/hvc_opal.c
9728 F:      drivers/watchdog/wdrtas.c
9729 F:      tools/testing/selftests/powerpc
9730 N:      /pmac
9731 N:      powermac
9732 N:      powernv
9733 N:      [^a-z0-9]ps3
9734 N:      pseries
9735
9736 LINUX FOR POWERPC EMBEDDED MPC5XXX
9737 M:      Anatolij Gustschin <[email protected]>
9738 L:      [email protected]
9739 S:      Odd Fixes
9740 F:      arch/powerpc/platforms/512x/
9741 F:      arch/powerpc/platforms/52xx/
9742
9743 LINUX FOR POWERPC EMBEDDED PPC4XX
9744 L:      [email protected]
9745 S:      Orphan
9746 F:      arch/powerpc/platforms/40x/
9747 F:      arch/powerpc/platforms/44x/
9748
9749 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9750 M:      Scott Wood <[email protected]>
9751 L:      [email protected]
9752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9753 S:      Odd fixes
9754 F:      arch/powerpc/platforms/83xx/
9755 F:      arch/powerpc/platforms/85xx/
9756 F:      Documentation/devicetree/bindings/powerpc/fsl/
9757
9758 LINUX FOR POWERPC EMBEDDED PPC8XX
9759 M:      Christophe Leroy <[email protected]>
9760 L:      [email protected]
9761 S:      Maintained
9762 F:      arch/powerpc/platforms/8xx/
9763
9764 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9765 M:      Kees Cook <[email protected]>
9766 S:      Maintained
9767 F:      drivers/misc/lkdtm/*
9768 F:      tools/testing/selftests/lkdtm/*
9769
9770 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9771 M:      Alan Stern <[email protected]>
9772 M:      Andrea Parri <[email protected]>
9773 M:      Will Deacon <[email protected]>
9774 M:      Peter Zijlstra <[email protected]>
9775 M:      Boqun Feng <[email protected]>
9776 M:      Nicholas Piggin <[email protected]>
9777 M:      David Howells <[email protected]>
9778 M:      Jade Alglave <[email protected]>
9779 M:      Luc Maranget <[email protected]>
9780 M:      "Paul E. McKenney" <[email protected]>
9781 R:      Akira Yokosawa <[email protected]>
9782 R:      Daniel Lustig <[email protected]>
9783 L:      [email protected]
9784 L:      [email protected]
9785 S:      Supported
9786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9787 F:      tools/memory-model/
9788 F:      Documentation/atomic_bitops.txt
9789 F:      Documentation/atomic_t.txt
9790 F:      Documentation/core-api/atomic_ops.rst
9791 F:      Documentation/core-api/refcount-vs-atomic.rst
9792 F:      Documentation/memory-barriers.txt
9793
9794 LIS3LV02D ACCELEROMETER DRIVER
9795 M:      Eric Piel <[email protected]>
9796 S:      Maintained
9797 F:      Documentation/misc-devices/lis3lv02d.rst
9798 F:      drivers/misc/lis3lv02d/
9799 F:      drivers/platform/x86/hp_accel.c
9800
9801 LIST KUNIT TEST
9802 M:      David Gow <[email protected]>
9803 L:      [email protected]
9804 L:      [email protected]
9805 S:      Maintained
9806 F:      lib/list-test.c
9807
9808 LIVE PATCHING
9809 M:      Josh Poimboeuf <[email protected]>
9810 M:      Jiri Kosina <[email protected]>
9811 M:      Miroslav Benes <[email protected]>
9812 M:      Petr Mladek <[email protected]>
9813 R:      Joe Lawrence <[email protected]>
9814 S:      Maintained
9815 F:      kernel/livepatch/
9816 F:      include/linux/livepatch.h
9817 F:      arch/x86/include/asm/livepatch.h
9818 F:      arch/x86/kernel/livepatch.c
9819 F:      Documentation/livepatch/
9820 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9821 F:      samples/livepatch/
9822 F:      tools/testing/selftests/livepatch/
9823 L:      [email protected]
9824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9825
9826 LLC (802.2)
9827 L:      [email protected]
9828 S:      Odd fixes
9829 F:      include/linux/llc.h
9830 F:      include/uapi/linux/llc.h
9831 F:      include/net/llc*
9832 F:      net/llc/
9833
9834 LM73 HARDWARE MONITOR DRIVER
9835 M:      Guillaume Ligneul <[email protected]>
9836 L:      [email protected]
9837 S:      Maintained
9838 F:      drivers/hwmon/lm73.c
9839
9840 LM78 HARDWARE MONITOR DRIVER
9841 M:      Jean Delvare <[email protected]>
9842 L:      [email protected]
9843 S:      Maintained
9844 F:      Documentation/hwmon/lm78.rst
9845 F:      drivers/hwmon/lm78.c
9846
9847 LM83 HARDWARE MONITOR DRIVER
9848 M:      Jean Delvare <[email protected]>
9849 L:      [email protected]
9850 S:      Maintained
9851 F:      Documentation/hwmon/lm83.rst
9852 F:      drivers/hwmon/lm83.c
9853
9854 LM90 HARDWARE MONITOR DRIVER
9855 M:      Jean Delvare <[email protected]>
9856 L:      [email protected]
9857 S:      Maintained
9858 F:      Documentation/hwmon/lm90.rst
9859 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9860 F:      drivers/hwmon/lm90.c
9861 F:      include/dt-bindings/thermal/lm90.h
9862
9863 LM95234 HARDWARE MONITOR DRIVER
9864 M:      Guenter Roeck <[email protected]>
9865 L:      [email protected]
9866 S:      Maintained
9867 F:      Documentation/hwmon/lm95234.rst
9868 F:      drivers/hwmon/lm95234.c
9869
9870 LME2510 MEDIA DRIVER
9871 M:      Malcolm Priestley <[email protected]>
9872 L:      [email protected]
9873 W:      https://linuxtv.org
9874 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9875 S:      Maintained
9876 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9877
9878 LOADPIN SECURITY MODULE
9879 M:      Kees Cook <[email protected]>
9880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9881 S:      Supported
9882 F:      security/loadpin/
9883 F:      Documentation/admin-guide/LSM/LoadPin.rst
9884
9885 LOCKING PRIMITIVES
9886 M:      Peter Zijlstra <[email protected]>
9887 M:      Ingo Molnar <[email protected]>
9888 M:      Will Deacon <[email protected]>
9889 L:      [email protected]
9890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9891 S:      Maintained
9892 F:      Documentation/locking/
9893 F:      include/linux/lockdep.h
9894 F:      include/linux/spinlock*.h
9895 F:      arch/*/include/asm/spinlock*.h
9896 F:      include/linux/rwlock*.h
9897 F:      include/linux/mutex*.h
9898 F:      include/linux/rwsem*.h
9899 F:      include/linux/seqlock.h
9900 F:      lib/locking*.[ch]
9901 F:      kernel/locking/
9902 X:      kernel/locking/locktorture.c
9903
9904 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9905 M:      "Richard Russon (FlatCap)" <[email protected]>
9906 L:      [email protected]
9907 W:      http://www.linux-ntfs.org/content/view/19/37/
9908 S:      Maintained
9909 F:      Documentation/admin-guide/ldm.rst
9910 F:      block/partitions/ldm.*
9911
9912 LOGITECH HID GAMING KEYBOARDS
9913 M:      Hans de Goede <[email protected]>
9914 L:      [email protected]
9915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9916 S:      Maintained
9917 F:      drivers/hid/hid-lg-g15.c
9918
9919 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9920 M:      Sathya Prakash <[email protected]>
9921 M:      Chaitra P B <[email protected]>
9922 M:      Suganath Prabu Subramani <[email protected]>
9923 L:      [email protected]
9924 L:      [email protected]
9925 W:      http://www.avagotech.com/support/
9926 S:      Supported
9927 F:      drivers/message/fusion/
9928 F:      drivers/scsi/mpt3sas/
9929
9930 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9931 M:      Matthew Wilcox <[email protected]>
9932 L:      [email protected]
9933 S:      Maintained
9934 F:      drivers/scsi/sym53c8xx_2/
9935
9936 LTC1660 DAC DRIVER
9937 M:      Marcus Folkesson <[email protected]>
9938 L:      [email protected]
9939 S:      Maintained
9940 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
9941 F:      drivers/iio/dac/ltc1660.c
9942
9943 LTC2983 IIO TEMPERATURE DRIVER
9944 M:      Nuno Sá <[email protected]>
9945 W:      http://ez.analog.com/community/linux-device-drivers
9946 L:      [email protected]
9947 S:      Supported
9948 F:      drivers/iio/temperature/ltc2983.c
9949 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
9950
9951 LTC4261 HARDWARE MONITOR DRIVER
9952 M:      Guenter Roeck <[email protected]>
9953 L:      [email protected]
9954 S:      Maintained
9955 F:      Documentation/hwmon/ltc4261.rst
9956 F:      drivers/hwmon/ltc4261.c
9957
9958 LTC2947 HARDWARE MONITOR DRIVER
9959 M:      Nuno Sá <[email protected]>
9960 W:      http://ez.analog.com/community/linux-device-drivers
9961 L:      [email protected]
9962 S:      Supported
9963 F:      drivers/hwmon/ltc2947-core.c
9964 F:      drivers/hwmon/ltc2947-spi.c
9965 F:      drivers/hwmon/ltc2947-i2c.c
9966 F:      drivers/hwmon/ltc2947.h
9967 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
9968
9969 LTC4306 I2C MULTIPLEXER DRIVER
9970 M:      Michael Hennerich <[email protected]>
9971 W:      http://ez.analog.com/community/linux-device-drivers
9972 L:      [email protected]
9973 S:      Supported
9974 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9975 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9976
9977 LTP (Linux Test Project)
9978 M:      Mike Frysinger <[email protected]>
9979 M:      Cyril Hrubis <[email protected]>
9980 M:      Wanlong Gao <[email protected]>
9981 M:      Jan Stancek <[email protected]>
9982 M:      Stanislav Kholmanskikh <[email protected]>
9983 M:      Alexey Kodanev <[email protected]>
9984 L:      [email protected] (subscribers-only)
9985 W:      http://linux-test-project.github.io/
9986 T:      git git://github.com/linux-test-project/ltp.git
9987 S:      Maintained
9988
9989 M68K ARCHITECTURE
9990 M:      Geert Uytterhoeven <[email protected]>
9991 L:      [email protected]
9992 W:      http://www.linux-m68k.org/
9993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9994 S:      Maintained
9995 F:      arch/m68k/
9996 F:      drivers/zorro/
9997
9998 M68K ON APPLE MACINTOSH
9999 M:      Joshua Thompson <[email protected]>
10000 W:      http://www.mac.linux-m68k.org/
10001 L:      [email protected]
10002 S:      Maintained
10003 F:      arch/m68k/mac/
10004
10005 M68K ON HP9000/300
10006 M:      Philip Blundell <[email protected]>
10007 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10008 S:      Maintained
10009 F:      arch/m68k/hp300/
10010
10011 M88DS3103 MEDIA DRIVER
10012 M:      Antti Palosaari <[email protected]>
10013 L:      [email protected]
10014 W:      https://linuxtv.org
10015 W:      http://palosaari.fi/linux/
10016 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10017 T:      git git://linuxtv.org/anttip/media_tree.git
10018 S:      Maintained
10019 F:      drivers/media/dvb-frontends/m88ds3103*
10020
10021 M88RS2000 MEDIA DRIVER
10022 M:      Malcolm Priestley <[email protected]>
10023 L:      [email protected]
10024 W:      https://linuxtv.org
10025 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10026 S:      Maintained
10027 F:      drivers/media/dvb-frontends/m88rs2000*
10028
10029 MA901 MASTERKIT USB FM RADIO DRIVER
10030 M:      Alexey Klimov <[email protected]>
10031 L:      [email protected]
10032 T:      git git://linuxtv.org/media_tree.git
10033 S:      Maintained
10034 F:      drivers/media/radio/radio-ma901.c
10035
10036 MAC80211
10037 M:      Johannes Berg <[email protected]>
10038 L:      [email protected]
10039 W:      http://wireless.kernel.org/
10040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10042 S:      Maintained
10043 F:      Documentation/networking/mac80211-injection.txt
10044 F:      include/net/mac80211.h
10045 F:      net/mac80211/
10046 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10047 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10048
10049 MAILBOX API
10050 M:      Jassi Brar <[email protected]>
10051 L:      [email protected]
10052 S:      Maintained
10053 F:      drivers/mailbox/
10054 F:      include/linux/mailbox_client.h
10055 F:      include/linux/mailbox_controller.h
10056
10057 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10058 M:      Michael Kerrisk <[email protected]>
10059 W:      http://www.kernel.org/doc/man-pages
10060 L:      [email protected]
10061 S:      Maintained
10062
10063 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10064 M:      Rahul Bedarkar <[email protected]>
10065 L:      [email protected]
10066 S:      Maintained
10067 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10068
10069 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10070 M:      Andrew Lunn <[email protected]>
10071 M:      Vivien Didelot <[email protected]>
10072 L:      [email protected]
10073 S:      Maintained
10074 F:      drivers/net/dsa/mv88e6xxx/
10075 F:      include/linux/platform_data/mv88e6xxx.h
10076 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10077 F:      Documentation/networking/devlink/mv88e6xxx.rst
10078
10079 MARVELL ARMADA DRM SUPPORT
10080 M:      Russell King <[email protected]>
10081 S:      Maintained
10082 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10083 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10084 F:      drivers/gpu/drm/armada/
10085 F:      include/uapi/drm/armada_drm.h
10086 F:      Documentation/devicetree/bindings/display/armada/
10087
10088 MARVELL ARMADA 3700 PHY DRIVERS
10089 M:      Miquel Raynal <[email protected]>
10090 S:      Maintained
10091 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10092 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10093 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10094 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10095
10096 MARVELL CRYPTO DRIVER
10097 M:      Boris Brezillon <[email protected]>
10098 M:      Arnaud Ebalard <[email protected]>
10099 M:      Srujana Challa <[email protected]>
10100 F:      drivers/crypto/marvell/
10101 S:      Maintained
10102 L:      [email protected]
10103
10104 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10105 M:      Mirko Lindner <[email protected]>
10106 M:      Stephen Hemminger <[email protected]>
10107 L:      [email protected]
10108 S:      Maintained
10109 F:      drivers/net/ethernet/marvell/sk*
10110
10111 MARVELL LIBERTAS WIRELESS DRIVER
10112 L:      [email protected]
10113 S:      Orphan
10114 F:      drivers/net/wireless/marvell/libertas/
10115
10116 MARVELL MACCHIATOBIN SUPPORT
10117 M:      Russell King <[email protected]>
10118 L:      [email protected]
10119 S:      Maintained
10120 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10121
10122 MARVELL MV643XX ETHERNET DRIVER
10123 M:      Sebastian Hesselbarth <[email protected]>
10124 L:      [email protected]
10125 S:      Maintained
10126 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10127 F:      include/linux/mv643xx.h
10128
10129 MARVELL MV88X3310 PHY DRIVER
10130 M:      Russell King <[email protected]>
10131 L:      [email protected]
10132 S:      Maintained
10133 F:      drivers/net/phy/marvell10g.c
10134
10135 MARVELL MVEBU THERMAL DRIVER
10136 M:      Miquel Raynal <[email protected]>
10137 S:      Maintained
10138 F:      drivers/thermal/armada_thermal.c
10139
10140 MARVELL MVNETA ETHERNET DRIVER
10141 M:      Thomas Petazzoni <[email protected]>
10142 L:      [email protected]
10143 S:      Maintained
10144 F:      drivers/net/ethernet/marvell/mvneta.*
10145
10146 MARVELL MWIFIEX WIRELESS DRIVER
10147 M:      Amitkumar Karwar <[email protected]>
10148 M:      Ganapathi Bhat <[email protected]>
10149 M:      Xinming Hu <[email protected]>
10150 L:      [email protected]
10151 S:      Maintained
10152 F:      drivers/net/wireless/marvell/mwifiex/
10153
10154 MARVELL MWL8K WIRELESS DRIVER
10155 M:      Lennert Buytenhek <[email protected]>
10156 L:      [email protected]
10157 S:      Odd Fixes
10158 F:      drivers/net/wireless/marvell/mwl8k.c
10159
10160 MARVELL NAND CONTROLLER DRIVER
10161 M:      Miquel Raynal <[email protected]>
10162 L:      [email protected]
10163 S:      Maintained
10164 F:      drivers/mtd/nand/raw/marvell_nand.c
10165 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10166
10167 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10168 M:      Nicolas Pitre <[email protected]>
10169 S:      Odd Fixes
10170 F:      drivers/mmc/host/mvsdio.*
10171
10172 MARVELL USB MDIO CONTROLLER DRIVER
10173 M:      Tobias Waldekranz <[email protected]>
10174 L:      [email protected]
10175 S:      Maintained
10176 F:      drivers/net/phy/mdio-mvusb.c
10177 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10178
10179 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10180 M:      Hu Ziji <[email protected]>
10181 L:      [email protected]
10182 S:      Supported
10183 F:      drivers/mmc/host/sdhci-xenon*
10184 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10185
10186 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10187 M:      Sunil Goutham <[email protected]>
10188 M:      Linu Cherian <[email protected]>
10189 M:      Geetha sowjanya <[email protected]>
10190 M:      Jerin Jacob <[email protected]>
10191 L:      [email protected]
10192 S:      Supported
10193 F:      drivers/net/ethernet/marvell/octeontx2/af/
10194 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10195
10196 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10197 M:      Sunil Goutham <[email protected]>
10198 M:      Geetha sowjanya <[email protected]>
10199 M:      Subbaraya Sundeep <[email protected]>
10200 M:      hariprasad <[email protected]>
10201 L:      [email protected]
10202 S:      Supported
10203 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10204
10205 MATROX FRAMEBUFFER DRIVER
10206 L:      [email protected]
10207 S:      Orphan
10208 F:      drivers/video/fbdev/matrox/matroxfb_*
10209 F:      include/uapi/linux/matroxfb.h
10210
10211 MAX16065 HARDWARE MONITOR DRIVER
10212 M:      Guenter Roeck <[email protected]>
10213 L:      [email protected]
10214 S:      Maintained
10215 F:      Documentation/hwmon/max16065.rst
10216 F:      drivers/hwmon/max16065.c
10217
10218 MAX2175 SDR TUNER DRIVER
10219 M:      Ramesh Shanmugasundaram <[email protected]>
10220 L:      [email protected]
10221 T:      git git://linuxtv.org/media_tree.git
10222 S:      Maintained
10223 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10224 F:      Documentation/media/v4l-drivers/max2175.rst
10225 F:      drivers/media/i2c/max2175*
10226 F:      include/uapi/linux/max2175.h
10227
10228 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10229 L:      [email protected]
10230 S:      Orphan
10231 F:      Documentation/hwmon/max6650.rst
10232 F:      drivers/hwmon/max6650.c
10233
10234 MAX6697 HARDWARE MONITOR DRIVER
10235 M:      Guenter Roeck <[email protected]>
10236 L:      [email protected]
10237 S:      Maintained
10238 F:      Documentation/hwmon/max6697.rst
10239 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10240 F:      drivers/hwmon/max6697.c
10241 F:      include/linux/platform_data/max6697.h
10242
10243 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10244 M:      Peter Rosin <[email protected]>
10245 L:      [email protected] (moderated for non-subscribers)
10246 S:      Maintained
10247 F:      Documentation/devicetree/bindings/sound/max9860.txt
10248 F:      sound/soc/codecs/max9860.*
10249
10250 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10251 M:      Andreas Klinger <[email protected]>
10252 L:      [email protected]
10253 S:      Maintained
10254 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10255 F:      drivers/iio/proximity/mb1232.c
10256
10257 MAXIM MAX77650 PMIC MFD DRIVER
10258 M:      Bartosz Golaszewski <[email protected]>
10259 L:      [email protected]
10260 S:      Maintained
10261 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10262 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10263 F:      include/linux/mfd/max77650.h
10264 F:      drivers/mfd/max77650.c
10265 F:      drivers/regulator/max77650-regulator.c
10266 F:      drivers/power/supply/max77650-charger.c
10267 F:      drivers/input/misc/max77650-onkey.c
10268 F:      drivers/leds/leds-max77650.c
10269 F:      drivers/gpio/gpio-max77650.c
10270
10271 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10272 M:      Javier Martinez Canillas <[email protected]>
10273 L:      [email protected]
10274 S:      Supported
10275 F:      drivers/regulator/max77802-regulator.c
10276 F:      Documentation/devicetree/bindings/*/*max77802.txt
10277 F:      include/dt-bindings/*/*max77802.h
10278
10279 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10280 M:      Krzysztof Kozlowski <[email protected]>
10281 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10282 L:      [email protected]
10283 S:      Supported
10284 F:      drivers/power/supply/max14577_charger.c
10285 F:      drivers/power/supply/max77693_charger.c
10286
10287 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10288 M:      Chanwoo Choi <[email protected]>
10289 M:      Krzysztof Kozlowski <[email protected]>
10290 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10291 L:      [email protected]
10292 S:      Supported
10293 F:      drivers/*/max14577*.c
10294 F:      drivers/*/max77686*.c
10295 F:      drivers/*/max77693*.c
10296 F:      drivers/extcon/extcon-max14577.c
10297 F:      drivers/extcon/extcon-max77693.c
10298 F:      drivers/rtc/rtc-max77686.c
10299 F:      drivers/clk/clk-max77686.c
10300 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10301 F:      Documentation/devicetree/bindings/*/max77686.txt
10302 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10303 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10304 F:      include/linux/mfd/max14577*.h
10305 F:      include/linux/mfd/max77686*.h
10306 F:      include/linux/mfd/max77693*.h
10307
10308 MAXIRADIO FM RADIO RECEIVER DRIVER
10309 M:      Hans Verkuil <[email protected]>
10310 L:      [email protected]
10311 T:      git git://linuxtv.org/media_tree.git
10312 W:      https://linuxtv.org
10313 S:      Maintained
10314 F:      drivers/media/radio/radio-maxiradio*
10315
10316 MCAN MMIO DEVICE DRIVER
10317 M:      Dan Murphy <[email protected]>
10318 M:      Sriram Dash <[email protected]>
10319 L:      [email protected]
10320 S:      Maintained
10321 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10322 F:      drivers/net/can/m_can/m_can.c
10323 F:      drivers/net/can/m_can/m_can.h
10324 F:      drivers/net/can/m_can/m_can_platform.c
10325
10326 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10327 M:      Rishi Gupta <[email protected]>
10328 L:      [email protected]
10329 L:      [email protected]
10330 S:      Maintained
10331 F:      drivers/hid/hid-mcp2221.c
10332
10333 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10334 M:      Peter Rosin <[email protected]>
10335 L:      [email protected]
10336 S:      Maintained
10337 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10338 F:      drivers/iio/potentiometer/mcp4018.c
10339 F:      drivers/iio/potentiometer/mcp4531.c
10340
10341 MCR20A IEEE-802.15.4 RADIO DRIVER
10342 M:      Xue Liu <[email protected]>
10343 L:      [email protected]
10344 W:      https://github.com/xueliu/mcr20a-linux
10345 S:      Maintained
10346 F:      drivers/net/ieee802154/mcr20a.c
10347 F:      drivers/net/ieee802154/mcr20a.h
10348 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10349
10350 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10351 M:      William Breathitt Gray <[email protected]>
10352 L:      [email protected]
10353 S:      Maintained
10354 F:      drivers/iio/dac/cio-dac.c
10355
10356 MEDIA CONTROLLER FRAMEWORK
10357 M:      Sakari Ailus <[email protected]>
10358 M:      Laurent Pinchart <[email protected]>
10359 L:      [email protected]
10360 W:      https://www.linuxtv.org
10361 T:      git git://linuxtv.org/media_tree.git
10362 S:      Supported
10363 F:      drivers/media/mc/
10364 F:      include/media/media-*.h
10365 F:      include/uapi/linux/media.h
10366
10367 MEDIA DRIVERS FOR ASCOT2E
10368 M:      Sergey Kozlov <[email protected]>
10369 M:      Abylay Ospan <[email protected]>
10370 L:      [email protected]
10371 W:      https://linuxtv.org
10372 W:      http://netup.tv/
10373 T:      git git://linuxtv.org/media_tree.git
10374 S:      Supported
10375 F:      drivers/media/dvb-frontends/ascot2e*
10376
10377 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10378 M:      Jasmin Jessich <[email protected]>
10379 L:      [email protected]
10380 W:      https://linuxtv.org
10381 T:      git git://linuxtv.org/media_tree.git
10382 S:      Maintained
10383 F:      drivers/media/dvb-frontends/cxd2099*
10384
10385 MEDIA DRIVERS FOR CXD2841ER
10386 M:      Sergey Kozlov <[email protected]>
10387 M:      Abylay Ospan <[email protected]>
10388 L:      [email protected]
10389 W:      https://linuxtv.org
10390 W:      http://netup.tv/
10391 T:      git git://linuxtv.org/media_tree.git
10392 S:      Supported
10393 F:      drivers/media/dvb-frontends/cxd2841er*
10394
10395 MEDIA DRIVERS FOR CXD2880
10396 M:      Yasunari Takiguchi <[email protected]>
10397 L:      [email protected]
10398 W:      http://linuxtv.org/
10399 T:      git git://linuxtv.org/media_tree.git
10400 S:      Supported
10401 F:      drivers/media/dvb-frontends/cxd2880/*
10402 F:      drivers/media/spi/cxd2880*
10403
10404 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10405 L:      [email protected]
10406 W:      https://linuxtv.org
10407 T:      git git://linuxtv.org/media_tree.git
10408 S:      Orphan
10409 F:      drivers/media/pci/ddbridge/*
10410
10411 MEDIA DRIVERS FOR FREESCALE IMX
10412 M:      Steve Longerbeam <[email protected]>
10413 M:      Philipp Zabel <[email protected]>
10414 L:      [email protected]
10415 T:      git git://linuxtv.org/media_tree.git
10416 S:      Maintained
10417 F:      Documentation/devicetree/bindings/media/imx.txt
10418 F:      Documentation/media/v4l-drivers/imx.rst
10419 F:      drivers/staging/media/imx/
10420 F:      include/linux/imx-media.h
10421 F:      include/media/imx.h
10422
10423 MEDIA DRIVER FOR FREESCALE IMX PXP
10424 M:      Philipp Zabel <[email protected]>
10425 L:      [email protected]
10426 T:      git git://linuxtv.org/media_tree.git
10427 S:      Maintained
10428 F:      drivers/media/platform/imx-pxp.[ch]
10429
10430 MEDIA DRIVERS FOR FREESCALE IMX7
10431 M:      Rui Miguel Silva <[email protected]>
10432 L:      [email protected]
10433 T:      git git://linuxtv.org/media_tree.git
10434 S:      Maintained
10435 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10436 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10437 F:      Documentation/media/v4l-drivers/imx7.rst
10438 F:      drivers/staging/media/imx/imx7-media-csi.c
10439 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10440
10441 MEDIA DRIVERS FOR HELENE
10442 M:      Abylay Ospan <[email protected]>
10443 L:      [email protected]
10444 W:      https://linuxtv.org
10445 W:      http://netup.tv/
10446 T:      git git://linuxtv.org/media_tree.git
10447 S:      Supported
10448 F:      drivers/media/dvb-frontends/helene*
10449
10450 MEDIA DRIVERS FOR HORUS3A
10451 M:      Sergey Kozlov <[email protected]>
10452 M:      Abylay Ospan <[email protected]>
10453 L:      [email protected]
10454 W:      https://linuxtv.org
10455 W:      http://netup.tv/
10456 T:      git git://linuxtv.org/media_tree.git
10457 S:      Supported
10458 F:      drivers/media/dvb-frontends/horus3a*
10459
10460 MEDIA DRIVERS FOR LNBH25
10461 M:      Sergey Kozlov <[email protected]>
10462 M:      Abylay Ospan <[email protected]>
10463 L:      [email protected]
10464 W:      https://linuxtv.org
10465 W:      http://netup.tv/
10466 T:      git git://linuxtv.org/media_tree.git
10467 S:      Supported
10468 F:      drivers/media/dvb-frontends/lnbh25*
10469
10470 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10471 L:      [email protected]
10472 W:      https://linuxtv.org
10473 T:      git git://linuxtv.org/media_tree.git
10474 S:      Orphan
10475 F:      drivers/media/dvb-frontends/mxl5xx*
10476
10477 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10478 M:      Sergey Kozlov <[email protected]>
10479 M:      Abylay Ospan <[email protected]>
10480 L:      [email protected]
10481 W:      https://linuxtv.org
10482 W:      http://netup.tv/
10483 T:      git git://linuxtv.org/media_tree.git
10484 S:      Supported
10485 F:      drivers/media/pci/netup_unidvb/*
10486
10487 MEDIA DRIVERS FOR RENESAS - CEU
10488 M:      Jacopo Mondi <[email protected]>
10489 L:      [email protected]
10490 L:      [email protected]
10491 T:      git git://linuxtv.org/media_tree.git
10492 S:      Supported
10493 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10494 F:      drivers/media/platform/renesas-ceu.c
10495 F:      include/media/drv-intf/renesas-ceu.h
10496
10497 MEDIA DRIVERS FOR RENESAS - DRIF
10498 M:      Ramesh Shanmugasundaram <[email protected]>
10499 L:      [email protected]
10500 L:      [email protected]
10501 T:      git git://linuxtv.org/media_tree.git
10502 S:      Supported
10503 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10504 F:      drivers/media/platform/rcar_drif.c
10505
10506 MEDIA DRIVERS FOR RENESAS - FCP
10507 M:      Laurent Pinchart <[email protected]>
10508 L:      [email protected]
10509 L:      [email protected]
10510 T:      git git://linuxtv.org/media_tree.git
10511 S:      Supported
10512 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10513 F:      drivers/media/platform/rcar-fcp.c
10514 F:      include/media/rcar-fcp.h
10515
10516 MEDIA DRIVERS FOR RENESAS - FDP1
10517 M:      Kieran Bingham <[email protected]>
10518 L:      [email protected]
10519 L:      [email protected]
10520 T:      git git://linuxtv.org/media_tree.git
10521 S:      Supported
10522 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10523 F:      drivers/media/platform/rcar_fdp1.c
10524
10525 MEDIA DRIVERS FOR RENESAS - VIN
10526 M:      Niklas Söderlund <[email protected]>
10527 L:      [email protected]
10528 L:      [email protected]
10529 T:      git git://linuxtv.org/media_tree.git
10530 S:      Supported
10531 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10532 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10533 F:      drivers/media/platform/rcar-vin/
10534
10535 MEDIA DRIVERS FOR RENESAS - VSP1
10536 M:      Laurent Pinchart <[email protected]>
10537 M:      Kieran Bingham <[email protected]>
10538 L:      [email protected]
10539 L:      [email protected]
10540 T:      git git://linuxtv.org/media_tree.git
10541 S:      Supported
10542 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10543 F:      drivers/media/platform/vsp1/
10544
10545 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10546 L:      [email protected]
10547 W:      https://linuxtv.org
10548 T:      git git://linuxtv.org/media_tree.git
10549 S:      Orphan
10550 F:      drivers/media/dvb-frontends/stv0910*
10551
10552 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10553 L:      [email protected]
10554 W:      https://linuxtv.org
10555 T:      git git://linuxtv.org/media_tree.git
10556 S:      Orphan
10557 F:      drivers/media/dvb-frontends/stv6111*
10558
10559 MEDIA DRIVERS FOR STM32 - DCMI
10560 M:      Hugues Fruchet <[email protected]>
10561 L:      [email protected]
10562 T:      git git://linuxtv.org/media_tree.git
10563 S:      Supported
10564 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10565 F:      drivers/media/platform/stm32/stm32-dcmi.c
10566
10567 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10568 M:      Dmitry Osipenko <[email protected]>
10569 L:      [email protected]
10570 L:      [email protected]
10571 T:      git git://linuxtv.org/media_tree.git
10572 S:      Maintained
10573 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10574 F:      drivers/staging/media/tegra-vde/
10575
10576 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10577 M:      Mauro Carvalho Chehab <[email protected]>
10578 L:      [email protected]
10579 W:      https://linuxtv.org
10580 Q:      http://patchwork.kernel.org/project/linux-media/list/
10581 T:      git git://linuxtv.org/media_tree.git
10582 S:      Maintained
10583 F:      Documentation/devicetree/bindings/media/
10584 F:      Documentation/media/
10585 F:      drivers/media/
10586 F:      drivers/staging/media/
10587 F:      include/linux/platform_data/media/
10588 F:      include/media/
10589 F:      include/uapi/linux/dvb/
10590 F:      include/uapi/linux/videodev2.h
10591 F:      include/uapi/linux/media.h
10592 F:      include/uapi/linux/v4l2-*
10593 F:      include/uapi/linux/meye.h
10594 F:      include/uapi/linux/ivtv*
10595 F:      include/uapi/linux/uvcvideo.h
10596
10597 MEDIATEK BLUETOOTH DRIVER
10598 M:      Sean Wang <[email protected]>
10599 L:      [email protected]
10600 L:      [email protected] (moderated for non-subscribers)
10601 S:      Maintained
10602 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10603 F:      drivers/bluetooth/btmtkuart.c
10604
10605 MEDIATEK CIR DRIVER
10606 M:      Sean Wang <[email protected]>
10607 S:      Maintained
10608 F:      drivers/media/rc/mtk-cir.c
10609
10610 MEDIATEK DMA DRIVER
10611 M:      Sean Wang <[email protected]>
10612 L:      [email protected]
10613 L:      [email protected] (moderated for non-subscribers)
10614 L:      [email protected] (moderated for non-subscribers)
10615 S:      Maintained
10616 F:      Documentation/devicetree/bindings/dma/mtk-*
10617 F:      drivers/dma/mediatek/
10618
10619 MEDIATEK PMIC LED DRIVER
10620 M:      Sean Wang <[email protected]>
10621 S:      Maintained
10622 F:      drivers/leds/leds-mt6323.c
10623 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10624
10625 MEDIATEK ETHERNET DRIVER
10626 M:      Felix Fietkau <[email protected]>
10627 M:      John Crispin <[email protected]>
10628 M:      Sean Wang <[email protected]>
10629 M:      Mark Lee <[email protected]>
10630 L:      [email protected]
10631 S:      Maintained
10632 F:      drivers/net/ethernet/mediatek/
10633
10634 MEDIATEK SWITCH DRIVER
10635 M:      Sean Wang <[email protected]>
10636 L:      [email protected]
10637 S:      Maintained
10638 F:      drivers/net/dsa/mt7530.*
10639 F:      net/dsa/tag_mtk.c
10640
10641 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10642 M:      Sean Wang <[email protected]>
10643 L:      [email protected]
10644 S:      Maintained
10645 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10646 F:      drivers/power/reset/mt6323-poweroff.c
10647
10648 MEDIATEK JPEG DRIVER
10649 M:      Rick Chang <[email protected]>
10650 M:      Bin Liu <[email protected]>
10651 S:      Supported
10652 F:      drivers/media/platform/mtk-jpeg/
10653 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10654
10655 MEDIATEK MDP DRIVER
10656 M:      Minghsiu Tsai <[email protected]>
10657 M:      Houlong Wei <[email protected]>
10658 M:      Andrew-CT Chen <[email protected]>
10659 S:      Supported
10660 F:      drivers/media/platform/mtk-mdp/
10661 F:      drivers/media/platform/mtk-vpu/
10662 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10663
10664 MEDIATEK MEDIA DRIVER
10665 M:      Tiffany Lin <[email protected]>
10666 M:      Andrew-CT Chen <[email protected]>
10667 S:      Supported
10668 F:      drivers/media/platform/mtk-vcodec/
10669 F:      drivers/media/platform/mtk-vpu/
10670 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10671 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10672
10673 MEDIATEK MMC/SD/SDIO DRIVER
10674 M:      Chaotian Jing <[email protected]>
10675 S:      Maintained
10676 F:      drivers/mmc/host/mtk-sd.c
10677 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10678
10679 MEDIATEK MT76 WIRELESS LAN DRIVER
10680 M:      Felix Fietkau <[email protected]>
10681 M:      Lorenzo Bianconi <[email protected]>
10682 R:      Ryder Lee <[email protected]>
10683 R:      Roy Luo <[email protected]>
10684 L:      [email protected]
10685 S:      Maintained
10686 F:      drivers/net/wireless/mediatek/mt76/
10687
10688 MEDIATEK MT7601U WIRELESS LAN DRIVER
10689 M:      Jakub Kicinski <[email protected]>
10690 L:      [email protected]
10691 S:      Maintained
10692 F:      drivers/net/wireless/mediatek/mt7601u/
10693
10694 MEDIATEK MT7621/28/88 I2C DRIVER
10695 M:      Stefan Roese <[email protected]>
10696 L:      [email protected]
10697 S:      Maintained
10698 F:      drivers/i2c/busses/i2c-mt7621.c
10699 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10700
10701 MEDIATEK NAND CONTROLLER DRIVER
10702 M:      Xiaolei Li <[email protected]>
10703 L:      [email protected]
10704 S:      Maintained
10705 F:      drivers/mtd/nand/raw/mtk_*
10706 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10707
10708 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10709 M:      Sean Wang <[email protected]>
10710 S:      Maintained
10711 F:      drivers/char/hw_random/mtk-rng.c
10712
10713 MEDIATEK USB3 DRD IP DRIVER
10714 M:      Chunfeng Yun <[email protected]>
10715 L:      [email protected] (moderated for non-subscribers)
10716 L:      [email protected] (moderated for non-subscribers)
10717 L:      [email protected] (moderated for non-subscribers)
10718 S:      Maintained
10719 F:      drivers/usb/mtu3/
10720
10721 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10722 M:      Peter Senna Tschudin <[email protected]>
10723 M:      Martin Donnelly <[email protected]>
10724 M:      Martyn Welch <[email protected]>
10725 S:      Maintained
10726 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10727 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10728
10729 MEGARAID SCSI/SAS DRIVERS
10730 M:      Kashyap Desai <[email protected]>
10731 M:      Sumit Saxena <[email protected]>
10732 M:      Shivasharan S <[email protected]>
10733 L:      [email protected]
10734 L:      [email protected]
10735 W:      http://www.avagotech.com/support/
10736 S:      Maintained
10737 F:      Documentation/scsi/megaraid.rst
10738 F:      drivers/scsi/megaraid.*
10739 F:      drivers/scsi/megaraid/
10740
10741 MELEXIS MLX90614 DRIVER
10742 M:      Crt Mori <[email protected]>
10743 L:      [email protected]
10744 W:      http://www.melexis.com
10745 S:      Supported
10746 F:      drivers/iio/temperature/mlx90614.c
10747
10748 MELEXIS MLX90632 DRIVER
10749 M:      Crt Mori <[email protected]>
10750 L:      [email protected]
10751 W:      http://www.melexis.com
10752 S:      Supported
10753 F:      drivers/iio/temperature/mlx90632.c
10754
10755 MELFAS MIP4 TOUCHSCREEN DRIVER
10756 M:      Sangwon Jee <[email protected]>
10757 W:      http://www.melfas.com
10758 S:      Supported
10759 F:      drivers/input/touchscreen/melfas_mip4.c
10760 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10761
10762 MELLANOX ETHERNET DRIVER (mlx4_en)
10763 M:      Tariq Toukan <[email protected]>
10764 L:      [email protected]
10765 S:      Supported
10766 W:      http://www.mellanox.com
10767 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10768 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10769
10770 MELLANOX ETHERNET DRIVER (mlx5e)
10771 M:      Saeed Mahameed <[email protected]>
10772 L:      [email protected]
10773 S:      Supported
10774 W:      http://www.mellanox.com
10775 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10776 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10777
10778 MELLANOX ETHERNET INNOVA DRIVERS
10779 R:      Boris Pismenny <[email protected]>
10780 L:      [email protected]
10781 S:      Supported
10782 W:      http://www.mellanox.com
10783 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10784 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10785 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10786 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10787 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10788
10789 MELLANOX ETHERNET SWITCH DRIVERS
10790 M:      Jiri Pirko <[email protected]>
10791 M:      Ido Schimmel <[email protected]>
10792 L:      [email protected]
10793 S:      Supported
10794 W:      http://www.mellanox.com
10795 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10796 F:      drivers/net/ethernet/mellanox/mlxsw/
10797 F:      tools/testing/selftests/drivers/net/mlxsw/
10798
10799 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10800 M:      [email protected]
10801 L:      [email protected]
10802 S:      Supported
10803 W:      http://www.mellanox.com
10804 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10805 F:      drivers/net/ethernet/mellanox/mlxfw/
10806
10807 MELLANOX HARDWARE PLATFORM SUPPORT
10808 M:      Andy Shevchenko <[email protected]>
10809 M:      Darren Hart <[email protected]>
10810 M:      Vadim Pasternak <[email protected]>
10811 L:      [email protected]
10812 S:      Supported
10813 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
10814 F:      drivers/platform/mellanox/
10815 F:      include/linux/platform_data/mlxreg.h
10816
10817 MELLANOX MLX4 core VPI driver
10818 M:      Tariq Toukan <[email protected]>
10819 L:      [email protected]
10820 L:      [email protected]
10821 W:      http://www.mellanox.com
10822 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10823 S:      Supported
10824 F:      drivers/net/ethernet/mellanox/mlx4/
10825 F:      include/linux/mlx4/
10826
10827 MELLANOX MLX4 IB driver
10828 M:      Yishai Hadas <[email protected]>
10829 L:      [email protected]
10830 W:      http://www.mellanox.com
10831 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10832 S:      Supported
10833 F:      drivers/infiniband/hw/mlx4/
10834 F:      include/linux/mlx4/
10835 F:      include/uapi/rdma/mlx4-abi.h
10836
10837 MELLANOX MLX5 core VPI driver
10838 M:      Saeed Mahameed <[email protected]>
10839 M:      Leon Romanovsky <[email protected]>
10840 L:      [email protected]
10841 L:      [email protected]
10842 W:      http://www.mellanox.com
10843 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10844 S:      Supported
10845 F:      drivers/net/ethernet/mellanox/mlx5/core/
10846 F:      include/linux/mlx5/
10847 F:      Documentation/networking/device_drivers/mellanox/
10848
10849 MELLANOX MLX5 IB driver
10850 M:      Leon Romanovsky <[email protected]>
10851 L:      [email protected]
10852 W:      http://www.mellanox.com
10853 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10854 S:      Supported
10855 F:      drivers/infiniband/hw/mlx5/
10856 F:      include/linux/mlx5/
10857 F:      include/uapi/rdma/mlx5-abi.h
10858
10859 MELLANOX MLXCPLD I2C AND MUX DRIVER
10860 M:      Vadim Pasternak <[email protected]>
10861 M:      Michael Shych <[email protected]>
10862 L:      [email protected]
10863 S:      Supported
10864 F:      drivers/i2c/busses/i2c-mlxcpld.c
10865 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10866 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10867
10868 MELLANOX MLXCPLD LED DRIVER
10869 M:      Vadim Pasternak <[email protected]>
10870 L:      [email protected]
10871 S:      Supported
10872 F:      drivers/leds/leds-mlxcpld.c
10873 F:      drivers/leds/leds-mlxreg.c
10874 F:      Documentation/leds/leds-mlxcpld.rst
10875
10876 MELLANOX PLATFORM DRIVER
10877 M:      Vadim Pasternak <[email protected]>
10878 L:      [email protected]
10879 S:      Supported
10880 F:      drivers/platform/x86/mlx-platform.c
10881
10882 MEMBARRIER SUPPORT
10883 M:      Mathieu Desnoyers <[email protected]>
10884 M:      "Paul E. McKenney" <[email protected]>
10885 L:      [email protected]
10886 S:      Supported
10887 F:      kernel/sched/membarrier.c
10888 F:      include/uapi/linux/membarrier.h
10889 F:      arch/powerpc/include/asm/membarrier.h
10890
10891 MEMBLOCK
10892 M:      Mike Rapoport <[email protected]>
10893 L:      [email protected]
10894 S:      Maintained
10895 F:      include/linux/memblock.h
10896 F:      mm/memblock.c
10897 F:      Documentation/core-api/boot-time-mm.rst
10898
10899 MEMORY MANAGEMENT
10900 M:      Andrew Morton <[email protected]>
10901 L:      [email protected]
10902 W:      http://www.linux-mm.org
10903 T:      quilt https://ozlabs.org/~akpm/mmotm/
10904 T:      quilt https://ozlabs.org/~akpm/mmots/
10905 T:      git git://github.com/hnaz/linux-mm.git
10906 S:      Maintained
10907 F:      include/linux/mm.h
10908 F:      include/linux/gfp.h
10909 F:      include/linux/mmzone.h
10910 F:      include/linux/memory_hotplug.h
10911 F:      include/linux/vmalloc.h
10912 F:      mm/
10913
10914 MEMORY TECHNOLOGY DEVICES (MTD)
10915 M:      Miquel Raynal <[email protected]>
10916 M:      Richard Weinberger <[email protected]>
10917 M:      Vignesh Raghavendra <[email protected]>
10918 L:      [email protected]
10919 W:      http://www.linux-mtd.infradead.org/
10920 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10921 C:      irc://irc.oftc.net/mtd
10922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10924 S:      Maintained
10925 F:      Documentation/devicetree/bindings/mtd/
10926 F:      drivers/mtd/
10927 F:      include/linux/mtd/
10928 F:      include/uapi/mtd/
10929
10930 MEN A21 WATCHDOG DRIVER
10931 M:      Johannes Thumshirn <[email protected]>
10932 L:      [email protected]
10933 S:      Maintained
10934 F:      drivers/watchdog/mena21_wdt.c
10935
10936 MEN CHAMELEON BUS (mcb)
10937 M:      Johannes Thumshirn <[email protected]>
10938 S:      Maintained
10939 F:      drivers/mcb/
10940 F:      include/linux/mcb.h
10941 F:      Documentation/driver-api/men-chameleon-bus.rst
10942
10943 MEN F21BMC (Board Management Controller)
10944 M:      Andreas Werner <[email protected]>
10945 S:      Supported
10946 F:      drivers/mfd/menf21bmc.c
10947 F:      drivers/watchdog/menf21bmc_wdt.c
10948 F:      drivers/leds/leds-menf21bmc.c
10949 F:      drivers/hwmon/menf21bmc_hwmon.c
10950 F:      Documentation/hwmon/menf21bmc.rst
10951
10952 MEN Z069 WATCHDOG DRIVER
10953 M:      Johannes Thumshirn <[email protected]>
10954 L:      [email protected]
10955 S:      Maintained
10956 F:      drivers/watchdog/menz69_wdt.c
10957
10958 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10959 M:      Neil Armstrong <[email protected]>
10960 L:      [email protected]
10961 L:      [email protected]
10962 W:      http://linux-meson.com/
10963 S:      Supported
10964 F:      drivers/media/platform/meson/ao-cec.c
10965 F:      drivers/media/platform/meson/ao-cec-g12a.c
10966 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
10967 T:      git git://linuxtv.org/media_tree.git
10968
10969 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10970 M:      Liang Yang <[email protected]>
10971 L:      [email protected]
10972 S:      Maintained
10973 F:      drivers/mtd/nand/raw/meson_*
10974 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10975
10976 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10977 M:      Maxime Jourdan <[email protected]>
10978 L:      [email protected]
10979 L:      [email protected]
10980 S:      Supported
10981 F:      drivers/staging/media/meson/vdec/
10982 T:      git git://linuxtv.org/media_tree.git
10983
10984 METHODE UDPU SUPPORT
10985 M:      Vladimir Vid <[email protected]>
10986 S:      Maintained
10987 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10988
10989 MHI BUS
10990 M:      Manivannan Sadhasivam <[email protected]>
10991 M:      Hemant Kumar <[email protected]>
10992 L:      [email protected]
10993 S:      Maintained
10994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
10995 F:      Documentation/mhi/
10996 F:      drivers/bus/mhi/
10997 F:      include/linux/mhi.h
10998
10999 MICROBLAZE ARCHITECTURE
11000 M:      Michal Simek <[email protected]>
11001 W:      http://www.monstr.eu/fdt/
11002 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11003 S:      Supported
11004 F:      arch/microblaze/
11005
11006 MICROCHIP AT91 SERIAL DRIVER
11007 M:      Richard Genoud <[email protected]>
11008 S:      Maintained
11009 F:      drivers/tty/serial/atmel_serial.c
11010 F:      drivers/tty/serial/atmel_serial.h
11011 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11012
11013 MICROCHIP AUDIO ASOC DRIVERS
11014 M:      Codrin Ciubotariu <[email protected]>
11015 L:      [email protected] (moderated for non-subscribers)
11016 S:      Supported
11017 F:      sound/soc/atmel
11018
11019 MICROCHIP DMA DRIVER
11020 M:      Ludovic Desroches <[email protected]>
11021 L:      [email protected] (moderated for non-subscribers)
11022 L:      [email protected]
11023 S:      Supported
11024 F:      drivers/dma/at_hdmac.c
11025 F:      drivers/dma/at_hdmac_regs.h
11026 F:      include/linux/platform_data/dma-atmel.h
11027 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11028 F:      include/dt-bindings/dma/at91.h
11029
11030 MICROCHIP ECC DRIVER
11031 M:      Tudor Ambarus <[email protected]>
11032 L:      [email protected]
11033 S:      Maintained
11034 F:      drivers/crypto/atmel-ecc.*
11035
11036 MICROCHIP I2C DRIVER
11037 M:      Ludovic Desroches <[email protected]>
11038 L:      [email protected]
11039 S:      Supported
11040 F:      drivers/i2c/busses/i2c-at91.h
11041 F:      drivers/i2c/busses/i2c-at91-*.c
11042
11043 MICROCHIP ISC DRIVER
11044 M:      Eugen Hristev <[email protected]>
11045 L:      [email protected]
11046 S:      Supported
11047 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11048 F:      drivers/media/platform/atmel/atmel-isc.h
11049 F:      drivers/media/platform/atmel/atmel-isc-base.c
11050 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11051 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11052 F:      include/linux/atmel-isc-media.h
11053
11054 MICROCHIP ISI DRIVER
11055 M:      Eugen Hristev <[email protected]>
11056 L:      [email protected]
11057 S:      Supported
11058 F:      drivers/media/platform/atmel/atmel-isi.c
11059 F:      drivers/media/platform/atmel/atmel-isi.h
11060
11061 MICROCHIP AT91 USART MFD DRIVER
11062 M:      Radu Pirea <[email protected]>
11063 L:      [email protected]
11064 S:      Supported
11065 F:      drivers/mfd/at91-usart.c
11066 F:      include/dt-bindings/mfd/at91-usart.h
11067 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11068
11069 MICROCHIP AT91 USART SPI DRIVER
11070 M:      Radu Pirea <[email protected]>
11071 L:      [email protected]
11072 S:      Supported
11073 F:      drivers/spi/spi-at91-usart.c
11074 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11075
11076 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11077 M:      Woojung Huh <[email protected]>
11078 M:      Microchip Linux Driver Support <[email protected]>
11079 L:      [email protected]
11080 S:      Maintained
11081 F:      net/dsa/tag_ksz.c
11082 F:      drivers/net/dsa/microchip/*
11083 F:      include/linux/platform_data/microchip-ksz.h
11084 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11085
11086 MICROCHIP LAN743X ETHERNET DRIVER
11087 M:      Bryan Whitehead <[email protected]>
11088 M:      Microchip Linux Driver Support <[email protected]>
11089 L:      [email protected]
11090 S:      Maintained
11091 F:      drivers/net/ethernet/microchip/lan743x_*
11092
11093 MICROCHIP LCDFB DRIVER
11094 M:      Nicolas Ferre <[email protected]>
11095 L:      [email protected]
11096 S:      Maintained
11097 F:      drivers/video/fbdev/atmel_lcdfb.c
11098 F:      include/video/atmel_lcdc.h
11099
11100 MICROCHIP MMC/SD/SDIO MCI DRIVER
11101 M:      Ludovic Desroches <[email protected]>
11102 S:      Maintained
11103 F:      drivers/mmc/host/atmel-mci.c
11104
11105 MICROCHIP MCP16502 PMIC DRIVER
11106 M:      Andrei Stefanescu <[email protected]>
11107 L:      [email protected] (moderated for non-subscribers)
11108 S:      Maintained
11109 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11110 F:      drivers/regulator/mcp16502.c
11111
11112 MICROCHIP MCP3911 ADC DRIVER
11113 M:      Marcus Folkesson <[email protected]>
11114 M:      Kent Gustavsson <[email protected]>
11115 L:      [email protected]
11116 S:      Supported
11117 F:      drivers/iio/adc/mcp3911.c
11118 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11119
11120 MICROCHIP NAND DRIVER
11121 M:      Tudor Ambarus <[email protected]>
11122 L:      [email protected]
11123 S:      Supported
11124 F:      drivers/mtd/nand/raw/atmel/*
11125 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11126
11127 MICROCHIP PWM DRIVER
11128 M:      Claudiu Beznea <[email protected]>
11129 L:      [email protected] (moderated for non-subscribers)
11130 L:      [email protected]
11131 S:      Supported
11132 F:      drivers/pwm/pwm-atmel.c
11133 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11134
11135 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11136 M:      Ludovic Desroches <[email protected]>
11137 M:      Eugen Hristev <[email protected]>
11138 L:      [email protected]
11139 S:      Supported
11140 F:      drivers/iio/adc/at91-sama5d2_adc.c
11141 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11142 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11143
11144 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11145 M:      Nicolas Ferre <[email protected]>
11146 S:      Supported
11147 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11148
11149 MICROCHIP SPI DRIVER
11150 M:      Nicolas Ferre <[email protected]>
11151 S:      Supported
11152 F:      drivers/spi/spi-atmel.*
11153
11154 MICROCHIP SSC DRIVER
11155 M:      Nicolas Ferre <[email protected]>
11156 L:      [email protected] (moderated for non-subscribers)
11157 S:      Supported
11158 F:      drivers/misc/atmel-ssc.c
11159 F:      include/linux/atmel-ssc.h
11160
11161 MICROCHIP USBA UDC DRIVER
11162 M:      Cristian Birsan <[email protected]>
11163 L:      [email protected] (moderated for non-subscribers)
11164 S:      Supported
11165 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11166
11167 MICROCHIP USB251XB DRIVER
11168 M:      Richard Leitner <[email protected]>
11169 L:      [email protected]
11170 S:      Maintained
11171 F:      drivers/usb/misc/usb251xb.c
11172 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11173
11174 MICROCHIP XDMA DRIVER
11175 M:      Ludovic Desroches <[email protected]>
11176 L:      [email protected]
11177 L:      [email protected]
11178 S:      Supported
11179 F:      drivers/dma/at_xdmac.c
11180
11181 MICROSEMI MIPS SOCS
11182 M:      Alexandre Belloni <[email protected]>
11183 M:      Microchip Linux Driver Support <[email protected]>
11184 L:      [email protected]
11185 S:      Supported
11186 F:      arch/mips/generic/board-ocelot.c
11187 F:      arch/mips/configs/generic/board-ocelot.config
11188 F:      arch/mips/boot/dts/mscc/
11189 F:      Documentation/devicetree/bindings/mips/mscc.txt
11190
11191 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11192 M:      Don Brace <[email protected]>
11193 L:      [email protected]
11194 L:      [email protected]
11195 S:      Supported
11196 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11197 F:      drivers/scsi/smartpqi/Kconfig
11198 F:      drivers/scsi/smartpqi/Makefile
11199 F:      include/linux/cciss*.h
11200 F:      include/uapi/linux/cciss*.h
11201 F:      Documentation/scsi/smartpqi.rst
11202
11203 MICROSEMI ETHERNET SWITCH DRIVER
11204 M:      Alexandre Belloni <[email protected]>
11205 M:      Microchip Linux Driver Support <[email protected]>
11206 L:      [email protected]
11207 S:      Supported
11208 F:      drivers/net/ethernet/mscc/
11209 F:      include/soc/mscc/ocelot*
11210
11211 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11212 M:      Chen Yu <[email protected]>
11213 L:      [email protected]
11214 S:      Supported
11215 F:      drivers/platform/x86/surfacepro3_button.c
11216
11217 MICROTEK X6 SCANNER
11218 M:      Oliver Neukum <[email protected]>
11219 S:      Maintained
11220 F:      drivers/usb/image/microtek.*
11221
11222 MIPS
11223 M:      Thomas Bogendoerfer <[email protected]>
11224 L:      [email protected]
11225 W:      http://www.linux-mips.org/
11226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11227 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11228 S:      Maintained
11229 F:      Documentation/devicetree/bindings/mips/
11230 F:      Documentation/mips/
11231 F:      arch/mips/
11232 F:      drivers/platform/mips/
11233
11234 MIPS BOSTON DEVELOPMENT BOARD
11235 M:      Paul Burton <[email protected]>
11236 L:      [email protected]
11237 S:      Maintained
11238 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11239 F:      arch/mips/boot/dts/img/boston.dts
11240 F:      arch/mips/configs/generic/board-boston.config
11241 F:      drivers/clk/imgtec/clk-boston.c
11242 F:      include/dt-bindings/clock/boston-clock.h
11243
11244 MIPS GENERIC PLATFORM
11245 M:      Paul Burton <[email protected]>
11246 L:      [email protected]
11247 S:      Supported
11248 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11249 F:      arch/mips/generic/
11250 F:      arch/mips/tools/generic-board-config.sh
11251
11252 MIPS/LOONGSON1 ARCHITECTURE
11253 M:      Keguang Zhang <[email protected]>
11254 L:      [email protected]
11255 S:      Maintained
11256 F:      arch/mips/loongson32/
11257 F:      arch/mips/include/asm/mach-loongson32/
11258 F:      drivers/*/*loongson1*
11259 F:      drivers/*/*/*loongson1*
11260
11261 MIPS/LOONGSON2EF ARCHITECTURE
11262 M:      Jiaxun Yang <[email protected]>
11263 L:      [email protected]
11264 S:      Maintained
11265 F:      arch/mips/loongson2ef/
11266 F:      arch/mips/include/asm/mach-loongson2ef/
11267 F:      drivers/*/*loongson2*
11268 F:      drivers/*/*/*loongson2*
11269
11270 MIPS/LOONGSON64 ARCHITECTURE
11271 M:      Huacai Chen <[email protected]>
11272 M:      Jiaxun Yang <[email protected]>
11273 L:      [email protected]
11274 S:      Maintained
11275 F:      arch/mips/loongson64/
11276 F:      arch/mips/include/asm/mach-loongson64/
11277 F:      drivers/platform/mips/cpu_hwmon.c
11278 F:      drivers/irqchip/irq-loongson*
11279 F:      drivers/*/*loongson3*
11280 F:      drivers/*/*/*loongson3*
11281
11282 MIPS RINT INSTRUCTION EMULATION
11283 M:      Aleksandar Markovic <[email protected]>
11284 L:      [email protected]
11285 S:      Supported
11286 F:      arch/mips/math-emu/sp_rint.c
11287 F:      arch/mips/math-emu/dp_rint.c
11288
11289 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11290 M:      Hans Verkuil <[email protected]>
11291 L:      [email protected]
11292 T:      git git://linuxtv.org/media_tree.git
11293 W:      https://linuxtv.org
11294 S:      Odd Fixes
11295 F:      drivers/media/radio/radio-miropcm20*
11296
11297 MMP SUPPORT
11298 R:      Lubomir Rintel <[email protected]>
11299 L:      [email protected] (moderated for non-subscribers)
11300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11301 S:      Odd Fixes
11302 F:      arch/arm/boot/dts/mmp*
11303 F:      arch/arm/mach-mmp/
11304 F:      linux/soc/mmp/
11305
11306 MMP USB PHY DRIVERS
11307 R:      Lubomir Rintel <[email protected]>
11308 L:      [email protected] (moderated for non-subscribers)
11309 S:      Maintained
11310 F:      drivers/phy/marvell/phy-mmp3-usb.c
11311 F:      drivers/phy/marvell/phy-pxa-usb.c
11312
11313 MMU GATHER AND TLB INVALIDATION
11314 M:      Will Deacon <[email protected]>
11315 M:      "Aneesh Kumar K.V" <[email protected]>
11316 M:      Andrew Morton <[email protected]>
11317 M:      Nick Piggin <[email protected]>
11318 M:      Peter Zijlstra <[email protected]>
11319 L:      [email protected]
11320 L:      [email protected]
11321 S:      Maintained
11322 F:      arch/*/include/asm/tlb.h
11323 F:      include/asm-generic/tlb.h
11324 F:      mm/mmu_gather.c
11325
11326 MN88472 MEDIA DRIVER
11327 M:      Antti Palosaari <[email protected]>
11328 L:      [email protected]
11329 W:      https://linuxtv.org
11330 W:      http://palosaari.fi/linux/
11331 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11332 S:      Maintained
11333 F:      drivers/media/dvb-frontends/mn88472*
11334
11335 MN88473 MEDIA DRIVER
11336 M:      Antti Palosaari <[email protected]>
11337 L:      [email protected]
11338 W:      https://linuxtv.org
11339 W:      http://palosaari.fi/linux/
11340 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11341 S:      Maintained
11342 F:      drivers/media/dvb-frontends/mn88473*
11343
11344 MODULE SUPPORT
11345 M:      Jessica Yu <[email protected]>
11346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11347 S:      Maintained
11348 F:      include/linux/module.h
11349 F:      kernel/module.c
11350
11351 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11352 W:      http://popies.net/meye/
11353 S:      Orphan
11354 F:      Documentation/media/v4l-drivers/meye*
11355 F:      drivers/media/pci/meye/
11356 F:      include/uapi/linux/meye.h
11357
11358 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11359 M:      Jiri Slaby <[email protected]>
11360 S:      Maintained
11361 F:      Documentation/driver-api/serial/moxa-smartio.rst
11362 F:      drivers/tty/mxser.*
11363
11364 MONOLITHIC POWER SYSTEM PMIC DRIVER
11365 M:      Saravanan Sekar <[email protected]>
11366 S:      Maintained
11367 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11368 F:      drivers/regulator/mp5416.c
11369 F:      drivers/regulator/mpq7920.c
11370 F:      drivers/regulator/mpq7920.h
11371
11372 MR800 AVERMEDIA USB FM RADIO DRIVER
11373 M:      Alexey Klimov <[email protected]>
11374 L:      [email protected]
11375 T:      git git://linuxtv.org/media_tree.git
11376 S:      Maintained
11377 F:      drivers/media/radio/radio-mr800.c
11378
11379 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11380 M:      Alan Ott <[email protected]>
11381 L:      [email protected]
11382 S:      Maintained
11383 F:      drivers/net/ieee802154/mrf24j40.c
11384 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11385
11386 MSI LAPTOP SUPPORT
11387 M:      "Lee, Chun-Yi" <[email protected]>
11388 L:      [email protected]
11389 S:      Maintained
11390 F:      drivers/platform/x86/msi-laptop.c
11391
11392 MSI WMI SUPPORT
11393 L:      [email protected]
11394 S:      Orphan
11395 F:      drivers/platform/x86/msi-wmi.c
11396
11397 MSI001 MEDIA DRIVER
11398 M:      Antti Palosaari <[email protected]>
11399 L:      [email protected]
11400 W:      https://linuxtv.org
11401 W:      http://palosaari.fi/linux/
11402 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11403 T:      git git://linuxtv.org/anttip/media_tree.git
11404 S:      Maintained
11405 F:      drivers/media/tuners/msi001*
11406
11407 MSI2500 MEDIA DRIVER
11408 M:      Antti Palosaari <[email protected]>
11409 L:      [email protected]
11410 W:      https://linuxtv.org
11411 W:      http://palosaari.fi/linux/
11412 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11413 T:      git git://linuxtv.org/anttip/media_tree.git
11414 S:      Maintained
11415 F:      drivers/media/usb/msi2500/
11416
11417 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11418 M:      Robert Jarzmik <[email protected]>
11419 L:      [email protected]
11420 S:      Maintained
11421 F:      drivers/mtd/devices/docg3*
11422
11423 MT9M032 APTINA SENSOR DRIVER
11424 M:      Laurent Pinchart <[email protected]>
11425 L:      [email protected]
11426 T:      git git://linuxtv.org/media_tree.git
11427 S:      Maintained
11428 F:      drivers/media/i2c/mt9m032.c
11429 F:      include/media/i2c/mt9m032.h
11430
11431 MT9P031 APTINA CAMERA SENSOR
11432 M:      Laurent Pinchart <[email protected]>
11433 L:      [email protected]
11434 T:      git git://linuxtv.org/media_tree.git
11435 S:      Maintained
11436 F:      drivers/media/i2c/mt9p031.c
11437 F:      include/media/i2c/mt9p031.h
11438
11439 MT9T001 APTINA CAMERA SENSOR
11440 M:      Laurent Pinchart <[email protected]>
11441 L:      [email protected]
11442 T:      git git://linuxtv.org/media_tree.git
11443 S:      Maintained
11444 F:      drivers/media/i2c/mt9t001.c
11445 F:      include/media/i2c/mt9t001.h
11446
11447 MT9T112 APTINA CAMERA SENSOR
11448 M:      Jacopo Mondi <[email protected]>
11449 L:      [email protected]
11450 T:      git git://linuxtv.org/media_tree.git
11451 S:      Odd Fixes
11452 F:      drivers/media/i2c/mt9t112.c
11453 F:      include/media/i2c/mt9t112.h
11454
11455 MT9V032 APTINA CAMERA SENSOR
11456 M:      Laurent Pinchart <[email protected]>
11457 L:      [email protected]
11458 T:      git git://linuxtv.org/media_tree.git
11459 S:      Maintained
11460 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11461 F:      drivers/media/i2c/mt9v032.c
11462 F:      include/media/i2c/mt9v032.h
11463
11464 MT9V111 APTINA CAMERA SENSOR
11465 M:      Jacopo Mondi <[email protected]>
11466 L:      [email protected]
11467 T:      git git://linuxtv.org/media_tree.git
11468 S:      Maintained
11469 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11470 F:      drivers/media/i2c/mt9v111.c
11471
11472 MULTIFUNCTION DEVICES (MFD)
11473 M:      Lee Jones <[email protected]>
11474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11475 S:      Supported
11476 F:      Documentation/devicetree/bindings/mfd/
11477 F:      drivers/mfd/
11478 F:      include/linux/mfd/
11479 F:      include/dt-bindings/mfd/
11480
11481 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11482 S:      Orphan
11483 F:      drivers/mmc/host/mmc_spi.c
11484 F:      include/linux/spi/mmc_spi.h
11485
11486 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11487 M:      Ulf Hansson <[email protected]>
11488 L:      [email protected]
11489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11490 S:      Maintained
11491 F:      Documentation/devicetree/bindings/mmc/
11492 F:      drivers/mmc/
11493 F:      include/linux/mmc/
11494 F:      include/uapi/linux/mmc/
11495
11496 MULTIPLEXER SUBSYSTEM
11497 M:      Peter Rosin <[email protected]>
11498 S:      Maintained
11499 F:      Documentation/ABI/testing/sysfs-class-mux*
11500 F:      Documentation/devicetree/bindings/mux/
11501 F:      include/dt-bindings/mux/
11502 F:      include/linux/mux/
11503 F:      drivers/mux/
11504
11505 MULTITECH MULTIPORT CARD (ISICOM)
11506 S:      Orphan
11507 F:      drivers/tty/isicom.c
11508 F:      include/linux/isicom.h
11509
11510 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11511 M:      Bin Liu <[email protected]>
11512 L:      [email protected]
11513 S:      Maintained
11514 F:      drivers/usb/musb/
11515
11516 MXL301RF MEDIA DRIVER
11517 M:      Akihiro Tsukada <[email protected]>
11518 L:      [email protected]
11519 S:      Odd Fixes
11520 F:      drivers/media/tuners/mxl301rf*
11521
11522 MXL5007T MEDIA DRIVER
11523 M:      Michael Krufky <[email protected]>
11524 L:      [email protected]
11525 W:      https://linuxtv.org
11526 W:      http://github.com/mkrufky
11527 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11528 T:      git git://linuxtv.org/mkrufky/tuners.git
11529 S:      Maintained
11530 F:      drivers/media/tuners/mxl5007t.*
11531
11532 MXSFB DRM DRIVER
11533 M:      Marek Vasut <[email protected]>
11534 M:      Stefan Agner <[email protected]>
11535 L:      [email protected]
11536 S:      Supported
11537 F:      drivers/gpu/drm/mxsfb/
11538 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11539 T:      git git://anongit.freedesktop.org/drm/drm-misc
11540
11541 MYLEX DAC960 PCI RAID Controller
11542 M:      Hannes Reinecke <[email protected]>
11543 L:      [email protected]
11544 S:      Supported
11545 F:      drivers/scsi/myrb.*
11546 F:      drivers/scsi/myrs.*
11547
11548 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11549 M:      Chris Lee <[email protected]>
11550 L:      [email protected]
11551 W:      https://www.cspi.com/ethernet-products/support/downloads/
11552 S:      Supported
11553 F:      drivers/net/ethernet/myricom/myri10ge/
11554
11555 NAND FLASH SUBSYSTEM
11556 M:      Miquel Raynal <[email protected]>
11557 R:      Richard Weinberger <[email protected]>
11558 L:      [email protected]
11559 W:      http://www.linux-mtd.infradead.org/
11560 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11562 C:      irc://irc.oftc.net/mtd
11563 S:      Maintained
11564 F:      drivers/mtd/nand/
11565 F:      include/linux/mtd/*nand*.h
11566
11567 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11568 M:      Daniel Mack <[email protected]>
11569 S:      Maintained
11570 L:      [email protected] (moderated for non-subscribers)
11571 W:      http://www.native-instruments.com
11572 F:      sound/usb/caiaq/
11573
11574 NATSEMI ETHERNET DRIVER (DP8381x)
11575 S:      Orphan
11576 F:      drivers/net/ethernet/natsemi/natsemi.c
11577
11578 NCR 5380 SCSI DRIVERS
11579 M:      Finn Thain <[email protected]>
11580 M:      Michael Schmitz <[email protected]>
11581 L:      [email protected]
11582 S:      Maintained
11583 F:      Documentation/scsi/g_NCR5380.rst
11584 F:      drivers/scsi/NCR5380.*
11585 F:      drivers/scsi/arm/cumana_1.c
11586 F:      drivers/scsi/arm/oak.c
11587 F:      drivers/scsi/atari_scsi.*
11588 F:      drivers/scsi/dmx3191d.c
11589 F:      drivers/scsi/g_NCR5380.*
11590 F:      drivers/scsi/mac_scsi.*
11591 F:      drivers/scsi/sun3_scsi.*
11592 F:      drivers/scsi/sun3_scsi_vme.c
11593
11594 NCSI LIBRARY
11595 M:      Samuel Mendoza-Jonas <[email protected]>
11596 S:      Maintained
11597 F:      net/ncsi/
11598
11599 NCT6775 HARDWARE MONITOR DRIVER
11600 M:      Guenter Roeck <[email protected]>
11601 L:      [email protected]
11602 S:      Maintained
11603 F:      Documentation/hwmon/nct6775.rst
11604 F:      drivers/hwmon/nct6775.c
11605
11606 NET_FAILOVER MODULE
11607 M:      Sridhar Samudrala <[email protected]>
11608 L:      [email protected]
11609 S:      Supported
11610 F:      drivers/net/net_failover.c
11611 F:      include/net/net_failover.h
11612 F:      Documentation/networking/net_failover.rst
11613
11614 NETEM NETWORK EMULATOR
11615 M:      Stephen Hemminger <[email protected]>
11616 L:      [email protected]
11617 S:      Maintained
11618 F:      net/sched/sch_netem.c
11619
11620 NETERION 10GbE DRIVERS (s2io/vxge)
11621 M:      Jon Mason <[email protected]>
11622 L:      [email protected]
11623 S:      Supported
11624 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11625 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11626 F:      drivers/net/ethernet/neterion/
11627
11628 NETFILTER
11629 M:      Pablo Neira Ayuso <[email protected]>
11630 M:      Jozsef Kadlecsik <[email protected]>
11631 M:      Florian Westphal <[email protected]>
11632 L:      [email protected]
11633 L:      [email protected]
11634 W:      http://www.netfilter.org/
11635 W:      http://www.iptables.org/
11636 W:      http://www.nftables.org/
11637 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11640 S:      Maintained
11641 F:      include/linux/netfilter*
11642 F:      include/linux/netfilter/
11643 F:      include/net/netfilter/
11644 F:      include/uapi/linux/netfilter*
11645 F:      include/uapi/linux/netfilter/
11646 F:      net/*/netfilter.c
11647 F:      net/*/netfilter/
11648 F:      net/netfilter/
11649 F:      net/bridge/br_netfilter*.c
11650
11651 NETROM NETWORK LAYER
11652 M:      Ralf Baechle <[email protected]>
11653 L:      [email protected]
11654 W:      http://www.linux-ax25.org/
11655 S:      Maintained
11656 F:      include/net/netrom.h
11657 F:      include/uapi/linux/netrom.h
11658 F:      net/netrom/
11659
11660 NETRONOME ETHERNET DRIVERS
11661 M:      Jakub Kicinski <[email protected]>
11662 L:      [email protected]
11663 S:      Maintained
11664 F:      drivers/net/ethernet/netronome/
11665
11666 NETWORK BLOCK DEVICE (NBD)
11667 M:      Josef Bacik <[email protected]>
11668 S:      Maintained
11669 L:      [email protected]
11670 L:      [email protected]
11671 F:      Documentation/admin-guide/blockdev/nbd.rst
11672 F:      drivers/block/nbd.c
11673 F:      include/trace/events/nbd.h
11674 F:      include/uapi/linux/nbd.h
11675
11676 NETWORK DROP MONITOR
11677 M:      Neil Horman <[email protected]>
11678 L:      [email protected]
11679 S:      Maintained
11680 W:      https://fedorahosted.org/dropwatch/
11681 F:      net/core/drop_monitor.c
11682 F:      include/uapi/linux/net_dropmon.h
11683 F:      include/net/drop_monitor.h
11684
11685 NETWORKING DRIVERS
11686 M:      "David S. Miller" <[email protected]>
11687 L:      [email protected]
11688 W:      http://www.linuxfoundation.org/en/Net
11689 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11692 S:      Odd Fixes
11693 F:      Documentation/devicetree/bindings/net/
11694 F:      drivers/net/
11695 F:      include/linux/if_*
11696 F:      include/linux/netdevice.h
11697 F:      include/linux/etherdevice.h
11698 F:      include/linux/fcdevice.h
11699 F:      include/linux/fddidevice.h
11700 F:      include/linux/hippidevice.h
11701 F:      include/linux/inetdevice.h
11702 F:      include/uapi/linux/if_*
11703 F:      include/uapi/linux/netdevice.h
11704
11705 NETWORKING DRIVERS (WIRELESS)
11706 M:      Kalle Valo <[email protected]>
11707 L:      [email protected]
11708 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11711 S:      Maintained
11712 F:      Documentation/devicetree/bindings/net/wireless/
11713 F:      drivers/net/wireless/
11714
11715 NETWORKING [DSA]
11716 M:      Andrew Lunn <[email protected]>
11717 M:      Vivien Didelot <[email protected]>
11718 M:      Florian Fainelli <[email protected]>
11719 S:      Maintained
11720 F:      Documentation/devicetree/bindings/net/dsa/
11721 F:      net/dsa/
11722 F:      include/net/dsa.h
11723 F:      include/linux/dsa/
11724 F:      include/linux/platform_data/dsa.h
11725 F:      drivers/net/dsa/
11726
11727 NETWORKING [GENERAL]
11728 M:      "David S. Miller" <[email protected]>
11729 M:      Jakub Kicinski <[email protected]>
11730 L:      [email protected]
11731 W:      http://www.linuxfoundation.org/en/Net
11732 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11735 B:      mailto:[email protected]
11736 S:      Maintained
11737 F:      net/
11738 F:      include/net/
11739 F:      include/linux/in.h
11740 F:      include/linux/net.h
11741 F:      include/linux/netdevice.h
11742 F:      include/uapi/linux/in.h
11743 F:      include/uapi/linux/net.h
11744 F:      include/uapi/linux/netdevice.h
11745 F:      include/uapi/linux/net_namespace.h
11746 F:      tools/testing/selftests/net/
11747 F:      lib/net_utils.c
11748 F:      lib/random32.c
11749 F:      Documentation/networking/
11750
11751 NETWORKING [IPSEC]
11752 M:      Steffen Klassert <[email protected]>
11753 M:      Herbert Xu <[email protected]>
11754 M:      "David S. Miller" <[email protected]>
11755 L:      [email protected]
11756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11758 S:      Maintained
11759 F:      net/xfrm/
11760 F:      net/key/
11761 F:      net/ipv4/xfrm*
11762 F:      net/ipv4/esp4*
11763 F:      net/ipv4/ah4.c
11764 F:      net/ipv4/ipcomp.c
11765 F:      net/ipv4/ip_vti.c
11766 F:      net/ipv6/xfrm*
11767 F:      net/ipv6/esp6*
11768 F:      net/ipv6/ah6.c
11769 F:      net/ipv6/ipcomp6.c
11770 F:      net/ipv6/ip6_vti.c
11771 F:      include/uapi/linux/xfrm.h
11772 F:      include/net/xfrm.h
11773
11774 NETWORKING [IPv4/IPv6]
11775 M:      "David S. Miller" <[email protected]>
11776 M:      Alexey Kuznetsov <[email protected]>
11777 M:      Hideaki YOSHIFUJI <[email protected]>
11778 L:      [email protected]
11779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11780 S:      Maintained
11781 F:      net/ipv4/
11782 F:      net/ipv6/
11783 F:      include/net/ip*
11784 F:      arch/x86/net/*
11785
11786 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11787 M:      Paul Moore <[email protected]>
11788 W:      https://github.com/netlabel
11789 L:      [email protected]
11790 L:      [email protected]
11791 S:      Maintained
11792 F:      Documentation/netlabel/
11793 F:      include/net/calipso.h
11794 F:      include/net/cipso_ipv4.h
11795 F:      include/net/netlabel.h
11796 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11797 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11798 F:      net/netlabel/
11799 F:      net/ipv4/cipso_ipv4.c
11800 F:      net/ipv6/calipso.c
11801 F:      net/netfilter/xt_CONNSECMARK.c
11802 F:      net/netfilter/xt_SECMARK.c
11803
11804 NETWORKING [MPTCP]
11805 M:      Mat Martineau <[email protected]>
11806 M:      Matthieu Baerts <[email protected]>
11807 L:      [email protected]
11808 L:      [email protected]
11809 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
11810 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
11811 S:      Maintained
11812 F:      include/net/mptcp.h
11813 F:      include/uapi/linux/mptcp.h
11814 F:      net/mptcp/
11815 F:      tools/testing/selftests/net/mptcp/
11816
11817 NETWORKING [TCP]
11818 M:      Eric Dumazet <[email protected]>
11819 L:      [email protected]
11820 S:      Maintained
11821 F:      net/ipv4/tcp*.c
11822 F:      net/ipv4/syncookies.c
11823 F:      net/ipv6/tcp*.c
11824 F:      net/ipv6/syncookies.c
11825 F:      include/uapi/linux/tcp.h
11826 F:      include/net/tcp.h
11827 F:      include/linux/tcp.h
11828 F:      include/trace/events/tcp.h
11829
11830 NETWORKING [TLS]
11831 M:      Boris Pismenny <[email protected]>
11832 M:      Aviad Yehezkel <[email protected]>
11833 M:      John Fastabend <[email protected]>
11834 M:      Daniel Borkmann <[email protected]>
11835 M:      Jakub Kicinski <[email protected]>
11836 L:      [email protected]
11837 S:      Maintained
11838 F:      net/tls/*
11839 F:      include/uapi/linux/tls.h
11840 F:      include/net/tls.h
11841
11842 NETWORKING [WIRELESS]
11843 L:      [email protected]
11844 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11845
11846 NETDEVSIM
11847 M:      Jakub Kicinski <[email protected]>
11848 S:      Maintained
11849 F:      drivers/net/netdevsim/*
11850
11851 NETXEN (1/10) GbE SUPPORT
11852 M:      Manish Chopra <[email protected]>
11853 M:      Rahul Verma <[email protected]>
11854 M:      [email protected]
11855 L:      [email protected]
11856 S:      Supported
11857 F:      drivers/net/ethernet/qlogic/netxen/
11858
11859 NEXTHOP
11860 M:      David Ahern <[email protected]>
11861 L:      [email protected]
11862 S:      Maintained
11863 F:      include/net/nexthop.h
11864 F:      include/uapi/linux/nexthop.h
11865 F:      include/net/netns/nexthop.h
11866 F:      net/ipv4/nexthop.c
11867
11868 NFC SUBSYSTEM
11869 L:      [email protected]
11870 S:      Orphan
11871 F:      net/nfc/
11872 F:      include/net/nfc/
11873 F:      include/uapi/linux/nfc.h
11874 F:      drivers/nfc/
11875 F:      include/linux/platform_data/nfcmrvl.h
11876 F:      Documentation/devicetree/bindings/net/nfc/
11877
11878 NFS, SUNRPC, AND LOCKD CLIENTS
11879 M:      Trond Myklebust <[email protected]>
11880 M:      Anna Schumaker <[email protected]>
11881 L:      [email protected]
11882 W:      http://client.linux-nfs.org
11883 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11884 S:      Maintained
11885 F:      fs/lockd/
11886 F:      fs/nfs/
11887 F:      fs/nfs_common/
11888 F:      net/sunrpc/
11889 F:      include/linux/lockd/
11890 F:      include/linux/nfs*
11891 F:      include/linux/sunrpc/
11892 F:      include/uapi/linux/nfs*
11893 F:      include/uapi/linux/sunrpc/
11894
11895 NILFS2 FILESYSTEM
11896 M:      Ryusuke Konishi <[email protected]>
11897 L:      [email protected]
11898 W:      https://nilfs.sourceforge.io/
11899 W:      https://nilfs.osdn.jp/
11900 T:      git git://github.com/konis/nilfs2.git
11901 S:      Supported
11902 F:      Documentation/filesystems/nilfs2.rst
11903 F:      fs/nilfs2/
11904 F:      include/trace/events/nilfs2.h
11905 F:      include/uapi/linux/nilfs2_api.h
11906 F:      include/uapi/linux/nilfs2_ondisk.h
11907
11908 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11909 M:      YOKOTA Hiroshi <[email protected]>
11910 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11911 S:      Maintained
11912 F:      Documentation/scsi/NinjaSCSI.rst
11913 F:      drivers/scsi/pcmcia/nsp_*
11914
11915 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11916 M:      GOTO Masanori <[email protected]>
11917 M:      YOKOTA Hiroshi <[email protected]>
11918 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11919 S:      Maintained
11920 F:      Documentation/scsi/NinjaSCSI.rst
11921 F:      drivers/scsi/nsp32*
11922
11923 NIOS2 ARCHITECTURE
11924 M:      Ley Foon Tan <[email protected]>
11925 L:      [email protected] (moderated for non-subscribers)
11926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11927 S:      Maintained
11928 F:      arch/nios2/
11929
11930 NOHZ, DYNTICKS SUPPORT
11931 M:      Frederic Weisbecker <[email protected]>
11932 M:      Thomas Gleixner <[email protected]>
11933 M:      Ingo Molnar <[email protected]>
11934 L:      [email protected]
11935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11936 S:      Maintained
11937 F:      kernel/time/tick*.*
11938 F:      include/linux/tick.h
11939 F:      include/linux/sched/nohz.h
11940
11941 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11942 M:      Pavel Machek <[email protected]>
11943 M:      Sakari Ailus <[email protected]>
11944 L:      [email protected]
11945 S:      Maintained
11946 F:      drivers/media/i2c/et8ek8
11947 F:      drivers/media/i2c/ad5820.c
11948
11949 NOKIA N900 POWER SUPPLY DRIVERS
11950 R:      Pali Rohár <[email protected]>
11951 F:      include/linux/power/bq2415x_charger.h
11952 F:      include/linux/power/bq27xxx_battery.h
11953 F:      drivers/power/supply/bq2415x_charger.c
11954 F:      drivers/power/supply/bq27xxx_battery.c
11955 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11956 F:      drivers/power/supply/isp1704_charger.c
11957 F:      drivers/power/supply/rx51_battery.c
11958
11959 NOLIBC HEADER FILE
11960 M:      Willy Tarreau <[email protected]>
11961 S:      Maintained
11962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11963 F:      tools/include/nolibc/
11964
11965 NSDEPS
11966 M:      Matthias Maennich <[email protected]>
11967 S:      Maintained
11968 F:      scripts/nsdeps
11969 F:      Documentation/core-api/symbol-namespaces.rst
11970
11971 NTB AMD DRIVER
11972 M:      Sanjay R Mehta <[email protected]>
11973 M:      Shyam Sundar S K <[email protected]>
11974 L:      [email protected]
11975 S:      Supported
11976 F:      drivers/ntb/hw/amd/
11977
11978 NTB DRIVER CORE
11979 M:      Jon Mason <[email protected]>
11980 M:      Dave Jiang <[email protected]>
11981 M:      Allen Hubbe <[email protected]>
11982 L:      [email protected]
11983 S:      Supported
11984 W:      https://github.com/jonmason/ntb/wiki
11985 T:      git git://github.com/jonmason/ntb.git
11986 F:      drivers/ntb/
11987 F:      drivers/net/ntb_netdev.c
11988 F:      include/linux/ntb.h
11989 F:      include/linux/ntb_transport.h
11990 F:      tools/testing/selftests/ntb/
11991
11992 NTB IDT DRIVER
11993 M:      Serge Semin <[email protected]>
11994 L:      [email protected]
11995 S:      Supported
11996 F:      drivers/ntb/hw/idt/
11997
11998 NTB INTEL DRIVER
11999 M:      Dave Jiang <[email protected]>
12000 L:      [email protected]
12001 S:      Supported
12002 W:      https://github.com/davejiang/linux/wiki
12003 T:      git https://github.com/davejiang/linux.git
12004 F:      drivers/ntb/hw/intel/
12005
12006 NTFS FILESYSTEM
12007 M:      Anton Altaparmakov <[email protected]>
12008 L:      [email protected]
12009 W:      http://www.tuxera.com/
12010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12011 S:      Supported
12012 F:      Documentation/filesystems/ntfs.rst
12013 F:      fs/ntfs/
12014
12015 NUBUS SUBSYSTEM
12016 M:      Finn Thain <[email protected]>
12017 L:      [email protected]
12018 S:      Maintained
12019 F:      arch/*/include/asm/nubus.h
12020 F:      drivers/nubus/
12021 F:      include/linux/nubus.h
12022 F:      include/uapi/linux/nubus.h
12023
12024 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12025 M:      Antonino Daplas <[email protected]>
12026 L:      [email protected]
12027 S:      Maintained
12028 F:      drivers/video/fbdev/riva/
12029 F:      drivers/video/fbdev/nvidia/
12030
12031 NVM EXPRESS DRIVER
12032 M:      Keith Busch <[email protected]>
12033 M:      Jens Axboe <[email protected]>
12034 M:      Christoph Hellwig <[email protected]>
12035 M:      Sagi Grimberg <[email protected]>
12036 L:      [email protected]
12037 T:      git://git.infradead.org/nvme.git
12038 W:      http://git.infradead.org/nvme.git
12039 S:      Supported
12040 F:      drivers/nvme/host/
12041 F:      include/linux/nvme.h
12042 F:      include/uapi/linux/nvme_ioctl.h
12043
12044 NVM EXPRESS FC TRANSPORT DRIVERS
12045 M:      James Smart <[email protected]>
12046 L:      [email protected]
12047 S:      Supported
12048 F:      include/linux/nvme-fc.h
12049 F:      include/linux/nvme-fc-driver.h
12050 F:      drivers/nvme/host/fc.c
12051 F:      drivers/nvme/target/fc.c
12052 F:      drivers/nvme/target/fcloop.c
12053
12054 NVM EXPRESS TARGET DRIVER
12055 M:      Christoph Hellwig <[email protected]>
12056 M:      Sagi Grimberg <[email protected]>
12057 M:      Chaitanya Kulkarni <[email protected]>
12058 L:      [email protected]
12059 T:      git://git.infradead.org/nvme.git
12060 W:      http://git.infradead.org/nvme.git
12061 S:      Supported
12062 F:      drivers/nvme/target/
12063
12064 NVMEM FRAMEWORK
12065 M:      Srinivas Kandagatla <[email protected]>
12066 S:      Maintained
12067 F:      drivers/nvmem/
12068 F:      Documentation/devicetree/bindings/nvmem/
12069 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12070 F:      include/linux/nvmem-consumer.h
12071 F:      include/linux/nvmem-provider.h
12072
12073 NXP FXAS21002C DRIVER
12074 M:      Rui Miguel Silva <[email protected]>
12075 L:      [email protected]
12076 S:      Maintained
12077 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12078 F:      drivers/iio/gyro/fxas21002c_core.c
12079 F:      drivers/iio/gyro/fxas21002c.h
12080 F:      drivers/iio/gyro/fxas21002c_i2c.c
12081 F:      drivers/iio/gyro/fxas21002c_spi.c
12082
12083 NXP SGTL5000 DRIVER
12084 M:      Fabio Estevam <[email protected]>
12085 L:      [email protected] (moderated for non-subscribers)
12086 S:      Maintained
12087 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12088 F:      sound/soc/codecs/sgtl5000*
12089
12090 NXP SJA1105 ETHERNET SWITCH DRIVER
12091 M:      Vladimir Oltean <[email protected]>
12092 L:      [email protected]
12093 S:      Maintained
12094 F:      drivers/net/dsa/sja1105
12095
12096 NXP TDA998X DRM DRIVER
12097 M:      Russell King <[email protected]>
12098 S:      Maintained
12099 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12100 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12101 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12102 F:      include/drm/i2c/tda998x.h
12103 F:      include/dt-bindings/display/tda998x.h
12104 K:      "nxp,tda998x"
12105
12106 NXP TFA9879 DRIVER
12107 M:      Peter Rosin <[email protected]>
12108 L:      [email protected] (moderated for non-subscribers)
12109 S:      Maintained
12110 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12111 F:      sound/soc/codecs/tfa9879*
12112
12113 NXP-NCI NFC DRIVER
12114 M:      Clément Perrochaud <[email protected]>
12115 R:      Charles Gorand <[email protected]>
12116 L:      [email protected] (moderated for non-subscribers)
12117 S:      Supported
12118 F:      drivers/nfc/nxp-nci
12119
12120 OBJAGG
12121 M:      Jiri Pirko <[email protected]>
12122 L:      [email protected]
12123 S:      Supported
12124 F:      lib/objagg.c
12125 F:      lib/test_objagg.c
12126 F:      include/linux/objagg.h
12127
12128 NXP FSPI DRIVER
12129 R:      Yogesh Gaur <[email protected]>
12130 M:      Ashish Kumar <[email protected]>
12131 L:      [email protected]
12132 S:      Maintained
12133 F:      drivers/spi/spi-nxp-fspi.c
12134 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12135
12136 OBJTOOL
12137 M:      Josh Poimboeuf <[email protected]>
12138 M:      Peter Zijlstra <[email protected]>
12139 S:      Supported
12140 F:      tools/objtool/
12141
12142 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12143 M:      Frederic Barrat <[email protected]>
12144 M:      Andrew Donnellan <[email protected]>
12145 L:      [email protected]
12146 S:      Supported
12147 F:      arch/powerpc/platforms/powernv/ocxl.c
12148 F:      arch/powerpc/include/asm/pnv-ocxl.h
12149 F:      drivers/misc/ocxl/
12150 F:      include/misc/ocxl*
12151 F:      include/uapi/misc/ocxl.h
12152 F:      Documentation/userspace-api/accelerators/ocxl.rst
12153
12154 OMAP AUDIO SUPPORT
12155 M:      Peter Ujfalusi <[email protected]>
12156 M:      Jarkko Nikula <[email protected]>
12157 L:      [email protected] (moderated for non-subscribers)
12158 L:      [email protected]
12159 S:      Maintained
12160 F:      sound/soc/ti/omap*
12161 F:      sound/soc/ti/rx51.c
12162 F:      sound/soc/ti/n810.c
12163 F:      sound/soc/ti/sdma-pcm.*
12164
12165 OMAP CLOCK FRAMEWORK SUPPORT
12166 M:      Paul Walmsley <[email protected]>
12167 L:      [email protected]
12168 S:      Maintained
12169 F:      arch/arm/*omap*/*clock*
12170
12171 OMAP DEVICE TREE SUPPORT
12172 M:      Benoît Cousson <[email protected]>
12173 M:      Tony Lindgren <[email protected]>
12174 L:      [email protected]
12175 L:      [email protected]
12176 S:      Maintained
12177 F:      arch/arm/boot/dts/*omap*
12178 F:      arch/arm/boot/dts/*am3*
12179 F:      arch/arm/boot/dts/*am4*
12180 F:      arch/arm/boot/dts/*am5*
12181 F:      arch/arm/boot/dts/*dra7*
12182 F:      arch/arm/boot/dts/logicpd-som-lv*
12183 F:      arch/arm/boot/dts/logicpd-torpedo*
12184
12185 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12186 L:      [email protected]
12187 L:      [email protected]
12188 S:      Orphan
12189 F:      drivers/video/fbdev/omap2/
12190 F:      Documentation/arm/omap/dss.rst
12191
12192 OMAP FRAMEBUFFER SUPPORT
12193 L:      [email protected]
12194 L:      [email protected]
12195 S:      Orphan
12196 F:      drivers/video/fbdev/omap/
12197
12198 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12199 M:      Roger Quadros <[email protected]>
12200 M:      Tony Lindgren <[email protected]>
12201 L:      [email protected]
12202 S:      Maintained
12203 F:      drivers/memory/omap-gpmc.c
12204 F:      arch/arm/mach-omap2/*gpmc*
12205
12206 OMAP GPIO DRIVER
12207 M:      Grygorii Strashko <[email protected]>
12208 M:      Santosh Shilimkar <[email protected]>
12209 M:      Kevin Hilman <[email protected]>
12210 L:      [email protected]
12211 S:      Maintained
12212 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12213 F:      drivers/gpio/gpio-omap.c
12214
12215 OMAP HARDWARE SPINLOCK SUPPORT
12216 M:      Ohad Ben-Cohen <[email protected]>
12217 L:      [email protected]
12218 S:      Maintained
12219 F:      drivers/hwspinlock/omap_hwspinlock.c
12220
12221 OMAP HS MMC SUPPORT
12222 L:      [email protected]
12223 L:      [email protected]
12224 S:      Orphan
12225 F:      drivers/mmc/host/omap_hsmmc.c
12226
12227 OMAP HWMOD DATA
12228 M:      Paul Walmsley <[email protected]>
12229 L:      [email protected]
12230 S:      Maintained
12231 F:      arch/arm/mach-omap2/omap_hwmod*data*
12232
12233 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12234 M:      Benoît Cousson <[email protected]>
12235 L:      [email protected]
12236 S:      Maintained
12237 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12238
12239 OMAP HWMOD SUPPORT
12240 M:      Benoît Cousson <[email protected]>
12241 M:      Paul Walmsley <[email protected]>
12242 L:      [email protected]
12243 S:      Maintained
12244 F:      arch/arm/mach-omap2/omap_hwmod.*
12245
12246 OMAP I2C DRIVER
12247 M:      Vignesh R <[email protected]>
12248 L:      [email protected]
12249 L:      [email protected]
12250 S:      Maintained
12251 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12252 F:      drivers/i2c/busses/i2c-omap.c
12253
12254 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12255 M:      Laurent Pinchart <[email protected]>
12256 L:      [email protected]
12257 S:      Maintained
12258 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12259 F:      drivers/media/platform/omap3isp/
12260 F:      drivers/staging/media/omap4iss/
12261
12262 OMAP MMC SUPPORT
12263 M:      Aaro Koskinen <[email protected]>
12264 L:      [email protected]
12265 S:      Odd Fixes
12266 F:      drivers/mmc/host/omap.c
12267
12268 OMAP POWER MANAGEMENT SUPPORT
12269 M:      Kevin Hilman <[email protected]>
12270 L:      [email protected]
12271 S:      Maintained
12272 F:      arch/arm/*omap*/*pm*
12273 F:      drivers/cpufreq/omap-cpufreq.c
12274
12275 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12276 M:      Rajendra Nayak <[email protected]>
12277 M:      Paul Walmsley <[email protected]>
12278 L:      [email protected]
12279 S:      Maintained
12280 F:      arch/arm/mach-omap2/prm*
12281
12282 OMAP RANDOM NUMBER GENERATOR SUPPORT
12283 M:      Deepak Saxena <[email protected]>
12284 S:      Maintained
12285 F:      drivers/char/hw_random/omap-rng.c
12286
12287 OMAP USB SUPPORT
12288 L:      [email protected]
12289 L:      [email protected]
12290 S:      Orphan
12291 F:      drivers/usb/*/*omap*
12292 F:      arch/arm/*omap*/usb*
12293
12294 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12295 M:      Mark Jackson <[email protected]>
12296 L:      [email protected]
12297 S:      Maintained
12298 F:      arch/arm/boot/dts/am335x-nano.dts
12299
12300 OMAP1 SUPPORT
12301 M:      Aaro Koskinen <[email protected]>
12302 M:      Tony Lindgren <[email protected]>
12303 L:      [email protected]
12304 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12306 S:      Maintained
12307 F:      arch/arm/mach-omap1/
12308 F:      arch/arm/plat-omap/
12309 F:      arch/arm/configs/omap1_defconfig
12310 F:      drivers/i2c/busses/i2c-omap.c
12311 F:      include/linux/platform_data/i2c-omap.h
12312 F:      include/linux/platform_data/ams-delta-fiq.h
12313
12314 OMAP2+ SUPPORT
12315 M:      Tony Lindgren <[email protected]>
12316 L:      [email protected]
12317 W:      http://www.muru.com/linux/omap/
12318 W:      http://linux.omap.com/
12319 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12321 S:      Maintained
12322 F:      arch/arm/mach-omap2/
12323 F:      arch/arm/plat-omap/
12324 F:      arch/arm/configs/omap2plus_defconfig
12325 F:      drivers/bus/ti-sysc.c
12326 F:      drivers/i2c/busses/i2c-omap.c
12327 F:      drivers/irqchip/irq-omap-intc.c
12328 F:      drivers/mfd/*omap*.c
12329 F:      drivers/mfd/menelaus.c
12330 F:      drivers/mfd/palmas.c
12331 F:      drivers/mfd/tps65217.c
12332 F:      drivers/mfd/tps65218.c
12333 F:      drivers/mfd/tps65910.c
12334 F:      drivers/mfd/twl-core.[ch]
12335 F:      drivers/mfd/twl4030*.c
12336 F:      drivers/mfd/twl6030*.c
12337 F:      drivers/mfd/twl6040*.c
12338 F:      drivers/regulator/palmas-regulator*.c
12339 F:      drivers/regulator/pbias-regulator.c
12340 F:      drivers/regulator/tps65217-regulator.c
12341 F:      drivers/regulator/tps65218-regulator.c
12342 F:      drivers/regulator/tps65910-regulator.c
12343 F:      drivers/regulator/twl-regulator.c
12344 F:      drivers/regulator/twl6030-regulator.c
12345 F:      include/linux/platform_data/i2c-omap.h
12346 F:      include/linux/platform_data/ti-sysc.h
12347
12348 ONION OMEGA2+ BOARD
12349 M:      Harvey Hunt <[email protected]>
12350 L:      [email protected]
12351 S:      Maintained
12352 F:      arch/mips/boot/dts/ralink/omega2p.dts
12353
12354 OMFS FILESYSTEM
12355 M:      Bob Copeland <[email protected]>
12356 L:      [email protected]
12357 S:      Maintained
12358 F:      Documentation/filesystems/omfs.rst
12359 F:      fs/omfs/
12360
12361 OMNIKEY CARDMAN 4000 DRIVER
12362 M:      Harald Welte <[email protected]>
12363 S:      Maintained
12364 F:      drivers/char/pcmcia/cm4000_cs.c
12365 F:      include/linux/cm4000_cs.h
12366 F:      include/uapi/linux/cm4000_cs.h
12367
12368 OMNIKEY CARDMAN 4040 DRIVER
12369 M:      Harald Welte <[email protected]>
12370 S:      Maintained
12371 F:      drivers/char/pcmcia/cm4040_cs.*
12372
12373 OMNIVISION OV13858 SENSOR DRIVER
12374 M:      Sakari Ailus <[email protected]>
12375 L:      [email protected]
12376 T:      git git://linuxtv.org/media_tree.git
12377 S:      Maintained
12378 F:      drivers/media/i2c/ov13858.c
12379
12380 OMNIVISION OV2680 SENSOR DRIVER
12381 M:      Rui Miguel Silva <[email protected]>
12382 L:      [email protected]
12383 T:      git git://linuxtv.org/media_tree.git
12384 S:      Maintained
12385 F:      drivers/media/i2c/ov2680.c
12386 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12387
12388 OMNIVISION OV2685 SENSOR DRIVER
12389 M:      Shunqian Zheng <[email protected]>
12390 L:      [email protected]
12391 T:      git git://linuxtv.org/media_tree.git
12392 S:      Maintained
12393 F:      drivers/media/i2c/ov2685.c
12394
12395 OMNIVISION OV5640 SENSOR DRIVER
12396 M:      Steve Longerbeam <[email protected]>
12397 L:      [email protected]
12398 T:      git git://linuxtv.org/media_tree.git
12399 S:      Maintained
12400 F:      drivers/media/i2c/ov5640.c
12401
12402 OMNIVISION OV5647 SENSOR DRIVER
12403 M:      Luis Oliveira <[email protected]>
12404 L:      [email protected]
12405 T:      git git://linuxtv.org/media_tree.git
12406 S:      Maintained
12407 F:      drivers/media/i2c/ov5647.c
12408
12409 OMNIVISION OV5670 SENSOR DRIVER
12410 M:      Chiranjeevi Rapolu <[email protected]>
12411 M:      Hyungwoo Yang <[email protected]>
12412 L:      [email protected]
12413 T:      git git://linuxtv.org/media_tree.git
12414 S:      Maintained
12415 F:      drivers/media/i2c/ov5670.c
12416
12417 OMNIVISION OV5675 SENSOR DRIVER
12418 M:      Shawn Tu <[email protected]>
12419 L:      [email protected]
12420 T:      git git://linuxtv.org/media_tree.git
12421 S:      Maintained
12422 F:      drivers/media/i2c/ov5675.c
12423
12424 OMNIVISION OV5695 SENSOR DRIVER
12425 M:      Shunqian Zheng <[email protected]>
12426 L:      [email protected]
12427 T:      git git://linuxtv.org/media_tree.git
12428 S:      Maintained
12429 F:      drivers/media/i2c/ov5695.c
12430
12431 OMNIVISION OV7670 SENSOR DRIVER
12432 M:      Jonathan Corbet <[email protected]>
12433 L:      [email protected]
12434 T:      git git://linuxtv.org/media_tree.git
12435 S:      Maintained
12436 F:      drivers/media/i2c/ov7670.c
12437 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12438
12439 OMNIVISION OV772x SENSOR DRIVER
12440 M:      Jacopo Mondi <[email protected]>
12441 L:      [email protected]
12442 T:      git git://linuxtv.org/media_tree.git
12443 S:      Odd fixes
12444 F:      drivers/media/i2c/ov772x.c
12445 F:      include/media/i2c/ov772x.h
12446 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12447
12448 OMNIVISION OV7740 SENSOR DRIVER
12449 M:      Wenyou Yang <[email protected]>
12450 L:      [email protected]
12451 T:      git git://linuxtv.org/media_tree.git
12452 S:      Maintained
12453 F:      drivers/media/i2c/ov7740.c
12454 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12455
12456 OMNIVISION OV9640 SENSOR DRIVER
12457 M:      Petr Cvek <[email protected]>
12458 L:      [email protected]
12459 S:      Maintained
12460 F:      drivers/media/i2c/ov9640.*
12461
12462 OMNIVISION OV8856 SENSOR DRIVER
12463 M:      Ben Kao <[email protected]>
12464 L:      [email protected]
12465 T:      git git://linuxtv.org/media_tree.git
12466 S:      Maintained
12467 F:      drivers/media/i2c/ov8856.c
12468
12469 OMNIVISION OV9650 SENSOR DRIVER
12470 M:      Sakari Ailus <[email protected]>
12471 R:      Akinobu Mita <[email protected]>
12472 R:      Sylwester Nawrocki <[email protected]>
12473 L:      [email protected]
12474 T:      git git://linuxtv.org/media_tree.git
12475 S:      Maintained
12476 F:      drivers/media/i2c/ov9650.c
12477 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12478
12479 ONENAND FLASH DRIVER
12480 M:      Kyungmin Park <[email protected]>
12481 L:      [email protected]
12482 S:      Maintained
12483 F:      drivers/mtd/nand/onenand/
12484 F:      include/linux/mtd/onenand*.h
12485
12486 OP-TEE DRIVER
12487 M:      Jens Wiklander <[email protected]>
12488 L:      [email protected]
12489 S:      Maintained
12490 F:      drivers/tee/optee/
12491
12492 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12493 M:      Sumit Garg <[email protected]>
12494 L:      [email protected]
12495 S:      Maintained
12496 F:      drivers/char/hw_random/optee-rng.c
12497
12498 OPA-VNIC DRIVER
12499 M:      Dennis Dalessandro <[email protected]>
12500 M:      Niranjana Vishwanathapura <[email protected]>
12501 L:      [email protected]
12502 S:      Supported
12503 F:      drivers/infiniband/ulp/opa_vnic
12504
12505 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12506 M:      Pantelis Antoniou <[email protected]>
12507 M:      Frank Rowand <[email protected]>
12508 L:      [email protected]
12509 S:      Maintained
12510 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12511 F:      Documentation/devicetree/overlay-notes.txt
12512 F:      drivers/of/overlay.c
12513 F:      drivers/of/resolver.c
12514 K:      of_overlay_notifier_
12515
12516 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12517 M:      Rob Herring <[email protected]>
12518 M:      Frank Rowand <[email protected]>
12519 L:      [email protected]
12520 W:      http://www.devicetree.org/
12521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12522 S:      Maintained
12523 F:      drivers/of/
12524 F:      include/linux/of*.h
12525 F:      scripts/dtc/
12526 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12527
12528 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12529 M:      Rob Herring <[email protected]>
12530 L:      [email protected]
12531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12532 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12533 S:      Maintained
12534 F:      Documentation/devicetree/
12535 F:      arch/*/boot/dts/
12536 F:      include/dt-bindings/
12537
12538 OPENCORES I2C BUS DRIVER
12539 M:      Peter Korsgaard <[email protected]>
12540 M:      Andrew Lunn <[email protected]>
12541 L:      [email protected]
12542 S:      Maintained
12543 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12544 F:      Documentation/i2c/busses/i2c-ocores.rst
12545 F:      drivers/i2c/busses/i2c-ocores.c
12546 F:      include/linux/platform_data/i2c-ocores.h
12547
12548 OPENRISC ARCHITECTURE
12549 M:      Jonas Bonn <[email protected]>
12550 M:      Stefan Kristiansson <[email protected]>
12551 M:      Stafford Horne <[email protected]>
12552 T:      git git://github.com/openrisc/linux.git
12553 L:      [email protected]
12554 W:      http://openrisc.io
12555 S:      Maintained
12556 F:      Documentation/devicetree/bindings/openrisc/
12557 F:      Documentation/openrisc/
12558 F:      arch/openrisc/
12559 F:      drivers/irqchip/irq-ompic.c
12560 F:      drivers/irqchip/irq-or1k-*
12561
12562 OPENVSWITCH
12563 M:      Pravin B Shelar <[email protected]>
12564 L:      [email protected]
12565 L:      [email protected]
12566 W:      http://openvswitch.org
12567 S:      Maintained
12568 F:      net/openvswitch/
12569 F:      include/uapi/linux/openvswitch.h
12570
12571 OPERATING PERFORMANCE POINTS (OPP)
12572 M:      Viresh Kumar <[email protected]>
12573 M:      Nishanth Menon <[email protected]>
12574 M:      Stephen Boyd <[email protected]>
12575 L:      [email protected]
12576 S:      Maintained
12577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12578 F:      drivers/opp/
12579 F:      include/linux/pm_opp.h
12580 F:      Documentation/power/opp.rst
12581 F:      Documentation/devicetree/bindings/opp/
12582
12583 OPL4 DRIVER
12584 M:      Clemens Ladisch <[email protected]>
12585 L:      [email protected] (moderated for non-subscribers)
12586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12587 S:      Maintained
12588 F:      sound/drivers/opl4/
12589
12590 OPROFILE
12591 M:      Robert Richter <[email protected]>
12592 L:      [email protected]
12593 S:      Maintained
12594 F:      arch/*/include/asm/oprofile*.h
12595 F:      arch/*/oprofile/
12596 F:      drivers/oprofile/
12597 F:      include/linux/oprofile.h
12598
12599 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12600 M:      Mark Fasheh <[email protected]>
12601 M:      Joel Becker <[email protected]>
12602 M:      Joseph Qi <[email protected]>
12603 L:      [email protected] (moderated for non-subscribers)
12604 W:      http://ocfs2.wiki.kernel.org
12605 S:      Supported
12606 F:      Documentation/filesystems/ocfs2.rst
12607 F:      Documentation/filesystems/dlmfs.rst
12608 F:      fs/ocfs2/
12609
12610 ORANGEFS FILESYSTEM
12611 M:      Mike Marshall <[email protected]>
12612 R:      Martin Brandenburg <[email protected]>
12613 L:      [email protected]
12614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12615 S:      Supported
12616 F:      fs/orangefs/
12617 F:      Documentation/filesystems/orangefs.rst
12618
12619 ORINOCO DRIVER
12620 L:      [email protected]
12621 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12622 W:      http://www.nongnu.org/orinoco/
12623 S:      Orphan
12624 F:      drivers/net/wireless/intersil/orinoco/
12625
12626 OV2659 OMNIVISION SENSOR DRIVER
12627 M:      "Lad, Prabhakar" <[email protected]>
12628 L:      [email protected]
12629 W:      https://linuxtv.org
12630 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12631 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12632 S:      Maintained
12633 F:      drivers/media/i2c/ov2659.c
12634 F:      include/media/i2c/ov2659.h
12635
12636 OVERLAY FILESYSTEM
12637 M:      Miklos Szeredi <[email protected]>
12638 L:      [email protected]
12639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12640 S:      Supported
12641 F:      fs/overlayfs/
12642 F:      Documentation/filesystems/overlayfs.rst
12643
12644 P54 WIRELESS DRIVER
12645 M:      Christian Lamparter <[email protected]>
12646 L:      [email protected]
12647 W:      http://wireless.kernel.org/en/users/Drivers/p54
12648 S:      Maintained
12649 F:      drivers/net/wireless/intersil/p54/
12650
12651 PACKING
12652 M:      Vladimir Oltean <[email protected]>
12653 L:      [email protected]
12654 S:      Supported
12655 F:      lib/packing.c
12656 F:      include/linux/packing.h
12657 F:      Documentation/core-api/packing.rst
12658
12659 PADATA PARALLEL EXECUTION MECHANISM
12660 M:      Steffen Klassert <[email protected]>
12661 L:      [email protected]
12662 S:      Maintained
12663 F:      kernel/padata.c
12664 F:      include/linux/padata.h
12665 F:      Documentation/core-api/padata.rst
12666
12667 PAGE POOL
12668 M:      Jesper Dangaard Brouer <[email protected]>
12669 M:      Ilias Apalodimas <[email protected]>
12670 L:      [email protected]
12671 S:      Supported
12672 F:      net/core/page_pool.c
12673 F:      include/net/page_pool.h
12674
12675 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12676 M:      Harald Welte <[email protected]>
12677 L:      [email protected]
12678 S:      Maintained
12679 F:      drivers/platform/x86/panasonic-laptop.c
12680
12681 PARALLAX PING IIO SENSOR DRIVER
12682 M:      Andreas Klinger <[email protected]>
12683 L:      [email protected]
12684 S:      Maintained
12685 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12686 F:      drivers/iio/proximity/ping.c
12687
12688 PARALLEL LCD/KEYPAD PANEL DRIVER
12689 M:      Willy Tarreau <[email protected]>
12690 M:      Ksenija Stanojevic <[email protected]>
12691 S:      Odd Fixes
12692 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12693 F:      drivers/auxdisplay/panel.c
12694
12695 PARALLEL PORT SUBSYSTEM
12696 M:      Sudip Mukherjee <[email protected]>
12697 M:      Sudip Mukherjee <[email protected]>
12698 L:      [email protected] (subscribers-only)
12699 S:      Maintained
12700 F:      drivers/parport/
12701 F:      include/linux/parport*.h
12702 F:      drivers/char/ppdev.c
12703 F:      include/uapi/linux/ppdev.h
12704 F:      Documentation/driver-api/parport*.rst
12705
12706 PARAVIRT_OPS INTERFACE
12707 M:      Juergen Gross <[email protected]>
12708 M:      Thomas Hellstrom <[email protected]>
12709 M:      "VMware, Inc." <[email protected]>
12710 L:      [email protected]
12711 S:      Supported
12712 F:      Documentation/virt/paravirt_ops.rst
12713 F:      arch/*/kernel/paravirt*
12714 F:      arch/*/include/asm/paravirt*.h
12715 F:      include/linux/hypervisor.h
12716
12717 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12718 M:      Tim Waugh <[email protected]>
12719 L:      [email protected] (subscribers-only)
12720 S:      Maintained
12721 F:      Documentation/admin-guide/blockdev/paride.rst
12722 F:      drivers/block/paride/
12723
12724 PARISC ARCHITECTURE
12725 M:      "James E.J. Bottomley" <[email protected]>
12726 M:      Helge Deller <[email protected]>
12727 L:      [email protected]
12728 W:      http://www.parisc-linux.org/
12729 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12732 S:      Maintained
12733 F:      arch/parisc/
12734 F:      Documentation/parisc/
12735 F:      drivers/parisc/
12736 F:      drivers/char/agp/parisc-agp.c
12737 F:      drivers/input/misc/hp_sdc_rtc.c
12738 F:      drivers/input/serio/gscps2.c
12739 F:      drivers/input/serio/hp_sdc*
12740 F:      drivers/parport/parport_gsc.*
12741 F:      drivers/tty/serial/8250/8250_gsc.c
12742 F:      drivers/video/fbdev/sti*
12743 F:      drivers/video/console/sti*
12744 F:      drivers/video/logo/logo_parisc*
12745 F:      include/linux/hp_sdc.h
12746
12747 PARMAN
12748 M:      Jiri Pirko <[email protected]>
12749 L:      [email protected]
12750 S:      Supported
12751 F:      lib/parman.c
12752 F:      lib/test_parman.c
12753 F:      include/linux/parman.h
12754
12755 PC ENGINES APU BOARD DRIVER
12756 M:      Enrico Weigelt, metux IT consult <[email protected]>
12757 S:      Maintained
12758 F:      drivers/platform/x86/pcengines-apuv2.c
12759
12760 PC87360 HARDWARE MONITORING DRIVER
12761 M:      Jim Cromie <[email protected]>
12762 L:      [email protected]
12763 S:      Maintained
12764 F:      Documentation/hwmon/pc87360.rst
12765 F:      drivers/hwmon/pc87360.c
12766
12767 PC8736x GPIO DRIVER
12768 M:      Jim Cromie <[email protected]>
12769 S:      Maintained
12770 F:      drivers/char/pc8736x_gpio.c
12771
12772 PC87427 HARDWARE MONITORING DRIVER
12773 M:      Jean Delvare <[email protected]>
12774 L:      [email protected]
12775 S:      Maintained
12776 F:      Documentation/hwmon/pc87427.rst
12777 F:      drivers/hwmon/pc87427.c
12778
12779 PCA9532 LED DRIVER
12780 M:      Riku Voipio <[email protected]>
12781 S:      Maintained
12782 F:      drivers/leds/leds-pca9532.c
12783 F:      include/linux/leds-pca9532.h
12784
12785 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12786 M:      Guenter Roeck <[email protected]>
12787 L:      [email protected]
12788 S:      Maintained
12789 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12790
12791 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12792 M:      Khalid Aziz <[email protected]>
12793 S:      Maintained
12794 F:      drivers/firmware/pcdp.*
12795
12796 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12797 M:      Thomas Petazzoni <[email protected]>
12798 L:      [email protected]
12799 L:      [email protected] (moderated for non-subscribers)
12800 S:      Maintained
12801 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12802 F:      drivers/pci/controller/pci-aardvark.c
12803
12804 PCI DRIVER FOR ALTERA PCIE IP
12805 M:      Ley Foon Tan <[email protected]>
12806 L:      [email protected] (moderated for non-subscribers)
12807 L:      [email protected]
12808 S:      Supported
12809 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12810 F:      drivers/pci/controller/pcie-altera.c
12811
12812 PCI DRIVER FOR APPLIEDMICRO XGENE
12813 M:      Toan Le <[email protected]>
12814 L:      [email protected]
12815 L:      [email protected]
12816 S:      Maintained
12817 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12818 F:      drivers/pci/controller/pci-xgene.c
12819
12820 PCI DRIVER FOR ARM VERSATILE PLATFORM
12821 M:      Rob Herring <[email protected]>
12822 L:      [email protected]
12823 L:      [email protected]
12824 S:      Maintained
12825 F:      Documentation/devicetree/bindings/pci/versatile.yaml
12826 F:      drivers/pci/controller/pci-versatile.c
12827
12828 PCI DRIVER FOR ARMADA 8K
12829 M:      Thomas Petazzoni <[email protected]>
12830 L:      [email protected]
12831 L:      [email protected]
12832 S:      Maintained
12833 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12834 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12835
12836 PCI DRIVER FOR CADENCE PCIE IP
12837 M:      Tom Joseph <[email protected]>
12838 L:      [email protected]
12839 S:      Maintained
12840 F:      Documentation/devicetree/bindings/pci/cdns,*
12841 F:      drivers/pci/controller/cadence/
12842
12843 PCI DRIVER FOR FREESCALE LAYERSCAPE
12844 M:      Minghuan Lian <[email protected]>
12845 M:      Mingkai Hu <[email protected]>
12846 M:      Roy Zang <[email protected]>
12847 L:      [email protected]
12848 L:      [email protected]
12849 L:      [email protected]
12850 S:      Maintained
12851 F:      drivers/pci/controller/dwc/*layerscape*
12852
12853 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
12854 M:      Hou Zhiqiang <[email protected]>
12855 L:      [email protected]
12856 L:      [email protected]
12857 S:      Maintained
12858 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
12859 F:      drivers/pci/controller/mobibeil/pcie-layerscape-gen4.c
12860
12861 PCI DRIVER FOR GENERIC OF HOSTS
12862 M:      Will Deacon <[email protected]>
12863 L:      [email protected]
12864 L:      [email protected] (moderated for non-subscribers)
12865 S:      Maintained
12866 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
12867 F:      drivers/pci/controller/pci-host-common.c
12868 F:      drivers/pci/controller/pci-host-generic.c
12869
12870 PCI DRIVER FOR IMX6
12871 M:      Richard Zhu <[email protected]>
12872 M:      Lucas Stach <[email protected]>
12873 L:      [email protected]
12874 L:      [email protected] (moderated for non-subscribers)
12875 S:      Maintained
12876 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12877 F:      drivers/pci/controller/dwc/*imx6*
12878
12879 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12880 M:      Jonathan Derrick <[email protected]>
12881 L:      [email protected]
12882 S:      Supported
12883 F:      drivers/pci/controller/vmd.c
12884
12885 PCI DRIVER FOR MICROSEMI SWITCHTEC
12886 M:      Kurt Schwemmer <[email protected]>
12887 M:      Logan Gunthorpe <[email protected]>
12888 L:      [email protected]
12889 S:      Maintained
12890 F:      Documentation/driver-api/switchtec.rst
12891 F:      Documentation/ABI/testing/sysfs-class-switchtec
12892 F:      drivers/pci/switch/switchtec*
12893 F:      include/uapi/linux/switchtec_ioctl.h
12894 F:      include/linux/switchtec.h
12895 F:      drivers/ntb/hw/mscc/
12896
12897 PCI DRIVER FOR MOBIVEIL PCIE IP
12898 M:      Karthikeyan Mitran <[email protected]>
12899 M:      Hou Zhiqiang <[email protected]>
12900 L:      [email protected]
12901 S:      Supported
12902 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12903 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
12904
12905 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12906 M:      Thomas Petazzoni <[email protected]>
12907 M:      Jason Cooper <[email protected]>
12908 L:      [email protected]
12909 L:      [email protected] (moderated for non-subscribers)
12910 S:      Maintained
12911 F:      drivers/pci/controller/*mvebu*
12912
12913 PCI DRIVER FOR NVIDIA TEGRA
12914 M:      Thierry Reding <[email protected]>
12915 L:      [email protected]
12916 L:      [email protected]
12917 S:      Supported
12918 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12919 F:      drivers/pci/controller/pci-tegra.c
12920
12921 PCI DRIVER FOR RENESAS R-CAR
12922 M:      Marek Vasut <[email protected]>
12923 M:      Yoshihiro Shimoda <[email protected]>
12924 L:      [email protected]
12925 L:      [email protected]
12926 S:      Maintained
12927 F:      drivers/pci/controller/*rcar*
12928
12929 PCI DRIVER FOR SAMSUNG EXYNOS
12930 M:      Jingoo Han <[email protected]>
12931 L:      [email protected]
12932 L:      [email protected] (moderated for non-subscribers)
12933 L:      [email protected] (moderated for non-subscribers)
12934 S:      Maintained
12935 F:      drivers/pci/controller/dwc/pci-exynos.c
12936
12937 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12938 M:      Jingoo Han <[email protected]>
12939 M:      Gustavo Pimentel <[email protected]>
12940 L:      [email protected]
12941 S:      Maintained
12942 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12943 F:      drivers/pci/controller/dwc/*designware*
12944
12945 PCI DRIVER FOR TI DRA7XX
12946 M:      Kishon Vijay Abraham I <[email protected]>
12947 L:      [email protected]
12948 L:      [email protected]
12949 S:      Supported
12950 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12951 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12952
12953 PCI DRIVER FOR TI KEYSTONE
12954 M:      Murali Karicheri <[email protected]>
12955 L:      [email protected]
12956 L:      [email protected] (moderated for non-subscribers)
12957 S:      Maintained
12958 F:      drivers/pci/controller/dwc/pci-keystone.c
12959
12960 PCI ENDPOINT SUBSYSTEM
12961 M:      Kishon Vijay Abraham I <[email protected]>
12962 M:      Lorenzo Pieralisi <[email protected]>
12963 L:      [email protected]
12964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12965 S:      Supported
12966 F:      drivers/pci/endpoint/
12967 F:      drivers/misc/pci_endpoint_test.c
12968 F:      tools/pci/
12969
12970 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12971 M:      Russell Currey <[email protected]>
12972 M:      Sam Bobroff <[email protected]>
12973 M:      Oliver O'Halloran <[email protected]>
12974 L:      [email protected]
12975 S:      Supported
12976 F:      Documentation/PCI/pci-error-recovery.rst
12977 F:      drivers/pci/pcie/aer.c
12978 F:      drivers/pci/pcie/dpc.c
12979 F:      drivers/pci/pcie/err.c
12980 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
12981 F:      arch/powerpc/kernel/eeh*.c
12982 F:      arch/powerpc/platforms/*/eeh*.c
12983 F:      arch/powerpc/include/*/eeh*.h
12984
12985 PCI ERROR RECOVERY
12986 M:      Linas Vepstas <[email protected]>
12987 L:      [email protected]
12988 S:      Supported
12989 F:      Documentation/PCI/pci-error-recovery.rst
12990
12991 PCI MSI DRIVER FOR ALTERA MSI IP
12992 M:      Ley Foon Tan <[email protected]>
12993 L:      [email protected] (moderated for non-subscribers)
12994 L:      [email protected]
12995 S:      Supported
12996 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
12997 F:      drivers/pci/controller/pcie-altera-msi.c
12998
12999 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13000 M:      Toan Le <[email protected]>
13001 L:      [email protected]
13002 L:      [email protected]
13003 S:      Maintained
13004 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13005 F:      drivers/pci/controller/pci-xgene-msi.c
13006
13007 PCI SUBSYSTEM
13008 M:      Bjorn Helgaas <[email protected]>
13009 L:      [email protected]
13010 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13012 S:      Supported
13013 F:      Documentation/devicetree/bindings/pci/
13014 F:      Documentation/PCI/
13015 F:      drivers/acpi/pci*
13016 F:      drivers/pci/
13017 F:      include/asm-generic/pci*
13018 F:      include/linux/pci*
13019 F:      include/linux/of_pci.h
13020 F:      include/uapi/linux/pci*
13021 F:      lib/pci*
13022 F:      arch/x86/pci/
13023 F:      arch/x86/kernel/quirks.c
13024 F:      arch/x86/kernel/early-quirks.c
13025
13026 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13027 M:      Lorenzo Pieralisi <[email protected]>
13028 R:      Andrew Murray <[email protected]>
13029 L:      [email protected]
13030 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13032 S:      Supported
13033 F:      drivers/pci/controller/
13034
13035 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13036 M:      Jonathan Chocron <[email protected]>
13037 L:      [email protected]
13038 S:      Maintained
13039 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13040 F:      drivers/pci/controller/dwc/pcie-al.c
13041
13042 PCIE DRIVER FOR AMLOGIC MESON
13043 M:      Yue Wang <[email protected]>
13044 L:      [email protected]
13045 L:      [email protected]
13046 S:      Maintained
13047 F:      drivers/pci/controller/dwc/pci-meson.c
13048
13049 PCIE DRIVER FOR AXIS ARTPEC
13050 M:      Jesper Nilsson <[email protected]>
13051 L:      [email protected]
13052 L:      [email protected]
13053 S:      Maintained
13054 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13055 F:      drivers/pci/controller/dwc/*artpec*
13056
13057 PCIE DRIVER FOR CAVIUM THUNDERX
13058 M:      Robert Richter <[email protected]>
13059 L:      [email protected]
13060 L:      [email protected] (moderated for non-subscribers)
13061 S:      Supported
13062 F:      drivers/pci/controller/pci-thunder-*
13063
13064 PCIE DRIVER FOR HISILICON
13065 M:      Zhou Wang <[email protected]>
13066 L:      [email protected]
13067 S:      Maintained
13068 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13069 F:      drivers/pci/controller/dwc/pcie-hisi.c
13070
13071 PCIE DRIVER FOR HISILICON KIRIN
13072 M:      Xiaowei Song <[email protected]>
13073 M:      Binghui Wang <[email protected]>
13074 L:      [email protected]
13075 S:      Maintained
13076 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13077 F:      drivers/pci/controller/dwc/pcie-kirin.c
13078
13079 PCIE DRIVER FOR HISILICON STB
13080 M:      Shawn Guo <[email protected]>
13081 L:      [email protected]
13082 S:      Maintained
13083 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13084 F:      drivers/pci/controller/dwc/pcie-histb.c
13085
13086 PCIE DRIVER FOR MEDIATEK
13087 M:      Ryder Lee <[email protected]>
13088 L:      [email protected]
13089 L:      [email protected]
13090 S:      Supported
13091 F:      Documentation/devicetree/bindings/pci/mediatek*
13092 F:      drivers/pci/controller/*mediatek*
13093
13094 PCIE DRIVER FOR QUALCOMM MSM
13095 M:      Stanimir Varbanov <[email protected]>
13096 L:      [email protected]
13097 L:      [email protected]
13098 S:      Maintained
13099 F:      drivers/pci/controller/dwc/*qcom*
13100
13101 PCIE DRIVER FOR ROCKCHIP
13102 M:      Shawn Lin <[email protected]>
13103 L:      [email protected]
13104 L:      [email protected]
13105 S:      Maintained
13106 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13107 F:      drivers/pci/controller/pcie-rockchip*
13108
13109 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13110 M:      Linus Walleij <[email protected]>
13111 L:      [email protected]
13112 S:      Maintained
13113 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13114 F:      drivers/pci/controller/pci-v3-semi.c
13115
13116 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13117 M:      Kunihiko Hayashi <[email protected]>
13118 L:      [email protected]
13119 S:      Maintained
13120 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
13121 F:      drivers/pci/controller/dwc/pcie-uniphier.c
13122
13123 PCIE DRIVER FOR ST SPEAR13XX
13124 M:      Pratyush Anand <[email protected]>
13125 L:      [email protected]
13126 S:      Maintained
13127 F:      drivers/pci/controller/dwc/*spear*
13128
13129 PCMCIA SUBSYSTEM
13130 M:      Dominik Brodowski <[email protected]>
13131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13132 S:      Odd Fixes
13133 F:      Documentation/pcmcia/
13134 F:      tools/pcmcia/
13135 F:      drivers/pcmcia/
13136 F:      include/pcmcia/
13137
13138 PCNET32 NETWORK DRIVER
13139 M:      Don Fry <[email protected]>
13140 L:      [email protected]
13141 S:      Maintained
13142 F:      drivers/net/ethernet/amd/pcnet32.c
13143
13144 PCRYPT PARALLEL CRYPTO ENGINE
13145 M:      Steffen Klassert <[email protected]>
13146 L:      [email protected]
13147 S:      Maintained
13148 F:      crypto/pcrypt.c
13149 F:      include/crypto/pcrypt.h
13150
13151 PEAQ WMI HOTKEYS DRIVER
13152 M:      Hans de Goede <[email protected]>
13153 L:      [email protected]
13154 S:      Maintained
13155 F:      drivers/platform/x86/peaq-wmi.c
13156
13157 PENSANDO ETHERNET DRIVERS
13158 M:      Shannon Nelson <[email protected]>
13159 M:      Pensando Drivers <[email protected]>
13160 L:      [email protected]
13161 S:      Supported
13162 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13163 F:      drivers/net/ethernet/pensando/
13164
13165 PER-CPU MEMORY ALLOCATOR
13166 M:      Dennis Zhou <[email protected]>
13167 M:      Tejun Heo <[email protected]>
13168 M:      Christoph Lameter <[email protected]>
13169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13170 S:      Maintained
13171 F:      include/linux/percpu*.h
13172 F:      mm/percpu*.c
13173 F:      arch/*/include/asm/percpu.h
13174
13175 PER-TASK DELAY ACCOUNTING
13176 M:      Balbir Singh <[email protected]>
13177 S:      Maintained
13178 F:      include/linux/delayacct.h
13179 F:      kernel/delayacct.c
13180
13181 PERFORMANCE EVENTS SUBSYSTEM
13182 M:      Peter Zijlstra <[email protected]>
13183 M:      Ingo Molnar <[email protected]>
13184 M:      Arnaldo Carvalho de Melo <[email protected]>
13185 R:      Mark Rutland <[email protected]>
13186 R:      Alexander Shishkin <[email protected]>
13187 R:      Jiri Olsa <[email protected]>
13188 R:      Namhyung Kim <[email protected]>
13189 L:      [email protected]
13190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13191 S:      Supported
13192 F:      kernel/events/*
13193 F:      include/linux/perf_event.h
13194 F:      include/uapi/linux/perf_event.h
13195 F:      arch/*/kernel/perf_event*.c
13196 F:      arch/*/kernel/*/perf_event*.c
13197 F:      arch/*/kernel/*/*/perf_event*.c
13198 F:      arch/*/include/asm/perf_event.h
13199 F:      arch/*/kernel/perf_callchain.c
13200 F:      arch/*/events/*
13201 F:      arch/*/events/*/*
13202 F:      tools/perf/
13203
13204 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13205 R:      John Garry <[email protected]>
13206 R:      Will Deacon <[email protected]>
13207 L:      [email protected] (moderated for non-subscribers)
13208 S:      Supported
13209 F:      tools/perf/pmu-events/arch/arm64/
13210
13211 PERSONALITY HANDLING
13212 M:      Christoph Hellwig <[email protected]>
13213 L:      [email protected]
13214 S:      Maintained
13215 F:      include/linux/personality.h
13216 F:      include/uapi/linux/personality.h
13217
13218 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13219 M:      Marcus Folkesson <[email protected]>
13220 L:      [email protected]
13221 S:      Maintained
13222 F:      Documentation/input/devices/pxrc.rst
13223 F:      drivers/input/joystick/pxrc.c
13224
13225 FLYSKY FSIA6B RC RECEIVER
13226 M:      Markus Koch <[email protected]>
13227 L:      [email protected]
13228 S:      Maintained
13229 F:      drivers/input/joystick/fsia6b.c
13230
13231 PHONET PROTOCOL
13232 M:      Remi Denis-Courmont <[email protected]>
13233 S:      Supported
13234 F:      Documentation/networking/phonet.txt
13235 F:      include/linux/phonet.h
13236 F:      include/net/phonet/
13237 F:      include/uapi/linux/phonet.h
13238 F:      net/phonet/
13239
13240 PHRAM MTD DRIVER
13241 M:      Joern Engel <[email protected]>
13242 L:      [email protected]
13243 S:      Maintained
13244 F:      drivers/mtd/devices/phram.c
13245
13246 PICOLCD HID DRIVER
13247 M:      Bruno Prémont <[email protected]>
13248 L:      [email protected]
13249 S:      Maintained
13250 F:      drivers/hid/hid-picolcd*
13251
13252 PICOXCELL SUPPORT
13253 M:      Jamie Iles <[email protected]>
13254 L:      [email protected] (moderated for non-subscribers)
13255 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13256 S:      Supported
13257 F:      arch/arm/boot/dts/picoxcell*
13258 F:      arch/arm/mach-picoxcell/
13259 F:      drivers/crypto/picoxcell*
13260
13261 PIDFD API
13262 M:      Christian Brauner <[email protected]>
13263 L:      [email protected]
13264 S:      Maintained
13265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13266 F:      samples/pidfd/
13267 F:      tools/testing/selftests/pidfd/
13268 F:      tools/testing/selftests/pid_namespace/
13269 F:      tools/testing/selftests/clone3/
13270 K:      (?i)pidfd
13271 K:      (?i)clone3
13272 K:      \b(clone_args|kernel_clone_args)\b
13273
13274 PIN CONTROL SUBSYSTEM
13275 M:      Linus Walleij <[email protected]>
13276 L:      [email protected]
13277 S:      Maintained
13278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13279 F:      Documentation/devicetree/bindings/pinctrl/
13280 F:      Documentation/driver-api/pinctl.rst
13281 F:      drivers/pinctrl/
13282 F:      include/linux/pinctrl/
13283
13284 PIN CONTROLLER - FREESCALE
13285 M:      Dong Aisheng <[email protected]>
13286 M:      Fabio Estevam <[email protected]>
13287 M:      Shawn Guo <[email protected]>
13288 M:      Stefan Agner <[email protected]>
13289 R:      Pengutronix Kernel Team <[email protected]>
13290 L:      [email protected]
13291 S:      Maintained
13292 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13293 F:      drivers/pinctrl/freescale/
13294
13295 PIN CONTROLLER - INTEL
13296 M:      Mika Westerberg <[email protected]>
13297 M:      Andy Shevchenko <[email protected]>
13298 S:      Maintained
13299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13300 F:      drivers/pinctrl/intel/
13301
13302 PIN CONTROLLER - MEDIATEK
13303 M:      Sean Wang <[email protected]>
13304 L:      [email protected] (moderated for non-subscribers)
13305 S:      Maintained
13306 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13307 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13308 F:      drivers/pinctrl/mediatek/
13309
13310 PIN CONTROLLER - MICROCHIP AT91
13311 M:      Ludovic Desroches <[email protected]>
13312 L:      [email protected] (moderated for non-subscribers)
13313 L:      [email protected]
13314 S:      Supported
13315 F:      drivers/gpio/gpio-sama5d2-piobu.c
13316 F:      drivers/pinctrl/pinctrl-at91*
13317
13318 PIN CONTROLLER - QUALCOMM
13319 M:      Bjorn Andersson <[email protected]>
13320 L:      [email protected]
13321 S:      Maintained
13322 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13323 F:      drivers/pinctrl/qcom/
13324
13325 PIN CONTROLLER - RENESAS
13326 M:      Geert Uytterhoeven <[email protected]>
13327 L:      [email protected]
13328 S:      Maintained
13329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13330 F:      drivers/pinctrl/pinctrl-rz*
13331 F:      drivers/pinctrl/sh-pfc/
13332
13333 PIN CONTROLLER - SAMSUNG
13334 M:      Tomasz Figa <[email protected]>
13335 M:      Krzysztof Kozlowski <[email protected]>
13336 M:      Sylwester Nawrocki <[email protected]>
13337 L:      [email protected] (moderated for non-subscribers)
13338 L:      [email protected] (moderated for non-subscribers)
13339 S:      Maintained
13340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13341 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13342 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13343 F:      drivers/pinctrl/samsung/
13344 F:      include/dt-bindings/pinctrl/samsung.h
13345
13346 PIN CONTROLLER - SINGLE
13347 M:      Tony Lindgren <[email protected]>
13348 M:      Haojian Zhuang <[email protected]>
13349 L:      [email protected] (moderated for non-subscribers)
13350 L:      [email protected]
13351 S:      Maintained
13352 F:      drivers/pinctrl/pinctrl-single.c
13353
13354 PIN CONTROLLER - ST SPEAR
13355 M:      Viresh Kumar <[email protected]>
13356 L:      [email protected] (moderated for non-subscribers)
13357 S:      Maintained
13358 W:      http://www.st.com/spear
13359 F:      drivers/pinctrl/spear/
13360
13361 PISTACHIO SOC SUPPORT
13362 M:      James Hartley <[email protected]>
13363 L:      [email protected]
13364 S:      Odd Fixes
13365 F:      arch/mips/pistachio/
13366 F:      arch/mips/include/asm/mach-pistachio/
13367 F:      arch/mips/boot/dts/img/pistachio*
13368 F:      arch/mips/configs/pistachio*_defconfig
13369
13370 PKTCDVD DRIVER
13371 S:      Orphan
13372 M:      [email protected]
13373 F:      drivers/block/pktcdvd.c
13374 F:      include/linux/pktcdvd.h
13375 F:      include/uapi/linux/pktcdvd.h
13376
13377 PKUNITY SOC DRIVERS
13378 M:      Guan Xuetao <[email protected]>
13379 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13380 S:      Maintained
13381 T:      git git://github.com/gxt/linux.git
13382 F:      drivers/input/serio/i8042-unicore32io.h
13383 F:      drivers/i2c/busses/i2c-puv3.c
13384 F:      drivers/video/fbdev/fb-puv3.c
13385 F:      drivers/rtc/rtc-puv3.c
13386
13387 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13388 M:      Tomasz Duszynski <[email protected]>
13389 S:      Maintained
13390 F:      drivers/iio/chemical/pms7003.c
13391 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13392
13393 PLX DMA DRIVER
13394 M:      Logan Gunthorpe <[email protected]>
13395 S:      Maintained
13396 F:      drivers/dma/plx_dma.c
13397
13398 PMBUS HARDWARE MONITORING DRIVERS
13399 M:      Guenter Roeck <[email protected]>
13400 L:      [email protected]
13401 W:      http://hwmon.wiki.kernel.org/
13402 W:      http://www.roeck-us.net/linux/drivers/
13403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13404 S:      Maintained
13405 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13406 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13407 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13408 F:      Documentation/hwmon/adm1275.rst
13409 F:      Documentation/hwmon/ibm-cffps.rst
13410 F:      Documentation/hwmon/ir35221.rst
13411 F:      Documentation/hwmon/lm25066.rst
13412 F:      Documentation/hwmon/ltc2978.rst
13413 F:      Documentation/hwmon/ltc3815.rst
13414 F:      Documentation/hwmon/max16064.rst
13415 F:      Documentation/hwmon/max20751.rst
13416 F:      Documentation/hwmon/max31785.rst
13417 F:      Documentation/hwmon/max34440.rst
13418 F:      Documentation/hwmon/max8688.rst
13419 F:      Documentation/hwmon/pmbus.rst
13420 F:      Documentation/hwmon/pmbus-core.rst
13421 F:      Documentation/hwmon/tps40422.rst
13422 F:      Documentation/hwmon/ucd9000.rst
13423 F:      Documentation/hwmon/ucd9200.rst
13424 F:      Documentation/hwmon/zl6100.rst
13425 F:      drivers/hwmon/pmbus/
13426 F:      include/linux/pmbus.h
13427
13428 PMC SIERRA MaxRAID DRIVER
13429 L:      [email protected]
13430 W:      http://www.pmc-sierra.com/
13431 S:      Orphan
13432 F:      drivers/scsi/pmcraid.*
13433
13434 PMC SIERRA PM8001 DRIVER
13435 M:      Jack Wang <[email protected]>
13436 L:      [email protected]
13437 S:      Supported
13438 F:      drivers/scsi/pm8001/
13439
13440 PM-GRAPH UTILITY
13441 M:      "Todd E Brandt" <[email protected]>
13442 L:      [email protected]
13443 W:      https://01.org/pm-graph
13444 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13445 T:      git git://github.com/intel/pm-graph
13446 S:      Supported
13447 F:      tools/power/pm-graph
13448
13449 PNI RM3100 IIO DRIVER
13450 M:      Song Qiang <[email protected]>
13451 L:      [email protected]
13452 S:      Maintained
13453 F:      drivers/iio/magnetometer/rm3100*
13454 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13455
13456 PNP SUPPORT
13457 M:      "Rafael J. Wysocki" <[email protected]>
13458 L:      [email protected]
13459 S:      Maintained
13460 F:      include/linux/pnp.h
13461 F:      drivers/pnp/
13462
13463 POSIX CLOCKS and TIMERS
13464 M:      Thomas Gleixner <[email protected]>
13465 L:      [email protected]
13466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13467 S:      Maintained
13468 F:      fs/timerfd.c
13469 F:      include/linux/timer*
13470 F:      include/linux/time_namespace.h
13471 F:      kernel/time/namespace.c
13472 F:      kernel/time/*timer*
13473
13474 POWER MANAGEMENT CORE
13475 M:      "Rafael J. Wysocki" <[email protected]>
13476 L:      [email protected]
13477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13478 B:      https://bugzilla.kernel.org
13479 S:      Supported
13480 F:      drivers/base/power/
13481 F:      include/linux/pm.h
13482 F:      include/linux/pm_*
13483 F:      include/linux/powercap.h
13484 F:      include/linux/intel_rapl.h
13485 F:      drivers/powercap/
13486 F:      kernel/configs/nopm.config
13487
13488 POWER STATE COORDINATION INTERFACE (PSCI)
13489 M:      Mark Rutland <[email protected]>
13490 M:      Lorenzo Pieralisi <[email protected]>
13491 L:      [email protected]
13492 S:      Maintained
13493 F:      drivers/firmware/psci/
13494 F:      include/linux/psci.h
13495 F:      include/uapi/linux/psci.h
13496
13497 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13498 M:      Sebastian Reichel <[email protected]>
13499 L:      [email protected]
13500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13501 S:      Maintained
13502 F:      Documentation/ABI/testing/sysfs-class-power
13503 F:      Documentation/devicetree/bindings/power/supply/
13504 F:      include/linux/power_supply.h
13505 F:      drivers/power/supply/
13506
13507 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13508 M:      Suraj Jitindar Singh <[email protected]>
13509 L:      [email protected]
13510 S:      Maintained
13511 F:      drivers/char/powernv-op-panel.c
13512
13513 PPP OVER ATM (RFC 2364)
13514 M:      Mitchell Blank Jr <[email protected]>
13515 S:      Maintained
13516 F:      net/atm/pppoatm.c
13517 F:      include/uapi/linux/atmppp.h
13518
13519 PPP OVER ETHERNET
13520 M:      Michal Ostrowski <[email protected]>
13521 S:      Maintained
13522 F:      drivers/net/ppp/pppoe.c
13523 F:      drivers/net/ppp/pppox.c
13524
13525 PPP OVER L2TP
13526 M:      James Chapman <[email protected]>
13527 S:      Maintained
13528 F:      net/l2tp/l2tp_ppp.c
13529 F:      include/linux/if_pppol2tp.h
13530 F:      include/uapi/linux/if_pppol2tp.h
13531
13532 PPP PROTOCOL DRIVERS AND COMPRESSORS
13533 M:      Paul Mackerras <[email protected]>
13534 L:      [email protected]
13535 S:      Maintained
13536 F:      drivers/net/ppp/ppp_*
13537
13538 PPS SUPPORT
13539 M:      Rodolfo Giometti <[email protected]>
13540 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13541 L:      [email protected] (subscribers-only)
13542 S:      Maintained
13543 F:      Documentation/driver-api/pps.rst
13544 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13545 F:      Documentation/ABI/testing/sysfs-pps
13546 F:      drivers/pps/
13547 F:      include/linux/pps*.h
13548 F:      include/uapi/linux/pps.h
13549
13550 PPTP DRIVER
13551 M:      Dmitry Kozlov <[email protected]>
13552 L:      [email protected]
13553 S:      Maintained
13554 F:      drivers/net/ppp/pptp.c
13555 W:      http://sourceforge.net/projects/accel-pptp
13556
13557 PRINTK
13558 M:      Petr Mladek <[email protected]>
13559 M:      Sergey Senozhatsky <[email protected]>
13560 R:      Steven Rostedt <[email protected]>
13561 S:      Maintained
13562 F:      kernel/printk/
13563 F:      include/linux/printk.h
13564
13565 PRISM54 WIRELESS DRIVER
13566 M:      Luis Chamberlain <[email protected]>
13567 L:      [email protected]
13568 W:      http://wireless.kernel.org/en/users/Drivers/p54
13569 S:      Obsolete
13570 F:      drivers/net/wireless/intersil/prism54/
13571
13572 PROC FILESYSTEM
13573 R:      Alexey Dobriyan <[email protected]>
13574 L:      [email protected]
13575 L:      [email protected]
13576 S:      Maintained
13577 F:      fs/proc/
13578 F:      include/linux/proc_fs.h
13579 F:      tools/testing/selftests/proc/
13580 F:      Documentation/filesystems/proc.rst
13581
13582 PROC SYSCTL
13583 M:      Luis Chamberlain <[email protected]>
13584 M:      Kees Cook <[email protected]>
13585 M:      Iurii Zaikin <[email protected]>
13586 L:      [email protected]
13587 L:      [email protected]
13588 S:      Maintained
13589 F:      fs/proc/proc_sysctl.c
13590 F:      include/linux/sysctl.h
13591 F:      kernel/sysctl.c
13592 F:      kernel/sysctl-test.c
13593 F:      tools/testing/selftests/sysctl/
13594
13595 PS3 NETWORK SUPPORT
13596 M:      Geoff Levand <[email protected]>
13597 L:      [email protected]
13598 L:      [email protected]
13599 S:      Maintained
13600 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13601
13602 PS3 PLATFORM SUPPORT
13603 M:      Geoff Levand <[email protected]>
13604 L:      [email protected]
13605 S:      Maintained
13606 F:      arch/powerpc/boot/ps3*
13607 F:      arch/powerpc/include/asm/lv1call.h
13608 F:      arch/powerpc/include/asm/ps3*.h
13609 F:      arch/powerpc/platforms/ps3/
13610 F:      drivers/*/ps3*
13611 F:      drivers/ps3/
13612 F:      drivers/rtc/rtc-ps3.c
13613 F:      drivers/usb/host/*ps3.c
13614 F:      sound/ppc/snd_ps3*
13615
13616 PS3VRAM DRIVER
13617 M:      Jim Paris <[email protected]>
13618 M:      Geoff Levand <[email protected]>
13619 L:      [email protected]
13620 S:      Maintained
13621 F:      drivers/block/ps3vram.c
13622
13623 PSAMPLE PACKET SAMPLING SUPPORT
13624 M:      Yotam Gigi <[email protected]>
13625 S:      Maintained
13626 F:      net/psample
13627 F:      include/net/psample.h
13628 F:      include/uapi/linux/psample.h
13629
13630 PRESSURE STALL INFORMATION (PSI)
13631 M:      Johannes Weiner <[email protected]>
13632 S:      Maintained
13633 F:      kernel/sched/psi.c
13634 F:      include/linux/psi*
13635
13636 PSTORE FILESYSTEM
13637 M:      Kees Cook <[email protected]>
13638 M:      Anton Vorontsov <[email protected]>
13639 M:      Colin Cross <[email protected]>
13640 M:      Tony Luck <[email protected]>
13641 S:      Maintained
13642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13643 F:      fs/pstore/
13644 F:      include/linux/pstore*
13645 F:      drivers/firmware/efi/efi-pstore.c
13646 F:      drivers/acpi/apei/erst.c
13647 F:      Documentation/admin-guide/ramoops.rst
13648 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13649 K:      \b(pstore|ramoops)
13650
13651 PTP HARDWARE CLOCK SUPPORT
13652 M:      Richard Cochran <[email protected]>
13653 L:      [email protected]
13654 S:      Maintained
13655 W:      http://linuxptp.sourceforge.net/
13656 F:      Documentation/ABI/testing/sysfs-ptp
13657 F:      Documentation/driver-api/ptp.rst
13658 F:      drivers/net/phy/dp83640*
13659 F:      drivers/ptp/*
13660 F:      include/linux/ptp_cl*
13661
13662 PTRACE SUPPORT
13663 M:      Oleg Nesterov <[email protected]>
13664 S:      Maintained
13665 F:      include/asm-generic/syscall.h
13666 F:      include/linux/ptrace.h
13667 F:      include/linux/regset.h
13668 F:      include/linux/tracehook.h
13669 F:      include/uapi/linux/ptrace.h
13670 F:      include/uapi/linux/ptrace.h
13671 F:      kernel/ptrace.c
13672 F:      arch/*/ptrace*.c
13673 F:      arch/*/*/ptrace*.c
13674 F:      arch/*/include/asm/ptrace*.h
13675
13676 PULSE8-CEC DRIVER
13677 M:      Hans Verkuil <[email protected]>
13678 L:      [email protected]
13679 T:      git git://linuxtv.org/media_tree.git
13680 S:      Maintained
13681 F:      drivers/media/usb/pulse8-cec/*
13682 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13683
13684 PVRUSB2 VIDEO4LINUX DRIVER
13685 M:      Mike Isely <[email protected]>
13686 L:      [email protected]       (subscribers-only)
13687 L:      [email protected]
13688 W:      http://www.isely.net/pvrusb2/
13689 T:      git git://linuxtv.org/media_tree.git
13690 S:      Maintained
13691 F:      Documentation/media/v4l-drivers/pvrusb2*
13692 F:      drivers/media/usb/pvrusb2/
13693
13694 PWC WEBCAM DRIVER
13695 M:      Hans Verkuil <[email protected]>
13696 L:      [email protected]
13697 T:      git git://linuxtv.org/media_tree.git
13698 S:      Odd Fixes
13699 F:      drivers/media/usb/pwc/*
13700 F:      include/trace/events/pwc.h
13701
13702 PWM FAN DRIVER
13703 M:      Kamil Debski <[email protected]>
13704 M:      Bartlomiej Zolnierkiewicz <[email protected]>
13705 L:      [email protected]
13706 S:      Supported
13707 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13708 F:      Documentation/hwmon/pwm-fan.rst
13709 F:      drivers/hwmon/pwm-fan.c
13710
13711 PWM IR Transmitter
13712 M:      Sean Young <[email protected]>
13713 L:      [email protected]
13714 S:      Maintained
13715 F:      drivers/media/rc/pwm-ir-tx.c
13716
13717 PWM SUBSYSTEM
13718 M:      Thierry Reding <[email protected]>
13719 R:      Uwe Kleine-König <[email protected]>
13720 L:      [email protected]
13721 S:      Maintained
13722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13723 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13724 F:      Documentation/driver-api/pwm.rst
13725 F:      Documentation/devicetree/bindings/pwm/
13726 F:      include/linux/pwm.h
13727 F:      drivers/pwm/
13728 F:      drivers/video/backlight/pwm_bl.c
13729 F:      include/linux/pwm_backlight.h
13730 F:      drivers/gpio/gpio-mvebu.c
13731 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13732 K:      pwm_(config|apply_state|ops)
13733
13734 PXA GPIO DRIVER
13735 M:      Robert Jarzmik <[email protected]>
13736 L:      [email protected]
13737 S:      Maintained
13738 F:      drivers/gpio/gpio-pxa.c
13739
13740 PXA MMCI DRIVER
13741 S:      Orphan
13742
13743 PXA RTC DRIVER
13744 M:      Robert Jarzmik <[email protected]>
13745 L:      [email protected]
13746 S:      Maintained
13747
13748 PXA2xx/PXA3xx SUPPORT
13749 M:      Daniel Mack <[email protected]>
13750 M:      Haojian Zhuang <[email protected]>
13751 M:      Robert Jarzmik <[email protected]>
13752 L:      [email protected] (moderated for non-subscribers)
13753 T:      git git://github.com/hzhuang1/linux.git
13754 T:      git git://github.com/rjarzmik/linux.git
13755 S:      Maintained
13756 F:      arch/arm/boot/dts/pxa*
13757 F:      arch/arm/mach-pxa/
13758 F:      drivers/dma/pxa*
13759 F:      drivers/pcmcia/pxa2xx*
13760 F:      drivers/pinctrl/pxa/
13761 F:      drivers/spi/spi-pxa2xx*
13762 F:      drivers/usb/gadget/udc/pxa2*
13763 F:      include/sound/pxa2xx-lib.h
13764 F:      sound/arm/pxa*
13765 F:      sound/soc/pxa/
13766
13767 QAT DRIVER
13768 M:      Giovanni Cabiddu <[email protected]>
13769 L:      [email protected]
13770 S:      Supported
13771 F:      drivers/crypto/qat/
13772
13773 QCOM AUDIO (ASoC) DRIVERS
13774 M:      Patrick Lai <[email protected]>
13775 M:      Banajit Goswami <[email protected]>
13776 L:      [email protected] (moderated for non-subscribers)
13777 S:      Supported
13778 F:      sound/soc/qcom/
13779
13780 QCOM IPA DRIVER
13781 M:      Alex Elder <[email protected]>
13782 L:      [email protected]
13783 S:      Supported
13784 F:      drivers/net/ipa/
13785
13786 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13787 M:      Gabriel Somlo <[email protected]>
13788 M:      "Michael S. Tsirkin" <[email protected]>
13789 L:      [email protected]
13790 S:      Maintained
13791 F:      drivers/firmware/qemu_fw_cfg.c
13792 F:      include/uapi/linux/qemu_fw_cfg.h
13793
13794 QIB DRIVER
13795 M:      Dennis Dalessandro <[email protected]>
13796 M:      Mike Marciniszyn <[email protected]>
13797 L:      [email protected]
13798 S:      Supported
13799 F:      drivers/infiniband/hw/qib/
13800
13801 QLOGIC QL41xxx FCOE DRIVER
13802 M:      [email protected]
13803 L:      [email protected]
13804 S:      Supported
13805 F:      drivers/scsi/qedf/
13806
13807 QLOGIC QL41xxx ISCSI DRIVER
13808 M:      [email protected]
13809 L:      [email protected]
13810 S:      Supported
13811 F:      drivers/scsi/qedi/
13812
13813 QLOGIC QL4xxx ETHERNET DRIVER
13814 M:      Ariel Elior <[email protected]>
13815 M:      [email protected]
13816 L:      [email protected]
13817 S:      Supported
13818 F:      drivers/net/ethernet/qlogic/qed/
13819 F:      include/linux/qed/
13820 F:      drivers/net/ethernet/qlogic/qede/
13821
13822 QLOGIC QL4xxx RDMA DRIVER
13823 M:      Michal Kalderon <[email protected]>
13824 M:      Ariel Elior <[email protected]>
13825 L:      [email protected]
13826 S:      Supported
13827 F:      drivers/infiniband/hw/qedr/
13828 F:      include/uapi/rdma/qedr-abi.h
13829
13830 QLOGIC QLA1280 SCSI DRIVER
13831 M:      Michael Reed <[email protected]>
13832 L:      [email protected]
13833 S:      Maintained
13834 F:      drivers/scsi/qla1280.[ch]
13835
13836 QLOGIC QLA2XXX FC-SCSI DRIVER
13837 M:      [email protected]
13838 L:      [email protected]
13839 S:      Supported
13840 F:      Documentation/scsi/LICENSE.qla2xxx
13841 F:      drivers/scsi/qla2xxx/
13842
13843 QLOGIC QLA3XXX NETWORK DRIVER
13844 M:      [email protected]
13845 L:      [email protected]
13846 S:      Supported
13847 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13848 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13849
13850 QLOGIC QLA4XXX iSCSI DRIVER
13851 M:      [email protected]
13852 L:      [email protected]
13853 S:      Supported
13854 F:      Documentation/scsi/LICENSE.qla4xxx
13855 F:      drivers/scsi/qla4xxx/
13856
13857 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13858 M:      Shahed Shaikh <[email protected]>
13859 M:      Manish Chopra <[email protected]>
13860 M:      [email protected]
13861 L:      [email protected]
13862 S:      Supported
13863 F:      drivers/net/ethernet/qlogic/qlcnic/
13864
13865 QLOGIC QLGE 10Gb ETHERNET DRIVER
13866 M:      Manish Chopra <[email protected]>
13867 M:      [email protected]
13868 L:      [email protected]
13869 S:      Supported
13870 F:      drivers/staging/qlge/
13871
13872 QM1D1B0004 MEDIA DRIVER
13873 M:      Akihiro Tsukada <[email protected]>
13874 L:      [email protected]
13875 S:      Odd Fixes
13876 F:      drivers/media/tuners/qm1d1b0004*
13877
13878 QM1D1C0042 MEDIA DRIVER
13879 M:      Akihiro Tsukada <[email protected]>
13880 L:      [email protected]
13881 S:      Odd Fixes
13882 F:      drivers/media/tuners/qm1d1c0042*
13883
13884 QNX4 FILESYSTEM
13885 M:      Anders Larsen <[email protected]>
13886 W:      http://www.alarsen.net/linux/qnx4fs/
13887 S:      Maintained
13888 F:      fs/qnx4/
13889 F:      include/uapi/linux/qnx4_fs.h
13890 F:      include/uapi/linux/qnxtypes.h
13891
13892 QORIQ DPAA2 FSL-MC BUS DRIVER
13893 M:      Stuart Yoder <[email protected]>
13894 M:      Laurentiu Tudor <[email protected]>
13895 L:      [email protected]
13896 S:      Maintained
13897 F:      drivers/bus/fsl-mc/
13898 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13899 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13900
13901 QT1010 MEDIA DRIVER
13902 M:      Antti Palosaari <[email protected]>
13903 L:      [email protected]
13904 W:      https://linuxtv.org
13905 W:      http://palosaari.fi/linux/
13906 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13907 T:      git git://linuxtv.org/anttip/media_tree.git
13908 S:      Maintained
13909 F:      drivers/media/tuners/qt1010*
13910
13911 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13912 M:      Kalle Valo <[email protected]>
13913 L:      [email protected]
13914 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13916 S:      Supported
13917 F:      drivers/net/wireless/ath/ath10k/
13918
13919 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
13920 M:      Kalle Valo <[email protected]>
13921 L:      [email protected]
13922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13923 S:      Supported
13924 F:      drivers/net/wireless/ath/ath11k/
13925
13926 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13927 M:      QCA ath9k Development <[email protected]>
13928 L:      [email protected]
13929 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13930 S:      Supported
13931 F:      drivers/net/wireless/ath/ath9k/
13932
13933 QUALCOMM CAMERA SUBSYSTEM DRIVER
13934 M:      Todor Tomov <[email protected]>
13935 L:      [email protected]
13936 S:      Maintained
13937 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13938 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13939 F:      drivers/media/platform/qcom/camss/
13940
13941 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13942 M:      Ilia Lin <[email protected]>
13943 L:      [email protected]
13944 S:      Maintained
13945 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13946 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13947
13948 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
13949 M:      Niklas Cassel <[email protected]>
13950 L:      [email protected]
13951 L:      [email protected]
13952 S:      Maintained
13953 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
13954 F:      drivers/power/avs/qcom-cpr.c
13955
13956 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13957 M:      Timur Tabi <[email protected]>
13958 L:      [email protected]
13959 S:      Maintained
13960 F:      drivers/net/ethernet/qualcomm/emac/
13961
13962 QUALCOMM ETHQOS ETHERNET DRIVER
13963 M:      Vinod Koul <[email protected]>
13964 L:      [email protected]
13965 S:      Maintained
13966 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13967 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13968
13969 QUALCOMM GENERIC INTERFACE I2C DRIVER
13970 M:      Alok Chauhan <[email protected]>
13971 L:      [email protected]
13972 L:      [email protected]
13973 S:      Supported
13974 F:      drivers/i2c/busses/i2c-qcom-geni.c
13975
13976 QUALCOMM HEXAGON ARCHITECTURE
13977 M:      Brian Cain <[email protected]>
13978 L:      [email protected]
13979 S:      Supported
13980 F:      arch/hexagon/
13981
13982 QUALCOMM HIDMA DRIVER
13983 M:      Sinan Kaya <[email protected]>
13984 L:      [email protected]
13985 L:      [email protected]
13986 L:      [email protected]
13987 S:      Supported
13988 F:      drivers/dma/qcom/hidma*
13989
13990 QUALCOMM IOMMU
13991 M:      Rob Clark <[email protected]>
13992 L:      [email protected]
13993 L:      [email protected]
13994 S:      Maintained
13995 F:      drivers/iommu/qcom_iommu.c
13996
13997 QUALCOMM RMNET DRIVER
13998 M:      Subash Abhinov Kasiviswanathan <[email protected]>
13999 M:      Sean Tranchetti <[email protected]>
14000 L:      [email protected]
14001 S:      Maintained
14002 F:      drivers/net/ethernet/qualcomm/rmnet/
14003 F:      Documentation/networking/device_drivers/qualcomm/rmnet.txt
14004 F:      include/linux/if_rmnet.h
14005
14006 QUALCOMM TSENS THERMAL DRIVER
14007 M:      Amit Kucheria <[email protected]>
14008 L:      [email protected]
14009 L:      [email protected]
14010 S:      Maintained
14011 F:      drivers/thermal/qcom/
14012 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14013
14014 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14015 M:      Stanimir Varbanov <[email protected]>
14016 L:      [email protected]
14017 L:      [email protected]
14018 T:      git git://linuxtv.org/media_tree.git
14019 S:      Maintained
14020 F:      drivers/media/platform/qcom/venus/
14021 F:      Documentation/devicetree/bindings/media/*venus*
14022
14023 QUALCOMM WCN36XX WIRELESS DRIVER
14024 M:      Kalle Valo <[email protected]>
14025 L:      [email protected]
14026 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
14027 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14028 S:      Supported
14029 F:      drivers/net/wireless/ath/wcn36xx/
14030
14031 QUANTENNA QTNFMAC WIRELESS DRIVER
14032 M:      Igor Mitsyanko <[email protected]>
14033 M:      Avinash Patil <[email protected]>
14034 M:      Sergey Matyukevich <[email protected]>
14035 L:      [email protected]
14036 S:      Maintained
14037 F:      drivers/net/wireless/quantenna
14038
14039 RADEON and AMDGPU DRM DRIVERS
14040 M:      Alex Deucher <[email protected]>
14041 M:      Christian König <[email protected]>
14042 M:      David (ChunMing) Zhou <[email protected]>
14043 L:      [email protected]
14044 T:      git git://people.freedesktop.org/~agd5f/linux
14045 S:      Supported
14046 F:      drivers/gpu/drm/radeon/
14047 F:      include/uapi/drm/radeon_drm.h
14048 F:      drivers/gpu/drm/amd/
14049 F:      include/uapi/drm/amdgpu_drm.h
14050
14051 RADEON FRAMEBUFFER DISPLAY DRIVER
14052 M:      Benjamin Herrenschmidt <[email protected]>
14053 L:      [email protected]
14054 S:      Maintained
14055 F:      drivers/video/fbdev/aty/radeon*
14056 F:      include/uapi/linux/radeonfb.h
14057
14058 RADIOSHARK RADIO DRIVER
14059 M:      Hans Verkuil <[email protected]>
14060 L:      [email protected]
14061 T:      git git://linuxtv.org/media_tree.git
14062 S:      Maintained
14063 F:      drivers/media/radio/radio-shark.c
14064
14065 RADIOSHARK2 RADIO DRIVER
14066 M:      Hans Verkuil <[email protected]>
14067 L:      [email protected]
14068 T:      git git://linuxtv.org/media_tree.git
14069 S:      Maintained
14070 F:      drivers/media/radio/radio-shark2.c
14071 F:      drivers/media/radio/radio-tea5777.c
14072
14073 RADOS BLOCK DEVICE (RBD)
14074 M:      Ilya Dryomov <[email protected]>
14075 M:      Sage Weil <[email protected]>
14076 R:      Dongsheng Yang <[email protected]>
14077 L:      [email protected]
14078 W:      http://ceph.com/
14079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
14080 T:      git git://github.com/ceph/ceph-client.git
14081 S:      Supported
14082 F:      Documentation/ABI/testing/sysfs-bus-rbd
14083 F:      drivers/block/rbd.c
14084 F:      drivers/block/rbd_types.h
14085
14086 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14087 M:      Paul Mackerras <[email protected]>
14088 L:      [email protected]
14089 S:      Maintained
14090 F:      drivers/video/fbdev/aty/aty128fb.c
14091
14092 RAINSHADOW-CEC DRIVER
14093 M:      Hans Verkuil <[email protected]>
14094 L:      [email protected]
14095 T:      git git://linuxtv.org/media_tree.git
14096 S:      Maintained
14097 F:      drivers/media/usb/rainshadow-cec/*
14098
14099 RALINK MIPS ARCHITECTURE
14100 M:      John Crispin <[email protected]>
14101 L:      [email protected]
14102 S:      Maintained
14103 F:      arch/mips/ralink
14104
14105 RALINK RT2X00 WIRELESS LAN DRIVER
14106 M:      Stanislaw Gruszka <[email protected]>
14107 M:      Helmut Schaa <[email protected]>
14108 L:      [email protected]
14109 S:      Maintained
14110 F:      drivers/net/wireless/ralink/rt2x00/
14111
14112 RAMDISK RAM BLOCK DEVICE DRIVER
14113 M:      Jens Axboe <[email protected]>
14114 S:      Maintained
14115 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14116 F:      drivers/block/brd.c
14117
14118 RANCHU VIRTUAL BOARD FOR MIPS
14119 M:      Miodrag Dinic <[email protected]>
14120 L:      [email protected]
14121 S:      Supported
14122 F:      arch/mips/generic/board-ranchu.c
14123 F:      arch/mips/configs/generic/board-ranchu.config
14124
14125 RANDOM NUMBER DRIVER
14126 M:      "Theodore Ts'o" <[email protected]>
14127 S:      Maintained
14128 F:      drivers/char/random.c
14129
14130 RAPIDIO SUBSYSTEM
14131 M:      Matt Porter <[email protected]>
14132 M:      Alexandre Bounine <[email protected]>
14133 S:      Maintained
14134 F:      drivers/rapidio/
14135
14136 RAS INFRASTRUCTURE
14137 M:      Tony Luck <[email protected]>
14138 M:      Borislav Petkov <[email protected]>
14139 L:      [email protected]
14140 S:      Maintained
14141 F:      drivers/ras/
14142 F:      include/linux/ras.h
14143 F:      include/ras/ras_event.h
14144 F:      Documentation/admin-guide/ras.rst
14145
14146 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14147 L:      [email protected]
14148 S:      Orphan
14149 F:      drivers/net/wireless/ray*
14150
14151 RCUTORTURE TEST FRAMEWORK
14152 M:      "Paul E. McKenney" <[email protected]>
14153 M:      Josh Triplett <[email protected]>
14154 R:      Steven Rostedt <[email protected]>
14155 R:      Mathieu Desnoyers <[email protected]>
14156 R:      Lai Jiangshan <[email protected]>
14157 L:      [email protected]
14158 S:      Supported
14159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14160 F:      tools/testing/selftests/rcutorture
14161
14162 RDC R-321X SoC
14163 M:      Florian Fainelli <[email protected]>
14164 S:      Maintained
14165
14166 RDC R6040 FAST ETHERNET DRIVER
14167 M:      Florian Fainelli <[email protected]>
14168 L:      [email protected]
14169 S:      Maintained
14170 F:      drivers/net/ethernet/rdc/r6040.c
14171
14172 RDMAVT - RDMA verbs software
14173 M:      Dennis Dalessandro <[email protected]>
14174 M:      Mike Marciniszyn <[email protected]>
14175 L:      [email protected]
14176 S:      Supported
14177 F:      drivers/infiniband/sw/rdmavt
14178
14179 RDS - RELIABLE DATAGRAM SOCKETS
14180 M:      Santosh Shilimkar <[email protected]>
14181 L:      [email protected]
14182 L:      [email protected]
14183 L:      [email protected] (moderated for non-subscribers)
14184 W:      https://oss.oracle.com/projects/rds/
14185 S:      Supported
14186 F:      net/rds/
14187 F:      Documentation/networking/rds.txt
14188
14189 RDT - RESOURCE ALLOCATION
14190 M:      Fenghua Yu <[email protected]>
14191 M:      Reinette Chatre <[email protected]>
14192 L:      [email protected]
14193 S:      Supported
14194 F:      arch/x86/kernel/cpu/resctrl/
14195 F:      arch/x86/include/asm/resctrl_sched.h
14196 F:      Documentation/x86/resctrl*
14197 F:      tools/testing/selftests/resctrl/
14198
14199 READ-COPY UPDATE (RCU)
14200 M:      "Paul E. McKenney" <[email protected]>
14201 M:      Josh Triplett <[email protected]>
14202 R:      Steven Rostedt <[email protected]>
14203 R:      Mathieu Desnoyers <[email protected]>
14204 R:      Lai Jiangshan <[email protected]>
14205 R:      Joel Fernandes <[email protected]>
14206 L:      [email protected]
14207 W:      http://www.rdrop.com/users/paulmck/RCU/
14208 S:      Supported
14209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14210 F:      Documentation/RCU/
14211 X:      Documentation/RCU/torture.txt
14212 F:      include/linux/rcu*
14213 X:      include/linux/srcu*.h
14214 F:      kernel/rcu/
14215 X:      kernel/rcu/srcu*.c
14216
14217 REAL TIME CLOCK (RTC) SUBSYSTEM
14218 M:      Alessandro Zummo <[email protected]>
14219 M:      Alexandre Belloni <[email protected]>
14220 L:      [email protected]
14221 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14223 S:      Maintained
14224 F:      Documentation/devicetree/bindings/rtc/
14225 F:      Documentation/admin-guide/rtc.rst
14226 F:      drivers/rtc/
14227 F:      include/linux/rtc.h
14228 F:      include/uapi/linux/rtc.h
14229 F:      include/linux/rtc/
14230 F:      include/linux/platform_data/rtc-*
14231 F:      tools/testing/selftests/rtc/
14232
14233 REALTEK AUDIO CODECS
14234 M:      Oder Chiou <[email protected]>
14235 S:      Maintained
14236 F:      sound/soc/codecs/rt*
14237 F:      include/sound/rt*.h
14238
14239 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14240 M:      Linus Walleij <[email protected]>
14241 S:      Maintained
14242 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14243 F:      drivers/net/dsa/realtek-smi*
14244 F:      drivers/net/dsa/rtl83*
14245
14246 REDPINE WIRELESS DRIVER
14247 M:      Amitkumar Karwar <[email protected]>
14248 M:      Siva Rebbagondla <[email protected]>
14249 L:      [email protected]
14250 S:      Maintained
14251 F:      drivers/net/wireless/rsi/
14252
14253 REGISTER MAP ABSTRACTION
14254 M:      Mark Brown <[email protected]>
14255 L:      [email protected]
14256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14257 S:      Supported
14258 F:      Documentation/devicetree/bindings/regmap/
14259 F:      drivers/base/regmap/
14260 F:      include/linux/regmap.h
14261
14262 REISERFS FILE SYSTEM
14263 L:      [email protected]
14264 S:      Supported
14265 F:      fs/reiserfs/
14266
14267 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14268 M:      Ohad Ben-Cohen <[email protected]>
14269 M:      Bjorn Andersson <[email protected]>
14270 L:      [email protected]
14271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14272 S:      Maintained
14273 F:      Documentation/devicetree/bindings/remoteproc/
14274 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14275 F:      Documentation/remoteproc.txt
14276 F:      drivers/remoteproc/
14277 F:      include/linux/remoteproc.h
14278 F:      include/linux/remoteproc/
14279
14280 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14281 M:      Ohad Ben-Cohen <[email protected]>
14282 M:      Bjorn Andersson <[email protected]>
14283 L:      [email protected]
14284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14285 S:      Maintained
14286 F:      drivers/rpmsg/
14287 F:      Documentation/rpmsg.txt
14288 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14289 F:      include/linux/rpmsg.h
14290 F:      include/linux/rpmsg/
14291 F:      include/uapi/linux/rpmsg.h
14292 F:      samples/rpmsg/
14293
14294 RENESAS CLOCK DRIVERS
14295 M:      Geert Uytterhoeven <[email protected]>
14296 L:      [email protected]
14297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14298 S:      Supported
14299 F:      drivers/clk/renesas/
14300
14301 RENESAS EMEV2 I2C DRIVER
14302 M:      Wolfram Sang <[email protected]>
14303 S:      Supported
14304 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14305 F:      drivers/i2c/busses/i2c-emev2.c
14306
14307 RENESAS ETHERNET DRIVERS
14308 R:      Sergei Shtylyov <[email protected]>
14309 L:      [email protected]
14310 L:      [email protected]
14311 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14312 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14313 F:      drivers/net/ethernet/renesas/
14314 F:      include/linux/sh_eth.h
14315
14316 RENESAS R-CAR GYROADC DRIVER
14317 M:      Marek Vasut <[email protected]>
14318 L:      [email protected]
14319 S:      Supported
14320 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14321 F:      drivers/iio/adc/rcar-gyroadc.c
14322
14323 RENESAS R-CAR I2C DRIVERS
14324 M:      Wolfram Sang <[email protected]>
14325 S:      Supported
14326 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14327 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14328 F:      drivers/i2c/busses/i2c-rcar.c
14329 F:      drivers/i2c/busses/i2c-sh_mobile.c
14330
14331 RENESAS RIIC DRIVER
14332 M:      Chris Brandt <[email protected]>
14333 S:      Supported
14334 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14335 F:      drivers/i2c/busses/i2c-riic.c
14336
14337 RENESAS USB PHY DRIVER
14338 M:      Yoshihiro Shimoda <[email protected]>
14339 L:      [email protected]
14340 S:      Maintained
14341 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14342
14343 RESET CONTROLLER FRAMEWORK
14344 M:      Philipp Zabel <[email protected]>
14345 T:      git git://git.pengutronix.de/git/pza/linux
14346 S:      Maintained
14347 F:      drivers/reset/
14348 F:      Documentation/devicetree/bindings/reset/
14349 F:      include/dt-bindings/reset/
14350 F:      include/linux/reset.h
14351 F:      include/linux/reset/
14352 F:      include/linux/reset-controller.h
14353 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14354
14355 RESTARTABLE SEQUENCES SUPPORT
14356 M:      Mathieu Desnoyers <[email protected]>
14357 M:      Peter Zijlstra <[email protected]>
14358 M:      "Paul E. McKenney" <[email protected]>
14359 M:      Boqun Feng <[email protected]>
14360 L:      [email protected]
14361 S:      Supported
14362 F:      kernel/rseq.c
14363 F:      include/uapi/linux/rseq.h
14364 F:      include/trace/events/rseq.h
14365 F:      tools/testing/selftests/rseq/
14366
14367 RFKILL
14368 M:      Johannes Berg <[email protected]>
14369 L:      [email protected]
14370 W:      http://wireless.kernel.org/
14371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14373 S:      Maintained
14374 F:      Documentation/driver-api/rfkill.rst
14375 F:      Documentation/ABI/stable/sysfs-class-rfkill
14376 F:      net/rfkill/
14377 F:      include/linux/rfkill.h
14378 F:      include/uapi/linux/rfkill.h
14379
14380 RHASHTABLE
14381 M:      Thomas Graf <[email protected]>
14382 M:      Herbert Xu <[email protected]>
14383 L:      [email protected]
14384 S:      Maintained
14385 F:      lib/rhashtable.c
14386 F:      lib/test_rhashtable.c
14387 F:      include/linux/rhashtable.h
14388 F:      include/linux/rhashtable-types.h
14389
14390 RICOH R5C592 MEMORYSTICK DRIVER
14391 M:      Maxim Levitsky <[email protected]>
14392 S:      Maintained
14393 F:      drivers/memstick/host/r592.*
14394
14395 RICOH SMARTMEDIA/XD DRIVER
14396 M:      Maxim Levitsky <[email protected]>
14397 S:      Maintained
14398 F:      drivers/mtd/nand/raw/r852.c
14399 F:      drivers/mtd/nand/raw/r852.h
14400
14401 RISC-V ARCHITECTURE
14402 M:      Paul Walmsley <[email protected]>
14403 M:      Palmer Dabbelt <[email protected]>
14404 M:      Albert Ou <[email protected]>
14405 L:      [email protected]
14406 P:      Documentation/riscv/patch-acceptance.rst
14407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14408 S:      Supported
14409 F:      arch/riscv/
14410 K:      riscv
14411 N:      riscv
14412
14413 ROCCAT DRIVERS
14414 M:      Stefan Achatz <[email protected]>
14415 W:      http://sourceforge.net/projects/roccat/
14416 S:      Maintained
14417 F:      drivers/hid/hid-roccat*
14418 F:      include/linux/hid-roccat*
14419 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14420
14421 ROCKCHIP ISP V1 DRIVER
14422 M:      Helen Koike <[email protected]>
14423 L:      [email protected]
14424 S:      Maintained
14425 F:      drivers/staging/media/rkisp1/
14426
14427 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14428 M:      Jacob Chen <[email protected]>
14429 M:      Ezequiel Garcia <[email protected]>
14430 L:      [email protected]
14431 S:      Maintained
14432 F:      drivers/media/platform/rockchip/rga/
14433 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
14434
14435 HANTRO VPU CODEC DRIVER
14436 M:      Ezequiel Garcia <[email protected]>
14437 M:      Philipp Zabel <[email protected]>
14438 L:      [email protected]
14439 L:      [email protected]
14440 S:      Maintained
14441 F:      drivers/staging/media/hantro/
14442 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
14443 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
14444
14445 ROCKER DRIVER
14446 M:      Jiri Pirko <[email protected]>
14447 L:      [email protected]
14448 S:      Supported
14449 F:      drivers/net/ethernet/rocker/
14450
14451 ROCKETPORT DRIVER
14452 W:      http://www.comtrol.com
14453 S:      Maintained
14454 F:      Documentation/driver-api/serial/rocket.rst
14455 F:      drivers/tty/rocket*
14456
14457 ROCKETPORT EXPRESS/INFINITY DRIVER
14458 M:      Kevin Cernekee <[email protected]>
14459 L:      [email protected]
14460 S:      Odd Fixes
14461 F:      drivers/tty/serial/rp2.*
14462
14463 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14464 M:      Tomasz Duszynski <[email protected]>
14465 S:      Maintained
14466 F:      drivers/iio/light/bh1750.c
14467 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14468
14469 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14470 M:      Marek Vasut <[email protected]>
14471 L:      [email protected]
14472 L:      [email protected]
14473 S:      Supported
14474 F:      drivers/mfd/bd9571mwv.c
14475 F:      drivers/regulator/bd9571mwv-regulator.c
14476 F:      drivers/gpio/gpio-bd9571mwv.c
14477 F:      include/linux/mfd/bd9571mwv.h
14478 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14479
14480 ROSE NETWORK LAYER
14481 M:      Ralf Baechle <[email protected]>
14482 L:      [email protected]
14483 W:      http://www.linux-ax25.org/
14484 S:      Maintained
14485 F:      include/net/rose.h
14486 F:      include/uapi/linux/rose.h
14487 F:      net/rose/
14488
14489 ROTATION DRIVER FOR ALLWINNER A83T
14490 M:      Jernej Skrabec <[email protected]>
14491 L:      [email protected]
14492 T:      git git://linuxtv.org/media_tree.git
14493 S:      Maintained
14494 F:      drivers/media/platform/sunxi/sun8i-rotate/
14495 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14496
14497 RTL2830 MEDIA DRIVER
14498 M:      Antti Palosaari <[email protected]>
14499 L:      [email protected]
14500 W:      https://linuxtv.org
14501 W:      http://palosaari.fi/linux/
14502 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14503 T:      git git://linuxtv.org/anttip/media_tree.git
14504 S:      Maintained
14505 F:      drivers/media/dvb-frontends/rtl2830*
14506
14507 RTL2832 MEDIA DRIVER
14508 M:      Antti Palosaari <[email protected]>
14509 L:      [email protected]
14510 W:      https://linuxtv.org
14511 W:      http://palosaari.fi/linux/
14512 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14513 T:      git git://linuxtv.org/anttip/media_tree.git
14514 S:      Maintained
14515 F:      drivers/media/dvb-frontends/rtl2832*
14516
14517 RTL2832_SDR MEDIA DRIVER
14518 M:      Antti Palosaari <[email protected]>
14519 L:      [email protected]
14520 W:      https://linuxtv.org
14521 W:      http://palosaari.fi/linux/
14522 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14523 T:      git git://linuxtv.org/anttip/media_tree.git
14524 S:      Maintained
14525 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14526
14527 RTL8180 WIRELESS DRIVER
14528 L:      [email protected]
14529 W:      http://wireless.kernel.org/
14530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14531 S:      Orphan
14532 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14533
14534 RTL8187 WIRELESS DRIVER
14535 M:      Herton Ronaldo Krzesinski <[email protected]>
14536 M:      Hin-Tak Leung <[email protected]>
14537 M:      Larry Finger <[email protected]>
14538 L:      [email protected]
14539 W:      http://wireless.kernel.org/
14540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14541 S:      Maintained
14542 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14543
14544 REALTEK WIRELESS DRIVER (rtlwifi family)
14545 M:      Ping-Ke Shih <[email protected]>
14546 L:      [email protected]
14547 W:      http://wireless.kernel.org/
14548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14549 S:      Maintained
14550 F:      drivers/net/wireless/realtek/rtlwifi/
14551
14552 REALTEK WIRELESS DRIVER (rtw88)
14553 M:      Yan-Hsuan Chuang <[email protected]>
14554 L:      [email protected]
14555 S:      Maintained
14556 F:      drivers/net/wireless/realtek/rtw88/
14557
14558 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14559 M:      Jes Sorensen <[email protected]>
14560 L:      [email protected]
14561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14562 S:      Maintained
14563 F:      drivers/net/wireless/realtek/rtl8xxxu/
14564
14565 RXRPC SOCKETS (AF_RXRPC)
14566 M:      David Howells <[email protected]>
14567 L:      [email protected]
14568 S:      Supported
14569 F:      net/rxrpc/
14570 F:      include/keys/rxrpc-type.h
14571 F:      include/net/af_rxrpc.h
14572 F:      include/trace/events/rxrpc.h
14573 F:      include/uapi/linux/rxrpc.h
14574 F:      Documentation/networking/rxrpc.txt
14575 W:      https://www.infradead.org/~dhowells/kafs/
14576
14577 S3 SAVAGE FRAMEBUFFER DRIVER
14578 M:      Antonino Daplas <[email protected]>
14579 L:      [email protected]
14580 S:      Maintained
14581 F:      drivers/video/fbdev/savage/
14582
14583 S390
14584 M:      Heiko Carstens <[email protected]>
14585 M:      Vasily Gorbik <[email protected]>
14586 M:      Christian Borntraeger <[email protected]>
14587 L:      [email protected]
14588 W:      http://www.ibm.com/developerworks/linux/linux390/
14589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14590 S:      Supported
14591 F:      arch/s390/
14592 F:      drivers/s390/
14593 F:      Documentation/s390/
14594 F:      Documentation/driver-api/s390-drivers.rst
14595
14596 S390 COMMON I/O LAYER
14597 M:      Vineeth Vijayan <[email protected]>
14598 M:      Peter Oberparleiter <[email protected]>
14599 L:      [email protected]
14600 W:      http://www.ibm.com/developerworks/linux/linux390/
14601 S:      Supported
14602 F:      drivers/s390/cio/
14603
14604 S390 DASD DRIVER
14605 M:      Stefan Haberland <[email protected]>
14606 M:      Jan Hoeppner <[email protected]>
14607 L:      [email protected]
14608 W:      http://www.ibm.com/developerworks/linux/linux390/
14609 S:      Supported
14610 F:      drivers/s390/block/dasd*
14611 F:      block/partitions/ibm.c
14612
14613 S390 IOMMU (PCI)
14614 M:      Gerald Schaefer <[email protected]>
14615 L:      [email protected]
14616 W:      http://www.ibm.com/developerworks/linux/linux390/
14617 S:      Supported
14618 F:      drivers/iommu/s390-iommu.c
14619
14620 S390 IUCV NETWORK LAYER
14621 M:      Julian Wiedmann <[email protected]>
14622 M:      Ursula Braun <[email protected]>
14623 L:      [email protected]
14624 W:      http://www.ibm.com/developerworks/linux/linux390/
14625 S:      Supported
14626 F:      drivers/s390/net/*iucv*
14627 F:      include/net/iucv/
14628 F:      net/iucv/
14629
14630 S390 NETWORK DRIVERS
14631 M:      Julian Wiedmann <[email protected]>
14632 M:      Ursula Braun <[email protected]>
14633 L:      [email protected]
14634 W:      http://www.ibm.com/developerworks/linux/linux390/
14635 S:      Supported
14636 F:      drivers/s390/net/
14637
14638 S390 PCI SUBSYSTEM
14639 M:      Niklas Schnelle <[email protected]>
14640 M:      Gerald Schaefer <[email protected]>
14641 L:      [email protected]
14642 W:      http://www.ibm.com/developerworks/linux/linux390/
14643 S:      Supported
14644 F:      arch/s390/pci/
14645 F:      drivers/pci/hotplug/s390_pci_hpc.c
14646
14647 S390 VFIO-CCW DRIVER
14648 M:      Cornelia Huck <[email protected]>
14649 M:      Eric Farman <[email protected]>
14650 R:      Halil Pasic <[email protected]>
14651 L:      [email protected]
14652 L:      [email protected]
14653 S:      Supported
14654 F:      drivers/s390/cio/vfio_ccw*
14655 F:      Documentation/s390/vfio-ccw.rst
14656 F:      include/uapi/linux/vfio_ccw.h
14657
14658 S390 ZCRYPT DRIVER
14659 M:      Harald Freudenberger <[email protected]>
14660 L:      [email protected]
14661 W:      http://www.ibm.com/developerworks/linux/linux390/
14662 S:      Supported
14663 F:      drivers/s390/crypto/
14664
14665 S390 VFIO AP DRIVER
14666 M:      Tony Krowiak <[email protected]>
14667 M:      Pierre Morel <[email protected]>
14668 M:      Halil Pasic <[email protected]>
14669 L:      [email protected]
14670 W:      http://www.ibm.com/developerworks/linux/linux390/
14671 S:      Supported
14672 F:      drivers/s390/crypto/vfio_ap_drv.c
14673 F:      drivers/s390/crypto/vfio_ap_private.h
14674 F:      drivers/s390/crypto/vfio_ap_ops.c
14675 F:      Documentation/s390/vfio-ap.rst
14676
14677 S390 ZFCP DRIVER
14678 M:      Steffen Maier <[email protected]>
14679 M:      Benjamin Block <[email protected]>
14680 L:      [email protected]
14681 W:      http://www.ibm.com/developerworks/linux/linux390/
14682 S:      Supported
14683 F:      drivers/s390/scsi/zfcp_*
14684
14685 S3C24XX SD/MMC Driver
14686 M:      Ben Dooks <[email protected]>
14687 L:      [email protected] (moderated for non-subscribers)
14688 S:      Supported
14689 F:      drivers/mmc/host/s3cmci.*
14690
14691 SAA6588 RDS RECEIVER DRIVER
14692 M:      Hans Verkuil <[email protected]>
14693 L:      [email protected]
14694 T:      git git://linuxtv.org/media_tree.git
14695 W:      https://linuxtv.org
14696 S:      Odd Fixes
14697 F:      drivers/media/i2c/saa6588*
14698
14699 SAA7134 VIDEO4LINUX DRIVER
14700 M:      Mauro Carvalho Chehab <[email protected]>
14701 L:      [email protected]
14702 W:      https://linuxtv.org
14703 T:      git git://linuxtv.org/media_tree.git
14704 S:      Odd fixes
14705 F:      Documentation/media/v4l-drivers/saa7134*
14706 F:      drivers/media/pci/saa7134/
14707
14708 SAA7146 VIDEO4LINUX-2 DRIVER
14709 M:      Hans Verkuil <[email protected]>
14710 L:      [email protected]
14711 T:      git git://linuxtv.org/media_tree.git
14712 S:      Maintained
14713 F:      drivers/media/common/saa7146/
14714 F:      drivers/media/pci/saa7146/
14715 F:      include/media/drv-intf/saa7146*
14716
14717 SAFESETID SECURITY MODULE
14718 M:      Micah Morton <[email protected]>
14719 S:      Supported
14720 F:      security/safesetid/
14721 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14722
14723 SAMSUNG AUDIO (ASoC) DRIVERS
14724 M:      Krzysztof Kozlowski <[email protected]>
14725 M:      Sangbeom Kim <[email protected]>
14726 M:      Sylwester Nawrocki <[email protected]>
14727 L:      [email protected] (moderated for non-subscribers)
14728 S:      Supported
14729 F:      sound/soc/samsung/
14730 F:      Documentation/devicetree/bindings/sound/samsung*
14731
14732 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14733 M:      Krzysztof Kozlowski <[email protected]>
14734 L:      [email protected]
14735 L:      [email protected]
14736 S:      Maintained
14737 F:      drivers/crypto/exynos-rng.c
14738 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14739
14740 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14741 M:      Łukasz Stelmach <[email protected]>
14742 L:      [email protected]
14743 S:      Maintained
14744 F:      drivers/char/hw_random/exynos-trng.c
14745 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14746
14747 SAMSUNG FRAMEBUFFER DRIVER
14748 M:      Jingoo Han <[email protected]>
14749 L:      [email protected]
14750 S:      Maintained
14751 F:      drivers/video/fbdev/s3c-fb.c
14752
14753 SAMSUNG LAPTOP DRIVER
14754 M:      Corentin Chary <[email protected]>
14755 L:      [email protected]
14756 S:      Maintained
14757 F:      drivers/platform/x86/samsung-laptop.c
14758
14759 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14760 M:      Sangbeom Kim <[email protected]>
14761 M:      Krzysztof Kozlowski <[email protected]>
14762 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14763 L:      [email protected]
14764 L:      [email protected]
14765 S:      Supported
14766 F:      drivers/mfd/sec*.c
14767 F:      drivers/regulator/s2m*.c
14768 F:      drivers/regulator/s5m*.c
14769 F:      drivers/clk/clk-s2mps11.c
14770 F:      drivers/rtc/rtc-s5m.c
14771 F:      include/linux/mfd/samsung/
14772 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14773 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14774 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14775 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14776
14777 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14778 M:      Sylwester Nawrocki <[email protected]>
14779 L:      [email protected]
14780 L:      [email protected] (moderated for non-subscribers)
14781 S:      Maintained
14782 F:      drivers/media/platform/s3c-camif/
14783 F:      include/media/drv-intf/s3c_camif.h
14784
14785 SAMSUNG S3FWRN5 NFC DRIVER
14786 M:      Robert Baldyga <[email protected]>
14787 M:      Krzysztof Opasiak <[email protected]>
14788 L:      [email protected] (moderated for non-subscribers)
14789 S:      Supported
14790 F:      drivers/nfc/s3fwrn5
14791
14792 SAMSUNG S5C73M3 CAMERA DRIVER
14793 M:      Kyungmin Park <[email protected]>
14794 M:      Andrzej Hajda <[email protected]>
14795 L:      [email protected]
14796 S:      Supported
14797 F:      drivers/media/i2c/s5c73m3/*
14798
14799 SAMSUNG S5K5BAF CAMERA DRIVER
14800 M:      Kyungmin Park <[email protected]>
14801 M:      Andrzej Hajda <[email protected]>
14802 L:      [email protected]
14803 S:      Supported
14804 F:      drivers/media/i2c/s5k5baf.c
14805
14806 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14807 M:      Krzysztof Kozlowski <[email protected]>
14808 M:      Vladimir Zapolskiy <[email protected]>
14809 M:      Kamil Konieczny <[email protected]>
14810 L:      [email protected]
14811 L:      [email protected]
14812 S:      Maintained
14813 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
14814 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
14815 F:      drivers/crypto/s5p-sss.c
14816
14817 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14818 M:      Kyungmin Park <[email protected]>
14819 M:      Sylwester Nawrocki <[email protected]>
14820 L:      [email protected]
14821 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14822 S:      Supported
14823 F:      drivers/media/platform/exynos4-is/
14824
14825 SAMSUNG SOC CLOCK DRIVERS
14826 M:      Sylwester Nawrocki <[email protected]>
14827 M:      Tomasz Figa <[email protected]>
14828 M:      Chanwoo Choi <[email protected]>
14829 S:      Supported
14830 L:      [email protected] (moderated for non-subscribers)
14831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14832 F:      drivers/clk/samsung/
14833 F:      include/dt-bindings/clock/exynos*.h
14834 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14835 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14836 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14837
14838 SAMSUNG SPI DRIVERS
14839 M:      Kukjin Kim <[email protected]>
14840 M:      Krzysztof Kozlowski <[email protected]>
14841 M:      Andi Shyti <[email protected]>
14842 L:      [email protected]
14843 L:      [email protected] (moderated for non-subscribers)
14844 S:      Maintained
14845 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14846 F:      drivers/spi/spi-s3c*
14847 F:      include/linux/platform_data/spi-s3c64xx.h
14848
14849 SAMSUNG SXGBE DRIVERS
14850 M:      Byungho An <[email protected]>
14851 S:      Supported
14852 L:      [email protected]
14853 F:      drivers/net/ethernet/samsung/sxgbe/
14854
14855 SAMSUNG THERMAL DRIVER
14856 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14857 L:      [email protected]
14858 L:      [email protected]
14859 S:      Supported
14860 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14861 F:      drivers/thermal/samsung/
14862
14863 SAMSUNG USB2 PHY DRIVER
14864 M:      Kamil Debski <[email protected]>
14865 M:      Sylwester Nawrocki <[email protected]>
14866 L:      [email protected]
14867 S:      Supported
14868 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14869 F:      Documentation/driver-api/phy/samsung-usb2.rst
14870 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14871 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14872 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14873 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14874 F:      drivers/phy/samsung/phy-samsung-usb2.c
14875 F:      drivers/phy/samsung/phy-samsung-usb2.h
14876
14877 SC1200 WDT DRIVER
14878 M:      Zwane Mwaikambo <[email protected]>
14879 S:      Maintained
14880 F:      drivers/watchdog/sc1200wdt.c
14881
14882 SCHEDULER
14883 M:      Ingo Molnar <[email protected]>
14884 M:      Peter Zijlstra <[email protected]>
14885 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
14886 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
14887 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
14888 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
14889 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
14890 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
14891 L:      [email protected]
14892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14893 S:      Maintained
14894 F:      kernel/sched/
14895 F:      include/linux/sched.h
14896 F:      include/uapi/linux/sched.h
14897 F:      include/linux/wait.h
14898 F:      include/linux/preempt.h
14899
14900 SCR24X CHIP CARD INTERFACE DRIVER
14901 M:      Lubomir Rintel <[email protected]>
14902 S:      Supported
14903 F:      drivers/char/pcmcia/scr24x_cs.c
14904
14905 SCSI CDROM DRIVER
14906 M:      Jens Axboe <[email protected]>
14907 L:      [email protected]
14908 W:      http://www.kernel.dk
14909 S:      Maintained
14910 F:      drivers/scsi/sr*
14911
14912 SCSI RDMA PROTOCOL (SRP) INITIATOR
14913 M:      Bart Van Assche <[email protected]>
14914 L:      [email protected]
14915 S:      Supported
14916 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14917 F:      drivers/infiniband/ulp/srp/
14918 F:      include/scsi/srp.h
14919
14920 SCSI RDMA PROTOCOL (SRP) TARGET
14921 M:      Bart Van Assche <[email protected]>
14922 L:      [email protected]
14923 L:      [email protected]
14924 S:      Supported
14925 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14926 F:      drivers/infiniband/ulp/srpt/
14927
14928 SCSI SG DRIVER
14929 M:      Doug Gilbert <[email protected]>
14930 L:      [email protected]
14931 W:      http://sg.danny.cz/sg
14932 S:      Maintained
14933 F:      Documentation/scsi/scsi-generic.rst
14934 F:      drivers/scsi/sg.c
14935 F:      include/scsi/sg.h
14936
14937 SCSI SUBSYSTEM
14938 M:      "James E.J. Bottomley" <[email protected]>
14939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14940 M:      "Martin K. Petersen" <[email protected]>
14941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14942 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14943 L:      [email protected]
14944 S:      Maintained
14945 F:      Documentation/devicetree/bindings/scsi/
14946 F:      drivers/scsi/
14947 F:      include/scsi/
14948
14949 SCSI TAPE DRIVER
14950 M:      Kai Mäkisara <[email protected]>
14951 L:      [email protected]
14952 S:      Maintained
14953 F:      Documentation/scsi/st.rst
14954 F:      drivers/scsi/st.*
14955 F:      drivers/scsi/st_*.h
14956
14957 SCSI TARGET SUBSYSTEM
14958 M:      "Martin K. Petersen" <[email protected]>
14959 L:      [email protected]
14960 L:      [email protected]
14961 W:      http://www.linux-iscsi.org
14962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14963 Q:      https://patchwork.kernel.org/project/target-devel/list/
14964 S:      Supported
14965 F:      drivers/target/
14966 F:      include/target/
14967 F:      Documentation/target/
14968
14969 SCTP PROTOCOL
14970 M:      Vlad Yasevich <[email protected]>
14971 M:      Neil Horman <[email protected]>
14972 M:      Marcelo Ricardo Leitner <[email protected]>
14973 L:      [email protected]
14974 W:      http://lksctp.sourceforge.net
14975 S:      Maintained
14976 F:      Documentation/networking/sctp.txt
14977 F:      include/linux/sctp.h
14978 F:      include/uapi/linux/sctp.h
14979 F:      include/net/sctp/
14980 F:      net/sctp/
14981
14982 SCx200 CPU SUPPORT
14983 M:      Jim Cromie <[email protected]>
14984 S:      Odd Fixes
14985 F:      Documentation/i2c/busses/scx200_acb.rst
14986 F:      arch/x86/platform/scx200/
14987 F:      drivers/watchdog/scx200_wdt.c
14988 F:      drivers/i2c/busses/scx200*
14989 F:      drivers/mtd/maps/scx200_docflash.c
14990 F:      include/linux/scx200.h
14991
14992 SCx200 GPIO DRIVER
14993 M:      Jim Cromie <[email protected]>
14994 S:      Maintained
14995 F:      drivers/char/scx200_gpio.c
14996 F:      include/linux/scx200_gpio.h
14997
14998 SCx200 HRT CLOCKSOURCE DRIVER
14999 M:      Jim Cromie <[email protected]>
15000 S:      Maintained
15001 F:      drivers/clocksource/scx200_hrt.c
15002
15003 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15004 M:      Sascha Sommer <[email protected]>
15005 L:      [email protected] (subscribers-only)
15006 S:      Maintained
15007 F:      drivers/mmc/host/sdricoh_cs.c
15008
15009 SECO BOARDS CEC DRIVER
15010 M:      Ettore Chimenti <[email protected]>
15011 S:      Maintained
15012 F:      drivers/media/platform/seco-cec/seco-cec.c
15013 F:      drivers/media/platform/seco-cec/seco-cec.h
15014
15015 SECURE COMPUTING
15016 M:      Kees Cook <[email protected]>
15017 R:      Andy Lutomirski <[email protected]>
15018 R:      Will Drewry <[email protected]>
15019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15020 S:      Supported
15021 F:      kernel/seccomp.c
15022 F:      include/uapi/linux/seccomp.h
15023 F:      include/linux/seccomp.h
15024 F:      tools/testing/selftests/seccomp/*
15025 F:      tools/testing/selftests/kselftest_harness.h
15026 F:      Documentation/userspace-api/seccomp_filter.rst
15027 K:      \bsecure_computing
15028 K:      \bTIF_SECCOMP\b
15029
15030 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15031 M:      Al Cooper <[email protected]>
15032 L:      [email protected]
15033 L:      [email protected]
15034 S:      Maintained
15035 F:      drivers/mmc/host/sdhci-brcmstb*
15036
15037 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15038 M:      Adrian Hunter <[email protected]>
15039 L:      [email protected]
15040 S:      Maintained
15041 F:      drivers/mmc/host/sdhci*
15042 F:      include/linux/mmc/sdhci*
15043
15044 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
15045 M:      Adrian Hunter <[email protected]>
15046 M:      Ritesh Harjani <[email protected]>
15047 M:      Asutosh Das <[email protected]>
15048 L:      [email protected]
15049 S:      Maintained
15050 F:      drivers/mmc/host/cqhci*
15051
15052 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
15053 M:      Prabu Thangamuthu <[email protected]>
15054 M:      Manjunath M B <[email protected]>
15055 L:      [email protected]
15056 S:      Maintained
15057 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
15058
15059 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15060 M:      Ludovic Desroches <[email protected]>
15061 L:      [email protected]
15062 S:      Supported
15063 F:      drivers/mmc/host/sdhci-of-at91.c
15064
15065 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15066 M:      Ben Dooks <[email protected]>
15067 M:      Jaehoon Chung <[email protected]>
15068 L:      [email protected]
15069 S:      Maintained
15070 F:      drivers/mmc/host/sdhci-s3c*
15071
15072 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15073 M:      Viresh Kumar <[email protected]>
15074 L:      [email protected]
15075 S:      Maintained
15076 F:      drivers/mmc/host/sdhci-spear.c
15077
15078 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15079 M:      Kishon Vijay Abraham I <[email protected]>
15080 L:      [email protected]
15081 S:      Maintained
15082 F:      drivers/mmc/host/sdhci-omap.c
15083
15084 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15085 M:      Jonathan Derrick <[email protected]>
15086 M:      Revanth Rajashekar <[email protected]>
15087 L:      [email protected]
15088 S:      Supported
15089 F:      block/sed*
15090 F:      block/opal_proto.h
15091 F:      include/linux/sed*
15092 F:      include/uapi/linux/sed*
15093
15094 SECURITY CONTACT
15095 M:      Security Officers <[email protected]>
15096 S:      Supported
15097
15098 SECURITY SUBSYSTEM
15099 M:      James Morris <[email protected]>
15100 M:      "Serge E. Hallyn" <[email protected]>
15101 L:      [email protected] (suggested Cc:)
15102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15103 W:      http://kernsec.org/
15104 S:      Supported
15105 F:      security/
15106 X:      security/selinux/
15107
15108 SELINUX SECURITY MODULE
15109 M:      Paul Moore <[email protected]>
15110 M:      Stephen Smalley <[email protected]>
15111 M:      Eric Paris <[email protected]>
15112 L:      [email protected]
15113 W:      https://selinuxproject.org
15114 W:      https://github.com/SELinuxProject
15115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15116 S:      Supported
15117 F:      include/uapi/linux/selinux_netlink.h
15118 F:      security/selinux/
15119 F:      scripts/selinux/
15120 F:      Documentation/admin-guide/LSM/SELinux.rst
15121 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15122 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15123
15124 SENSABLE PHANTOM
15125 M:      Jiri Slaby <[email protected]>
15126 S:      Maintained
15127 F:      drivers/misc/phantom.c
15128 F:      include/uapi/linux/phantom.h
15129
15130 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15131 M:      Tomasz Duszynski <[email protected]>
15132 S:      Maintained
15133 F:      drivers/iio/chemical/sps30.c
15134 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15135
15136 SERIAL DEVICE BUS
15137 M:      Rob Herring <[email protected]>
15138 L:      [email protected]
15139 S:      Maintained
15140 F:      Documentation/devicetree/bindings/serial/serial.yaml
15141 F:      drivers/tty/serdev/
15142 F:      include/linux/serdev.h
15143
15144 SERIAL DRIVERS
15145 M:      Greg Kroah-Hartman <[email protected]>
15146 L:      [email protected]
15147 S:      Maintained
15148 F:      Documentation/devicetree/bindings/serial/
15149 F:      drivers/tty/serial/
15150
15151 SERIAL IR RECEIVER
15152 M:      Sean Young <[email protected]>
15153 L:      [email protected]
15154 S:      Maintained
15155 F:      drivers/media/rc/serial_ir.c
15156
15157 SFC NETWORK DRIVER
15158 M:      Solarflare linux maintainers <[email protected]>
15159 M:      Edward Cree <[email protected]>
15160 M:      Martin Habets <[email protected]>
15161 L:      [email protected]
15162 S:      Supported
15163 F:      drivers/net/ethernet/sfc/
15164
15165 SFF/SFP/SFP+ MODULE SUPPORT
15166 M:      Russell King <[email protected]>
15167 L:      [email protected]
15168 S:      Maintained
15169 F:      drivers/net/phy/phylink.c
15170 F:      drivers/net/phy/sfp*
15171 F:      include/linux/phylink.h
15172 F:      include/linux/sfp.h
15173 K:      phylink
15174
15175 SGI GRU DRIVER
15176 M:      Dimitri Sivanich <[email protected]>
15177 S:      Maintained
15178 F:      drivers/misc/sgi-gru/
15179
15180 SGI XP/XPC/XPNET DRIVER
15181 M:      Cliff Whickman <[email protected]>
15182 M:      Robin Holt <[email protected]>
15183 S:      Maintained
15184 F:      drivers/misc/sgi-xp/
15185
15186 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15187 M:      Ursula Braun <[email protected]>
15188 M:      Karsten Graul <[email protected]>
15189 L:      [email protected]
15190 W:      http://www.ibm.com/developerworks/linux/linux390/
15191 S:      Supported
15192 F:      net/smc/
15193
15194 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15195 M:      Linus Walleij <[email protected]>
15196 L:      [email protected]
15197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15198 S:      Maintained
15199 F:      drivers/iio/light/gp2ap002.c
15200 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15201
15202 SHARP RJ54N1CB0C SENSOR DRIVER
15203 M:      Jacopo Mondi <[email protected]>
15204 L:      [email protected]
15205 T:      git git://linuxtv.org/media_tree.git
15206 S:      Odd fixes
15207 F:      drivers/media/i2c/rj54n1cb0c.c
15208 F:      include/media/i2c/rj54n1cb0c.h
15209
15210 SH_VEU V4L2 MEM2MEM DRIVER
15211 L:      [email protected]
15212 S:      Orphan
15213 F:      drivers/media/platform/sh_veu.c
15214
15215 SH_VOU V4L2 OUTPUT DRIVER
15216 L:      [email protected]
15217 S:      Orphan
15218 F:      drivers/media/platform/sh_vou.c
15219 F:      include/media/drv-intf/sh_vou.h
15220
15221 SI2157 MEDIA DRIVER
15222 M:      Antti Palosaari <[email protected]>
15223 L:      [email protected]
15224 W:      https://linuxtv.org
15225 W:      http://palosaari.fi/linux/
15226 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15227 T:      git git://linuxtv.org/anttip/media_tree.git
15228 S:      Maintained
15229 F:      drivers/media/tuners/si2157*
15230
15231 SI2165 MEDIA DRIVER
15232 M:      Matthias Schwarzott <[email protected]>
15233 L:      [email protected]
15234 W:      https://linuxtv.org
15235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15236 S:      Maintained
15237 F:      drivers/media/dvb-frontends/si2165*
15238
15239 SI2168 MEDIA DRIVER
15240 M:      Antti Palosaari <[email protected]>
15241 L:      [email protected]
15242 W:      https://linuxtv.org
15243 W:      http://palosaari.fi/linux/
15244 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15245 T:      git git://linuxtv.org/anttip/media_tree.git
15246 S:      Maintained
15247 F:      drivers/media/dvb-frontends/si2168*
15248
15249 SI470X FM RADIO RECEIVER I2C DRIVER
15250 M:      Hans Verkuil <[email protected]>
15251 L:      [email protected]
15252 T:      git git://linuxtv.org/media_tree.git
15253 W:      https://linuxtv.org
15254 S:      Odd Fixes
15255 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15256
15257 SI470X FM RADIO RECEIVER USB DRIVER
15258 M:      Hans Verkuil <[email protected]>
15259 L:      [email protected]
15260 T:      git git://linuxtv.org/media_tree.git
15261 W:      https://linuxtv.org
15262 S:      Maintained
15263 F:      drivers/media/radio/si470x/radio-si470x-common.c
15264 F:      drivers/media/radio/si470x/radio-si470x.h
15265 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15266
15267 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15268 M:      Eduardo Valentin <[email protected]>
15269 L:      [email protected]
15270 T:      git git://linuxtv.org/media_tree.git
15271 W:      https://linuxtv.org
15272 S:      Odd Fixes
15273 F:      drivers/media/radio/si4713/si4713.?
15274
15275 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15276 M:      Eduardo Valentin <[email protected]>
15277 L:      [email protected]
15278 T:      git git://linuxtv.org/media_tree.git
15279 W:      https://linuxtv.org
15280 S:      Odd Fixes
15281 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15282
15283 SI4713 FM RADIO TRANSMITTER USB DRIVER
15284 M:      Hans Verkuil <[email protected]>
15285 L:      [email protected]
15286 T:      git git://linuxtv.org/media_tree.git
15287 W:      https://linuxtv.org
15288 S:      Maintained
15289 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15290
15291 SIANO DVB DRIVER
15292 M:      Mauro Carvalho Chehab <[email protected]>
15293 L:      [email protected]
15294 W:      https://linuxtv.org
15295 T:      git git://linuxtv.org/media_tree.git
15296 S:      Odd fixes
15297 F:      drivers/media/common/siano/
15298 F:      drivers/media/usb/siano/
15299 F:      drivers/media/usb/siano/
15300 F:      drivers/media/mmc/siano/
15301
15302 SIFIVE PDMA DRIVER
15303 M:      Green Wan <[email protected]>
15304 S:      Maintained
15305 F:      drivers/dma/sf-pdma/
15306 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15307
15308 SIFIVE DRIVERS
15309 M:      Palmer Dabbelt <[email protected]>
15310 M:      Paul Walmsley <[email protected]>
15311 L:      [email protected]
15312 T:      git git://github.com/sifive/riscv-linux.git
15313 S:      Supported
15314 K:      [^@]sifive
15315 N:      sifive
15316
15317 SIFIVE FU540 SYSTEM-ON-CHIP
15318 M:      Paul Walmsley <[email protected]>
15319 M:      Palmer Dabbelt <[email protected]>
15320 L:      [email protected]
15321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15322 S:      Supported
15323 K:      fu540
15324 N:      fu540
15325
15326 SILEAD TOUCHSCREEN DRIVER
15327 M:      Hans de Goede <[email protected]>
15328 L:      [email protected]
15329 L:      [email protected]
15330 S:      Maintained
15331 F:      drivers/input/touchscreen/silead.c
15332 F:      drivers/platform/x86/touchscreen_dmi.c
15333
15334 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15335 M:      Jérôme Pouiller <[email protected]>
15336 S:      Supported
15337 F:      drivers/staging/wfx/
15338
15339 SILICON MOTION SM712 FRAME BUFFER DRIVER
15340 M:      Sudip Mukherjee <[email protected]>
15341 M:      Teddy Wang <[email protected]>
15342 M:      Sudip Mukherjee <[email protected]>
15343 L:      [email protected]
15344 S:      Maintained
15345 F:      drivers/video/fbdev/sm712*
15346 F:      Documentation/fb/sm712fb.rst
15347
15348 SIMPLE FIRMWARE INTERFACE (SFI)
15349 W:      http://simplefirmware.org/
15350 S:      Obsolete
15351 F:      arch/x86/platform/sfi/
15352 F:      drivers/sfi/
15353 F:      include/linux/sfi*.h
15354
15355 SIMPLEFB FB DRIVER
15356 M:      Hans de Goede <[email protected]>
15357 L:      [email protected]
15358 S:      Maintained
15359 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15360 F:      drivers/video/fbdev/simplefb.c
15361 F:      include/linux/platform_data/simplefb.h
15362
15363 SIMTEC EB110ATX (Chalice CATS)
15364 M:      Vincent Sanders <[email protected]>
15365 M:      Simtec Linux Team <[email protected]>
15366 W:      http://www.simtec.co.uk/products/EB110ATX/
15367 S:      Supported
15368
15369 SIMTEC EB2410ITX (BAST)
15370 M:      Vincent Sanders <[email protected]>
15371 M:      Simtec Linux Team <[email protected]>
15372 W:      http://www.simtec.co.uk/products/EB2410ITX/
15373 S:      Supported
15374 F:      arch/arm/mach-s3c24xx/mach-bast.c
15375 F:      arch/arm/mach-s3c24xx/bast-ide.c
15376 F:      arch/arm/mach-s3c24xx/bast-irq.c
15377
15378 SIPHASH PRF ROUTINES
15379 M:      Jason A. Donenfeld <[email protected]>
15380 S:      Maintained
15381 F:      lib/siphash.c
15382 F:      lib/test_siphash.c
15383 F:      include/linux/siphash.h
15384
15385 SIOX
15386 M:      Thorsten Scherer <[email protected]>
15387 M:      Uwe Kleine-König <[email protected]>
15388 R:      Pengutronix Kernel Team <[email protected]>
15389 S:      Supported
15390 F:      drivers/siox/*
15391 F:      drivers/gpio/gpio-siox.c
15392 F:      include/trace/events/siox.h
15393
15394 SIS 190 ETHERNET DRIVER
15395 M:      Francois Romieu <[email protected]>
15396 L:      [email protected]
15397 S:      Maintained
15398 F:      drivers/net/ethernet/sis/sis190.c
15399
15400 SIS 900/7016 FAST ETHERNET DRIVER
15401 M:      Daniele Venzano <[email protected]>
15402 W:      http://www.brownhat.org/sis900.html
15403 L:      [email protected]
15404 S:      Maintained
15405 F:      drivers/net/ethernet/sis/sis900.*
15406
15407 SIS FRAMEBUFFER DRIVER
15408 M:      Thomas Winischhofer <[email protected]>
15409 W:      http://www.winischhofer.net/linuxsisvga.shtml
15410 S:      Maintained
15411 F:      Documentation/fb/sisfb.rst
15412 F:      drivers/video/fbdev/sis/
15413 F:      include/video/sisfb.h
15414
15415 SIS USB2VGA DRIVER
15416 M:      Thomas Winischhofer <[email protected]>
15417 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15418 S:      Maintained
15419 F:      drivers/usb/misc/sisusbvga/
15420
15421 SLAB ALLOCATOR
15422 M:      Christoph Lameter <[email protected]>
15423 M:      Pekka Enberg <[email protected]>
15424 M:      David Rientjes <[email protected]>
15425 M:      Joonsoo Kim <[email protected]>
15426 M:      Andrew Morton <[email protected]>
15427 L:      [email protected]
15428 S:      Maintained
15429 F:      include/linux/sl?b*.h
15430 F:      mm/sl?b*
15431
15432 SLEEPABLE READ-COPY UPDATE (SRCU)
15433 M:      Lai Jiangshan <[email protected]>
15434 M:      "Paul E. McKenney" <[email protected]>
15435 M:      Josh Triplett <[email protected]>
15436 R:      Steven Rostedt <[email protected]>
15437 R:      Mathieu Desnoyers <[email protected]>
15438 L:      [email protected]
15439 W:      http://www.rdrop.com/users/paulmck/RCU/
15440 S:      Supported
15441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15442 F:      include/linux/srcu*.h
15443 F:      kernel/rcu/srcu*.c
15444
15445 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15446 M:      Srinivas Kandagatla <[email protected]>
15447 L:      [email protected] (moderated for non-subscribers)
15448 S:      Maintained
15449 F:      drivers/slimbus/
15450 F:      Documentation/devicetree/bindings/slimbus/
15451 F:      include/linux/slimbus.h
15452
15453 SMACK SECURITY MODULE
15454 M:      Casey Schaufler <[email protected]>
15455 L:      [email protected]
15456 W:      http://schaufler-ca.com
15457 T:      git git://github.com/cschaufler/smack-next
15458 S:      Maintained
15459 F:      Documentation/admin-guide/LSM/Smack.rst
15460 F:      security/smack/
15461
15462 SMC91x ETHERNET DRIVER
15463 M:      Nicolas Pitre <[email protected]>
15464 S:      Odd Fixes
15465 F:      drivers/net/ethernet/smsc/smc91x.*
15466
15467 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15468 M:      Sakari Ailus <[email protected]>
15469 L:      [email protected]
15470 S:      Maintained
15471 F:      drivers/media/i2c/smiapp/
15472 F:      drivers/media/i2c/smiapp-pll.c
15473 F:      drivers/media/i2c/smiapp-pll.h
15474 F:      include/uapi/linux/smiapp.h
15475 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15476
15477 SMM665 HARDWARE MONITOR DRIVER
15478 M:      Guenter Roeck <[email protected]>
15479 L:      [email protected]
15480 S:      Maintained
15481 F:      Documentation/hwmon/smm665.rst
15482 F:      drivers/hwmon/smm665.c
15483
15484 SMSC EMC2103 HARDWARE MONITOR DRIVER
15485 M:      Steve Glendinning <[email protected]>
15486 L:      [email protected]
15487 S:      Maintained
15488 F:      Documentation/hwmon/emc2103.rst
15489 F:      drivers/hwmon/emc2103.c
15490
15491 SMSC SCH5627 HARDWARE MONITOR DRIVER
15492 M:      Hans de Goede <[email protected]>
15493 L:      [email protected]
15494 S:      Supported
15495 F:      Documentation/hwmon/sch5627.rst
15496 F:      drivers/hwmon/sch5627.c
15497
15498 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15499 M:      Steve Glendinning <[email protected]>
15500 L:      [email protected]
15501 S:      Maintained
15502 F:      drivers/video/fbdev/smscufx.c
15503
15504 SMSC47B397 HARDWARE MONITOR DRIVER
15505 M:      Jean Delvare <[email protected]>
15506 L:      [email protected]
15507 S:      Maintained
15508 F:      Documentation/hwmon/smsc47b397.rst
15509 F:      drivers/hwmon/smsc47b397.c
15510
15511 SMSC911x ETHERNET DRIVER
15512 M:      Steve Glendinning <[email protected]>
15513 L:      [email protected]
15514 S:      Maintained
15515 F:      include/linux/smsc911x.h
15516 F:      drivers/net/ethernet/smsc/smsc911x.*
15517
15518 SMSC9420 PCI ETHERNET DRIVER
15519 M:      Steve Glendinning <[email protected]>
15520 L:      [email protected]
15521 S:      Maintained
15522 F:      drivers/net/ethernet/smsc/smsc9420.*
15523
15524 SOC-CAMERA V4L2 SUBSYSTEM
15525 L:      [email protected]
15526 T:      git git://linuxtv.org/media_tree.git
15527 S:      Orphan
15528 F:      include/media/soc_camera.h
15529 F:      drivers/staging/media/soc_camera/
15530
15531 SOCIONEXT SYNQUACER I2C DRIVER
15532 M:      Ard Biesheuvel <[email protected]>
15533 L:      [email protected]
15534 S:      Maintained
15535 F:      drivers/i2c/busses/i2c-synquacer.c
15536 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15537
15538 SOCIONEXT UNIPHIER SOUND DRIVER
15539 L:      [email protected] (moderated for non-subscribers)
15540 S:      Orphan
15541 F:      sound/soc/uniphier/
15542
15543 SOEKRIS NET48XX LED SUPPORT
15544 M:      Chris Boot <[email protected]>
15545 S:      Maintained
15546 F:      drivers/leds/leds-net48xx.c
15547
15548 SOFT-IWARP DRIVER (siw)
15549 M:      Bernard Metzler <[email protected]>
15550 L:      [email protected]
15551 S:      Supported
15552 F:      drivers/infiniband/sw/siw/
15553 F:      include/uapi/rdma/siw-abi.h
15554
15555 SOFT-ROCE DRIVER (rxe)
15556 M:      Zhu Yanjun <[email protected]>
15557 L:      [email protected]
15558 S:      Supported
15559 F:      drivers/infiniband/sw/rxe/
15560 F:      include/uapi/rdma/rdma_user_rxe.h
15561
15562 SOFTLOGIC 6x10 MPEG CODEC
15563 M:      Bluecherry Maintainers <[email protected]>
15564 M:      Anton Sviridenko <[email protected]>
15565 M:      Andrey Utkin <[email protected]>
15566 M:      Andrey Utkin <[email protected]>
15567 M:      Ismael Luceno <[email protected]>
15568 L:      [email protected]
15569 S:      Supported
15570 F:      drivers/media/pci/solo6x10/
15571
15572 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15573 M:      James Morse <[email protected]>
15574 L:      [email protected]
15575 S:      Maintained
15576 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15577 F:      drivers/firmware/arm_sdei.c
15578 F:      include/linux/arm_sdei.h
15579 F:      include/uapi/linux/arm_sdei.h
15580
15581 SOFTWARE RAID (Multiple Disks) SUPPORT
15582 M:      Song Liu <[email protected]>
15583 L:      [email protected]
15584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15585 S:      Supported
15586 F:      drivers/md/Makefile
15587 F:      drivers/md/Kconfig
15588 F:      drivers/md/md*
15589 F:      drivers/md/raid*
15590 F:      include/linux/raid/
15591 F:      include/uapi/linux/raid/
15592
15593 SOCIONEXT (SNI) AVE NETWORK DRIVER
15594 M:      Kunihiko Hayashi <[email protected]>
15595 L:      [email protected]
15596 S:      Maintained
15597 F:      drivers/net/ethernet/socionext/sni_ave.c
15598 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15599
15600 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15601 M:      Jassi Brar <[email protected]>
15602 M:      Ilias Apalodimas <[email protected]>
15603 L:      [email protected]
15604 S:      Maintained
15605 F:      drivers/net/ethernet/socionext/netsec.c
15606 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15607
15608 SOCIONEXT (SNI) Synquacer SPI DRIVER
15609 M:      Masahisa Kojima <[email protected]>
15610 M:      Jassi Brar <[email protected]>
15611 L:      [email protected]
15612 S:      Maintained
15613 F:      drivers/spi/spi-synquacer.c
15614 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15615
15616 SOLIDRUN CLEARFOG SUPPORT
15617 M:      Russell King <[email protected]>
15618 S:      Maintained
15619 F:      arch/arm/boot/dts/armada-388-clearfog*
15620 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15621
15622 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15623 M:      Russell King <[email protected]>
15624 S:      Maintained
15625 F:      arch/arm/boot/dts/imx6*-cubox-i*
15626 F:      arch/arm/boot/dts/imx6*-hummingboard*
15627 F:      arch/arm/boot/dts/imx6*-sr-*
15628
15629 SONIC NETWORK DRIVER
15630 M:      Thomas Bogendoerfer <[email protected]>
15631 L:      [email protected]
15632 S:      Maintained
15633 F:      drivers/net/ethernet/natsemi/sonic.*
15634
15635 SONICS SILICON BACKPLANE DRIVER (SSB)
15636 M:      Michael Buesch <[email protected]>
15637 L:      [email protected]
15638 S:      Maintained
15639 F:      drivers/ssb/
15640 F:      include/linux/ssb/
15641
15642 SONY IMX214 SENSOR DRIVER
15643 M:      Ricardo Ribalda <[email protected]>
15644 L:      [email protected]
15645 T:      git git://linuxtv.org/media_tree.git
15646 S:      Maintained
15647 F:      drivers/media/i2c/imx214.c
15648 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15649
15650 SONY IMX219 SENSOR DRIVER
15651 M:      Dave Stevenson <[email protected]>
15652 L:      [email protected]
15653 T:      git git://linuxtv.org/media_tree.git
15654 S:      Maintained
15655 F:      drivers/media/i2c/imx219.c
15656 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15657
15658 SONY IMX258 SENSOR DRIVER
15659 M:      Sakari Ailus <[email protected]>
15660 L:      [email protected]
15661 T:      git git://linuxtv.org/media_tree.git
15662 S:      Maintained
15663 F:      drivers/media/i2c/imx258.c
15664
15665 SONY IMX274 SENSOR DRIVER
15666 M:      Leon Luo <[email protected]>
15667 L:      [email protected]
15668 T:      git git://linuxtv.org/media_tree.git
15669 S:      Maintained
15670 F:      drivers/media/i2c/imx274.c
15671 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15672
15673 SONY IMX290 SENSOR DRIVER
15674 M:      Manivannan Sadhasivam <[email protected]>
15675 L:      [email protected]
15676 T:      git git://linuxtv.org/media_tree.git
15677 S:      Maintained
15678 F:      drivers/media/i2c/imx290.c
15679 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15680
15681 SONY IMX319 SENSOR DRIVER
15682 M:      Bingbu Cao <[email protected]>
15683 L:      [email protected]
15684 T:      git git://linuxtv.org/media_tree.git
15685 S:      Maintained
15686 F:      drivers/media/i2c/imx319.c
15687
15688 SONY IMX355 SENSOR DRIVER
15689 M:      Tianshu Qiu <[email protected]>
15690 L:      [email protected]
15691 T:      git git://linuxtv.org/media_tree.git
15692 S:      Maintained
15693 F:      drivers/media/i2c/imx355.c
15694
15695 SONY MEMORYSTICK SUBSYSTEM
15696 M:      Maxim Levitsky <[email protected]>
15697 M:      Alex Dubov <[email protected]>
15698 M:      Ulf Hansson <[email protected]>
15699 L:      [email protected]
15700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15701 S:      Maintained
15702 F:      drivers/memstick/
15703 F:      include/linux/memstick.h
15704
15705 SONY VAIO CONTROL DEVICE DRIVER
15706 M:      Mattia Dongili <[email protected]>
15707 L:      [email protected]
15708 S:      Maintained
15709 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15710 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15711 F:      drivers/char/sonypi.c
15712 F:      drivers/platform/x86/sony-laptop.c
15713 F:      include/linux/sony-laptop.h
15714
15715 SOUND
15716 M:      Jaroslav Kysela <[email protected]>
15717 M:      Takashi Iwai <[email protected]>
15718 L:      [email protected] (moderated for non-subscribers)
15719 W:      http://www.alsa-project.org/
15720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15721 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15722 S:      Maintained
15723 F:      Documentation/sound/
15724 F:      include/sound/
15725 F:      include/uapi/sound/
15726 F:      sound/
15727
15728 SOUND - COMPRESSED AUDIO
15729 M:      Vinod Koul <[email protected]>
15730 L:      [email protected] (moderated for non-subscribers)
15731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15732 S:      Supported
15733 F:      Documentation/sound/designs/compress-offload.rst
15734 F:      include/sound/compress_driver.h
15735 F:      include/uapi/sound/compress_*
15736 F:      sound/core/compress_offload.c
15737 F:      sound/soc/soc-compress.c
15738
15739 SOUND - DMAENGINE HELPERS
15740 M:      Lars-Peter Clausen <[email protected]>
15741 S:      Supported
15742 F:      include/sound/dmaengine_pcm.h
15743 F:      sound/core/pcm_dmaengine.c
15744 F:      sound/soc/soc-generic-dmaengine-pcm.c
15745
15746 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15747 M:      Liam Girdwood <[email protected]>
15748 M:      Mark Brown <[email protected]>
15749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15750 L:      [email protected] (moderated for non-subscribers)
15751 W:      http://alsa-project.org/main/index.php/ASoC
15752 S:      Supported
15753 F:      Documentation/devicetree/bindings/sound/
15754 F:      Documentation/sound/soc/
15755 F:      sound/soc/
15756 F:      include/dt-bindings/sound/
15757 F:      include/sound/soc*
15758
15759 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
15760 M:      Pierre-Louis Bossart <[email protected]>
15761 M:      Liam Girdwood <[email protected]>
15762 M:      Ranjani Sridharan <[email protected]>
15763 M:      Kai Vehmanen <[email protected]>
15764 M:      Daniel Baluta <[email protected]>
15765 L:      [email protected] (moderated for non-subscribers)
15766 W:      https://github.com/thesofproject/linux/
15767 S:      Supported
15768 F:      sound/soc/sof/
15769
15770 SOUNDWIRE SUBSYSTEM
15771 M:      Vinod Koul <[email protected]>
15772 M:      Sanyog Kale <[email protected]>
15773 R:      Pierre-Louis Bossart <[email protected]>
15774 L:      [email protected] (moderated for non-subscribers)
15775 S:      Supported
15776 F:      Documentation/driver-api/soundwire/
15777 F:      drivers/soundwire/
15778 F:      include/linux/soundwire/
15779
15780 SP2 MEDIA DRIVER
15781 M:      Olli Salonen <[email protected]>
15782 L:      [email protected]
15783 W:      https://linuxtv.org
15784 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15785 S:      Maintained
15786 F:      drivers/media/dvb-frontends/sp2*
15787
15788 SPARC + UltraSPARC (sparc/sparc64)
15789 M:      "David S. Miller" <[email protected]>
15790 L:      [email protected]
15791 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15794 S:      Maintained
15795 F:      arch/sparc/
15796 F:      drivers/sbus/
15797
15798 SPARC SERIAL DRIVERS
15799 M:      "David S. Miller" <[email protected]>
15800 L:      [email protected]
15801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15803 S:      Maintained
15804 F:      include/linux/sunserialcore.h
15805 F:      drivers/tty/serial/suncore.c
15806 F:      drivers/tty/serial/sunhv.c
15807 F:      drivers/tty/serial/sunsab.c
15808 F:      drivers/tty/serial/sunsab.h
15809 F:      drivers/tty/serial/sunsu.c
15810 F:      drivers/tty/serial/sunzilog.c
15811 F:      drivers/tty/serial/sunzilog.h
15812 F:      drivers/tty/vcc.c
15813
15814 SPARSE CHECKER
15815 M:      "Luc Van Oostenryck" <[email protected]>
15816 L:      [email protected]
15817 W:      https://sparse.wiki.kernel.org/
15818 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15819 S:      Maintained
15820 F:      include/linux/compiler.h
15821
15822 SPEAR CLOCK FRAMEWORK SUPPORT
15823 M:      Viresh Kumar <[email protected]>
15824 L:      [email protected] (moderated for non-subscribers)
15825 W:      http://www.st.com/spear
15826 S:      Maintained
15827 F:      drivers/clk/spear/
15828
15829 SPEAR PLATFORM SUPPORT
15830 M:      Viresh Kumar <[email protected]>
15831 M:      Shiraz Hashim <[email protected]>
15832 L:      [email protected] (moderated for non-subscribers)
15833 W:      http://www.st.com/spear
15834 S:      Maintained
15835 F:      arch/arm/boot/dts/spear*
15836 F:      arch/arm/mach-spear/
15837
15838 SPI NOR SUBSYSTEM
15839 M:      Tudor Ambarus <[email protected]>
15840 L:      [email protected]
15841 W:      http://www.linux-mtd.infradead.org/
15842 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15844 C:      irc://irc.oftc.net/mtd
15845 S:      Maintained
15846 F:      drivers/mtd/spi-nor/
15847 F:      include/linux/mtd/spi-nor.h
15848
15849 SPI SUBSYSTEM
15850 M:      Mark Brown <[email protected]>
15851 L:      [email protected]
15852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15853 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15854 S:      Maintained
15855 F:      Documentation/devicetree/bindings/spi/
15856 F:      Documentation/spi/
15857 F:      drivers/spi/
15858 F:      include/linux/spi/
15859 F:      include/uapi/linux/spi/
15860 F:      tools/spi/
15861
15862 SPIDERNET NETWORK DRIVER for CELL
15863 M:      Ishizaki Kou <[email protected]>
15864 L:      [email protected]
15865 S:      Supported
15866 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15867 F:      drivers/net/ethernet/toshiba/spider_net*
15868
15869 SPMI SUBSYSTEM
15870 R:      Stephen Boyd <[email protected]>
15871 L:      [email protected]
15872 F:      Documentation/devicetree/bindings/spmi/
15873 F:      drivers/spmi/
15874 F:      include/dt-bindings/spmi/spmi.h
15875 F:      include/linux/spmi.h
15876 F:      include/trace/events/spmi.h
15877
15878 SPU FILE SYSTEM
15879 M:      Jeremy Kerr <[email protected]>
15880 L:      [email protected]
15881 W:      http://www.ibm.com/developerworks/power/cell/
15882 S:      Supported
15883 F:      Documentation/filesystems/spufs.txt
15884 F:      arch/powerpc/platforms/cell/spufs/
15885
15886 SQUASHFS FILE SYSTEM
15887 M:      Phillip Lougher <[email protected]>
15888 L:      [email protected] (subscribers-only)
15889 W:      http://squashfs.org.uk
15890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15891 S:      Maintained
15892 F:      Documentation/filesystems/squashfs.rst
15893 F:      fs/squashfs/
15894
15895 SRM (Alpha) environment access
15896 M:      Jan-Benedict Glaw <[email protected]>
15897 S:      Maintained
15898 F:      arch/alpha/kernel/srm_env.c
15899
15900 ST LSM6DSx IMU IIO DRIVER
15901 M:      Lorenzo Bianconi <[email protected]>
15902 L:      [email protected]
15903 W:      http://www.st.com/
15904 S:      Maintained
15905 F:      drivers/iio/imu/st_lsm6dsx/
15906 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15907
15908 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15909 M:      Mickael Guene <[email protected]>
15910 L:      [email protected]
15911 T:      git git://linuxtv.org/media_tree.git
15912 S:      Maintained
15913 F:      drivers/media/i2c/st-mipid02.c
15914 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15915
15916 ST STM32 I2C/SMBUS DRIVER
15917 M:      Pierre-Yves MORDRET <[email protected]>
15918 L:      [email protected]
15919 S:      Maintained
15920 F:      drivers/i2c/busses/i2c-stm32*
15921
15922 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15923 M:      Song Qiang <[email protected]>
15924 L:      [email protected]
15925 S:      Maintained
15926 F:      drivers/iio/proximity/vl53l0x-i2c.c
15927 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15928
15929 STABLE BRANCH
15930 M:      Greg Kroah-Hartman <[email protected]>
15931 M:      Sasha Levin <[email protected]>
15932 L:      [email protected]
15933 S:      Supported
15934 F:      Documentation/process/stable-kernel-rules.rst
15935
15936 STAGING - COMEDI
15937 M:      Ian Abbott <[email protected]>
15938 M:      H Hartley Sweeten <[email protected]>
15939 S:      Odd Fixes
15940 F:      drivers/staging/comedi/
15941
15942 STAGING - FIELDBUS SUBSYSTEM
15943 M:      Sven Van Asbroeck <[email protected]>
15944 S:      Maintained
15945 F:      drivers/staging/fieldbus/*
15946 F:      drivers/staging/fieldbus/Documentation/
15947
15948 STAGING - HMS ANYBUS-S BUS
15949 M:      Sven Van Asbroeck <[email protected]>
15950 S:      Maintained
15951 F:      drivers/staging/fieldbus/anybuss/
15952
15953 STAGING - INDUSTRIAL IO
15954 M:      Jonathan Cameron <[email protected]>
15955 L:      [email protected]
15956 S:      Odd Fixes
15957 F:      Documentation/devicetree/bindings/staging/iio/
15958 F:      drivers/staging/iio/
15959
15960 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15961 M:      Marc Dietrich <[email protected]>
15962 L:      [email protected] (moderated for non-subscribers)
15963 L:      [email protected]
15964 S:      Maintained
15965 F:      drivers/staging/nvec/
15966
15967 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15968 M:      Jens Frederich <[email protected]>
15969 M:      Daniel Drake <[email protected]>
15970 M:      Jon Nettleton <[email protected]>
15971 W:      http://wiki.laptop.org/go/DCON
15972 S:      Maintained
15973 F:      drivers/staging/olpc_dcon/
15974
15975 STAGING - REALTEK RTL8712U DRIVERS
15976 M:      Larry Finger <[email protected]>
15977 M:      Florian Schilhabel <[email protected]>.
15978 S:      Odd Fixes
15979 F:      drivers/staging/rtl8712/
15980
15981 STAGING - REALTEK RTL8188EU DRIVERS
15982 M:      Larry Finger <[email protected]>
15983 S:      Odd Fixes
15984 F:      drivers/staging/rtl8188eu/
15985
15986 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15987 M:      Sudip Mukherjee <[email protected]>
15988 M:      Teddy Wang <[email protected]>
15989 M:      Sudip Mukherjee <[email protected]>
15990 L:      [email protected]
15991 S:      Maintained
15992 F:      drivers/staging/sm750fb/
15993
15994 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
15995 M:      William Hubbs <[email protected]>
15996 M:      Chris Brannon <[email protected]>
15997 M:      Kirk Reiser <[email protected]>
15998 M:      Samuel Thibault <[email protected]>
15999 L:      [email protected]
16000 W:      http://www.linux-speakup.org/
16001 S:      Odd Fixes
16002 F:      drivers/staging/speakup/
16003
16004 STAGING - VIA VT665X DRIVERS
16005 M:      Forest Bond <[email protected]>
16006 S:      Odd Fixes
16007 F:      drivers/staging/vt665?/
16008
16009 STAGING - WILC1000 WIFI DRIVER
16010 M:      Adham Abozaeid <[email protected]>
16011 M:      Ajay Singh <[email protected]>
16012 L:      [email protected]
16013 S:      Supported
16014 F:      drivers/staging/wilc1000/
16015
16016 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16017 M:      Michael Hennerich <[email protected]>
16018 M:      Beniamin Bia <[email protected]>
16019 L:      [email protected]
16020 S:      Supported
16021 F:      drivers/staging/fbtft/fb_seps525.c
16022 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16023
16024 STAGING SUBSYSTEM
16025 M:      Greg Kroah-Hartman <[email protected]>
16026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16027 L:      [email protected]
16028 S:      Supported
16029 F:      drivers/staging/
16030
16031 STARFIRE/DURALAN NETWORK DRIVER
16032 M:      Ion Badulescu <[email protected]>
16033 S:      Odd Fixes
16034 F:      drivers/net/ethernet/adaptec/starfire*
16035
16036 STEC S1220 SKD DRIVER
16037 M:      Damien Le Moal <[email protected]>
16038 L:      [email protected]
16039 S:      Maintained
16040 F:      drivers/block/skd*[ch]
16041
16042 STI AUDIO (ASoC) DRIVERS
16043 M:      Arnaud Pouliquen <[email protected]>
16044 L:      [email protected] (moderated for non-subscribers)
16045 S:      Maintained
16046 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16047 F:      sound/soc/sti/
16048
16049 STI CEC DRIVER
16050 M:      Benjamin Gaignard <[email protected]>
16051 S:      Maintained
16052 F:      drivers/media/platform/sti/cec/
16053 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16054
16055 STK1160 USB VIDEO CAPTURE DRIVER
16056 M:      Ezequiel Garcia <[email protected]>
16057 L:      [email protected]
16058 T:      git git://linuxtv.org/media_tree.git
16059 S:      Maintained
16060 F:      drivers/media/usb/stk1160/
16061
16062 STM32 AUDIO (ASoC) DRIVERS
16063 M:      Olivier Moysan <[email protected]>
16064 M:      Arnaud Pouliquen <[email protected]>
16065 L:      [email protected] (moderated for non-subscribers)
16066 S:      Maintained
16067 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16068 F:      sound/soc/stm/
16069
16070 STM32 TIMER/LPTIMER DRIVERS
16071 M:      Fabrice Gasnier <[email protected]>
16072 S:      Maintained
16073 F:      drivers/*/stm32-*timer*
16074 F:      drivers/pwm/pwm-stm32*
16075 F:      include/linux/*/stm32-*tim*
16076 F:      Documentation/ABI/testing/*timer-stm32
16077 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16078
16079 STMMAC ETHERNET DRIVER
16080 M:      Giuseppe Cavallaro <[email protected]>
16081 M:      Alexandre Torgue <[email protected]>
16082 M:      Jose Abreu <[email protected]>
16083 L:      [email protected]
16084 W:      http://www.stlinux.com
16085 S:      Supported
16086 F:      Documentation/networking/device_drivers/stmicro/
16087 F:      drivers/net/ethernet/stmicro/stmmac/
16088
16089 EXTRA BOOT CONFIG
16090 M:      Masami Hiramatsu <[email protected]>
16091 S:      Maintained
16092 F:      lib/bootconfig.c
16093 F:      fs/proc/bootconfig.c
16094 F:      include/linux/bootconfig.h
16095 F:      tools/bootconfig/*
16096 F:      Documentation/admin-guide/bootconfig.rst
16097
16098 SUN3/3X
16099 M:      Sam Creasey <[email protected]>
16100 W:      http://sammy.net/sun3/
16101 S:      Maintained
16102 F:      arch/m68k/kernel/*sun3*
16103 F:      arch/m68k/sun3*/
16104 F:      arch/m68k/include/asm/sun3*
16105 F:      drivers/net/ethernet/i825xx/sun3*
16106
16107 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16108 M:      Hans de Goede <[email protected]>
16109 L:      [email protected]
16110 S:      Maintained
16111 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16112 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16113
16114 SUNDANCE NETWORK DRIVER
16115 M:      Denis Kirjanov <[email protected]>
16116 L:      [email protected]
16117 S:      Maintained
16118 F:      drivers/net/ethernet/dlink/sundance.c
16119
16120 SUPERH
16121 M:      Yoshinori Sato <[email protected]>
16122 M:      Rich Felker <[email protected]>
16123 L:      [email protected]
16124 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16125 S:      Maintained
16126 F:      Documentation/sh/
16127 F:      arch/sh/
16128 F:      drivers/sh/
16129
16130 SUSPEND TO RAM
16131 M:      "Rafael J. Wysocki" <[email protected]>
16132 M:      Len Brown <[email protected]>
16133 M:      Pavel Machek <[email protected]>
16134 L:      [email protected]
16135 B:      https://bugzilla.kernel.org
16136 S:      Supported
16137 F:      Documentation/power/
16138 F:      arch/x86/kernel/acpi/
16139 F:      drivers/base/power/
16140 F:      kernel/power/
16141 F:      include/linux/suspend.h
16142 F:      include/linux/freezer.h
16143 F:      include/linux/pm.h
16144
16145 SVGA HANDLING
16146 M:      Martin Mares <[email protected]>
16147 L:      [email protected]
16148 S:      Maintained
16149 F:      Documentation/admin-guide/svga.rst
16150 F:      arch/x86/boot/video*
16151
16152 SWIOTLB SUBSYSTEM
16153 M:      Konrad Rzeszutek Wilk <[email protected]>
16154 L:      [email protected]
16155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16156 S:      Supported
16157 F:      kernel/dma/swiotlb.c
16158 F:      arch/*/kernel/pci-swiotlb.c
16159 F:      include/linux/swiotlb.h
16160
16161 SWITCHDEV
16162 M:      Jiri Pirko <[email protected]>
16163 M:      Ivan Vecera <[email protected]>
16164 L:      [email protected]
16165 S:      Supported
16166 F:      net/switchdev/
16167 F:      include/net/switchdev.h
16168
16169 SY8106A REGULATOR DRIVER
16170 M:      Icenowy Zheng <[email protected]>
16171 S:      Maintained
16172 F:      drivers/regulator/sy8106a-regulator.c
16173 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16174
16175 SYNC FILE FRAMEWORK
16176 M:      Sumit Semwal <[email protected]>
16177 R:      Gustavo Padovan <[email protected]>
16178 S:      Maintained
16179 L:      [email protected]
16180 L:      [email protected]
16181 F:      drivers/dma-buf/sync_*
16182 F:      drivers/dma-buf/dma-fence*
16183 F:      drivers/dma-buf/sw_sync.c
16184 F:      include/linux/sync_file.h
16185 F:      include/uapi/linux/sync_file.h
16186 F:      Documentation/driver-api/sync_file.rst
16187 T:      git git://anongit.freedesktop.org/drm/drm-misc
16188
16189 SYNOPSYS ARC ARCHITECTURE
16190 M:      Vineet Gupta <[email protected]>
16191 L:      [email protected]
16192 S:      Supported
16193 F:      arch/arc/
16194 F:      Documentation/devicetree/bindings/arc/*
16195 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16196 F:      drivers/clocksource/arc_timer.c
16197 F:      drivers/tty/serial/arc_uart.c
16198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16199
16200 SYNOPSYS ARC HSDK SDP pll clock driver
16201 M:      Eugeniy Paltsev <[email protected]>
16202 S:      Supported
16203 F:      drivers/clk/clk-hsdk-pll.c
16204 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16205
16206 SYNOPSYS ARC SDP clock driver
16207 M:      Eugeniy Paltsev <[email protected]>
16208 S:      Supported
16209 F:      drivers/clk/axs10x/*
16210 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16211
16212 SYNOPSYS ARC SDP platform support
16213 M:      Alexey Brodkin <[email protected]>
16214 S:      Supported
16215 F:      arch/arc/plat-axs10x
16216 F:      arch/arc/boot/dts/ax*
16217 F:      Documentation/devicetree/bindings/arc/axs10*
16218
16219 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16220 M:      Eugeniy Paltsev <[email protected]>
16221 S:      Supported
16222 F:      drivers/reset/reset-axs10x.c
16223 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16224
16225 SYNOPSYS CREG GPIO DRIVER
16226 M:      Eugeniy Paltsev <[email protected]>
16227 S:      Maintained
16228 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16229 F:      drivers/gpio/gpio-creg-snps.c
16230
16231 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16232 R:      Andy Shevchenko <[email protected]>
16233 S:      Maintained
16234 F:      drivers/tty/serial/8250/8250_dw.c
16235 F:      drivers/tty/serial/8250/8250_dwlib.*
16236 F:      drivers/tty/serial/8250/8250_lpss.c
16237
16238 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16239 M:      Hoan Tran <[email protected]>
16240 L:      [email protected]
16241 S:      Maintained
16242 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
16243 F:      drivers/gpio/gpio-dwapb.c
16244
16245 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16246 M:      Eugeniy Paltsev <[email protected]>
16247 S:      Maintained
16248 F:      drivers/dma/dw-axi-dmac/
16249 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16250
16251 SYNOPSYS DESIGNWARE DMAC DRIVER
16252 M:      Viresh Kumar <[email protected]>
16253 R:      Andy Shevchenko <[email protected]>
16254 S:      Maintained
16255 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16256 F:      drivers/dma/dw/
16257 F:      include/dt-bindings/dma/dw-dmac.h
16258 F:      include/linux/dma/dw.h
16259 F:      include/linux/platform_data/dma-dw.h
16260
16261 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16262 M:      Jose Abreu <[email protected]>
16263 L:      [email protected]
16264 S:      Supported
16265 F:      drivers/net/ethernet/synopsys/
16266
16267 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16268 M:      Jose Abreu <[email protected]>
16269 L:      [email protected]
16270 S:      Supported
16271 F:      drivers/net/phy/mdio-xpcs.c
16272 F:      include/linux/mdio-xpcs.h
16273
16274 SYNOPSYS DESIGNWARE I2C DRIVER
16275 M:      Jarkko Nikula <[email protected]>
16276 R:      Andy Shevchenko <[email protected]>
16277 R:      Mika Westerberg <[email protected]>
16278 L:      [email protected]
16279 S:      Maintained
16280 F:      drivers/i2c/busses/i2c-designware-*
16281 F:      include/linux/platform_data/i2c-designware.h
16282
16283 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16284 M:      Jaehoon Chung <[email protected]>
16285 L:      [email protected]
16286 S:      Maintained
16287 F:      drivers/mmc/host/dw_mmc*
16288
16289 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16290 M:      Eugeniy Paltsev <[email protected]>
16291 S:      Supported
16292 F:      drivers/reset/reset-hsdk.c
16293 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16294 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16295
16296 SYSTEM CONFIGURATION (SYSCON)
16297 M:      Lee Jones <[email protected]>
16298 M:      Arnd Bergmann <[email protected]>
16299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16300 S:      Supported
16301 F:      drivers/mfd/syscon.c
16302
16303 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16304 M:      Sudeep Holla <[email protected]>
16305 L:      [email protected]
16306 S:      Maintained
16307 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16308 F:      drivers/clk/clk-sc[mp]i.c
16309 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16310 F:      drivers/firmware/arm_scpi.c
16311 F:      drivers/firmware/arm_scmi/
16312 F:      drivers/reset/reset-scmi.c
16313 F:      include/linux/sc[mp]i_protocol.h
16314 F:      include/trace/events/scmi.h
16315
16316 SYSTEM RESET/SHUTDOWN DRIVERS
16317 M:      Sebastian Reichel <[email protected]>
16318 L:      [email protected]
16319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16320 S:      Maintained
16321 F:      Documentation/devicetree/bindings/power/reset/
16322 F:      drivers/power/reset/
16323
16324 SYSTEM TRACE MODULE CLASS
16325 M:      Alexander Shishkin <[email protected]>
16326 S:      Maintained
16327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16328 F:      Documentation/trace/stm.rst
16329 F:      drivers/hwtracing/stm/
16330 F:      include/linux/stm.h
16331 F:      include/uapi/linux/stm.h
16332
16333 SYSTEM76 ACPI DRIVER
16334 M:      Jeremy Soller <[email protected]>
16335 M:      System76 Product Development <[email protected]>
16336 L:      [email protected]
16337 S:      Maintained
16338 F:      drivers/platform/x86/system76_acpi.c
16339
16340 SYSV FILESYSTEM
16341 M:      Christoph Hellwig <[email protected]>
16342 S:      Maintained
16343 F:      Documentation/filesystems/sysv-fs.rst
16344 F:      fs/sysv/
16345 F:      include/linux/sysv_fs.h
16346
16347 TASKSTATS STATISTICS INTERFACE
16348 M:      Balbir Singh <[email protected]>
16349 S:      Maintained
16350 F:      Documentation/accounting/taskstats*
16351 F:      include/linux/taskstats*
16352 F:      kernel/taskstats.c
16353
16354 TC subsystem
16355 M:      Jamal Hadi Salim <[email protected]>
16356 M:      Cong Wang <[email protected]>
16357 M:      Jiri Pirko <[email protected]>
16358 L:      [email protected]
16359 S:      Maintained
16360 F:      include/net/pkt_cls.h
16361 F:      include/net/pkt_sched.h
16362 F:      include/net/tc_act/
16363 F:      include/uapi/linux/pkt_cls.h
16364 F:      include/uapi/linux/pkt_sched.h
16365 F:      include/uapi/linux/tc_act/
16366 F:      include/uapi/linux/tc_ematch/
16367 F:      net/sched/
16368
16369 TC90522 MEDIA DRIVER
16370 M:      Akihiro Tsukada <[email protected]>
16371 L:      [email protected]
16372 S:      Odd Fixes
16373 F:      drivers/media/dvb-frontends/tc90522*
16374
16375 TCP LOW PRIORITY MODULE
16376 M:      "Wong Hoi Sing, Edison" <[email protected]>
16377 M:      "Hung Hing Lun, Mike" <[email protected]>
16378 W:      http://tcp-lp-mod.sourceforge.net/
16379 S:      Maintained
16380 F:      net/ipv4/tcp_lp.c
16381
16382 TDA10071 MEDIA DRIVER
16383 M:      Antti Palosaari <[email protected]>
16384 L:      [email protected]
16385 W:      https://linuxtv.org
16386 W:      http://palosaari.fi/linux/
16387 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16388 T:      git git://linuxtv.org/anttip/media_tree.git
16389 S:      Maintained
16390 F:      drivers/media/dvb-frontends/tda10071*
16391
16392 TDA18212 MEDIA DRIVER
16393 M:      Antti Palosaari <[email protected]>
16394 L:      [email protected]
16395 W:      https://linuxtv.org
16396 W:      http://palosaari.fi/linux/
16397 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16398 T:      git git://linuxtv.org/anttip/media_tree.git
16399 S:      Maintained
16400 F:      drivers/media/tuners/tda18212*
16401
16402 TDA18218 MEDIA DRIVER
16403 M:      Antti Palosaari <[email protected]>
16404 L:      [email protected]
16405 W:      https://linuxtv.org
16406 W:      http://palosaari.fi/linux/
16407 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16408 T:      git git://linuxtv.org/anttip/media_tree.git
16409 S:      Maintained
16410 F:      drivers/media/tuners/tda18218*
16411
16412 TDA18250 MEDIA DRIVER
16413 M:      Olli Salonen <[email protected]>
16414 L:      [email protected]
16415 W:      https://linuxtv.org
16416 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16417 T:      git git://linuxtv.org/media_tree.git
16418 S:      Maintained
16419 F:      drivers/media/tuners/tda18250*
16420
16421 TDA18271 MEDIA DRIVER
16422 M:      Michael Krufky <[email protected]>
16423 L:      [email protected]
16424 W:      https://linuxtv.org
16425 W:      http://github.com/mkrufky
16426 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16427 T:      git git://linuxtv.org/mkrufky/tuners.git
16428 S:      Maintained
16429 F:      drivers/media/tuners/tda18271*
16430
16431 TDA1997x MEDIA DRIVER
16432 M:      Tim Harvey <[email protected]>
16433 L:      [email protected]
16434 W:      https://linuxtv.org
16435 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16436 S:      Maintained
16437 F:      drivers/media/i2c/tda1997x.*
16438
16439 TDA827x MEDIA DRIVER
16440 M:      Michael Krufky <[email protected]>
16441 L:      [email protected]
16442 W:      https://linuxtv.org
16443 W:      http://github.com/mkrufky
16444 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16445 T:      git git://linuxtv.org/mkrufky/tuners.git
16446 S:      Maintained
16447 F:      drivers/media/tuners/tda8290.*
16448
16449 TDA8290 MEDIA DRIVER
16450 M:      Michael Krufky <[email protected]>
16451 L:      [email protected]
16452 W:      https://linuxtv.org
16453 W:      http://github.com/mkrufky
16454 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16455 T:      git git://linuxtv.org/mkrufky/tuners.git
16456 S:      Maintained
16457 F:      drivers/media/tuners/tda8290.*
16458
16459 TDA9840 MEDIA DRIVER
16460 M:      Hans Verkuil <[email protected]>
16461 L:      [email protected]
16462 T:      git git://linuxtv.org/media_tree.git
16463 W:      https://linuxtv.org
16464 S:      Maintained
16465 F:      drivers/media/i2c/tda9840*
16466
16467 TEA5761 TUNER DRIVER
16468 M:      Mauro Carvalho Chehab <[email protected]>
16469 L:      [email protected]
16470 W:      https://linuxtv.org
16471 T:      git git://linuxtv.org/media_tree.git
16472 S:      Odd fixes
16473 F:      drivers/media/tuners/tea5761.*
16474
16475 TEA5767 TUNER DRIVER
16476 M:      Mauro Carvalho Chehab <[email protected]>
16477 L:      [email protected]
16478 W:      https://linuxtv.org
16479 T:      git git://linuxtv.org/media_tree.git
16480 S:      Maintained
16481 F:      drivers/media/tuners/tea5767.*
16482
16483 TEA6415C MEDIA DRIVER
16484 M:      Hans Verkuil <[email protected]>
16485 L:      [email protected]
16486 T:      git git://linuxtv.org/media_tree.git
16487 W:      https://linuxtv.org
16488 S:      Maintained
16489 F:      drivers/media/i2c/tea6415c*
16490
16491 TEA6420 MEDIA DRIVER
16492 M:      Hans Verkuil <[email protected]>
16493 L:      [email protected]
16494 T:      git git://linuxtv.org/media_tree.git
16495 W:      https://linuxtv.org
16496 S:      Maintained
16497 F:      drivers/media/i2c/tea6420*
16498
16499 TEAM DRIVER
16500 M:      Jiri Pirko <[email protected]>
16501 L:      [email protected]
16502 S:      Supported
16503 F:      drivers/net/team/
16504 F:      include/linux/if_team.h
16505 F:      include/uapi/linux/if_team.h
16506
16507 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16508 M:      "Savoir-faire Linux Inc." <[email protected]>
16509 S:      Maintained
16510 F:      arch/x86/platform/ts5500/
16511
16512 TECHNOTREND USB IR RECEIVER
16513 M:      Sean Young <[email protected]>
16514 L:      [email protected]
16515 S:      Maintained
16516 F:      drivers/media/rc/ttusbir.c
16517
16518 TECHWELL TW9910 VIDEO DECODER
16519 L:      [email protected]
16520 S:      Orphan
16521 F:      drivers/media/i2c/tw9910.c
16522 F:      include/media/i2c/tw9910.h
16523
16524 TEE SUBSYSTEM
16525 M:      Jens Wiklander <[email protected]>
16526 L:      [email protected]
16527 S:      Maintained
16528 F:      include/linux/tee_drv.h
16529 F:      include/uapi/linux/tee.h
16530 F:      drivers/tee/
16531 F:      Documentation/tee.txt
16532
16533 TEGRA ARCHITECTURE SUPPORT
16534 M:      Thierry Reding <[email protected]>
16535 M:      Jonathan Hunter <[email protected]>
16536 L:      [email protected]
16537 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16539 S:      Supported
16540 N:      [^a-z]tegra
16541
16542 TEGRA CLOCK DRIVER
16543 M:      Peter De Schrijver <[email protected]>
16544 M:      Prashant Gaikwad <[email protected]>
16545 S:      Supported
16546 F:      drivers/clk/tegra/
16547
16548 TEGRA DMA DRIVERS
16549 M:      Laxman Dewangan <[email protected]>
16550 M:      Jon Hunter <[email protected]>
16551 S:      Supported
16552 F:      drivers/dma/tegra*
16553
16554 TEGRA I2C DRIVER
16555 M:      Laxman Dewangan <[email protected]>
16556 R:      Dmitry Osipenko <[email protected]>
16557 S:      Supported
16558 F:      drivers/i2c/busses/i2c-tegra.c
16559
16560 TEGRA IOMMU DRIVERS
16561 M:      Thierry Reding <[email protected]>
16562 L:      [email protected]
16563 S:      Supported
16564 F:      drivers/iommu/tegra*
16565
16566 TEGRA KBC DRIVER
16567 M:      Laxman Dewangan <[email protected]>
16568 S:      Supported
16569 F:      drivers/input/keyboard/tegra-kbc.c
16570
16571 TEGRA NAND DRIVER
16572 M:      Stefan Agner <[email protected]>
16573 M:      Lucas Stach <[email protected]>
16574 S:      Maintained
16575 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16576 F:      drivers/mtd/nand/raw/tegra_nand.c
16577
16578 TEGRA PWM DRIVER
16579 M:      Thierry Reding <[email protected]>
16580 S:      Supported
16581 F:      drivers/pwm/pwm-tegra.c
16582
16583 TEGRA SERIAL DRIVER
16584 M:      Laxman Dewangan <[email protected]>
16585 S:      Supported
16586 F:      drivers/tty/serial/serial-tegra.c
16587
16588 TEGRA SPI DRIVER
16589 M:      Laxman Dewangan <[email protected]>
16590 S:      Supported
16591 F:      drivers/spi/spi-tegra*
16592
16593 TEGRA XUSB PADCTL DRIVER
16594 M:      JC Kuo <[email protected]>
16595 S:      Supported
16596 F:      drivers/phy/tegra/xusb*
16597
16598 TEHUTI ETHERNET DRIVER
16599 M:      Andy Gospodarek <[email protected]>
16600 L:      [email protected]
16601 S:      Supported
16602 F:      drivers/net/ethernet/tehuti/*
16603
16604 Telecom Clock Driver for MCPL0010
16605 M:      Mark Gross <[email protected]>
16606 S:      Supported
16607 F:      drivers/char/tlclk.c
16608
16609 TENSILICA XTENSA PORT (xtensa)
16610 M:      Chris Zankel <[email protected]>
16611 M:      Max Filippov <[email protected]>
16612 L:      [email protected]
16613 T:      git git://github.com/czankel/xtensa-linux.git
16614 S:      Maintained
16615 F:      arch/xtensa/
16616 F:      drivers/irqchip/irq-xtensa-*
16617
16618 Texas Instruments' System Control Interface (TISCI) Protocol Driver
16619 M:      Nishanth Menon <[email protected]>
16620 M:      Tero Kristo <[email protected]>
16621 M:      Santosh Shilimkar <[email protected]>
16622 L:      [email protected]
16623 S:      Maintained
16624 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16625 F:      drivers/firmware/ti_sci*
16626 F:      include/linux/soc/ti/ti_sci_protocol.h
16627 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16628 F:      drivers/soc/ti/ti_sci_pm_domains.c
16629 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16630 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16631 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16632 F:      drivers/clk/keystone/sci-clk.c
16633 F:      drivers/reset/reset-ti-sci.c
16634 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16635 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16636 F:      drivers/irqchip/irq-ti-sci-intr.c
16637 F:      drivers/irqchip/irq-ti-sci-inta.c
16638 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16639 F:      drivers/soc/ti/ti_sci_inta_msi.c
16640
16641 Texas Instruments ASoC drivers
16642 M:      Peter Ujfalusi <[email protected]>
16643 L:      [email protected] (moderated for non-subscribers)
16644 S:      Maintained
16645 F:      sound/soc/ti/
16646
16647 Texas Instruments' DAC7612 DAC Driver
16648 M:      Ricardo Ribalda <[email protected]>
16649 L:      [email protected]
16650 S:      Supported
16651 F:      drivers/iio/dac/ti-dac7612.c
16652 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16653
16654 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16655 M:      Hans Verkuil <[email protected]>
16656 L:      [email protected]
16657 T:      git git://linuxtv.org/media_tree.git
16658 W:      https://linuxtv.org
16659 S:      Maintained
16660 F:      drivers/media/radio/radio-raremono.c
16661
16662 THERMAL
16663 M:      Zhang Rui <[email protected]>
16664 M:      Daniel Lezcano <[email protected]>
16665 R:      Amit Kucheria <[email protected]>
16666 L:      [email protected]
16667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16668 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16669 S:      Supported
16670 F:      drivers/thermal/
16671 F:      include/linux/thermal.h
16672 F:      include/uapi/linux/thermal.h
16673 F:      include/linux/cpu_cooling.h
16674 F:      Documentation/devicetree/bindings/thermal/
16675
16676 THERMAL/CPU_COOLING
16677 M:      Amit Daniel Kachhap <[email protected]>
16678 M:      Daniel Lezcano <[email protected]>
16679 M:      Viresh Kumar <[email protected]>
16680 M:      Javi Merino <[email protected]>
16681 L:      [email protected]
16682 S:      Supported
16683 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16684 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16685 F:      drivers/thermal/cpufreq_cooling.c
16686 F:      drivers/thermal/cpuidle_cooling.c
16687 F:      include/linux/cpu_cooling.h
16688
16689 THERMAL DRIVER FOR AMLOGIC SOCS
16690 M:      Guillaume La Roque <[email protected]>
16691 L:      [email protected]
16692 L:      [email protected]
16693 W:      http://linux-meson.com/
16694 S:      Supported
16695 F:      drivers/thermal/amlogic_thermal.c
16696 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16697
16698 THINKPAD ACPI EXTRAS DRIVER
16699 M:      Henrique de Moraes Holschuh <[email protected]>
16700 L:      [email protected]
16701 L:      [email protected]
16702 S:      Maintained
16703 W:      http://ibm-acpi.sourceforge.net
16704 W:      http://thinkwiki.org/wiki/Ibm-acpi
16705 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16706 F:      drivers/platform/x86/thinkpad_acpi.c
16707
16708 THUNDERBOLT DRIVER
16709 M:      Andreas Noever <[email protected]>
16710 M:      Michael Jamet <[email protected]>
16711 M:      Mika Westerberg <[email protected]>
16712 M:      Yehezkel Bernat <[email protected]>
16713 L:      [email protected]
16714 S:      Maintained
16715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16716 F:      Documentation/admin-guide/thunderbolt.rst
16717 F:      drivers/thunderbolt/
16718 F:      include/linux/thunderbolt.h
16719
16720 THUNDERBOLT NETWORK DRIVER
16721 M:      Michael Jamet <[email protected]>
16722 M:      Mika Westerberg <[email protected]>
16723 M:      Yehezkel Bernat <[email protected]>
16724 L:      [email protected]
16725 S:      Maintained
16726 F:      drivers/net/thunderbolt.c
16727
16728 THUNDERX GPIO DRIVER
16729 M:      Robert Richter <[email protected]>
16730 S:      Maintained
16731 F:      drivers/gpio/gpio-thunderx.c
16732
16733 TI AM437X VPFE DRIVER
16734 M:      "Lad, Prabhakar" <[email protected]>
16735 L:      [email protected]
16736 W:      https://linuxtv.org
16737 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16738 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16739 S:      Maintained
16740 F:      drivers/media/platform/am437x/
16741
16742 TI BANDGAP AND THERMAL DRIVER
16743 M:      Eduardo Valentin <[email protected]>
16744 M:      Keerthy <[email protected]>
16745 L:      [email protected]
16746 L:      [email protected]
16747 S:      Maintained
16748 F:      drivers/thermal/ti-soc-thermal/
16749
16750 TI BQ27XXX POWER SUPPLY DRIVER
16751 R:      Andrew F. Davis <[email protected]>
16752 F:      include/linux/power/bq27xxx_battery.h
16753 F:      drivers/power/supply/bq27xxx_battery.c
16754 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16755
16756 TI CDCE706 CLOCK DRIVER
16757 M:      Max Filippov <[email protected]>
16758 S:      Maintained
16759 F:      drivers/clk/clk-cdce706.c
16760
16761 TI CLOCK DRIVER
16762 M:      Tero Kristo <[email protected]>
16763 L:      [email protected]
16764 S:      Maintained
16765 F:      drivers/clk/ti/
16766 F:      include/linux/clk/ti.h
16767
16768 TI DAVINCI MACHINE SUPPORT
16769 M:      Sekhar Nori <[email protected]>
16770 R:      Bartosz Golaszewski <[email protected]>
16771 L:      [email protected] (moderated for non-subscribers)
16772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16773 S:      Supported
16774 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16775 F:      arch/arm/mach-davinci/
16776 F:      drivers/i2c/busses/i2c-davinci.c
16777 F:      arch/arm/boot/dts/da850*
16778
16779 TI DAVINCI SERIES CLOCK DRIVER
16780 M:      David Lechner <[email protected]>
16781 R:      Sekhar Nori <[email protected]>
16782 S:      Maintained
16783 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16784 F:      drivers/clk/davinci/
16785
16786 TI DAVINCI SERIES GPIO DRIVER
16787 M:      Keerthy <[email protected]>
16788 L:      [email protected]
16789 S:      Maintained
16790 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16791 F:      drivers/gpio/gpio-davinci.c
16792
16793 TI DAVINCI SERIES MEDIA DRIVER
16794 M:      "Lad, Prabhakar" <[email protected]>
16795 L:      [email protected]
16796 W:      https://linuxtv.org
16797 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16798 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16799 S:      Maintained
16800 F:      drivers/media/platform/davinci/
16801 F:      include/media/davinci/
16802
16803 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
16804 R:      David Lechner <[email protected]>
16805 L:      [email protected]
16806 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
16807 F:      drivers/counter/ti-eqep.c
16808
16809 TI ETHERNET SWITCH DRIVER (CPSW)
16810 R:      Grygorii Strashko <[email protected]>
16811 L:      [email protected]
16812 L:      [email protected]
16813 S:      Maintained
16814 F:      drivers/net/ethernet/ti/cpsw*
16815 F:      drivers/net/ethernet/ti/davinci*
16816
16817 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16818 M:      Alex Dubov <[email protected]>
16819 S:      Maintained
16820 W:      http://tifmxx.berlios.de/
16821 F:      drivers/memstick/host/tifm_ms.c
16822 F:      drivers/misc/tifm*
16823 F:      drivers/mmc/host/tifm_sd.c
16824 F:      include/linux/tifm.h
16825
16826 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16827 M:      Santosh Shilimkar <[email protected]>
16828 L:      [email protected]
16829 L:      [email protected] (moderated for non-subscribers)
16830 S:      Maintained
16831 F:      drivers/soc/ti/*
16832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16833
16834 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16835 M:      M R Swami Reddy <[email protected]>
16836 M:      Vishwas A Deshpande <[email protected]>
16837 L:      [email protected] (moderated for non-subscribers)
16838 S:      Maintained
16839 F:      sound/soc/codecs/lm49453*
16840 F:      sound/soc/codecs/isabelle*
16841
16842 TI LP855x BACKLIGHT DRIVER
16843 M:      Milo Kim <[email protected]>
16844 S:      Maintained
16845 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16846 F:      drivers/video/backlight/lp855x_bl.c
16847 F:      include/linux/platform_data/lp855x.h
16848
16849 TI LP8727 CHARGER DRIVER
16850 M:      Milo Kim <[email protected]>
16851 S:      Maintained
16852 F:      drivers/power/supply/lp8727_charger.c
16853 F:      include/linux/platform_data/lp8727.h
16854
16855 TI LP8788 MFD DRIVER
16856 M:      Milo Kim <[email protected]>
16857 S:      Maintained
16858 F:      drivers/iio/adc/lp8788_adc.c
16859 F:      drivers/leds/leds-lp8788.c
16860 F:      drivers/mfd/lp8788*.c
16861 F:      drivers/power/supply/lp8788-charger.c
16862 F:      drivers/regulator/lp8788-*.c
16863 F:      include/linux/mfd/lp8788*.h
16864
16865 TI NETCP ETHERNET DRIVER
16866 M:      Wingman Kwok <[email protected]>
16867 M:      Murali Karicheri <[email protected]>
16868 L:      [email protected]
16869 S:      Maintained
16870 F:      drivers/net/ethernet/ti/netcp*
16871
16872 TI PCM3060 ASoC CODEC DRIVER
16873 M:      Kirill Marinushkin <[email protected]>
16874 L:      [email protected] (moderated for non-subscribers)
16875 S:      Maintained
16876 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16877 F:      sound/soc/codecs/pcm3060*
16878
16879 TI TAS571X FAMILY ASoC CODEC DRIVER
16880 M:      Kevin Cernekee <[email protected]>
16881 L:      [email protected] (moderated for non-subscribers)
16882 S:      Odd Fixes
16883 F:      sound/soc/codecs/tas571x*
16884
16885 TI TCAN4X5X DEVICE DRIVER
16886 M:      Dan Murphy <[email protected]>
16887 L:      [email protected]
16888 S:      Maintained
16889 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
16890 F:      drivers/net/can/m_can/tcan4x5x.c
16891
16892 TI TRF7970A NFC DRIVER
16893 M:      Mark Greer <[email protected]>
16894 L:      [email protected]
16895 L:      [email protected] (moderated for non-subscribers)
16896 S:      Supported
16897 F:      drivers/nfc/trf7970a.c
16898 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16899
16900 TI TWL4030 SERIES SOC CODEC DRIVER
16901 M:      Peter Ujfalusi <[email protected]>
16902 L:      [email protected] (moderated for non-subscribers)
16903 S:      Maintained
16904 F:      sound/soc/codecs/twl4030*
16905
16906 TI VPE/CAL DRIVERS
16907 M:      Benoit Parrot <[email protected]>
16908 L:      [email protected]
16909 S:      Maintained
16910 W:      http://linuxtv.org/
16911 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16912 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
16913 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
16914 F:      drivers/media/platform/ti-vpe/
16915
16916 TI WILINK WIRELESS DRIVERS
16917 L:      [email protected]
16918 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16919 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16921 S:      Orphan
16922 F:      drivers/net/wireless/ti/
16923 F:      include/linux/wl12xx.h
16924
16925 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16926 M:      John Stultz <[email protected]>
16927 M:      Thomas Gleixner <[email protected]>
16928 R:      Stephen Boyd <[email protected]>
16929 L:      [email protected]
16930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16931 S:      Supported
16932 F:      include/linux/clocksource.h
16933 F:      include/linux/time.h
16934 F:      include/linux/timex.h
16935 F:      include/uapi/linux/time.h
16936 F:      include/uapi/linux/timex.h
16937 F:      kernel/time/clocksource.c
16938 F:      kernel/time/time*.c
16939 F:      kernel/time/alarmtimer.c
16940 F:      kernel/time/ntp.c
16941 F:      tools/testing/selftests/timers/
16942
16943 TIPC NETWORK LAYER
16944 M:      Jon Maloy <[email protected]>
16945 M:      Ying Xue <[email protected]>
16946 L:      [email protected] (core kernel code)
16947 L:      [email protected] (user apps, general discussion)
16948 W:      http://tipc.sourceforge.net/
16949 S:      Maintained
16950 F:      include/uapi/linux/tipc*.h
16951 F:      net/tipc/
16952
16953 TLAN NETWORK DRIVER
16954 M:      Samuel Chessman <[email protected]>
16955 L:      [email protected] (subscribers-only)
16956 W:      http://sourceforge.net/projects/tlan/
16957 S:      Maintained
16958 F:      Documentation/networking/device_drivers/ti/tlan.txt
16959 F:      drivers/net/ethernet/ti/tlan.*
16960
16961 TM6000 VIDEO4LINUX DRIVER
16962 M:      Mauro Carvalho Chehab <[email protected]>
16963 L:      [email protected]
16964 W:      https://linuxtv.org
16965 T:      git git://linuxtv.org/media_tree.git
16966 S:      Odd fixes
16967 F:      drivers/media/usb/tm6000/
16968 F:      Documentation/media/v4l-drivers/tm6000*
16969
16970 TMIO/SDHI MMC DRIVER
16971 M:      Wolfram Sang <[email protected]>
16972 L:      [email protected]
16973 S:      Supported
16974 F:      drivers/mmc/host/tmio_mmc*
16975 F:      drivers/mmc/host/renesas_sdhi*
16976 F:      include/linux/mfd/tmio.h
16977
16978 TMP401 HARDWARE MONITOR DRIVER
16979 M:      Guenter Roeck <[email protected]>
16980 L:      [email protected]
16981 S:      Maintained
16982 F:      Documentation/hwmon/tmp401.rst
16983 F:      drivers/hwmon/tmp401.c
16984
16985 TMP513 HARDWARE MONITOR DRIVER
16986 M:      Eric Tremblay <[email protected]>
16987 L:      [email protected]
16988 S:      Maintained
16989 F:      Documentation/hwmon/tmp513.rst
16990 F:      drivers/hwmon/tmp513.c
16991
16992 TMPFS (SHMEM FILESYSTEM)
16993 M:      Hugh Dickins <[email protected]>
16994 L:      [email protected]
16995 S:      Maintained
16996 F:      include/linux/shmem_fs.h
16997 F:      mm/shmem.c
16998
16999 TOMOYO SECURITY MODULE
17000 M:      Kentaro Takeda <[email protected]>
17001 M:      Tetsuo Handa <[email protected]>
17002 L:      [email protected] (subscribers-only, for developers in English)
17003 L:      [email protected] (subscribers-only, for users in English)
17004 L:      [email protected] (subscribers-only, for developers in Japanese)
17005 L:      [email protected] (subscribers-only, for users in Japanese)
17006 W:      https://tomoyo.osdn.jp/
17007 S:      Maintained
17008 F:      security/tomoyo/
17009
17010 TOPSTAR LAPTOP EXTRAS DRIVER
17011 M:      Herton Ronaldo Krzesinski <[email protected]>
17012 L:      [email protected]
17013 S:      Maintained
17014 F:      drivers/platform/x86/topstar-laptop.c
17015
17016 TORTURE-TEST MODULES
17017 M:      Davidlohr Bueso <[email protected]>
17018 M:      "Paul E. McKenney" <[email protected]>
17019 M:      Josh Triplett <[email protected]>
17020 L:      [email protected]
17021 S:      Supported
17022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17023 F:      Documentation/RCU/torture.txt
17024 F:      kernel/torture.c
17025 F:      kernel/rcu/rcutorture.c
17026 F:      kernel/rcu/rcuperf.c
17027 F:      kernel/locking/locktorture.c
17028
17029 TOSHIBA ACPI EXTRAS DRIVER
17030 M:      Azael Avalos <[email protected]>
17031 L:      [email protected]
17032 S:      Maintained
17033 F:      drivers/platform/x86/toshiba_acpi.c
17034
17035 TOSHIBA BLUETOOTH DRIVER
17036 M:      Azael Avalos <[email protected]>
17037 L:      [email protected]
17038 S:      Maintained
17039 F:      drivers/platform/x86/toshiba_bluetooth.c
17040
17041 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17042 M:      Azael Avalos <[email protected]>
17043 L:      [email protected]
17044 S:      Maintained
17045 F:      drivers/platform/x86/toshiba_haps.c
17046
17047 TOSHIBA SMM DRIVER
17048 M:      Jonathan Buzzard <[email protected]>
17049 W:      http://www.buzzard.org.uk/toshiba/
17050 S:      Maintained
17051 F:      drivers/char/toshiba.c
17052 F:      include/linux/toshiba.h
17053 F:      include/uapi/linux/toshiba.h
17054
17055 TOSHIBA TC358743 DRIVER
17056 M:      Mats Randgaard <[email protected]>
17057 L:      [email protected]
17058 S:      Maintained
17059 F:      drivers/media/i2c/tc358743*
17060 F:      include/media/i2c/tc358743.h
17061
17062 TOSHIBA WMI HOTKEYS DRIVER
17063 M:      Azael Avalos <[email protected]>
17064 L:      [email protected]
17065 S:      Maintained
17066 F:      drivers/platform/x86/toshiba-wmi.c
17067
17068 TPM DEVICE DRIVER
17069 M:      Peter Huewe <[email protected]>
17070 M:      Jarkko Sakkinen <[email protected]>
17071 R:      Jason Gunthorpe <[email protected]>
17072 L:      [email protected]
17073 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17074 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17075 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17076 S:      Maintained
17077 F:      drivers/char/tpm/
17078
17079 TRACING
17080 M:      Steven Rostedt <[email protected]>
17081 M:      Ingo Molnar <[email protected]>
17082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17083 S:      Maintained
17084 F:      Documentation/trace/ftrace.rst
17085 F:      arch/*/*/*/ftrace.h
17086 F:      arch/*/kernel/ftrace.c
17087 F:      include/*/ftrace.h
17088 F:      include/linux/trace*.h
17089 F:      include/trace/
17090 F:      kernel/trace/
17091 F:      tools/testing/selftests/ftrace/
17092
17093 TRACING MMIO ACCESSES (MMIOTRACE)
17094 M:      Steven Rostedt <[email protected]>
17095 M:      Ingo Molnar <[email protected]>
17096 R:      Karol Herbst <[email protected]>
17097 R:      Pekka Paalanen <[email protected]>
17098 S:      Maintained
17099 L:      [email protected]
17100 L:      [email protected]
17101 F:      kernel/trace/trace_mmiotrace.c
17102 F:      include/linux/mmiotrace.h
17103 F:      arch/x86/mm/kmmio.c
17104 F:      arch/x86/mm/mmio-mod.c
17105 F:      arch/x86/mm/testmmiotrace.c
17106
17107 TRIVIAL PATCHES
17108 M:      Jiri Kosina <[email protected]>
17109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17110 S:      Maintained
17111 K:      ^Subject:.*(?i)trivial
17112
17113 TEMPO SEMICONDUCTOR DRIVERS
17114 M:      Steven Eckhoff <[email protected]>
17115 S:      Maintained
17116 F:      sound/soc/codecs/tscs*.c
17117 F:      sound/soc/codecs/tscs*.h
17118 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17119
17120 TTY LAYER
17121 M:      Greg Kroah-Hartman <[email protected]>
17122 M:      Jiri Slaby <[email protected]>
17123 S:      Supported
17124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17125 F:      Documentation/driver-api/serial/
17126 F:      drivers/tty/
17127 F:      drivers/tty/serial/serial_core.c
17128 F:      include/linux/serial_core.h
17129 F:      include/linux/serial.h
17130 F:      include/linux/tty.h
17131 F:      include/uapi/linux/serial_core.h
17132 F:      include/uapi/linux/serial.h
17133 F:      include/uapi/linux/tty.h
17134
17135 TUA9001 MEDIA DRIVER
17136 M:      Antti Palosaari <[email protected]>
17137 L:      [email protected]
17138 W:      https://linuxtv.org
17139 W:      http://palosaari.fi/linux/
17140 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17141 T:      git git://linuxtv.org/anttip/media_tree.git
17142 S:      Maintained
17143 F:      drivers/media/tuners/tua9001*
17144
17145 TULIP NETWORK DRIVERS
17146 L:      [email protected]
17147 L:      [email protected]
17148 S:      Orphan
17149 F:      drivers/net/ethernet/dec/tulip/
17150
17151 TUN/TAP driver
17152 M:      Maxim Krasnyansky <[email protected]>
17153 W:      http://vtun.sourceforge.net/tun
17154 S:      Maintained
17155 F:      Documentation/networking/tuntap.txt
17156 F:      arch/um/os-Linux/drivers/
17157
17158 TURBOCHANNEL SUBSYSTEM
17159 M:      "Maciej W. Rozycki" <[email protected]>
17160 M:      Ralf Baechle <[email protected]>
17161 L:      [email protected]
17162 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17163 S:      Maintained
17164 F:      drivers/tc/
17165 F:      include/linux/tc.h
17166
17167 TURBOSTAT UTILITY
17168 M:      "Len Brown" <[email protected]>
17169 L:      [email protected]
17170 B:      https://bugzilla.kernel.org
17171 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17173 S:      Supported
17174 F:      tools/power/x86/turbostat/
17175
17176 TW5864 VIDEO4LINUX DRIVER
17177 M:      Bluecherry Maintainers <[email protected]>
17178 M:      Anton Sviridenko <[email protected]>
17179 M:      Andrey Utkin <[email protected]>
17180 M:      Andrey Utkin <[email protected]>
17181 L:      [email protected]
17182 S:      Supported
17183 F:      drivers/media/pci/tw5864/
17184
17185 TW68 VIDEO4LINUX DRIVER
17186 M:      Hans Verkuil <[email protected]>
17187 L:      [email protected]
17188 T:      git git://linuxtv.org/media_tree.git
17189 W:      https://linuxtv.org
17190 S:      Odd Fixes
17191 F:      drivers/media/pci/tw68/
17192
17193 TW686X VIDEO4LINUX DRIVER
17194 M:      Ezequiel Garcia <[email protected]>
17195 L:      [email protected]
17196 T:      git git://linuxtv.org/media_tree.git
17197 W:      http://linuxtv.org
17198 S:      Maintained
17199 F:      drivers/media/pci/tw686x/
17200
17201 UACCE ACCELERATOR FRAMEWORK
17202 M:      Zhangfei Gao <[email protected]>
17203 M:      Zhou Wang <[email protected]>
17204 L:      [email protected]
17205 L:      [email protected]
17206 S:      Maintained
17207 F:      Documentation/ABI/testing/sysfs-driver-uacce
17208 F:      Documentation/misc-devices/uacce.rst
17209 F:      drivers/misc/uacce/
17210 F:      include/linux/uacce.h
17211 F:      include/uapi/misc/uacce/
17212
17213 UBI FILE SYSTEM (UBIFS)
17214 M:      Richard Weinberger <[email protected]>
17215 L:      [email protected]
17216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17218 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17219 S:      Supported
17220 F:      Documentation/filesystems/ubifs.rst
17221 F:      fs/ubifs/
17222
17223 UCLINUX (M68KNOMMU AND COLDFIRE)
17224 M:      Greg Ungerer <[email protected]>
17225 W:      http://www.linux-m68k.org/
17226 W:      http://www.uclinux.org/
17227 L:      [email protected]
17228 L:      [email protected]  (subscribers-only)
17229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17230 S:      Maintained
17231 F:      arch/m68k/coldfire/
17232 F:      arch/m68k/68*/
17233 F:      arch/m68k/*/*_no.*
17234 F:      arch/m68k/include/asm/*_no.*
17235
17236 UDF FILESYSTEM
17237 M:      Jan Kara <[email protected]>
17238 S:      Maintained
17239 F:      Documentation/filesystems/udf.rst
17240 F:      fs/udf/
17241
17242 UDRAW TABLET
17243 M:      Bastien Nocera <[email protected]>
17244 L:      [email protected]
17245 S:      Maintained
17246 F:      drivers/hid/hid-udraw-ps3.c
17247
17248 UFS FILESYSTEM
17249 M:      Evgeniy Dushistov <[email protected]>
17250 S:      Maintained
17251 F:      Documentation/admin-guide/ufs.rst
17252 F:      fs/ufs/
17253
17254 UHID USERSPACE HID IO DRIVER
17255 M:      David Herrmann <[email protected]>
17256 L:      [email protected]
17257 S:      Maintained
17258 F:      drivers/hid/uhid.c
17259 F:      include/uapi/linux/uhid.h
17260
17261 ULPI BUS
17262 M:      Heikki Krogerus <[email protected]>
17263 L:      [email protected]
17264 S:      Maintained
17265 F:      drivers/usb/common/ulpi.c
17266 F:      include/linux/ulpi/
17267
17268 UNICODE SUBSYSTEM
17269 M:      Gabriel Krisman Bertazi <[email protected]>
17270 L:      [email protected]
17271 S:      Supported
17272 F:      fs/unicode/
17273
17274 UNICORE32 ARCHITECTURE
17275 M:      Guan Xuetao <[email protected]>
17276 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17277 S:      Maintained
17278 T:      git git://github.com/gxt/linux.git
17279 F:      arch/unicore32/
17280
17281 UNIFDEF
17282 M:      Tony Finch <[email protected]>
17283 W:      http://dotat.at/prog/unifdef
17284 S:      Maintained
17285 F:      scripts/unifdef.c
17286
17287 UNIFORM CDROM DRIVER
17288 M:      Jens Axboe <[email protected]>
17289 W:      http://www.kernel.dk
17290 S:      Maintained
17291 F:      Documentation/cdrom/
17292 F:      drivers/cdrom/cdrom.c
17293 F:      include/linux/cdrom.h
17294 F:      include/uapi/linux/cdrom.h
17295
17296 UNISYS S-PAR DRIVERS
17297 M:      David Kershner <[email protected]>
17298 L:      [email protected] (Unisys internal)
17299 S:      Supported
17300 F:      include/linux/visorbus.h
17301 F:      drivers/visorbus/
17302 F:      drivers/staging/unisys/
17303
17304 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17305 R:      Alim Akhtar <[email protected]>
17306 R:      Avri Altman <[email protected]>
17307 L:      [email protected]
17308 S:      Supported
17309 F:      Documentation/scsi/ufs.rst
17310 F:      drivers/scsi/ufs/
17311
17312 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17313 M:      Pedro Sousa <[email protected]>
17314 L:      [email protected]
17315 S:      Supported
17316 F:      drivers/scsi/ufs/*dwc*
17317
17318 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17319 M:      Stanley Chu <[email protected]>
17320 L:      [email protected]
17321 L:      [email protected] (moderated for non-subscribers)
17322 S:      Maintained
17323 F:      drivers/scsi/ufs/ufs-mediatek*
17324
17325 UNSORTED BLOCK IMAGES (UBI)
17326 M:      Richard Weinberger <[email protected]>
17327 W:      http://www.linux-mtd.infradead.org/
17328 L:      [email protected]
17329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17331 S:      Supported
17332 F:      drivers/mtd/ubi/
17333 F:      include/linux/mtd/ubi.h
17334 F:      include/uapi/mtd/ubi-user.h
17335
17336 USB "USBNET" DRIVER FRAMEWORK
17337 M:      Oliver Neukum <[email protected]>
17338 L:      [email protected]
17339 W:      http://www.linux-usb.org/usbnet
17340 S:      Maintained
17341 F:      drivers/net/usb/usbnet.c
17342 F:      include/linux/usb/usbnet.h
17343
17344 USB ACM DRIVER
17345 M:      Oliver Neukum <[email protected]>
17346 L:      [email protected]
17347 S:      Maintained
17348 F:      Documentation/usb/acm.rst
17349 F:      drivers/usb/class/cdc-acm.*
17350
17351 USB APPLE MFI FASTCHARGE DRIVER
17352 M:      Bastien Nocera <[email protected]>
17353 L:      [email protected]
17354 S:      Maintained
17355 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17356
17357 USB AR5523 WIRELESS DRIVER
17358 M:      Pontus Fuchs <[email protected]>
17359 L:      [email protected]
17360 S:      Maintained
17361 F:      drivers/net/wireless/ath/ar5523/
17362
17363 USB ATTACHED SCSI
17364 M:      Oliver Neukum <[email protected]>
17365 L:      [email protected]
17366 L:      [email protected]
17367 S:      Maintained
17368 F:      drivers/usb/storage/uas.c
17369
17370 USB CDC ETHERNET DRIVER
17371 M:      Oliver Neukum <[email protected]>
17372 L:      [email protected]
17373 S:      Maintained
17374 F:      drivers/net/usb/cdc_*.c
17375 F:      include/uapi/linux/usb/cdc.h
17376
17377 USB CHAOSKEY DRIVER
17378 M:      Keith Packard <[email protected]>
17379 L:      [email protected]
17380 S:      Maintained
17381 F:      drivers/usb/misc/chaoskey.c
17382
17383 USB CYPRESS C67X00 DRIVER
17384 M:      Peter Korsgaard <[email protected]>
17385 L:      [email protected]
17386 S:      Maintained
17387 F:      drivers/usb/c67x00/
17388
17389 USB DAVICOM DM9601 DRIVER
17390 M:      Peter Korsgaard <[email protected]>
17391 L:      [email protected]
17392 W:      http://www.linux-usb.org/usbnet
17393 S:      Maintained
17394 F:      drivers/net/usb/dm9601.c
17395
17396 USB EHCI DRIVER
17397 M:      Alan Stern <[email protected]>
17398 L:      [email protected]
17399 S:      Maintained
17400 F:      Documentation/usb/ehci.rst
17401 F:      drivers/usb/host/ehci*
17402
17403 USB GADGET/PERIPHERAL SUBSYSTEM
17404 M:      Felipe Balbi <[email protected]>
17405 L:      [email protected]
17406 W:      http://www.linux-usb.org/gadget
17407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17408 S:      Maintained
17409 F:      drivers/usb/gadget/
17410 F:      include/linux/usb/gadget*
17411
17412 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17413 M:      Jiri Kosina <[email protected]>
17414 M:      Benjamin Tissoires <[email protected]>
17415 L:      [email protected]
17416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17417 S:      Maintained
17418 F:      Documentation/hid/hiddev.rst
17419 F:      drivers/hid/usbhid/
17420
17421 USB INTEL XHCI ROLE MUX DRIVER
17422 M:      Hans de Goede <[email protected]>
17423 L:      [email protected]
17424 S:      Maintained
17425 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17426
17427 USB IP DRIVER FOR HISILICON KIRIN
17428 M:      Yu Chen <[email protected]>
17429 M:      Binghui Wang <[email protected]>
17430 L:      [email protected]
17431 S:      Maintained
17432 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17433 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17434
17435 USB ISP116X DRIVER
17436 M:      Olav Kongas <[email protected]>
17437 L:      [email protected]
17438 S:      Maintained
17439 F:      drivers/usb/host/isp116x*
17440 F:      include/linux/usb/isp116x.h
17441
17442 USB LAN78XX ETHERNET DRIVER
17443 M:      Woojung Huh <[email protected]>
17444 M:      Microchip Linux Driver Support <[email protected]>
17445 L:      [email protected]
17446 S:      Maintained
17447 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17448 F:      drivers/net/usb/lan78xx.*
17449 F:      include/dt-bindings/net/microchip-lan78xx.h
17450
17451 USB MASS STORAGE DRIVER
17452 M:      Alan Stern <[email protected]>
17453 L:      [email protected]
17454 L:      [email protected]
17455 S:      Maintained
17456 F:      drivers/usb/storage/
17457
17458 USB MIDI DRIVER
17459 M:      Clemens Ladisch <[email protected]>
17460 L:      [email protected] (moderated for non-subscribers)
17461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17462 S:      Maintained
17463 F:      sound/usb/midi.*
17464
17465 USB NETWORKING DRIVERS
17466 L:      [email protected]
17467 S:      Odd Fixes
17468 F:      drivers/net/usb/
17469
17470 USB OHCI DRIVER
17471 M:      Alan Stern <[email protected]>
17472 L:      [email protected]
17473 S:      Maintained
17474 F:      Documentation/usb/ohci.rst
17475 F:      drivers/usb/host/ohci*
17476
17477 USB OTG FSM (Finite State Machine)
17478 M:      Peter Chen <[email protected]>
17479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17480 L:      [email protected]
17481 S:      Maintained
17482 F:      drivers/usb/common/usb-otg-fsm.c
17483
17484 USB OVER IP DRIVER
17485 M:      Valentina Manea <[email protected]>
17486 M:      Shuah Khan <[email protected]>
17487 M:      Shuah Khan <[email protected]>
17488 L:      [email protected]
17489 S:      Maintained
17490 F:      Documentation/usb/usbip_protocol.rst
17491 F:      drivers/usb/usbip/
17492 F:      tools/usb/usbip/
17493 F:      tools/testing/selftests/drivers/usb/usbip/
17494
17495 USB PEGASUS DRIVER
17496 M:      Petko Manolov <[email protected]>
17497 L:      [email protected]
17498 L:      [email protected]
17499 T:      git git://github.com/petkan/pegasus.git
17500 W:      https://github.com/petkan/pegasus
17501 S:      Maintained
17502 F:      drivers/net/usb/pegasus.*
17503
17504 USB PHY LAYER
17505 M:      Felipe Balbi <[email protected]>
17506 L:      [email protected]
17507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17508 S:      Maintained
17509 F:      drivers/usb/phy/
17510
17511 USB PRINTER DRIVER (usblp)
17512 M:      Pete Zaitcev <[email protected]>
17513 L:      [email protected]
17514 S:      Supported
17515 F:      drivers/usb/class/usblp.c
17516
17517 USB QMI WWAN NETWORK DRIVER
17518 M:      Bjørn Mork <[email protected]>
17519 L:      [email protected]
17520 S:      Maintained
17521 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17522 F:      drivers/net/usb/qmi_wwan.c
17523
17524 USB RTL8150 DRIVER
17525 M:      Petko Manolov <[email protected]>
17526 L:      [email protected]
17527 L:      [email protected]
17528 T:      git git://github.com/petkan/rtl8150.git
17529 W:      https://github.com/petkan/rtl8150
17530 S:      Maintained
17531 F:      drivers/net/usb/rtl8150.c
17532
17533 USB SERIAL SUBSYSTEM
17534 M:      Johan Hovold <[email protected]>
17535 L:      [email protected]
17536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17537 S:      Maintained
17538 F:      Documentation/usb/usb-serial.rst
17539 F:      drivers/usb/serial/
17540 F:      include/linux/usb/serial.h
17541
17542 USB SMSC75XX ETHERNET DRIVER
17543 M:      Steve Glendinning <[email protected]>
17544 L:      [email protected]
17545 S:      Maintained
17546 F:      drivers/net/usb/smsc75xx.*
17547
17548 USB SMSC95XX ETHERNET DRIVER
17549 M:      Steve Glendinning <[email protected]>
17550 M:      Microchip Linux Driver Support <[email protected]>
17551 L:      [email protected]
17552 S:      Maintained
17553 F:      drivers/net/usb/smsc95xx.*
17554
17555 USB SUBSYSTEM
17556 M:      Greg Kroah-Hartman <[email protected]>
17557 L:      [email protected]
17558 W:      http://www.linux-usb.org
17559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17560 S:      Supported
17561 F:      Documentation/devicetree/bindings/usb/
17562 F:      Documentation/usb/
17563 F:      drivers/usb/
17564 F:      include/linux/usb.h
17565 F:      include/linux/usb/
17566
17567 USB TYPEC BUS FOR ALTERNATE MODES
17568 M:      Heikki Krogerus <[email protected]>
17569 L:      [email protected]
17570 S:      Maintained
17571 F:      Documentation/ABI/testing/sysfs-bus-typec
17572 F:      Documentation/driver-api/usb/typec_bus.rst
17573 F:      drivers/usb/typec/altmodes/
17574 F:      include/linux/usb/typec_altmode.h
17575
17576 USB TYPEC CLASS
17577 M:      Heikki Krogerus <[email protected]>
17578 L:      [email protected]
17579 S:      Maintained
17580 F:      Documentation/ABI/testing/sysfs-class-typec
17581 F:      Documentation/driver-api/usb/typec.rst
17582 F:      drivers/usb/typec/
17583 F:      include/linux/usb/typec.h
17584
17585 USB TYPEC PI3USB30532 MUX DRIVER
17586 M:      Hans de Goede <[email protected]>
17587 L:      [email protected]
17588 S:      Maintained
17589 F:      drivers/usb/typec/mux/pi3usb30532.c
17590
17591 USB TYPEC PORT CONTROLLER DRIVERS
17592 M:      Guenter Roeck <[email protected]>
17593 L:      [email protected]
17594 S:      Maintained
17595 F:      drivers/usb/typec/tcpm/
17596
17597 USB UHCI DRIVER
17598 M:      Alan Stern <[email protected]>
17599 L:      [email protected]
17600 S:      Maintained
17601 F:      drivers/usb/host/uhci*
17602
17603 USB VIDEO CLASS
17604 M:      Laurent Pinchart <[email protected]>
17605 L:      [email protected] (subscribers-only)
17606 L:      [email protected]
17607 T:      git git://linuxtv.org/media_tree.git
17608 W:      http://www.ideasonboard.org/uvc/
17609 S:      Maintained
17610 F:      drivers/media/usb/uvc/
17611 F:      include/uapi/linux/uvcvideo.h
17612
17613 USB VISION DRIVER
17614 M:      Hans Verkuil <[email protected]>
17615 L:      [email protected]
17616 T:      git git://linuxtv.org/media_tree.git
17617 W:      https://linuxtv.org
17618 S:      Odd Fixes
17619 F:      drivers/staging/media/usbvision/
17620
17621 USB WEBCAM GADGET
17622 M:      Laurent Pinchart <[email protected]>
17623 L:      [email protected]
17624 S:      Maintained
17625 F:      drivers/usb/gadget/function/*uvc*
17626 F:      drivers/usb/gadget/legacy/webcam.c
17627 F:      include/uapi/linux/usb/g_uvc.h
17628
17629 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17630 M:      Jussi Kivilinna <[email protected]>
17631 L:      [email protected]
17632 S:      Maintained
17633 F:      drivers/net/wireless/rndis_wlan.c
17634
17635 USB XHCI DRIVER
17636 M:      Mathias Nyman <[email protected]>
17637 L:      [email protected]
17638 S:      Supported
17639 F:      drivers/usb/host/xhci*
17640 F:      drivers/usb/host/pci-quirks*
17641
17642 USB ZD1201 DRIVER
17643 L:      [email protected]
17644 W:      http://linux-lc100020.sourceforge.net
17645 S:      Orphan
17646 F:      drivers/net/wireless/zydas/zd1201.*
17647
17648 USB ZR364XX DRIVER
17649 M:      Antoine Jacquet <[email protected]>
17650 L:      [email protected]
17651 L:      [email protected]
17652 T:      git git://linuxtv.org/media_tree.git
17653 W:      http://royale.zerezo.com/zr364xx/
17654 S:      Maintained
17655 F:      Documentation/media/v4l-drivers/zr364xx*
17656 F:      drivers/media/usb/zr364xx/
17657
17658 USER-MODE LINUX (UML)
17659 M:      Jeff Dike <[email protected]>
17660 M:      Richard Weinberger <[email protected]>
17661 M:      Anton Ivanov <[email protected]>
17662 L:      [email protected]
17663 W:      http://user-mode-linux.sourceforge.net
17664 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17666 S:      Maintained
17667 F:      Documentation/virt/uml/
17668 F:      arch/um/
17669 F:      arch/x86/um/
17670 F:      fs/hostfs/
17671
17672 USERSPACE COPYIN/COPYOUT (UIOVEC)
17673 M:      Alexander Viro <[email protected]>
17674 S:      Maintained
17675 F:      lib/iov_iter.c
17676 F:      include/linux/uio.h
17677
17678 USERSPACE DMA BUFFER DRIVER
17679 M:      Gerd Hoffmann <[email protected]>
17680 S:      Maintained
17681 L:      [email protected]
17682 F:      drivers/dma-buf/udmabuf.c
17683 F:      include/uapi/linux/udmabuf.h
17684 T:      git git://anongit.freedesktop.org/drm/drm-misc
17685
17686 USERSPACE I/O (UIO)
17687 M:      Greg Kroah-Hartman <[email protected]>
17688 S:      Maintained
17689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17690 F:      Documentation/driver-api/uio-howto.rst
17691 F:      drivers/uio/
17692 F:      include/linux/uio_driver.h
17693
17694 UTIL-LINUX PACKAGE
17695 M:      Karel Zak <[email protected]>
17696 L:      [email protected]
17697 W:      http://en.wikipedia.org/wiki/Util-linux
17698 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17699 S:      Maintained
17700
17701 UUID HELPERS
17702 M:      Christoph Hellwig <[email protected]>
17703 R:      Andy Shevchenko <[email protected]>
17704 L:      [email protected]
17705 T:      git git://git.infradead.org/users/hch/uuid.git
17706 F:      lib/uuid.c
17707 F:      lib/test_uuid.c
17708 F:      include/linux/uuid.h
17709 F:      include/uapi/linux/uuid.h
17710 S:      Maintained
17711
17712 UVESAFB DRIVER
17713 M:      Michal Januszewski <[email protected]>
17714 L:      [email protected]
17715 W:      https://github.com/mjanusz/v86d
17716 S:      Maintained
17717 F:      Documentation/fb/uvesafb.rst
17718 F:      drivers/video/fbdev/uvesafb.*
17719
17720 VF610 NAND DRIVER
17721 M:      Stefan Agner <[email protected]>
17722 L:      [email protected]
17723 S:      Supported
17724 F:      drivers/mtd/nand/raw/vf610_nfc.c
17725
17726 VFAT/FAT/MSDOS FILESYSTEM
17727 M:      OGAWA Hirofumi <[email protected]>
17728 S:      Maintained
17729 F:      Documentation/filesystems/vfat.rst
17730 F:      fs/fat/
17731
17732 VFIO DRIVER
17733 M:      Alex Williamson <[email protected]>
17734 R:      Cornelia Huck <[email protected]>
17735 L:      [email protected]
17736 T:      git git://github.com/awilliam/linux-vfio.git
17737 S:      Maintained
17738 F:      Documentation/driver-api/vfio.rst
17739 F:      drivers/vfio/
17740 F:      include/linux/vfio.h
17741 F:      include/uapi/linux/vfio.h
17742
17743 VFIO MEDIATED DEVICE DRIVERS
17744 M:      Kirti Wankhede <[email protected]>
17745 L:      [email protected]
17746 S:      Maintained
17747 F:      Documentation/driver-api/vfio-mediated-device.rst
17748 F:      drivers/vfio/mdev/
17749 F:      include/linux/mdev.h
17750 F:      samples/vfio-mdev/
17751
17752 VFIO PLATFORM DRIVER
17753 M:      Eric Auger <[email protected]>
17754 L:      [email protected]
17755 S:      Maintained
17756 F:      drivers/vfio/platform/
17757
17758 VGA_SWITCHEROO
17759 R:      Lukas Wunner <[email protected]>
17760 S:      Maintained
17761 F:      Documentation/gpu/vga-switcheroo.rst
17762 F:      drivers/gpu/vga/vga_switcheroo.c
17763 F:      include/linux/vga_switcheroo.h
17764 T:      git git://anongit.freedesktop.org/drm/drm-misc
17765
17766 VIA RHINE NETWORK DRIVER
17767 S:      Orphan
17768 F:      drivers/net/ethernet/via/via-rhine.c
17769
17770 VIA SD/MMC CARD CONTROLLER DRIVER
17771 M:      Bruce Chang <[email protected]>
17772 M:      Harald Welte <[email protected]>
17773 S:      Maintained
17774 F:      drivers/mmc/host/via-sdmmc.c
17775
17776 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17777 M:      Florian Tobias Schandinat <[email protected]>
17778 L:      [email protected]
17779 S:      Maintained
17780 F:      include/linux/via-core.h
17781 F:      include/linux/via-gpio.h
17782 F:      include/linux/via_i2c.h
17783 F:      drivers/video/fbdev/via/
17784
17785 VIA VELOCITY NETWORK DRIVER
17786 M:      Francois Romieu <[email protected]>
17787 L:      [email protected]
17788 S:      Maintained
17789 F:      drivers/net/ethernet/via/via-velocity.*
17790
17791 VICODEC VIRTUAL CODEC DRIVER
17792 M:      Hans Verkuil <[email protected]>
17793 L:      [email protected]
17794 T:      git git://linuxtv.org/media_tree.git
17795 W:      https://linuxtv.org
17796 S:      Maintained
17797 F:      drivers/media/platform/vicodec/*
17798
17799 VIDEO MULTIPLEXER DRIVER
17800 M:      Philipp Zabel <[email protected]>
17801 L:      [email protected]
17802 S:      Maintained
17803 F:      drivers/media/platform/video-mux.c
17804
17805 VIDEO I2C POLLING DRIVER
17806 M:      Matt Ranostay <[email protected]>
17807 L:      [email protected]
17808 S:      Maintained
17809 F:      drivers/media/i2c/video-i2c.c
17810
17811 VIDEOBUF2 FRAMEWORK
17812 M:      Pawel Osciak <[email protected]>
17813 M:      Marek Szyprowski <[email protected]>
17814 M:      Kyungmin Park <[email protected]>
17815 R:      Tomasz Figa <[email protected]>
17816 L:      [email protected]
17817 S:      Maintained
17818 F:      drivers/media/common/videobuf2/*
17819 F:      include/media/videobuf2-*
17820
17821 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17822 M:      Helen Koike <[email protected]>
17823 R:      Shuah Khan <[email protected]>
17824 L:      [email protected]
17825 T:      git git://linuxtv.org/media_tree.git
17826 W:      https://linuxtv.org
17827 S:      Maintained
17828 F:      drivers/media/platform/vimc/*
17829
17830 VIRT LIB
17831 M:      Alex Williamson <[email protected]>
17832 M:      Paolo Bonzini <[email protected]>
17833 L:      [email protected]
17834 S:      Supported
17835 F:      virt/lib/
17836
17837 VIRTIO AND VHOST VSOCK DRIVER
17838 M:      Stefan Hajnoczi <[email protected]>
17839 M:      Stefano Garzarella <[email protected]>
17840 L:      [email protected]
17841 L:      [email protected]
17842 L:      [email protected]
17843 S:      Maintained
17844 F:      include/linux/virtio_vsock.h
17845 F:      include/uapi/linux/virtio_vsock.h
17846 F:      include/uapi/linux/vsockmon.h
17847 F:      include/uapi/linux/vm_sockets_diag.h
17848 F:      net/vmw_vsock/diag.c
17849 F:      net/vmw_vsock/af_vsock_tap.c
17850 F:      net/vmw_vsock/virtio_transport_common.c
17851 F:      net/vmw_vsock/virtio_transport.c
17852 F:      net/vmw_vsock/vsock_loopback.c
17853 F:      drivers/net/vsockmon.c
17854 F:      drivers/vhost/vsock.c
17855 F:      tools/testing/vsock/
17856
17857 VIRTIO CONSOLE DRIVER
17858 M:      Amit Shah <[email protected]>
17859 L:      [email protected]
17860 S:      Maintained
17861 F:      drivers/char/virtio_console.c
17862 F:      include/linux/virtio_console.h
17863 F:      include/uapi/linux/virtio_console.h
17864
17865 VIRTIO CORE AND NET DRIVERS
17866 M:      "Michael S. Tsirkin" <[email protected]>
17867 M:      Jason Wang <[email protected]>
17868 L:      [email protected]
17869 S:      Maintained
17870 F:      Documentation/devicetree/bindings/virtio/
17871 F:      drivers/virtio/
17872 F:      tools/virtio/
17873 F:      drivers/net/virtio_net.c
17874 F:      drivers/block/virtio_blk.c
17875 F:      include/linux/virtio*.h
17876 F:      include/uapi/linux/virtio_*.h
17877 F:      drivers/crypto/virtio/
17878 F:      mm/balloon_compaction.c
17879
17880 VIRTIO BLOCK AND SCSI DRIVERS
17881 M:      "Michael S. Tsirkin" <[email protected]>
17882 M:      Jason Wang <[email protected]>
17883 R:      Paolo Bonzini <[email protected]>
17884 R:      Stefan Hajnoczi <[email protected]>
17885 L:      [email protected]
17886 S:      Maintained
17887 F:      drivers/block/virtio_blk.c
17888 F:      drivers/scsi/virtio_scsi.c
17889 F:      include/uapi/linux/virtio_blk.h
17890 F:      include/uapi/linux/virtio_scsi.h
17891 F:      drivers/vhost/scsi.c
17892
17893 VIRTIO CRYPTO DRIVER
17894 M:      Gonglei <[email protected]>
17895 L:      [email protected]
17896 L:      [email protected]
17897 S:      Maintained
17898 F:      drivers/crypto/virtio/
17899 F:      include/uapi/linux/virtio_crypto.h
17900
17901 VIRTIO DRIVERS FOR S390
17902 M:      Cornelia Huck <[email protected]>
17903 M:      Halil Pasic <[email protected]>
17904 L:      [email protected]
17905 L:      [email protected]
17906 L:      [email protected]
17907 S:      Supported
17908 F:      drivers/s390/virtio/
17909 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17910
17911 VIRTIO FILE SYSTEM
17912 M:      Vivek Goyal <[email protected]>
17913 M:      Stefan Hajnoczi <[email protected]>
17914 M:      Miklos Szeredi <[email protected]>
17915 L:      [email protected]
17916 L:      [email protected]
17917 W:      https://virtio-fs.gitlab.io/
17918 S:      Supported
17919 F:      fs/fuse/virtio_fs.c
17920 F:      include/uapi/linux/virtio_fs.h
17921 F:      Documentation/filesystems/virtiofs.rst
17922
17923 VIRTIO GPU DRIVER
17924 M:      David Airlie <[email protected]>
17925 M:      Gerd Hoffmann <[email protected]>
17926 L:      [email protected]
17927 L:      [email protected]
17928 T:      git git://anongit.freedesktop.org/drm/drm-misc
17929 S:      Maintained
17930 F:      drivers/gpu/drm/virtio/
17931 F:      include/uapi/linux/virtio_gpu.h
17932
17933 VIRTIO HOST (VHOST)
17934 M:      "Michael S. Tsirkin" <[email protected]>
17935 M:      Jason Wang <[email protected]>
17936 L:      [email protected]
17937 L:      [email protected]
17938 L:      [email protected]
17939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17940 S:      Maintained
17941 F:      drivers/vhost/
17942 F:      include/uapi/linux/vhost.h
17943
17944 VIRTIO INPUT DRIVER
17945 M:      Gerd Hoffmann <[email protected]>
17946 S:      Maintained
17947 F:      drivers/virtio/virtio_input.c
17948 F:      include/uapi/linux/virtio_input.h
17949
17950 VIRTIO IOMMU DRIVER
17951 M:      Jean-Philippe Brucker <[email protected]>
17952 L:      [email protected]
17953 S:      Maintained
17954 F:      drivers/iommu/virtio-iommu.c
17955 F:      include/uapi/linux/virtio_iommu.h
17956
17957 VIRTUAL BOX GUEST DEVICE DRIVER
17958 M:      Hans de Goede <[email protected]>
17959 M:      Arnd Bergmann <[email protected]>
17960 M:      Greg Kroah-Hartman <[email protected]>
17961 S:      Maintained
17962 F:      include/linux/vbox_utils.h
17963 F:      include/uapi/linux/vbox*.h
17964 F:      drivers/virt/vboxguest/
17965
17966 VIRTUAL BOX SHARED FOLDER VFS DRIVER
17967 M:      Hans de Goede <[email protected]>
17968 L:      [email protected]
17969 S:      Maintained
17970 F:      fs/vboxsf/*
17971
17972 VIRTUAL SERIO DEVICE DRIVER
17973 M:      Stephen Chandler Paul <[email protected]>
17974 S:      Maintained
17975 F:      drivers/input/serio/userio.c
17976 F:      include/uapi/linux/userio.h
17977
17978 VITESSE FELIX ETHERNET SWITCH DRIVER
17979 M:      Vladimir Oltean <[email protected]>
17980 M:      Claudiu Manoil <[email protected]>
17981 L:      [email protected]
17982 S:      Maintained
17983 F:      drivers/net/dsa/ocelot/*
17984 F:      net/dsa/tag_ocelot.c
17985
17986 VIVID VIRTUAL VIDEO DRIVER
17987 M:      Hans Verkuil <[email protected]>
17988 L:      [email protected]
17989 T:      git git://linuxtv.org/media_tree.git
17990 W:      https://linuxtv.org
17991 S:      Maintained
17992 F:      drivers/media/platform/vivid/*
17993
17994 VLYNQ BUS
17995 M:      Florian Fainelli <[email protected]>
17996 L:      [email protected] (subscribers-only)
17997 S:      Maintained
17998 F:      drivers/vlynq/vlynq.c
17999 F:      include/linux/vlynq.h
18000
18001 VME SUBSYSTEM
18002 M:      Martyn Welch <[email protected]>
18003 M:      Manohar Vanga <[email protected]>
18004 M:      Greg Kroah-Hartman <[email protected]>
18005 L:      [email protected]
18006 S:      Maintained
18007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18008 F:      Documentation/driver-api/vme.rst
18009 F:      drivers/staging/vme/
18010 F:      drivers/vme/
18011 F:      include/linux/vme*
18012
18013 VMWARE BALLOON DRIVER
18014 M:      Nadav Amit <[email protected]>
18015 M:      "VMware, Inc." <[email protected]>
18016 L:      [email protected]
18017 S:      Maintained
18018 F:      drivers/misc/vmw_balloon.c
18019
18020 VMWARE HYPERVISOR INTERFACE
18021 M:      Thomas Hellstrom <[email protected]>
18022 M:      "VMware, Inc." <[email protected]>
18023 L:      [email protected]
18024 S:      Supported
18025 F:      arch/x86/kernel/cpu/vmware.c
18026 F:      arch/x86/include/asm/vmware.h
18027
18028 VMWARE VIRTUAL PTP CLOCK DRIVER
18029 M:      Vivek Thampi <[email protected]>
18030 M:      "VMware, Inc." <[email protected]>
18031 L:      [email protected]
18032 S:      Supported
18033 F:      drivers/ptp/ptp_vmw.c
18034
18035 VMWARE PVRDMA DRIVER
18036 M:      Adit Ranadive <[email protected]>
18037 M:      VMware PV-Drivers <[email protected]>
18038 L:      [email protected]
18039 S:      Maintained
18040 F:      drivers/infiniband/hw/vmw_pvrdma/
18041
18042 VMware PVSCSI driver
18043 M:      Jim Gill <[email protected]>
18044 M:      VMware PV-Drivers <[email protected]>
18045 L:      [email protected]
18046 S:      Maintained
18047 F:      drivers/scsi/vmw_pvscsi.c
18048 F:      drivers/scsi/vmw_pvscsi.h
18049
18050 VMWARE VMMOUSE SUBDRIVER
18051 M:      "VMware Graphics" <[email protected]>
18052 M:      "VMware, Inc." <[email protected]>
18053 L:      [email protected]
18054 S:      Maintained
18055 F:      drivers/input/mouse/vmmouse.c
18056 F:      drivers/input/mouse/vmmouse.h
18057
18058 VMWARE VMXNET3 ETHERNET DRIVER
18059 M:      Ronak Doshi <[email protected]>
18060 M:      "VMware, Inc." <[email protected]>
18061 L:      [email protected]
18062 S:      Maintained
18063 F:      drivers/net/vmxnet3/
18064
18065 VOCORE VOCORE2 BOARD
18066 M:      Harvey Hunt <[email protected]>
18067 L:      [email protected]
18068 S:      Maintained
18069 F:      arch/mips/boot/dts/ralink/vocore2.dts
18070
18071 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18072 M:      Liam Girdwood <[email protected]>
18073 M:      Mark Brown <[email protected]>
18074 L:      [email protected]
18075 W:      http://www.slimlogic.co.uk/?p=48
18076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18077 S:      Supported
18078 F:      Documentation/devicetree/bindings/regulator/
18079 F:      Documentation/power/regulator/
18080 F:      drivers/regulator/
18081 F:      include/dt-bindings/regulator/
18082 F:      include/linux/regulator/
18083 K:      regulator_get_optional
18084
18085 VRF
18086 M:      David Ahern <[email protected]>
18087 M:      Shrijeet Mukherjee <[email protected]>
18088 L:      [email protected]
18089 S:      Maintained
18090 F:      drivers/net/vrf.c
18091 F:      Documentation/networking/vrf.txt
18092
18093 VSPRINTF
18094 M:      Petr Mladek <[email protected]>
18095 M:      Steven Rostedt <[email protected]>
18096 M:      Sergey Senozhatsky <[email protected]>
18097 R:      Andy Shevchenko <[email protected]>
18098 R:      Rasmus Villemoes <[email protected]>
18099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18100 S:      Maintained
18101 F:      lib/vsprintf.c
18102 F:      lib/test_printf.c
18103 F:      Documentation/core-api/printk-formats.rst
18104
18105 VT1211 HARDWARE MONITOR DRIVER
18106 M:      Juerg Haefliger <[email protected]>
18107 L:      [email protected]
18108 S:      Maintained
18109 F:      Documentation/hwmon/vt1211.rst
18110 F:      drivers/hwmon/vt1211.c
18111
18112 VT8231 HARDWARE MONITOR DRIVER
18113 M:      Roger Lucas <[email protected]>
18114 L:      [email protected]
18115 S:      Maintained
18116 F:      drivers/hwmon/vt8231.c
18117
18118 VUB300 USB to SDIO/SD/MMC bridge chip
18119 L:      [email protected]
18120 S:      Orphan
18121 F:      drivers/mmc/host/vub300.c
18122
18123 W1 DALLAS'S 1-WIRE BUS
18124 M:      Evgeniy Polyakov <[email protected]>
18125 S:      Maintained
18126 F:      Documentation/devicetree/bindings/w1/
18127 F:      Documentation/w1/
18128 F:      drivers/w1/
18129 F:      include/linux/w1.h
18130
18131 W83791D HARDWARE MONITORING DRIVER
18132 M:      Marc Hulsman <[email protected]>
18133 L:      [email protected]
18134 S:      Maintained
18135 F:      Documentation/hwmon/w83791d.rst
18136 F:      drivers/hwmon/w83791d.c
18137
18138 W83793 HARDWARE MONITORING DRIVER
18139 M:      Rudolf Marek <[email protected]>
18140 L:      [email protected]
18141 S:      Maintained
18142 F:      Documentation/hwmon/w83793.rst
18143 F:      drivers/hwmon/w83793.c
18144
18145 W83795 HARDWARE MONITORING DRIVER
18146 M:      Jean Delvare <[email protected]>
18147 L:      [email protected]
18148 S:      Maintained
18149 F:      drivers/hwmon/w83795.c
18150
18151 W83L51xD SD/MMC CARD INTERFACE DRIVER
18152 M:      Pierre Ossman <[email protected]>
18153 S:      Maintained
18154 F:      drivers/mmc/host/wbsd.*
18155
18156 WACOM PROTOCOL 4 SERIAL TABLETS
18157 M:      Julian Squires <[email protected]>
18158 M:      Hans de Goede <[email protected]>
18159 L:      [email protected]
18160 S:      Maintained
18161 F:      drivers/input/tablet/wacom_serial4.c
18162
18163 WATCHDOG DEVICE DRIVERS
18164 M:      Wim Van Sebroeck <[email protected]>
18165 M:      Guenter Roeck <[email protected]>
18166 L:      [email protected]
18167 W:      http://www.linux-watchdog.org/
18168 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18169 S:      Maintained
18170 F:      Documentation/devicetree/bindings/watchdog/
18171 F:      Documentation/watchdog/
18172 F:      drivers/watchdog/
18173 F:      include/linux/watchdog.h
18174 F:      include/uapi/linux/watchdog.h
18175
18176 WHISKEYCOVE PMIC GPIO DRIVER
18177 M:      Kuppuswamy Sathyanarayanan <[email protected]>
18178 L:      [email protected]
18179 S:      Maintained
18180 F:      drivers/gpio/gpio-wcove.c
18181
18182 WHWAVE RTC DRIVER
18183 M:      Dianlong Li <[email protected]>
18184 L:      [email protected]
18185 S:      Maintained
18186 F:      drivers/rtc/rtc-sd3078.c
18187
18188 WIIMOTE HID DRIVER
18189 M:      David Herrmann <[email protected]>
18190 L:      [email protected]
18191 S:      Maintained
18192 F:      drivers/hid/hid-wiimote*
18193
18194 WILOCITY WIL6210 WIRELESS DRIVER
18195 M:      Maya Erez <[email protected]>
18196 L:      [email protected]
18197 L:      [email protected]
18198 S:      Supported
18199 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
18200 F:      drivers/net/wireless/ath/wil6210/
18201
18202 WIMAX STACK
18203 M:      Inaky Perez-Gonzalez <[email protected]>
18204 M:      [email protected]
18205 L:      [email protected] (subscribers-only)
18206 S:      Supported
18207 W:      http://linuxwimax.org
18208 F:      Documentation/admin-guide/wimax/wimax.rst
18209 F:      include/linux/wimax/debug.h
18210 F:      include/net/wimax.h
18211 F:      include/uapi/linux/wimax.h
18212 F:      net/wimax/
18213
18214 WINBOND CIR DRIVER
18215 M:      David Härdeman <[email protected]>
18216 S:      Maintained
18217 F:      drivers/media/rc/winbond-cir.c
18218
18219 RCMM REMOTE CONTROLS DECODER
18220 M:      Patrick Lerda <[email protected]>
18221 S:      Maintained
18222 F:      drivers/media/rc/ir-rcmm-decoder.c
18223
18224 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18225 M:      William Breathitt Gray <[email protected]>
18226 L:      [email protected]
18227 S:      Maintained
18228 F:      drivers/watchdog/ebc-c384_wdt.c
18229
18230 WINSYSTEMS WS16C48 GPIO DRIVER
18231 M:      William Breathitt Gray <[email protected]>
18232 L:      [email protected]
18233 S:      Maintained
18234 F:      drivers/gpio/gpio-ws16c48.c
18235
18236 WIREGUARD SECURE NETWORK TUNNEL
18237 M:      Jason A. Donenfeld <[email protected]>
18238 S:      Maintained
18239 F:      drivers/net/wireguard/
18240 F:      tools/testing/selftests/wireguard/
18241 L:      [email protected]
18242 L:      [email protected]
18243
18244 WISTRON LAPTOP BUTTON DRIVER
18245 M:      Miloslav Trmac <[email protected]>
18246 S:      Maintained
18247 F:      drivers/input/misc/wistron_btns.c
18248
18249 WL3501 WIRELESS PCMCIA CARD DRIVER
18250 L:      [email protected]
18251 S:      Odd fixes
18252 F:      drivers/net/wireless/wl3501*
18253
18254 WOLFSON MICROELECTRONICS DRIVERS
18255 L:      [email protected]
18256 T:      git https://github.com/CirrusLogic/linux-drivers.git
18257 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18258 S:      Supported
18259 F:      Documentation/hwmon/wm83??.rst
18260 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
18261 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
18262 F:      Documentation/devicetree/bindings/mfd/arizona.txt
18263 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18264 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
18265 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18266 F:      drivers/clk/clk-wm83*.c
18267 F:      drivers/extcon/extcon-arizona.c
18268 F:      drivers/leds/leds-wm83*.c
18269 F:      drivers/gpio/gpio-*wm*.c
18270 F:      drivers/gpio/gpio-arizona.c
18271 F:      drivers/hwmon/wm83??-hwmon.c
18272 F:      drivers/input/misc/wm831x-on.c
18273 F:      drivers/input/touchscreen/wm831x-ts.c
18274 F:      drivers/input/touchscreen/wm97*.c
18275 F:      drivers/mfd/arizona*
18276 F:      drivers/mfd/wm*.c
18277 F:      drivers/mfd/cs47l24*
18278 F:      drivers/power/supply/wm83*.c
18279 F:      drivers/rtc/rtc-wm83*.c
18280 F:      drivers/regulator/wm8*.c
18281 F:      drivers/regulator/arizona*
18282 F:      drivers/video/backlight/wm83*_bl.c
18283 F:      drivers/watchdog/wm83*_wdt.c
18284 F:      include/linux/mfd/arizona/
18285 F:      include/linux/mfd/wm831x/
18286 F:      include/linux/mfd/wm8350/
18287 F:      include/linux/mfd/wm8400*
18288 F:      include/linux/regulator/arizona*
18289 F:      include/linux/wm97xx.h
18290 F:      include/sound/wm????.h
18291 F:      sound/soc/codecs/arizona.?
18292 F:      sound/soc/codecs/wm*
18293 F:      sound/soc/codecs/cs47l24*
18294
18295 WORKQUEUE
18296 M:      Tejun Heo <[email protected]>
18297 R:      Lai Jiangshan <[email protected]>
18298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18299 S:      Maintained
18300 F:      include/linux/workqueue.h
18301 F:      kernel/workqueue.c
18302 F:      Documentation/core-api/workqueue.rst
18303
18304 X-POWERS AXP288 PMIC DRIVERS
18305 M:      Hans de Goede <[email protected]>
18306 S:      Maintained
18307 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18308 N:      axp288
18309
18310 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18311 M:      Chen-Yu Tsai <[email protected]>
18312 L:      [email protected]
18313 S:      Maintained
18314 N:      axp[128]
18315
18316 X.25 NETWORK LAYER
18317 M:      Andrew Hendry <[email protected]>
18318 L:      [email protected]
18319 S:      Odd Fixes
18320 F:      Documentation/networking/x25*
18321 F:      include/net/x25*
18322 F:      net/x25/
18323
18324 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18325 M:      Thomas Gleixner <[email protected]>
18326 M:      Ingo Molnar <[email protected]>
18327 M:      Borislav Petkov <[email protected]>
18328 R:      "H. Peter Anvin" <[email protected]>
18329 M:      [email protected]
18330 L:      [email protected]
18331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18332 S:      Maintained
18333 F:      Documentation/devicetree/bindings/x86/
18334 F:      Documentation/x86/
18335 F:      arch/x86/
18336
18337 X86 ENTRY CODE
18338 M:      Andy Lutomirski <[email protected]>
18339 L:      [email protected]
18340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18341 S:      Maintained
18342 F:      arch/x86/entry/
18343
18344 X86 MCE INFRASTRUCTURE
18345 M:      Tony Luck <[email protected]>
18346 M:      Borislav Petkov <[email protected]>
18347 L:      [email protected]
18348 S:      Maintained
18349 F:      arch/x86/kernel/cpu/mce/*
18350
18351 X86 MICROCODE UPDATE SUPPORT
18352 M:      Borislav Petkov <[email protected]>
18353 S:      Maintained
18354 F:      arch/x86/kernel/cpu/microcode/*
18355
18356 X86 MM
18357 M:      Dave Hansen <[email protected]>
18358 M:      Andy Lutomirski <[email protected]>
18359 M:      Peter Zijlstra <[email protected]>
18360 L:      [email protected]
18361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18362 S:      Maintained
18363 F:      arch/x86/mm/
18364
18365 X86 PLATFORM DRIVERS
18366 M:      Darren Hart <[email protected]>
18367 M:      Andy Shevchenko <[email protected]>
18368 L:      [email protected]
18369 S:      Odd Fixes
18370 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18371 F:      drivers/platform/olpc/
18372 F:      drivers/platform/x86/
18373
18374 X86 PLATFORM DRIVERS - ARCH
18375 R:      Darren Hart <[email protected]>
18376 R:      Andy Shevchenko <[email protected]>
18377 L:      [email protected]
18378 L:      [email protected]
18379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18380 S:      Maintained
18381 F:      arch/x86/platform
18382
18383 X86 VDSO
18384 M:      Andy Lutomirski <[email protected]>
18385 L:      [email protected]
18386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18387 S:      Maintained
18388 F:      arch/x86/entry/vdso/
18389
18390 XARRAY
18391 M:      Matthew Wilcox <[email protected]>
18392 L:      [email protected]
18393 S:      Supported
18394 F:      Documentation/core-api/xarray.rst
18395 F:      lib/idr.c
18396 F:      lib/xarray.c
18397 F:      include/linux/idr.h
18398 F:      include/linux/xarray.h
18399 F:      tools/testing/radix-tree
18400
18401 XBOX DVD IR REMOTE
18402 M:      Benjamin Valentin <[email protected]>
18403 S:      Maintained
18404 F:      drivers/media/rc/xbox_remote.c
18405 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18406
18407 XC2028/3028 TUNER DRIVER
18408 M:      Mauro Carvalho Chehab <[email protected]>
18409 L:      [email protected]
18410 W:      https://linuxtv.org
18411 T:      git git://linuxtv.org/media_tree.git
18412 S:      Maintained
18413 F:      drivers/media/tuners/tuner-xc2028.*
18414
18415 XDP (eXpress Data Path)
18416 M:      Alexei Starovoitov <[email protected]>
18417 M:      Daniel Borkmann <[email protected]>
18418 M:      David S. Miller <[email protected]>
18419 M:      Jakub Kicinski <[email protected]>
18420 M:      Jesper Dangaard Brouer <[email protected]>
18421 M:      John Fastabend <[email protected]>
18422 L:      [email protected]
18423 L:      [email protected]
18424 S:      Supported
18425 F:      net/core/xdp.c
18426 F:      include/net/xdp.h
18427 F:      kernel/bpf/devmap.c
18428 F:      kernel/bpf/cpumap.c
18429 F:      include/trace/events/xdp.h
18430 K:      xdp
18431 N:      xdp
18432
18433 XDP SOCKETS (AF_XDP)
18434 M:      Björn Töpel <[email protected]>
18435 M:      Magnus Karlsson <[email protected]>
18436 R:      Jonathan Lemon <[email protected]>
18437 L:      [email protected]
18438 L:      [email protected]
18439 S:      Maintained
18440 F:      kernel/bpf/xskmap.c
18441 F:      net/xdp/
18442
18443 XEN BLOCK SUBSYSTEM
18444 M:      Konrad Rzeszutek Wilk <[email protected]>
18445 M:      Roger Pau Monné <[email protected]>
18446 L:      [email protected] (moderated for non-subscribers)
18447 S:      Supported
18448 F:      drivers/block/xen-blkback/*
18449 F:      drivers/block/xen*
18450
18451 XEN HYPERVISOR ARM
18452 M:      Stefano Stabellini <[email protected]>
18453 L:      [email protected] (moderated for non-subscribers)
18454 S:      Maintained
18455 F:      arch/arm/xen/
18456 F:      arch/arm/include/asm/xen/
18457
18458 XEN HYPERVISOR ARM64
18459 M:      Stefano Stabellini <[email protected]>
18460 L:      [email protected] (moderated for non-subscribers)
18461 S:      Maintained
18462 F:      arch/arm64/xen/
18463 F:      arch/arm64/include/asm/xen/
18464
18465 XEN HYPERVISOR INTERFACE
18466 M:      Boris Ostrovsky <[email protected]>
18467 M:      Juergen Gross <[email protected]>
18468 R:      Stefano Stabellini <[email protected]>
18469 L:      [email protected] (moderated for non-subscribers)
18470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18471 S:      Supported
18472 F:      arch/x86/xen/
18473 F:      arch/x86/platform/pvh/
18474 F:      drivers/*/xen-*front.c
18475 F:      drivers/xen/
18476 F:      arch/x86/include/asm/xen/
18477 F:      arch/x86/include/asm/pvclock-abi.h
18478 F:      include/xen/
18479 F:      include/uapi/xen/
18480 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18481 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18482
18483 XEN NETWORK BACKEND DRIVER
18484 M:      Wei Liu <[email protected]>
18485 M:      Paul Durrant <[email protected]>
18486 L:      [email protected] (moderated for non-subscribers)
18487 L:      [email protected]
18488 S:      Supported
18489 F:      drivers/net/xen-netback/*
18490
18491 XEN PCI SUBSYSTEM
18492 M:      Konrad Rzeszutek Wilk <[email protected]>
18493 L:      [email protected] (moderated for non-subscribers)
18494 S:      Supported
18495 F:      arch/x86/pci/*xen*
18496 F:      drivers/pci/*xen*
18497
18498 XEN PVSCSI DRIVERS
18499 M:      Juergen Gross <[email protected]>
18500 L:      [email protected] (moderated for non-subscribers)
18501 L:      [email protected]
18502 S:      Supported
18503 F:      drivers/scsi/xen-scsifront.c
18504 F:      drivers/xen/xen-scsiback.c
18505 F:      include/xen/interface/io/vscsiif.h
18506
18507 XEN SWIOTLB SUBSYSTEM
18508 M:      Konrad Rzeszutek Wilk <[email protected]>
18509 L:      [email protected] (moderated for non-subscribers)
18510 L:      [email protected]
18511 S:      Supported
18512 F:      arch/x86/xen/*swiotlb*
18513 F:      drivers/xen/*swiotlb*
18514
18515 XEN SOUND FRONTEND DRIVER
18516 M:      Oleksandr Andrushchenko <[email protected]>
18517 L:      [email protected] (moderated for non-subscribers)
18518 L:      [email protected] (moderated for non-subscribers)
18519 S:      Supported
18520 F:      sound/xen/*
18521
18522 XFS FILESYSTEM
18523 M:      Darrick J. Wong <[email protected]>
18524 M:      [email protected]
18525 L:      [email protected]
18526 W:      http://xfs.org/
18527 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18528 S:      Supported
18529 F:      Documentation/admin-guide/xfs.rst
18530 F:      Documentation/ABI/testing/sysfs-fs-xfs
18531 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
18532 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
18533 F:      fs/xfs/
18534 F:      include/uapi/linux/dqblk_xfs.h
18535 F:      include/uapi/linux/fsmap.h
18536
18537 XILINX AXI ETHERNET DRIVER
18538 M:      Radhey Shyam Pandey <[email protected]>
18539 S:      Maintained
18540 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18541
18542 XILINX CAN DRIVER
18543 M:      Appana Durga Kedareswara rao <[email protected]>
18544 R:      Naga Sureshkumar Relli <[email protected]>
18545 L:      [email protected]
18546 S:      Maintained
18547 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18548 F:      drivers/net/can/xilinx_can.c
18549
18550 XILINX UARTLITE SERIAL DRIVER
18551 M:      Peter Korsgaard <[email protected]>
18552 L:      [email protected]
18553 S:      Maintained
18554 F:      drivers/tty/serial/uartlite.c
18555
18556 XILINX VIDEO IP CORES
18557 M:      Hyun Kwon <[email protected]>
18558 M:      Laurent Pinchart <[email protected]>
18559 L:      [email protected]
18560 T:      git git://linuxtv.org/media_tree.git
18561 S:      Supported
18562 F:      Documentation/devicetree/bindings/media/xilinx/
18563 F:      drivers/media/platform/xilinx/
18564 F:      include/uapi/linux/xilinx-v4l2-controls.h
18565
18566 XILINX SD-FEC IP CORES
18567 M:      Derek Kiernan <[email protected]>
18568 M:      Dragan Cvetic <[email protected]>
18569 S:      Maintained
18570 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18571 F:      Documentation/misc-devices/xilinx_sdfec.rst
18572 F:      drivers/misc/xilinx_sdfec.c
18573 F:      drivers/misc/Kconfig
18574 F:      drivers/misc/Makefile
18575 F:      include/uapi/misc/xilinx_sdfec.h
18576
18577 XILLYBUS DRIVER
18578 M:      Eli Billauer <[email protected]>
18579 L:      [email protected]
18580 S:      Supported
18581 F:      drivers/char/xillybus/
18582
18583 XLP9XX I2C DRIVER
18584 M:      George Cherian <[email protected]>
18585 L:      [email protected]
18586 W:      http://www.marvell.com
18587 S:      Supported
18588 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18589 F:      drivers/i2c/busses/i2c-xlp9xx.c
18590
18591 XRA1403 GPIO EXPANDER
18592 M:      Nandor Han <[email protected]>
18593 M:      Semi Malinen <[email protected]>
18594 L:      [email protected]
18595 S:      Maintained
18596 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18597 F:      drivers/gpio/gpio-xra1403.c
18598
18599 XTENSA XTFPGA PLATFORM SUPPORT
18600 M:      Max Filippov <[email protected]>
18601 L:      [email protected]
18602 S:      Maintained
18603 F:      drivers/spi/spi-xtensa-xtfpga.c
18604 F:      sound/soc/xtensa/xtfpga-i2s.c
18605
18606 YAM DRIVER FOR AX.25
18607 M:      Jean-Paul Roubelat <[email protected]>
18608 L:      [email protected]
18609 S:      Maintained
18610 F:      drivers/net/hamradio/yam*
18611 F:      include/linux/yam.h
18612
18613 YAMA SECURITY MODULE
18614 M:      Kees Cook <[email protected]>
18615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18616 S:      Supported
18617 F:      security/yama/
18618 F:      Documentation/admin-guide/LSM/Yama.rst
18619
18620 YEALINK PHONE DRIVER
18621 M:      Henk Vergonet <[email protected]>
18622 L:      [email protected]
18623 S:      Maintained
18624 F:      Documentation/input/devices/yealink.rst
18625 F:      drivers/input/misc/yealink.*
18626
18627 Z8530 DRIVER FOR AX.25
18628 M:      Joerg Reuter <[email protected]>
18629 W:      http://yaina.de/jreuter/
18630 W:      http://www.qsl.net/dl1bke/
18631 L:      [email protected]
18632 S:      Maintained
18633 F:      Documentation/networking/z8530drv.txt
18634 F:      drivers/net/hamradio/*scc.c
18635 F:      drivers/net/hamradio/z8530.h
18636
18637 ZBUD COMPRESSED PAGE ALLOCATOR
18638 M:      Seth Jennings <[email protected]>
18639 M:      Dan Streetman <[email protected]>
18640 L:      [email protected]
18641 S:      Maintained
18642 F:      mm/zbud.c
18643 F:      include/linux/zbud.h
18644
18645 ZD1211RW WIRELESS DRIVER
18646 M:      Daniel Drake <[email protected]>
18647 M:      Ulrich Kunitz <[email protected]>
18648 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18649 L:      [email protected]
18650 L:      [email protected] (subscribers-only)
18651 S:      Maintained
18652 F:      drivers/net/wireless/zydas/zd1211rw/
18653
18654 ZD1301 MEDIA DRIVER
18655 M:      Antti Palosaari <[email protected]>
18656 L:      [email protected]
18657 W:      https://linuxtv.org/
18658 W:      http://palosaari.fi/linux/
18659 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18660 S:      Maintained
18661 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18662
18663 ZD1301_DEMOD MEDIA DRIVER
18664 M:      Antti Palosaari <[email protected]>
18665 L:      [email protected]
18666 W:      https://linuxtv.org/
18667 W:      http://palosaari.fi/linux/
18668 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18669 S:      Maintained
18670 F:      drivers/media/dvb-frontends/zd1301_demod*
18671
18672 ZHAOXIN PROCESSOR SUPPORT
18673 M:      Tony W Wang-oc <[email protected]>
18674 L:      [email protected]
18675 S:      Maintained
18676 F:      arch/x86/kernel/cpu/zhaoxin.c
18677
18678 ZONEFS FILESYSTEM
18679 M:      Damien Le Moal <[email protected]>
18680 M:      Naohiro Aota <[email protected]>
18681 R:      Johannes Thumshirn <[email protected]>
18682 L:      [email protected]
18683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18684 S:      Maintained
18685 F:      fs/zonefs/
18686 F:      Documentation/filesystems/zonefs.rst
18687
18688 ZPOOL COMPRESSED PAGE STORAGE API
18689 M:      Dan Streetman <[email protected]>
18690 L:      [email protected]
18691 S:      Maintained
18692 F:      mm/zpool.c
18693 F:      include/linux/zpool.h
18694
18695 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18696 M:      Minchan Kim <[email protected]>
18697 M:      Nitin Gupta <[email protected]>
18698 R:      Sergey Senozhatsky <[email protected]>
18699 L:      [email protected]
18700 S:      Maintained
18701 F:      drivers/block/zram/
18702 F:      Documentation/admin-guide/blockdev/zram.rst
18703
18704 ZS DECSTATION Z85C30 SERIAL DRIVER
18705 M:      "Maciej W. Rozycki" <[email protected]>
18706 S:      Maintained
18707 F:      drivers/tty/serial/zs.*
18708
18709 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18710 M:      Minchan Kim <[email protected]>
18711 M:      Nitin Gupta <[email protected]>
18712 R:      Sergey Senozhatsky <[email protected]>
18713 L:      [email protected]
18714 S:      Maintained
18715 F:      mm/zsmalloc.c
18716 F:      include/linux/zsmalloc.h
18717 F:      Documentation/vm/zsmalloc.rst
18718
18719 ZSWAP COMPRESSED SWAP CACHING
18720 M:      Seth Jennings <[email protected]>
18721 M:      Dan Streetman <[email protected]>
18722 M:      Vitaly Wool <[email protected]>
18723 L:      [email protected]
18724 S:      Maintained
18725 F:      mm/zswap.c
18726
18727 THE REST
18728 M:      Linus Torvalds <[email protected]>
18729 L:      [email protected]
18730 Q:      http://patchwork.kernel.org/project/LKML/list/
18731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18732 S:      Buried alive in reporters
18733 F:      *
18734 F:      */
This page took 1.030798 seconds and 4 git commands to generate.