]> Git Repo - linux.git/blob - MAINTAINERS
MAINTAINERS: list the section entries in the preferred order
[linux.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: [email protected], especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <[email protected]>
148 L:      [email protected]
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/3com/vortex.txt
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <[email protected]>
155 L:      [email protected]
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <[email protected]>
161 L:      [email protected]
162 W:      http://www.lsi.com
163 S:      Supported
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <[email protected]>
168 L:      [email protected]
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <[email protected]>
174 M:      Jukka Rissanen <[email protected]>
175 L:      [email protected]
176 L:      [email protected]
177 S:      Maintained
178 F:      net/6lowpan/
179 F:      include/net/6lowpan.h
180 F:      Documentation/networking/6lowpan.rst
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <[email protected]>
184 L:      [email protected]
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 8169 10/100/1000 GIGABIT ETHERNET DRIVER
189 M:      Realtek linux nic maintainers <[email protected]>
190 M:      Heiner Kallweit <[email protected]>
191 L:      [email protected]
192 S:      Maintained
193 F:      drivers/net/ethernet/realtek/r8169*
194
195 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
196 M:      Greg Kroah-Hartman <[email protected]>
197 L:      [email protected]
198 S:      Maintained
199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
200 F:      drivers/tty/serial/8250*
201 F:      include/linux/serial_8250.h
202
203 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
204 L:      [email protected]
205 S:      Orphan / Obsolete
206 F:      drivers/net/ethernet/8390/
207
208 9P FILE SYSTEM
209 M:      Eric Van Hensbergen <[email protected]>
210 M:      Latchesar Ionkov <[email protected]>
211 M:      Dominique Martinet <[email protected]>
212 L:      [email protected]
213 W:      http://swik.net/v9fs
214 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
216 T:      git git://github.com/martinetd/linux.git
217 S:      Maintained
218 F:      Documentation/filesystems/9p.rst
219 F:      fs/9p/
220 F:      net/9p/
221 F:      include/net/9p/
222 F:      include/uapi/linux/virtio_9p.h
223 F:      include/trace/events/9p.h
224
225 A8293 MEDIA DRIVER
226 M:      Antti Palosaari <[email protected]>
227 L:      [email protected]
228 W:      https://linuxtv.org
229 W:      http://palosaari.fi/linux/
230 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
231 T:      git git://linuxtv.org/anttip/media_tree.git
232 S:      Maintained
233 F:      drivers/media/dvb-frontends/a8293*
234
235 AACRAID SCSI RAID DRIVER
236 M:      Adaptec OEM Raid Solutions <[email protected]>
237 L:      [email protected]
238 W:      http://www.adaptec.com/
239 S:      Supported
240 F:      Documentation/scsi/aacraid.rst
241 F:      drivers/scsi/aacraid/
242
243 ABI/API
244 L:      [email protected]
245 F:      include/linux/syscalls.h
246 F:      kernel/sys_ni.c
247
248 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
249 M:      Hans de Goede <[email protected]>
250 L:      [email protected]
251 S:      Maintained
252 F:      drivers/hwmon/abituguru.c
253
254 ABIT UGURU 3 HARDWARE MONITOR DRIVER
255 M:      Alistair John Strachan <[email protected]>
256 L:      [email protected]
257 S:      Maintained
258 F:      drivers/hwmon/abituguru3.c
259
260 ACCES 104-DIO-48E GPIO DRIVER
261 M:      William Breathitt Gray <[email protected]>
262 L:      [email protected]
263 S:      Maintained
264 F:      drivers/gpio/gpio-104-dio-48e.c
265
266 ACCES 104-IDI-48 GPIO DRIVER
267 M:      "William Breathitt Gray" <[email protected]>
268 L:      [email protected]
269 S:      Maintained
270 F:      drivers/gpio/gpio-104-idi-48.c
271
272 ACCES 104-IDIO-16 GPIO DRIVER
273 M:      "William Breathitt Gray" <[email protected]>
274 L:      [email protected]
275 S:      Maintained
276 F:      drivers/gpio/gpio-104-idio-16.c
277
278 ACCES 104-QUAD-8 DRIVER
279 M:      William Breathitt Gray <[email protected]>
280 L:      [email protected]
281 S:      Maintained
282 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
283 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
284 F:      drivers/counter/104-quad-8.c
285
286 ACCES PCI-IDIO-16 GPIO DRIVER
287 M:      William Breathitt Gray <[email protected]>
288 L:      [email protected]
289 S:      Maintained
290 F:      drivers/gpio/gpio-pci-idio-16.c
291
292 ACCES PCIe-IDIO-24 GPIO DRIVER
293 M:      William Breathitt Gray <[email protected]>
294 L:      [email protected]
295 S:      Maintained
296 F:      drivers/gpio/gpio-pcie-idio-24.c
297
298 ACENIC DRIVER
299 M:      Jes Sorensen <[email protected]>
300 L:      [email protected]
301 S:      Maintained
302 F:      drivers/net/ethernet/alteon/acenic*
303
304 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
305 M:      Peter Kaestle <[email protected]>
306 L:      [email protected]
307 S:      Maintained
308 W:      http://piie.net/?section=acerhdf
309 F:      drivers/platform/x86/acerhdf.c
310
311 ACER WMI LAPTOP EXTRAS
312 M:      "Lee, Chun-Yi" <[email protected]>
313 L:      [email protected]
314 S:      Maintained
315 F:      drivers/platform/x86/acer-wmi.c
316
317 ACPI
318 M:      "Rafael J. Wysocki" <[email protected]>
319 M:      Len Brown <[email protected]>
320 L:      [email protected]
321 S:      Supported
322 W:      https://01.org/linux-acpi
323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
324 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
325 B:      https://bugzilla.kernel.org
326 F:      Documentation/ABI/testing/configfs-acpi
327 F:      Documentation/ABI/testing/sysfs-bus-acpi
328 F:      Documentation/firmware-guide/acpi/
329 F:      drivers/acpi/
330 F:      drivers/pci/*/*acpi*
331 F:      drivers/pci/*acpi*
332 F:      drivers/pnp/pnpacpi/
333 F:      include/acpi/
334 F:      include/linux/acpi.h
335 F:      include/linux/fwnode.h
336 F:      tools/power/acpi/
337
338 ACPI APEI
339 M:      "Rafael J. Wysocki" <[email protected]>
340 M:      Len Brown <[email protected]>
341 R:      James Morse <[email protected]>
342 R:      Tony Luck <[email protected]>
343 R:      Borislav Petkov <[email protected]>
344 L:      [email protected]
345 F:      drivers/acpi/apei/
346
347 ACPI COMPONENT ARCHITECTURE (ACPICA)
348 M:      Robert Moore <[email protected]>
349 M:      Erik Kaneda <[email protected]>
350 M:      "Rafael J. Wysocki" <[email protected]>
351 L:      [email protected]
352 L:      [email protected]
353 S:      Supported
354 W:      https://acpica.org/
355 W:      https://github.com/acpica/acpica/
356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
357 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
358 B:      https://bugzilla.kernel.org
359 B:      https://bugs.acpica.org
360 F:      drivers/acpi/acpica/
361 F:      include/acpi/
362 F:      tools/power/acpi/
363
364 ACPI FAN DRIVER
365 M:      Zhang Rui <[email protected]>
366 L:      [email protected]
367 S:      Supported
368 W:      https://01.org/linux-acpi
369 B:      https://bugzilla.kernel.org
370 F:      drivers/acpi/fan.c
371
372 ACPI FOR ARM64 (ACPI/arm64)
373 M:      Lorenzo Pieralisi <[email protected]>
374 M:      Hanjun Guo <[email protected]>
375 M:      Sudeep Holla <[email protected]>
376 L:      [email protected]
377 L:      [email protected] (moderated for non-subscribers)
378 S:      Maintained
379 F:      drivers/acpi/arm64
380
381 ACPI I2C MULTI INSTANTIATE DRIVER
382 M:      Hans de Goede <[email protected]>
383 L:      [email protected]
384 S:      Maintained
385 F:      drivers/platform/x86/i2c-multi-instantiate.c
386
387 ACPI PMIC DRIVERS
388 M:      "Rafael J. Wysocki" <[email protected]>
389 M:      Len Brown <[email protected]>
390 R:      Andy Shevchenko <[email protected]>
391 R:      Mika Westerberg <[email protected]>
392 L:      [email protected]
393 S:      Supported
394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
395 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
396 B:      https://bugzilla.kernel.org
397 F:      drivers/acpi/pmic/
398
399 ACPI THERMAL DRIVER
400 M:      Zhang Rui <[email protected]>
401 L:      [email protected]
402 S:      Supported
403 W:      https://01.org/linux-acpi
404 B:      https://bugzilla.kernel.org
405 F:      drivers/acpi/*thermal*
406
407 ACPI VIDEO DRIVER
408 M:      Zhang Rui <[email protected]>
409 L:      [email protected]
410 S:      Supported
411 W:      https://01.org/linux-acpi
412 B:      https://bugzilla.kernel.org
413 F:      drivers/acpi/acpi_video.c
414
415 ACPI WMI DRIVER
416 L:      [email protected]
417 S:      Orphan
418 F:      drivers/platform/x86/wmi.c
419 F:      include/uapi/linux/wmi.h
420
421 AD1889 ALSA SOUND DRIVER
422 W:      https://parisc.wiki.kernel.org/index.php/AD1889
423 L:      [email protected]
424 S:      Maintained
425 F:      sound/pci/ad1889.*
426
427 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
428 M:      Michael Hennerich <[email protected]>
429 W:      http://wiki.analog.com/AD5254
430 W:      http://ez.analog.com/community/linux-device-drivers
431 S:      Supported
432 F:      drivers/misc/ad525x_dpot.c
433
434 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
435 M:      Michael Hennerich <[email protected]>
436 W:      http://wiki.analog.com/AD5398
437 W:      http://ez.analog.com/community/linux-device-drivers
438 S:      Supported
439 F:      drivers/regulator/ad5398.c
440
441 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
442 M:      Michael Hennerich <[email protected]>
443 W:      http://wiki.analog.com/AD7142
444 W:      http://ez.analog.com/community/linux-device-drivers
445 S:      Supported
446 F:      drivers/input/misc/ad714x.c
447
448 AD7877 TOUCHSCREEN DRIVER
449 M:      Michael Hennerich <[email protected]>
450 W:      http://wiki.analog.com/AD7877
451 W:      http://ez.analog.com/community/linux-device-drivers
452 S:      Supported
453 F:      drivers/input/touchscreen/ad7877.c
454
455 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
456 M:      Michael Hennerich <[email protected]>
457 W:      http://wiki.analog.com/AD7879
458 W:      http://ez.analog.com/community/linux-device-drivers
459 S:      Supported
460 F:      drivers/input/touchscreen/ad7879.c
461
462 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
463 M:      Jiri Kosina <[email protected]>
464 S:      Maintained
465
466 ADF7242 IEEE 802.15.4 RADIO DRIVER
467 M:      Michael Hennerich <[email protected]>
468 W:      https://wiki.analog.com/ADF7242
469 W:      http://ez.analog.com/community/linux-device-drivers
470 L:      [email protected]
471 S:      Supported
472 F:      drivers/net/ieee802154/adf7242.c
473 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
474
475 ADM1025 HARDWARE MONITOR DRIVER
476 M:      Jean Delvare <[email protected]>
477 L:      [email protected]
478 S:      Maintained
479 F:      Documentation/hwmon/adm1025.rst
480 F:      drivers/hwmon/adm1025.c
481
482 ADM1029 HARDWARE MONITOR DRIVER
483 M:      Corentin Labbe <[email protected]>
484 L:      [email protected]
485 S:      Maintained
486 F:      drivers/hwmon/adm1029.c
487
488 ADM8211 WIRELESS DRIVER
489 L:      [email protected]
490 W:      http://wireless.kernel.org/
491 S:      Orphan
492 F:      drivers/net/wireless/admtek/adm8211.*
493
494 ADP1653 FLASH CONTROLLER DRIVER
495 M:      Sakari Ailus <[email protected]>
496 L:      [email protected]
497 S:      Maintained
498 F:      drivers/media/i2c/adp1653.c
499 F:      include/media/i2c/adp1653.h
500
501 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
502 M:      Michael Hennerich <[email protected]>
503 W:      http://wiki.analog.com/ADP5520
504 W:      http://ez.analog.com/community/linux-device-drivers
505 S:      Supported
506 F:      drivers/mfd/adp5520.c
507 F:      drivers/video/backlight/adp5520_bl.c
508 F:      drivers/leds/leds-adp5520.c
509 F:      drivers/gpio/gpio-adp5520.c
510 F:      drivers/input/keyboard/adp5520-keys.c
511
512 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
513 M:      Michael Hennerich <[email protected]>
514 W:      http://wiki.analog.com/ADP5588
515 W:      http://ez.analog.com/community/linux-device-drivers
516 S:      Supported
517 F:      drivers/input/keyboard/adp5588-keys.c
518 F:      drivers/gpio/gpio-adp5588.c
519
520 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
521 M:      Michael Hennerich <[email protected]>
522 W:      http://wiki.analog.com/ADP8860
523 W:      http://ez.analog.com/community/linux-device-drivers
524 S:      Supported
525 F:      drivers/video/backlight/adp8860_bl.c
526
527 ADT746X FAN DRIVER
528 M:      Colin Leroy <[email protected]>
529 S:      Maintained
530 F:      drivers/macintosh/therm_adt746x.c
531
532 ADT7475 HARDWARE MONITOR DRIVER
533 M:      Jean Delvare <[email protected]>
534 L:      [email protected]
535 S:      Maintained
536 F:      Documentation/hwmon/adt7475.rst
537 F:      drivers/hwmon/adt7475.c
538
539 ADVANSYS SCSI DRIVER
540 M:      Matthew Wilcox <[email protected]>
541 M:      Hannes Reinecke <[email protected]>
542 L:      [email protected]
543 S:      Maintained
544 F:      Documentation/scsi/advansys.rst
545 F:      drivers/scsi/advansys.c
546
547 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
548 M:      Michael Hennerich <[email protected]>
549 W:      http://wiki.analog.com/ADXL345
550 W:      http://ez.analog.com/community/linux-device-drivers
551 S:      Supported
552 F:      drivers/input/misc/adxl34x.c
553 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
554
555 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
556 M:      Stefan Popa <[email protected]>
557 W:      http://ez.analog.com/community/linux-device-drivers
558 S:      Supported
559 F:      drivers/iio/accel/adxl372.c
560 F:      drivers/iio/accel/adxl372_spi.c
561 F:      drivers/iio/accel/adxl372_i2c.c
562 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
563
564 AF9013 MEDIA DRIVER
565 M:      Antti Palosaari <[email protected]>
566 L:      [email protected]
567 W:      https://linuxtv.org
568 W:      http://palosaari.fi/linux/
569 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
570 T:      git git://linuxtv.org/anttip/media_tree.git
571 S:      Maintained
572 F:      drivers/media/dvb-frontends/af9013*
573
574 AF9033 MEDIA DRIVER
575 M:      Antti Palosaari <[email protected]>
576 L:      [email protected]
577 W:      https://linuxtv.org
578 W:      http://palosaari.fi/linux/
579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
580 T:      git git://linuxtv.org/anttip/media_tree.git
581 S:      Maintained
582 F:      drivers/media/dvb-frontends/af9033*
583
584 AFFS FILE SYSTEM
585 M:      David Sterba <[email protected]>
586 L:      [email protected]
587 S:      Odd Fixes
588 F:      Documentation/filesystems/affs.rst
589 F:      fs/affs/
590
591 AFS FILESYSTEM
592 M:      David Howells <[email protected]>
593 L:      [email protected]
594 S:      Supported
595 F:      fs/afs/
596 F:      include/trace/events/afs.h
597 F:      Documentation/filesystems/afs.rst
598 W:      https://www.infradead.org/~dhowells/kafs/
599
600 AGPGART DRIVER
601 M:      David Airlie <[email protected]>
602 T:      git git://anongit.freedesktop.org/drm/drm
603 S:      Maintained
604 F:      drivers/char/agp/
605 F:      include/linux/agp*
606 F:      include/uapi/linux/agp*
607
608 AHA152X SCSI DRIVER
609 M:      "Juergen E. Fischer" <[email protected]>
610 L:      [email protected]
611 S:      Maintained
612 F:      drivers/scsi/aha152x*
613 F:      drivers/scsi/pcmcia/aha152x*
614
615 AIC7XXX / AIC79XX SCSI DRIVER
616 M:      Hannes Reinecke <[email protected]>
617 L:      [email protected]
618 S:      Maintained
619 F:      drivers/scsi/aic7xxx/
620
621 AIMSLAB FM RADIO RECEIVER DRIVER
622 M:      Hans Verkuil <[email protected]>
623 L:      [email protected]
624 T:      git git://linuxtv.org/media_tree.git
625 W:      https://linuxtv.org
626 S:      Maintained
627 F:      drivers/media/radio/radio-aimslab*
628
629 AIO
630 M:      Benjamin LaHaise <[email protected]>
631 L:      [email protected]
632 S:      Supported
633 F:      fs/aio.c
634 F:      include/linux/*aio*.h
635
636 AIRSPY MEDIA DRIVER
637 M:      Antti Palosaari <[email protected]>
638 L:      [email protected]
639 W:      https://linuxtv.org
640 W:      http://palosaari.fi/linux/
641 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
642 T:      git git://linuxtv.org/anttip/media_tree.git
643 S:      Maintained
644 F:      drivers/media/usb/airspy/
645
646 ALACRITECH GIGABIT ETHERNET DRIVER
647 M:      Lino Sanfilippo <[email protected]>
648 S:      Maintained
649 F:      drivers/net/ethernet/alacritech/*
650
651 FORCEDETH GIGABIT ETHERNET DRIVER
652 M:      Rain River <[email protected]>
653 M:      Zhu Yanjun <[email protected]>
654 L:      [email protected]
655 S:      Maintained
656 F:      drivers/net/ethernet/nvidia/*
657
658 ALCATEL SPEEDTOUCH USB DRIVER
659 M:      Duncan Sands <[email protected]>
660 L:      [email protected]
661 W:      http://www.linux-usb.org/SpeedTouch/
662 S:      Maintained
663 F:      drivers/usb/atm/speedtch.c
664 F:      drivers/usb/atm/usbatm.c
665
666 ALCHEMY AU1XX0 MMC DRIVER
667 M:      Manuel Lauss <[email protected]>
668 S:      Maintained
669 F:      drivers/mmc/host/au1xmmc.c
670
671 ALI1563 I2C DRIVER
672 M:      Rudolf Marek <[email protected]>
673 L:      [email protected]
674 S:      Maintained
675 F:      Documentation/i2c/busses/i2c-ali1563.rst
676 F:      drivers/i2c/busses/i2c-ali1563.c
677
678 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
679 M:      Tomislav Denis <[email protected]>
680 W:      http://www.allsensors.com/
681 S:      Maintained
682 L:      [email protected]
683 F:      drivers/iio/pressure/dlhl60d.c
684 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
685
686 ALLEGRO DVT VIDEO IP CORE DRIVER
687 M:      Michael Tretter <[email protected]>
688 R:      Pengutronix Kernel Team <[email protected]>
689 L:      [email protected]
690 S:      Maintained
691 F:      drivers/staging/media/allegro-dvt/
692
693 ALLWINNER CPUFREQ DRIVER
694 M:      Yangtao Li <[email protected]>
695 L:      [email protected]
696 S:      Maintained
697 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
698 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
699
700 ALLWINNER CRYPTO DRIVERS
701 M:      Corentin Labbe <[email protected]>
702 L:      [email protected]
703 S:      Maintained
704 F:      drivers/crypto/allwinner/
705
706 ALLWINNER THERMAL DRIVER
707 M:      Vasily Khoruzhick <[email protected]>
708 M:      Yangtao Li <[email protected]>
709 L:      [email protected]
710 S:      Maintained
711 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
712 F:      drivers/thermal/sun8i_thermal.c
713
714 ALLWINNER VPU DRIVER
715 M:      Maxime Ripard <[email protected]>
716 M:      Paul Kocialkowski <[email protected]>
717 L:      [email protected]
718 S:      Maintained
719 F:      drivers/staging/media/sunxi/cedrus/
720
721 ALPHA PORT
722 M:      Richard Henderson <[email protected]>
723 M:      Ivan Kokshaysky <[email protected]>
724 M:      Matt Turner <[email protected]>
725 S:      Odd Fixes
726 L:      [email protected]
727 F:      arch/alpha/
728
729 ALPS PS/2 TOUCHPAD DRIVER
730 R:      Pali Rohár <[email protected]>
731 F:      drivers/input/mouse/alps.*
732
733 ALTERA I2C CONTROLLER DRIVER
734 M:      Thor Thayer <[email protected]>
735 S:      Maintained
736 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
737 F:      drivers/i2c/busses/i2c-altera.c
738
739 ALTERA MAILBOX DRIVER
740 M:      Ley Foon Tan <[email protected]>
741 L:      [email protected] (moderated for non-subscribers)
742 S:      Maintained
743 F:      drivers/mailbox/mailbox-altera.c
744
745 ALTERA PIO DRIVER
746 M:      Joyce Ooi <[email protected]>
747 L:      [email protected]
748 S:      Maintained
749 F:      drivers/gpio/gpio-altera.c
750
751 ALTERA SYSTEM MANAGER DRIVER
752 M:      Thor Thayer <[email protected]>
753 S:      Maintained
754 F:      drivers/mfd/altera-sysmgr.c
755 F:      include/linux/mfd/altera-sysmgr.h
756
757 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
758 M:      Thor Thayer <[email protected]>
759 S:      Maintained
760 F:      drivers/gpio/gpio-altera-a10sr.c
761 F:      drivers/mfd/altera-a10sr.c
762 F:      drivers/reset/reset-a10sr.c
763 F:      include/linux/mfd/altera-a10sr.h
764 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
765
766 ALTERA TRIPLE SPEED ETHERNET DRIVER
767 M:      Thor Thayer <[email protected]>
768 L:      [email protected]
769 L:      [email protected] (moderated for non-subscribers)
770 S:      Maintained
771 F:      drivers/net/ethernet/altera/
772
773 ALTERA UART/JTAG UART SERIAL DRIVERS
774 M:      Tobias Klauser <[email protected]>
775 L:      [email protected]
776 L:      [email protected] (moderated for non-subscribers)
777 S:      Maintained
778 F:      drivers/tty/serial/altera_uart.c
779 F:      drivers/tty/serial/altera_jtaguart.c
780 F:      include/linux/altera_uart.h
781 F:      include/linux/altera_jtaguart.h
782
783 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
784 M:      Talel Shenhar <[email protected]>
785 S:      Maintained
786 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
787 F:      drivers/thermal/thermal_mmio.c
788
789 AMAZON ETHERNET DRIVERS
790 M:      Netanel Belgazal <[email protected]>
791 M:      Arthur Kiyanovski <[email protected]>
792 R:      Guy Tzalik <[email protected]>
793 R:      Saeed Bishara <[email protected]>
794 R:      Zorik Machulsky <[email protected]>
795 L:      [email protected]
796 S:      Supported
797 F:      Documentation/networking/device_drivers/amazon/ena.txt
798 F:      drivers/net/ethernet/amazon/
799
800 AMAZON RDMA EFA DRIVER
801 M:      Gal Pressman <[email protected]>
802 R:      Yossi Leybovich <[email protected]>
803 L:      [email protected]
804 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
805 S:      Supported
806 F:      drivers/infiniband/hw/efa/
807 F:      include/uapi/rdma/efa-abi.h
808
809 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
810 M:      Tom Lendacky <[email protected]>
811 L:      [email protected]
812 S:      Supported
813 F:      drivers/crypto/ccp/
814 F:      include/linux/ccp.h
815
816 AMD DISPLAY CORE
817 M:      Harry Wentland <[email protected]>
818 M:      Leo Li <[email protected]>
819 L:      [email protected]
820 T:      git git://people.freedesktop.org/~agd5f/linux
821 S:      Supported
822 F:      drivers/gpu/drm/amd/display/
823
824 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
825 M:      Huang Rui <[email protected]>
826 L:      [email protected]
827 S:      Supported
828 F:      Documentation/hwmon/fam15h_power.rst
829 F:      drivers/hwmon/fam15h_power.c
830
831 AMD FCH GPIO DRIVER
832 M:      Enrico Weigelt, metux IT consult <[email protected]>
833 L:      [email protected]
834 S:      Maintained
835 F:      drivers/gpio/gpio-amd-fch.c
836 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
837
838 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
839 L:      [email protected] (moderated for non-subscribers)
840 S:      Orphan
841 F:      drivers/usb/gadget/udc/amd5536udc.*
842
843 AMD GEODE PROCESSOR/CHIPSET SUPPORT
844 M:      Andres Salomon <[email protected]>
845 L:      [email protected] (moderated for non-subscribers)
846 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
847 S:      Supported
848 F:      drivers/char/hw_random/geode-rng.c
849 F:      drivers/crypto/geode*
850 F:      drivers/video/fbdev/geode/
851 F:      arch/x86/include/asm/geode.h
852
853 AMD IOMMU (AMD-VI)
854 M:      Joerg Roedel <[email protected]>
855 L:      [email protected]
856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
857 S:      Maintained
858 F:      drivers/iommu/amd_iommu*.[ch]
859 F:      include/linux/amd-iommu.h
860
861 AMD KFD
862 M:      Felix Kuehling <[email protected]>
863 L:      [email protected]
864 T:      git git://people.freedesktop.org/~agd5f/linux
865 S:      Supported
866 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
867 F:      drivers/gpu/drm/amd/amdkfd/
868 F:      drivers/gpu/drm/amd/include/cik_structs.h
869 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
870 F:      drivers/gpu/drm/amd/include/vi_structs.h
871 F:      drivers/gpu/drm/amd/include/v9_structs.h
872 F:      include/uapi/linux/kfd_ioctl.h
873
874 AMD MP2 I2C DRIVER
875 M:      Elie Morisse <[email protected]>
876 M:      Nehal Shah <[email protected]>
877 M:      Shyam Sundar S K <[email protected]>
878 L:      [email protected]
879 S:      Maintained
880 F:      drivers/i2c/busses/i2c-amd-mp2*
881
882 AMD POWERPLAY
883 M:      Evan Quan <[email protected]>
884 L:      [email protected]
885 S:      Supported
886 F:      drivers/gpu/drm/amd/powerplay/
887 T:      git git://people.freedesktop.org/~agd5f/linux
888
889 AMD SEATTLE DEVICE TREE SUPPORT
890 M:      Brijesh Singh <[email protected]>
891 M:      Suravee Suthikulpanit <[email protected]>
892 M:      Tom Lendacky <[email protected]>
893 S:      Supported
894 F:      arch/arm64/boot/dts/amd/
895
896 AMD XGBE DRIVER
897 M:      Tom Lendacky <[email protected]>
898 L:      [email protected]
899 S:      Supported
900 F:      drivers/net/ethernet/amd/xgbe/
901 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
902
903 ANALOG DEVICES INC AD5686 DRIVER
904 M:      Stefan Popa <[email protected]>
905 L:      [email protected]
906 W:      http://ez.analog.com/community/linux-device-drivers
907 S:      Supported
908 F:      drivers/iio/dac/ad5686*
909 F:      drivers/iio/dac/ad5696*
910
911 ANALOG DEVICES INC AD5758 DRIVER
912 M:      Stefan Popa <[email protected]>
913 L:      [email protected]
914 W:      http://ez.analog.com/community/linux-device-drivers
915 S:      Supported
916 F:      drivers/iio/dac/ad5758.c
917 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
918
919 ANALOG DEVICES INC AD7091R5 DRIVER
920 M:      Beniamin Bia <[email protected]>
921 L:      [email protected]
922 W:      http://ez.analog.com/community/linux-device-drivers
923 S:      Supported
924 F:      drivers/iio/adc/ad7091r5.c
925 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
926
927 ANALOG DEVICES INC AD7124 DRIVER
928 M:      Stefan Popa <[email protected]>
929 L:      [email protected]
930 W:      http://ez.analog.com/community/linux-device-drivers
931 S:      Supported
932 F:      drivers/iio/adc/ad7124.c
933 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
934
935 ANALOG DEVICES INC AD7192 DRIVER
936 M:      Alexandru Tachici <[email protected]>
937 L:      [email protected]
938 W:      http://ez.analog.com/community/linux-device-drivers
939 S:      Supported
940 F:      drivers/iio/adc/ad7192.c
941 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
942
943 ANALOG DEVICES INC AD7292 DRIVER
944 M:      Marcelo Schmitt <[email protected]>
945 L:      [email protected]
946 W:      http://ez.analog.com/community/linux-device-drivers
947 S:      Supported
948 F:      drivers/iio/adc/ad7292.c
949 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
950
951 ANALOG DEVICES INC AD7606 DRIVER
952 M:      Stefan Popa <[email protected]>
953 M:      Beniamin Bia <[email protected]>
954 L:      [email protected]
955 W:      http://ez.analog.com/community/linux-device-drivers
956 S:      Supported
957 F:      drivers/iio/adc/ad7606.c
958 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
959
960 ANALOG DEVICES INC AD7768-1 DRIVER
961 M:      Stefan Popa <[email protected]>
962 L:      [email protected]
963 W:      http://ez.analog.com/community/linux-device-drivers
964 S:      Supported
965 F:      drivers/iio/adc/ad7768-1.c
966 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
967
968 ANALOG DEVICES INC AD7780 DRIVER
969 M:      Michael Hennerich <[email protected]>
970 M:      Renato Lui Geh <[email protected]>
971 L:      [email protected]
972 W:      http://ez.analog.com/community/linux-device-drivers
973 S:      Supported
974 F:      drivers/iio/adc/ad7780.c
975 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
976
977 ANALOG DEVICES INC AD9389B DRIVER
978 M:      Hans Verkuil <[email protected]>
979 L:      [email protected]
980 S:      Maintained
981 F:      drivers/media/i2c/ad9389b*
982
983 ANALOG DEVICES INC ADGS1408 DRIVER
984 M:      Mircea Caprioru <[email protected]>
985 S:      Supported
986 F:      drivers/mux/adgs1408.c
987 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
988
989 ANALOG DEVICES INC ADIN DRIVER
990 M:      Alexandru Ardelean <[email protected]>
991 L:      [email protected]
992 W:      http://ez.analog.com/community/linux-device-drivers
993 S:      Supported
994 F:      drivers/net/phy/adin.c
995 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
996
997 ANALOG DEVICES INC ADIS DRIVER LIBRARY
998 M:      Alexandru Ardelean <[email protected]>
999 S:      Supported
1000 L:      [email protected]
1001 F:      include/linux/iio/imu/adis.h
1002 F:      drivers/iio/imu/adis.c
1003
1004 ANALOG DEVICES INC ADIS16460 DRIVER
1005 M:      Dragos Bogdan <[email protected]>
1006 S:      Supported
1007 L:      [email protected]
1008 W:      http://ez.analog.com/community/linux-device-drivers
1009 F:      drivers/iio/imu/adis16460.c
1010 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1011
1012 ANALOG DEVICES INC ADM1177 DRIVER
1013 M:      Beniamin Bia <[email protected]>
1014 M:      Michael Hennerich <[email protected]>
1015 L:      [email protected]
1016 W:      http://ez.analog.com/community/linux-device-drivers
1017 S:      Supported
1018 F:      drivers/hwmon/adm1177.c
1019 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1020
1021 ANALOG DEVICES INC ADP5061 DRIVER
1022 M:      Stefan Popa <[email protected]>
1023 L:      [email protected]
1024 W:      http://ez.analog.com/community/linux-device-drivers
1025 S:      Supported
1026 F:      drivers/power/supply/adp5061.c
1027
1028 ANALOG DEVICES INC ADV7180 DRIVER
1029 M:      Lars-Peter Clausen <[email protected]>
1030 L:      [email protected]
1031 W:      http://ez.analog.com/community/linux-device-drivers
1032 S:      Supported
1033 F:      drivers/media/i2c/adv7180.c
1034
1035 ANALOG DEVICES INC ADV748X DRIVER
1036 M:      Kieran Bingham <[email protected]>
1037 L:      [email protected]
1038 S:      Maintained
1039 F:      drivers/media/i2c/adv748x/*
1040
1041 ANALOG DEVICES INC ADV7511 DRIVER
1042 M:      Hans Verkuil <[email protected]>
1043 L:      [email protected]
1044 S:      Maintained
1045 F:      drivers/media/i2c/adv7511*
1046
1047 ANALOG DEVICES INC ADV7604 DRIVER
1048 M:      Hans Verkuil <[email protected]>
1049 L:      [email protected]
1050 S:      Maintained
1051 F:      drivers/media/i2c/adv7604*
1052
1053 ANALOG DEVICES INC ADV7842 DRIVER
1054 M:      Hans Verkuil <[email protected]>
1055 L:      [email protected]
1056 S:      Maintained
1057 F:      drivers/media/i2c/adv7842*
1058
1059 ANALOG DEVICES INC ASOC CODEC DRIVERS
1060 M:      Lars-Peter Clausen <[email protected]>
1061 M:      Nuno Sá <[email protected]>
1062 L:      [email protected] (moderated for non-subscribers)
1063 W:      http://wiki.analog.com/
1064 W:      http://ez.analog.com/community/linux-device-drivers
1065 S:      Supported
1066 F:      sound/soc/codecs/adau*
1067 F:      sound/soc/codecs/adav*
1068 F:      sound/soc/codecs/ad1*
1069 F:      sound/soc/codecs/ad7*
1070 F:      sound/soc/codecs/ssm*
1071 F:      sound/soc/codecs/sigmadsp.*
1072
1073 ANALOG DEVICES INC DMA DRIVERS
1074 M:      Lars-Peter Clausen <[email protected]>
1075 W:      http://ez.analog.com/community/linux-device-drivers
1076 S:      Supported
1077 F:      drivers/dma/dma-axi-dmac.c
1078
1079 ANALOG DEVICES INC IIO DRIVERS
1080 M:      Lars-Peter Clausen <[email protected]>
1081 M:      Michael Hennerich <[email protected]>
1082 M:      Stefan Popa <[email protected]>
1083 W:      http://wiki.analog.com/
1084 W:      http://ez.analog.com/community/linux-device-drivers
1085 S:      Supported
1086 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1087 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1088 F:      drivers/iio/*/ad*
1089 F:      drivers/iio/adc/ltc249*
1090 X:      drivers/iio/*/adjd*
1091 F:      drivers/staging/iio/*/ad*
1092
1093 ANALOG DEVICES INC HMC425A DRIVER
1094 M:      Beniamin Bia <[email protected]>
1095 M:      Michael Hennerich <[email protected]>
1096 L:      [email protected]
1097 S:      Supported
1098 W:      http://ez.analog.com/community/linux-device-drivers
1099 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1100 F:      drivers/iio/amplifiers/hmc425a.c
1101
1102 ANALOGBITS PLL LIBRARIES
1103 M:      Paul Walmsley <[email protected]>
1104 S:      Supported
1105 F:      drivers/clk/analogbits/*
1106 F:      include/linux/clk/analogbits*
1107
1108 ANDES ARCHITECTURE
1109 M:      Nick Hu <[email protected]>
1110 M:      Greentime Hu <[email protected]>
1111 M:      Vincent Chen <[email protected]>
1112 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1113 S:      Supported
1114 F:      arch/nds32/
1115 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1116 F:      Documentation/devicetree/bindings/nds32/
1117 K:      nds32
1118 N:      nds32
1119
1120 ANDROID CONFIG FRAGMENTS
1121 M:      Rob Herring <[email protected]>
1122 S:      Supported
1123 F:      kernel/configs/android*
1124
1125 ANDROID DRIVERS
1126 M:      Greg Kroah-Hartman <[email protected]>
1127 M:      Arve Hjønnevåg <[email protected]>
1128 M:      Todd Kjos <[email protected]>
1129 M:      Martijn Coenen <[email protected]>
1130 M:      Joel Fernandes <[email protected]>
1131 M:      Christian Brauner <[email protected]>
1132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1133 L:      [email protected]
1134 S:      Supported
1135 F:      drivers/android/
1136 F:      drivers/staging/android/
1137
1138 ANDROID GOLDFISH PIC DRIVER
1139 M:      Miodrag Dinic <[email protected]>
1140 S:      Supported
1141 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1142 F:      drivers/irqchip/irq-goldfish-pic.c
1143
1144 ANDROID GOLDFISH RTC DRIVER
1145 M:      Miodrag Dinic <[email protected]>
1146 S:      Supported
1147 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1148 F:      drivers/rtc/rtc-goldfish.c
1149
1150 ANDROID ION DRIVER
1151 M:      Laura Abbott <[email protected]>
1152 M:      Sumit Semwal <[email protected]>
1153 L:      [email protected]
1154 L:      [email protected]
1155 L:      [email protected] (moderated for non-subscribers)
1156 S:      Supported
1157 F:      drivers/staging/android/ion
1158 F:      drivers/staging/android/uapi/ion.h
1159
1160 AOA (Apple Onboard Audio) ALSA DRIVER
1161 M:      Johannes Berg <[email protected]>
1162 L:      [email protected]
1163 L:      [email protected] (moderated for non-subscribers)
1164 S:      Maintained
1165 F:      sound/aoa/
1166
1167 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1168 M:      William Breathitt Gray <[email protected]>
1169 L:      [email protected]
1170 S:      Maintained
1171 F:      drivers/iio/adc/stx104.c
1172
1173 APM DRIVER
1174 M:      Jiri Kosina <[email protected]>
1175 S:      Odd fixes
1176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1177 F:      arch/x86/kernel/apm_32.c
1178 F:      include/linux/apm_bios.h
1179 F:      include/uapi/linux/apm_bios.h
1180 F:      drivers/char/apm-emulation.c
1181
1182 APPARMOR SECURITY MODULE
1183 M:      John Johansen <[email protected]>
1184 L:      [email protected] (subscribers-only, general discussion)
1185 W:      wiki.apparmor.net
1186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1187 S:      Supported
1188 F:      security/apparmor/
1189 F:      Documentation/admin-guide/LSM/apparmor.rst
1190
1191 APPLE BCM5974 MULTITOUCH DRIVER
1192 M:      Henrik Rydberg <[email protected]>
1193 L:      [email protected]
1194 S:      Odd fixes
1195 F:      drivers/input/mouse/bcm5974.c
1196
1197 APPLE SMC DRIVER
1198 M:      Henrik Rydberg <[email protected]>
1199 L:      [email protected]
1200 S:      Odd fixes
1201 F:      drivers/hwmon/applesmc.c
1202
1203 APPLETALK NETWORK LAYER
1204 L:      [email protected]
1205 S:      Odd fixes
1206 F:      drivers/net/appletalk/
1207 F:      net/appletalk/
1208 F:      include/linux/atalk.h
1209 F:      include/uapi/linux/atalk.h
1210
1211 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1212 M:      Khuong Dinh <[email protected]>
1213 S:      Supported
1214 F:      arch/arm64/boot/dts/apm/
1215
1216 APPLIED MICRO (APM) X-GENE SOC EDAC
1217 M:      Khuong Dinh <[email protected]>
1218 S:      Supported
1219 F:      drivers/edac/xgene_edac.c
1220 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1221
1222 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1223 M:      Iyappan Subramanian <[email protected]>
1224 M:      Keyur Chudgar <[email protected]>
1225 S:      Supported
1226 F:      drivers/net/ethernet/apm/xgene-v2/
1227
1228 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1229 M:      Iyappan Subramanian <[email protected]>
1230 M:      Keyur Chudgar <[email protected]>
1231 M:      Quan Nguyen <[email protected]>
1232 S:      Supported
1233 F:      drivers/net/ethernet/apm/xgene/
1234 F:      drivers/net/phy/mdio-xgene.c
1235 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1236 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1237
1238 APPLIED MICRO (APM) X-GENE SOC PMU
1239 M:      Khuong Dinh <[email protected]>
1240 S:      Supported
1241 F:      drivers/perf/xgene_pmu.c
1242 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1243 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1244
1245 APTINA CAMERA SENSOR PLL
1246 M:      Laurent Pinchart <[email protected]>
1247 L:      [email protected]
1248 S:      Maintained
1249 F:      drivers/media/i2c/aptina-pll.*
1250
1251 AQUANTIA ETHERNET DRIVER (atlantic)
1252 M:      Igor Russkikh <[email protected]>
1253 L:      [email protected]
1254 S:      Supported
1255 W:      https://www.marvell.com/
1256 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1257 F:      drivers/net/ethernet/aquantia/atlantic/
1258 F:      Documentation/networking/device_drivers/aquantia/atlantic.txt
1259
1260 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1261 M:      Egor Pomozov <[email protected]>
1262 L:      [email protected]
1263 S:      Supported
1264 W:      http://www.aquantia.com
1265 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1266
1267 ARC FRAMEBUFFER DRIVER
1268 M:      Jaya Kumar <[email protected]>
1269 S:      Maintained
1270 F:      drivers/video/fbdev/arcfb.c
1271 F:      drivers/video/fbdev/core/fb_defio.c
1272
1273 ARC PGU DRM DRIVER
1274 M:      Alexey Brodkin <[email protected]>
1275 S:      Supported
1276 F:      drivers/gpu/drm/arc/
1277 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1278
1279 ARCNET NETWORK LAYER
1280 M:      Michael Grzeschik <[email protected]>
1281 L:      [email protected]
1282 S:      Maintained
1283 F:      drivers/net/arcnet/
1284 F:      include/uapi/linux/if_arcnet.h
1285
1286 ARM ARCHITECTED TIMER DRIVER
1287 M:      Mark Rutland <[email protected]>
1288 M:      Marc Zyngier <[email protected]>
1289 L:      [email protected] (moderated for non-subscribers)
1290 S:      Maintained
1291 F:      arch/arm/include/asm/arch_timer.h
1292 F:      arch/arm64/include/asm/arch_timer.h
1293 F:      drivers/clocksource/arm_arch_timer.c
1294
1295 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1296 M:      Linus Walleij <[email protected]>
1297 L:      [email protected] (moderated for non-subscribers)
1298 S:      Maintained
1299 F:      Documentation/devicetree/bindings/arm/arm-boards
1300 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1301 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1302 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1303 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1304 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1305 F:      arch/arm/mach-integrator/
1306 F:      arch/arm/mach-realview/
1307 F:      arch/arm/mach-versatile/
1308 F:      arch/arm/plat-versatile/
1309 F:      arch/arm/boot/dts/arm-realview-*
1310 F:      arch/arm/boot/dts/integrator*
1311 F:      arch/arm/boot/dts/versatile*
1312 F:      drivers/clk/versatile/
1313 F:      drivers/i2c/busses/i2c-versatile.c
1314 F:      drivers/irqchip/irq-versatile-fpga.c
1315 F:      drivers/mtd/maps/physmap_of_versatile.c
1316 F:      drivers/power/reset/arm-versatile-reboot.c
1317 F:      drivers/soc/versatile/
1318
1319 ARM HDLCD DRM DRIVER
1320 M:      Liviu Dudau <[email protected]>
1321 S:      Supported
1322 F:      drivers/gpu/drm/arm/hdlcd_*
1323 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1324
1325 ARM KOMEDA DRM-KMS DRIVER
1326 M:      James (Qian) Wang <[email protected]>
1327 M:      Liviu Dudau <[email protected]>
1328 M:      Mihail Atanassov <[email protected]>
1329 L:      Mali DP Maintainers <[email protected]>
1330 S:      Supported
1331 T:      git git://anongit.freedesktop.org/drm/drm-misc
1332 F:      drivers/gpu/drm/arm/display/include/
1333 F:      drivers/gpu/drm/arm/display/komeda/
1334 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1335 F:      Documentation/gpu/komeda-kms.rst
1336
1337 ARM MALI-DP DRM DRIVER
1338 M:      Liviu Dudau <[email protected]>
1339 M:      Brian Starkey <[email protected]>
1340 L:      Mali DP Maintainers <[email protected]>
1341 S:      Supported
1342 T:      git git://anongit.freedesktop.org/drm/drm-misc
1343 F:      drivers/gpu/drm/arm/
1344 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1345 F:      Documentation/gpu/afbc.rst
1346
1347 ARM MALI PANFROST DRM DRIVER
1348 M:      Rob Herring <[email protected]>
1349 M:      Tomeu Vizoso <[email protected]>
1350 R:      Steven Price <[email protected]>
1351 R:      Alyssa Rosenzweig <[email protected]>
1352 L:      [email protected]
1353 S:      Supported
1354 T:      git git://anongit.freedesktop.org/drm/drm-misc
1355 F:      drivers/gpu/drm/panfrost/
1356 F:      include/uapi/drm/panfrost_drm.h
1357
1358 ARM MFM AND FLOPPY DRIVERS
1359 M:      Ian Molton <[email protected]>
1360 S:      Maintained
1361 F:      arch/arm/mach-rpc/floppydma.S
1362 F:      arch/arm/include/asm/floppy.h
1363
1364 ARM PMU PROFILING AND DEBUGGING
1365 M:      Will Deacon <[email protected]>
1366 M:      Mark Rutland <[email protected]>
1367 S:      Maintained
1368 L:      [email protected] (moderated for non-subscribers)
1369 F:      arch/arm*/kernel/perf_*
1370 F:      arch/arm/oprofile/common.c
1371 F:      arch/arm*/kernel/hw_breakpoint.c
1372 F:      arch/arm*/include/asm/hw_breakpoint.h
1373 F:      arch/arm*/include/asm/perf_event.h
1374 F:      drivers/perf/*
1375 F:      include/linux/perf/arm_pmu.h
1376 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1377 F:      Documentation/devicetree/bindings/perf/
1378
1379 ARM PORT
1380 M:      Russell King <[email protected]>
1381 L:      [email protected] (moderated for non-subscribers)
1382 W:      http://www.armlinux.org.uk/
1383 S:      Odd Fixes
1384 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1385 F:      arch/arm/
1386 X:      arch/arm/boot/dts/
1387
1388 ARM PRIMECELL AACI PL041 DRIVER
1389 M:      Russell King <[email protected]>
1390 S:      Odd Fixes
1391 F:      sound/arm/aaci.*
1392
1393 ARM PRIMECELL BUS SUPPORT
1394 M:      Russell King <[email protected]>
1395 S:      Odd Fixes
1396 F:      drivers/amba/
1397 F:      include/linux/amba/bus.h
1398
1399 ARM PRIMECELL CLCD PL110 DRIVER
1400 M:      Russell King <[email protected]>
1401 S:      Odd Fixes
1402 F:      drivers/video/fbdev/amba-clcd.*
1403
1404 ARM PRIMECELL KMI PL050 DRIVER
1405 M:      Russell King <[email protected]>
1406 S:      Odd Fixes
1407 F:      drivers/input/serio/ambakmi.*
1408 F:      include/linux/amba/kmi.h
1409
1410 ARM PRIMECELL MMCI PL180/1 DRIVER
1411 M:      Russell King <[email protected]>
1412 S:      Odd Fixes
1413 F:      drivers/mmc/host/mmci.*
1414 F:      include/linux/amba/mmci.h
1415
1416 ARM PRIMECELL SSP PL022 SPI DRIVER
1417 M:      Linus Walleij <[email protected]>
1418 L:      [email protected] (moderated for non-subscribers)
1419 S:      Maintained
1420 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1421 F:      drivers/spi/spi-pl022.c
1422
1423 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1424 M:      Russell King <[email protected]>
1425 S:      Odd Fixes
1426 F:      drivers/tty/serial/amba-pl01*.c
1427 F:      include/linux/amba/serial.h
1428
1429 ARM PRIMECELL VIC PL190/PL192 DRIVER
1430 M:      Linus Walleij <[email protected]>
1431 L:      [email protected] (moderated for non-subscribers)
1432 S:      Maintained
1433 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1434 F:      drivers/irqchip/irq-vic.c
1435
1436 AMAZON ANNAPURNA LABS FIC DRIVER
1437 M:      Talel Shenhar <[email protected]>
1438 S:      Maintained
1439 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
1440 F:      drivers/irqchip/irq-al-fic.c
1441
1442 ARM SMMU DRIVERS
1443 M:      Will Deacon <[email protected]>
1444 R:      Robin Murphy <[email protected]>
1445 L:      [email protected] (moderated for non-subscribers)
1446 S:      Maintained
1447 F:      drivers/iommu/arm-smmu*
1448 F:      drivers/iommu/io-pgtable-arm.c
1449 F:      drivers/iommu/io-pgtable-arm-v7s.c
1450
1451 ARM SUB-ARCHITECTURES
1452 L:      [email protected] (moderated for non-subscribers)
1453 S:      Maintained
1454 F:      arch/arm/mach-*/
1455 F:      arch/arm/plat-*/
1456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1457
1458 ARM/ACTIONS SEMI ARCHITECTURE
1459 M:      Andreas Färber <[email protected]>
1460 M:      Manivannan Sadhasivam <[email protected]>
1461 L:      [email protected] (moderated for non-subscribers)
1462 S:      Maintained
1463 N:      owl
1464 F:      arch/arm/mach-actions/
1465 F:      arch/arm/boot/dts/owl-*
1466 F:      arch/arm64/boot/dts/actions/
1467 F:      drivers/clk/actions/
1468 F:      drivers/clocksource/timer-owl*
1469 F:      drivers/dma/owl-dma.c
1470 F:      drivers/i2c/busses/i2c-owl.c
1471 F:      drivers/mmc/host/owl-mmc.c
1472 F:      drivers/pinctrl/actions/*
1473 F:      drivers/soc/actions/
1474 F:      include/dt-bindings/power/owl-*
1475 F:      include/linux/soc/actions/
1476 F:      Documentation/devicetree/bindings/arm/actions.yaml
1477 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1478 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1479 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1480 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1481 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1482 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1483 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1484
1485 ARM/ADS SPHERE MACHINE SUPPORT
1486 M:      Lennert Buytenhek <[email protected]>
1487 L:      [email protected] (moderated for non-subscribers)
1488 S:      Maintained
1489
1490 ARM/AFEB9260 MACHINE SUPPORT
1491 M:      Sergey Lapin <[email protected]>
1492 L:      [email protected] (moderated for non-subscribers)
1493 S:      Maintained
1494
1495 ARM/AJECO 1ARM MACHINE SUPPORT
1496 M:      Lennert Buytenhek <[email protected]>
1497 L:      [email protected] (moderated for non-subscribers)
1498 S:      Maintained
1499
1500 ARM/Allwinner SoC Clock Support
1501 M:      Emilio López <[email protected]>
1502 S:      Maintained
1503 F:      drivers/clk/sunxi/
1504
1505 ARM/Allwinner sunXi SoC support
1506 M:      Maxime Ripard <[email protected]>
1507 M:      Chen-Yu Tsai <[email protected]>
1508 L:      [email protected] (moderated for non-subscribers)
1509 S:      Maintained
1510 N:      sun[x456789]i
1511 N:      sun50i
1512 F:      arch/arm/mach-sunxi/
1513 F:      arch/arm64/boot/dts/allwinner/
1514 F:      drivers/clk/sunxi-ng/
1515 F:      drivers/pinctrl/sunxi/
1516 F:      drivers/soc/sunxi/
1517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1518
1519 Allwinner A10 CSI driver
1520 M:      Maxime Ripard <[email protected]>
1521 L:      [email protected]
1522 T:      git git://linuxtv.org/media_tree.git
1523 F:      drivers/media/platform/sunxi/sun4i-csi/
1524 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
1525 S:      Maintained
1526
1527 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1528 M:      Neil Armstrong <[email protected]>
1529 M:      Jerome Brunet <[email protected]>
1530 L:      [email protected]
1531 S:      Maintained
1532 F:      drivers/clk/meson/
1533 F:      include/dt-bindings/clock/meson*
1534 F:      include/dt-bindings/clock/gxbb*
1535 F:      Documentation/devicetree/bindings/clock/amlogic*
1536
1537 ARM/Amlogic Meson SoC support
1538 M:      Kevin Hilman <[email protected]>
1539 L:      [email protected] (moderated for non-subscribers)
1540 L:      [email protected]
1541 W:      http://linux-meson.com/
1542 S:      Maintained
1543 F:      arch/arm/mach-meson/
1544 F:      arch/arm/boot/dts/meson*
1545 F:      arch/arm64/boot/dts/amlogic/
1546 F:      drivers/pinctrl/meson/
1547 F:      drivers/mmc/host/meson*
1548 F:      drivers/soc/amlogic/
1549 F:      drivers/rtc/rtc-meson*
1550 N:      meson
1551
1552 ARM/Amlogic Meson SoC Crypto Drivers
1553 M:      Corentin Labbe <[email protected]>
1554 L:      [email protected]
1555 L:      [email protected]
1556 S:      Maintained
1557 F:      drivers/crypto/amlogic/
1558 F:      Documentation/devicetree/bindings/crypto/amlogic*
1559
1560 ARM/Amlogic Meson SoC Sound Drivers
1561 M:      Jerome Brunet <[email protected]>
1562 L:      [email protected] (moderated for non-subscribers)
1563 S:      Maintained
1564 F:      sound/soc/meson/
1565 F:      Documentation/devicetree/bindings/sound/amlogic*
1566
1567 ARM/Annapurna Labs ALPINE ARCHITECTURE
1568 M:      Tsahee Zidenberg <[email protected]>
1569 M:      Antoine Tenart <[email protected]>
1570 L:      [email protected] (moderated for non-subscribers)
1571 S:      Maintained
1572 F:      arch/arm/mach-alpine/
1573 F:      arch/arm/boot/dts/alpine*
1574 F:      arch/arm64/boot/dts/al/
1575 F:      drivers/*/*alpine*
1576
1577 ARM/ARTPEC MACHINE SUPPORT
1578 M:      Jesper Nilsson <[email protected]>
1579 M:      Lars Persson <[email protected]>
1580 S:      Maintained
1581 L:      [email protected]
1582 F:      arch/arm/mach-artpec
1583 F:      arch/arm/boot/dts/artpec6*
1584 F:      drivers/clk/axis
1585 F:      drivers/crypto/axis
1586 F:      drivers/mmc/host/usdhi6rol0.c
1587 F:      drivers/pinctrl/pinctrl-artpec*
1588 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1589
1590 ARM/ASPEED I2C DRIVER
1591 M:      Brendan Higgins <[email protected]>
1592 R:      Benjamin Herrenschmidt <[email protected]>
1593 R:      Joel Stanley <[email protected]>
1594 L:      [email protected]
1595 L:      [email protected] (moderated for non-subscribers)
1596 S:      Maintained
1597 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1598 F:      drivers/i2c/busses/i2c-aspeed.c
1599 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1600 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1601
1602 ARM/ASPEED MACHINE SUPPORT
1603 M:      Joel Stanley <[email protected]>
1604 R:      Andrew Jeffery <[email protected]>
1605 L:      [email protected] (moderated for non-subscribers)
1606 L:      [email protected] (moderated for non-subscribers)
1607 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1608 S:      Supported
1609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1610 F:      arch/arm/mach-aspeed/
1611 F:      arch/arm/boot/dts/aspeed-*
1612 N:      aspeed
1613
1614 ARM/BITMAIN ARCHITECTURE
1615 M:      Manivannan Sadhasivam <[email protected]>
1616 L:      [email protected] (moderated for non-subscribers)
1617 S:      Maintained
1618 F:      arch/arm64/boot/dts/bitmain/
1619 F:      drivers/clk/clk-bm1880.c
1620 F:      drivers/pinctrl/pinctrl-bm1880.c
1621 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1622 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1623 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1624
1625 ARM/CALXEDA HIGHBANK ARCHITECTURE
1626 M:      Andre Przywara <[email protected]>
1627 L:      [email protected] (moderated for non-subscribers)
1628 S:      Maintained
1629 F:      arch/arm/mach-highbank/
1630 F:      arch/arm/boot/dts/highbank.dts
1631 F:      arch/arm/boot/dts/ecx-*.dts*
1632
1633 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1634 M:      Krzysztof Halasa <[email protected]>
1635 S:      Maintained
1636 F:      arch/arm/mach-cns3xxx/
1637
1638 ARM/CAVIUM THUNDER NETWORK DRIVER
1639 M:      Sunil Goutham <[email protected]>
1640 M:      Robert Richter <[email protected]>
1641 L:      [email protected] (moderated for non-subscribers)
1642 S:      Supported
1643 F:      drivers/net/ethernet/cavium/thunder/
1644
1645 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1646 M:      Lukasz Majewski <[email protected]>
1647 L:      [email protected] (moderated for non-subscribers)
1648 S:      Maintained
1649 F:      arch/arm/mach-ep93xx/ts72xx.c
1650
1651 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1652 M:      Alexander Shiyan <[email protected]>
1653 L:      [email protected] (moderated for non-subscribers)
1654 S:      Odd Fixes
1655 N:      clps711x
1656
1657 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1658 M:      Lennert Buytenhek <[email protected]>
1659 L:      [email protected] (moderated for non-subscribers)
1660 S:      Maintained
1661
1662 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1663 M:      Hartley Sweeten <[email protected]>
1664 M:      Alexander Sverdlin <[email protected]>
1665 L:      [email protected] (moderated for non-subscribers)
1666 S:      Maintained
1667 F:      arch/arm/mach-ep93xx/
1668 F:      arch/arm/mach-ep93xx/include/mach/
1669
1670 ARM/CLKDEV SUPPORT
1671 M:      Russell King <[email protected]>
1672 L:      [email protected] (moderated for non-subscribers)
1673 S:      Maintained
1674 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1675 F:      drivers/clk/clkdev.c
1676
1677 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1678 M:      Mike Rapoport <[email protected]>
1679 L:      [email protected] (moderated for non-subscribers)
1680 S:      Maintained
1681
1682 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1683 M:      Baruch Siach <[email protected]>
1684 L:      [email protected] (moderated for non-subscribers)
1685 S:      Maintained
1686 F:      arch/arm/boot/dts/cx92755*
1687 N:      digicolor
1688
1689 ARM/CONTEC MICRO9 MACHINE SUPPORT
1690 M:      Hubert Feurstein <[email protected]>
1691 S:      Maintained
1692 F:      arch/arm/mach-ep93xx/micro9.c
1693
1694 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1695 M:      Mathieu Poirier <[email protected]>
1696 R:      Suzuki K Poulose <[email protected]>
1697 R:      Mike Leach <[email protected]>
1698 L:      [email protected] (moderated for non-subscribers)
1699 S:      Maintained
1700 F:      drivers/hwtracing/coresight/*
1701 F:      include/dt-bindings/arm/coresight-cti-dt.h
1702 F:      Documentation/trace/coresight/*
1703 F:      Documentation/devicetree/bindings/arm/coresight.txt
1704 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1705 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1706 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1707 F:      tools/perf/arch/arm/util/pmu.c
1708 F:      tools/perf/arch/arm/util/auxtrace.c
1709 F:      tools/perf/arch/arm/util/cs-etm.c
1710 F:      tools/perf/arch/arm/util/cs-etm.h
1711 F:      tools/perf/util/cs-etm.*
1712 F:      tools/perf/util/cs-etm-decoder/*
1713
1714 ARM/CORGI MACHINE SUPPORT
1715 M:      Richard Purdie <[email protected]>
1716 S:      Maintained
1717
1718 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1719 M:      Hans Ulli Kroll <[email protected]>
1720 M:      Linus Walleij <[email protected]>
1721 L:      [email protected] (moderated for non-subscribers)
1722 T:      git git://github.com/ulli-kroll/linux.git
1723 S:      Maintained
1724 F:      Documentation/devicetree/bindings/arm/gemini.txt
1725 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1726 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1727 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1728 F:      arch/arm/mach-gemini/
1729 F:      drivers/net/ethernet/cortina/
1730 F:      drivers/pinctrl/pinctrl-gemini.c
1731 F:      drivers/rtc/rtc-ftrtc010.c
1732
1733 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1734 M:      Barry Song <[email protected]>
1735 L:      [email protected] (moderated for non-subscribers)
1736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1737 S:      Maintained
1738 F:      arch/arm/boot/dts/prima2*
1739 F:      arch/arm/mach-prima2/
1740 F:      drivers/clk/sirf/
1741 F:      drivers/clocksource/timer-prima2.c
1742 F:      drivers/clocksource/timer-atlas7.c
1743 N:      [^a-z]sirf
1744 X:      drivers/gnss
1745
1746 ARM/CZ.NIC TURRIS MOX SUPPORT
1747 M:      Marek Behun <[email protected]>
1748 W:      http://mox.turris.cz
1749 S:      Maintained
1750 F:      Documentation/ABI/testing/debugfs-moxtet
1751 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1752 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1753 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1754 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1755 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1756 F:      include/linux/moxtet.h
1757 F:      drivers/bus/moxtet.c
1758 F:      drivers/firmware/turris-mox-rwtm.c
1759 F:      drivers/gpio/gpio-moxtet.c
1760
1761 ARM/EBSA110 MACHINE SUPPORT
1762 M:      Russell King <[email protected]>
1763 L:      [email protected] (moderated for non-subscribers)
1764 W:      http://www.armlinux.org.uk/
1765 S:      Maintained
1766 F:      arch/arm/mach-ebsa110/
1767 F:      drivers/net/ethernet/amd/am79c961a.*
1768
1769 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1770 M:      Uwe Kleine-König <[email protected]>
1771 R:      Pengutronix Kernel Team <[email protected]>
1772 L:      [email protected] (moderated for non-subscribers)
1773 S:      Maintained
1774 N:      efm32
1775
1776 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1777 M:      Robert Jarzmik <[email protected]>
1778 L:      [email protected] (moderated for non-subscribers)
1779 S:      Maintained
1780 F:      arch/arm/mach-pxa/ezx.c
1781
1782 ARM/FARADAY FA526 PORT
1783 M:      Hans Ulli Kroll <[email protected]>
1784 L:      [email protected] (moderated for non-subscribers)
1785 S:      Maintained
1786 T:      git git://git.berlios.de/gemini-board
1787 F:      arch/arm/mm/*-fa*
1788
1789 ARM/FOOTBRIDGE ARCHITECTURE
1790 M:      Russell King <[email protected]>
1791 L:      [email protected] (moderated for non-subscribers)
1792 W:      http://www.armlinux.org.uk/
1793 S:      Maintained
1794 F:      arch/arm/include/asm/hardware/dec21285.h
1795 F:      arch/arm/mach-footbridge/
1796
1797 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1798 M:      Shawn Guo <[email protected]>
1799 M:      Sascha Hauer <[email protected]>
1800 R:      Pengutronix Kernel Team <[email protected]>
1801 R:      Fabio Estevam <[email protected]>
1802 R:      NXP Linux Team <[email protected]>
1803 L:      [email protected] (moderated for non-subscribers)
1804 S:      Maintained
1805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1806 N:      imx
1807 N:      mxs
1808 X:      drivers/media/i2c/
1809
1810 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1811 M:      Shawn Guo <[email protected]>
1812 M:      Sascha Hauer <[email protected]>
1813 R:      Pengutronix Kernel Team <[email protected]>
1814 R:      Stefan Agner <[email protected]>
1815 L:      [email protected] (moderated for non-subscribers)
1816 S:      Maintained
1817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1818 F:      arch/arm/mach-imx/*vf610*
1819 F:      arch/arm/boot/dts/vf*
1820
1821 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1822 M:      Shawn Guo <[email protected]>
1823 M:      Li Yang <[email protected]>
1824 L:      [email protected] (moderated for non-subscribers)
1825 S:      Maintained
1826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1827 F:      arch/arm/boot/dts/ls1021a*
1828 F:      arch/arm64/boot/dts/freescale/fsl-*
1829 F:      arch/arm64/boot/dts/freescale/qoriq-*
1830
1831 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1832 M:      Lennert Buytenhek <[email protected]>
1833 L:      [email protected] (moderated for non-subscribers)
1834 S:      Maintained
1835
1836 ARM/GUMSTIX MACHINE SUPPORT
1837 M:      Steve Sakoman <[email protected]>
1838 L:      [email protected] (moderated for non-subscribers)
1839 S:      Maintained
1840
1841 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1842 M:      Philipp Zabel <[email protected]>
1843 M:      Paul Parsons <[email protected]>
1844 L:      [email protected] (moderated for non-subscribers)
1845 S:      Maintained
1846 F:      arch/arm/mach-pxa/hx4700.c
1847 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1848 F:      sound/soc/pxa/hx4700.c
1849
1850 ARM/HISILICON SOC SUPPORT
1851 M:      Wei Xu <[email protected]>
1852 L:      [email protected] (moderated for non-subscribers)
1853 W:      http://www.hisilicon.com
1854 S:      Supported
1855 T:      git git://github.com/hisilicon/linux-hisi.git
1856 F:      arch/arm/mach-hisi/
1857 F:      arch/arm/boot/dts/hi3*
1858 F:      arch/arm/boot/dts/hip*
1859 F:      arch/arm/boot/dts/hisi*
1860 F:      arch/arm64/boot/dts/hisilicon/
1861
1862 ARM/HP JORNADA 7XX MACHINE SUPPORT
1863 M:      Kristoffer Ericson <[email protected]>
1864 W:      www.jlime.com
1865 S:      Maintained
1866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1867 F:      arch/arm/mach-sa1100/jornada720.c
1868 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1869
1870 ARM/IGEP MACHINE SUPPORT
1871 M:      Enric Balletbo i Serra <[email protected]>
1872 M:      Javier Martinez Canillas <[email protected]>
1873 L:      [email protected]
1874 L:      [email protected] (moderated for non-subscribers)
1875 S:      Maintained
1876 F:      arch/arm/boot/dts/omap3-igep*
1877
1878 ARM/INCOME PXA270 SUPPORT
1879 M:      Marek Vasut <[email protected]>
1880 L:      [email protected] (moderated for non-subscribers)
1881 S:      Maintained
1882 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1883
1884 ARM/INTEL IOP32X ARM ARCHITECTURE
1885 M:      Lennert Buytenhek <[email protected]>
1886 L:      [email protected] (moderated for non-subscribers)
1887 S:      Maintained
1888
1889 ARM/INTEL IQ81342EX MACHINE SUPPORT
1890 M:      Lennert Buytenhek <[email protected]>
1891 L:      [email protected] (moderated for non-subscribers)
1892 S:      Maintained
1893
1894 ARM/INTEL IXDP2850 MACHINE SUPPORT
1895 M:      Lennert Buytenhek <[email protected]>
1896 L:      [email protected] (moderated for non-subscribers)
1897 S:      Maintained
1898
1899 ARM/INTEL IXP4XX ARM ARCHITECTURE
1900 M:      Linus Walleij <[email protected]>
1901 M:      Imre Kaloz <[email protected]>
1902 M:      Krzysztof Halasa <[email protected]>
1903 L:      [email protected] (moderated for non-subscribers)
1904 S:      Maintained
1905 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1906 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1907 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1908 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1909 F:      arch/arm/mach-ixp4xx/
1910 F:      drivers/clocksource/timer-ixp4xx.c
1911 F:      drivers/gpio/gpio-ixp4xx.c
1912 F:      drivers/irqchip/irq-ixp4xx.c
1913 F:      include/linux/irqchip/irq-ixp4xx.h
1914 F:      include/linux/platform_data/timer-ixp4xx.h
1915
1916 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1917 M:      Jonathan Cameron <[email protected]>
1918 L:      [email protected] (moderated for non-subscribers)
1919 S:      Maintained
1920 F:      arch/arm/mach-pxa/stargate2.c
1921 F:      drivers/pcmcia/pxa2xx_stargate2.c
1922
1923 ARM/INTEL XSC3 (MANZANO) ARM CORE
1924 M:      Lennert Buytenhek <[email protected]>
1925 L:      [email protected] (moderated for non-subscribers)
1926 S:      Maintained
1927
1928 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1929 M:      Lennert Buytenhek <[email protected]>
1930 L:      [email protected] (moderated for non-subscribers)
1931 S:      Maintained
1932
1933 ARM/LG1K ARCHITECTURE
1934 M:      Chanho Min <[email protected]>
1935 L:      [email protected] (moderated for non-subscribers)
1936 S:      Maintained
1937 F:      arch/arm64/boot/dts/lg/
1938
1939 ARM/LOGICPD PXA270 MACHINE SUPPORT
1940 M:      Lennert Buytenhek <[email protected]>
1941 L:      [email protected] (moderated for non-subscribers)
1942 S:      Maintained
1943
1944 ARM/LPC18XX ARCHITECTURE
1945 M:      Vladimir Zapolskiy <[email protected]>
1946 L:      [email protected] (moderated for non-subscribers)
1947 S:      Maintained
1948 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1949 F:      arch/arm/boot/dts/lpc43*
1950 F:      drivers/i2c/busses/i2c-lpc2k.c
1951 F:      drivers/memory/pl172.c
1952 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1953 F:      drivers/rtc/rtc-lpc24xx.c
1954 N:      lpc18xx
1955
1956 ARM/LPC32XX SOC SUPPORT
1957 M:      Vladimir Zapolskiy <[email protected]>
1958 M:      Sylvain Lemieux <[email protected]>
1959 L:      [email protected] (moderated for non-subscribers)
1960 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1961 S:      Maintained
1962 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1963 F:      arch/arm/boot/dts/lpc32*
1964 F:      arch/arm/mach-lpc32xx/
1965 F:      drivers/i2c/busses/i2c-pnx.c
1966 F:      drivers/net/ethernet/nxp/lpc_eth.c
1967 F:      drivers/usb/host/ohci-nxp.c
1968 F:      drivers/watchdog/pnx4008_wdt.c
1969 N:      lpc32xx
1970
1971 ARM/MAGICIAN MACHINE SUPPORT
1972 M:      Philipp Zabel <[email protected]>
1973 S:      Maintained
1974
1975 ARM/Marvell Dove/MV78xx0/Orion SOC support
1976 M:      Jason Cooper <[email protected]>
1977 M:      Andrew Lunn <[email protected]>
1978 M:      Sebastian Hesselbarth <[email protected]>
1979 M:      Gregory Clement <[email protected]>
1980 L:      [email protected] (moderated for non-subscribers)
1981 S:      Maintained
1982 F:      Documentation/devicetree/bindings/soc/dove/
1983 F:      arch/arm/mach-dove/
1984 F:      arch/arm/mach-mv78xx0/
1985 F:      arch/arm/mach-orion5x/
1986 F:      arch/arm/plat-orion/
1987 F:      arch/arm/boot/dts/dove*
1988 F:      arch/arm/boot/dts/orion5x*
1989 T:      git git://git.infradead.org/linux-mvebu.git
1990
1991 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
1992 M:      Jason Cooper <[email protected]>
1993 M:      Andrew Lunn <[email protected]>
1994 M:      Gregory Clement <[email protected]>
1995 M:      Sebastian Hesselbarth <[email protected]>
1996 L:      [email protected] (moderated for non-subscribers)
1997 S:      Maintained
1998 F:      arch/arm/boot/dts/armada*
1999 F:      arch/arm/boot/dts/kirkwood*
2000 F:      arch/arm/configs/mvebu_*_defconfig
2001 F:      arch/arm/mach-mvebu/
2002 F:      arch/arm64/boot/dts/marvell/armada*
2003 F:      arch/arm64/boot/dts/marvell/cn913*
2004 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2005 F:      drivers/cpufreq/armada-8k-cpufreq.c
2006 F:      drivers/cpufreq/mvebu-cpufreq.c
2007 F:      drivers/irqchip/irq-armada-370-xp.c
2008 F:      drivers/irqchip/irq-mvebu-*
2009 F:      drivers/pinctrl/mvebu/
2010 F:      drivers/rtc/rtc-armada38x.c
2011 T:      git git://git.infradead.org/linux-mvebu.git
2012
2013 ARM/Mediatek RTC DRIVER
2014 M:      Eddie Huang <[email protected]>
2015 M:      Sean Wang <[email protected]>
2016 L:      [email protected] (moderated for non-subscribers)
2017 L:      [email protected] (moderated for non-subscribers)
2018 S:      Maintained
2019 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2020 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2021 F:      drivers/rtc/rtc-mt2712.c
2022 F:      drivers/rtc/rtc-mt6397.c
2023 F:      drivers/rtc/rtc-mt7622.c
2024
2025 ARM/Mediatek SoC support
2026 M:      Matthias Brugger <[email protected]>
2027 L:      [email protected] (moderated for non-subscribers)
2028 L:      [email protected] (moderated for non-subscribers)
2029 W:      https://mtk.bcnfs.org/
2030 C:      irc://chat.freenode.net/linux-mediatek
2031 S:      Maintained
2032 F:      arch/arm/boot/dts/mt6*
2033 F:      arch/arm/boot/dts/mt7*
2034 F:      arch/arm/boot/dts/mt8*
2035 F:      arch/arm/mach-mediatek/
2036 F:      arch/arm64/boot/dts/mediatek/
2037 F:      drivers/soc/mediatek/
2038 N:      mtk
2039 N:      mt[678]
2040 K:      mediatek
2041
2042 ARM/Mediatek USB3 PHY DRIVER
2043 M:      Chunfeng Yun <[email protected]>
2044 L:      [email protected] (moderated for non-subscribers)
2045 L:      [email protected] (moderated for non-subscribers)
2046 S:      Maintained
2047 F:      drivers/phy/mediatek/
2048 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2049
2050 ARM/Microchip (AT91) SoC support
2051 M:      Nicolas Ferre <[email protected]>
2052 M:      Alexandre Belloni <[email protected]>
2053 M:      Ludovic Desroches <[email protected]>
2054 L:      [email protected] (moderated for non-subscribers)
2055 W:      http://www.linux4sam.org
2056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2057 S:      Supported
2058 N:      at91
2059 N:      atmel
2060 F:      arch/arm/mach-at91/
2061 F:      include/soc/at91/
2062 F:      arch/arm/boot/dts/at91*.dts
2063 F:      arch/arm/boot/dts/at91*.dtsi
2064 F:      arch/arm/boot/dts/sama*.dts
2065 F:      arch/arm/boot/dts/sama*.dtsi
2066 F:      arch/arm/include/debug/at91.S
2067 F:      drivers/memory/atmel*
2068 F:      drivers/watchdog/sama5d4_wdt.c
2069 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2070 X:      drivers/net/wireless/atmel/
2071
2072 ARM/MIOA701 MACHINE SUPPORT
2073 M:      Robert Jarzmik <[email protected]>
2074 L:      [email protected] (moderated for non-subscribers)
2075 F:      arch/arm/mach-pxa/mioa701.c
2076 S:      Maintained
2077
2078 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2079 M:      Michael Petchkovsky <[email protected]>
2080 S:      Maintained
2081
2082 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2083 M:      Linus Walleij <[email protected]>
2084 L:      [email protected] (moderated for non-subscribers)
2085 S:      Maintained
2086 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2087 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2088 F:      arch/arm/mach-nomadik/
2089 F:      arch/arm/mach-u300/
2090 F:      arch/arm/mach-ux500/
2091 F:      drivers/soc/ux500/
2092 F:      arch/arm/boot/dts/ste-*
2093 F:      drivers/clk/clk-nomadik.c
2094 F:      drivers/clk/clk-u300.c
2095 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2096 F:      drivers/clocksource/timer-u300.c
2097 F:      drivers/dma/coh901318*
2098 F:      drivers/dma/ste_dma40*
2099 F:      drivers/hwspinlock/u8500_hsem.c
2100 F:      drivers/i2c/busses/i2c-nomadik.c
2101 F:      drivers/i2c/busses/i2c-stu300.c
2102 F:      drivers/iio/adc/ab8500-gpadc.c
2103 F:      drivers/mfd/ab3100*
2104 F:      drivers/mfd/ab8500*
2105 F:      drivers/mfd/abx500*
2106 F:      drivers/mfd/dbx500*
2107 F:      drivers/mfd/db8500*
2108 F:      drivers/pinctrl/nomadik/
2109 F:      drivers/pinctrl/pinctrl-coh901*
2110 F:      drivers/pinctrl/pinctrl-u300.c
2111 F:      drivers/rtc/rtc-ab3100.c
2112 F:      drivers/rtc/rtc-ab8500.c
2113 F:      drivers/rtc/rtc-coh901331.c
2114 F:      drivers/rtc/rtc-pl031.c
2115 F:      drivers/watchdog/coh901327_wdt.c
2116 F:      Documentation/devicetree/bindings/arm/ste-*
2117 F:      Documentation/devicetree/bindings/arm/ux500/
2118 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2120
2121 ARM/NUVOTON NPCM ARCHITECTURE
2122 M:      Avi Fishman <[email protected]>
2123 M:      Tomer Maimon <[email protected]>
2124 M:      Tali Perry <[email protected]>
2125 R:      Patrick Venture <[email protected]>
2126 R:      Nancy Yuen <[email protected]>
2127 R:      Benjamin Fair <[email protected]>
2128 L:      [email protected] (moderated for non-subscribers)
2129 S:      Supported
2130 F:      arch/arm/mach-npcm/
2131 F:      arch/arm/boot/dts/nuvoton-npcm*
2132 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2133 F:      drivers/*/*npcm*
2134 F:      Documentation/devicetree/bindings/*/*npcm*
2135 F:      Documentation/devicetree/bindings/*/*/*npcm*
2136
2137 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2138 L:      [email protected] (subscribers-only)
2139 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2140 S:      Orphan
2141 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2142 F:      arch/arm/mach-s3c24xx/gta02.h
2143
2144 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2145 M:      Alexander Clouter <[email protected]>
2146 L:      [email protected] (moderated for non-subscribers)
2147 W:      http://www.digriz.org.uk/ts78xx/kernel
2148 S:      Maintained
2149 F:      arch/arm/mach-orion5x/ts78xx-*
2150
2151 ARM/OXNAS platform support
2152 M:      Neil Armstrong <[email protected]>
2153 L:      [email protected] (moderated for non-subscribers)
2154 L:      [email protected] (moderated for non-subscribers)
2155 S:      Maintained
2156 F:      arch/arm/mach-oxnas/
2157 F:      arch/arm/boot/dts/ox8*.dts*
2158 N:      oxnas
2159
2160 ARM/PALM TREO SUPPORT
2161 M:      Tomas Cech <[email protected]>
2162 L:      [email protected]
2163 W:      http://hackndev.com
2164 S:      Maintained
2165 F:      arch/arm/mach-pxa/palmtreo.*
2166
2167 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2168 M:      Marek Vasut <[email protected]>
2169 L:      [email protected]
2170 W:      http://hackndev.com
2171 S:      Maintained
2172 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2173 F:      arch/arm/mach-pxa/palmtx.c
2174 F:      arch/arm/mach-pxa/palmt5.*
2175 F:      arch/arm/mach-pxa/include/mach/palmld.h
2176 F:      arch/arm/mach-pxa/palmld.c
2177 F:      arch/arm/mach-pxa/palmte2.*
2178 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2179 F:      arch/arm/mach-pxa/palmtc.c
2180
2181 ARM/PALMZ72 SUPPORT
2182 M:      Sergey Lapin <[email protected]>
2183 L:      [email protected]
2184 W:      http://hackndev.com
2185 S:      Maintained
2186 F:      arch/arm/mach-pxa/palmz72.*
2187
2188 ARM/PLEB SUPPORT
2189 M:      Peter Chubb <[email protected]>
2190 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2191 S:      Maintained
2192
2193 ARM/PT DIGITAL BOARD PORT
2194 M:      Stefan Eletzhofer <[email protected]>
2195 L:      [email protected] (moderated for non-subscribers)
2196 W:      http://www.armlinux.org.uk/
2197 S:      Maintained
2198
2199 ARM/QUALCOMM SUPPORT
2200 M:      Andy Gross <[email protected]>
2201 M:      Bjorn Andersson <[email protected]>
2202 L:      [email protected]
2203 S:      Maintained
2204 F:      Documentation/devicetree/bindings/soc/qcom/
2205 F:      Documentation/devicetree/bindings/*/qcom*
2206 F:      arch/arm/boot/dts/qcom-*.dts
2207 F:      arch/arm/boot/dts/qcom-*.dtsi
2208 F:      arch/arm/mach-qcom/
2209 F:      arch/arm64/boot/dts/qcom/
2210 F:      drivers/*/qcom/
2211 F:      drivers/*/qcom*
2212 F:      drivers/*/*/qcom/
2213 F:      drivers/*/*/qcom*
2214 F:      drivers/*/pm8???-*
2215 F:      drivers/bluetooth/btqcomsmd.c
2216 F:      drivers/clocksource/timer-qcom.c
2217 F:      drivers/extcon/extcon-qcom*
2218 F:      drivers/iommu/msm*
2219 F:      drivers/i2c/busses/i2c-qup.c
2220 F:      drivers/i2c/busses/i2c-qcom-geni.c
2221 F:      drivers/mfd/ssbi.c
2222 F:      drivers/mmc/host/mmci_qcom*
2223 F:      drivers/mmc/host/sdhci-msm.c
2224 F:      drivers/pci/controller/dwc/pcie-qcom.c
2225 F:      drivers/phy/qualcomm/
2226 F:      drivers/power/*/msm*
2227 F:      drivers/reset/reset-qcom-*
2228 F:      drivers/scsi/ufs/ufs-qcom.*
2229 F:      drivers/spi/spi-qup.c
2230 F:      drivers/spi/spi-geni-qcom.c
2231 F:      drivers/spi/spi-qcom-qspi.c
2232 F:      drivers/tty/serial/msm_serial.c
2233 F:      drivers/usb/dwc3/dwc3-qcom.c
2234 F:      include/dt-bindings/*/qcom*
2235 F:      include/linux/*/qcom*
2236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2237
2238 ARM/RADISYS ENP2611 MACHINE SUPPORT
2239 M:      Lennert Buytenhek <[email protected]>
2240 L:      [email protected] (moderated for non-subscribers)
2241 S:      Maintained
2242
2243 ARM/RDA MICRO ARCHITECTURE
2244 M:      Manivannan Sadhasivam <[email protected]>
2245 L:      [email protected] (moderated for non-subscribers)
2246 L:      [email protected] (moderated for non-subscribers)
2247 S:      Maintained
2248 F:      arch/arm/boot/dts/rda8810pl-*
2249 F:      drivers/clocksource/timer-rda.c
2250 F:      drivers/gpio/gpio-rda.c
2251 F:      drivers/irqchip/irq-rda-intc.c
2252 F:      drivers/tty/serial/rda-uart.c
2253 F:      Documentation/devicetree/bindings/arm/rda.yaml
2254 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2255 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2256 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2257 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2258
2259 ARM/REALTEK ARCHITECTURE
2260 M:      Andreas Färber <[email protected]>
2261 L:      [email protected] (moderated for non-subscribers)
2262 L:      [email protected] (moderated for non-subscribers)
2263 S:      Maintained
2264 F:      arch/arm64/boot/dts/realtek/
2265 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2266
2267 ARM/RENESAS ARM64 ARCHITECTURE
2268 M:      Geert Uytterhoeven <[email protected]>
2269 M:      Magnus Damm <[email protected]>
2270 L:      [email protected]
2271 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2273 S:      Supported
2274 F:      arch/arm64/boot/dts/renesas/
2275 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2276 F:      drivers/soc/renesas/
2277 F:      include/linux/soc/renesas/
2278
2279 ARM/RISCPC ARCHITECTURE
2280 M:      Russell King <[email protected]>
2281 L:      [email protected] (moderated for non-subscribers)
2282 W:      http://www.armlinux.org.uk/
2283 S:      Maintained
2284 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2285 F:      arch/arm/include/asm/hardware/ioc.h
2286 F:      arch/arm/include/asm/hardware/iomd.h
2287 F:      arch/arm/include/asm/hardware/memc.h
2288 F:      arch/arm/mach-rpc/
2289 F:      drivers/net/ethernet/8390/etherh.c
2290 F:      drivers/net/ethernet/i825xx/ether1*
2291 F:      drivers/net/ethernet/seeq/ether3*
2292 F:      drivers/scsi/arm/
2293
2294 ARM/Rockchip SoC support
2295 M:      Heiko Stuebner <[email protected]>
2296 L:      [email protected] (moderated for non-subscribers)
2297 L:      [email protected]
2298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2299 S:      Maintained
2300 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2301 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2302 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2303 F:      arch/arm/boot/dts/rk3*
2304 F:      arch/arm/boot/dts/rv1108*
2305 F:      arch/arm/mach-rockchip/
2306 F:      drivers/clk/rockchip/
2307 F:      drivers/i2c/busses/i2c-rk3x.c
2308 F:      drivers/*/*rockchip*
2309 F:      drivers/*/*/*rockchip*
2310 F:      sound/soc/rockchip/
2311 N:      rockchip
2312
2313 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2314 M:      Kukjin Kim <[email protected]>
2315 M:      Krzysztof Kozlowski <[email protected]>
2316 L:      [email protected] (moderated for non-subscribers)
2317 L:      [email protected] (moderated for non-subscribers)
2318 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2319 S:      Maintained
2320 F:      arch/arm/boot/dts/s3c*
2321 F:      arch/arm/boot/dts/s5p*
2322 F:      arch/arm/boot/dts/exynos*
2323 F:      arch/arm64/boot/dts/exynos/
2324 F:      arch/arm/plat-samsung/
2325 F:      arch/arm/mach-s3c24*/
2326 F:      arch/arm/mach-s3c64xx/
2327 F:      arch/arm/mach-s5p*/
2328 F:      arch/arm/mach-exynos*/
2329 F:      drivers/*/*s3c24*
2330 F:      drivers/*/*/*s3c24*
2331 F:      drivers/*/*s3c64xx*
2332 F:      drivers/*/*s5pv210*
2333 F:      drivers/memory/samsung/
2334 F:      drivers/soc/samsung/
2335 F:      drivers/tty/serial/samsung*
2336 F:      include/linux/soc/samsung/
2337 F:      Documentation/arm/samsung/
2338 F:      Documentation/devicetree/bindings/arm/samsung/
2339 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2340 N:      exynos
2341
2342 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2343 M:      Kyungmin Park <[email protected]>
2344 L:      [email protected] (moderated for non-subscribers)
2345 S:      Maintained
2346 F:      arch/arm/mach-s5pv210/
2347
2348 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2349 M:      Kyungmin Park <[email protected]>
2350 M:      Kamil Debski <[email protected]>
2351 M:      Andrzej Hajda <[email protected]>
2352 L:      [email protected]
2353 L:      [email protected]
2354 S:      Maintained
2355 F:      drivers/media/platform/s5p-g2d/
2356
2357 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2358 M:      Marek Szyprowski <[email protected]>
2359 L:      [email protected] (moderated for non-subscribers)
2360 L:      [email protected]
2361 S:      Maintained
2362 F:      drivers/media/platform/s5p-cec/
2363 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2364
2365 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2366 M:      Andrzej Pietrasiewicz <[email protected]>
2367 M:      Jacek Anaszewski <[email protected]>
2368 M:      Sylwester Nawrocki <[email protected]>
2369 L:      [email protected]
2370 L:      [email protected]
2371 S:      Maintained
2372 F:      drivers/media/platform/s5p-jpeg/
2373
2374 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2375 M:      Kyungmin Park <[email protected]>
2376 M:      Kamil Debski <[email protected]>
2377 M:      Jeongtae Park <[email protected]>
2378 M:      Andrzej Hajda <[email protected]>
2379 L:      [email protected]
2380 L:      [email protected]
2381 S:      Maintained
2382 F:      drivers/media/platform/s5p-mfc/
2383
2384 ARM/SHMOBILE ARM ARCHITECTURE
2385 M:      Geert Uytterhoeven <[email protected]>
2386 M:      Magnus Damm <[email protected]>
2387 L:      [email protected]
2388 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2390 S:      Supported
2391 F:      arch/arm/boot/dts/emev2*
2392 F:      arch/arm/boot/dts/gr-peach*
2393 F:      arch/arm/boot/dts/iwg20d-q7*
2394 F:      arch/arm/boot/dts/r7s*
2395 F:      arch/arm/boot/dts/r8a*
2396 F:      arch/arm/boot/dts/r9a*
2397 F:      arch/arm/boot/dts/sh*
2398 F:      arch/arm/configs/shmobile_defconfig
2399 F:      arch/arm/include/debug/renesas-scif.S
2400 F:      arch/arm/mach-shmobile/
2401 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2402 F:      drivers/soc/renesas/
2403 F:      include/linux/soc/renesas/
2404
2405 ARM/SOCFPGA ARCHITECTURE
2406 M:      Dinh Nguyen <[email protected]>
2407 S:      Maintained
2408 F:      arch/arm/mach-socfpga/
2409 F:      arch/arm/boot/dts/socfpga*
2410 F:      arch/arm/configs/socfpga_defconfig
2411 F:      arch/arm64/boot/dts/altera/
2412 F:      arch/arm64/boot/dts/intel/
2413 W:      http://www.rocketboards.org
2414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2415
2416 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2417 M:      Dinh Nguyen <[email protected]>
2418 S:      Maintained
2419 F:      drivers/clk/socfpga/
2420
2421 ARM/SOCFPGA EDAC SUPPORT
2422 M:      Thor Thayer <[email protected]>
2423 S:      Maintained
2424 F:      drivers/edac/altera_edac.
2425
2426 ARM/SPREADTRUM SoC SUPPORT
2427 M:      Orson Zhai <[email protected]>
2428 M:      Baolin Wang <[email protected]>
2429 M:      Chunyan Zhang <[email protected]>
2430 S:      Maintained
2431 F:      arch/arm64/boot/dts/sprd
2432 N:      sprd
2433 N:      sc27xx
2434 N:      sc2731
2435
2436 ARM/STI ARCHITECTURE
2437 M:      Patrice Chotard <[email protected]>
2438 L:      [email protected] (moderated for non-subscribers)
2439 W:      http://www.stlinux.com
2440 S:      Maintained
2441 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2442 F:      arch/arm/mach-sti/
2443 F:      arch/arm/boot/dts/sti*
2444 F:      drivers/char/hw_random/st-rng.c
2445 F:      drivers/clocksource/arm_global_timer.c
2446 F:      drivers/clocksource/clksrc_st_lpc.c
2447 F:      drivers/cpufreq/sti-cpufreq.c
2448 F:      drivers/dma/st_fdma*
2449 F:      drivers/i2c/busses/i2c-st.c
2450 F:      drivers/media/rc/st_rc.c
2451 F:      drivers/media/platform/sti/c8sectpfe/
2452 F:      drivers/mmc/host/sdhci-st.c
2453 F:      drivers/phy/st/phy-miphy28lp.c
2454 F:      drivers/phy/st/phy-stih407-usb.c
2455 F:      drivers/pinctrl/pinctrl-st.c
2456 F:      drivers/remoteproc/st_remoteproc.c
2457 F:      drivers/remoteproc/st_slim_rproc.c
2458 F:      drivers/reset/sti/
2459 F:      drivers/rtc/rtc-st-lpc.c
2460 F:      drivers/tty/serial/st-asc.c
2461 F:      drivers/usb/dwc3/dwc3-st.c
2462 F:      drivers/usb/host/ehci-st.c
2463 F:      drivers/usb/host/ohci-st.c
2464 F:      drivers/watchdog/st_lpc_wdt.c
2465 F:      drivers/ata/ahci_st.c
2466 F:      include/linux/remoteproc/st_slim_rproc.h
2467
2468 ARM/STM32 ARCHITECTURE
2469 M:      Maxime Coquelin <[email protected]>
2470 M:      Alexandre Torgue <[email protected]>
2471 L:      [email protected] (moderated for non-subscribers)
2472 L:      [email protected] (moderated for non-subscribers)
2473 S:      Maintained
2474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2475 N:      stm32
2476 N:      stm
2477 F:      arch/arm/boot/dts/stm32*
2478 F:      arch/arm/mach-stm32/
2479 F:      drivers/clocksource/armv7m_systick.c
2480
2481 ARM/Synaptics SoC support
2482 M:      Jisheng Zhang <[email protected]>
2483 M:      Sebastian Hesselbarth <[email protected]>
2484 L:      [email protected] (moderated for non-subscribers)
2485 S:      Maintained
2486 F:      arch/arm/mach-berlin/
2487 F:      arch/arm/boot/dts/berlin*
2488 F:      arch/arm64/boot/dts/synaptics/
2489
2490 ARM/TANGO ARCHITECTURE
2491 M:      Marc Gonzalez <[email protected]>
2492 M:      Mans Rullgard <[email protected]>
2493 L:      [email protected]
2494 S:      Odd Fixes
2495 N:      tango
2496
2497 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2498 M:      Lennert Buytenhek <[email protected]>
2499 L:      [email protected] (moderated for non-subscribers)
2500 S:      Maintained
2501
2502 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2503 M:      Hans Verkuil <[email protected]>
2504 L:      [email protected]
2505 L:      [email protected]
2506 S:      Maintained
2507 F:      drivers/media/platform/tegra-cec/
2508 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2509
2510 ARM/TETON BGA MACHINE SUPPORT
2511 M:      "Mark F. Brown" <[email protected]>
2512 L:      [email protected] (moderated for non-subscribers)
2513 S:      Maintained
2514
2515 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2516 M:      Santosh Shilimkar <[email protected]>
2517 L:      [email protected]
2518 S:      Maintained
2519 F:      drivers/memory/*emif*
2520
2521 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2522 M:      Tero Kristo <[email protected]>
2523 M:      Nishanth Menon <[email protected]>
2524 L:      [email protected] (moderated for non-subscribers)
2525 S:      Supported
2526 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2527 F:      arch/arm64/boot/dts/ti/Makefile
2528 F:      arch/arm64/boot/dts/ti/k3-*
2529 F:      include/dt-bindings/pinctrl/k3.h
2530
2531 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2532 M:      Santosh Shilimkar <[email protected]>
2533 L:      [email protected] (moderated for non-subscribers)
2534 S:      Maintained
2535 F:      arch/arm/mach-keystone/
2536 F:      arch/arm/boot/dts/keystone-*
2537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2538
2539 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2540 M:      Santosh Shilimkar <[email protected]>
2541 L:      [email protected]
2542 S:      Maintained
2543 F:      drivers/clk/keystone/
2544
2545 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2546 M:      Santosh Shilimkar <[email protected]>
2547 L:      [email protected] (moderated for non-subscribers)
2548 L:      [email protected]
2549 S:      Maintained
2550 F:      drivers/clocksource/timer-keystone.c
2551
2552 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2553 M:      Santosh Shilimkar <[email protected]>
2554 L:      [email protected]
2555 S:      Maintained
2556 F:      drivers/power/reset/keystone-reset.c
2557
2558 ARM/THECUS N2100 MACHINE SUPPORT
2559 M:      Lennert Buytenhek <[email protected]>
2560 L:      [email protected] (moderated for non-subscribers)
2561 S:      Maintained
2562
2563 ARM/TOSA MACHINE SUPPORT
2564 M:      Dmitry Eremin-Solenikov <[email protected]>
2565 M:      Dirk Opfer <[email protected]>
2566 S:      Maintained
2567
2568 ARM/UNIPHIER ARCHITECTURE
2569 M:      Masahiro Yamada <[email protected]>
2570 L:      [email protected] (moderated for non-subscribers)
2571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2572 S:      Maintained
2573 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2574 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2575 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2576 F:      arch/arm/boot/dts/uniphier*
2577 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2578 F:      arch/arm/mach-uniphier/
2579 F:      arch/arm/mm/cache-uniphier.c
2580 F:      arch/arm64/boot/dts/socionext/uniphier*
2581 F:      drivers/bus/uniphier-system-bus.c
2582 F:      drivers/clk/uniphier/
2583 F:      drivers/dma/uniphier-mdmac.c
2584 F:      drivers/gpio/gpio-uniphier.c
2585 F:      drivers/i2c/busses/i2c-uniphier*
2586 F:      drivers/irqchip/irq-uniphier-aidet.c
2587 F:      drivers/mmc/host/uniphier-sd.c
2588 F:      drivers/pinctrl/uniphier/
2589 F:      drivers/reset/reset-uniphier.c
2590 F:      drivers/tty/serial/8250/8250_uniphier.c
2591 N:      uniphier
2592
2593 Ux500 CLOCK DRIVERS
2594 M:      Ulf Hansson <[email protected]>
2595 L:      [email protected]
2596 L:      [email protected] (moderated for non-subscribers)
2597 S:      Maintained
2598 F:      drivers/clk/ux500/
2599
2600 ARM/VERSATILE EXPRESS PLATFORM
2601 M:      Liviu Dudau <[email protected]>
2602 M:      Sudeep Holla <[email protected]>
2603 M:      Lorenzo Pieralisi <[email protected]>
2604 L:      [email protected] (moderated for non-subscribers)
2605 S:      Maintained
2606 F:      arch/arm/boot/dts/vexpress*
2607 F:      arch/arm64/boot/dts/arm/
2608 F:      arch/arm/mach-vexpress/
2609 F:      */*/vexpress*
2610 F:      */*/*/vexpress*
2611 F:      drivers/clk/versatile/clk-vexpress-osc.c
2612 F:      drivers/clocksource/timer-versatile.c
2613 N:      mps2
2614
2615 ARM/VFP SUPPORT
2616 M:      Russell King <[email protected]>
2617 L:      [email protected] (moderated for non-subscribers)
2618 W:      http://www.armlinux.org.uk/
2619 S:      Maintained
2620 F:      arch/arm/vfp/
2621
2622 ARM/VOIPAC PXA270 SUPPORT
2623 M:      Marek Vasut <[email protected]>
2624 L:      [email protected] (moderated for non-subscribers)
2625 S:      Maintained
2626 F:      arch/arm/mach-pxa/vpac270.c
2627 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2628
2629 ARM/VT8500 ARM ARCHITECTURE
2630 M:      Tony Prisk <[email protected]>
2631 L:      [email protected] (moderated for non-subscribers)
2632 S:      Maintained
2633 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2634 F:      arch/arm/mach-vt8500/
2635 F:      drivers/clocksource/timer-vt8500.c
2636 F:      drivers/i2c/busses/i2c-wmt.c
2637 F:      drivers/mmc/host/wmt-sdmmc.c
2638 F:      drivers/pwm/pwm-vt8500.c
2639 F:      drivers/rtc/rtc-vt8500.c
2640 F:      drivers/tty/serial/vt8500_serial.c
2641 F:      drivers/usb/host/ehci-platform.c
2642 F:      drivers/usb/host/uhci-platform.c
2643 F:      drivers/video/fbdev/vt8500lcdfb.*
2644 F:      drivers/video/fbdev/wm8505fb*
2645 F:      drivers/video/fbdev/wmt_ge_rops.*
2646
2647 ARM/ZIPIT Z2 SUPPORT
2648 M:      Marek Vasut <[email protected]>
2649 L:      [email protected] (moderated for non-subscribers)
2650 S:      Maintained
2651 F:      arch/arm/mach-pxa/z2.c
2652 F:      arch/arm/mach-pxa/include/mach/z2.h
2653
2654 ARM/ZTE ARCHITECTURE
2655 M:      Jun Nie <[email protected]>
2656 M:      Shawn Guo <[email protected]>
2657 L:      [email protected] (moderated for non-subscribers)
2658 S:      Maintained
2659 F:      arch/arm/boot/dts/zx2967*
2660 F:      arch/arm/mach-zx/
2661 F:      arch/arm64/boot/dts/zte/
2662 F:      drivers/clk/zte/
2663 F:      drivers/dma/zx_dma.c
2664 F:      drivers/gpio/gpio-zx.c
2665 F:      drivers/i2c/busses/i2c-zx2967.c
2666 F:      drivers/mmc/host/dw_mmc-zx.*
2667 F:      drivers/pinctrl/zte/
2668 F:      drivers/soc/zte/
2669 F:      drivers/thermal/zx2967_thermal.c
2670 F:      drivers/watchdog/zx2967_wdt.c
2671 F:      Documentation/devicetree/bindings/arm/zte.yaml
2672 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2673 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2674 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2675 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2676 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2677 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2678 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2679 F:      Documentation/devicetree/bindings/soc/zte/
2680 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2681 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2682 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2683 F:      include/dt-bindings/clock/zx2967*.h
2684 F:      include/dt-bindings/soc/zte,*.h
2685 F:      sound/soc/codecs/zx_aud96p22.c
2686 F:      sound/soc/zte/
2687
2688 ARM/ZYNQ ARCHITECTURE
2689 M:      Michal Simek <[email protected]>
2690 L:      [email protected] (moderated for non-subscribers)
2691 W:      http://wiki.xilinx.com
2692 T:      git https://github.com/Xilinx/linux-xlnx.git
2693 S:      Supported
2694 F:      arch/arm/mach-zynq/
2695 F:      drivers/cpuidle/cpuidle-zynq.c
2696 F:      drivers/block/xsysace.c
2697 N:      zynq
2698 N:      xilinx
2699 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2700 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2701 F:      drivers/clocksource/timer-cadence-ttc.c
2702 F:      drivers/i2c/busses/i2c-cadence.c
2703 F:      drivers/mmc/host/sdhci-of-arasan.c
2704 F:      drivers/edac/synopsys_edac.c
2705 F:      drivers/i2c/busses/i2c-xiic.c
2706
2707 ARM64 PORT (AARCH64 ARCHITECTURE)
2708 M:      Catalin Marinas <[email protected]>
2709 M:      Will Deacon <[email protected]>
2710 L:      [email protected] (moderated for non-subscribers)
2711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2712 S:      Maintained
2713 F:      arch/arm64/
2714 X:      arch/arm64/boot/dts/
2715 F:      Documentation/arm64/
2716 F:      tools/testing/selftests/arm64/
2717
2718 AS3645A LED FLASH CONTROLLER DRIVER
2719 M:      Sakari Ailus <[email protected]>
2720 L:      [email protected]
2721 S:      Maintained
2722 F:      drivers/leds/leds-as3645a.c
2723
2724 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2725 M:      Tianshu Qiu <[email protected]>
2726 L:      [email protected]
2727 T:      git git://linuxtv.org/media_tree.git
2728 S:      Maintained
2729 F:      drivers/media/i2c/ak7375.c
2730 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2731
2732 ASAHI KASEI AK8974 DRIVER
2733 M:      Linus Walleij <[email protected]>
2734 L:      [email protected]
2735 W:      http://www.akm.com/
2736 S:      Supported
2737 F:      drivers/iio/magnetometer/ak8974.c
2738
2739 ASC7621 HARDWARE MONITOR DRIVER
2740 M:      George Joseph <[email protected]>
2741 L:      [email protected]
2742 S:      Maintained
2743 F:      Documentation/hwmon/asc7621.rst
2744 F:      drivers/hwmon/asc7621.c
2745
2746 ASPEED PINCTRL DRIVERS
2747 M:      Andrew Jeffery <[email protected]>
2748 L:      [email protected] (moderated for non-subscribers)
2749 L:      [email protected] (moderated for non-subscribers)
2750 L:      [email protected]
2751 S:      Maintained
2752 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2753 F:      drivers/pinctrl/aspeed/
2754
2755 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2756 M:      Eddie James <[email protected]>
2757 L:      [email protected] (moderated for non-subscribers)
2758 S:      Maintained
2759 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2760 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2761 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2762
2763 ASPEED VIDEO ENGINE DRIVER
2764 M:      Eddie James <[email protected]>
2765 L:      [email protected]
2766 L:      [email protected] (moderated for non-subscribers)
2767 S:      Maintained
2768 F:      drivers/media/platform/aspeed-video.c
2769 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2770
2771 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2772 M:      Corentin Chary <[email protected]>
2773 L:      [email protected]
2774 L:      [email protected]
2775 S:      Maintained
2776 W:      http://acpi4asus.sf.net
2777 F:      drivers/platform/x86/asus*.c
2778 F:      drivers/platform/x86/eeepc*.c
2779
2780 ASUS WIRELESS RADIO CONTROL DRIVER
2781 M:      João Paulo Rechi Vita <[email protected]>
2782 L:      [email protected]
2783 S:      Maintained
2784 F:      drivers/platform/x86/asus-wireless.c
2785
2786 ASYMMETRIC KEYS
2787 M:      David Howells <[email protected]>
2788 L:      [email protected]
2789 S:      Maintained
2790 F:      Documentation/crypto/asymmetric-keys.txt
2791 F:      include/linux/verification.h
2792 F:      include/crypto/public_key.h
2793 F:      include/crypto/pkcs7.h
2794 F:      crypto/asymmetric_keys/
2795
2796 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2797 R:      Dan Williams <[email protected]>
2798 W:      http://sourceforge.net/projects/xscaleiop
2799 S:      Odd fixes
2800 F:      Documentation/crypto/async-tx-api.txt
2801 F:      crypto/async_tx/
2802 F:      drivers/dma/
2803 F:      include/linux/dmaengine.h
2804 F:      include/linux/async_tx.h
2805
2806 AT24 EEPROM DRIVER
2807 M:      Bartosz Golaszewski <[email protected]>
2808 L:      [email protected]
2809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2810 S:      Maintained
2811 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2812 F:      drivers/misc/eeprom/at24.c
2813
2814 ATA OVER ETHERNET (AOE) DRIVER
2815 M:      "Justin Sanders" <[email protected]>
2816 W:      http://www.openaoe.org/
2817 S:      Supported
2818 F:      Documentation/admin-guide/aoe/
2819 F:      drivers/block/aoe/
2820
2821 ATHEROS 71XX/9XXX GPIO DRIVER
2822 M:      Alban Bedel <[email protected]>
2823 S:      Maintained
2824 W:      https://github.com/AlbanBedel/linux
2825 T:      git git://github.com/AlbanBedel/linux
2826 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2827 F:      drivers/gpio/gpio-ath79.c
2828
2829 ATHEROS 71XX/9XXX USB PHY DRIVER
2830 M:      Alban Bedel <[email protected]>
2831 W:      https://github.com/AlbanBedel/linux
2832 T:      git git://github.com/AlbanBedel/linux
2833 S:      Maintained
2834 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2835 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2836
2837 ATHEROS ATH GENERIC UTILITIES
2838 M:      Kalle Valo <[email protected]>
2839 L:      [email protected]
2840 S:      Supported
2841 F:      drivers/net/wireless/ath/*
2842
2843 ATHEROS ATH5K WIRELESS DRIVER
2844 M:      Jiri Slaby <[email protected]>
2845 M:      Nick Kossifidis <[email protected]>
2846 M:      Luis Chamberlain <[email protected]>
2847 L:      [email protected]
2848 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2849 S:      Maintained
2850 F:      drivers/net/wireless/ath/ath5k/
2851
2852 ATHEROS ATH6KL WIRELESS DRIVER
2853 M:      Kalle Valo <[email protected]>
2854 L:      [email protected]
2855 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2857 S:      Supported
2858 F:      drivers/net/wireless/ath/ath6kl/
2859
2860 ATI_REMOTE2 DRIVER
2861 M:      Ville Syrjala <[email protected]>
2862 S:      Maintained
2863 F:      drivers/input/misc/ati_remote2.c
2864
2865 ATK0110 HWMON DRIVER
2866 M:      Luca Tettamanti <[email protected]>
2867 L:      [email protected]
2868 S:      Maintained
2869 F:      drivers/hwmon/asus_atk0110.c
2870
2871 ATLX ETHERNET DRIVERS
2872 M:      Jay Cliburn <[email protected]>
2873 M:      Chris Snook <[email protected]>
2874 L:      [email protected]
2875 W:      http://sourceforge.net/projects/atl1
2876 W:      http://atl1.sourceforge.net
2877 S:      Maintained
2878 F:      drivers/net/ethernet/atheros/
2879
2880 ATM
2881 M:      Chas Williams <[email protected]>
2882 L:      [email protected] (moderated for non-subscribers)
2883 L:      [email protected]
2884 W:      http://linux-atm.sourceforge.net
2885 S:      Maintained
2886 F:      drivers/atm/
2887 F:      include/linux/atm*
2888 F:      include/uapi/linux/atm*
2889
2890 ATMEL MACB ETHERNET DRIVER
2891 M:      Nicolas Ferre <[email protected]>
2892 S:      Supported
2893 F:      drivers/net/ethernet/cadence/
2894
2895 ATMEL MAXTOUCH DRIVER
2896 M:      Nick Dyer <[email protected]>
2897 T:      git git://github.com/ndyer/linux.git
2898 S:      Maintained
2899 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2900 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2901
2902 ATMEL WIRELESS DRIVER
2903 M:      Simon Kelley <[email protected]>
2904 L:      [email protected]
2905 W:      http://www.thekelleys.org.uk/atmel
2906 W:      http://atmelwlandriver.sourceforge.net/
2907 S:      Maintained
2908 F:      drivers/net/wireless/atmel/atmel*
2909
2910 ATOMIC INFRASTRUCTURE
2911 M:      Will Deacon <[email protected]>
2912 M:      Peter Zijlstra <[email protected]>
2913 R:      Boqun Feng <[email protected]>
2914 L:      [email protected]
2915 S:      Maintained
2916 F:      arch/*/include/asm/atomic*.h
2917 F:      include/*/atomic*.h
2918 F:      scripts/atomic/
2919
2920 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2921 M:      Bradley Grove <[email protected]>
2922 L:      [email protected]
2923 W:      http://www.attotech.com
2924 S:      Supported
2925 F:      drivers/scsi/esas2r
2926
2927 ATUSB IEEE 802.15.4 RADIO DRIVER
2928 M:      Stefan Schmidt <[email protected]>
2929 L:      [email protected]
2930 S:      Maintained
2931 F:      drivers/net/ieee802154/atusb.c
2932 F:      drivers/net/ieee802154/atusb.h
2933 F:      drivers/net/ieee802154/at86rf230.h
2934
2935 AUDIT SUBSYSTEM
2936 M:      Paul Moore <[email protected]>
2937 M:      Eric Paris <[email protected]>
2938 L:      [email protected] (moderated for non-subscribers)
2939 W:      https://github.com/linux-audit
2940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2941 S:      Supported
2942 F:      include/linux/audit.h
2943 F:      include/uapi/linux/audit.h
2944 F:      kernel/audit*
2945
2946 AUXILIARY DISPLAY DRIVERS
2947 M:      Miguel Ojeda Sandonis <[email protected]>
2948 S:      Maintained
2949 F:      drivers/auxdisplay/
2950 F:      include/linux/cfag12864b.h
2951
2952 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2953 M:      Andreas Klinger <[email protected]>
2954 L:      [email protected]
2955 S:      Maintained
2956 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2957 F:      drivers/iio/adc/hx711.c
2958
2959 AX.25 NETWORK LAYER
2960 M:      Ralf Baechle <[email protected]>
2961 L:      [email protected]
2962 W:      http://www.linux-ax25.org/
2963 S:      Maintained
2964 F:      include/uapi/linux/ax25.h
2965 F:      include/net/ax25.h
2966 F:      net/ax25/
2967
2968 AXENTIA ARM DEVICES
2969 M:      Peter Rosin <[email protected]>
2970 L:      [email protected] (moderated for non-subscribers)
2971 S:      Maintained
2972 F:      arch/arm/boot/dts/at91-linea.dtsi
2973 F:      arch/arm/boot/dts/at91-natte.dtsi
2974 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2975 F:      arch/arm/boot/dts/at91-tse850-3.dts
2976
2977 AXENTIA ASOC DRIVERS
2978 M:      Peter Rosin <[email protected]>
2979 L:      [email protected] (moderated for non-subscribers)
2980 S:      Maintained
2981 F:      Documentation/devicetree/bindings/sound/axentia,*
2982 F:      sound/soc/atmel/tse850-pcm5142.c
2983
2984 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
2985 M:      Nuno Sá <[email protected]>
2986 W:      http://ez.analog.com/community/linux-device-drivers
2987 L:      [email protected]
2988 S:      Supported
2989 F:      drivers/hwmon/axi-fan-control.c
2990 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
2991
2992 AXXIA I2C CONTROLLER
2993 M:      Krzysztof Adamski <[email protected]>
2994 L:      [email protected]
2995 S:      Maintained
2996 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2997 F:      drivers/i2c/busses/i2c-axxia.c
2998
2999 AZ6007 DVB DRIVER
3000 M:      Mauro Carvalho Chehab <[email protected]>
3001 L:      [email protected]
3002 W:      https://linuxtv.org
3003 T:      git git://linuxtv.org/media_tree.git
3004 S:      Maintained
3005 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3006
3007 AZTECH FM RADIO RECEIVER DRIVER
3008 M:      Hans Verkuil <[email protected]>
3009 L:      [email protected]
3010 T:      git git://linuxtv.org/media_tree.git
3011 W:      https://linuxtv.org
3012 S:      Maintained
3013 F:      drivers/media/radio/radio-aztech*
3014
3015 B43 WIRELESS DRIVER
3016 L:      [email protected]
3017 L:      [email protected]
3018 W:      http://wireless.kernel.org/en/users/Drivers/b43
3019 S:      Odd Fixes
3020 F:      drivers/net/wireless/broadcom/b43/
3021
3022 B43LEGACY WIRELESS DRIVER
3023 M:      Larry Finger <[email protected]>
3024 L:      [email protected]
3025 L:      [email protected]
3026 W:      http://wireless.kernel.org/en/users/Drivers/b43
3027 S:      Maintained
3028 F:      drivers/net/wireless/broadcom/b43legacy/
3029
3030 BACKLIGHT CLASS/SUBSYSTEM
3031 M:      Lee Jones <[email protected]>
3032 M:      Daniel Thompson <[email protected]>
3033 M:      Jingoo Han <[email protected]>
3034 L:      [email protected]
3035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3036 S:      Maintained
3037 F:      drivers/video/backlight/
3038 F:      include/linux/backlight.h
3039 F:      include/linux/pwm_backlight.h
3040 F:      Documentation/devicetree/bindings/leds/backlight
3041 F:      Documentation/ABI/stable/sysfs-class-backlight
3042 F:      Documentation/ABI/testing/sysfs-class-backlight
3043
3044 BATMAN ADVANCED
3045 M:      Marek Lindner <[email protected]>
3046 M:      Simon Wunderlich <[email protected]>
3047 M:      Antonio Quartulli <[email protected]>
3048 M:      Sven Eckelmann <[email protected]>
3049 L:      [email protected] (moderated for non-subscribers)
3050 W:      https://www.open-mesh.org/
3051 B:      https://www.open-mesh.org/projects/batman-adv/issues
3052 C:      irc://chat.freenode.net/batman
3053 Q:      https://patchwork.open-mesh.org/project/batman/list/
3054 T:      git https://git.open-mesh.org/linux-merge.git
3055 S:      Maintained
3056 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3057 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3058 F:      Documentation/networking/batman-adv.rst
3059 F:      include/uapi/linux/batadv_packet.h
3060 F:      include/uapi/linux/batman_adv.h
3061 F:      net/batman-adv/
3062
3063 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3064 M:      Thomas Sailer <[email protected]>
3065 L:      [email protected]
3066 W:      http://www.baycom.org/~tom/ham/ham.html
3067 S:      Maintained
3068 F:      drivers/net/hamradio/baycom*
3069
3070 BCACHE (BLOCK LAYER CACHE)
3071 M:      Coly Li <[email protected]>
3072 M:      Kent Overstreet <[email protected]>
3073 L:      [email protected]
3074 W:      http://bcache.evilpiepirate.org
3075 C:      irc://irc.oftc.net/bcache
3076 S:      Maintained
3077 F:      drivers/md/bcache/
3078
3079 BDISP ST MEDIA DRIVER
3080 M:      Fabien Dessenne <[email protected]>
3081 L:      [email protected]
3082 T:      git git://linuxtv.org/media_tree.git
3083 W:      https://linuxtv.org
3084 S:      Supported
3085 F:      drivers/media/platform/sti/bdisp
3086
3087 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3088 M:      Dariusz Marcinkiewicz <[email protected]>
3089 L:      [email protected]
3090 S:      Maintained
3091 F:      drivers/net/ethernet/ec_bhf.c
3092
3093 BEFS FILE SYSTEM
3094 M:      Luis de Bethencourt <[email protected]>
3095 M:      Salah Triki <[email protected]>
3096 S:      Maintained
3097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3098 F:      Documentation/filesystems/befs.rst
3099 F:      fs/befs/
3100
3101 BFQ I/O SCHEDULER
3102 M:      Paolo Valente <[email protected]>
3103 M:      Jens Axboe <[email protected]>
3104 L:      [email protected]
3105 S:      Maintained
3106 F:      block/bfq-*
3107 F:      Documentation/block/bfq-iosched.rst
3108
3109 BFS FILE SYSTEM
3110 M:      "Tigran A. Aivazian" <[email protected]>
3111 S:      Maintained
3112 F:      Documentation/filesystems/bfs.rst
3113 F:      fs/bfs/
3114 F:      include/uapi/linux/bfs_fs.h
3115
3116 BLINKM RGB LED DRIVER
3117 M:      Jan-Simon Moeller <[email protected]>
3118 S:      Maintained
3119 F:      drivers/leds/leds-blinkm.c
3120
3121 BLOCK LAYER
3122 M:      Jens Axboe <[email protected]>
3123 L:      [email protected]
3124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3125 S:      Maintained
3126 F:      block/
3127 F:      drivers/block/
3128 F:      kernel/trace/blktrace.c
3129 F:      lib/sbitmap.c
3130
3131 BLOCK2MTD DRIVER
3132 M:      Joern Engel <[email protected]>
3133 L:      [email protected]
3134 S:      Maintained
3135 F:      drivers/mtd/devices/block2mtd.c
3136
3137 BLUETOOTH DRIVERS
3138 M:      Marcel Holtmann <[email protected]>
3139 M:      Johan Hedberg <[email protected]>
3140 L:      [email protected]
3141 W:      http://www.bluez.org/
3142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3144 S:      Maintained
3145 F:      drivers/bluetooth/
3146
3147 BLUETOOTH SUBSYSTEM
3148 M:      Marcel Holtmann <[email protected]>
3149 M:      Johan Hedberg <[email protected]>
3150 L:      [email protected]
3151 W:      http://www.bluez.org/
3152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3154 S:      Maintained
3155 F:      net/bluetooth/
3156 F:      include/net/bluetooth/
3157
3158 BONDING DRIVER
3159 M:      Jay Vosburgh <[email protected]>
3160 M:      Veaceslav Falico <[email protected]>
3161 M:      Andy Gospodarek <[email protected]>
3162 L:      [email protected]
3163 W:      http://sourceforge.net/projects/bonding/
3164 S:      Supported
3165 F:      drivers/net/bonding/
3166 F:      include/uapi/linux/if_bonding.h
3167
3168 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3169 M:      Dan Robertson <[email protected]>
3170 L:      [email protected]
3171 S:      Maintained
3172 F:      drivers/iio/accel/bma400*
3173 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3174
3175 BPF (Safe dynamic programs and tools)
3176 M:      Alexei Starovoitov <[email protected]>
3177 M:      Daniel Borkmann <[email protected]>
3178 R:      Martin KaFai Lau <[email protected]>
3179 R:      Song Liu <[email protected]>
3180 R:      Yonghong Song <[email protected]>
3181 R:      Andrii Nakryiko <[email protected]>
3182 R:      John Fastabend <[email protected]>
3183 R:      KP Singh <[email protected]>
3184 L:      [email protected]
3185 L:      [email protected]
3186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3188 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3189 S:      Supported
3190 F:      arch/*/net/*
3191 F:      Documentation/networking/filter.txt
3192 F:      Documentation/bpf/
3193 F:      include/linux/bpf*
3194 F:      include/linux/filter.h
3195 F:      include/trace/events/xdp.h
3196 F:      include/uapi/linux/bpf*
3197 F:      include/uapi/linux/filter.h
3198 F:      kernel/bpf/
3199 F:      kernel/trace/bpf_trace.c
3200 F:      lib/test_bpf.c
3201 F:      net/bpf/
3202 F:      net/core/filter.c
3203 F:      net/sched/act_bpf.c
3204 F:      net/sched/cls_bpf.c
3205 F:      samples/bpf/
3206 F:      tools/bpf/
3207 F:      tools/lib/bpf/
3208 F:      tools/testing/selftests/bpf/
3209 K:      bpf
3210 N:      bpf
3211
3212 BPF JIT for ARM
3213 M:      Shubham Bansal <[email protected]>
3214 L:      [email protected]
3215 L:      [email protected]
3216 S:      Maintained
3217 F:      arch/arm/net/
3218
3219 BPF JIT for ARM64
3220 M:      Daniel Borkmann <[email protected]>
3221 M:      Alexei Starovoitov <[email protected]>
3222 M:      Zi Shen Lim <[email protected]>
3223 L:      [email protected]
3224 L:      [email protected]
3225 S:      Supported
3226 F:      arch/arm64/net/
3227
3228 BPF JIT for MIPS (32-BIT AND 64-BIT)
3229 M:      Paul Burton <[email protected]>
3230 L:      [email protected]
3231 L:      [email protected]
3232 S:      Maintained
3233 F:      arch/mips/net/
3234
3235 BPF JIT for NFP NICs
3236 M:      Jakub Kicinski <[email protected]>
3237 L:      [email protected]
3238 L:      [email protected]
3239 S:      Supported
3240 F:      drivers/net/ethernet/netronome/nfp/bpf/
3241
3242 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3243 M:      Naveen N. Rao <[email protected]>
3244 M:      Sandipan Das <[email protected]>
3245 L:      [email protected]
3246 L:      [email protected]
3247 S:      Maintained
3248 F:      arch/powerpc/net/
3249
3250 BPF JIT for RISC-V (32-bit)
3251 M:      Luke Nelson <[email protected]>
3252 M:      Xi Wang <[email protected]>
3253 L:      [email protected]
3254 L:      [email protected]
3255 S:      Maintained
3256 F:      arch/riscv/net/
3257 X:      arch/riscv/net/bpf_jit_comp64.c
3258
3259 BPF JIT for RISC-V (64-bit)
3260 M:      Björn Töpel <[email protected]>
3261 L:      [email protected]
3262 L:      [email protected]
3263 S:      Maintained
3264 F:      arch/riscv/net/
3265 X:      arch/riscv/net/bpf_jit_comp32.c
3266
3267 BPF JIT for S390
3268 M:      Ilya Leoshkevich <[email protected]>
3269 M:      Heiko Carstens <[email protected]>
3270 M:      Vasily Gorbik <[email protected]>
3271 L:      [email protected]
3272 L:      [email protected]
3273 S:      Maintained
3274 F:      arch/s390/net/
3275 X:      arch/s390/net/pnet.c
3276
3277 BPF JIT for SPARC (32-BIT AND 64-BIT)
3278 M:      David S. Miller <[email protected]>
3279 L:      [email protected]
3280 L:      [email protected]
3281 S:      Maintained
3282 F:      arch/sparc/net/
3283
3284 BPF JIT for X86 32-BIT
3285 M:      Wang YanQing <[email protected]>
3286 L:      [email protected]
3287 L:      [email protected]
3288 S:      Maintained
3289 F:      arch/x86/net/bpf_jit_comp32.c
3290
3291 BPF JIT for X86 64-BIT
3292 M:      Alexei Starovoitov <[email protected]>
3293 M:      Daniel Borkmann <[email protected]>
3294 L:      [email protected]
3295 L:      [email protected]
3296 S:      Supported
3297 F:      arch/x86/net/
3298 X:      arch/x86/net/bpf_jit_comp32.c
3299
3300 BROADCOM B44 10/100 ETHERNET DRIVER
3301 M:      Michael Chan <[email protected]>
3302 L:      [email protected]
3303 S:      Supported
3304 F:      drivers/net/ethernet/broadcom/b44.*
3305
3306 BROADCOM B53 ETHERNET SWITCH DRIVER
3307 M:      Florian Fainelli <[email protected]>
3308 L:      [email protected]
3309 L:      [email protected] (subscribers-only)
3310 S:      Supported
3311 F:      drivers/net/dsa/b53/*
3312 F:      include/linux/platform_data/b53.h
3313
3314 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3315 M:      Florian Fainelli <[email protected]>
3316 M:      Ray Jui <[email protected]>
3317 M:      Scott Branden <[email protected]>
3318 M:      [email protected]
3319 T:      git git://github.com/broadcom/mach-bcm
3320 S:      Maintained
3321 N:      bcm281*
3322 N:      bcm113*
3323 N:      bcm216*
3324 N:      kona
3325 F:      arch/arm/mach-bcm/
3326
3327 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3328 M:      Nicolas Saenz Julienne <[email protected]>
3329 L:      [email protected]
3330 L:      [email protected] (moderated for non-subscribers)
3331 L:      [email protected] (moderated for non-subscribers)
3332 T:      git git://github.com/anholt/linux
3333 S:      Maintained
3334 N:      bcm2711
3335 N:      bcm2835
3336 F:      drivers/staging/vc04_services
3337 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3338 F:      drivers/pci/controller/pcie-brcmstb.c
3339
3340 BROADCOM BCM47XX MIPS ARCHITECTURE
3341 M:      Hauke Mehrtens <[email protected]>
3342 M:      Rafał Miłecki <[email protected]>
3343 L:      [email protected]
3344 S:      Maintained
3345 F:      Documentation/devicetree/bindings/mips/brcm/
3346 F:      arch/mips/bcm47xx/*
3347 F:      arch/mips/include/asm/mach-bcm47xx/*
3348
3349 BROADCOM BCM5301X ARM ARCHITECTURE
3350 M:      Hauke Mehrtens <[email protected]>
3351 M:      Rafał Miłecki <[email protected]>
3352 M:      [email protected]
3353 L:      [email protected]
3354 S:      Maintained
3355 F:      arch/arm/mach-bcm/bcm_5301x.c
3356 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3357 F:      arch/arm/boot/dts/bcm470*
3358 F:      arch/arm/boot/dts/bcm953012*
3359
3360 BROADCOM BCM53573 ARM ARCHITECTURE
3361 M:      Rafał Miłecki <[email protected]>
3362 L:      [email protected]
3363 L:      [email protected]
3364 S:      Maintained
3365 F:      arch/arm/boot/dts/bcm53573*
3366 F:      arch/arm/boot/dts/bcm47189*
3367
3368 BROADCOM BCM63XX ARM ARCHITECTURE
3369 M:      Florian Fainelli <[email protected]>
3370 M:      [email protected]
3371 L:      [email protected] (moderated for non-subscribers)
3372 T:      git git://github.com/broadcom/stblinux.git
3373 S:      Maintained
3374 N:      bcm63xx
3375
3376 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3377 M:      Kevin Cernekee <[email protected]>
3378 L:      [email protected]
3379 S:      Maintained
3380 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3381
3382 BROADCOM BCM7XXX ARM ARCHITECTURE
3383 M:      Florian Fainelli <[email protected]>
3384 M:      [email protected]
3385 L:      [email protected] (moderated for non-subscribers)
3386 T:      git git://github.com/broadcom/stblinux.git
3387 S:      Maintained
3388 F:      arch/arm/mach-bcm/*brcmstb*
3389 F:      arch/arm/boot/dts/bcm7*.dts*
3390 F:      drivers/bus/brcmstb_gisb.c
3391 F:      arch/arm/mm/cache-b15-rac.c
3392 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3393 N:      brcmstb
3394 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3395 F:      drivers/pci/controller/pcie-brcmstb.c
3396
3397 BROADCOM BMIPS CPUFREQ DRIVER
3398 M:      Markus Mayer <[email protected]>
3399 M:      [email protected]
3400 L:      [email protected]
3401 S:      Maintained
3402 F:      drivers/cpufreq/bmips-cpufreq.c
3403
3404 BROADCOM BMIPS MIPS ARCHITECTURE
3405 M:      Florian Fainelli <[email protected]>
3406 L:      [email protected]
3407 L:      [email protected]
3408 T:      git git://github.com/broadcom/stblinux.git
3409 S:      Maintained
3410 F:      arch/mips/bmips/*
3411 F:      arch/mips/include/asm/mach-bmips/*
3412 F:      arch/mips/kernel/*bmips*
3413 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3414 F:      drivers/irqchip/irq-bcm63*
3415 F:      drivers/irqchip/irq-bcm7*
3416 F:      drivers/irqchip/irq-brcmstb*
3417 F:      include/linux/bcm963xx_nvram.h
3418 F:      include/linux/bcm963xx_tag.h
3419
3420 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3421 M:      Rasesh Mody <[email protected]>
3422 M:      [email protected]
3423 L:      [email protected]
3424 S:      Supported
3425 F:      drivers/net/ethernet/broadcom/bnx2.*
3426 F:      drivers/net/ethernet/broadcom/bnx2_*
3427
3428 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3429 M:      [email protected]
3430 L:      [email protected]
3431 S:      Supported
3432 F:      drivers/scsi/bnx2fc/
3433
3434 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3435 M:      [email protected]
3436 L:      [email protected]
3437 S:      Supported
3438 F:      drivers/scsi/bnx2i/
3439
3440 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3441 M:      Ariel Elior <[email protected]>
3442 M:      Sudarsana Kalluru <[email protected]>
3443 M:      [email protected]
3444 L:      [email protected]
3445 S:      Supported
3446 F:      drivers/net/ethernet/broadcom/bnx2x/
3447
3448 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3449 M:      Michael Chan <[email protected]>
3450 L:      [email protected]
3451 S:      Supported
3452 F:      drivers/net/ethernet/broadcom/bnxt/
3453
3454 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3455 M:      Arend van Spriel <[email protected]>
3456 M:      Franky Lin <[email protected]>
3457 M:      Hante Meuleman <[email protected]>
3458 M:      Chi-Hsien Lin <[email protected]>
3459 M:      Wright Feng <[email protected]>
3460 L:      [email protected]
3461 L:      [email protected]
3462 L:      [email protected]
3463 S:      Supported
3464 F:      drivers/net/wireless/broadcom/brcm80211/
3465
3466 BROADCOM BRCMSTB GPIO DRIVER
3467 M:      Gregory Fong <[email protected]>
3468 L:      [email protected]
3469 S:      Supported
3470 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3471 F:      drivers/gpio/gpio-brcmstb.c
3472
3473 BROADCOM BRCMSTB I2C DRIVER
3474 M:      Kamal Dasu <[email protected]>
3475 L:      [email protected]
3476 L:      [email protected]
3477 S:      Supported
3478 F:      drivers/i2c/busses/i2c-brcmstb.c
3479 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3480
3481 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3482 M:      Al Cooper <[email protected]>
3483 L:      [email protected]
3484 L:      [email protected]
3485 S:      Maintained
3486 F:      drivers/phy/broadcom/phy-brcm-usb*
3487
3488 BROADCOM GENET ETHERNET DRIVER
3489 M:      Doug Berger <[email protected]>
3490 M:      Florian Fainelli <[email protected]>
3491 L:      [email protected]
3492 L:      [email protected]
3493 S:      Supported
3494 F:      drivers/net/ethernet/broadcom/genet/
3495
3496 BROADCOM IPROC ARM ARCHITECTURE
3497 M:      Ray Jui <[email protected]>
3498 M:      Scott Branden <[email protected]>
3499 M:      [email protected]
3500 L:      [email protected] (moderated for non-subscribers)
3501 T:      git git://github.com/broadcom/cygnus-linux.git
3502 S:      Maintained
3503 N:      iproc
3504 N:      cygnus
3505 N:      bcm[-_]nsp
3506 N:      bcm9113*
3507 N:      bcm9583*
3508 N:      bcm9585*
3509 N:      bcm9586*
3510 N:      bcm988312
3511 N:      bcm113*
3512 N:      bcm583*
3513 N:      bcm585*
3514 N:      bcm586*
3515 N:      bcm88312
3516 N:      hr2
3517 N:      stingray
3518 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3519 F:      arch/arm64/boot/dts/broadcom/stingray/*
3520 F:      drivers/clk/bcm/clk-ns*
3521 F:      drivers/clk/bcm/clk-sr*
3522 F:      drivers/pinctrl/bcm/pinctrl-ns*
3523 F:      include/dt-bindings/clock/bcm-sr*
3524
3525 BROADCOM KONA GPIO DRIVER
3526 M:      Ray Jui <[email protected]>
3527 L:      [email protected]
3528 S:      Supported
3529 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3530 F:      drivers/gpio/gpio-bcm-kona.c
3531
3532 BROADCOM NETXTREME-E ROCE DRIVER
3533 M:      Selvin Xavier <[email protected]>
3534 M:      Devesh Sharma <[email protected]>
3535 M:      Somnath Kotur <[email protected]>
3536 M:      Sriharsha Basavapatna <[email protected]>
3537 L:      [email protected]
3538 W:      http://www.broadcom.com
3539 S:      Supported
3540 F:      drivers/infiniband/hw/bnxt_re/
3541 F:      include/uapi/rdma/bnxt_re-abi.h
3542
3543 BROADCOM NVRAM DRIVER
3544 M:      Rafał Miłecki <[email protected]>
3545 L:      [email protected]
3546 S:      Maintained
3547 F:      drivers/firmware/broadcom/*
3548
3549 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3550 M:      Rafał Miłecki <[email protected]>
3551 L:      [email protected]
3552 S:      Maintained
3553 F:      drivers/bcma/
3554 F:      include/linux/bcma/
3555
3556 BROADCOM STB AVS CPUFREQ DRIVER
3557 M:      Markus Mayer <[email protected]>
3558 M:      [email protected]
3559 L:      [email protected]
3560 S:      Maintained
3561 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3562 F:      drivers/cpufreq/brcmstb*
3563
3564 BROADCOM STB AVS TMON DRIVER
3565 M:      Markus Mayer <[email protected]>
3566 M:      [email protected]
3567 L:      [email protected]
3568 S:      Maintained
3569 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3570 F:      drivers/thermal/broadcom/brcmstb*
3571
3572 BROADCOM STB NAND FLASH DRIVER
3573 M:      Brian Norris <[email protected]>
3574 M:      Kamal Dasu <[email protected]>
3575 L:      [email protected]
3576 L:      [email protected]
3577 S:      Maintained
3578 F:      drivers/mtd/nand/raw/brcmnand/
3579
3580 BROADCOM STB DPFE DRIVER
3581 M:      Markus Mayer <[email protected]>
3582 M:      [email protected]
3583 L:      [email protected] (moderated for non-subscribers)
3584 S:      Maintained
3585 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3586 F:      drivers/memory/brcmstb_dpfe.c
3587
3588 BROADCOM SPI DRIVER
3589 M:      Kamal Dasu <[email protected]>
3590 M:      [email protected]
3591 S:      Maintained
3592 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3593 F:      drivers/spi/spi-bcm-qspi.*
3594 F:      drivers/spi/spi-brcmstb-qspi.c
3595 F:      drivers/spi/spi-iproc-qspi.c
3596
3597 BROADCOM SYSTEMPORT ETHERNET DRIVER
3598 M:      Florian Fainelli <[email protected]>
3599 L:      [email protected]
3600 L:      [email protected]
3601 S:      Supported
3602 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3603
3604 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3605 M:      Siva Reddy Kallam <[email protected]>
3606 M:      Prashant Sreedharan <[email protected]>
3607 M:      Michael Chan <[email protected]>
3608 L:      [email protected]
3609 S:      Supported
3610 F:      drivers/net/ethernet/broadcom/tg3.*
3611
3612 BROCADE BFA FC SCSI DRIVER
3613 M:      Anil Gurumurthy <[email protected]>
3614 M:      Sudarsana Kalluru <[email protected]>
3615 L:      [email protected]
3616 S:      Supported
3617 F:      drivers/scsi/bfa/
3618
3619 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3620 M:      Rasesh Mody <[email protected]>
3621 M:      Sudarsana Kalluru <[email protected]>
3622 M:      [email protected]
3623 L:      [email protected]
3624 S:      Supported
3625 F:      drivers/net/ethernet/brocade/bna/
3626
3627 BSG (block layer generic sg v4 driver)
3628 M:      FUJITA Tomonori <[email protected]>
3629 L:      [email protected]
3630 S:      Supported
3631 F:      block/bsg.c
3632 F:      include/linux/bsg.h
3633 F:      include/uapi/linux/bsg.h
3634
3635 BT87X AUDIO DRIVER
3636 M:      Clemens Ladisch <[email protected]>
3637 L:      [email protected] (moderated for non-subscribers)
3638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3639 S:      Maintained
3640 F:      Documentation/sound/cards/bt87x.rst
3641 F:      sound/pci/bt87x.c
3642
3643 BT8XXGPIO DRIVER
3644 M:      Michael Buesch <[email protected]>
3645 S:      Maintained
3646 W:      http://bu3sch.de/btgpio.php
3647 F:      drivers/gpio/gpio-bt8xx.c
3648
3649 BTRFS FILE SYSTEM
3650 M:      Chris Mason <[email protected]>
3651 M:      Josef Bacik <[email protected]>
3652 M:      David Sterba <[email protected]>
3653 L:      [email protected]
3654 W:      http://btrfs.wiki.kernel.org/
3655 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3657 S:      Maintained
3658 F:      Documentation/filesystems/btrfs.rst
3659 F:      fs/btrfs/
3660 F:      include/linux/btrfs*
3661 F:      include/uapi/linux/btrfs*
3662
3663 BTTV VIDEO4LINUX DRIVER
3664 M:      Mauro Carvalho Chehab <[email protected]>
3665 L:      [email protected]
3666 W:      https://linuxtv.org
3667 T:      git git://linuxtv.org/media_tree.git
3668 S:      Odd fixes
3669 F:      Documentation/media/v4l-drivers/bttv*
3670 F:      drivers/media/pci/bt8xx/bttv*
3671
3672 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3673 M:      Chanwoo Choi <[email protected]>
3674 L:      [email protected]
3675 L:      [email protected]
3676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3677 S:      Maintained
3678 F:      drivers/devfreq/exynos-bus.c
3679 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3680
3681 BUSLOGIC SCSI DRIVER
3682 M:      Khalid Aziz <[email protected]>
3683 L:      [email protected]
3684 S:      Maintained
3685 F:      drivers/scsi/BusLogic.*
3686 F:      drivers/scsi/FlashPoint.*
3687
3688 C-MEDIA CMI8788 DRIVER
3689 M:      Clemens Ladisch <[email protected]>
3690 L:      [email protected] (moderated for non-subscribers)
3691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3692 S:      Maintained
3693 F:      sound/pci/oxygen/
3694
3695 C-SKY ARCHITECTURE
3696 M:      Guo Ren <[email protected]>
3697 L:      [email protected]
3698 T:      git https://github.com/c-sky/csky-linux.git
3699 S:      Supported
3700 F:      arch/csky/
3701 F:      Documentation/devicetree/bindings/csky/
3702 F:      drivers/irqchip/irq-csky-*
3703 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3704 F:      drivers/clocksource/timer-gx6605s.c
3705 F:      drivers/clocksource/timer-mp-csky.c
3706 F:      Documentation/devicetree/bindings/timer/csky,*
3707 K:      csky
3708 N:      csky
3709
3710 C6X ARCHITECTURE
3711 M:      Mark Salter <[email protected]>
3712 M:      Aurelien Jacquiot <[email protected]>
3713 L:      [email protected]
3714 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3715 S:      Maintained
3716 F:      arch/c6x/
3717
3718 CA8210 IEEE-802.15.4 RADIO DRIVER
3719 M:      Harry Morris <[email protected]>
3720 L:      [email protected]
3721 W:      https://github.com/Cascoda/ca8210-linux.git
3722 S:      Maintained
3723 F:      drivers/net/ieee802154/ca8210.c
3724 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3725
3726 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3727 M:      David Howells <[email protected]>
3728 L:      [email protected] (moderated for non-subscribers)
3729 S:      Supported
3730 F:      Documentation/filesystems/caching/cachefiles.txt
3731 F:      fs/cachefiles/
3732
3733 CADENCE MIPI-CSI2 BRIDGES
3734 M:      Maxime Ripard <[email protected]>
3735 L:      [email protected]
3736 S:      Maintained
3737 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3738 F:      drivers/media/platform/cadence/cdns-csi2*
3739
3740 CADENCE NAND DRIVER
3741 M:      Piotr Sroka <[email protected]>
3742 L:      [email protected]
3743 S:      Maintained
3744 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3745 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3746
3747 CADET FM/AM RADIO RECEIVER DRIVER
3748 M:      Hans Verkuil <[email protected]>
3749 L:      [email protected]
3750 T:      git git://linuxtv.org/media_tree.git
3751 W:      https://linuxtv.org
3752 S:      Maintained
3753 F:      drivers/media/radio/radio-cadet*
3754
3755 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3756 M:      Jonathan Corbet <[email protected]>
3757 L:      [email protected]
3758 T:      git git://linuxtv.org/media_tree.git
3759 S:      Maintained
3760 F:      Documentation/media/v4l-drivers/cafe_ccic*
3761 F:      drivers/media/platform/marvell-ccic/
3762
3763 CAIF NETWORK LAYER
3764 L:      [email protected]
3765 S:      Orphan
3766 F:      Documentation/networking/caif/
3767 F:      drivers/net/caif/
3768 F:      include/uapi/linux/caif/
3769 F:      include/net/caif/
3770 F:      net/caif/
3771
3772 CAKE QDISC
3773 M:      Toke Høiland-Jørgensen <[email protected]>
3774 L:      [email protected] (moderated for non-subscribers)
3775 S:      Maintained
3776 F:      net/sched/sch_cake.c
3777
3778 CAN NETWORK DRIVERS
3779 M:      Wolfgang Grandegger <[email protected]>
3780 M:      Marc Kleine-Budde <[email protected]>
3781 L:      [email protected]
3782 W:      https://github.com/linux-can
3783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3785 S:      Maintained
3786 F:      Documentation/devicetree/bindings/net/can/
3787 F:      drivers/net/can/
3788 F:      include/linux/can/dev.h
3789 F:      include/linux/can/led.h
3790 F:      include/linux/can/rx-offload.h
3791 F:      include/linux/can/platform/
3792 F:      include/uapi/linux/can/error.h
3793 F:      include/uapi/linux/can/netlink.h
3794 F:      include/uapi/linux/can/vxcan.h
3795
3796 CAN NETWORK LAYER
3797 M:      Oliver Hartkopp <[email protected]>
3798 M:      Marc Kleine-Budde <[email protected]>
3799 L:      [email protected]
3800 W:      https://github.com/linux-can
3801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3803 S:      Maintained
3804 F:      Documentation/networking/can.rst
3805 F:      net/can/
3806 F:      include/linux/can/core.h
3807 F:      include/linux/can/skb.h
3808 F:      include/net/netns/can.h
3809 F:      include/uapi/linux/can.h
3810 F:      include/uapi/linux/can/bcm.h
3811 F:      include/uapi/linux/can/raw.h
3812 F:      include/uapi/linux/can/gw.h
3813
3814 CAN-J1939 NETWORK LAYER
3815 M:      Robin van der Gracht <[email protected]>
3816 M:      Oleksij Rempel <[email protected]>
3817 R:      Pengutronix Kernel Team <[email protected]>
3818 L:      [email protected]
3819 S:      Maintained
3820 F:      Documentation/networking/j1939.rst
3821 F:      net/can/j1939/
3822 F:      include/uapi/linux/can/j1939.h
3823
3824 CAPABILITIES
3825 M:      Serge Hallyn <[email protected]>
3826 L:      [email protected]
3827 S:      Supported
3828 F:      include/linux/capability.h
3829 F:      include/uapi/linux/capability.h
3830 F:      security/commoncap.c
3831 F:      kernel/capability.c
3832
3833 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3834 M:      Kevin Tsai <[email protected]>
3835 S:      Maintained
3836 F:      drivers/iio/light/cm*
3837
3838 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3839 M:      Christian Lamparter <[email protected]>
3840 L:      [email protected]
3841 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3842 S:      Maintained
3843 F:      drivers/net/wireless/ath/carl9170/
3844
3845 CAVIUM I2C DRIVER
3846 M:      Robert Richter <[email protected]>
3847 W:      http://www.marvell.com
3848 S:      Supported
3849 F:      drivers/i2c/busses/i2c-octeon*
3850 F:      drivers/i2c/busses/i2c-thunderx*
3851
3852 CAVIUM LIQUIDIO NETWORK DRIVER
3853 M:      Derek Chickles <[email protected]>
3854 M:      Satanand Burla <[email protected]>
3855 M:      Felix Manlunas <[email protected]>
3856 L:      [email protected]
3857 W:      http://www.marvell.com
3858 S:      Supported
3859 F:      drivers/net/ethernet/cavium/liquidio/
3860
3861 CAVIUM MMC DRIVER
3862 M:      Robert Richter <[email protected]>
3863 W:      http://www.marvell.com
3864 S:      Supported
3865 F:      drivers/mmc/host/cavium*
3866
3867 CAVIUM OCTEON-TX CRYPTO DRIVER
3868 M:      George Cherian <[email protected]>
3869 L:      [email protected]
3870 W:      http://www.marvell.com
3871 S:      Supported
3872 F:      drivers/crypto/cavium/cpt/
3873
3874 CAVIUM THUNDERX2 ARM64 SOC
3875 M:      Robert Richter <[email protected]>
3876 L:      [email protected] (moderated for non-subscribers)
3877 S:      Maintained
3878 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3879 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3880
3881 CC2520 IEEE-802.15.4 RADIO DRIVER
3882 M:      Varka Bhadram <[email protected]>
3883 L:      [email protected]
3884 S:      Maintained
3885 F:      drivers/net/ieee802154/cc2520.c
3886 F:      include/linux/spi/cc2520.h
3887 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3888
3889 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3890 M:      Gilad Ben-Yossef <[email protected]>
3891 L:      [email protected]
3892 S:      Supported
3893 F:      drivers/crypto/ccree/
3894 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3895
3896 CEC FRAMEWORK
3897 M:      Hans Verkuil <[email protected]>
3898 L:      [email protected]
3899 T:      git git://linuxtv.org/media_tree.git
3900 W:      http://linuxtv.org
3901 S:      Supported
3902 F:      Documentation/media/kapi/cec-core.rst
3903 F:      Documentation/media/uapi/cec
3904 F:      drivers/media/cec/
3905 F:      drivers/media/rc/keymaps/rc-cec.c
3906 F:      include/media/cec.h
3907 F:      include/media/cec-notifier.h
3908 F:      include/uapi/linux/cec.h
3909 F:      include/uapi/linux/cec-funcs.h
3910 F:      Documentation/devicetree/bindings/media/cec.txt
3911 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3912
3913 CEC GPIO DRIVER
3914 M:      Hans Verkuil <[email protected]>
3915 L:      [email protected]
3916 T:      git git://linuxtv.org/media_tree.git
3917 W:      http://linuxtv.org
3918 S:      Supported
3919 F:      drivers/media/platform/cec-gpio/
3920 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3921
3922 CELL BROADBAND ENGINE ARCHITECTURE
3923 M:      Arnd Bergmann <[email protected]>
3924 L:      [email protected]
3925 W:      http://www.ibm.com/developerworks/power/cell/
3926 S:      Supported
3927 F:      arch/powerpc/include/asm/cell*.h
3928 F:      arch/powerpc/include/asm/spu*.h
3929 F:      arch/powerpc/include/uapi/asm/spu*.h
3930 F:      arch/powerpc/oprofile/*cell*
3931 F:      arch/powerpc/platforms/cell/
3932
3933 CEPH COMMON CODE (LIBCEPH)
3934 M:      Ilya Dryomov <[email protected]>
3935 M:      Jeff Layton <[email protected]>
3936 M:      Sage Weil <[email protected]>
3937 L:      [email protected]
3938 W:      http://ceph.com/
3939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3940 T:      git git://github.com/ceph/ceph-client.git
3941 S:      Supported
3942 F:      net/ceph/
3943 F:      include/linux/ceph/
3944 F:      include/linux/crush/
3945
3946 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3947 M:      Jeff Layton <[email protected]>
3948 M:      Sage Weil <[email protected]>
3949 M:      Ilya Dryomov <[email protected]>
3950 L:      [email protected]
3951 W:      http://ceph.com/
3952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3953 T:      git git://github.com/ceph/ceph-client.git
3954 S:      Supported
3955 F:      Documentation/filesystems/ceph.rst
3956 F:      fs/ceph/
3957
3958 CERTIFICATE HANDLING
3959 M:      David Howells <[email protected]>
3960 M:      David Woodhouse <[email protected]>
3961 L:      [email protected]
3962 S:      Maintained
3963 F:      Documentation/admin-guide/module-signing.rst
3964 F:      certs/
3965 F:      scripts/sign-file.c
3966 F:      scripts/extract-cert.c
3967
3968 CFAG12864B LCD DRIVER
3969 M:      Miguel Ojeda Sandonis <[email protected]>
3970 S:      Maintained
3971 F:      drivers/auxdisplay/cfag12864b.c
3972 F:      include/linux/cfag12864b.h
3973
3974 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3975 M:      Miguel Ojeda Sandonis <[email protected]>
3976 S:      Maintained
3977 F:      drivers/auxdisplay/cfag12864bfb.c
3978 F:      include/linux/cfag12864b.h
3979
3980 802.11 (including CFG80211/NL80211)
3981 M:      Johannes Berg <[email protected]>
3982 L:      [email protected]
3983 W:      http://wireless.kernel.org/
3984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3986 S:      Maintained
3987 F:      net/wireless/
3988 F:      include/uapi/linux/nl80211.h
3989 F:      include/linux/ieee80211.h
3990 F:      include/net/wext.h
3991 F:      include/net/cfg80211.h
3992 F:      include/net/iw_handler.h
3993 F:      include/net/ieee80211_radiotap.h
3994 F:      Documentation/driver-api/80211/cfg80211.rst
3995 F:      Documentation/networking/regulatory.txt
3996
3997 CHAR and MISC DRIVERS
3998 M:      Arnd Bergmann <[email protected]>
3999 M:      Greg Kroah-Hartman <[email protected]>
4000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4001 S:      Supported
4002 F:      drivers/char/
4003 F:      drivers/misc/
4004 F:      include/linux/miscdevice.h
4005
4006 CHECKPATCH
4007 M:      Andy Whitcroft <[email protected]>
4008 M:      Joe Perches <[email protected]>
4009 S:      Maintained
4010 F:      scripts/checkpatch.pl
4011
4012 CHINESE DOCUMENTATION
4013 M:      Harry Wei <[email protected]>
4014 M:      Alex Shi <[email protected]>
4015 L:      [email protected] (subscribers-only)
4016 S:      Maintained
4017 F:      Documentation/translations/zh_CN/
4018
4019 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4020 M:      Peter Chen <[email protected]>
4021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4022 L:      [email protected]
4023 S:      Maintained
4024 F:      drivers/usb/chipidea/
4025
4026 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4027 M:      Hans de Goede <[email protected]>
4028 L:      [email protected]
4029 S:      Maintained
4030 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4031 F:      drivers/input/touchscreen/chipone_icn8318.c
4032
4033 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4034 M:      Hans de Goede <[email protected]>
4035 L:      [email protected]
4036 S:      Maintained
4037 F:      drivers/input/touchscreen/chipone_icn8505.c
4038
4039 CHROME HARDWARE PLATFORM SUPPORT
4040 M:      Benson Leung <[email protected]>
4041 M:      Enric Balletbo i Serra <[email protected]>
4042 S:      Maintained
4043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4044 F:      drivers/platform/chrome/
4045
4046 CHROMEOS EC SUBDRIVERS
4047 M:      Benson Leung <[email protected]>
4048 M:      Enric Balletbo i Serra <[email protected]>
4049 R:      Guenter Roeck <[email protected]>
4050 S:      Maintained
4051 N:      cros_ec
4052 N:      cros-ec
4053 F:      drivers/power/supply/cros_usbpd-charger.c
4054
4055 CHROMEOS EC CODEC DRIVER
4056 M:      Cheng-Yi Chiang <[email protected]>
4057 S:      Maintained
4058 R:      Enric Balletbo i Serra <[email protected]>
4059 R:      Guenter Roeck <[email protected]>
4060 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4061 F:      sound/soc/codecs/cros_ec_codec.*
4062
4063 CIRRUS LOGIC AUDIO CODEC DRIVERS
4064 M:      James Schulman <[email protected]>
4065 M:      David Rhodes <[email protected]>
4066 L:      [email protected] (moderated for non-subscribers)
4067 S:      Maintained
4068 F:      sound/soc/codecs/cs*
4069
4070 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4071 M:      Hartley Sweeten <[email protected]>
4072 L:      [email protected]
4073 S:      Maintained
4074 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4075
4076 CIRRUS LOGIC LOCHNAGAR DRIVER
4077 M:      Charles Keepax <[email protected]>
4078 M:      Richard Fitzgerald <[email protected]>
4079 L:      [email protected]
4080 S:      Supported
4081 F:      drivers/clk/clk-lochnagar.c
4082 F:      drivers/hwmon/lochnagar-hwmon.c
4083 F:      drivers/mfd/lochnagar-i2c.c
4084 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4085 F:      drivers/regulator/lochnagar-regulator.c
4086 F:      sound/soc/codecs/lochnagar-sc.c
4087 F:      include/dt-bindings/clk/lochnagar.h
4088 F:      include/dt-bindings/pinctrl/lochnagar.h
4089 F:      include/linux/mfd/lochnagar*
4090 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
4091 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
4092 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
4093 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
4094 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
4095 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
4096 F:      Documentation/hwmon/lochnagar.rst
4097
4098 CISCO FCOE HBA DRIVER
4099 M:      Satish Kharat <[email protected]>
4100 M:      Sesidhar Baddela <[email protected]>
4101 M:      Karan Tilak Kumar <[email protected]>
4102 L:      [email protected]
4103 S:      Supported
4104 F:      drivers/scsi/fnic/
4105
4106 CISCO SCSI HBA DRIVER
4107 M:      Karan Tilak Kumar <[email protected]>
4108 M:      Sesidhar Baddela <[email protected]>
4109 L:      [email protected]
4110 S:      Supported
4111 F:      drivers/scsi/snic/
4112
4113 CISCO VIC ETHERNET NIC DRIVER
4114 M:      Christian Benvenuti <[email protected]>
4115 M:      Govindarajulu Varadarajan <[email protected]>
4116 S:      Supported
4117 F:      drivers/net/ethernet/cisco/enic/
4118
4119 CISCO VIC LOW LATENCY NIC DRIVER
4120 M:      Christian Benvenuti <[email protected]>
4121 M:      Nelson Escobar <[email protected]>
4122 M:      Parvi Kaustubhi <[email protected]>
4123 S:      Supported
4124 F:      drivers/infiniband/hw/usnic/
4125
4126 CIRRUS LOGIC MADERA CODEC DRIVERS
4127 M:      Charles Keepax <[email protected]>
4128 M:      Richard Fitzgerald <[email protected]>
4129 L:      [email protected] (moderated for non-subscribers)
4130 L:      [email protected]
4131 T:      git https://github.com/CirrusLogic/linux-drivers.git
4132 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4133 S:      Supported
4134 F:      Documentation/devicetree/bindings/mfd/madera.txt
4135 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4136 F:      Documentation/devicetree/bindings/sound/madera.txt
4137 F:      include/dt-bindings/sound/madera*
4138 F:      include/linux/irqchip/irq-madera*
4139 F:      include/linux/mfd/madera/*
4140 F:      include/sound/madera*
4141 F:      drivers/gpio/gpio-madera*
4142 F:      drivers/irqchip/irq-madera*
4143 F:      drivers/mfd/madera*
4144 F:      drivers/mfd/cs47l*
4145 F:      drivers/pinctrl/cirrus/*
4146 F:      sound/soc/codecs/cs47l*
4147 F:      sound/soc/codecs/madera*
4148
4149 CLANG-FORMAT FILE
4150 M:      Miguel Ojeda <[email protected]>
4151 S:      Maintained
4152 F:      .clang-format
4153
4154 CLANG/LLVM BUILD SUPPORT
4155 L:      [email protected]
4156 W:      https://clangbuiltlinux.github.io/
4157 B:      https://github.com/ClangBuiltLinux/linux/issues
4158 C:      irc://chat.freenode.net/clangbuiltlinux
4159 S:      Supported
4160 K:      \b(?i:clang|llvm)\b
4161 F:      Documentation/kbuild/llvm.rst
4162
4163 CLEANCACHE API
4164 M:      Konrad Rzeszutek Wilk <[email protected]>
4165 L:      [email protected]
4166 S:      Maintained
4167 F:      mm/cleancache.c
4168 F:      include/linux/cleancache.h
4169
4170 CLK API
4171 M:      Russell King <[email protected]>
4172 L:      [email protected]
4173 S:      Maintained
4174 F:      include/linux/clk.h
4175
4176 CLOCKSOURCE, CLOCKEVENT DRIVERS
4177 M:      Daniel Lezcano <[email protected]>
4178 M:      Thomas Gleixner <[email protected]>
4179 L:      [email protected]
4180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4181 S:      Supported
4182 F:      drivers/clocksource/
4183 F:      Documentation/devicetree/bindings/timer/
4184
4185 CMPC ACPI DRIVER
4186 M:      Thadeu Lima de Souza Cascardo <[email protected]>
4187 M:      Daniel Oliveira Nascimento <[email protected]>
4188 L:      [email protected]
4189 S:      Supported
4190 F:      drivers/platform/x86/classmate-laptop.c
4191
4192 COBALT MEDIA DRIVER
4193 M:      Hans Verkuil <[email protected]>
4194 L:      [email protected]
4195 T:      git git://linuxtv.org/media_tree.git
4196 W:      https://linuxtv.org
4197 S:      Supported
4198 F:      drivers/media/pci/cobalt/
4199
4200 COCCINELLE/Semantic Patches (SmPL)
4201 M:      Julia Lawall <[email protected]>
4202 M:      Gilles Muller <[email protected]>
4203 M:      Nicolas Palix <[email protected]>
4204 M:      Michal Marek <[email protected]>
4205 L:      [email protected] (moderated for non-subscribers)
4206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4207 W:      http://coccinelle.lip6.fr/
4208 S:      Supported
4209 F:      Documentation/dev-tools/coccinelle.rst
4210 F:      scripts/coccinelle/
4211 F:      scripts/coccicheck
4212
4213 CODA FILE SYSTEM
4214 M:      Jan Harkes <[email protected]>
4215 M:      [email protected]
4216 L:      [email protected]
4217 W:      http://www.coda.cs.cmu.edu/
4218 S:      Maintained
4219 F:      Documentation/filesystems/coda.txt
4220 F:      fs/coda/
4221 F:      include/linux/coda*.h
4222 F:      include/uapi/linux/coda*.h
4223
4224 CODA V4L2 MEM2MEM DRIVER
4225 M:      Philipp Zabel <[email protected]>
4226 L:      [email protected]
4227 S:      Maintained
4228 F:      Documentation/devicetree/bindings/media/coda.txt
4229 F:      drivers/media/platform/coda/
4230
4231 CODE OF CONDUCT
4232 M:      Greg Kroah-Hartman <[email protected]>
4233 S:      Supported
4234 F:      Documentation/process/code-of-conduct.rst
4235 F:      Documentation/process/code-of-conduct-interpretation.rst
4236
4237 COMMON CLK FRAMEWORK
4238 M:      Michael Turquette <[email protected]>
4239 M:      Stephen Boyd <[email protected]>
4240 L:      [email protected]
4241 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4243 S:      Maintained
4244 F:      Documentation/devicetree/bindings/clock/
4245 F:      drivers/clk/
4246 X:      drivers/clk/clkdev.c
4247 F:      include/linux/clk-pr*
4248 F:      include/linux/clk/
4249 F:      include/linux/of_clk.h
4250
4251 COMMON INTERNET FILE SYSTEM (CIFS)
4252 M:      Steve French <[email protected]>
4253 L:      [email protected]
4254 L:      [email protected] (moderated for non-subscribers)
4255 W:      http://linux-cifs.samba.org/
4256 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4257 S:      Supported
4258 F:      Documentation/admin-guide/cifs/
4259 F:      fs/cifs/
4260
4261 COMPACTPCI HOTPLUG CORE
4262 M:      Scott Murray <[email protected]>
4263 L:      [email protected]
4264 S:      Maintained
4265 F:      drivers/pci/hotplug/cpci_hotplug*
4266
4267 COMPACTPCI HOTPLUG GENERIC DRIVER
4268 M:      Scott Murray <[email protected]>
4269 L:      [email protected]
4270 S:      Maintained
4271 F:      drivers/pci/hotplug/cpcihp_generic.c
4272
4273 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4274 M:      Scott Murray <[email protected]>
4275 L:      [email protected]
4276 S:      Maintained
4277 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4278
4279 COMPAL LAPTOP SUPPORT
4280 M:      Cezary Jackiewicz <[email protected]>
4281 L:      [email protected]
4282 S:      Maintained
4283 F:      drivers/platform/x86/compal-laptop.c
4284
4285 COMPILER ATTRIBUTES
4286 M:      Miguel Ojeda <[email protected]>
4287 S:      Maintained
4288 F:      include/linux/compiler_attributes.h
4289
4290 CONEXANT ACCESSRUNNER USB DRIVER
4291 L:      [email protected]
4292 W:      http://accessrunner.sourceforge.net/
4293 S:      Orphan
4294 F:      drivers/usb/atm/cxacru.c
4295
4296 CONFIGFS
4297 M:      Joel Becker <[email protected]>
4298 M:      Christoph Hellwig <[email protected]>
4299 T:      git git://git.infradead.org/users/hch/configfs.git
4300 S:      Supported
4301 F:      fs/configfs/
4302 F:      include/linux/configfs.h
4303
4304 CONNECTOR
4305 M:      Evgeniy Polyakov <[email protected]>
4306 L:      [email protected]
4307 S:      Maintained
4308 F:      drivers/connector/
4309
4310 CONTROL GROUP (CGROUP)
4311 M:      Tejun Heo <[email protected]>
4312 M:      Li Zefan <[email protected]>
4313 M:      Johannes Weiner <[email protected]>
4314 L:      [email protected]
4315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4316 S:      Maintained
4317 F:      Documentation/admin-guide/cgroup-v2.rst
4318 F:      Documentation/admin-guide/cgroup-v1/
4319 F:      include/linux/cgroup*
4320 F:      kernel/cgroup/
4321
4322 CONTROL GROUP - CPUSET
4323 M:      Li Zefan <[email protected]>
4324 L:      [email protected]
4325 W:      http://www.bullopensource.org/cpuset/
4326 W:      http://oss.sgi.com/projects/cpusets/
4327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4328 S:      Maintained
4329 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4330 F:      include/linux/cpuset.h
4331 F:      kernel/cgroup/cpuset.c
4332
4333 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4334 M:      Johannes Weiner <[email protected]>
4335 M:      Michal Hocko <[email protected]>
4336 M:      Vladimir Davydov <[email protected]>
4337 L:      [email protected]
4338 L:      [email protected]
4339 S:      Maintained
4340 F:      mm/memcontrol.c
4341 F:      mm/swap_cgroup.c
4342
4343 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4344 M:      Tejun Heo <[email protected]>
4345 M:      Jens Axboe <[email protected]>
4346 L:      [email protected]
4347 L:      [email protected]
4348 T:      git git://git.kernel.dk/linux-block
4349 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4350 F:      block/blk-cgroup.c
4351 F:      include/linux/blk-cgroup.h
4352 F:      block/blk-throttle.c
4353 F:      block/blk-iolatency.c
4354 F:      block/bfq-cgroup.c
4355
4356 CORETEMP HARDWARE MONITORING DRIVER
4357 M:      Fenghua Yu <[email protected]>
4358 L:      [email protected]
4359 S:      Maintained
4360 F:      Documentation/hwmon/coretemp.rst
4361 F:      drivers/hwmon/coretemp.c
4362
4363 COSA/SRP SYNC SERIAL DRIVER
4364 M:      Jan "Yenya" Kasprzak <[email protected]>
4365 W:      http://www.fi.muni.cz/~kas/cosa/
4366 S:      Maintained
4367 F:      drivers/net/wan/cosa*
4368
4369 COUNTER SUBSYSTEM
4370 M:      William Breathitt Gray <[email protected]>
4371 L:      [email protected]
4372 S:      Maintained
4373 F:      Documentation/ABI/testing/sysfs-bus-counter*
4374 F:      Documentation/driver-api/generic-counter.rst
4375 F:      drivers/counter/
4376 F:      include/linux/counter.h
4377 F:      include/linux/counter_enum.h
4378
4379 CPMAC ETHERNET DRIVER
4380 M:      Florian Fainelli <[email protected]>
4381 L:      [email protected]
4382 S:      Maintained
4383 F:      drivers/net/ethernet/ti/cpmac.c
4384
4385 CPU FREQUENCY SCALING FRAMEWORK
4386 M:      "Rafael J. Wysocki" <[email protected]>
4387 M:      Viresh Kumar <[email protected]>
4388 L:      [email protected]
4389 S:      Maintained
4390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4392 B:      https://bugzilla.kernel.org
4393 F:      Documentation/admin-guide/pm/cpufreq.rst
4394 F:      Documentation/admin-guide/pm/intel_pstate.rst
4395 F:      Documentation/cpu-freq/
4396 F:      Documentation/devicetree/bindings/cpufreq/
4397 F:      drivers/cpufreq/
4398 F:      kernel/sched/cpufreq*.c
4399 F:      include/linux/cpufreq.h
4400 F:      include/linux/sched/cpufreq.h
4401 F:      tools/testing/selftests/cpufreq/
4402
4403 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4404 M:      Viresh Kumar <[email protected]>
4405 M:      Sudeep Holla <[email protected]>
4406 L:      [email protected]
4407 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4408 S:      Maintained
4409 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4410
4411 CPU POWER MONITORING SUBSYSTEM
4412 M:      Thomas Renninger <[email protected]>
4413 M:      Shuah Khan <[email protected]>
4414 M:      Shuah Khan <[email protected]>
4415 L:      [email protected]
4416 S:      Maintained
4417 F:      tools/power/cpupower/
4418
4419 CPUID/MSR DRIVER
4420 M:      "H. Peter Anvin" <[email protected]>
4421 S:      Maintained
4422 F:      arch/x86/kernel/cpuid.c
4423 F:      arch/x86/kernel/msr.c
4424
4425 CPUIDLE DRIVER - ARM BIG LITTLE
4426 M:      Lorenzo Pieralisi <[email protected]>
4427 M:      Daniel Lezcano <[email protected]>
4428 L:      [email protected]
4429 L:      [email protected]
4430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4431 S:      Maintained
4432 F:      drivers/cpuidle/cpuidle-big_little.c
4433
4434 CPUIDLE DRIVER - ARM EXYNOS
4435 M:      Bartlomiej Zolnierkiewicz <[email protected]>
4436 M:      Daniel Lezcano <[email protected]>
4437 M:      Kukjin Kim <[email protected]>
4438 L:      [email protected]
4439 L:      [email protected]
4440 S:      Supported
4441 F:      drivers/cpuidle/cpuidle-exynos.c
4442 F:      arch/arm/mach-exynos/pm.c
4443
4444 CPUIDLE DRIVER - ARM PSCI
4445 M:      Lorenzo Pieralisi <[email protected]>
4446 M:      Sudeep Holla <[email protected]>
4447 L:      [email protected]
4448 L:      [email protected]
4449 S:      Supported
4450 F:      drivers/cpuidle/cpuidle-psci.c
4451
4452 CPU IDLE TIME MANAGEMENT FRAMEWORK
4453 M:      "Rafael J. Wysocki" <[email protected]>
4454 M:      Daniel Lezcano <[email protected]>
4455 L:      [email protected]
4456 S:      Maintained
4457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4458 B:      https://bugzilla.kernel.org
4459 F:      Documentation/admin-guide/pm/cpuidle.rst
4460 F:      Documentation/driver-api/pm/cpuidle.rst
4461 F:      drivers/cpuidle/*
4462 F:      include/linux/cpuidle.h
4463
4464 CRAMFS FILESYSTEM
4465 M:      Nicolas Pitre <[email protected]>
4466 S:      Maintained
4467 F:      Documentation/filesystems/cramfs.rst
4468 F:      fs/cramfs/
4469
4470 CREATIVE SB0540
4471 M:      Bastien Nocera <[email protected]>
4472 L:      [email protected]
4473 S:      Maintained
4474 F:      drivers/hid/hid-creative-sb0540.c
4475
4476 CRYPTO API
4477 M:      Herbert Xu <[email protected]>
4478 M:      "David S. Miller" <[email protected]>
4479 L:      [email protected]
4480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4482 S:      Maintained
4483 F:      Documentation/crypto/
4484 F:      Documentation/devicetree/bindings/crypto/
4485 F:      arch/*/crypto/
4486 F:      crypto/
4487 F:      drivers/crypto/
4488 F:      include/crypto/
4489 F:      include/linux/crypto*
4490 F:      lib/crypto/
4491
4492 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4493 M:      Neil Horman <[email protected]>
4494 L:      [email protected]
4495 S:      Maintained
4496 F:      crypto/ansi_cprng.c
4497 F:      crypto/rng.c
4498
4499 CS3308 MEDIA DRIVER
4500 M:      Hans Verkuil <[email protected]>
4501 L:      [email protected]
4502 T:      git git://linuxtv.org/media_tree.git
4503 W:      http://linuxtv.org
4504 S:      Odd Fixes
4505 F:      drivers/media/i2c/cs3308.c
4506
4507 CS5535 Audio ALSA driver
4508 M:      Jaya Kumar <[email protected]>
4509 S:      Maintained
4510 F:      sound/pci/cs5535audio/
4511
4512 CSI DRIVERS FOR ALLWINNER V3s
4513 M:      Yong Deng <[email protected]>
4514 L:      [email protected]
4515 T:      git git://linuxtv.org/media_tree.git
4516 S:      Maintained
4517 F:      drivers/media/platform/sunxi/sun6i-csi/
4518 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4519
4520 CW1200 WLAN driver
4521 M:      Solomon Peachy <[email protected]>
4522 S:      Maintained
4523 F:      drivers/net/wireless/st/cw1200/
4524
4525 CX18 VIDEO4LINUX DRIVER
4526 M:      Andy Walls <[email protected]>
4527 L:      [email protected]
4528 T:      git git://linuxtv.org/media_tree.git
4529 W:      https://linuxtv.org
4530 S:      Maintained
4531 F:      drivers/media/pci/cx18/
4532 F:      include/uapi/linux/ivtv*
4533
4534 CX2341X MPEG ENCODER HELPER MODULE
4535 M:      Hans Verkuil <[email protected]>
4536 L:      [email protected]
4537 T:      git git://linuxtv.org/media_tree.git
4538 W:      https://linuxtv.org
4539 S:      Maintained
4540 F:      drivers/media/common/cx2341x*
4541 F:      include/media/drv-intf/cx2341x.h
4542
4543 CX24120 MEDIA DRIVER
4544 M:      Jemma Denson <[email protected]>
4545 M:      Patrick Boettcher <[email protected]>
4546 L:      [email protected]
4547 W:      https://linuxtv.org
4548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4549 S:      Maintained
4550 F:      drivers/media/dvb-frontends/cx24120*
4551
4552 CX88 VIDEO4LINUX DRIVER
4553 M:      Mauro Carvalho Chehab <[email protected]>
4554 L:      [email protected]
4555 W:      https://linuxtv.org
4556 T:      git git://linuxtv.org/media_tree.git
4557 S:      Odd fixes
4558 F:      Documentation/media/v4l-drivers/cx88*
4559 F:      drivers/media/pci/cx88/
4560
4561 CXD2820R MEDIA DRIVER
4562 M:      Antti Palosaari <[email protected]>
4563 L:      [email protected]
4564 W:      https://linuxtv.org
4565 W:      http://palosaari.fi/linux/
4566 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4567 T:      git git://linuxtv.org/anttip/media_tree.git
4568 S:      Maintained
4569 F:      drivers/media/dvb-frontends/cxd2820r*
4570
4571 CXGB3 ETHERNET DRIVER (CXGB3)
4572 M:      Vishal Kulkarni <[email protected]>
4573 L:      [email protected]
4574 W:      http://www.chelsio.com
4575 S:      Supported
4576 F:      drivers/net/ethernet/chelsio/cxgb3/
4577
4578 CXGB3 ISCSI DRIVER (CXGB3I)
4579 M:      Karen Xie <[email protected]>
4580 L:      [email protected]
4581 W:      http://www.chelsio.com
4582 S:      Supported
4583 F:      drivers/scsi/cxgbi/cxgb3i
4584
4585 CXGB4 CRYPTO DRIVER (chcr)
4586 M:      Ayush Sawal <[email protected]>
4587 M:      Vinay Kumar Yadav <[email protected]>
4588 M:      Rohit Maheshwari <[email protected]>
4589 L:      [email protected]
4590 W:      http://www.chelsio.com
4591 S:      Supported
4592 F:      drivers/crypto/chelsio
4593
4594 CXGB4 ETHERNET DRIVER (CXGB4)
4595 M:      Vishal Kulkarni <[email protected]>
4596 L:      [email protected]
4597 W:      http://www.chelsio.com
4598 S:      Supported
4599 F:      drivers/net/ethernet/chelsio/cxgb4/
4600
4601 CXGB4 ISCSI DRIVER (CXGB4I)
4602 M:      Karen Xie <[email protected]>
4603 L:      [email protected]
4604 W:      http://www.chelsio.com
4605 S:      Supported
4606 F:      drivers/scsi/cxgbi/cxgb4i
4607
4608 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4609 M:      Potnuri Bharat Teja <[email protected]>
4610 L:      [email protected]
4611 W:      http://www.openfabrics.org
4612 S:      Supported
4613 F:      drivers/infiniband/hw/cxgb4/
4614 F:      include/uapi/rdma/cxgb4-abi.h
4615
4616 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4617 M:      Vishal Kulkarni <[email protected]>
4618 L:      [email protected]
4619 W:      http://www.chelsio.com
4620 S:      Supported
4621 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4622
4623 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4624 M:      Frederic Barrat <[email protected]>
4625 M:      Andrew Donnellan <[email protected]>
4626 L:      [email protected]
4627 S:      Supported
4628 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4629 F:      drivers/misc/cxl/
4630 F:      include/misc/cxl*
4631 F:      include/uapi/misc/cxl.h
4632 F:      Documentation/powerpc/cxl.rst
4633 F:      Documentation/ABI/testing/sysfs-class-cxl
4634
4635 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4636 M:      Manoj N. Kumar <[email protected]>
4637 M:      Matthew R. Ochs <[email protected]>
4638 M:      Uma Krishnan <[email protected]>
4639 L:      [email protected]
4640 S:      Supported
4641 F:      drivers/scsi/cxlflash/
4642 F:      include/uapi/scsi/cxlflash_ioctl.h
4643 F:      Documentation/powerpc/cxlflash.rst
4644
4645 CYBERPRO FB DRIVER
4646 M:      Russell King <[email protected]>
4647 L:      [email protected] (moderated for non-subscribers)
4648 W:      http://www.armlinux.org.uk/
4649 S:      Maintained
4650 F:      drivers/video/fbdev/cyber2000fb.*
4651
4652 CYCLADES ASYNC MUX DRIVER
4653 W:      http://www.cyclades.com/
4654 S:      Orphan
4655 F:      drivers/tty/cyclades.c
4656 F:      include/linux/cyclades.h
4657 F:      include/uapi/linux/cyclades.h
4658
4659 CYCLADES PC300 DRIVER
4660 W:      http://www.cyclades.com/
4661 S:      Orphan
4662 F:      drivers/net/wan/pc300*
4663
4664 CYPRESS_FIRMWARE MEDIA DRIVER
4665 M:      Antti Palosaari <[email protected]>
4666 L:      [email protected]
4667 W:      https://linuxtv.org
4668 W:      http://palosaari.fi/linux/
4669 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4670 T:      git git://linuxtv.org/anttip/media_tree.git
4671 S:      Maintained
4672 F:      drivers/media/common/cypress_firmware*
4673
4674 CYTTSP TOUCHSCREEN DRIVER
4675 M:      Ferruh Yigit <[email protected]>
4676 L:      [email protected]
4677 S:      Supported
4678 F:      drivers/input/touchscreen/cyttsp*
4679 F:      include/linux/input/cyttsp.h
4680
4681 D-LINK DIR-685 TOUCHKEYS DRIVER
4682 M:      Linus Walleij <[email protected]>
4683 L:      [email protected]
4684 S:      Supported
4685 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4686
4687 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4688 M:      Joshua Kinard <[email protected]>
4689 S:      Maintained
4690 F:      drivers/rtc/rtc-ds1685.c
4691 F:      include/linux/rtc/ds1685.h
4692
4693 DAMA SLAVE for AX.25
4694 M:      Joerg Reuter <[email protected]>
4695 W:      http://yaina.de/jreuter/
4696 W:      http://www.qsl.net/dl1bke/
4697 L:      [email protected]
4698 S:      Maintained
4699 F:      net/ax25/af_ax25.c
4700 F:      net/ax25/ax25_dev.c
4701 F:      net/ax25/ax25_ds_*
4702 F:      net/ax25/ax25_in.c
4703 F:      net/ax25/ax25_out.c
4704 F:      net/ax25/ax25_timer.c
4705 F:      net/ax25/sysctl_net_ax25.c
4706
4707 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4708 L:      [email protected]
4709 S:      Orphan
4710 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4711 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4712
4713 DC390/AM53C974 SCSI driver
4714 M:      Hannes Reinecke <[email protected]>
4715 L:      [email protected]
4716 S:      Maintained
4717 F:      drivers/scsi/am53c974.c
4718
4719 DC395x SCSI driver
4720 M:      Oliver Neukum <[email protected]>
4721 M:      Ali Akcaagac <[email protected]>
4722 M:      Jamie Lenehan <[email protected]>
4723 L:      [email protected]
4724 W:      http://twibble.org/dist/dc395x/
4725 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4726 S:      Maintained
4727 F:      Documentation/scsi/dc395x.rst
4728 F:      drivers/scsi/dc395x.*
4729
4730 DCCP PROTOCOL
4731 M:      Gerrit Renker <[email protected]>
4732 L:      [email protected]
4733 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4734 S:      Maintained
4735 F:      include/linux/dccp.h
4736 F:      include/uapi/linux/dccp.h
4737 F:      include/linux/tfrc.h
4738 F:      net/dccp/
4739
4740 DECnet NETWORK LAYER
4741 W:      http://linux-decnet.sourceforge.net
4742 L:      [email protected]
4743 S:      Orphan
4744 F:      Documentation/networking/decnet.txt
4745 F:      net/decnet/
4746
4747 DECSTATION PLATFORM SUPPORT
4748 M:      "Maciej W. Rozycki" <[email protected]>
4749 L:      [email protected]
4750 W:      http://www.linux-mips.org/wiki/DECstation
4751 S:      Maintained
4752 F:      arch/mips/dec/
4753 F:      arch/mips/include/asm/dec/
4754 F:      arch/mips/include/asm/mach-dec/
4755
4756 DEFXX FDDI NETWORK DRIVER
4757 M:      "Maciej W. Rozycki" <[email protected]>
4758 S:      Maintained
4759 F:      drivers/net/fddi/defxx.*
4760
4761 DEINTERLACE DRIVERS FOR ALLWINNER H3
4762 M:      Jernej Skrabec <[email protected]>
4763 L:      [email protected]
4764 T:      git git://linuxtv.org/media_tree.git
4765 S:      Maintained
4766 F:      drivers/media/platform/sunxi/sun8i-di/
4767 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4768
4769 DEFZA FDDI NETWORK DRIVER
4770 M:      "Maciej W. Rozycki" <[email protected]>
4771 S:      Maintained
4772 F:      drivers/net/fddi/defza.*
4773
4774 DELL LAPTOP DRIVER
4775 M:      Matthew Garrett <[email protected]>
4776 M:      Pali Rohár <[email protected]>
4777 L:      [email protected]
4778 S:      Maintained
4779 F:      drivers/platform/x86/dell-laptop.c
4780
4781 DELL LAPTOP FREEFALL DRIVER
4782 M:      Pali Rohár <[email protected]>
4783 S:      Maintained
4784 F:      drivers/platform/x86/dell-smo8800.c
4785
4786 DELL LAPTOP RBTN DRIVER
4787 M:      Pali Rohár <[email protected]>
4788 S:      Maintained
4789 F:      drivers/platform/x86/dell-rbtn.*
4790
4791 DELL LAPTOP SMM DRIVER
4792 M:      Pali Rohár <[email protected]>
4793 S:      Maintained
4794 F:      drivers/hwmon/dell-smm-hwmon.c
4795 F:      include/uapi/linux/i8k.h
4796
4797 DELL REMOTE BIOS UPDATE DRIVER
4798 M:      Stuart Hayes <[email protected]>
4799 L:      [email protected]
4800 S:      Maintained
4801 F:      drivers/platform/x86/dell_rbu.c
4802
4803 DELL SMBIOS DRIVER
4804 M:      Pali Rohár <[email protected]>
4805 M:      Mario Limonciello <[email protected]>
4806 L:      [email protected]
4807 S:      Maintained
4808 F:      drivers/platform/x86/dell-smbios.*
4809
4810 DELL SMBIOS SMM DRIVER
4811 M:      Mario Limonciello <[email protected]>
4812 L:      [email protected]
4813 S:      Maintained
4814 F:      drivers/platform/x86/dell-smbios-smm.c
4815
4816 DELL SMBIOS WMI DRIVER
4817 M:      Mario Limonciello <[email protected]>
4818 L:      [email protected]
4819 S:      Maintained
4820 F:      drivers/platform/x86/dell-smbios-wmi.c
4821 F:      tools/wmi/dell-smbios-example.c
4822
4823 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4824 M:      Stuart Hayes <[email protected]>
4825 L:      [email protected]
4826 S:      Maintained
4827 F:      Documentation/driver-api/dcdbas.rst
4828 F:      drivers/platform/x86/dcdbas.*
4829
4830 DELL WMI DESCRIPTOR DRIVER
4831 M:      Mario Limonciello <[email protected]>
4832 S:      Maintained
4833 F:      drivers/platform/x86/dell-wmi-descriptor.c
4834
4835 DELL WMI NOTIFICATIONS DRIVER
4836 M:      Matthew Garrett <[email protected]>
4837 M:      Pali Rohár <[email protected]>
4838 S:      Maintained
4839 F:      drivers/platform/x86/dell-wmi.c
4840
4841 DELTA ST MEDIA DRIVER
4842 M:      Hugues Fruchet <[email protected]>
4843 L:      [email protected]
4844 T:      git git://linuxtv.org/media_tree.git
4845 W:      https://linuxtv.org
4846 S:      Supported
4847 F:      drivers/media/platform/sti/delta
4848
4849 DENALI NAND DRIVER
4850 M:      Masahiro Yamada <[email protected]>
4851 L:      [email protected]
4852 S:      Supported
4853 F:      drivers/mtd/nand/raw/denali*
4854
4855 DESIGNWARE EDMA CORE IP DRIVER
4856 M:      Gustavo Pimentel <[email protected]>
4857 L:      [email protected]
4858 S:      Maintained
4859 F:      drivers/dma/dw-edma/
4860 F:      include/linux/dma/edma.h
4861
4862 DESIGNWARE USB2 DRD IP DRIVER
4863 M:      Minas Harutyunyan <[email protected]>
4864 L:      [email protected]
4865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4866 S:      Maintained
4867 F:      drivers/usb/dwc2/
4868
4869 DESIGNWARE USB3 DRD IP DRIVER
4870 M:      Felipe Balbi <[email protected]>
4871 L:      [email protected]
4872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4873 S:      Maintained
4874 F:      drivers/usb/dwc3/
4875
4876 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4877 M:      Andreas Klinger <[email protected]>
4878 L:      [email protected]
4879 S:      Maintained
4880 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4881 F:      drivers/iio/proximity/srf*.c
4882
4883 DEVICE COREDUMP (DEV_COREDUMP)
4884 M:      Johannes Berg <[email protected]>
4885 L:      [email protected]
4886 S:      Maintained
4887 F:      drivers/base/devcoredump.c
4888 F:      include/linux/devcoredump.h
4889
4890 DEVICE FREQUENCY (DEVFREQ)
4891 M:      MyungJoo Ham <[email protected]>
4892 M:      Kyungmin Park <[email protected]>
4893 M:      Chanwoo Choi <[email protected]>
4894 L:      [email protected]
4895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4896 S:      Maintained
4897 F:      drivers/devfreq/
4898 F:      include/linux/devfreq.h
4899 F:      Documentation/devicetree/bindings/devfreq/
4900 F:      include/trace/events/devfreq.h
4901
4902 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4903 M:      Chanwoo Choi <[email protected]>
4904 L:      [email protected]
4905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4906 S:      Supported
4907 F:      drivers/devfreq/event/
4908 F:      drivers/devfreq/devfreq-event.c
4909 F:      include/dt-bindings/pmu/exynos_ppmu.h
4910 F:      include/linux/devfreq-event.h
4911 F:      Documentation/devicetree/bindings/devfreq/event/
4912
4913 DEVICE NUMBER REGISTRY
4914 M:      Torben Mathiasen <[email protected]>
4915 W:      http://lanana.org/docs/device-list/index.html
4916 S:      Maintained
4917
4918 DEVICE-MAPPER  (LVM)
4919 M:      Alasdair Kergon <[email protected]>
4920 M:      Mike Snitzer <[email protected]>
4921 M:      [email protected]
4922 L:      [email protected]
4923 W:      http://sources.redhat.com/dm
4924 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4926 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4927 S:      Maintained
4928 F:      Documentation/admin-guide/device-mapper/
4929 F:      drivers/md/Makefile
4930 F:      drivers/md/Kconfig
4931 F:      drivers/md/dm*
4932 F:      drivers/md/persistent-data/
4933 F:      include/linux/device-mapper.h
4934 F:      include/linux/dm-*.h
4935 F:      include/uapi/linux/dm-*.h
4936
4937 DEVLINK
4938 M:      Jiri Pirko <[email protected]>
4939 L:      [email protected]
4940 S:      Supported
4941 F:      net/core/devlink.c
4942 F:      include/net/devlink.h
4943 F:      include/uapi/linux/devlink.h
4944 F:      Documentation/networking/devlink
4945
4946 DIALOG SEMICONDUCTOR DRIVERS
4947 M:      Support Opensource <[email protected]>
4948 W:      http://www.dialog-semiconductor.com/products
4949 S:      Supported
4950 F:      Documentation/hwmon/da90??.rst
4951 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4952 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4953 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4954 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4955 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4956 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4957 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4958 F:      drivers/gpio/gpio-da90??.c
4959 F:      drivers/hwmon/da90??-hwmon.c
4960 F:      drivers/iio/adc/da91??-*.c
4961 F:      drivers/input/misc/da90??_onkey.c
4962 F:      drivers/input/touchscreen/da9052_tsi.c
4963 F:      drivers/leds/leds-da90??.c
4964 F:      drivers/mfd/da903x.c
4965 F:      drivers/mfd/da90??-*.c
4966 F:      drivers/mfd/da91??-*.c
4967 F:      drivers/pinctrl/pinctrl-da90??.c
4968 F:      drivers/power/supply/da9052-battery.c
4969 F:      drivers/power/supply/da91??-*.c
4970 F:      drivers/regulator/da903x.c
4971 F:      drivers/regulator/da9???-regulator.[ch]
4972 F:      drivers/regulator/slg51000-regulator.[ch]
4973 F:      drivers/thermal/da90??-thermal.c
4974 F:      drivers/rtc/rtc-da90??.c
4975 F:      drivers/video/backlight/da90??_bl.c
4976 F:      drivers/watchdog/da90??_wdt.c
4977 F:      include/linux/mfd/da903x.h
4978 F:      include/linux/mfd/da9052/
4979 F:      include/linux/mfd/da9055/
4980 F:      include/linux/mfd/da9062/
4981 F:      include/linux/mfd/da9063/
4982 F:      include/linux/mfd/da9150/
4983 F:      include/linux/regulator/da9211.h
4984 F:      include/sound/da[79]*.h
4985 F:      sound/soc/codecs/da[79]*.[ch]
4986
4987 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4988 M:      William Breathitt Gray <[email protected]>
4989 L:      [email protected]
4990 S:      Maintained
4991 F:      drivers/gpio/gpio-gpio-mm.c
4992
4993 DIOLAN U2C-12 I2C DRIVER
4994 M:      Guenter Roeck <[email protected]>
4995 L:      [email protected]
4996 S:      Maintained
4997 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4998
4999 FILESYSTEM DIRECT ACCESS (DAX)
5000 M:      Dan Williams <[email protected]>
5001 R:      Matthew Wilcox <[email protected]>
5002 R:      Jan Kara <[email protected]>
5003 L:      [email protected]
5004 L:      [email protected]
5005 S:      Supported
5006 F:      fs/dax.c
5007 F:      include/linux/dax.h
5008 F:      include/trace/events/fs_dax.h
5009
5010 DEVICE DIRECT ACCESS (DAX)
5011 M:      Dan Williams <[email protected]>
5012 M:      Vishal Verma <[email protected]>
5013 M:      Dave Jiang <[email protected]>
5014 L:      [email protected]
5015 S:      Supported
5016 F:      drivers/dax/
5017
5018 DIRECTORY NOTIFICATION (DNOTIFY)
5019 M:      Jan Kara <[email protected]>
5020 R:      Amir Goldstein <[email protected]>
5021 L:      [email protected]
5022 S:      Maintained
5023 F:      Documentation/filesystems/dnotify.txt
5024 F:      fs/notify/dnotify/
5025 F:      include/linux/dnotify.h
5026
5027 DISK GEOMETRY AND PARTITION HANDLING
5028 M:      Andries Brouwer <[email protected]>
5029 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5030 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5031 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5032 S:      Maintained
5033
5034 DISKQUOTA
5035 M:      Jan Kara <[email protected]>
5036 S:      Maintained
5037 F:      Documentation/filesystems/quota.txt
5038 F:      fs/quota/
5039 F:      include/linux/quota*.h
5040 F:      include/uapi/linux/quota*.h
5041
5042 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5043 M:      Bernie Thompson <[email protected]>
5044 L:      [email protected]
5045 S:      Maintained
5046 W:      http://plugable.com/category/projects/udlfb/
5047 F:      drivers/video/fbdev/udlfb.c
5048 F:      include/video/udlfb.h
5049 F:      Documentation/fb/udlfb.rst
5050
5051 DISTRIBUTED LOCK MANAGER (DLM)
5052 M:      Christine Caulfield <[email protected]>
5053 M:      David Teigland <[email protected]>
5054 L:      [email protected]
5055 W:      http://sources.redhat.com/cluster/
5056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5057 S:      Supported
5058 F:      fs/dlm/
5059
5060 DMA BUFFER SHARING FRAMEWORK
5061 M:      Sumit Semwal <[email protected]>
5062 S:      Maintained
5063 L:      [email protected]
5064 L:      [email protected]
5065 L:      [email protected] (moderated for non-subscribers)
5066 F:      drivers/dma-buf/
5067 F:      include/linux/dma-buf*
5068 F:      include/linux/dma-resv.h
5069 F:      include/linux/*fence.h
5070 F:      Documentation/driver-api/dma-buf.rst
5071 K:      dma_(buf|fence|resv)
5072 T:      git git://anongit.freedesktop.org/drm/drm-misc
5073
5074 DMA-BUF HEAPS FRAMEWORK
5075 M:      Sumit Semwal <[email protected]>
5076 R:      Andrew F. Davis <[email protected]>
5077 R:      Benjamin Gaignard <[email protected]>
5078 R:      Liam Mark <[email protected]>
5079 R:      Laura Abbott <[email protected]>
5080 R:      Brian Starkey <[email protected]>
5081 R:      John Stultz <[email protected]>
5082 S:      Maintained
5083 L:      [email protected]
5084 L:      [email protected]
5085 L:      [email protected] (moderated for non-subscribers)
5086 F:      include/uapi/linux/dma-heap.h
5087 F:      include/linux/dma-heap.h
5088 F:      drivers/dma-buf/dma-heap.c
5089 F:      drivers/dma-buf/heaps/*
5090 T:      git git://anongit.freedesktop.org/drm/drm-misc
5091
5092 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5093 M:      Vinod Koul <[email protected]>
5094 L:      [email protected]
5095 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5096 S:      Maintained
5097 F:      drivers/dma/
5098 F:      include/linux/dmaengine.h
5099 F:      include/linux/of_dma.h
5100 F:      Documentation/devicetree/bindings/dma/
5101 F:      Documentation/driver-api/dmaengine/
5102 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
5103
5104 DMA MAPPING HELPERS
5105 M:      Christoph Hellwig <[email protected]>
5106 M:      Marek Szyprowski <[email protected]>
5107 R:      Robin Murphy <[email protected]>
5108 L:      [email protected]
5109 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5110 W:      http://git.infradead.org/users/hch/dma-mapping.git
5111 S:      Supported
5112 F:      kernel/dma/
5113 F:      include/asm-generic/dma-mapping.h
5114 F:      include/linux/dma-direct.h
5115 F:      include/linux/dma-mapping.h
5116 F:      include/linux/dma-noncoherent.h
5117
5118 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5119 M:      Lukasz Luba <[email protected]>
5120 L:      [email protected]
5121 L:      [email protected]
5122 S:      Maintained
5123 F:      drivers/memory/samsung/exynos5422-dmc.c
5124 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5125
5126 DME1737 HARDWARE MONITOR DRIVER
5127 M:      Juerg Haefliger <[email protected]>
5128 L:      [email protected]
5129 S:      Maintained
5130 F:      Documentation/hwmon/dme1737.rst
5131 F:      drivers/hwmon/dme1737.c
5132
5133 DMI/SMBIOS SUPPORT
5134 M:      Jean Delvare <[email protected]>
5135 S:      Maintained
5136 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5137 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5138 F:      drivers/firmware/dmi-id.c
5139 F:      drivers/firmware/dmi_scan.c
5140 F:      include/linux/dmi.h
5141
5142 DOCUMENTATION
5143 M:      Jonathan Corbet <[email protected]>
5144 L:      [email protected]
5145 S:      Maintained
5146 F:      Documentation/
5147 F:      scripts/documentation-file-ref-check
5148 F:      scripts/kernel-doc
5149 F:      scripts/sphinx-pre-install
5150 X:      Documentation/ABI/
5151 X:      Documentation/firmware-guide/acpi/
5152 X:      Documentation/devicetree/
5153 X:      Documentation/i2c/
5154 X:      Documentation/media/
5155 X:      Documentation/power/
5156 X:      Documentation/spi/
5157 T:      git git://git.lwn.net/linux.git docs-next
5158
5159 DOCUMENTATION/ITALIAN
5160 M:      Federico Vaga <[email protected]>
5161 L:      [email protected]
5162 S:      Maintained
5163 F:      Documentation/translations/it_IT
5164
5165 DOCUMENTATION SCRIPTS
5166 M:      Mauro Carvalho Chehab <[email protected]>
5167 L:      [email protected]
5168 S:      Maintained
5169 F:      scripts/documentation-file-ref-check
5170 F:      scripts/sphinx-pre-install
5171 F:      Documentation/sphinx/parse-headers.pl
5172
5173 DONGWOON DW9714 LENS VOICE COIL DRIVER
5174 M:      Sakari Ailus <[email protected]>
5175 L:      [email protected]
5176 T:      git git://linuxtv.org/media_tree.git
5177 S:      Maintained
5178 F:      drivers/media/i2c/dw9714.c
5179 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5180
5181 DONGWOON DW9807 LENS VOICE COIL DRIVER
5182 M:      Sakari Ailus <[email protected]>
5183 L:      [email protected]
5184 T:      git git://linuxtv.org/media_tree.git
5185 S:      Maintained
5186 F:      drivers/media/i2c/dw9807-vcm.c
5187 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5188
5189 DOUBLETALK DRIVER
5190 M:      "James R. Van Zandt" <[email protected]>
5191 L:      [email protected]
5192 S:      Maintained
5193 F:      drivers/char/dtlk.c
5194 F:      include/linux/dtlk.h
5195
5196 DPAA2 DATAPATH I/O (DPIO) DRIVER
5197 M:      Roy Pledge <[email protected]>
5198 L:      [email protected]
5199 S:      Maintained
5200 F:      drivers/soc/fsl/dpio
5201
5202 DPAA2 ETHERNET DRIVER
5203 M:      Ioana Radulescu <[email protected]>
5204 L:      [email protected]
5205 S:      Maintained
5206 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5207 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5208 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5209 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5210 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5211 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5212 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5213 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5214 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5215
5216 DPAA2 ETHERNET SWITCH DRIVER
5217 M:      Ioana Radulescu <[email protected]>
5218 M:      Ioana Ciornei <[email protected]>
5219 L:      [email protected]
5220 S:      Maintained
5221 F:      drivers/staging/fsl-dpaa2/ethsw
5222
5223 DPT_I2O SCSI RAID DRIVER
5224 M:      Adaptec OEM Raid Solutions <[email protected]>
5225 L:      [email protected]
5226 W:      http://www.adaptec.com/
5227 S:      Maintained
5228 F:      drivers/scsi/dpt*
5229 F:      drivers/scsi/dpt/
5230
5231 DRBD DRIVER
5232 M:      Philipp Reisner <[email protected]>
5233 M:      Lars Ellenberg <[email protected]>
5234 L:      [email protected]
5235 W:      http://www.drbd.org
5236 T:      git git://git.linbit.com/linux-drbd.git
5237 T:      git git://git.linbit.com/drbd-8.4.git
5238 S:      Supported
5239 F:      drivers/block/drbd/
5240 F:      lib/lru_cache.c
5241 F:      Documentation/admin-guide/blockdev/
5242
5243 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5244 M:      Greg Kroah-Hartman <[email protected]>
5245 R:      "Rafael J. Wysocki" <[email protected]>
5246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5247 S:      Supported
5248 F:      Documentation/core-api/kobject.rst
5249 F:      drivers/base/
5250 F:      fs/debugfs/
5251 F:      fs/sysfs/
5252 F:      include/linux/debugfs.h
5253 F:      include/linux/kobj*
5254 F:      lib/kobj*
5255
5256 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5257 M:      Kevin Hilman <[email protected]>
5258 M:      Nishanth Menon <[email protected]>
5259 S:      Maintained
5260 F:      drivers/power/avs/
5261 F:      include/linux/power/smartreflex.h
5262 L:      [email protected]
5263
5264 DRM DRIVER FOR ARM PL111 CLCD
5265 M:      Eric Anholt <[email protected]>
5266 T:      git git://anongit.freedesktop.org/drm/drm-misc
5267 S:      Supported
5268 F:      drivers/gpu/drm/pl111/
5269
5270 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5271 M:      Linus Walleij <[email protected]>
5272 T:      git git://anongit.freedesktop.org/drm/drm-misc
5273 S:      Maintained
5274 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5275 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5276
5277 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5278 M:      Dave Airlie <[email protected]>
5279 S:      Odd Fixes
5280 F:      drivers/gpu/drm/ast/
5281
5282 DRM DRIVER FOR ASPEED BMC GFX
5283 M:      Joel Stanley <[email protected]>
5284 L:      [email protected]
5285 T:      git git://anongit.freedesktop.org/drm/drm-misc
5286 S:      Supported
5287 F:      drivers/gpu/drm/aspeed/
5288 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5289
5290 DRM DRIVER FOR BOCHS VIRTUAL GPU
5291 M:      Gerd Hoffmann <[email protected]>
5292 L:      [email protected]
5293 T:      git git://anongit.freedesktop.org/drm/drm-misc
5294 S:      Maintained
5295 F:      drivers/gpu/drm/bochs/
5296
5297 DRM DRIVER FOR BOE HIMAX8279D PANELS
5298 M:      Jerry Han <[email protected]>
5299 S:      Maintained
5300 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5301 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.txt
5302
5303 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5304 M:      Linus Walleij <[email protected]>
5305 T:      git git://anongit.freedesktop.org/drm/drm-misc
5306 S:      Maintained
5307 F:      drivers/gpu/drm/tve200/
5308
5309 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5310 M:      Icenowy Zheng <[email protected]>
5311 S:      Maintained
5312 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5313 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5314
5315 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5316 M:      Jagan Teki <[email protected]>
5317 S:      Maintained
5318 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5319 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5320
5321 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5322 M:      Hans de Goede <[email protected]>
5323 T:      git git://anongit.freedesktop.org/drm/drm-misc
5324 S:      Maintained
5325 F:      drivers/gpu/drm/tiny/gm12u320.c
5326
5327 DRM DRIVER FOR ILITEK ILI9225 PANELS
5328 M:      David Lechner <[email protected]>
5329 T:      git git://anongit.freedesktop.org/drm/drm-misc
5330 S:      Maintained
5331 F:      drivers/gpu/drm/tiny/ili9225.c
5332 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5333
5334 DRM DRIVER FOR ILITEK ILI9486 PANELS
5335 M:      Kamlesh Gurudasani <[email protected]>
5336 T:      git git://anongit.freedesktop.org/drm/drm-misc
5337 S:      Maintained
5338 F:      drivers/gpu/drm/tiny/ili9486.c
5339 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5340
5341 DRM DRIVER FOR HX8357D PANELS
5342 M:      Eric Anholt <[email protected]>
5343 T:      git git://anongit.freedesktop.org/drm/drm-misc
5344 S:      Maintained
5345 F:      drivers/gpu/drm/tiny/hx8357d.c
5346 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5347
5348 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5349 S:      Orphan / Obsolete
5350 F:      drivers/gpu/drm/i810/
5351 F:      include/uapi/drm/i810_drm.h
5352
5353 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5354 S:      Orphan / Obsolete
5355 F:      drivers/gpu/drm/mga/
5356 F:      include/uapi/drm/mga_drm.h
5357
5358 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5359 M:      Dave Airlie <[email protected]>
5360 S:      Odd Fixes
5361 F:      drivers/gpu/drm/mgag200/
5362
5363 DRM DRIVER FOR MI0283QT
5364 M:      Noralf Trønnes <[email protected]>
5365 T:      git git://anongit.freedesktop.org/drm/drm-misc
5366 S:      Maintained
5367 F:      drivers/gpu/drm/tiny/mi0283qt.c
5368 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5369
5370 DRM DRIVER FOR MSM ADRENO GPU
5371 M:      Rob Clark <[email protected]>
5372 M:      Sean Paul <[email protected]>
5373 L:      [email protected]
5374 L:      [email protected]
5375 L:      [email protected]
5376 T:      git https://gitlab.freedesktop.org/drm/msm.git
5377 S:      Maintained
5378 F:      drivers/gpu/drm/msm/
5379 F:      include/uapi/drm/msm_drm.h
5380 F:      Documentation/devicetree/bindings/display/msm/
5381
5382 DRM DRIVER FOR NOVATEK NT35510 PANELS
5383 M:      Linus Walleij <[email protected]>
5384 T:      git git://anongit.freedesktop.org/drm/drm-misc
5385 S:      Maintained
5386 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5387 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5388
5389 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5390 M:      Ben Skeggs <[email protected]>
5391 L:      [email protected]
5392 L:      [email protected]
5393 T:      git git://github.com/skeggsb/linux
5394 S:      Supported
5395 F:      drivers/gpu/drm/nouveau/
5396 F:      include/uapi/drm/nouveau_drm.h
5397
5398 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5399 M:      Stefan Mavrodiev <[email protected]>
5400 S:      Maintained
5401 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5402 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5403
5404 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5405 M:      Noralf Trønnes <[email protected]>
5406 T:      git git://anongit.freedesktop.org/drm/drm-misc
5407 S:      Maintained
5408 F:      drivers/gpu/drm/tiny/repaper.c
5409 F:      Documentation/devicetree/bindings/display/repaper.txt
5410
5411 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5412 M:      Dave Airlie <[email protected]>
5413 M:      Gerd Hoffmann <[email protected]>
5414 L:      [email protected]
5415 T:      git git://anongit.freedesktop.org/drm/drm-misc
5416 S:      Obsolete
5417 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5418 F:      drivers/gpu/drm/cirrus/
5419
5420 DRM DRIVER FOR QXL VIRTUAL GPU
5421 M:      Dave Airlie <[email protected]>
5422 M:      Gerd Hoffmann <[email protected]>
5423 L:      [email protected]
5424 L:      [email protected]
5425 T:      git git://anongit.freedesktop.org/drm/drm-misc
5426 S:      Maintained
5427 F:      drivers/gpu/drm/qxl/
5428 F:      include/uapi/drm/qxl_drm.h
5429
5430 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5431 M:      Robert Chiras <[email protected]>
5432 S:      Maintained
5433 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5434 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5435
5436 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5437 S:      Orphan / Obsolete
5438 F:      drivers/gpu/drm/r128/
5439 F:      include/uapi/drm/r128_drm.h
5440
5441 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5442 M:      Guido Günther <[email protected]>
5443 R:      Purism Kernel Team <[email protected]>
5444 S:      Maintained
5445 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5446 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5447
5448 DRM DRIVER FOR SAVAGE VIDEO CARDS
5449 S:      Orphan / Obsolete
5450 F:      drivers/gpu/drm/savage/
5451 F:      include/uapi/drm/savage_drm.h
5452
5453 DRM DRIVER FOR SIS VIDEO CARDS
5454 S:      Orphan / Obsolete
5455 F:      drivers/gpu/drm/sis/
5456 F:      include/uapi/drm/sis_drm.h
5457
5458 DRM DRIVER FOR SITRONIX ST7701 PANELS
5459 M:      Jagan Teki <[email protected]>
5460 S:      Maintained
5461 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5462 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5463
5464 DRM DRIVER FOR SITRONIX ST7586 PANELS
5465 M:      David Lechner <[email protected]>
5466 T:      git git://anongit.freedesktop.org/drm/drm-misc
5467 S:      Maintained
5468 F:      drivers/gpu/drm/tiny/st7586.c
5469 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5470
5471 DRM DRIVER FOR SITRONIX ST7735R PANELS
5472 M:      David Lechner <[email protected]>
5473 T:      git git://anongit.freedesktop.org/drm/drm-misc
5474 S:      Maintained
5475 F:      drivers/gpu/drm/tiny/st7735r.c
5476 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5477
5478 DRM DRIVER FOR SONY ACX424AKP PANELS
5479 M:      Linus Walleij <[email protected]>
5480 T:      git git://anongit.freedesktop.org/drm/drm-misc
5481 S:      Maintained
5482 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5483
5484 DRM DRIVER FOR ST-ERICSSON MCDE
5485 M:      Linus Walleij <[email protected]>
5486 T:      git git://anongit.freedesktop.org/drm/drm-misc
5487 S:      Maintained
5488 F:      drivers/gpu/drm/mcde/
5489 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5490
5491 DRM DRIVER FOR TDFX VIDEO CARDS
5492 S:      Orphan / Obsolete
5493 F:      drivers/gpu/drm/tdfx/
5494
5495 DRM DRIVER FOR TPO TPG110 PANELS
5496 M:      Linus Walleij <[email protected]>
5497 T:      git git://anongit.freedesktop.org/drm/drm-misc
5498 S:      Maintained
5499 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5500 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5501
5502 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5503 M:      Dave Airlie <[email protected]>
5504 R:      Sean Paul <[email protected]>
5505 L:      [email protected]
5506 S:      Odd Fixes
5507 F:      drivers/gpu/drm/udl/
5508 T:      git git://anongit.freedesktop.org/drm/drm-misc
5509
5510 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5511 M:      Hans de Goede <[email protected]>
5512 L:      [email protected]
5513 S:      Maintained
5514 F:      drivers/gpu/drm/vboxvideo/
5515 T:      git git://anongit.freedesktop.org/drm/drm-misc
5516
5517 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5518 M:      Rodrigo Siqueira <[email protected]>
5519 R:      Haneen Mohammed <[email protected]>
5520 R:      Daniel Vetter <[email protected]>
5521 T:      git git://anongit.freedesktop.org/drm/drm-misc
5522 S:      Maintained
5523 L:      [email protected]
5524 F:      drivers/gpu/drm/vkms/
5525 F:      Documentation/gpu/vkms.rst
5526
5527 DRM DRIVER FOR VMWARE VIRTUAL GPU
5528 M:      "VMware Graphics" <[email protected]>
5529 M:      Thomas Hellstrom <[email protected]>
5530 L:      [email protected]
5531 T:      git git://people.freedesktop.org/~thomash/linux
5532 S:      Supported
5533 F:      drivers/gpu/drm/vmwgfx/
5534 F:      include/uapi/drm/vmwgfx_drm.h
5535
5536 DRM DRIVERS
5537 M:      David Airlie <[email protected]>
5538 M:      Daniel Vetter <[email protected]>
5539 L:      [email protected]
5540 T:      git git://anongit.freedesktop.org/drm/drm
5541 B:      https://bugs.freedesktop.org/
5542 C:      irc://chat.freenode.net/dri-devel
5543 S:      Maintained
5544 F:      drivers/gpu/drm/
5545 F:      drivers/gpu/vga/
5546 F:      Documentation/devicetree/bindings/display/
5547 F:      Documentation/devicetree/bindings/gpu/
5548 F:      Documentation/gpu/
5549 F:      include/drm/
5550 F:      include/uapi/drm/
5551 F:      include/linux/vga*
5552
5553 DRM DRIVERS AND MISC GPU PATCHES
5554 M:      Maarten Lankhorst <[email protected]>
5555 M:      Maxime Ripard <[email protected]>
5556 M:      Thomas Zimmermann <[email protected]>
5557 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5558 S:      Maintained
5559 T:      git git://anongit.freedesktop.org/drm/drm-misc
5560 F:      Documentation/gpu/
5561 F:      drivers/gpu/vga/
5562 F:      drivers/gpu/drm/*
5563 F:      include/drm/drm*
5564 F:      include/uapi/drm/drm*
5565 F:      include/linux/vga*
5566
5567 DRM DRIVERS FOR ALLWINNER A10
5568 M:      Maxime Ripard <[email protected]>
5569 M:      Chen-Yu Tsai <[email protected]>
5570 L:      [email protected]
5571 S:      Supported
5572 F:      drivers/gpu/drm/sun4i/
5573 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5574 T:      git git://anongit.freedesktop.org/drm/drm-misc
5575
5576 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5577 M:      Maxime Ripard <[email protected]>
5578 M:      Chen-Yu Tsai <[email protected]>
5579 R:      Jernej Skrabec <[email protected]>
5580 L:      [email protected]
5581 S:      Supported
5582 F:      drivers/gpu/drm/sun4i/sun8i*
5583 T:      git git://anongit.freedesktop.org/drm/drm-misc
5584
5585 DRM DRIVERS FOR AMLOGIC SOCS
5586 M:      Neil Armstrong <[email protected]>
5587 L:      [email protected]
5588 L:      [email protected]
5589 W:      http://linux-meson.com/
5590 S:      Supported
5591 F:      drivers/gpu/drm/meson/
5592 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5593 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5594 F:      Documentation/gpu/meson.rst
5595 T:      git git://anongit.freedesktop.org/drm/drm-misc
5596
5597 DRM DRIVERS FOR ATMEL HLCDC
5598 M:      Sam Ravnborg <[email protected]>
5599 M:      Boris Brezillon <[email protected]>
5600 L:      [email protected]
5601 S:      Supported
5602 F:      drivers/gpu/drm/atmel-hlcdc/
5603 F:      Documentation/devicetree/bindings/display/atmel/
5604 T:      git git://anongit.freedesktop.org/drm/drm-misc
5605
5606 DRM DRIVERS FOR BRIDGE CHIPS
5607 M:      Andrzej Hajda <[email protected]>
5608 M:      Neil Armstrong <[email protected]>
5609 R:      Laurent Pinchart <[email protected]>
5610 R:      Jonas Karlman <[email protected]>
5611 R:      Jernej Skrabec <[email protected]>
5612 S:      Maintained
5613 T:      git git://anongit.freedesktop.org/drm/drm-misc
5614 F:      drivers/gpu/drm/bridge/
5615
5616 DRM DRIVERS FOR EXYNOS
5617 M:      Inki Dae <[email protected]>
5618 M:      Joonyoung Shim <[email protected]>
5619 M:      Seung-Woo Kim <[email protected]>
5620 M:      Kyungmin Park <[email protected]>
5621 L:      [email protected]
5622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5623 S:      Supported
5624 F:      drivers/gpu/drm/exynos/
5625 F:      include/uapi/drm/exynos_drm.h
5626 F:      Documentation/devicetree/bindings/display/exynos/
5627
5628 DRM DRIVERS FOR FREESCALE DCU
5629 M:      Stefan Agner <[email protected]>
5630 M:      Alison Wang <[email protected]>
5631 L:      [email protected]
5632 S:      Supported
5633 F:      drivers/gpu/drm/fsl-dcu/
5634 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5635 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5636 T:      git git://anongit.freedesktop.org/drm/drm-misc
5637
5638 DRM DRIVERS FOR FREESCALE IMX
5639 M:      Philipp Zabel <[email protected]>
5640 L:      [email protected]
5641 S:      Maintained
5642 F:      drivers/gpu/drm/imx/
5643 F:      drivers/gpu/ipu-v3/
5644 F:      Documentation/devicetree/bindings/display/imx/
5645
5646 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5647 M:      Patrik Jakobsson <[email protected]>
5648 L:      [email protected]
5649 T:      git git://github.com/patjak/drm-gma500
5650 S:      Maintained
5651 F:      drivers/gpu/drm/gma500/
5652
5653 DRM DRIVERS FOR HISILICON
5654 M:      Xinliang Liu <[email protected]>
5655 M:      Rongrong Zou <[email protected]>
5656 R:      John Stultz <[email protected]>
5657 R:      Xinwei Kong <[email protected]>
5658 R:      Chen Feng <[email protected]>
5659 L:      [email protected]
5660 T:      git git://anongit.freedesktop.org/drm/drm-misc
5661 S:      Maintained
5662 F:      drivers/gpu/drm/hisilicon/
5663 F:      Documentation/devicetree/bindings/display/hisilicon/
5664
5665 DRM DRIVERS FOR LIMA
5666 M:      Qiang Yu <[email protected]>
5667 L:      [email protected]
5668 L:      [email protected] (moderated for non-subscribers)
5669 S:      Maintained
5670 F:      drivers/gpu/drm/lima/
5671 F:      include/uapi/drm/lima_drm.h
5672 T:      git git://anongit.freedesktop.org/drm/drm-misc
5673
5674 DRM DRIVERS FOR MEDIATEK
5675 M:      Chun-Kuang Hu <[email protected]>
5676 M:      Philipp Zabel <[email protected]>
5677 L:      [email protected]
5678 S:      Supported
5679 F:      drivers/gpu/drm/mediatek/
5680 F:      Documentation/devicetree/bindings/display/mediatek/
5681
5682 DRM DRIVERS FOR NVIDIA TEGRA
5683 M:      Thierry Reding <[email protected]>
5684 L:      [email protected]
5685 L:      [email protected]
5686 T:      git git://anongit.freedesktop.org/tegra/linux.git
5687 S:      Supported
5688 F:      drivers/gpu/drm/tegra/
5689 F:      drivers/gpu/host1x/
5690 F:      include/linux/host1x.h
5691 F:      include/uapi/drm/tegra_drm.h
5692 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5693
5694 DRM DRIVERS FOR RENESAS
5695 M:      Laurent Pinchart <[email protected]>
5696 M:      Kieran Bingham <[email protected]>
5697 L:      [email protected]
5698 L:      [email protected]
5699 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5700 S:      Supported
5701 F:      drivers/gpu/drm/rcar-du/
5702 F:      drivers/gpu/drm/shmobile/
5703 F:      include/linux/platform_data/shmob_drm.h
5704 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5705 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5706 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5707
5708 DRM DRIVERS FOR ROCKCHIP
5709 M:      Sandy Huang <[email protected]>
5710 M:      Heiko Stübner <[email protected]>
5711 L:      [email protected]
5712 S:      Maintained
5713 F:      drivers/gpu/drm/rockchip/
5714 F:      Documentation/devicetree/bindings/display/rockchip/
5715 T:      git git://anongit.freedesktop.org/drm/drm-misc
5716
5717 DRM DRIVERS FOR STI
5718 M:      Benjamin Gaignard <[email protected]>
5719 M:      Vincent Abriou <[email protected]>
5720 L:      [email protected]
5721 T:      git git://anongit.freedesktop.org/drm/drm-misc
5722 S:      Maintained
5723 F:      drivers/gpu/drm/sti
5724 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5725
5726 DRM DRIVERS FOR STM
5727 M:      Yannick Fertre <[email protected]>
5728 M:      Philippe Cornu <[email protected]>
5729 M:      Benjamin Gaignard <[email protected]>
5730 M:      Vincent Abriou <[email protected]>
5731 L:      [email protected]
5732 T:      git git://anongit.freedesktop.org/drm/drm-misc
5733 S:      Maintained
5734 F:      drivers/gpu/drm/stm
5735 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5736
5737 DRM DRIVERS FOR TI LCDC
5738 M:      Jyri Sarha <[email protected]>
5739 R:      Tomi Valkeinen <[email protected]>
5740 L:      [email protected]
5741 S:      Maintained
5742 F:      drivers/gpu/drm/tilcdc/
5743 F:      Documentation/devicetree/bindings/display/tilcdc/
5744
5745 DRM DRIVERS FOR TI OMAP
5746 M:      Tomi Valkeinen <[email protected]>
5747 L:      [email protected]
5748 S:      Maintained
5749 F:      drivers/gpu/drm/omapdrm/
5750 F:      Documentation/devicetree/bindings/display/ti/
5751
5752 DRM DRIVERS FOR TI KEYSTONE
5753 M:      Jyri Sarha <[email protected]>
5754 M:      Tomi Valkeinen <[email protected]>
5755 L:      [email protected]
5756 S:      Maintained
5757 F:      drivers/gpu/drm/tidss/
5758 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5759 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5760 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5761 T:      git git://anongit.freedesktop.org/drm/drm-misc
5762
5763 DRM DRIVERS FOR V3D
5764 M:      Eric Anholt <[email protected]>
5765 S:      Supported
5766 F:      drivers/gpu/drm/v3d/
5767 F:      include/uapi/drm/v3d_drm.h
5768 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5769 T:      git git://anongit.freedesktop.org/drm/drm-misc
5770
5771 DRM DRIVERS FOR VC4
5772 M:      Eric Anholt <[email protected]>
5773 T:      git git://github.com/anholt/linux
5774 S:      Supported
5775 F:      drivers/gpu/drm/vc4/
5776 F:      include/uapi/drm/vc4_drm.h
5777 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5778 T:      git git://anongit.freedesktop.org/drm/drm-misc
5779
5780 DRM DRIVERS FOR VIVANTE GPU IP
5781 M:      Lucas Stach <[email protected]>
5782 R:      Russell King <[email protected]>
5783 R:      Christian Gmeiner <[email protected]>
5784 L:      [email protected] (moderated for non-subscribers)
5785 L:      [email protected]
5786 S:      Maintained
5787 F:      drivers/gpu/drm/etnaviv/
5788 F:      include/uapi/drm/etnaviv_drm.h
5789 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5790
5791 DRM DRIVERS FOR ZTE ZX
5792 M:      Shawn Guo <[email protected]>
5793 L:      [email protected]
5794 S:      Maintained
5795 F:      drivers/gpu/drm/zte/
5796 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5797 T:      git git://anongit.freedesktop.org/drm/drm-misc
5798
5799 DRM PANEL DRIVERS
5800 M:      Thierry Reding <[email protected]>
5801 R:      Sam Ravnborg <[email protected]>
5802 L:      [email protected]
5803 T:      git git://anongit.freedesktop.org/drm/drm-misc
5804 S:      Maintained
5805 F:      drivers/gpu/drm/drm_panel.c
5806 F:      drivers/gpu/drm/panel/
5807 F:      include/drm/drm_panel.h
5808 F:      Documentation/devicetree/bindings/display/panel/
5809
5810 DRM DRIVERS FOR XEN
5811 M:      Oleksandr Andrushchenko <[email protected]>
5812 T:      git git://anongit.freedesktop.org/drm/drm-misc
5813 L:      [email protected]
5814 L:      [email protected] (moderated for non-subscribers)
5815 S:      Supported
5816 F:      drivers/gpu/drm/xen/
5817 F:      Documentation/gpu/xen-front.rst
5818
5819 DRM TTM SUBSYSTEM
5820 M:      Christian Koenig <[email protected]>
5821 M:      Huang Rui <[email protected]>
5822 T:      git git://people.freedesktop.org/~agd5f/linux
5823 S:      Maintained
5824 L:      [email protected]
5825 F:      include/drm/ttm/
5826 F:      drivers/gpu/drm/ttm/
5827
5828 DSBR100 USB FM RADIO DRIVER
5829 M:      Alexey Klimov <[email protected]>
5830 L:      [email protected]
5831 T:      git git://linuxtv.org/media_tree.git
5832 S:      Maintained
5833 F:      drivers/media/radio/dsbr100.c
5834
5835 DT3155 MEDIA DRIVER
5836 M:      Hans Verkuil <[email protected]>
5837 L:      [email protected]
5838 T:      git git://linuxtv.org/media_tree.git
5839 W:      https://linuxtv.org
5840 S:      Odd Fixes
5841 F:      drivers/media/pci/dt3155/
5842
5843 DVB_USB_AF9015 MEDIA DRIVER
5844 M:      Antti Palosaari <[email protected]>
5845 L:      [email protected]
5846 W:      https://linuxtv.org
5847 W:      http://palosaari.fi/linux/
5848 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5849 T:      git git://linuxtv.org/anttip/media_tree.git
5850 S:      Maintained
5851 F:      drivers/media/usb/dvb-usb-v2/af9015*
5852
5853 DVB_USB_AF9035 MEDIA DRIVER
5854 M:      Antti Palosaari <[email protected]>
5855 L:      [email protected]
5856 W:      https://linuxtv.org
5857 W:      http://palosaari.fi/linux/
5858 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5859 T:      git git://linuxtv.org/anttip/media_tree.git
5860 S:      Maintained
5861 F:      drivers/media/usb/dvb-usb-v2/af9035*
5862
5863 DVB_USB_ANYSEE MEDIA DRIVER
5864 M:      Antti Palosaari <[email protected]>
5865 L:      [email protected]
5866 W:      https://linuxtv.org
5867 W:      http://palosaari.fi/linux/
5868 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5869 T:      git git://linuxtv.org/anttip/media_tree.git
5870 S:      Maintained
5871 F:      drivers/media/usb/dvb-usb-v2/anysee*
5872
5873 DVB_USB_AU6610 MEDIA DRIVER
5874 M:      Antti Palosaari <[email protected]>
5875 L:      [email protected]
5876 W:      https://linuxtv.org
5877 W:      http://palosaari.fi/linux/
5878 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5879 T:      git git://linuxtv.org/anttip/media_tree.git
5880 S:      Maintained
5881 F:      drivers/media/usb/dvb-usb-v2/au6610*
5882
5883 DVB_USB_CE6230 MEDIA DRIVER
5884 M:      Antti Palosaari <[email protected]>
5885 L:      [email protected]
5886 W:      https://linuxtv.org
5887 W:      http://palosaari.fi/linux/
5888 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5889 T:      git git://linuxtv.org/anttip/media_tree.git
5890 S:      Maintained
5891 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5892
5893 DVB_USB_CXUSB MEDIA DRIVER
5894 M:      Michael Krufky <[email protected]>
5895 L:      [email protected]
5896 W:      https://linuxtv.org
5897 W:      http://github.com/mkrufky
5898 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5899 T:      git git://linuxtv.org/media_tree.git
5900 S:      Maintained
5901 F:      drivers/media/usb/dvb-usb/cxusb*
5902
5903 DVB_USB_EC168 MEDIA DRIVER
5904 M:      Antti Palosaari <[email protected]>
5905 L:      [email protected]
5906 W:      https://linuxtv.org
5907 W:      http://palosaari.fi/linux/
5908 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5909 T:      git git://linuxtv.org/anttip/media_tree.git
5910 S:      Maintained
5911 F:      drivers/media/usb/dvb-usb-v2/ec168*
5912
5913 DVB_USB_GL861 MEDIA DRIVER
5914 M:      Antti Palosaari <[email protected]>
5915 L:      [email protected]
5916 W:      https://linuxtv.org
5917 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5918 T:      git git://linuxtv.org/anttip/media_tree.git
5919 S:      Maintained
5920 F:      drivers/media/usb/dvb-usb-v2/gl861*
5921
5922 DVB_USB_MXL111SF MEDIA DRIVER
5923 M:      Michael Krufky <[email protected]>
5924 L:      [email protected]
5925 W:      https://linuxtv.org
5926 W:      http://github.com/mkrufky
5927 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5928 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5929 S:      Maintained
5930 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5931
5932 DVB_USB_RTL28XXU MEDIA DRIVER
5933 M:      Antti Palosaari <[email protected]>
5934 L:      [email protected]
5935 W:      https://linuxtv.org
5936 W:      http://palosaari.fi/linux/
5937 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5938 T:      git git://linuxtv.org/anttip/media_tree.git
5939 S:      Maintained
5940 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5941
5942 DVB_USB_V2 MEDIA DRIVER
5943 M:      Antti Palosaari <[email protected]>
5944 L:      [email protected]
5945 W:      https://linuxtv.org
5946 W:      http://palosaari.fi/linux/
5947 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5948 T:      git git://linuxtv.org/anttip/media_tree.git
5949 S:      Maintained
5950 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5951 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5952
5953 DYNAMIC DEBUG
5954 M:      Jason Baron <[email protected]>
5955 S:      Maintained
5956 F:      lib/dynamic_debug.c
5957 F:      include/linux/dynamic_debug.h
5958
5959 DYNAMIC INTERRUPT MODERATION
5960 M:      Tal Gilboa <[email protected]>
5961 S:      Maintained
5962 F:      include/linux/dim.h
5963 F:      lib/dim/
5964
5965 DZ DECSTATION DZ11 SERIAL DRIVER
5966 M:      "Maciej W. Rozycki" <[email protected]>
5967 S:      Maintained
5968 F:      drivers/tty/serial/dz.*
5969
5970 E3X0 POWER BUTTON DRIVER
5971 M:      Moritz Fischer <[email protected]>
5972 L:      [email protected]
5973 W:      http://www.ettus.com
5974 S:      Supported
5975 F:      drivers/input/misc/e3x0-button.c
5976 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5977
5978 E4000 MEDIA DRIVER
5979 M:      Antti Palosaari <[email protected]>
5980 L:      [email protected]
5981 W:      https://linuxtv.org
5982 W:      http://palosaari.fi/linux/
5983 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5984 T:      git git://linuxtv.org/anttip/media_tree.git
5985 S:      Maintained
5986 F:      drivers/media/tuners/e4000*
5987
5988 EARTH_PT1 MEDIA DRIVER
5989 M:      Akihiro Tsukada <[email protected]>
5990 L:      [email protected]
5991 S:      Odd Fixes
5992 F:      drivers/media/pci/pt1/
5993
5994 EARTH_PT3 MEDIA DRIVER
5995 M:      Akihiro Tsukada <[email protected]>
5996 L:      [email protected]
5997 S:      Odd Fixes
5998 F:      drivers/media/pci/pt3/
5999
6000 EC100 MEDIA DRIVER
6001 M:      Antti Palosaari <[email protected]>
6002 L:      [email protected]
6003 W:      https://linuxtv.org
6004 W:      http://palosaari.fi/linux/
6005 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6006 T:      git git://linuxtv.org/anttip/media_tree.git
6007 S:      Maintained
6008 F:      drivers/media/dvb-frontends/ec100*
6009
6010 ECRYPT FILE SYSTEM
6011 M:      Tyler Hicks <[email protected]>
6012 L:      [email protected]
6013 W:      http://ecryptfs.org
6014 W:      https://launchpad.net/ecryptfs
6015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6016 S:      Odd Fixes
6017 F:      Documentation/filesystems/ecryptfs.rst
6018 F:      fs/ecryptfs/
6019
6020 EDAC-AMD64
6021 M:      Borislav Petkov <[email protected]>
6022 L:      [email protected]
6023 S:      Maintained
6024 F:      drivers/edac/amd64_edac*
6025
6026 EDAC-ARMADA
6027 M:      Jan Luebbe <[email protected]>
6028 L:      [email protected]
6029 S:      Maintained
6030 F:      drivers/edac/armada_xp_*
6031
6032 EDAC-AST2500
6033 M:      Stefan Schaeckeler <[email protected]>
6034 S:      Supported
6035 F:      drivers/edac/aspeed_edac.c
6036 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6037
6038 EDAC-BLUEFIELD
6039 M:      Shravan Kumar Ramani <[email protected]>
6040 S:      Supported
6041 F:      drivers/edac/bluefield_edac.c
6042
6043 EDAC-CALXEDA
6044 M:      Robert Richter <[email protected]>
6045 L:      [email protected]
6046 S:      Maintained
6047 F:      drivers/edac/highbank*
6048
6049 EDAC-CAVIUM OCTEON
6050 M:      Ralf Baechle <[email protected]>
6051 M:      Robert Richter <[email protected]>
6052 L:      [email protected]
6053 L:      [email protected]
6054 S:      Supported
6055 F:      drivers/edac/octeon_edac*
6056
6057 EDAC-CAVIUM THUNDERX
6058 M:      Robert Richter <[email protected]>
6059 L:      [email protected]
6060 S:      Supported
6061 F:      drivers/edac/thunderx_edac*
6062
6063 EDAC-CORE
6064 M:      Borislav Petkov <[email protected]>
6065 M:      Mauro Carvalho Chehab <[email protected]>
6066 M:      Tony Luck <[email protected]>
6067 R:      James Morse <[email protected]>
6068 R:      Robert Richter <[email protected]>
6069 L:      [email protected]
6070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6071 S:      Supported
6072 F:      Documentation/admin-guide/ras.rst
6073 F:      Documentation/driver-api/edac.rst
6074 F:      drivers/edac/
6075 F:      include/linux/edac.h
6076
6077 EDAC-DMC520
6078 M:      Lei Wang <[email protected]>
6079 L:      [email protected]
6080 S:      Supported
6081 F:      drivers/edac/dmc520_edac.c
6082
6083 EDAC-E752X
6084 M:      Mark Gross <[email protected]>
6085 L:      [email protected]
6086 S:      Maintained
6087 F:      drivers/edac/e752x_edac.c
6088
6089 EDAC-E7XXX
6090 L:      [email protected]
6091 S:      Maintained
6092 F:      drivers/edac/e7xxx_edac.c
6093
6094 EDAC-FSL_DDR
6095 M:      York Sun <[email protected]>
6096 L:      [email protected]
6097 S:      Maintained
6098 F:      drivers/edac/fsl_ddr_edac.*
6099
6100 EDAC-GHES
6101 M:      Mauro Carvalho Chehab <[email protected]>
6102 L:      [email protected]
6103 S:      Maintained
6104 F:      drivers/edac/ghes_edac.c
6105
6106 EDAC-I10NM
6107 M:      Tony Luck <[email protected]>
6108 L:      [email protected]
6109 S:      Maintained
6110 F:      drivers/edac/i10nm_base.c
6111
6112 EDAC-I3000
6113 L:      [email protected]
6114 S:      Orphan
6115 F:      drivers/edac/i3000_edac.c
6116
6117 EDAC-I5000
6118 L:      [email protected]
6119 S:      Maintained
6120 F:      drivers/edac/i5000_edac.c
6121
6122 EDAC-I5400
6123 M:      Mauro Carvalho Chehab <[email protected]>
6124 L:      [email protected]
6125 S:      Maintained
6126 F:      drivers/edac/i5400_edac.c
6127
6128 EDAC-I7300
6129 M:      Mauro Carvalho Chehab <[email protected]>
6130 L:      [email protected]
6131 S:      Maintained
6132 F:      drivers/edac/i7300_edac.c
6133
6134 EDAC-I7CORE
6135 M:      Mauro Carvalho Chehab <[email protected]>
6136 L:      [email protected]
6137 S:      Maintained
6138 F:      drivers/edac/i7core_edac.c
6139
6140 EDAC-I82443BXGX
6141 M:      Tim Small <[email protected]>
6142 L:      [email protected]
6143 S:      Maintained
6144 F:      drivers/edac/i82443bxgx_edac.c
6145
6146 EDAC-I82975X
6147 M:      "Arvind R." <[email protected]>
6148 L:      [email protected]
6149 S:      Maintained
6150 F:      drivers/edac/i82975x_edac.c
6151
6152 EDAC-IE31200
6153 M:      Jason Baron <[email protected]>
6154 L:      [email protected]
6155 S:      Maintained
6156 F:      drivers/edac/ie31200_edac.c
6157
6158 EDAC-MPC85XX
6159 M:      Johannes Thumshirn <[email protected]>
6160 L:      [email protected]
6161 S:      Maintained
6162 F:      drivers/edac/mpc85xx_edac.[ch]
6163
6164 EDAC-PASEMI
6165 M:      Egor Martovetsky <[email protected]>
6166 L:      [email protected]
6167 S:      Maintained
6168 F:      drivers/edac/pasemi_edac.c
6169
6170 EDAC-PND2
6171 M:      Tony Luck <[email protected]>
6172 L:      [email protected]
6173 S:      Maintained
6174 F:      drivers/edac/pnd2_edac.[ch]
6175
6176 EDAC-R82600
6177 M:      Tim Small <[email protected]>
6178 L:      [email protected]
6179 S:      Maintained
6180 F:      drivers/edac/r82600_edac.c
6181
6182 EDAC-SBRIDGE
6183 M:      Tony Luck <[email protected]>
6184 R:      Qiuxu Zhuo <[email protected]>
6185 L:      [email protected]
6186 S:      Maintained
6187 F:      drivers/edac/sb_edac.c
6188
6189 EDAC-SIFIVE
6190 M:      Yash Shah <[email protected]>
6191 L:      [email protected]
6192 S:      Supported
6193 F:      drivers/edac/sifive_edac.c
6194 F:      drivers/soc/sifive_l2_cache.c
6195
6196 EDAC-SKYLAKE
6197 M:      Tony Luck <[email protected]>
6198 L:      [email protected]
6199 S:      Maintained
6200 F:      drivers/edac/skx_*.c
6201
6202 EDAC-TI
6203 M:      Tero Kristo <[email protected]>
6204 L:      [email protected]
6205 S:      Maintained
6206 F:      drivers/edac/ti_edac.c
6207
6208 EDAC-QCOM
6209 M:      Channagoud Kadabi <[email protected]>
6210 M:      Venkata Narendra Kumar Gutta <[email protected]>
6211 L:      [email protected]
6212 L:      [email protected]
6213 S:      Maintained
6214 F:      drivers/edac/qcom_edac.c
6215
6216 EDIROL UA-101/UA-1000 DRIVER
6217 M:      Clemens Ladisch <[email protected]>
6218 L:      [email protected] (moderated for non-subscribers)
6219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6220 S:      Maintained
6221 F:      sound/usb/misc/ua101.c
6222
6223 EFI TEST DRIVER
6224 L:      [email protected]
6225 M:      Ivan Hu <[email protected]>
6226 M:      Ard Biesheuvel <[email protected]>
6227 S:      Maintained
6228 F:      drivers/firmware/efi/test/
6229
6230 EFI VARIABLE FILESYSTEM
6231 M:      Matthew Garrett <[email protected]>
6232 M:      Jeremy Kerr <[email protected]>
6233 M:      Ard Biesheuvel <[email protected]>
6234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6235 L:      [email protected]
6236 S:      Maintained
6237 F:      fs/efivarfs/
6238
6239 EFIFB FRAMEBUFFER DRIVER
6240 L:      [email protected]
6241 M:      Peter Jones <[email protected]>
6242 S:      Maintained
6243 F:      drivers/video/fbdev/efifb.c
6244
6245 EFS FILESYSTEM
6246 W:      http://aeschi.ch.eu.org/efs/
6247 S:      Orphan
6248 F:      fs/efs/
6249
6250 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6251 M:      Douglas Miller <[email protected]>
6252 L:      [email protected]
6253 S:      Maintained
6254 F:      drivers/net/ethernet/ibm/ehea/
6255
6256 EM28XX VIDEO4LINUX DRIVER
6257 M:      Mauro Carvalho Chehab <[email protected]>
6258 L:      [email protected]
6259 W:      https://linuxtv.org
6260 T:      git git://linuxtv.org/media_tree.git
6261 S:      Maintained
6262 F:      drivers/media/usb/em28xx/
6263 F:      Documentation/media/v4l-drivers/em28xx*
6264
6265 EMBEDDED LINUX
6266 M:      Paul Gortmaker <[email protected]>
6267 M:      Matt Mackall <[email protected]>
6268 M:      David Woodhouse <[email protected]>
6269 L:      [email protected]
6270 S:      Maintained
6271
6272 Emulex 10Gbps iSCSI - OneConnect DRIVER
6273 M:      Subbu Seetharaman <[email protected]>
6274 M:      Ketan Mukadam <[email protected]>
6275 M:      Jitendra Bhivare <[email protected]>
6276 L:      [email protected]
6277 W:      http://www.broadcom.com
6278 S:      Supported
6279 F:      drivers/scsi/be2iscsi/
6280
6281 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6282 M:      Ajit Khaparde <[email protected]>
6283 M:      Sriharsha Basavapatna <[email protected]>
6284 M:      Somnath Kotur <[email protected]>
6285 L:      [email protected]
6286 W:      http://www.emulex.com
6287 S:      Supported
6288 F:      drivers/net/ethernet/emulex/benet/
6289
6290 EMULEX ONECONNECT ROCE DRIVER
6291 M:      Selvin Xavier <[email protected]>
6292 M:      Devesh Sharma <[email protected]>
6293 L:      [email protected]
6294 W:      http://www.broadcom.com
6295 S:      Odd Fixes
6296 F:      drivers/infiniband/hw/ocrdma/
6297 F:      include/uapi/rdma/ocrdma-abi.h
6298
6299 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6300 M:      James Smart <[email protected]>
6301 M:      Dick Kennedy <[email protected]>
6302 L:      [email protected]
6303 W:      http://www.broadcom.com
6304 S:      Supported
6305 F:      drivers/scsi/lpfc/
6306
6307 ENE CB710 FLASH CARD READER DRIVER
6308 M:      Michał Mirosław <[email protected]>
6309 S:      Maintained
6310 F:      drivers/misc/cb710/
6311 F:      drivers/mmc/host/cb710-mmc.*
6312 F:      include/linux/cb710.h
6313
6314 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6315 M:      Maxim Levitsky <[email protected]>
6316 S:      Maintained
6317 F:      drivers/media/rc/ene_ir.*
6318
6319 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6320 M:      Laurentiu Tudor <[email protected]>
6321 L:      [email protected]
6322 S:      Maintained
6323 F:      drivers/tty/ehv_bytechan.c
6324
6325 EPSON S1D13XXX FRAMEBUFFER DRIVER
6326 M:      Kristoffer Ericson <[email protected]>
6327 S:      Maintained
6328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6329 F:      drivers/video/fbdev/s1d13xxxfb.c
6330 F:      include/video/s1d13xxxfb.h
6331
6332 EROFS FILE SYSTEM
6333 M:      Gao Xiang <[email protected]>
6334 M:      Chao Yu <[email protected]>
6335 L:      [email protected]
6336 S:      Maintained
6337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6338 F:      Documentation/filesystems/erofs.rst
6339 F:      fs/erofs/
6340 F:      include/trace/events/erofs.h
6341
6342 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6343 M:      Jeff Layton <[email protected]>
6344 S:      Maintained
6345 F:      lib/errseq.c
6346 F:      include/linux/errseq.h
6347
6348 ET131X NETWORK DRIVER
6349 M:      Mark Einon <[email protected]>
6350 S:      Odd Fixes
6351 F:      drivers/net/ethernet/agere/
6352
6353 ETHERNET BRIDGE
6354 M:      Roopa Prabhu <[email protected]>
6355 M:      Nikolay Aleksandrov <[email protected]>
6356 L:      [email protected] (moderated for non-subscribers)
6357 L:      [email protected]
6358 W:      http://www.linuxfoundation.org/en/Net:Bridge
6359 S:      Maintained
6360 F:      include/linux/netfilter_bridge/
6361 F:      net/bridge/
6362
6363 ETHERNET PHY LIBRARY
6364 M:      Andrew Lunn <[email protected]>
6365 M:      Florian Fainelli <[email protected]>
6366 M:      Heiner Kallweit <[email protected]>
6367 R:      Russell King <[email protected]>
6368 L:      [email protected]
6369 S:      Maintained
6370 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6371 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6372 F:      Documentation/devicetree/bindings/net/mdio*
6373 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6374 F:      Documentation/networking/phy.rst
6375 F:      drivers/net/phy/
6376 F:      drivers/of/of_mdio.c
6377 F:      drivers/of/of_net.c
6378 F:      include/dt-bindings/net/qca-ar803x.h
6379 F:      include/linux/*mdio*.h
6380 F:      include/linux/of_net.h
6381 F:      include/linux/phy.h
6382 F:      include/linux/phy_fixed.h
6383 F:      include/linux/platform_data/mdio-bcm-unimac.h
6384 F:      include/linux/platform_data/mdio-gpio.h
6385 F:      include/trace/events/mdio.h
6386 F:      include/uapi/linux/mdio.h
6387 F:      include/uapi/linux/mii.h
6388
6389 EXFAT FILE SYSTEM
6390 M:      Namjae Jeon <[email protected]>
6391 M:      Sungjong Seo <[email protected]>
6392 L:      [email protected]
6393 S:      Maintained
6394 F:      fs/exfat/
6395
6396 EXT2 FILE SYSTEM
6397 M:      Jan Kara <[email protected]>
6398 L:      [email protected]
6399 S:      Maintained
6400 F:      Documentation/filesystems/ext2.rst
6401 F:      fs/ext2/
6402 F:      include/linux/ext2*
6403
6404 EXT4 FILE SYSTEM
6405 M:      "Theodore Ts'o" <[email protected]>
6406 M:      Andreas Dilger <[email protected]>
6407 L:      [email protected]
6408 W:      http://ext4.wiki.kernel.org
6409 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6411 S:      Maintained
6412 F:      Documentation/filesystems/ext4/
6413 F:      fs/ext4/
6414
6415 Extended Verification Module (EVM)
6416 M:      Mimi Zohar <[email protected]>
6417 L:      [email protected]
6418 S:      Supported
6419 F:      security/integrity/evm/
6420
6421 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6422 M:      Ard Biesheuvel <[email protected]>
6423 L:      [email protected]
6424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6425 S:      Maintained
6426 F:      Documentation/admin-guide/efi-stub.rst
6427 F:      arch/*/kernel/efi.c
6428 F:      arch/*/include/asm/efi.h
6429 F:      arch/x86/platform/efi/
6430 F:      drivers/firmware/efi/
6431 F:      include/linux/efi*.h
6432 F:      arch/arm/boot/compressed/efi-header.S
6433 F:      arch/arm64/kernel/efi-entry.S
6434
6435 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6436 M:      MyungJoo Ham <[email protected]>
6437 M:      Chanwoo Choi <[email protected]>
6438 L:      [email protected]
6439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6440 S:      Maintained
6441 F:      drivers/extcon/
6442 F:      include/linux/extcon/
6443 F:      include/linux/extcon.h
6444 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6445 F:      Documentation/devicetree/bindings/extcon/
6446
6447 EXYNOS DP DRIVER
6448 M:      Jingoo Han <[email protected]>
6449 L:      [email protected]
6450 S:      Maintained
6451 F:      drivers/gpu/drm/exynos/exynos_dp*
6452
6453 EXYNOS SYSMMU (IOMMU) driver
6454 M:      Marek Szyprowski <[email protected]>
6455 L:      [email protected]
6456 S:      Maintained
6457 F:      drivers/iommu/exynos-iommu.c
6458
6459 EZchip NPS platform support
6460 M:      Vineet Gupta <[email protected]>
6461 M:      Ofer Levi <[email protected]>
6462 S:      Supported
6463 F:      arch/arc/plat-eznps
6464 F:      arch/arc/boot/dts/eznps.dts
6465
6466 F2FS FILE SYSTEM
6467 M:      Jaegeuk Kim <[email protected]>
6468 M:      Chao Yu <[email protected]>
6469 L:      [email protected]
6470 W:      https://f2fs.wiki.kernel.org/
6471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6472 S:      Maintained
6473 F:      Documentation/filesystems/f2fs.rst
6474 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6475 F:      fs/f2fs/
6476 F:      include/linux/f2fs_fs.h
6477 F:      include/trace/events/f2fs.h
6478
6479 F71805F HARDWARE MONITORING DRIVER
6480 M:      Jean Delvare <[email protected]>
6481 L:      [email protected]
6482 S:      Maintained
6483 F:      Documentation/hwmon/f71805f.rst
6484 F:      drivers/hwmon/f71805f.c
6485
6486 FADDR2LINE
6487 M:      Josh Poimboeuf <[email protected]>
6488 S:      Maintained
6489 F:      scripts/faddr2line
6490
6491 FAILOVER MODULE
6492 M:      Sridhar Samudrala <[email protected]>
6493 L:      [email protected]
6494 S:      Supported
6495 F:      net/core/failover.c
6496 F:      include/net/failover.h
6497 F:      Documentation/networking/failover.rst
6498
6499 FANOTIFY
6500 M:      Jan Kara <[email protected]>
6501 R:      Amir Goldstein <[email protected]>
6502 L:      [email protected]
6503 S:      Maintained
6504 F:      fs/notify/fanotify/
6505 F:      include/linux/fanotify.h
6506 F:      include/uapi/linux/fanotify.h
6507
6508 FARSYNC SYNCHRONOUS DRIVER
6509 M:      Kevin Curtis <[email protected]>
6510 W:      http://www.farsite.co.uk/
6511 S:      Supported
6512 F:      drivers/net/wan/farsync.*
6513
6514 FAULT INJECTION SUPPORT
6515 M:      Akinobu Mita <[email protected]>
6516 S:      Supported
6517 F:      Documentation/fault-injection/
6518 F:      lib/fault-inject.c
6519
6520 FBTFT Framebuffer drivers
6521 S:      Orphan
6522 L:      [email protected]
6523 L:      [email protected]
6524 F:      drivers/staging/fbtft/
6525
6526 FC0011 TUNER DRIVER
6527 M:      Michael Buesch <[email protected]>
6528 L:      [email protected]
6529 S:      Maintained
6530 F:      drivers/media/tuners/fc0011.h
6531 F:      drivers/media/tuners/fc0011.c
6532
6533 FC2580 MEDIA DRIVER
6534 M:      Antti Palosaari <[email protected]>
6535 L:      [email protected]
6536 W:      https://linuxtv.org
6537 W:      http://palosaari.fi/linux/
6538 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6539 T:      git git://linuxtv.org/anttip/media_tree.git
6540 S:      Maintained
6541 F:      drivers/media/tuners/fc2580*
6542
6543 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6544 M:      Hannes Reinecke <[email protected]>
6545 L:      [email protected]
6546 W:      www.Open-FCoE.org
6547 S:      Supported
6548 F:      drivers/scsi/libfc/
6549 F:      drivers/scsi/fcoe/
6550 F:      include/scsi/fc/
6551 F:      include/scsi/libfc.h
6552 F:      include/scsi/libfcoe.h
6553 F:      include/uapi/scsi/fc/
6554
6555 FILE LOCKING (flock() and fcntl()/lockf())
6556 M:      Jeff Layton <[email protected]>
6557 M:      "J. Bruce Fields" <[email protected]>
6558 L:      [email protected]
6559 S:      Maintained
6560 F:      include/linux/fcntl.h
6561 F:      include/uapi/linux/fcntl.h
6562 F:      fs/fcntl.c
6563 F:      fs/locks.c
6564
6565 FILESYSTEMS (VFS and infrastructure)
6566 M:      Alexander Viro <[email protected]>
6567 L:      [email protected]
6568 S:      Maintained
6569 F:      fs/*
6570 F:      include/linux/fs.h
6571 F:      include/linux/fs_types.h
6572 F:      include/uapi/linux/fs.h
6573 F:      include/uapi/linux/openat2.h
6574
6575 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6576 M:      Riku Voipio <[email protected]>
6577 L:      [email protected]
6578 S:      Maintained
6579 F:      drivers/hwmon/f75375s.c
6580 F:      include/linux/f75375s.h
6581
6582 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6583 M:      Clemens Ladisch <[email protected]>
6584 M:      Takashi Sakamoto <[email protected]>
6585 L:      [email protected] (moderated for non-subscribers)
6586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6587 S:      Maintained
6588 F:      sound/firewire/
6589 F:      include/uapi/sound/firewire.h
6590
6591 FIREWIRE MEDIA DRIVERS (firedtv)
6592 M:      Stefan Richter <[email protected]>
6593 L:      [email protected]
6594 L:      [email protected]
6595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6596 S:      Maintained
6597 F:      drivers/media/firewire/
6598
6599 FIREWIRE SBP-2 TARGET
6600 M:      Chris Boot <[email protected]>
6601 L:      [email protected]
6602 L:      [email protected]
6603 L:      [email protected]
6604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6605 S:      Maintained
6606 F:      drivers/target/sbp/
6607
6608 FIREWIRE SUBSYSTEM
6609 M:      Stefan Richter <[email protected]>
6610 L:      [email protected]
6611 W:      http://ieee1394.wiki.kernel.org/
6612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6613 S:      Maintained
6614 F:      drivers/firewire/
6615 F:      include/linux/firewire.h
6616 F:      include/uapi/linux/firewire*.h
6617 F:      tools/firewire/
6618
6619 FIRMWARE LOADER (request_firmware)
6620 M:      Luis Chamberlain <[email protected]>
6621 L:      [email protected]
6622 S:      Maintained
6623 F:      Documentation/firmware_class/
6624 F:      drivers/base/firmware_loader/
6625 F:      include/linux/firmware.h
6626
6627 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6628 M:      Joshua Morris <[email protected]>
6629 M:      Philip Kelleher <[email protected]>
6630 S:      Maintained
6631 F:      drivers/block/rsxx/
6632
6633 FLEXTIMER FTM-QUADDEC DRIVER
6634 M:      Patrick Havelange <[email protected]>
6635 L:      [email protected]
6636 S:      Maintained
6637 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6638 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6639 F:      drivers/counter/ftm-quaddec.c
6640
6641 FLOPPY DRIVER
6642 M:      Denis Efremov <[email protected]>
6643 S:      Odd Fixes
6644 L:      [email protected]
6645 F:      drivers/block/floppy.c
6646
6647 FPGA MANAGER FRAMEWORK
6648 M:      Moritz Fischer <[email protected]>
6649 L:      [email protected]
6650 S:      Maintained
6651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6652 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6653 F:      Documentation/fpga/
6654 F:      Documentation/driver-api/fpga/
6655 F:      Documentation/devicetree/bindings/fpga/
6656 F:      drivers/fpga/
6657 F:      include/linux/fpga/
6658 W:      http://www.rocketboards.org
6659
6660 FPGA DFL DRIVERS
6661 M:      Wu Hao <[email protected]>
6662 L:      [email protected]
6663 S:      Maintained
6664 F:      Documentation/fpga/dfl.rst
6665 F:      include/uapi/linux/fpga-dfl.h
6666 F:      drivers/fpga/dfl*
6667
6668 FPU EMULATOR
6669 M:      Bill Metzenthen <[email protected]>
6670 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6671 S:      Maintained
6672 F:      arch/x86/math-emu/
6673
6674 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6675 L:      [email protected]
6676 S:      Orphan
6677 F:      drivers/net/wan/dlci.c
6678 F:      drivers/net/wan/sdla.c
6679
6680 FRAMEBUFFER LAYER
6681 M:      Bartlomiej Zolnierkiewicz <[email protected]>
6682 L:      [email protected]
6683 L:      [email protected]
6684 T:      git git://anongit.freedesktop.org/drm/drm-misc
6685 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6686 S:      Maintained
6687 F:      Documentation/fb/
6688 F:      drivers/video/
6689 F:      include/video/
6690 F:      include/linux/fb.h
6691 F:      include/uapi/video/
6692 F:      include/uapi/linux/fb.h
6693
6694 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6695 M:      Horia Geantă <[email protected]>
6696 M:      Aymen Sghaier <[email protected]>
6697 L:      [email protected]
6698 S:      Maintained
6699 F:      drivers/crypto/caam/
6700 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6701
6702 FREESCALE DIU FRAMEBUFFER DRIVER
6703 M:      Timur Tabi <[email protected]>
6704 L:      [email protected]
6705 S:      Maintained
6706 F:      drivers/video/fbdev/fsl-diu-fb.*
6707
6708 FREESCALE DMA DRIVER
6709 M:      Li Yang <[email protected]>
6710 M:      Zhang Wei <[email protected]>
6711 L:      [email protected]
6712 S:      Maintained
6713 F:      drivers/dma/fsldma.*
6714
6715 FREESCALE ENETC ETHERNET DRIVERS
6716 M:      Claudiu Manoil <[email protected]>
6717 L:      [email protected]
6718 S:      Maintained
6719 F:      drivers/net/ethernet/freescale/enetc/
6720
6721 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6722 M:      Claudiu Manoil <[email protected]>
6723 L:      [email protected]
6724 S:      Maintained
6725 F:      drivers/net/ethernet/freescale/gianfar*
6726 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6727
6728 FREESCALE GPMI NAND DRIVER
6729 M:      Han Xu <[email protected]>
6730 L:      [email protected]
6731 S:      Maintained
6732 F:      drivers/mtd/nand/raw/gpmi-nand/*
6733
6734 FREESCALE I2C CPM DRIVER
6735 M:      Jochen Friedrich <[email protected]>
6736 L:      [email protected]
6737 L:      [email protected]
6738 S:      Maintained
6739 F:      drivers/i2c/busses/i2c-cpm.c
6740
6741 FREESCALE IMX DDR PMU DRIVER
6742 M:      Frank Li <[email protected]>
6743 L:      [email protected]
6744 S:      Maintained
6745 F:      drivers/perf/fsl_imx8_ddr_perf.c
6746 F:      Documentation/admin-guide/perf/imx-ddr.rst
6747 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6748
6749 FREESCALE IMX I2C DRIVER
6750 M:      Oleksij Rempel <[email protected]>
6751 R:      Pengutronix Kernel Team <[email protected]>
6752 L:      [email protected]
6753 S:      Maintained
6754 F:      drivers/i2c/busses/i2c-imx.c
6755 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6756
6757 FREESCALE IMX LPI2C DRIVER
6758 M:      Dong Aisheng <[email protected]>
6759 L:      [email protected]
6760 L:      [email protected]
6761 S:      Maintained
6762 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6763 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6764
6765 FREESCALE IMX / MXC FEC DRIVER
6766 M:      Fugang Duan <[email protected]>
6767 L:      [email protected]
6768 S:      Maintained
6769 F:      drivers/net/ethernet/freescale/fec_main.c
6770 F:      drivers/net/ethernet/freescale/fec_ptp.c
6771 F:      drivers/net/ethernet/freescale/fec.h
6772 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6773
6774 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6775 M:      Sascha Hauer <[email protected]>
6776 R:      Pengutronix Kernel Team <[email protected]>
6777 L:      [email protected]
6778 L:      [email protected] (moderated for non-subscribers)
6779 S:      Maintained
6780 F:      include/linux/platform_data/video-imxfb.h
6781 F:      drivers/video/fbdev/imxfb.c
6782
6783 FREESCALE QORIQ DPAA ETHERNET DRIVER
6784 M:      Madalin Bucur <[email protected]>
6785 L:      [email protected]
6786 S:      Maintained
6787 F:      drivers/net/ethernet/freescale/dpaa
6788
6789 FREESCALE QORIQ DPAA FMAN DRIVER
6790 M:      Madalin Bucur <[email protected]>
6791 L:      [email protected]
6792 S:      Maintained
6793 F:      drivers/net/ethernet/freescale/fman
6794 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6795
6796 FREESCALE QORIQ PTP CLOCK DRIVER
6797 M:      Yangbo Lu <[email protected]>
6798 L:      [email protected]
6799 S:      Maintained
6800 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6801 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6802 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6803 F:      drivers/ptp/ptp_qoriq.c
6804 F:      drivers/ptp/ptp_qoriq_debugfs.c
6805 F:      include/linux/fsl/ptp_qoriq.h
6806 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6807
6808 FREESCALE QUAD SPI DRIVER
6809 M:      Han Xu <[email protected]>
6810 L:      [email protected]
6811 S:      Maintained
6812 F:      drivers/spi/spi-fsl-qspi.c
6813
6814 FREESCALE QUICC ENGINE LIBRARY
6815 M:      Qiang Zhao <[email protected]>
6816 L:      [email protected]
6817 S:      Maintained
6818 F:      drivers/soc/fsl/qe/
6819 F:      include/soc/fsl/*qe*.h
6820 F:      include/soc/fsl/*ucc*.h
6821
6822 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6823 M:      Li Yang <[email protected]>
6824 L:      [email protected]
6825 L:      [email protected]
6826 S:      Maintained
6827 F:      drivers/net/ethernet/freescale/ucc_geth*
6828
6829 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6830 M:      Zhao Qiang <[email protected]>
6831 L:      [email protected]
6832 L:      [email protected]
6833 S:      Maintained
6834 F:      drivers/net/wan/fsl_ucc_hdlc*
6835
6836 FREESCALE QUICC ENGINE UCC UART DRIVER
6837 M:      Timur Tabi <[email protected]>
6838 L:      [email protected]
6839 S:      Maintained
6840 F:      drivers/tty/serial/ucc_uart.c
6841
6842 FREESCALE SOC DRIVERS
6843 M:      Li Yang <[email protected]>
6844 L:      [email protected]
6845 L:      [email protected]
6846 S:      Maintained
6847 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6848 F:      Documentation/devicetree/bindings/soc/fsl/
6849 F:      drivers/soc/fsl/
6850 F:      include/linux/fsl/
6851
6852 FREESCALE SOC FS_ENET DRIVER
6853 M:      Pantelis Antoniou <[email protected]>
6854 L:      [email protected]
6855 L:      [email protected]
6856 S:      Maintained
6857 F:      drivers/net/ethernet/freescale/fs_enet/
6858 F:      include/linux/fs_enet_pd.h
6859
6860 FREESCALE SOC SOUND DRIVERS
6861 M:      Timur Tabi <[email protected]>
6862 M:      Nicolin Chen <[email protected]>
6863 M:      Xiubo Li <[email protected]>
6864 R:      Fabio Estevam <[email protected]>
6865 L:      [email protected] (moderated for non-subscribers)
6866 L:      [email protected]
6867 S:      Maintained
6868 F:      sound/soc/fsl/fsl*
6869 F:      sound/soc/fsl/imx*
6870 F:      sound/soc/fsl/mpc8610_hpcd.c
6871
6872 FREESCALE USB PERIPHERAL DRIVERS
6873 M:      Li Yang <[email protected]>
6874 L:      [email protected]
6875 L:      [email protected]
6876 S:      Maintained
6877 F:      drivers/usb/gadget/udc/fsl*
6878
6879 FREEVXFS FILESYSTEM
6880 M:      Christoph Hellwig <[email protected]>
6881 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6882 S:      Maintained
6883 F:      fs/freevxfs/
6884
6885 FREEZER
6886 M:      "Rafael J. Wysocki" <[email protected]>
6887 M:      Pavel Machek <[email protected]>
6888 L:      [email protected]
6889 S:      Supported
6890 F:      Documentation/power/freezing-of-tasks.rst
6891 F:      include/linux/freezer.h
6892 F:      kernel/freezer.c
6893
6894 FRONTSWAP API
6895 M:      Konrad Rzeszutek Wilk <[email protected]>
6896 L:      [email protected]
6897 S:      Maintained
6898 F:      mm/frontswap.c
6899 F:      include/linux/frontswap.h
6900
6901 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6902 M:      David Howells <[email protected]>
6903 L:      [email protected] (moderated for non-subscribers)
6904 S:      Supported
6905 F:      Documentation/filesystems/caching/
6906 F:      fs/fscache/
6907 F:      include/linux/fscache*.h
6908
6909 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6910 M:      Theodore Y. Ts'o <[email protected]>
6911 M:      Jaegeuk Kim <[email protected]>
6912 M:      Eric Biggers <[email protected]>
6913 L:      [email protected]
6914 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6915 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6916 S:      Supported
6917 F:      fs/crypto/
6918 F:      include/linux/fscrypt*.h
6919 F:      include/uapi/linux/fscrypt.h
6920 F:      Documentation/filesystems/fscrypt.rst
6921
6922 FSI SUBSYSTEM
6923 M:      Jeremy Kerr <[email protected]>
6924 M:      Joel Stanley <[email protected]>
6925 R:      Alistar Popple <[email protected]>
6926 R:      Eddie James <[email protected]>
6927 L:      [email protected]
6928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6929 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6930 S:      Supported
6931 F:      drivers/fsi/
6932 F:      include/linux/fsi*.h
6933 F:      include/trace/events/fsi*.h
6934
6935 FSI-ATTACHED I2C DRIVER
6936 M:      Eddie James <[email protected]>
6937 L:      [email protected]
6938 L:      [email protected] (moderated for non-subscribers)
6939 S:      Maintained
6940 F:      drivers/i2c/busses/i2c-fsi.c
6941 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6942
6943 FSI-ATTACHED SPI DRIVER
6944 M:      Eddie James <[email protected]>
6945 L:      [email protected]
6946 S:      Maintained
6947 F:      drivers/spi/spi-fsi.c
6948 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
6949
6950 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6951 M:      Jan Kara <[email protected]>
6952 R:      Amir Goldstein <[email protected]>
6953 L:      [email protected]
6954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
6955 S:      Maintained
6956 F:      fs/notify/
6957 F:      include/linux/fsnotify*.h
6958
6959 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
6960 M:      Eric Biggers <[email protected]>
6961 M:      Theodore Y. Ts'o <[email protected]>
6962 L:      [email protected]
6963 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6964 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
6965 S:      Supported
6966 F:      fs/verity/
6967 F:      include/linux/fsverity.h
6968 F:      include/uapi/linux/fsverity.h
6969 F:      Documentation/filesystems/fsverity.rst
6970
6971 FUJITSU LAPTOP EXTRAS
6972 M:      Jonathan Woithe <[email protected]>
6973 L:      [email protected]
6974 S:      Maintained
6975 F:      drivers/platform/x86/fujitsu-laptop.c
6976
6977 FUJITSU M-5MO LS CAMERA ISP DRIVER
6978 M:      Kyungmin Park <[email protected]>
6979 M:      Heungjun Kim <[email protected]>
6980 L:      [email protected]
6981 S:      Maintained
6982 F:      drivers/media/i2c/m5mols/
6983 F:      include/media/i2c/m5mols.h
6984
6985 FUJITSU TABLET EXTRAS
6986 M:      Robert Gerlach <[email protected]>
6987 L:      [email protected]
6988 S:      Maintained
6989 F:      drivers/platform/x86/fujitsu-tablet.c
6990
6991 FUSE: FILESYSTEM IN USERSPACE
6992 M:      Miklos Szeredi <[email protected]>
6993 L:      [email protected]
6994 W:      http://fuse.sourceforge.net/
6995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6996 S:      Maintained
6997 F:      fs/fuse/
6998 F:      include/uapi/linux/fuse.h
6999 F:      Documentation/filesystems/fuse.rst
7000
7001 FUTEX SUBSYSTEM
7002 M:      Thomas Gleixner <[email protected]>
7003 M:      Ingo Molnar <[email protected]>
7004 R:      Peter Zijlstra <[email protected]>
7005 R:      Darren Hart <[email protected]>
7006 L:      [email protected]
7007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7008 S:      Maintained
7009 F:      kernel/futex.c
7010 F:      include/asm-generic/futex.h
7011 F:      include/linux/futex.h
7012 F:      include/uapi/linux/futex.h
7013 F:      tools/testing/selftests/futex/
7014 F:      tools/perf/bench/futex*
7015 F:      Documentation/*futex*
7016
7017 GCC PLUGINS
7018 M:      Kees Cook <[email protected]>
7019 R:      Emese Revfy <[email protected]>
7020 L:      [email protected]
7021 S:      Maintained
7022 F:      scripts/gcc-plugins/
7023 F:      scripts/gcc-plugin.sh
7024 F:      scripts/Makefile.gcc-plugins
7025 F:      Documentation/kbuild/gcc-plugins.rst
7026
7027 GASKET DRIVER FRAMEWORK
7028 M:      Rob Springer <[email protected]>
7029 M:      Todd Poynor <[email protected]>
7030 M:      Ben Chan <[email protected]>
7031 S:      Maintained
7032 F:      drivers/staging/gasket/
7033
7034 GCOV BASED KERNEL PROFILING
7035 M:      Peter Oberparleiter <[email protected]>
7036 S:      Maintained
7037 F:      kernel/gcov/
7038 F:      Documentation/dev-tools/gcov.rst
7039
7040 GDB KERNEL DEBUGGING HELPER SCRIPTS
7041 M:      Jan Kiszka <[email protected]>
7042 M:      Kieran Bingham <[email protected]>
7043 S:      Supported
7044 F:      scripts/gdb/
7045
7046 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7047 M:      Achim Leubner <[email protected]>
7048 L:      [email protected]
7049 W:      http://www.icp-vortex.com/
7050 S:      Supported
7051 F:      drivers/scsi/gdt*
7052
7053 GEMTEK FM RADIO RECEIVER DRIVER
7054 M:      Hans Verkuil <[email protected]>
7055 L:      [email protected]
7056 T:      git git://linuxtv.org/media_tree.git
7057 W:      https://linuxtv.org
7058 S:      Maintained
7059 F:      drivers/media/radio/radio-gemtek*
7060
7061 GENERIC ARCHITECTURE TOPOLOGY
7062 M:      Sudeep Holla <[email protected]>
7063 L:      [email protected]
7064 S:      Maintained
7065 F:      drivers/base/arch_topology.c
7066 F:      include/linux/arch_topology.h
7067
7068 GENERIC GPIO I2C DRIVER
7069 M:      Wolfram Sang <[email protected]>
7070 S:      Supported
7071 F:      drivers/i2c/busses/i2c-gpio.c
7072 F:      include/linux/platform_data/i2c-gpio.h
7073
7074 GENERIC GPIO I2C MULTIPLEXER DRIVER
7075 M:      Peter Korsgaard <[email protected]>
7076 L:      [email protected]
7077 S:      Supported
7078 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7079 F:      include/linux/platform_data/i2c-mux-gpio.h
7080 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7081
7082 GENERIC HDLC (WAN) DRIVERS
7083 M:      Krzysztof Halasa <[email protected]>
7084 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7085 S:      Maintained
7086 F:      drivers/net/wan/c101.c
7087 F:      drivers/net/wan/hd6457*
7088 F:      drivers/net/wan/hdlc*
7089 F:      drivers/net/wan/n2.c
7090 F:      drivers/net/wan/pc300too.c
7091 F:      drivers/net/wan/pci200syn.c
7092 F:      drivers/net/wan/wanxl*
7093
7094 GENERIC INCLUDE/ASM HEADER FILES
7095 M:      Arnd Bergmann <[email protected]>
7096 L:      [email protected]
7097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7098 S:      Maintained
7099 F:      include/asm-generic/
7100 F:      include/uapi/asm-generic/
7101
7102 GENERIC PHY FRAMEWORK
7103 M:      Kishon Vijay Abraham I <[email protected]>
7104 L:      [email protected]
7105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
7106 S:      Supported
7107 F:      drivers/phy/
7108 F:      include/linux/phy/
7109 F:      Documentation/devicetree/bindings/phy/
7110
7111 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7112 M:      Wolfram Sang <[email protected]>
7113 S:      Supported
7114 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7115
7116 GENERIC PM DOMAINS
7117 M:      "Rafael J. Wysocki" <[email protected]>
7118 M:      Kevin Hilman <[email protected]>
7119 M:      Ulf Hansson <[email protected]>
7120 L:      [email protected]
7121 S:      Supported
7122 F:      drivers/base/power/domain*.c
7123 F:      include/linux/pm_domain.h
7124 F:      Documentation/devicetree/bindings/power/power?domain*
7125
7126 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7127 M:      Eugen Hristev <[email protected]>
7128 L:      [email protected]
7129 S:      Maintained
7130 F:      drivers/input/touchscreen/resistive-adc-touch.c
7131
7132 GENERIC UIO DRIVER FOR PCI DEVICES
7133 M:      "Michael S. Tsirkin" <[email protected]>
7134 L:      [email protected]
7135 S:      Supported
7136 F:      drivers/uio/uio_pci_generic.c
7137
7138 GENERIC VDSO LIBRARY
7139 M:      Andy Lutomirski <[email protected]>
7140 M:      Thomas Gleixner <[email protected]>
7141 M:      Vincenzo Frascino <[email protected]>
7142 L:      [email protected]
7143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7144 S:      Maintained
7145 F:      lib/vdso/
7146 F:      kernel/time/vsyscall.c
7147 F:      include/vdso/
7148 F:      include/asm-generic/vdso/vsyscall.h
7149
7150 GENWQE (IBM Generic Workqueue Card)
7151 M:      Frank Haverkamp <[email protected]>
7152 S:      Supported
7153 F:      drivers/misc/genwqe/
7154
7155 GET_MAINTAINER SCRIPT
7156 M:      Joe Perches <[email protected]>
7157 S:      Maintained
7158 F:      scripts/get_maintainer.pl
7159
7160 GFS2 FILE SYSTEM
7161 M:      Bob Peterson <[email protected]>
7162 M:      Andreas Gruenbacher <[email protected]>
7163 L:      [email protected]
7164 W:      http://sources.redhat.com/cluster/
7165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7166 S:      Supported
7167 F:      Documentation/filesystems/gfs2*.txt
7168 F:      fs/gfs2/
7169 F:      include/uapi/linux/gfs2_ondisk.h
7170
7171 GNSS SUBSYSTEM
7172 M:      Johan Hovold <[email protected]>
7173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7174 S:      Maintained
7175 F:      Documentation/ABI/testing/sysfs-class-gnss
7176 F:      Documentation/devicetree/bindings/gnss/
7177 F:      drivers/gnss/
7178 F:      include/linux/gnss.h
7179
7180 GO7007 MPEG CODEC
7181 M:      Hans Verkuil <[email protected]>
7182 L:      [email protected]
7183 S:      Maintained
7184 F:      drivers/media/usb/go7007/
7185
7186 GOODIX TOUCHSCREEN
7187 M:      Bastien Nocera <[email protected]>
7188 L:      [email protected]
7189 S:      Maintained
7190 F:      drivers/input/touchscreen/goodix.c
7191
7192 GOOGLE ETHERNET DRIVERS
7193 M:      Catherine Sullivan <[email protected]>
7194 R:      Sagi Shahar <[email protected]>
7195 R:      Jon Olson <[email protected]>
7196 L:      [email protected]
7197 S:      Supported
7198 F:      Documentation/networking/device_drivers/google/gve.rst
7199 F:      drivers/net/ethernet/google
7200
7201 GPD POCKET FAN DRIVER
7202 M:      Hans de Goede <[email protected]>
7203 L:      [email protected]
7204 S:      Maintained
7205 F:      drivers/platform/x86/gpd-pocket-fan.c
7206
7207 GPIO ACPI SUPPORT
7208 M:      Mika Westerberg <[email protected]>
7209 M:      Andy Shevchenko <[email protected]>
7210 L:      [email protected]
7211 L:      [email protected]
7212 S:      Maintained
7213 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7214 F:      drivers/gpio/gpiolib-acpi.c
7215 F:      drivers/gpio/gpiolib-acpi.h
7216
7217 GPIO IR Transmitter
7218 M:      Sean Young <[email protected]>
7219 L:      [email protected]
7220 S:      Maintained
7221 F:      drivers/media/rc/gpio-ir-tx.c
7222
7223 GPIO MOCKUP DRIVER
7224 M:      Bamvor Jian Zhang <[email protected]>
7225 L:      [email protected]
7226 S:      Maintained
7227 F:      drivers/gpio/gpio-mockup.c
7228 F:      tools/testing/selftests/gpio/
7229
7230 GPIO SUBSYSTEM
7231 M:      Linus Walleij <[email protected]>
7232 M:      Bartosz Golaszewski <[email protected]>
7233 L:      [email protected]
7234 S:      Maintained
7235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7236 F:      Documentation/ABI/obsolete/sysfs-gpio
7237 F:      Documentation/ABI/testing/gpio-cdev
7238 F:      Documentation/admin-guide/gpio/
7239 F:      Documentation/devicetree/bindings/gpio/
7240 F:      Documentation/driver-api/gpio/
7241 F:      drivers/gpio/
7242 F:      include/asm-generic/gpio.h
7243 F:      include/linux/gpio/
7244 F:      include/linux/gpio.h
7245 F:      include/linux/of_gpio.h
7246 F:      include/uapi/linux/gpio.h
7247 F:      tools/gpio/
7248
7249 GRE DEMULTIPLEXER DRIVER
7250 M:      Dmitry Kozlov <[email protected]>
7251 L:      [email protected]
7252 S:      Maintained
7253 F:      net/ipv4/gre_demux.c
7254 F:      net/ipv4/gre_offload.c
7255 F:      include/net/gre.h
7256
7257 GRETH 10/100/1G Ethernet MAC device driver
7258 M:      Andreas Larsson <[email protected]>
7259 L:      [email protected]
7260 S:      Maintained
7261 F:      drivers/net/ethernet/aeroflex/
7262
7263 GREYBUS AUDIO PROTOCOLS DRIVERS
7264 M:      Vaibhav Agarwal <[email protected]>
7265 M:      Mark Greer <[email protected]>
7266 S:      Maintained
7267 F:      drivers/staging/greybus/audio_apbridgea.c
7268 F:      drivers/staging/greybus/audio_apbridgea.h
7269 F:      drivers/staging/greybus/audio_codec.c
7270 F:      drivers/staging/greybus/audio_codec.h
7271 F:      drivers/staging/greybus/audio_gb.c
7272 F:      drivers/staging/greybus/audio_manager.c
7273 F:      drivers/staging/greybus/audio_manager.h
7274 F:      drivers/staging/greybus/audio_manager_module.c
7275 F:      drivers/staging/greybus/audio_manager_private.h
7276 F:      drivers/staging/greybus/audio_manager_sysfs.c
7277 F:      drivers/staging/greybus/audio_module.c
7278 F:      drivers/staging/greybus/audio_topology.c
7279
7280 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7281 M:      Viresh Kumar <[email protected]>
7282 S:      Maintained
7283 F:      drivers/staging/greybus/authentication.c
7284 F:      drivers/staging/greybus/bootrom.c
7285 F:      drivers/staging/greybus/firmware.h
7286 F:      drivers/staging/greybus/fw-core.c
7287 F:      drivers/staging/greybus/fw-download.c
7288 F:      drivers/staging/greybus/fw-management.c
7289 F:      drivers/staging/greybus/greybus_authentication.h
7290 F:      drivers/staging/greybus/greybus_firmware.h
7291 F:      drivers/staging/greybus/hid.c
7292 F:      drivers/staging/greybus/i2c.c
7293 F:      drivers/staging/greybus/spi.c
7294 F:      drivers/staging/greybus/spilib.c
7295 F:      drivers/staging/greybus/spilib.h
7296
7297 GREYBUS LOOPBACK DRIVER
7298 M:      Bryan O'Donoghue <[email protected]>
7299 S:      Maintained
7300 F:      drivers/staging/greybus/loopback.c
7301
7302 GREYBUS PLATFORM DRIVERS
7303 M:      Vaibhav Hiremath <[email protected]>
7304 S:      Maintained
7305 F:      drivers/staging/greybus/arche-platform.c
7306 F:      drivers/staging/greybus/arche-apb-ctrl.c
7307 F:      drivers/staging/greybus/arche_platform.h
7308
7309 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7310 M:      Rui Miguel Silva <[email protected]>
7311 S:      Maintained
7312 F:      drivers/staging/greybus/sdio.c
7313 F:      drivers/staging/greybus/light.c
7314 F:      drivers/staging/greybus/gpio.c
7315 F:      drivers/staging/greybus/power_supply.c
7316 F:      drivers/staging/greybus/spi.c
7317 F:      drivers/staging/greybus/spilib.c
7318
7319 GREYBUS SUBSYSTEM
7320 M:      Johan Hovold <[email protected]>
7321 M:      Alex Elder <[email protected]>
7322 M:      Greg Kroah-Hartman <[email protected]>
7323 S:      Maintained
7324 F:      drivers/staging/greybus/
7325 F:      drivers/greybus/
7326 F:      include/linux/greybus.h
7327 F:      include/linux/greybus/
7328 L:      [email protected] (moderated for non-subscribers)
7329
7330 GREYBUS UART PROTOCOLS DRIVERS
7331 M:      David Lin <[email protected]>
7332 S:      Maintained
7333 F:      drivers/staging/greybus/uart.c
7334 F:      drivers/staging/greybus/log.c
7335
7336 GS1662 VIDEO SERIALIZER
7337 M:      Charles-Antoine Couret <[email protected]>
7338 L:      [email protected]
7339 T:      git git://linuxtv.org/media_tree.git
7340 S:      Maintained
7341 F:      drivers/media/spi/gs1662.c
7342
7343 GSPCA FINEPIX SUBDRIVER
7344 M:      Frank Zago <[email protected]>
7345 L:      [email protected]
7346 T:      git git://linuxtv.org/media_tree.git
7347 S:      Maintained
7348 F:      drivers/media/usb/gspca/finepix.c
7349
7350 GSPCA GL860 SUBDRIVER
7351 M:      Olivier Lorin <[email protected]>
7352 L:      [email protected]
7353 T:      git git://linuxtv.org/media_tree.git
7354 S:      Maintained
7355 F:      drivers/media/usb/gspca/gl860/
7356
7357 GSPCA M5602 SUBDRIVER
7358 M:      Erik Andren <[email protected]>
7359 L:      [email protected]
7360 T:      git git://linuxtv.org/media_tree.git
7361 S:      Maintained
7362 F:      drivers/media/usb/gspca/m5602/
7363
7364 GSPCA PAC207 SONIXB SUBDRIVER
7365 M:      Hans Verkuil <[email protected]>
7366 L:      [email protected]
7367 T:      git git://linuxtv.org/media_tree.git
7368 S:      Odd Fixes
7369 F:      drivers/media/usb/gspca/pac207.c
7370
7371 GSPCA SN9C20X SUBDRIVER
7372 M:      Brian Johnson <[email protected]>
7373 L:      [email protected]
7374 T:      git git://linuxtv.org/media_tree.git
7375 S:      Maintained
7376 F:      drivers/media/usb/gspca/sn9c20x.c
7377
7378 GSPCA T613 SUBDRIVER
7379 M:      Leandro Costantino <[email protected]>
7380 L:      [email protected]
7381 T:      git git://linuxtv.org/media_tree.git
7382 S:      Maintained
7383 F:      drivers/media/usb/gspca/t613.c
7384
7385 GSPCA USB WEBCAM DRIVER
7386 M:      Hans Verkuil <[email protected]>
7387 L:      [email protected]
7388 T:      git git://linuxtv.org/media_tree.git
7389 S:      Odd Fixes
7390 F:      drivers/media/usb/gspca/
7391
7392 GTP (GPRS Tunneling Protocol)
7393 M:      Pablo Neira Ayuso <[email protected]>
7394 M:      Harald Welte <[email protected]>
7395 L:      [email protected]
7396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7397 S:      Maintained
7398 F:      drivers/net/gtp.c
7399
7400 GUID PARTITION TABLE (GPT)
7401 M:      Davidlohr Bueso <[email protected]>
7402 L:      [email protected]
7403 S:      Maintained
7404 F:      block/partitions/efi.*
7405
7406 H8/300 ARCHITECTURE
7407 M:      Yoshinori Sato <[email protected]>
7408 L:      [email protected] (moderated for non-subscribers)
7409 W:      http://uclinux-h8.sourceforge.jp
7410 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7411 S:      Maintained
7412 F:      arch/h8300/
7413 F:      drivers/clocksource/h8300_*.c
7414 F:      drivers/clk/h8300/
7415 F:      drivers/irqchip/irq-renesas-h8*.c
7416
7417 HABANALABS PCI DRIVER
7418 M:      Oded Gabbay <[email protected]>
7419 T:      git https://github.com/HabanaAI/linux.git
7420 S:      Supported
7421 F:      drivers/misc/habanalabs/
7422 F:      include/uapi/misc/habanalabs.h
7423 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7424 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7425
7426 HACKRF MEDIA DRIVER
7427 M:      Antti Palosaari <[email protected]>
7428 L:      [email protected]
7429 W:      https://linuxtv.org
7430 W:      http://palosaari.fi/linux/
7431 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7432 T:      git git://linuxtv.org/anttip/media_tree.git
7433 S:      Maintained
7434 F:      drivers/media/usb/hackrf/
7435
7436 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7437 M:      Frank Seidel <[email protected]>
7438 L:      [email protected]
7439 S:      Maintained
7440 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7441 F:      drivers/platform/x86/hdaps.c
7442
7443 HARDWARE MONITORING
7444 M:      Jean Delvare <[email protected]>
7445 M:      Guenter Roeck <[email protected]>
7446 L:      [email protected]
7447 W:      http://hwmon.wiki.kernel.org/
7448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7449 S:      Maintained
7450 F:      Documentation/devicetree/bindings/hwmon/
7451 F:      Documentation/hwmon/
7452 F:      drivers/hwmon/
7453 F:      include/linux/hwmon*.h
7454 F:      include/trace/events/hwmon*.h
7455
7456 HARDWARE RANDOM NUMBER GENERATOR CORE
7457 M:      Matt Mackall <[email protected]>
7458 M:      Herbert Xu <[email protected]>
7459 L:      [email protected]
7460 S:      Odd fixes
7461 F:      Documentation/devicetree/bindings/rng/
7462 F:      Documentation/admin-guide/hw_random.rst
7463 F:      drivers/char/hw_random/
7464 F:      include/linux/hw_random.h
7465
7466 HARDWARE TRACING FACILITIES
7467 M:      Alexander Shishkin <[email protected]>
7468 S:      Maintained
7469 F:      drivers/hwtracing/
7470
7471 HARDWARE SPINLOCK CORE
7472 M:      Ohad Ben-Cohen <[email protected]>
7473 M:      Bjorn Andersson <[email protected]>
7474 R:      Baolin Wang <[email protected]>
7475 L:      [email protected]
7476 S:      Maintained
7477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7478 F:      Documentation/devicetree/bindings/hwlock/
7479 F:      Documentation/hwspinlock.txt
7480 F:      drivers/hwspinlock/
7481 F:      include/linux/hwspinlock.h
7482
7483 HARMONY SOUND DRIVER
7484 L:      [email protected]
7485 S:      Maintained
7486 F:      sound/parisc/harmony.*
7487
7488 HDPVR USB VIDEO ENCODER DRIVER
7489 M:      Hans Verkuil <[email protected]>
7490 L:      [email protected]
7491 T:      git git://linuxtv.org/media_tree.git
7492 W:      https://linuxtv.org
7493 S:      Odd Fixes
7494 F:      drivers/media/usb/hdpvr/
7495
7496 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7497 M:      Jerry Hoemann <[email protected]>
7498 S:      Supported
7499 F:      Documentation/watchdog/hpwdt.rst
7500 F:      drivers/watchdog/hpwdt.c
7501
7502 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7503 M:      Don Brace <[email protected]>
7504 L:      [email protected]
7505 L:      [email protected]
7506 S:      Supported
7507 F:      Documentation/scsi/hpsa.rst
7508 F:      drivers/scsi/hpsa*.[ch]
7509 F:      include/linux/cciss*.h
7510 F:      include/uapi/linux/cciss*.h
7511
7512 HFI1 DRIVER
7513 M:      Mike Marciniszyn <[email protected]>
7514 M:      Dennis Dalessandro <[email protected]>
7515 L:      [email protected]
7516 S:      Supported
7517 F:      drivers/infiniband/hw/hfi1
7518
7519 HFS FILESYSTEM
7520 L:      [email protected]
7521 S:      Orphan
7522 F:      Documentation/filesystems/hfs.rst
7523 F:      fs/hfs/
7524
7525 HFSPLUS FILESYSTEM
7526 L:      [email protected]
7527 S:      Orphan
7528 F:      Documentation/filesystems/hfsplus.rst
7529 F:      fs/hfsplus/
7530
7531 HGA FRAMEBUFFER DRIVER
7532 M:      Ferenc Bakonyi <[email protected]>
7533 L:      [email protected]
7534 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7535 S:      Maintained
7536 F:      drivers/video/fbdev/hgafb.c
7537
7538 HIBERNATION (aka Software Suspend, aka swsusp)
7539 M:      "Rafael J. Wysocki" <[email protected]>
7540 M:      Pavel Machek <[email protected]>
7541 L:      [email protected]
7542 B:      https://bugzilla.kernel.org
7543 S:      Supported
7544 F:      arch/x86/power/
7545 F:      drivers/base/power/
7546 F:      kernel/power/
7547 F:      include/linux/suspend.h
7548 F:      include/linux/freezer.h
7549 F:      include/linux/pm.h
7550 F:      arch/*/include/asm/suspend*.h
7551
7552 HID CORE LAYER
7553 M:      Jiri Kosina <[email protected]>
7554 M:      Benjamin Tissoires <[email protected]>
7555 L:      [email protected]
7556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7557 S:      Maintained
7558 F:      drivers/hid/
7559 F:      include/linux/hid*
7560 F:      include/uapi/linux/hid*
7561
7562 HID SENSOR HUB DRIVERS
7563 M:      Jiri Kosina <[email protected]>
7564 M:      Jonathan Cameron <[email protected]>
7565 M:      Srinivas Pandruvada <[email protected]>
7566 L:      [email protected]
7567 L:      [email protected]
7568 S:      Maintained
7569 F:      Documentation/hid/hid-sensor*
7570 F:      drivers/hid/hid-sensor-*
7571 F:      drivers/iio/*/hid-*
7572 F:      include/linux/hid-sensor-*
7573
7574 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7575 M:      Thomas Gleixner <[email protected]>
7576 L:      [email protected]
7577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7578 S:      Maintained
7579 F:      Documentation/timers/
7580 F:      kernel/time/hrtimer.c
7581 F:      kernel/time/clockevents.c
7582 F:      kernel/time/timer_*.c
7583 F:      include/linux/clockchips.h
7584 F:      include/linux/hrtimer.h
7585
7586 HIGH-SPEED SCC DRIVER FOR AX.25
7587 L:      [email protected]
7588 S:      Orphan
7589 F:      drivers/net/hamradio/dmascc.c
7590 F:      drivers/net/hamradio/scc.c
7591
7592 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7593 M:      HighPoint Linux Team <[email protected]>
7594 W:      http://www.highpoint-tech.com
7595 S:      Supported
7596 F:      Documentation/scsi/hptiop.rst
7597 F:      drivers/scsi/hptiop.c
7598
7599 HIPPI
7600 M:      Jes Sorensen <[email protected]>
7601 L:      [email protected]
7602 S:      Maintained
7603 F:      include/linux/hippidevice.h
7604 F:      include/uapi/linux/if_hippi.h
7605 F:      net/802/hippi.c
7606 F:      drivers/net/hippi/
7607
7608 HISILICON DMA DRIVER
7609 M:      Zhou Wang <[email protected]>
7610 L:      [email protected]
7611 S:      Maintained
7612 F:      drivers/dma/hisi_dma.c
7613
7614 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7615 M:      Zaibo Xu <[email protected]>
7616 L:      [email protected]
7617 S:      Maintained
7618 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7619 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7620 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7621 F:      drivers/crypto/hisilicon/sec2/sec.h
7622 F:      Documentation/ABI/testing/debugfs-hisi-sec
7623
7624 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7625 M:      Zaibo Xu <[email protected]>
7626 L:      [email protected]
7627 S:      Maintained
7628 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7629 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7630 F:      drivers/crypto/hisilicon/hpre/hpre.h
7631 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7632
7633 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7634 M:      Yisen Zhuang <[email protected]>
7635 M:      Salil Mehta <[email protected]>
7636 L:      [email protected]
7637 W:      http://www.hisilicon.com
7638 S:      Maintained
7639 F:      drivers/net/ethernet/hisilicon/hns3/
7640
7641 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7642 M:      Zaibo Xu <[email protected]>
7643 S:      Maintained
7644 F:      drivers/char/hw_random/hisi-trng-v2.c
7645
7646 HISILICON LPC BUS DRIVER
7647 M:      [email protected]
7648 W:      http://www.hisilicon.com
7649 S:      Maintained
7650 F:      drivers/bus/hisi_lpc.c
7651 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7652
7653 HISILICON NETWORK SUBSYSTEM DRIVER
7654 M:      Yisen Zhuang <[email protected]>
7655 M:      Salil Mehta <[email protected]>
7656 L:      [email protected]
7657 W:      http://www.hisilicon.com
7658 S:      Maintained
7659 F:      drivers/net/ethernet/hisilicon/
7660 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7661
7662 HISILICON PMU DRIVER
7663 M:      Shaokun Zhang <[email protected]>
7664 W:      http://www.hisilicon.com
7665 S:      Supported
7666 F:      drivers/perf/hisilicon
7667 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7668
7669 HISILICON ROCE DRIVER
7670 M:      Lijun Ou <[email protected]>
7671 M:      Wei Hu(Xavier) <[email protected]>
7672 M:      Weihang Li <[email protected]>
7673 L:      [email protected]
7674 S:      Maintained
7675 F:      drivers/infiniband/hw/hns/
7676 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7677
7678 HISILICON SAS Controller
7679 M:      John Garry <[email protected]>
7680 W:      http://www.hisilicon.com
7681 S:      Supported
7682 F:      drivers/scsi/hisi_sas/
7683 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7684
7685 HISILICON V3XX SPI NOR FLASH Controller Driver
7686 M:      John Garry <[email protected]>
7687 W:      http://www.hisilicon.com
7688 S:      Maintained
7689 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7690
7691 HISILICON QM AND ZIP Controller DRIVER
7692 M:      Zhou Wang <[email protected]>
7693 L:      [email protected]
7694 S:      Maintained
7695 F:      drivers/crypto/hisilicon/qm.c
7696 F:      drivers/crypto/hisilicon/qm.h
7697 F:      drivers/crypto/hisilicon/sgl.c
7698 F:      drivers/crypto/hisilicon/zip/
7699 F:      Documentation/ABI/testing/debugfs-hisi-zip
7700
7701 HMM - Heterogeneous Memory Management
7702 M:      Jérôme Glisse <[email protected]>
7703 L:      [email protected]
7704 S:      Maintained
7705 F:      mm/hmm*
7706 F:      include/linux/hmm*
7707 F:      Documentation/vm/hmm.rst
7708
7709 HOST AP DRIVER
7710 M:      Jouni Malinen <[email protected]>
7711 L:      [email protected]
7712 W:      http://w1.fi/hostap-driver.html
7713 S:      Obsolete
7714 F:      drivers/net/wireless/intersil/hostap/
7715
7716 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7717 L:      [email protected]
7718 S:      Orphan
7719 F:      drivers/platform/x86/tc1100-wmi.c
7720
7721 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7722 M:      Jaroslav Kysela <[email protected]>
7723 S:      Obsolete
7724 F:      drivers/staging/hp/hp100.*
7725
7726 HPET:   High Precision Event Timers driver
7727 M:      Clemens Ladisch <[email protected]>
7728 S:      Maintained
7729 F:      Documentation/timers/hpet.rst
7730 F:      drivers/char/hpet.c
7731 F:      include/linux/hpet.h
7732 F:      include/uapi/linux/hpet.h
7733
7734 HPET:   x86
7735 S:      Orphan
7736 F:      arch/x86/kernel/hpet.c
7737 F:      arch/x86/include/asm/hpet.h
7738
7739 HPFS FILESYSTEM
7740 M:      Mikulas Patocka <[email protected]>
7741 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7742 S:      Maintained
7743 F:      fs/hpfs/
7744
7745 HSI SUBSYSTEM
7746 M:      Sebastian Reichel <[email protected]>
7747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7748 S:      Maintained
7749 F:      Documentation/ABI/testing/sysfs-bus-hsi
7750 F:      Documentation/driver-api/hsi.rst
7751 F:      drivers/hsi/
7752 F:      include/linux/hsi/
7753 F:      include/uapi/linux/hsi/
7754
7755 HSO 3G MODEM DRIVER
7756 L:      [email protected]
7757 S:      Orphan
7758 F:      drivers/net/usb/hso.c
7759
7760 HSR NETWORK PROTOCOL
7761 L:      [email protected]
7762 S:      Orphan
7763 F:      net/hsr/
7764
7765 HT16K33 LED CONTROLLER DRIVER
7766 M:      Robin van der Gracht <[email protected]>
7767 S:      Maintained
7768 F:      drivers/auxdisplay/ht16k33.c
7769 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7770
7771 HTCPEN TOUCHSCREEN DRIVER
7772 M:      Pau Oliva Fora <[email protected]>
7773 L:      [email protected]
7774 S:      Maintained
7775 F:      drivers/input/touchscreen/htcpen.c
7776
7777 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7778 M:      Lorenzo Bianconi <[email protected]>
7779 L:      [email protected]
7780 W:      http://www.st.com/
7781 S:      Maintained
7782 F:      drivers/iio/humidity/hts221*
7783 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7784
7785 HUAWEI ETHERNET DRIVER
7786 M:      Aviad Krawczyk <[email protected]>
7787 L:      [email protected]
7788 S:      Supported
7789 F:      Documentation/networking/hinic.txt
7790 F:      drivers/net/ethernet/huawei/hinic/
7791
7792 HUGETLB FILESYSTEM
7793 M:      Mike Kravetz <[email protected]>
7794 L:      [email protected]
7795 S:      Maintained
7796 F:      fs/hugetlbfs/
7797 F:      mm/hugetlb.c
7798 F:      include/linux/hugetlb.h
7799 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7800 F:      Documentation/vm/hugetlbfs_reserv.rst
7801 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7802
7803 HVA ST MEDIA DRIVER
7804 M:      Jean-Christophe Trotin <[email protected]>
7805 L:      [email protected]
7806 T:      git git://linuxtv.org/media_tree.git
7807 W:      https://linuxtv.org
7808 S:      Supported
7809 F:      drivers/media/platform/sti/hva
7810
7811 HWPOISON MEMORY FAILURE HANDLING
7812 M:      Naoya Horiguchi <[email protected]>
7813 L:      [email protected]
7814 S:      Maintained
7815 F:      mm/memory-failure.c
7816 F:      mm/hwpoison-inject.c
7817
7818 HYGON PROCESSOR SUPPORT
7819 M:      Pu Wen <[email protected]>
7820 L:      [email protected]
7821 S:      Maintained
7822 F:      arch/x86/kernel/cpu/hygon.c
7823
7824 HYNIX HI556 SENSOR DRIVER
7825 M:      Shawn Tu <[email protected]>
7826 L:      [email protected]
7827 T:      git git://linuxtv.org/media_tree.git
7828 S:      Maintained
7829 F:      drivers/media/i2c/hi556.c
7830
7831 Hyper-V CORE AND DRIVERS
7832 M:      "K. Y. Srinivasan" <[email protected]>
7833 M:      Haiyang Zhang <[email protected]>
7834 M:      Stephen Hemminger <[email protected]>
7835 M:      Wei Liu <[email protected]>
7836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7837 L:      [email protected]
7838 S:      Supported
7839 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7840 F:      arch/x86/include/asm/mshyperv.h
7841 F:      arch/x86/include/asm/trace/hyperv.h
7842 F:      arch/x86/include/asm/hyperv-tlfs.h
7843 F:      arch/x86/kernel/cpu/mshyperv.c
7844 F:      arch/x86/hyperv
7845 F:      drivers/clocksource/hyperv_timer.c
7846 F:      drivers/hid/hid-hyperv.c
7847 F:      drivers/hv/
7848 F:      drivers/input/serio/hyperv-keyboard.c
7849 F:      drivers/pci/controller/pci-hyperv.c
7850 F:      drivers/pci/controller/pci-hyperv-intf.c
7851 F:      drivers/net/hyperv/
7852 F:      drivers/scsi/storvsc_drv.c
7853 F:      drivers/uio/uio_hv_generic.c
7854 F:      drivers/video/fbdev/hyperv_fb.c
7855 F:      drivers/iommu/hyperv-iommu.c
7856 F:      net/vmw_vsock/hyperv_transport.c
7857 F:      include/clocksource/hyperv_timer.h
7858 F:      include/linux/hyperv.h
7859 F:      include/uapi/linux/hyperv.h
7860 F:      include/asm-generic/mshyperv.h
7861 F:      tools/hv/
7862 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7863 F:      Documentation/ABI/testing/debugfs-hyperv
7864
7865 HYPERBUS SUPPORT
7866 M:      Vignesh Raghavendra <[email protected]>
7867 L:      [email protected]
7868 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
7870 C:      irc://irc.oftc.net/mtd
7871 S:      Supported
7872 F:      drivers/mtd/hyperbus/
7873 F:      include/linux/mtd/hyperbus.h
7874 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7875 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7876
7877 HYPERVISOR VIRTUAL CONSOLE DRIVER
7878 L:      [email protected]
7879 S:      Odd Fixes
7880 F:      drivers/tty/hvc/
7881
7882 I2C ACPI SUPPORT
7883 M:      Mika Westerberg <[email protected]>
7884 L:      [email protected]
7885 L:      [email protected]
7886 S:      Maintained
7887 F:      drivers/i2c/i2c-core-acpi.c
7888
7889 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7890 M:      Ajay Gupta <[email protected]>
7891 L:      [email protected]
7892 S:      Maintained
7893 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7894 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7895
7896 I2C MUXES
7897 M:      Peter Rosin <[email protected]>
7898 L:      [email protected]
7899 S:      Maintained
7900 F:      Documentation/i2c/i2c-topology.rst
7901 F:      Documentation/i2c/muxes/
7902 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7903 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7904 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7905 F:      drivers/i2c/i2c-mux.c
7906 F:      drivers/i2c/muxes/
7907 F:      include/linux/i2c-mux.h
7908
7909 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7910 M:      Gregory CLEMENT <[email protected]>
7911 L:      [email protected]
7912 S:      Maintained
7913 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7914 F:      drivers/i2c/busses/i2c-mv64xxx.c
7915
7916 I2C OVER PARALLEL PORT
7917 M:      Jean Delvare <[email protected]>
7918 L:      [email protected]
7919 S:      Maintained
7920 F:      Documentation/i2c/busses/i2c-parport.rst
7921 F:      drivers/i2c/busses/i2c-parport.c
7922
7923 I2C SUBSYSTEM
7924 M:      Wolfram Sang <[email protected]>
7925 L:      [email protected]
7926 W:      https://i2c.wiki.kernel.org/
7927 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7929 S:      Maintained
7930 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7931 F:      Documentation/i2c/
7932 F:      drivers/i2c/*
7933 F:      include/linux/i2c.h
7934 F:      include/linux/i2c-dev.h
7935 F:      include/linux/i2c-smbus.h
7936 F:      include/uapi/linux/i2c.h
7937 F:      include/uapi/linux/i2c-*.h
7938
7939 I2C SUBSYSTEM HOST DRIVERS
7940 L:      [email protected]
7941 W:      https://i2c.wiki.kernel.org/
7942 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7944 S:      Odd Fixes
7945 F:      Documentation/devicetree/bindings/i2c/
7946 F:      drivers/i2c/algos/
7947 F:      drivers/i2c/busses/
7948
7949 I2C-TAOS-EVM DRIVER
7950 M:      Jean Delvare <[email protected]>
7951 L:      [email protected]
7952 S:      Maintained
7953 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7954 F:      drivers/i2c/busses/i2c-taos-evm.c
7955
7956 I2C-TINY-USB DRIVER
7957 M:      Till Harbaum <[email protected]>
7958 L:      [email protected]
7959 W:      http://www.harbaum.org/till/i2c_tiny_usb
7960 S:      Maintained
7961 F:      drivers/i2c/busses/i2c-tiny-usb.c
7962
7963 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7964 M:      Jean Delvare <[email protected]>
7965 L:      [email protected]
7966 S:      Maintained
7967 F:      Documentation/i2c/busses/i2c-ali1535.rst
7968 F:      Documentation/i2c/busses/i2c-ali1563.rst
7969 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7970 F:      Documentation/i2c/busses/i2c-amd756.rst
7971 F:      Documentation/i2c/busses/i2c-amd8111.rst
7972 F:      Documentation/i2c/busses/i2c-i801.rst
7973 F:      Documentation/i2c/busses/i2c-nforce2.rst
7974 F:      Documentation/i2c/busses/i2c-piix4.rst
7975 F:      Documentation/i2c/busses/i2c-sis5595.rst
7976 F:      Documentation/i2c/busses/i2c-sis630.rst
7977 F:      Documentation/i2c/busses/i2c-sis96x.rst
7978 F:      Documentation/i2c/busses/i2c-via.rst
7979 F:      Documentation/i2c/busses/i2c-viapro.rst
7980 F:      drivers/i2c/busses/i2c-ali1535.c
7981 F:      drivers/i2c/busses/i2c-ali1563.c
7982 F:      drivers/i2c/busses/i2c-ali15x3.c
7983 F:      drivers/i2c/busses/i2c-amd756.c
7984 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7985 F:      drivers/i2c/busses/i2c-amd8111.c
7986 F:      drivers/i2c/busses/i2c-i801.c
7987 F:      drivers/i2c/busses/i2c-isch.c
7988 F:      drivers/i2c/busses/i2c-nforce2.c
7989 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7990 F:      drivers/i2c/busses/i2c-piix4.c
7991 F:      drivers/i2c/busses/i2c-sis5595.c
7992 F:      drivers/i2c/busses/i2c-sis630.c
7993 F:      drivers/i2c/busses/i2c-sis96x.c
7994 F:      drivers/i2c/busses/i2c-via.c
7995 F:      drivers/i2c/busses/i2c-viapro.c
7996
7997 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7998 M:      Hans de Goede <[email protected]>
7999 L:      [email protected]
8000 S:      Maintained
8001 F:      drivers/i2c/busses/i2c-cht-wc.c
8002
8003 I2C/SMBUS ISMT DRIVER
8004 M:      Seth Heasley <[email protected]>
8005 M:      Neil Horman <[email protected]>
8006 L:      [email protected]
8007 F:      drivers/i2c/busses/i2c-ismt.c
8008 F:      Documentation/i2c/busses/i2c-ismt.rst
8009
8010 I2C/SMBUS STUB DRIVER
8011 M:      Jean Delvare <[email protected]>
8012 L:      [email protected]
8013 S:      Maintained
8014 F:      drivers/i2c/i2c-stub.c
8015
8016 I3C SUBSYSTEM
8017 M:      Boris Brezillon <[email protected]>
8018 L:      [email protected] (moderated for non-subscribers)
8019 C:      irc://chat.freenode.net/linux-i3c
8020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8021 S:      Maintained
8022 F:      Documentation/ABI/testing/sysfs-bus-i3c
8023 F:      Documentation/devicetree/bindings/i3c/
8024 F:      Documentation/driver-api/i3c
8025 F:      drivers/i3c/
8026 F:      include/linux/i3c/
8027
8028 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8029 M:      Vitor Soares <[email protected]>
8030 S:      Maintained
8031 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8032 F:      drivers/i3c/master/dw*
8033
8034 I3C DRIVER FOR CADENCE I3C MASTER IP
8035 M:      Przemysław Gaj <[email protected]>
8036 S:      Maintained
8037 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8038 F:      drivers/i3c/master/i3c-master-cdns.c
8039
8040 IA64 (Itanium) PLATFORM
8041 M:      Tony Luck <[email protected]>
8042 M:      Fenghua Yu <[email protected]>
8043 L:      [email protected]
8044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8045 S:      Maintained
8046 F:      arch/ia64/
8047 F:      Documentation/ia64/
8048
8049 IBM Power 842 compression accelerator
8050 M:      Haren Myneni <[email protected]>
8051 S:      Supported
8052 F:      drivers/crypto/nx/Makefile
8053 F:      drivers/crypto/nx/Kconfig
8054 F:      drivers/crypto/nx/nx-842*
8055 F:      include/linux/sw842.h
8056 F:      crypto/842.c
8057 F:      lib/842/
8058
8059 IBM Power in-Nest Crypto Acceleration
8060 M:      Breno Leitão <[email protected]>
8061 M:      Nayna Jain <[email protected]>
8062 M:      Paulo Flabiano Smorigo <[email protected]>
8063 L:      [email protected]
8064 S:      Supported
8065 F:      drivers/crypto/nx/Makefile
8066 F:      drivers/crypto/nx/Kconfig
8067 F:      drivers/crypto/nx/nx-aes*
8068 F:      drivers/crypto/nx/nx-sha*
8069 F:      drivers/crypto/nx/nx.*
8070 F:      drivers/crypto/nx/nx_csbcpb.h
8071 F:      drivers/crypto/nx/nx_debugfs.c
8072
8073 IBM Power Linux RAID adapter
8074 M:      Brian King <[email protected]>
8075 S:      Supported
8076 F:      drivers/scsi/ipr.*
8077
8078 IBM Power SRIOV Virtual NIC Device Driver
8079 M:      Thomas Falcon <[email protected]>
8080 M:      John Allen <[email protected]>
8081 L:      [email protected]
8082 S:      Supported
8083 F:      drivers/net/ethernet/ibm/ibmvnic.*
8084
8085 IBM Power Virtual Accelerator Switchboard
8086 M:      Sukadev Bhattiprolu <[email protected]>
8087 L:      [email protected]
8088 S:      Supported
8089 F:      arch/powerpc/platforms/powernv/vas*
8090 F:      arch/powerpc/platforms/powernv/copy-paste.h
8091 F:      arch/powerpc/include/asm/vas.h
8092
8093 IBM Power Virtual Ethernet Device Driver
8094 M:      Thomas Falcon <[email protected]>
8095 L:      [email protected]
8096 S:      Supported
8097 F:      drivers/net/ethernet/ibm/ibmveth.*
8098
8099 IBM Power Virtual FC Device Drivers
8100 M:      Tyrel Datwyler <[email protected]>
8101 L:      [email protected]
8102 S:      Supported
8103 F:      drivers/scsi/ibmvscsi/ibmvfc*
8104
8105 IBM Power Virtual Management Channel Driver
8106 M:      Steven Royer <[email protected]>
8107 S:      Supported
8108 F:      drivers/misc/ibmvmc.*
8109
8110 IBM Power Virtual SCSI Device Drivers
8111 M:      Tyrel Datwyler <[email protected]>
8112 L:      [email protected]
8113 S:      Supported
8114 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8115 F:      include/scsi/viosrp.h
8116
8117 IBM Power Virtual SCSI Device Target Driver
8118 M:      Michael Cyr <[email protected]>
8119 L:      [email protected]
8120 L:      [email protected]
8121 S:      Supported
8122 F:      drivers/scsi/ibmvscsi_tgt/
8123
8124 IBM Power VMX Cryptographic instructions
8125 M:      Breno Leitão <[email protected]>
8126 M:      Nayna Jain <[email protected]>
8127 M:      Paulo Flabiano Smorigo <[email protected]>
8128 L:      [email protected]
8129 S:      Supported
8130 F:      drivers/crypto/vmx/Makefile
8131 F:      drivers/crypto/vmx/Kconfig
8132 F:      drivers/crypto/vmx/vmx.c
8133 F:      drivers/crypto/vmx/aes*
8134 F:      drivers/crypto/vmx/ghash*
8135 F:      drivers/crypto/vmx/ppc-xlate.pl
8136
8137 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8138 M:      Tyrel Datwyler <[email protected]>
8139 L:      [email protected]
8140 L:      [email protected]
8141 S:      Supported
8142 F:      drivers/pci/hotplug/rpaphp*
8143
8144 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8145 M:      Tyrel Datwyler <[email protected]>
8146 L:      [email protected]
8147 L:      [email protected]
8148 S:      Supported
8149 F:      drivers/pci/hotplug/rpadlpar*
8150
8151 IBM ServeRAID RAID DRIVER
8152 S:      Orphan
8153 F:      drivers/scsi/ips.*
8154
8155 ICH LPC AND GPIO DRIVER
8156 M:      Peter Tyser <[email protected]>
8157 S:      Maintained
8158 F:      drivers/gpio/gpio-ich.c
8159 F:      drivers/mfd/lpc_ich.c
8160
8161 ICY I2C DRIVER
8162 M:      Max Staudt <[email protected]>
8163 L:      [email protected]
8164 S:      Maintained
8165 F:      drivers/i2c/busses/i2c-icy.c
8166
8167 IDE SUBSYSTEM
8168 M:      "David S. Miller" <[email protected]>
8169 L:      [email protected]
8170 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8172 S:      Maintained
8173 F:      Documentation/ide/
8174 F:      drivers/ide/
8175 F:      include/linux/ide.h
8176
8177 IDE/ATAPI DRIVERS
8178 M:      Borislav Petkov <[email protected]>
8179 L:      [email protected]
8180 S:      Maintained
8181 F:      Documentation/cdrom/ide-cd.rst
8182 F:      drivers/ide/ide-cd*
8183
8184 IDEAPAD LAPTOP EXTRAS DRIVER
8185 M:      Ike Panhc <[email protected]>
8186 L:      [email protected]
8187 S:      Maintained
8188 W:      http://launchpad.net/ideapad-laptop
8189 F:      drivers/platform/x86/ideapad-laptop.c
8190
8191 IDEAPAD LAPTOP SLIDEBAR DRIVER
8192 M:      Andrey Moiseev <[email protected]>
8193 L:      [email protected]
8194 S:      Maintained
8195 W:      https://github.com/o2genum/ideapad-slidebar
8196 F:      drivers/input/misc/ideapad_slidebar.c
8197
8198 IDT VersaClock 5 CLOCK DRIVER
8199 M:      Marek Vasut <[email protected]>
8200 S:      Maintained
8201 F:      drivers/clk/clk-versaclock5.c
8202
8203 IEEE 802.15.4 SUBSYSTEM
8204 M:      Alexander Aring <[email protected]>
8205 M:      Stefan Schmidt <[email protected]>
8206 L:      [email protected]
8207 W:      http://wpan.cakelab.org/
8208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8210 S:      Maintained
8211 F:      net/ieee802154/
8212 F:      net/mac802154/
8213 F:      drivers/net/ieee802154/
8214 F:      include/linux/nl802154.h
8215 F:      include/linux/ieee802154.h
8216 F:      include/net/nl802154.h
8217 F:      include/net/mac802154.h
8218 F:      include/net/af_ieee802154.h
8219 F:      include/net/cfg802154.h
8220 F:      include/net/ieee802154_netdev.h
8221 F:      Documentation/networking/ieee802154.rst
8222
8223 IFE PROTOCOL
8224 M:      Yotam Gigi <[email protected]>
8225 M:      Jamal Hadi Salim <[email protected]>
8226 F:      net/ife
8227 F:      include/net/ife.h
8228 F:      include/uapi/linux/ife.h
8229
8230 IGORPLUG-USB IR RECEIVER
8231 M:      Sean Young <[email protected]>
8232 L:      [email protected]
8233 S:      Maintained
8234 F:      drivers/media/rc/igorplugusb.c
8235
8236 IGUANAWORKS USB IR TRANSCEIVER
8237 M:      Sean Young <[email protected]>
8238 L:      [email protected]
8239 S:      Maintained
8240 F:      drivers/media/rc/iguanair.c
8241
8242 IIO DIGITAL POTENTIOMETER DAC
8243 M:      Peter Rosin <[email protected]>
8244 L:      [email protected]
8245 S:      Maintained
8246 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8247 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8248 F:      drivers/iio/dac/dpot-dac.c
8249
8250 IIO ENVELOPE DETECTOR
8251 M:      Peter Rosin <[email protected]>
8252 L:      [email protected]
8253 S:      Maintained
8254 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8255 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8256 F:      drivers/iio/adc/envelope-detector.c
8257
8258 IIO MULTIPLEXER
8259 M:      Peter Rosin <[email protected]>
8260 L:      [email protected]
8261 S:      Maintained
8262 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8263 F:      drivers/iio/multiplexer/iio-mux.c
8264
8265 IIO SUBSYSTEM AND DRIVERS
8266 M:      Jonathan Cameron <[email protected]>
8267 R:      Hartmut Knaack <[email protected]>
8268 R:      Lars-Peter Clausen <[email protected]>
8269 R:      Peter Meerwald-Stadler <[email protected]>
8270 L:      [email protected]
8271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8272 S:      Maintained
8273 F:      Documentation/ABI/testing/configfs-iio*
8274 F:      Documentation/ABI/testing/sysfs-bus-iio*
8275 F:      Documentation/devicetree/bindings/iio/
8276 F:      drivers/iio/
8277 F:      drivers/staging/iio/
8278 F:      include/linux/iio/
8279 F:      tools/iio/
8280
8281 IIO UNIT CONVERTER
8282 M:      Peter Rosin <[email protected]>
8283 L:      [email protected]
8284 S:      Maintained
8285 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8286 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8287 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8288 F:      drivers/iio/afe/iio-rescale.c
8289
8290 IKANOS/ADI EAGLE ADSL USB DRIVER
8291 M:      Matthieu Castet <[email protected]>
8292 M:      Stanislaw Gruszka <[email protected]>
8293 S:      Maintained
8294 F:      drivers/usb/atm/ueagle-atm.c
8295
8296 IMGTEC ASCII LCD DRIVER
8297 M:      Paul Burton <[email protected]>
8298 S:      Maintained
8299 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8300 F:      drivers/auxdisplay/img-ascii-lcd.c
8301
8302 IMGTEC IR DECODER DRIVER
8303 S:      Orphan
8304 F:      drivers/media/rc/img-ir/
8305
8306 IMON SOUNDGRAPH USB IR RECEIVER
8307 M:      Sean Young <[email protected]>
8308 L:      [email protected]
8309 S:      Maintained
8310 F:      drivers/media/rc/imon_raw.c
8311 F:      drivers/media/rc/imon.c
8312
8313 IMS TWINTURBO FRAMEBUFFER DRIVER
8314 L:      [email protected]
8315 S:      Orphan
8316 F:      drivers/video/fbdev/imsttfb.c
8317
8318 INA209 HARDWARE MONITOR DRIVER
8319 M:      Guenter Roeck <[email protected]>
8320 L:      [email protected]
8321 S:      Maintained
8322 F:      Documentation/hwmon/ina209.rst
8323 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8324 F:      drivers/hwmon/ina209.c
8325
8326 INA2XX HARDWARE MONITOR DRIVER
8327 M:      Guenter Roeck <[email protected]>
8328 L:      [email protected]
8329 S:      Maintained
8330 F:      Documentation/hwmon/ina2xx.rst
8331 F:      drivers/hwmon/ina2xx.c
8332 F:      include/linux/platform_data/ina2xx.h
8333
8334 INDUSTRY PACK SUBSYSTEM (IPACK)
8335 M:      Samuel Iglesias Gonsalvez <[email protected]>
8336 M:      Jens Taprogge <[email protected]>
8337 M:      Greg Kroah-Hartman <[email protected]>
8338 L:      [email protected]
8339 W:      http://industrypack.sourceforge.net
8340 S:      Maintained
8341 F:      drivers/ipack/
8342
8343 INFINEON DPS310 Driver
8344 M:      Eddie James <[email protected]>
8345 L:      [email protected]
8346 F:      drivers/iio/pressure/dps310.c
8347 S:      Maintained
8348
8349 INFINIBAND SUBSYSTEM
8350 M:      Doug Ledford <[email protected]>
8351 M:      Jason Gunthorpe <[email protected]>
8352 L:      [email protected]
8353 W:      https://github.com/linux-rdma/rdma-core
8354 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8356 S:      Supported
8357 F:      Documentation/devicetree/bindings/infiniband/
8358 F:      Documentation/infiniband/
8359 F:      drivers/infiniband/
8360 F:      include/uapi/linux/if_infiniband.h
8361 F:      include/uapi/rdma/
8362 F:      include/rdma/
8363 F:      include/trace/events/ib_mad.h
8364 F:      include/trace/events/ib_umad.h
8365 F:      samples/bpf/ibumad_kern.c
8366 F:      samples/bpf/ibumad_user.c
8367
8368 INGENIC JZ4780 DMA Driver
8369 M:      Zubair Lutfullah Kakakhel <[email protected]>
8370 S:      Maintained
8371 F:      drivers/dma/dma-jz4780.c
8372
8373 INGENIC JZ4780 NAND DRIVER
8374 M:      Harvey Hunt <[email protected]>
8375 L:      [email protected]
8376 S:      Maintained
8377 F:      drivers/mtd/nand/raw/ingenic/
8378
8379 INGENIC JZ47xx SoCs
8380 M:      Paul Cercueil <[email protected]>
8381 S:      Maintained
8382 F:      arch/mips/boot/dts/ingenic/
8383 F:      arch/mips/include/asm/mach-jz4740/
8384 F:      arch/mips/jz4740/
8385 F:      drivers/clk/ingenic/
8386 F:      drivers/dma/dma-jz4780.c
8387 F:      drivers/gpu/drm/ingenic/
8388 F:      drivers/i2c/busses/i2c-jz4780.c
8389 F:      drivers/iio/adc/ingenic-adc.c
8390 F:      drivers/irqchip/irq-ingenic.c
8391 F:      drivers/memory/jz4780-nemc.c
8392 F:      drivers/mmc/host/jz4740_mmc.c
8393 F:      drivers/mtd/nand/raw/ingenic/
8394 F:      drivers/pinctrl/pinctrl-ingenic.c
8395 F:      drivers/power/supply/ingenic-battery.c
8396 F:      drivers/pwm/pwm-jz4740.c
8397 F:      drivers/rtc/rtc-jz4740.c
8398 F:      drivers/tty/serial/8250/8250_ingenic.c
8399 F:      drivers/usb/musb/jz4740.c
8400 F:      drivers/watchdog/jz4740_wdt.c
8401 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8402 F:      include/linux/mfd/ingenic-tcu.h
8403 F:      sound/soc/jz4740/
8404 F:      sound/soc/codecs/jz47*
8405
8406 INOTIFY
8407 M:      Jan Kara <[email protected]>
8408 R:      Amir Goldstein <[email protected]>
8409 L:      [email protected]
8410 S:      Maintained
8411 F:      Documentation/filesystems/inotify.rst
8412 F:      fs/notify/inotify/
8413 F:      include/linux/inotify.h
8414 F:      include/uapi/linux/inotify.h
8415
8416 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8417 M:      Dmitry Torokhov <[email protected]>
8418 L:      [email protected]
8419 Q:      http://patchwork.kernel.org/project/linux-input/list/
8420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8421 S:      Maintained
8422 F:      drivers/input/
8423 F:      include/linux/input.h
8424 F:      include/uapi/linux/input.h
8425 F:      include/uapi/linux/input-event-codes.h
8426 F:      include/linux/input/
8427 F:      Documentation/devicetree/bindings/input/
8428 F:      Documentation/devicetree/bindings/serio/
8429 F:      Documentation/input/
8430
8431 INPUT MULTITOUCH (MT) PROTOCOL
8432 M:      Henrik Rydberg <[email protected]>
8433 L:      [email protected]
8434 S:      Odd fixes
8435 F:      Documentation/input/multi-touch-protocol.rst
8436 F:      drivers/input/input-mt.c
8437 K:      \b(ABS|SYN)_MT_
8438
8439 INSIDE SECURE CRYPTO DRIVER
8440 M:      Antoine Tenart <[email protected]>
8441 F:      drivers/crypto/inside-secure/
8442 S:      Maintained
8443 L:      [email protected]
8444
8445 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8446 M:      Mimi Zohar <[email protected]>
8447 M:      Dmitry Kasatkin <[email protected]>
8448 L:      [email protected]
8449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8450 S:      Supported
8451 F:      security/integrity/ima/
8452
8453 INTEL 810/815 FRAMEBUFFER DRIVER
8454 M:      Antonino Daplas <[email protected]>
8455 L:      [email protected]
8456 S:      Maintained
8457 F:      drivers/video/fbdev/i810/
8458
8459 INTEL ASoC DRIVERS
8460 M:      Cezary Rojewski <[email protected]>
8461 M:      Pierre-Louis Bossart <[email protected]>
8462 M:      Liam Girdwood <[email protected]>
8463 M:      Jie Yang <[email protected]>
8464 L:      [email protected] (moderated for non-subscribers)
8465 S:      Supported
8466 F:      sound/soc/intel/
8467
8468 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8469 M:      Hans de Goede <[email protected]>
8470 L:      [email protected]
8471 S:      Maintained
8472 F:      drivers/platform/x86/intel_atomisp2_pm.c
8473
8474 INTEL C600 SERIES SAS CONTROLLER DRIVER
8475 M:      Intel SCU Linux support <[email protected]>
8476 M:      Artur Paszkiewicz <[email protected]>
8477 L:      [email protected]
8478 T:      git git://git.code.sf.net/p/intel-sas/isci
8479 S:      Supported
8480 F:      drivers/scsi/isci/
8481
8482 INTEL CPU family model numbers
8483 M:      Tony Luck <[email protected]>
8484 M:      [email protected]
8485 L:      [email protected]
8486 S:      Supported
8487 F:      arch/x86/include/asm/intel-family.h
8488
8489 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8490 M:      Jani Nikula <[email protected]>
8491 M:      Joonas Lahtinen <[email protected]>
8492 M:      Rodrigo Vivi <[email protected]>
8493 L:      [email protected]
8494 W:      https://01.org/linuxgraphics/
8495 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8496 C:      irc://chat.freenode.net/intel-gfx
8497 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8498 T:      git git://anongit.freedesktop.org/drm-intel
8499 S:      Supported
8500 F:      drivers/gpu/drm/i915/
8501 F:      include/drm/i915*
8502 F:      include/uapi/drm/i915_drm.h
8503 F:      Documentation/gpu/i915.rst
8504
8505 INTEL ETHERNET DRIVERS
8506 M:      Jeff Kirsher <[email protected]>
8507 L:      [email protected] (moderated for non-subscribers)
8508 W:      http://www.intel.com/support/feedback.htm
8509 W:      http://e1000.sourceforge.net/
8510 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8513 S:      Supported
8514 F:      Documentation/networking/device_drivers/intel/e100.rst
8515 F:      Documentation/networking/device_drivers/intel/e1000.rst
8516 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8517 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8518 F:      Documentation/networking/device_drivers/intel/igb.rst
8519 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8520 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8521 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8522 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8523 F:      Documentation/networking/device_drivers/intel/i40e.rst
8524 F:      Documentation/networking/device_drivers/intel/iavf.rst
8525 F:      Documentation/networking/device_drivers/intel/ice.rst
8526 F:      drivers/net/ethernet/intel/
8527 F:      drivers/net/ethernet/intel/*/
8528 F:      include/linux/avf/virtchnl.h
8529
8530 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8531 M:      Maik Broemme <[email protected]>
8532 L:      [email protected]
8533 S:      Maintained
8534 F:      Documentation/fb/intelfb.rst
8535 F:      drivers/video/fbdev/intelfb/
8536
8537 INTEL GPIO DRIVERS
8538 M:      Andy Shevchenko <[email protected]>
8539 L:      [email protected]
8540 S:      Maintained
8541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8542 F:      drivers/gpio/gpio-ich.c
8543 F:      drivers/gpio/gpio-intel-mid.c
8544 F:      drivers/gpio/gpio-merrifield.c
8545 F:      drivers/gpio/gpio-ml-ioh.c
8546 F:      drivers/gpio/gpio-pch.c
8547 F:      drivers/gpio/gpio-sch.c
8548 F:      drivers/gpio/gpio-sodaville.c
8549
8550 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8551 M:      Zhenyu Wang <[email protected]>
8552 M:      Zhi Wang <[email protected]>
8553 L:      [email protected]
8554 L:      [email protected]
8555 W:      https://01.org/igvt-g
8556 T:      git https://github.com/intel/gvt-linux.git
8557 S:      Supported
8558 F:      drivers/gpu/drm/i915/gvt/
8559
8560 INTEL HID EVENT DRIVER
8561 M:      Alex Hung <[email protected]>
8562 L:      [email protected]
8563 S:      Maintained
8564 F:      drivers/platform/x86/intel-hid.c
8565
8566 INTEL I/OAT DMA DRIVER
8567 M:      Dave Jiang <[email protected]>
8568 R:      Dan Williams <[email protected]>
8569 L:      [email protected]
8570 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8571 S:      Supported
8572 F:      drivers/dma/ioat*
8573
8574 INTEL IADX DRIVER
8575 M:      Dave Jiang <[email protected]>
8576 L:      [email protected]
8577 S:      Supported
8578 F:      drivers/dma/idxd/*
8579 F:      include/uapi/linux/idxd.h
8580
8581 INTEL IDLE DRIVER
8582 M:      Jacob Pan <[email protected]>
8583 M:      Len Brown <[email protected]>
8584 L:      [email protected]
8585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8586 B:      https://bugzilla.kernel.org
8587 S:      Supported
8588 F:      drivers/idle/intel_idle.c
8589
8590 INTEL INTEGRATED SENSOR HUB DRIVER
8591 M:      Srinivas Pandruvada <[email protected]>
8592 M:      Jiri Kosina <[email protected]>
8593 L:      [email protected]
8594 S:      Maintained
8595 F:      drivers/hid/intel-ish-hid/
8596
8597 INTEL IOMMU (VT-d)
8598 M:      David Woodhouse <[email protected]>
8599 M:      Lu Baolu <[email protected]>
8600 L:      [email protected]
8601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8602 S:      Supported
8603 F:      drivers/iommu/dmar.c
8604 F:      drivers/iommu/intel*.[ch]
8605 F:      include/linux/intel-iommu.h
8606 F:      include/linux/intel-svm.h
8607
8608 INTEL IOP-ADMA DMA DRIVER
8609 R:      Dan Williams <[email protected]>
8610 S:      Odd fixes
8611 F:      drivers/dma/iop-adma.c
8612
8613 INTEL IPU3 CSI-2 CIO2 DRIVER
8614 M:      Yong Zhi <[email protected]>
8615 M:      Sakari Ailus <[email protected]>
8616 M:      Bingbu Cao <[email protected]>
8617 R:      Tian Shu Qiu <[email protected]>
8618 L:      [email protected]
8619 S:      Maintained
8620 F:      drivers/media/pci/intel/ipu3/
8621 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8622
8623 INTEL IPU3 CSI-2 IMGU DRIVER
8624 M:      Sakari Ailus <[email protected]>
8625 L:      [email protected]
8626 S:      Maintained
8627 F:      drivers/staging/media/ipu3/
8628 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8629 F:      Documentation/media/v4l-drivers/ipu3.rst
8630 F:      Documentation/media/v4l-drivers/ipu3_rcb.svg
8631
8632 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8633 M:      Krzysztof Halasa <[email protected]>
8634 S:      Maintained
8635 F:      include/linux/soc/ixp4xx/qmgr.h
8636 F:      include/linux/soc/ixp4xx/npe.h
8637 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8638 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8639 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8640 F:      drivers/net/wan/ixp4xx_hss.c
8641
8642 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8643 M:      Deepak Saxena <[email protected]>
8644 S:      Maintained
8645 F:      drivers/char/hw_random/ixp4xx-rng.c
8646
8647 INTEL MANAGEMENT ENGINE (mei)
8648 M:      Tomas Winkler <[email protected]>
8649 L:      [email protected]
8650 S:      Supported
8651 F:      include/uapi/linux/mei.h
8652 F:      include/linux/mei_cl_bus.h
8653 F:      drivers/misc/mei/*
8654 F:      drivers/watchdog/mei_wdt.c
8655 F:      Documentation/driver-api/mei/*
8656 F:      samples/mei/*
8657
8658 INTEL MENLOW THERMAL DRIVER
8659 M:      Sujith Thomas <[email protected]>
8660 L:      [email protected]
8661 S:      Supported
8662 W:      https://01.org/linux-acpi
8663 F:      drivers/platform/x86/intel_menlow.c
8664
8665 INTEL MIC DRIVERS (mic)
8666 M:      Sudeep Dutt <[email protected]>
8667 M:      Ashutosh Dixit <[email protected]>
8668 S:      Supported
8669 W:      https://github.com/sudeepdutt/mic
8670 W:      http://software.intel.com/en-us/mic-developer
8671 F:      Documentation/misc-devices/mic/
8672 F:      drivers/dma/mic_x100_dma.c
8673 F:      drivers/dma/mic_x100_dma.h
8674 F:      drivers/misc/mic/
8675 F:      include/linux/mic_bus.h
8676 F:      include/linux/scif.h
8677 F:      include/uapi/linux/mic_common.h
8678 F:      include/uapi/linux/mic_ioctl.h
8679 F:      include/uapi/linux/scif_ioctl.h
8680
8681 INTEL PMC CORE DRIVER
8682 M:      Rajneesh Bhardwaj <[email protected]>
8683 M:      Vishwanath Somayaji <[email protected]>
8684 L:      [email protected]
8685 S:      Maintained
8686 F:      drivers/platform/x86/intel_pmc_core*
8687
8688 INTEL PMC/P-Unit IPC DRIVER
8689 M:      Zha Qipeng<[email protected]>
8690 L:      [email protected]
8691 S:      Maintained
8692 F:      arch/x86/include/asm/intel_pmc_ipc.h
8693 F:      arch/x86/include/asm/intel_punit_ipc.h
8694 F:      drivers/platform/x86/intel_pmc_ipc.c
8695 F:      drivers/platform/x86/intel_punit_ipc.c
8696
8697 INTEL PMIC GPIO DRIVERS
8698 M:      Andy Shevchenko <[email protected]>
8699 S:      Maintained
8700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8701 F:      drivers/gpio/gpio-*cove.c
8702 F:      drivers/gpio/gpio-msic.c
8703
8704 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8705 R:      Andy Shevchenko <[email protected]>
8706 S:      Maintained
8707 F:      drivers/mfd/intel_msic.c
8708 F:      drivers/mfd/intel_soc_pmic*
8709 F:      include/linux/mfd/intel_msic.h
8710 F:      include/linux/mfd/intel_soc_pmic*
8711
8712 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8713 M:      Stanislav Yakovlev <[email protected]>
8714 L:      [email protected]
8715 S:      Maintained
8716 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8717 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8718 F:      drivers/net/wireless/intel/ipw2x00/
8719
8720 INTEL PSTATE DRIVER
8721 M:      Srinivas Pandruvada <[email protected]>
8722 M:      Len Brown <[email protected]>
8723 L:      [email protected]
8724 S:      Supported
8725 F:      drivers/cpufreq/intel_pstate.c
8726
8727 INTEL RDMA RNIC DRIVER
8728 M:      Faisal Latif <[email protected]>
8729 M:      Shiraz Saleem <[email protected]>
8730 L:      [email protected]
8731 S:      Supported
8732 F:      drivers/infiniband/hw/i40iw/
8733 F:      include/uapi/rdma/i40iw-abi.h
8734
8735 INTEL SPEED SELECT TECHNOLOGY
8736 M:      Srinivas Pandruvada <[email protected]>
8737 L:      [email protected]
8738 S:      Maintained
8739 F:      drivers/platform/x86/intel_speed_select_if/
8740 F:      include/uapi/linux/isst_if.h
8741 F:      tools/power/x86/intel-speed-select/
8742
8743 INTEL STRATIX10 FIRMWARE DRIVERS
8744 M:      Richard Gong <[email protected]>
8745 L:      [email protected]
8746 S:      Maintained
8747 F:      drivers/firmware/stratix10-rsu.c
8748 F:      drivers/firmware/stratix10-svc.c
8749 F:      include/linux/firmware/intel/stratix10-smc.h
8750 F:      include/linux/firmware/intel/stratix10-svc-client.h
8751 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8752 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8753
8754 INTEL TELEMETRY DRIVER
8755 M:      Rajneesh Bhardwaj <[email protected]>
8756 M:      "David E. Box" <[email protected]>
8757 L:      [email protected]
8758 S:      Maintained
8759 F:      arch/x86/include/asm/intel_telemetry.h
8760 F:      drivers/platform/x86/intel_telemetry*
8761
8762 INTEL UNCORE FREQUENCY CONTROL
8763 M:      Srinivas Pandruvada <[email protected]>
8764 L:      [email protected]
8765 S:      Maintained
8766 F:      drivers/platform/x86/intel-uncore-frequency.c
8767
8768 INTEL VIRTUAL BUTTON DRIVER
8769 M:      AceLan Kao <[email protected]>
8770 L:      [email protected]
8771 S:      Maintained
8772 F:      drivers/platform/x86/intel-vbtn.c
8773
8774 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8775 M:      Stanislaw Gruszka <[email protected]>
8776 L:      [email protected]
8777 S:      Supported
8778 F:      drivers/net/wireless/intel/iwlegacy/
8779
8780 INTEL WIRELESS WIFI LINK (iwlwifi)
8781 M:      Johannes Berg <[email protected]>
8782 M:      Emmanuel Grumbach <[email protected]>
8783 M:      Luca Coelho <[email protected]>
8784 M:      Intel Linux Wireless <[email protected]>
8785 L:      [email protected]
8786 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8788 S:      Supported
8789 F:      drivers/net/wireless/intel/iwlwifi/
8790
8791 INTEL WIRELESS WIMAX CONNECTION 2400
8792 M:      Inaky Perez-Gonzalez <[email protected]>
8793 M:      [email protected]
8794 L:      [email protected] (subscribers-only)
8795 S:      Supported
8796 W:      http://linuxwimax.org
8797 F:      Documentation/admin-guide/wimax/i2400m.rst
8798 F:      drivers/net/wimax/i2400m/
8799 F:      include/uapi/linux/wimax/i2400m.h
8800
8801 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8802 M:      Mario Limonciello <[email protected]>
8803 S:      Maintained
8804 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8805
8806 INTEL(R) TRACE HUB
8807 M:      Alexander Shishkin <[email protected]>
8808 S:      Supported
8809 F:      Documentation/trace/intel_th.rst
8810 F:      drivers/hwtracing/intel_th/
8811 F:      include/linux/intel_th.h
8812
8813 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8814 M:      Ning Sun <[email protected]>
8815 L:      [email protected]
8816 W:      http://tboot.sourceforge.net
8817 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8818 S:      Supported
8819 F:      Documentation/x86/intel_txt.rst
8820 F:      include/linux/tboot.h
8821 F:      arch/x86/kernel/tboot.c
8822
8823 INTERCONNECT API
8824 M:      Georgi Djakov <[email protected]>
8825 L:      [email protected]
8826 S:      Maintained
8827 F:      Documentation/driver-api/interconnect.rst
8828 F:      Documentation/devicetree/bindings/interconnect/
8829 F:      drivers/interconnect/
8830 F:      include/dt-bindings/interconnect/
8831 F:      include/linux/interconnect-provider.h
8832 F:      include/linux/interconnect.h
8833
8834 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8835 M:      Linus Walleij <[email protected]>
8836 L:      [email protected]
8837 S:      Maintained
8838 F:      drivers/iio/gyro/mpu3050*
8839 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8840
8841 IOC3 ETHERNET DRIVER
8842 M:      Ralf Baechle <[email protected]>
8843 L:      [email protected]
8844 S:      Maintained
8845 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8846
8847 IOMAP FILESYSTEM LIBRARY
8848 M:      Christoph Hellwig <[email protected]>
8849 M:      Darrick J. Wong <[email protected]>
8850 M:      [email protected]
8851 M:      [email protected]
8852 L:      [email protected]
8853 L:      [email protected]
8854 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8855 S:      Supported
8856 F:      fs/iomap/
8857 F:      include/linux/iomap.h
8858
8859 IOMMU DRIVERS
8860 M:      Joerg Roedel <[email protected]>
8861 L:      [email protected]
8862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8863 S:      Maintained
8864 F:      Documentation/devicetree/bindings/iommu/
8865 F:      drivers/iommu/
8866 F:      include/linux/iommu.h
8867 F:      include/linux/of_iommu.h
8868 F:      include/linux/iova.h
8869
8870 IO_URING
8871 M:      Jens Axboe <[email protected]>
8872 L:      [email protected]
8873 T:      git git://git.kernel.dk/linux-block
8874 T:      git git://git.kernel.dk/liburing
8875 S:      Maintained
8876 F:      fs/io_uring.c
8877 F:      fs/io-wq.c
8878 F:      fs/io-wq.h
8879 F:      include/uapi/linux/io_uring.h
8880
8881 IPMI SUBSYSTEM
8882 M:      Corey Minyard <[email protected]>
8883 L:      [email protected] (moderated for non-subscribers)
8884 W:      http://openipmi.sourceforge.net/
8885 S:      Supported
8886 F:      Documentation/devicetree/bindings/ipmi/
8887 F:      Documentation/IPMI.txt
8888 F:      drivers/char/ipmi/
8889 F:      include/linux/ipmi*
8890 F:      include/uapi/linux/ipmi*
8891
8892 IPS SCSI RAID DRIVER
8893 M:      Adaptec OEM Raid Solutions <[email protected]>
8894 L:      [email protected]
8895 W:      http://www.adaptec.com/
8896 S:      Maintained
8897 F:      drivers/scsi/ips*
8898
8899 IPVS
8900 M:      Wensong Zhang <[email protected]>
8901 M:      Simon Horman <[email protected]>
8902 M:      Julian Anastasov <[email protected]>
8903 L:      [email protected]
8904 L:      [email protected]
8905 S:      Maintained
8906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8908 F:      Documentation/networking/ipvs-sysctl.txt
8909 F:      include/net/ip_vs.h
8910 F:      include/uapi/linux/ip_vs.h
8911 F:      net/netfilter/ipvs/
8912
8913 IPWIRELESS DRIVER
8914 M:      Jiri Kosina <[email protected]>
8915 M:      David Sterba <[email protected]>
8916 S:      Odd Fixes
8917 F:      drivers/tty/ipwireless/
8918
8919 IPX NETWORK LAYER
8920 L:      [email protected]
8921 S:      Obsolete
8922 F:      include/uapi/linux/ipx.h
8923
8924 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8925 M:      Marc Zyngier <[email protected]>
8926 S:      Maintained
8927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8928 F:      Documentation/IRQ-domain.txt
8929 F:      include/linux/irqdomain.h
8930 F:      kernel/irq/irqdomain.c
8931 F:      kernel/irq/msi.c
8932
8933 IRQ SUBSYSTEM
8934 M:      Thomas Gleixner <[email protected]>
8935 L:      [email protected]
8936 S:      Maintained
8937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8938 F:      kernel/irq/
8939
8940 IRQCHIP DRIVERS
8941 M:      Thomas Gleixner <[email protected]>
8942 M:      Jason Cooper <[email protected]>
8943 M:      Marc Zyngier <[email protected]>
8944 L:      [email protected]
8945 S:      Maintained
8946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8947 F:      Documentation/devicetree/bindings/interrupt-controller/
8948 F:      drivers/irqchip/
8949
8950 ISA
8951 M:      William Breathitt Gray <[email protected]>
8952 S:      Maintained
8953 F:      Documentation/driver-api/isa.rst
8954 F:      drivers/base/isa.c
8955 F:      include/linux/isa.h
8956
8957 ISA RADIO MODULE
8958 M:      Hans Verkuil <[email protected]>
8959 L:      [email protected]
8960 T:      git git://linuxtv.org/media_tree.git
8961 W:      https://linuxtv.org
8962 S:      Maintained
8963 F:      drivers/media/radio/radio-isa*
8964
8965 ISAPNP
8966 M:      Jaroslav Kysela <[email protected]>
8967 S:      Maintained
8968 F:      Documentation/driver-api/isapnp.rst
8969 F:      drivers/pnp/isapnp/
8970 F:      include/linux/isapnp.h
8971
8972 ISCSI
8973 M:      Lee Duncan <[email protected]>
8974 M:      Chris Leech <[email protected]>
8975 L:      [email protected]
8976 L:      [email protected]
8977 W:      www.open-iscsi.com
8978 S:      Maintained
8979 F:      drivers/scsi/*iscsi*
8980 F:      include/scsi/*iscsi*
8981
8982 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8983 M:      Peter Jones <[email protected]>
8984 M:      Konrad Rzeszutek Wilk <[email protected]>
8985 S:      Maintained
8986 F:      drivers/firmware/iscsi_ibft*
8987
8988 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8989 M:      Sagi Grimberg <[email protected]>
8990 M:      Max Gurtovoy <[email protected]>
8991 L:      [email protected]
8992 S:      Supported
8993 W:      http://www.openfabrics.org
8994 W:      www.open-iscsi.org
8995 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8996 F:      drivers/infiniband/ulp/iser/
8997
8998 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
8999 M:      Sagi Grimberg <[email protected]>
9000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9001 L:      [email protected]
9002 L:      [email protected]
9003 S:      Supported
9004 W:      http://www.linux-iscsi.org
9005 F:      drivers/infiniband/ulp/isert
9006
9007 ISDN/mISDN SUBSYSTEM
9008 M:      Karsten Keil <[email protected]>
9009 L:      [email protected] (subscribers-only)
9010 L:      [email protected]
9011 W:      http://www.isdn4linux.de
9012 S:      Maintained
9013 F:      drivers/isdn/mISDN/
9014 F:      drivers/isdn/hardware/
9015 F:      drivers/isdn/Kconfig
9016 F:      drivers/isdn/Makefile
9017
9018 ISDN/CMTP OVER BLUETOOTH
9019 M:      Karsten Keil <[email protected]>
9020 L:      [email protected] (subscribers-only)
9021 L:      [email protected]
9022 W:      http://www.isdn4linux.de
9023 S:      Odd Fixes
9024 F:      Documentation/isdn/
9025 F:      drivers/isdn/capi/
9026 F:      net/bluetooth/cmtp/
9027 F:      include/linux/isdn/
9028 F:      include/uapi/linux/isdn/
9029
9030 IT87 HARDWARE MONITORING DRIVER
9031 M:      Jean Delvare <[email protected]>
9032 L:      [email protected]
9033 S:      Maintained
9034 F:      Documentation/hwmon/it87.rst
9035 F:      drivers/hwmon/it87.c
9036
9037 IT913X MEDIA DRIVER
9038 M:      Antti Palosaari <[email protected]>
9039 L:      [email protected]
9040 W:      https://linuxtv.org
9041 W:      http://palosaari.fi/linux/
9042 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9043 T:      git git://linuxtv.org/anttip/media_tree.git
9044 S:      Maintained
9045 F:      drivers/media/tuners/it913x*
9046
9047 IVTV VIDEO4LINUX DRIVER
9048 M:      Andy Walls <[email protected]>
9049 L:      [email protected]
9050 T:      git git://linuxtv.org/media_tree.git
9051 W:      https://linuxtv.org
9052 S:      Maintained
9053 F:      Documentation/media/v4l-drivers/ivtv*
9054 F:      drivers/media/pci/ivtv/
9055 F:      include/uapi/linux/ivtv*
9056
9057 IX2505V MEDIA DRIVER
9058 M:      Malcolm Priestley <[email protected]>
9059 L:      [email protected]
9060 W:      https://linuxtv.org
9061 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9062 S:      Maintained
9063 F:      drivers/media/dvb-frontends/ix2505v*
9064
9065 JAILHOUSE HYPERVISOR INTERFACE
9066 M:      Jan Kiszka <[email protected]>
9067 L:      [email protected]
9068 S:      Maintained
9069 F:      arch/x86/kernel/jailhouse.c
9070 F:      arch/x86/include/asm/jailhouse_para.h
9071
9072 JC42.4 TEMPERATURE SENSOR DRIVER
9073 M:      Guenter Roeck <[email protected]>
9074 L:      [email protected]
9075 S:      Maintained
9076 F:      drivers/hwmon/jc42.c
9077 F:      Documentation/hwmon/jc42.rst
9078
9079 JFS FILESYSTEM
9080 M:      Dave Kleikamp <[email protected]>
9081 L:      [email protected]
9082 W:      http://jfs.sourceforge.net/
9083 T:      git git://github.com/kleikamp/linux-shaggy.git
9084 S:      Maintained
9085 F:      Documentation/admin-guide/jfs.rst
9086 F:      fs/jfs/
9087
9088 JME NETWORK DRIVER
9089 M:      Guo-Fu Tseng <[email protected]>
9090 L:      [email protected]
9091 S:      Maintained
9092 F:      drivers/net/ethernet/jme.*
9093
9094 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9095 M:      David Woodhouse <[email protected]>
9096 M:      Richard Weinberger <[email protected]>
9097 L:      [email protected]
9098 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9099 T:      git git://git.infradead.org/ubifs-2.6.git
9100 S:      Odd Fixes
9101 F:      fs/jffs2/
9102 F:      include/uapi/linux/jffs2.h
9103
9104 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9105 M:      "Theodore Ts'o" <[email protected]>
9106 M:      Jan Kara <[email protected]>
9107 L:      [email protected]
9108 S:      Maintained
9109 F:      fs/jbd2/
9110 F:      include/linux/jbd2.h
9111
9112 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9113 M:      Mikhail Ulyanov <[email protected]>
9114 L:      [email protected]
9115 S:      Maintained
9116 F:      drivers/media/platform/rcar_jpu.c
9117
9118 JSM Neo PCI based serial card
9119 L:      [email protected]
9120 S:      Orphan
9121 F:      drivers/tty/serial/jsm/
9122
9123 K10TEMP HARDWARE MONITORING DRIVER
9124 M:      Clemens Ladisch <[email protected]>
9125 L:      [email protected]
9126 S:      Maintained
9127 F:      Documentation/hwmon/k10temp.rst
9128 F:      drivers/hwmon/k10temp.c
9129
9130 K8TEMP HARDWARE MONITORING DRIVER
9131 M:      Rudolf Marek <[email protected]>
9132 L:      [email protected]
9133 S:      Maintained
9134 F:      Documentation/hwmon/k8temp.rst
9135 F:      drivers/hwmon/k8temp.c
9136
9137 KASAN
9138 M:      Andrey Ryabinin <[email protected]>
9139 R:      Alexander Potapenko <[email protected]>
9140 R:      Dmitry Vyukov <[email protected]>
9141 L:      [email protected]
9142 S:      Maintained
9143 F:      arch/*/include/asm/kasan.h
9144 F:      arch/*/mm/kasan_init*
9145 F:      Documentation/dev-tools/kasan.rst
9146 F:      include/linux/kasan*.h
9147 F:      lib/test_kasan.c
9148 F:      mm/kasan/
9149 F:      scripts/Makefile.kasan
9150
9151 KCONFIG
9152 M:      Masahiro Yamada <[email protected]>
9153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9154 L:      [email protected]
9155 S:      Maintained
9156 F:      Documentation/kbuild/kconfig*
9157 F:      scripts/kconfig/
9158 F:      scripts/Kconfig.include
9159
9160 KDUMP
9161 M:      Dave Young <[email protected]>
9162 M:      Baoquan He <[email protected]>
9163 R:      Vivek Goyal <[email protected]>
9164 L:      [email protected]
9165 W:      http://lse.sourceforge.net/kdump/
9166 S:      Maintained
9167 F:      Documentation/admin-guide/kdump/
9168
9169 KEENE FM RADIO TRANSMITTER DRIVER
9170 M:      Hans Verkuil <[email protected]>
9171 L:      [email protected]
9172 T:      git git://linuxtv.org/media_tree.git
9173 W:      https://linuxtv.org
9174 S:      Maintained
9175 F:      drivers/media/radio/radio-keene*
9176
9177 KERNEL AUTOMOUNTER
9178 M:      Ian Kent <[email protected]>
9179 L:      [email protected]
9180 S:      Maintained
9181 F:      fs/autofs/
9182
9183 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9184 M:      Masahiro Yamada <[email protected]>
9185 M:      Michal Marek <[email protected]>
9186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9187 L:      [email protected]
9188 S:      Maintained
9189 F:      Documentation/kbuild/
9190 F:      Makefile
9191 F:      scripts/Kbuild*
9192 F:      scripts/Makefile*
9193 F:      scripts/basic/
9194 F:      scripts/mk*
9195 F:      scripts/*vmlinux*
9196 F:      scripts/mod/
9197 F:      scripts/package/
9198
9199 KERNEL JANITORS
9200 L:      [email protected]
9201 W:      http://kernelnewbies.org/KernelJanitors
9202 S:      Odd Fixes
9203
9204 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9205 M:      "J. Bruce Fields" <[email protected]>
9206 M:      Chuck Lever <[email protected]>
9207 L:      [email protected]
9208 W:      http://nfs.sourceforge.net/
9209 T:      git git://linux-nfs.org/~bfields/linux.git
9210 S:      Supported
9211 F:      fs/nfsd/
9212 F:      include/uapi/linux/nfsd/
9213 F:      fs/lockd/
9214 F:      fs/nfs_common/
9215 F:      net/sunrpc/
9216 F:      include/linux/lockd/
9217 F:      include/linux/sunrpc/
9218 F:      include/uapi/linux/sunrpc/
9219
9220 KERNEL SELFTEST FRAMEWORK
9221 M:      Shuah Khan <[email protected]>
9222 M:      Shuah Khan <[email protected]>
9223 L:      [email protected]
9224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9225 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9226 S:      Maintained
9227 F:      tools/testing/selftests/
9228 F:      Documentation/dev-tools/kselftest*
9229
9230 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9231 M:      Brendan Higgins <[email protected]>
9232 L:      [email protected]
9233 L:      [email protected]
9234 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9235 S:      Maintained
9236 F:      Documentation/dev-tools/kunit/
9237 F:      include/kunit/
9238 F:      lib/kunit/
9239 F:      tools/testing/kunit/
9240
9241 KERNEL USERMODE HELPER
9242 M:      Luis Chamberlain <[email protected]>
9243 L:      [email protected]
9244 S:      Maintained
9245 F:      kernel/umh.c
9246 F:      include/linux/umh.h
9247
9248 KERNEL VIRTUAL MACHINE (KVM)
9249 M:      Paolo Bonzini <[email protected]>
9250 L:      [email protected]
9251 W:      http://www.linux-kvm.org
9252 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9253 S:      Supported
9254 F:      Documentation/virt/kvm/
9255 F:      include/trace/events/kvm.h
9256 F:      include/uapi/asm-generic/kvm*
9257 F:      include/uapi/linux/kvm*
9258 F:      include/asm-generic/kvm*
9259 F:      include/linux/kvm*
9260 F:      include/kvm/iodev.h
9261 F:      virt/kvm/*
9262 F:      tools/kvm/
9263 F:      tools/testing/selftests/kvm/
9264
9265 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9266 M:      Marc Zyngier <[email protected]>
9267 R:      James Morse <[email protected]>
9268 R:      Julien Thierry <[email protected]>
9269 R:      Suzuki K Poulose <[email protected]>
9270 L:      [email protected] (moderated for non-subscribers)
9271 L:      [email protected]
9272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9273 S:      Maintained
9274 F:      arch/arm64/include/uapi/asm/kvm*
9275 F:      arch/arm64/include/asm/kvm*
9276 F:      arch/arm64/kvm/
9277 F:      virt/kvm/arm/
9278 F:      include/kvm/arm_*
9279
9280 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9281 L:      [email protected]
9282 L:      [email protected]
9283 S:      Orphan
9284 F:      arch/mips/include/uapi/asm/kvm*
9285 F:      arch/mips/include/asm/kvm*
9286 F:      arch/mips/kvm/
9287
9288 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9289 M:      Paul Mackerras <[email protected]>
9290 L:      [email protected]
9291 W:      http://www.linux-kvm.org/
9292 T:      git git://github.com/agraf/linux-2.6.git
9293 S:      Supported
9294 F:      arch/powerpc/include/uapi/asm/kvm*
9295 F:      arch/powerpc/include/asm/kvm*
9296 F:      arch/powerpc/kvm/
9297 F:      arch/powerpc/kernel/kvm*
9298
9299 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9300 M:      Christian Borntraeger <[email protected]>
9301 M:      Janosch Frank <[email protected]>
9302 R:      David Hildenbrand <[email protected]>
9303 R:      Cornelia Huck <[email protected]>
9304 L:      [email protected]
9305 W:      http://www.ibm.com/developerworks/linux/linux390/
9306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9307 S:      Supported
9308 F:      Documentation/virt/kvm/s390*
9309 F:      arch/s390/include/uapi/asm/kvm*
9310 F:      arch/s390/include/asm/gmap.h
9311 F:      arch/s390/include/asm/kvm*
9312 F:      arch/s390/kvm/
9313 F:      arch/s390/mm/gmap.c
9314 F:      tools/testing/selftests/kvm/s390x/
9315 F:      tools/testing/selftests/kvm/*/s390x/
9316
9317 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9318 M:      Paolo Bonzini <[email protected]>
9319 R:      Sean Christopherson <[email protected]>
9320 R:      Vitaly Kuznetsov <[email protected]>
9321 R:      Wanpeng Li <[email protected]>
9322 R:      Jim Mattson <[email protected]>
9323 R:      Joerg Roedel <[email protected]>
9324 L:      [email protected]
9325 W:      http://www.linux-kvm.org
9326 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9327 S:      Supported
9328 F:      arch/x86/kvm/
9329 F:      arch/x86/kvm/*/
9330 F:      arch/x86/include/uapi/asm/kvm*
9331 F:      arch/x86/include/uapi/asm/vmx.h
9332 F:      arch/x86/include/uapi/asm/svm.h
9333 F:      arch/x86/include/asm/kvm*
9334 F:      arch/x86/include/asm/pvclock-abi.h
9335 F:      arch/x86/include/asm/svm.h
9336 F:      arch/x86/include/asm/vmx*.h
9337 F:      arch/x86/kernel/kvm.c
9338 F:      arch/x86/kernel/kvmclock.c
9339
9340 KERNFS
9341 M:      Greg Kroah-Hartman <[email protected]>
9342 M:      Tejun Heo <[email protected]>
9343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9344 S:      Supported
9345 F:      include/linux/kernfs.h
9346 F:      fs/kernfs/
9347
9348 KEXEC
9349 M:      Eric Biederman <[email protected]>
9350 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9351 L:      [email protected]
9352 S:      Maintained
9353 F:      include/linux/kexec.h
9354 F:      include/uapi/linux/kexec.h
9355 F:      kernel/kexec*
9356
9357 KEYS-ENCRYPTED
9358 M:      Mimi Zohar <[email protected]>
9359 L:      [email protected]
9360 L:      [email protected]
9361 S:      Supported
9362 F:      Documentation/security/keys/trusted-encrypted.rst
9363 F:      include/keys/encrypted-type.h
9364 F:      security/keys/encrypted-keys/
9365
9366 KEYS-TRUSTED
9367 M:      James Bottomley <[email protected]>
9368 M:      Jarkko Sakkinen <[email protected]>
9369 M:      Mimi Zohar <[email protected]>
9370 L:      [email protected]
9371 L:      [email protected]
9372 S:      Supported
9373 F:      Documentation/security/keys/trusted-encrypted.rst
9374 F:      include/keys/trusted-type.h
9375 F:      include/keys/trusted_tpm.h
9376 F:      security/keys/trusted-keys/
9377
9378 KEYS/KEYRINGS
9379 M:      David Howells <[email protected]>
9380 M:      Jarkko Sakkinen <[email protected]>
9381 L:      [email protected]
9382 S:      Maintained
9383 F:      Documentation/security/keys/core.rst
9384 F:      include/linux/key.h
9385 F:      include/linux/key-type.h
9386 F:      include/linux/keyctl.h
9387 F:      include/uapi/linux/keyctl.h
9388 F:      include/keys/
9389 F:      security/keys/
9390
9391 KGDB / KDB /debug_core
9392 M:      Jason Wessel <[email protected]>
9393 M:      Daniel Thompson <[email protected]>
9394 R:      Douglas Anderson <[email protected]>
9395 W:      http://kgdb.wiki.kernel.org/
9396 L:      [email protected]
9397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9398 S:      Maintained
9399 F:      Documentation/dev-tools/kgdb.rst
9400 F:      drivers/misc/kgdbts.c
9401 F:      drivers/tty/serial/kgdboc.c
9402 F:      include/linux/kdb.h
9403 F:      include/linux/kgdb.h
9404 F:      kernel/debug/
9405
9406 KMEMLEAK
9407 M:      Catalin Marinas <[email protected]>
9408 S:      Maintained
9409 F:      Documentation/dev-tools/kmemleak.rst
9410 F:      include/linux/kmemleak.h
9411 F:      mm/kmemleak.c
9412 F:      mm/kmemleak-test.c
9413
9414 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9415 M:      Luis Chamberlain <[email protected]>
9416 L:      [email protected]
9417 S:      Maintained
9418 F:      kernel/kmod.c
9419 F:      include/linux/kmod.h
9420 F:      lib/test_kmod.c
9421 F:      tools/testing/selftests/kmod/
9422
9423 KPROBES
9424 M:      Naveen N. Rao <[email protected]>
9425 M:      Anil S Keshavamurthy <[email protected]>
9426 M:      "David S. Miller" <[email protected]>
9427 M:      Masami Hiramatsu <[email protected]>
9428 S:      Maintained
9429 F:      Documentation/kprobes.txt
9430 F:      include/linux/kprobes.h
9431 F:      include/asm-generic/kprobes.h
9432 F:      kernel/kprobes.c
9433
9434 KS0108 LCD CONTROLLER DRIVER
9435 M:      Miguel Ojeda Sandonis <[email protected]>
9436 S:      Maintained
9437 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9438 F:      drivers/auxdisplay/ks0108.c
9439 F:      include/linux/ks0108.h
9440
9441 L3MDEV
9442 M:      David Ahern <[email protected]>
9443 L:      [email protected]
9444 S:      Maintained
9445 F:      net/l3mdev
9446 F:      include/net/l3mdev.h
9447
9448 L7 BPF FRAMEWORK
9449 M:      John Fastabend <[email protected]>
9450 M:      Daniel Borkmann <[email protected]>
9451 M:      Jakub Sitnicki <[email protected]>
9452 M:      Lorenz Bauer <[email protected]>
9453 L:      [email protected]
9454 L:      [email protected]
9455 S:      Maintained
9456 F:      include/linux/skmsg.h
9457 F:      net/core/skmsg.c
9458 F:      net/core/sock_map.c
9459 F:      net/ipv4/tcp_bpf.c
9460 F:      net/ipv4/udp_bpf.c
9461
9462 LANTIQ / INTEL Ethernet drivers
9463 M:      Hauke Mehrtens <[email protected]>
9464 L:      [email protected]
9465 S:      Maintained
9466 F:      net/dsa/tag_gswip.c
9467 F:      drivers/net/ethernet/lantiq_xrx200.c
9468 F:      drivers/net/dsa/lantiq_pce.h
9469 F:      drivers/net/dsa/lantiq_gswip.c
9470
9471 LANTIQ MIPS ARCHITECTURE
9472 M:      John Crispin <[email protected]>
9473 L:      [email protected]
9474 S:      Maintained
9475 F:      arch/mips/lantiq
9476 F:      drivers/soc/lantiq
9477
9478 LAPB module
9479 L:      [email protected]
9480 S:      Orphan
9481 F:      Documentation/networking/lapb-module.txt
9482 F:      include/*/lapb.h
9483 F:      net/lapb/
9484
9485 LASI 53c700 driver for PARISC
9486 M:      "James E.J. Bottomley" <[email protected]>
9487 L:      [email protected]
9488 S:      Maintained
9489 F:      Documentation/scsi/53c700.rst
9490 F:      drivers/scsi/53c700*
9491
9492 LEAKING_ADDRESSES
9493 M:      Tobin C. Harding <[email protected]>
9494 M:      Tycho Andersen <[email protected]>
9495 L:      [email protected]
9496 S:      Maintained
9497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9498 F:      scripts/leaking_addresses.pl
9499
9500 LED SUBSYSTEM
9501 M:      Jacek Anaszewski <[email protected]>
9502 M:      Pavel Machek <[email protected]>
9503 R:      Dan Murphy <[email protected]>
9504 L:      [email protected]
9505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9507 S:      Maintained
9508 F:      Documentation/devicetree/bindings/leds/
9509 F:      drivers/leds/
9510 F:      include/linux/leds.h
9511
9512 LEGACY EEPROM DRIVER
9513 M:      Jean Delvare <[email protected]>
9514 S:      Maintained
9515 F:      Documentation/misc-devices/eeprom.rst
9516 F:      drivers/misc/eeprom/eeprom.c
9517
9518 LEGO MINDSTORMS EV3
9519 R:      David Lechner <[email protected]>
9520 S:      Maintained
9521 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9522 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9523 F:      drivers/power/supply/lego_ev3_battery.c
9524
9525 LEGO USB Tower driver
9526 M:      Juergen Stuber <[email protected]>
9527 L:      [email protected]
9528 W:      http://legousb.sourceforge.net/
9529 S:      Maintained
9530 F:      drivers/usb/misc/legousbtower.c
9531
9532 LG LAPTOP EXTRAS
9533 M:      Matan Ziv-Av <[email protected]>
9534 L:      [email protected]
9535 S:      Maintained
9536 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9537 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9538 F:      drivers/platform/x86/lg-laptop.c
9539
9540 LG2160 MEDIA DRIVER
9541 M:      Michael Krufky <[email protected]>
9542 L:      [email protected]
9543 W:      https://linuxtv.org
9544 W:      http://github.com/mkrufky
9545 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9546 T:      git git://linuxtv.org/mkrufky/tuners.git
9547 S:      Maintained
9548 F:      drivers/media/dvb-frontends/lg2160.*
9549
9550 LGDT3305 MEDIA DRIVER
9551 M:      Michael Krufky <[email protected]>
9552 L:      [email protected]
9553 W:      https://linuxtv.org
9554 W:      http://github.com/mkrufky
9555 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9556 T:      git git://linuxtv.org/mkrufky/tuners.git
9557 S:      Maintained
9558 F:      drivers/media/dvb-frontends/lgdt3305.*
9559
9560 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9561 M:      Viresh Kumar <[email protected]>
9562 L:      [email protected]
9563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9564 S:      Maintained
9565 F:      include/linux/pata_arasan_cf_data.h
9566 F:      drivers/ata/pata_arasan_cf.c
9567
9568 LIBATA PATA DRIVERS
9569 M:      Bartlomiej Zolnierkiewicz <[email protected]>
9570 M:      Jens Axboe <[email protected]>
9571 L:      [email protected]
9572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9573 S:      Maintained
9574 F:      drivers/ata/pata_*.c
9575 F:      drivers/ata/ata_generic.c
9576
9577 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9578 M:      Linus Walleij <[email protected]>
9579 L:      [email protected]
9580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9581 S:      Maintained
9582 F:      drivers/ata/pata_ftide010.c
9583 F:      drivers/ata/sata_gemini.c
9584 F:      drivers/ata/sata_gemini.h
9585
9586 LIBATA SATA AHCI PLATFORM devices support
9587 M:      Hans de Goede <[email protected]>
9588 M:      Jens Axboe <[email protected]>
9589 L:      [email protected]
9590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9591 S:      Maintained
9592 F:      drivers/ata/ahci_platform.c
9593 F:      drivers/ata/libahci_platform.c
9594 F:      include/linux/ahci_platform.h
9595
9596 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9597 M:      Mikael Pettersson <[email protected]>
9598 L:      [email protected]
9599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9600 S:      Maintained
9601 F:      drivers/ata/sata_promise.*
9602
9603 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9604 M:      Jens Axboe <[email protected]>
9605 L:      [email protected]
9606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9607 S:      Maintained
9608 F:      drivers/ata/
9609 F:      include/linux/ata.h
9610 F:      include/linux/libata.h
9611 F:      Documentation/devicetree/bindings/ata/
9612
9613 LIBLOCKDEP
9614 M:      Sasha Levin <[email protected]>
9615 S:      Maintained
9616 F:      tools/lib/lockdep/
9617
9618 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9619 M:      Dan Williams <[email protected]>
9620 M:      Vishal Verma <[email protected]>
9621 M:      Dave Jiang <[email protected]>
9622 L:      [email protected]
9623 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9624 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9625 S:      Supported
9626 F:      drivers/nvdimm/blk.c
9627 F:      drivers/nvdimm/region_devs.c
9628
9629 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9630 M:      Vishal Verma <[email protected]>
9631 M:      Dan Williams <[email protected]>
9632 M:      Dave Jiang <[email protected]>
9633 L:      [email protected]
9634 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9635 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9636 S:      Supported
9637 F:      drivers/nvdimm/btt*
9638
9639 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9640 M:      Dan Williams <[email protected]>
9641 M:      Vishal Verma <[email protected]>
9642 M:      Dave Jiang <[email protected]>
9643 L:      [email protected]
9644 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9645 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9646 S:      Supported
9647 F:      drivers/nvdimm/pmem*
9648
9649 LIBNVDIMM: DEVICETREE BINDINGS
9650 M:      Oliver O'Halloran <[email protected]>
9651 L:      [email protected]
9652 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9653 S:      Supported
9654 F:      drivers/nvdimm/of_pmem.c
9655 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9656
9657 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9658 M:      Dan Williams <[email protected]>
9659 M:      Vishal Verma <[email protected]>
9660 M:      Dave Jiang <[email protected]>
9661 M:      Ira Weiny <[email protected]>
9662 L:      [email protected]
9663 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9664 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9666 S:      Supported
9667 F:      drivers/nvdimm/*
9668 F:      drivers/acpi/nfit/*
9669 F:      include/linux/nd.h
9670 F:      include/linux/libnvdimm.h
9671 F:      include/uapi/linux/ndctl.h
9672
9673 LICENSES and SPDX stuff
9674 M:      Thomas Gleixner <[email protected]>
9675 M:      Greg Kroah-Hartman <[email protected]>
9676 L:      [email protected]
9677 S:      Maintained
9678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9679 F:      COPYING
9680 F:      Documentation/process/license-rules.rst
9681 F:      LICENSES/
9682 F:      scripts/spdxcheck-test.sh
9683 F:      scripts/spdxcheck.py
9684
9685 LIGHTNVM PLATFORM SUPPORT
9686 M:      Matias Bjorling <[email protected]>
9687 W:      http://github/OpenChannelSSD
9688 L:      [email protected]
9689 S:      Maintained
9690 F:      drivers/lightnvm/
9691 F:      include/linux/lightnvm.h
9692 F:      include/uapi/linux/lightnvm.h
9693
9694 LINUX FOR POWER MACINTOSH
9695 M:      Benjamin Herrenschmidt <[email protected]>
9696 L:      [email protected]
9697 S:      Odd Fixes
9698 F:      arch/powerpc/platforms/powermac/
9699 F:      drivers/macintosh/
9700
9701 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9702 M:      Michael Ellerman <[email protected]>
9703 R:      Benjamin Herrenschmidt <[email protected]>
9704 R:      Paul Mackerras <[email protected]>
9705 W:      https://github.com/linuxppc/wiki/wiki
9706 L:      [email protected]
9707 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9709 S:      Supported
9710 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9711 F:      Documentation/devicetree/bindings/powerpc/
9712 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9713 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9714 F:      Documentation/powerpc/
9715 F:      arch/powerpc/
9716 F:      drivers/char/tpm/tpm_ibmvtpm*
9717 F:      drivers/crypto/nx/
9718 F:      drivers/crypto/vmx/
9719 F:      drivers/i2c/busses/i2c-opal.c
9720 F:      drivers/net/ethernet/ibm/ibmveth.*
9721 F:      drivers/net/ethernet/ibm/ibmvnic.*
9722 F:      drivers/*/*/*pasemi*
9723 F:      drivers/*/*pasemi*
9724 F:      drivers/pci/hotplug/pnv_php.c
9725 F:      drivers/pci/hotplug/rpa*
9726 F:      drivers/rtc/rtc-opal.c
9727 F:      drivers/scsi/ibmvscsi/
9728 F:      drivers/tty/hvc/hvc_opal.c
9729 F:      drivers/watchdog/wdrtas.c
9730 F:      tools/testing/selftests/powerpc
9731 N:      /pmac
9732 N:      powermac
9733 N:      powernv
9734 N:      [^a-z0-9]ps3
9735 N:      pseries
9736
9737 LINUX FOR POWERPC EMBEDDED MPC5XXX
9738 M:      Anatolij Gustschin <[email protected]>
9739 L:      [email protected]
9740 S:      Odd Fixes
9741 F:      arch/powerpc/platforms/512x/
9742 F:      arch/powerpc/platforms/52xx/
9743
9744 LINUX FOR POWERPC EMBEDDED PPC4XX
9745 L:      [email protected]
9746 S:      Orphan
9747 F:      arch/powerpc/platforms/40x/
9748 F:      arch/powerpc/platforms/44x/
9749
9750 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9751 M:      Scott Wood <[email protected]>
9752 L:      [email protected]
9753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9754 S:      Odd fixes
9755 F:      arch/powerpc/platforms/83xx/
9756 F:      arch/powerpc/platforms/85xx/
9757 F:      Documentation/devicetree/bindings/powerpc/fsl/
9758
9759 LINUX FOR POWERPC EMBEDDED PPC8XX
9760 M:      Christophe Leroy <[email protected]>
9761 L:      [email protected]
9762 S:      Maintained
9763 F:      arch/powerpc/platforms/8xx/
9764
9765 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9766 M:      Kees Cook <[email protected]>
9767 S:      Maintained
9768 F:      drivers/misc/lkdtm/*
9769 F:      tools/testing/selftests/lkdtm/*
9770
9771 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9772 M:      Alan Stern <[email protected]>
9773 M:      Andrea Parri <[email protected]>
9774 M:      Will Deacon <[email protected]>
9775 M:      Peter Zijlstra <[email protected]>
9776 M:      Boqun Feng <[email protected]>
9777 M:      Nicholas Piggin <[email protected]>
9778 M:      David Howells <[email protected]>
9779 M:      Jade Alglave <[email protected]>
9780 M:      Luc Maranget <[email protected]>
9781 M:      "Paul E. McKenney" <[email protected]>
9782 R:      Akira Yokosawa <[email protected]>
9783 R:      Daniel Lustig <[email protected]>
9784 L:      [email protected]
9785 L:      [email protected]
9786 S:      Supported
9787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9788 F:      tools/memory-model/
9789 F:      Documentation/atomic_bitops.txt
9790 F:      Documentation/atomic_t.txt
9791 F:      Documentation/core-api/atomic_ops.rst
9792 F:      Documentation/core-api/refcount-vs-atomic.rst
9793 F:      Documentation/memory-barriers.txt
9794
9795 LIS3LV02D ACCELEROMETER DRIVER
9796 M:      Eric Piel <[email protected]>
9797 S:      Maintained
9798 F:      Documentation/misc-devices/lis3lv02d.rst
9799 F:      drivers/misc/lis3lv02d/
9800 F:      drivers/platform/x86/hp_accel.c
9801
9802 LIST KUNIT TEST
9803 M:      David Gow <[email protected]>
9804 L:      [email protected]
9805 L:      [email protected]
9806 S:      Maintained
9807 F:      lib/list-test.c
9808
9809 LIVE PATCHING
9810 M:      Josh Poimboeuf <[email protected]>
9811 M:      Jiri Kosina <[email protected]>
9812 M:      Miroslav Benes <[email protected]>
9813 M:      Petr Mladek <[email protected]>
9814 R:      Joe Lawrence <[email protected]>
9815 S:      Maintained
9816 F:      kernel/livepatch/
9817 F:      include/linux/livepatch.h
9818 F:      arch/x86/include/asm/livepatch.h
9819 F:      arch/x86/kernel/livepatch.c
9820 F:      Documentation/livepatch/
9821 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9822 F:      samples/livepatch/
9823 F:      tools/testing/selftests/livepatch/
9824 L:      [email protected]
9825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9826
9827 LLC (802.2)
9828 L:      [email protected]
9829 S:      Odd fixes
9830 F:      include/linux/llc.h
9831 F:      include/uapi/linux/llc.h
9832 F:      include/net/llc*
9833 F:      net/llc/
9834
9835 LM73 HARDWARE MONITOR DRIVER
9836 M:      Guillaume Ligneul <[email protected]>
9837 L:      [email protected]
9838 S:      Maintained
9839 F:      drivers/hwmon/lm73.c
9840
9841 LM78 HARDWARE MONITOR DRIVER
9842 M:      Jean Delvare <[email protected]>
9843 L:      [email protected]
9844 S:      Maintained
9845 F:      Documentation/hwmon/lm78.rst
9846 F:      drivers/hwmon/lm78.c
9847
9848 LM83 HARDWARE MONITOR DRIVER
9849 M:      Jean Delvare <[email protected]>
9850 L:      [email protected]
9851 S:      Maintained
9852 F:      Documentation/hwmon/lm83.rst
9853 F:      drivers/hwmon/lm83.c
9854
9855 LM90 HARDWARE MONITOR DRIVER
9856 M:      Jean Delvare <[email protected]>
9857 L:      [email protected]
9858 S:      Maintained
9859 F:      Documentation/hwmon/lm90.rst
9860 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9861 F:      drivers/hwmon/lm90.c
9862 F:      include/dt-bindings/thermal/lm90.h
9863
9864 LM95234 HARDWARE MONITOR DRIVER
9865 M:      Guenter Roeck <[email protected]>
9866 L:      [email protected]
9867 S:      Maintained
9868 F:      Documentation/hwmon/lm95234.rst
9869 F:      drivers/hwmon/lm95234.c
9870
9871 LME2510 MEDIA DRIVER
9872 M:      Malcolm Priestley <[email protected]>
9873 L:      [email protected]
9874 W:      https://linuxtv.org
9875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9876 S:      Maintained
9877 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9878
9879 LOADPIN SECURITY MODULE
9880 M:      Kees Cook <[email protected]>
9881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9882 S:      Supported
9883 F:      security/loadpin/
9884 F:      Documentation/admin-guide/LSM/LoadPin.rst
9885
9886 LOCKING PRIMITIVES
9887 M:      Peter Zijlstra <[email protected]>
9888 M:      Ingo Molnar <[email protected]>
9889 M:      Will Deacon <[email protected]>
9890 L:      [email protected]
9891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9892 S:      Maintained
9893 F:      Documentation/locking/
9894 F:      include/linux/lockdep.h
9895 F:      include/linux/spinlock*.h
9896 F:      arch/*/include/asm/spinlock*.h
9897 F:      include/linux/rwlock*.h
9898 F:      include/linux/mutex*.h
9899 F:      include/linux/rwsem*.h
9900 F:      include/linux/seqlock.h
9901 F:      lib/locking*.[ch]
9902 F:      kernel/locking/
9903 X:      kernel/locking/locktorture.c
9904
9905 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9906 M:      "Richard Russon (FlatCap)" <[email protected]>
9907 L:      [email protected]
9908 W:      http://www.linux-ntfs.org/content/view/19/37/
9909 S:      Maintained
9910 F:      Documentation/admin-guide/ldm.rst
9911 F:      block/partitions/ldm.*
9912
9913 LOGITECH HID GAMING KEYBOARDS
9914 M:      Hans de Goede <[email protected]>
9915 L:      [email protected]
9916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9917 S:      Maintained
9918 F:      drivers/hid/hid-lg-g15.c
9919
9920 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9921 M:      Sathya Prakash <[email protected]>
9922 M:      Chaitra P B <[email protected]>
9923 M:      Suganath Prabu Subramani <[email protected]>
9924 L:      [email protected]
9925 L:      [email protected]
9926 W:      http://www.avagotech.com/support/
9927 S:      Supported
9928 F:      drivers/message/fusion/
9929 F:      drivers/scsi/mpt3sas/
9930
9931 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9932 M:      Matthew Wilcox <[email protected]>
9933 L:      [email protected]
9934 S:      Maintained
9935 F:      drivers/scsi/sym53c8xx_2/
9936
9937 LTC1660 DAC DRIVER
9938 M:      Marcus Folkesson <[email protected]>
9939 L:      [email protected]
9940 S:      Maintained
9941 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
9942 F:      drivers/iio/dac/ltc1660.c
9943
9944 LTC2983 IIO TEMPERATURE DRIVER
9945 M:      Nuno Sá <[email protected]>
9946 W:      http://ez.analog.com/community/linux-device-drivers
9947 L:      [email protected]
9948 S:      Supported
9949 F:      drivers/iio/temperature/ltc2983.c
9950 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
9951
9952 LTC4261 HARDWARE MONITOR DRIVER
9953 M:      Guenter Roeck <[email protected]>
9954 L:      [email protected]
9955 S:      Maintained
9956 F:      Documentation/hwmon/ltc4261.rst
9957 F:      drivers/hwmon/ltc4261.c
9958
9959 LTC2947 HARDWARE MONITOR DRIVER
9960 M:      Nuno Sá <[email protected]>
9961 W:      http://ez.analog.com/community/linux-device-drivers
9962 L:      [email protected]
9963 S:      Supported
9964 F:      drivers/hwmon/ltc2947-core.c
9965 F:      drivers/hwmon/ltc2947-spi.c
9966 F:      drivers/hwmon/ltc2947-i2c.c
9967 F:      drivers/hwmon/ltc2947.h
9968 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
9969
9970 LTC4306 I2C MULTIPLEXER DRIVER
9971 M:      Michael Hennerich <[email protected]>
9972 W:      http://ez.analog.com/community/linux-device-drivers
9973 L:      [email protected]
9974 S:      Supported
9975 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9976 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9977
9978 LTP (Linux Test Project)
9979 M:      Mike Frysinger <[email protected]>
9980 M:      Cyril Hrubis <[email protected]>
9981 M:      Wanlong Gao <[email protected]>
9982 M:      Jan Stancek <[email protected]>
9983 M:      Stanislav Kholmanskikh <[email protected]>
9984 M:      Alexey Kodanev <[email protected]>
9985 L:      [email protected] (subscribers-only)
9986 W:      http://linux-test-project.github.io/
9987 T:      git git://github.com/linux-test-project/ltp.git
9988 S:      Maintained
9989
9990 M68K ARCHITECTURE
9991 M:      Geert Uytterhoeven <[email protected]>
9992 L:      [email protected]
9993 W:      http://www.linux-m68k.org/
9994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9995 S:      Maintained
9996 F:      arch/m68k/
9997 F:      drivers/zorro/
9998
9999 M68K ON APPLE MACINTOSH
10000 M:      Joshua Thompson <[email protected]>
10001 W:      http://www.mac.linux-m68k.org/
10002 L:      [email protected]
10003 S:      Maintained
10004 F:      arch/m68k/mac/
10005
10006 M68K ON HP9000/300
10007 M:      Philip Blundell <[email protected]>
10008 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10009 S:      Maintained
10010 F:      arch/m68k/hp300/
10011
10012 M88DS3103 MEDIA DRIVER
10013 M:      Antti Palosaari <[email protected]>
10014 L:      [email protected]
10015 W:      https://linuxtv.org
10016 W:      http://palosaari.fi/linux/
10017 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10018 T:      git git://linuxtv.org/anttip/media_tree.git
10019 S:      Maintained
10020 F:      drivers/media/dvb-frontends/m88ds3103*
10021
10022 M88RS2000 MEDIA DRIVER
10023 M:      Malcolm Priestley <[email protected]>
10024 L:      [email protected]
10025 W:      https://linuxtv.org
10026 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10027 S:      Maintained
10028 F:      drivers/media/dvb-frontends/m88rs2000*
10029
10030 MA901 MASTERKIT USB FM RADIO DRIVER
10031 M:      Alexey Klimov <[email protected]>
10032 L:      [email protected]
10033 T:      git git://linuxtv.org/media_tree.git
10034 S:      Maintained
10035 F:      drivers/media/radio/radio-ma901.c
10036
10037 MAC80211
10038 M:      Johannes Berg <[email protected]>
10039 L:      [email protected]
10040 W:      http://wireless.kernel.org/
10041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10043 S:      Maintained
10044 F:      Documentation/networking/mac80211-injection.txt
10045 F:      include/net/mac80211.h
10046 F:      net/mac80211/
10047 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10048 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10049
10050 MAILBOX API
10051 M:      Jassi Brar <[email protected]>
10052 L:      [email protected]
10053 S:      Maintained
10054 F:      drivers/mailbox/
10055 F:      include/linux/mailbox_client.h
10056 F:      include/linux/mailbox_controller.h
10057
10058 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10059 M:      Michael Kerrisk <[email protected]>
10060 W:      http://www.kernel.org/doc/man-pages
10061 L:      [email protected]
10062 S:      Maintained
10063
10064 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10065 M:      Rahul Bedarkar <[email protected]>
10066 L:      [email protected]
10067 S:      Maintained
10068 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10069
10070 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10071 M:      Andrew Lunn <[email protected]>
10072 M:      Vivien Didelot <[email protected]>
10073 L:      [email protected]
10074 S:      Maintained
10075 F:      drivers/net/dsa/mv88e6xxx/
10076 F:      include/linux/platform_data/mv88e6xxx.h
10077 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10078 F:      Documentation/networking/devlink/mv88e6xxx.rst
10079
10080 MARVELL ARMADA DRM SUPPORT
10081 M:      Russell King <[email protected]>
10082 S:      Maintained
10083 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10084 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10085 F:      drivers/gpu/drm/armada/
10086 F:      include/uapi/drm/armada_drm.h
10087 F:      Documentation/devicetree/bindings/display/armada/
10088
10089 MARVELL ARMADA 3700 PHY DRIVERS
10090 M:      Miquel Raynal <[email protected]>
10091 S:      Maintained
10092 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10093 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10094 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10095 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10096
10097 MARVELL CRYPTO DRIVER
10098 M:      Boris Brezillon <[email protected]>
10099 M:      Arnaud Ebalard <[email protected]>
10100 M:      Srujana Challa <[email protected]>
10101 F:      drivers/crypto/marvell/
10102 S:      Maintained
10103 L:      [email protected]
10104
10105 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10106 M:      Mirko Lindner <[email protected]>
10107 M:      Stephen Hemminger <[email protected]>
10108 L:      [email protected]
10109 S:      Maintained
10110 F:      drivers/net/ethernet/marvell/sk*
10111
10112 MARVELL LIBERTAS WIRELESS DRIVER
10113 L:      [email protected]
10114 S:      Orphan
10115 F:      drivers/net/wireless/marvell/libertas/
10116
10117 MARVELL MACCHIATOBIN SUPPORT
10118 M:      Russell King <[email protected]>
10119 L:      [email protected]
10120 S:      Maintained
10121 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10122
10123 MARVELL MV643XX ETHERNET DRIVER
10124 M:      Sebastian Hesselbarth <[email protected]>
10125 L:      [email protected]
10126 S:      Maintained
10127 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10128 F:      include/linux/mv643xx.h
10129
10130 MARVELL MV88X3310 PHY DRIVER
10131 M:      Russell King <[email protected]>
10132 L:      [email protected]
10133 S:      Maintained
10134 F:      drivers/net/phy/marvell10g.c
10135
10136 MARVELL MVEBU THERMAL DRIVER
10137 M:      Miquel Raynal <[email protected]>
10138 S:      Maintained
10139 F:      drivers/thermal/armada_thermal.c
10140
10141 MARVELL MVNETA ETHERNET DRIVER
10142 M:      Thomas Petazzoni <[email protected]>
10143 L:      [email protected]
10144 S:      Maintained
10145 F:      drivers/net/ethernet/marvell/mvneta.*
10146
10147 MARVELL MWIFIEX WIRELESS DRIVER
10148 M:      Amitkumar Karwar <[email protected]>
10149 M:      Ganapathi Bhat <[email protected]>
10150 M:      Xinming Hu <[email protected]>
10151 L:      [email protected]
10152 S:      Maintained
10153 F:      drivers/net/wireless/marvell/mwifiex/
10154
10155 MARVELL MWL8K WIRELESS DRIVER
10156 M:      Lennert Buytenhek <[email protected]>
10157 L:      [email protected]
10158 S:      Odd Fixes
10159 F:      drivers/net/wireless/marvell/mwl8k.c
10160
10161 MARVELL NAND CONTROLLER DRIVER
10162 M:      Miquel Raynal <[email protected]>
10163 L:      [email protected]
10164 S:      Maintained
10165 F:      drivers/mtd/nand/raw/marvell_nand.c
10166 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10167
10168 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10169 M:      Nicolas Pitre <[email protected]>
10170 S:      Odd Fixes
10171 F:      drivers/mmc/host/mvsdio.*
10172
10173 MARVELL USB MDIO CONTROLLER DRIVER
10174 M:      Tobias Waldekranz <[email protected]>
10175 L:      [email protected]
10176 S:      Maintained
10177 F:      drivers/net/phy/mdio-mvusb.c
10178 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10179
10180 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10181 M:      Hu Ziji <[email protected]>
10182 L:      [email protected]
10183 S:      Supported
10184 F:      drivers/mmc/host/sdhci-xenon*
10185 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10186
10187 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10188 M:      Sunil Goutham <[email protected]>
10189 M:      Linu Cherian <[email protected]>
10190 M:      Geetha sowjanya <[email protected]>
10191 M:      Jerin Jacob <[email protected]>
10192 L:      [email protected]
10193 S:      Supported
10194 F:      drivers/net/ethernet/marvell/octeontx2/af/
10195 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10196
10197 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10198 M:      Sunil Goutham <[email protected]>
10199 M:      Geetha sowjanya <[email protected]>
10200 M:      Subbaraya Sundeep <[email protected]>
10201 M:      hariprasad <[email protected]>
10202 L:      [email protected]
10203 S:      Supported
10204 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10205
10206 MATROX FRAMEBUFFER DRIVER
10207 L:      [email protected]
10208 S:      Orphan
10209 F:      drivers/video/fbdev/matrox/matroxfb_*
10210 F:      include/uapi/linux/matroxfb.h
10211
10212 MAX16065 HARDWARE MONITOR DRIVER
10213 M:      Guenter Roeck <[email protected]>
10214 L:      [email protected]
10215 S:      Maintained
10216 F:      Documentation/hwmon/max16065.rst
10217 F:      drivers/hwmon/max16065.c
10218
10219 MAX2175 SDR TUNER DRIVER
10220 M:      Ramesh Shanmugasundaram <[email protected]>
10221 L:      [email protected]
10222 T:      git git://linuxtv.org/media_tree.git
10223 S:      Maintained
10224 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10225 F:      Documentation/media/v4l-drivers/max2175.rst
10226 F:      drivers/media/i2c/max2175*
10227 F:      include/uapi/linux/max2175.h
10228
10229 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10230 L:      [email protected]
10231 S:      Orphan
10232 F:      Documentation/hwmon/max6650.rst
10233 F:      drivers/hwmon/max6650.c
10234
10235 MAX6697 HARDWARE MONITOR DRIVER
10236 M:      Guenter Roeck <[email protected]>
10237 L:      [email protected]
10238 S:      Maintained
10239 F:      Documentation/hwmon/max6697.rst
10240 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10241 F:      drivers/hwmon/max6697.c
10242 F:      include/linux/platform_data/max6697.h
10243
10244 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10245 M:      Peter Rosin <[email protected]>
10246 L:      [email protected] (moderated for non-subscribers)
10247 S:      Maintained
10248 F:      Documentation/devicetree/bindings/sound/max9860.txt
10249 F:      sound/soc/codecs/max9860.*
10250
10251 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10252 M:      Andreas Klinger <[email protected]>
10253 L:      [email protected]
10254 S:      Maintained
10255 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10256 F:      drivers/iio/proximity/mb1232.c
10257
10258 MAXIM MAX77650 PMIC MFD DRIVER
10259 M:      Bartosz Golaszewski <[email protected]>
10260 L:      [email protected]
10261 S:      Maintained
10262 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10263 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10264 F:      include/linux/mfd/max77650.h
10265 F:      drivers/mfd/max77650.c
10266 F:      drivers/regulator/max77650-regulator.c
10267 F:      drivers/power/supply/max77650-charger.c
10268 F:      drivers/input/misc/max77650-onkey.c
10269 F:      drivers/leds/leds-max77650.c
10270 F:      drivers/gpio/gpio-max77650.c
10271
10272 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10273 M:      Javier Martinez Canillas <[email protected]>
10274 L:      [email protected]
10275 S:      Supported
10276 F:      drivers/regulator/max77802-regulator.c
10277 F:      Documentation/devicetree/bindings/*/*max77802.txt
10278 F:      include/dt-bindings/*/*max77802.h
10279
10280 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10281 M:      Krzysztof Kozlowski <[email protected]>
10282 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10283 L:      [email protected]
10284 S:      Supported
10285 F:      drivers/power/supply/max14577_charger.c
10286 F:      drivers/power/supply/max77693_charger.c
10287
10288 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10289 M:      Chanwoo Choi <[email protected]>
10290 M:      Krzysztof Kozlowski <[email protected]>
10291 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10292 L:      [email protected]
10293 S:      Supported
10294 F:      drivers/*/max14577*.c
10295 F:      drivers/*/max77686*.c
10296 F:      drivers/*/max77693*.c
10297 F:      drivers/extcon/extcon-max14577.c
10298 F:      drivers/extcon/extcon-max77693.c
10299 F:      drivers/rtc/rtc-max77686.c
10300 F:      drivers/clk/clk-max77686.c
10301 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10302 F:      Documentation/devicetree/bindings/*/max77686.txt
10303 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10304 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10305 F:      include/linux/mfd/max14577*.h
10306 F:      include/linux/mfd/max77686*.h
10307 F:      include/linux/mfd/max77693*.h
10308
10309 MAXIRADIO FM RADIO RECEIVER DRIVER
10310 M:      Hans Verkuil <[email protected]>
10311 L:      [email protected]
10312 T:      git git://linuxtv.org/media_tree.git
10313 W:      https://linuxtv.org
10314 S:      Maintained
10315 F:      drivers/media/radio/radio-maxiradio*
10316
10317 MCAN MMIO DEVICE DRIVER
10318 M:      Dan Murphy <[email protected]>
10319 M:      Sriram Dash <[email protected]>
10320 L:      [email protected]
10321 S:      Maintained
10322 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10323 F:      drivers/net/can/m_can/m_can.c
10324 F:      drivers/net/can/m_can/m_can.h
10325 F:      drivers/net/can/m_can/m_can_platform.c
10326
10327 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10328 M:      Rishi Gupta <[email protected]>
10329 L:      [email protected]
10330 L:      [email protected]
10331 S:      Maintained
10332 F:      drivers/hid/hid-mcp2221.c
10333
10334 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10335 M:      Peter Rosin <[email protected]>
10336 L:      [email protected]
10337 S:      Maintained
10338 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10339 F:      drivers/iio/potentiometer/mcp4018.c
10340 F:      drivers/iio/potentiometer/mcp4531.c
10341
10342 MCR20A IEEE-802.15.4 RADIO DRIVER
10343 M:      Xue Liu <[email protected]>
10344 L:      [email protected]
10345 W:      https://github.com/xueliu/mcr20a-linux
10346 S:      Maintained
10347 F:      drivers/net/ieee802154/mcr20a.c
10348 F:      drivers/net/ieee802154/mcr20a.h
10349 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10350
10351 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10352 M:      William Breathitt Gray <[email protected]>
10353 L:      [email protected]
10354 S:      Maintained
10355 F:      drivers/iio/dac/cio-dac.c
10356
10357 MEDIA CONTROLLER FRAMEWORK
10358 M:      Sakari Ailus <[email protected]>
10359 M:      Laurent Pinchart <[email protected]>
10360 L:      [email protected]
10361 W:      https://www.linuxtv.org
10362 T:      git git://linuxtv.org/media_tree.git
10363 S:      Supported
10364 F:      drivers/media/mc/
10365 F:      include/media/media-*.h
10366 F:      include/uapi/linux/media.h
10367
10368 MEDIA DRIVERS FOR ASCOT2E
10369 M:      Sergey Kozlov <[email protected]>
10370 M:      Abylay Ospan <[email protected]>
10371 L:      [email protected]
10372 W:      https://linuxtv.org
10373 W:      http://netup.tv/
10374 T:      git git://linuxtv.org/media_tree.git
10375 S:      Supported
10376 F:      drivers/media/dvb-frontends/ascot2e*
10377
10378 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10379 M:      Jasmin Jessich <[email protected]>
10380 L:      [email protected]
10381 W:      https://linuxtv.org
10382 T:      git git://linuxtv.org/media_tree.git
10383 S:      Maintained
10384 F:      drivers/media/dvb-frontends/cxd2099*
10385
10386 MEDIA DRIVERS FOR CXD2841ER
10387 M:      Sergey Kozlov <[email protected]>
10388 M:      Abylay Ospan <[email protected]>
10389 L:      [email protected]
10390 W:      https://linuxtv.org
10391 W:      http://netup.tv/
10392 T:      git git://linuxtv.org/media_tree.git
10393 S:      Supported
10394 F:      drivers/media/dvb-frontends/cxd2841er*
10395
10396 MEDIA DRIVERS FOR CXD2880
10397 M:      Yasunari Takiguchi <[email protected]>
10398 L:      [email protected]
10399 W:      http://linuxtv.org/
10400 T:      git git://linuxtv.org/media_tree.git
10401 S:      Supported
10402 F:      drivers/media/dvb-frontends/cxd2880/*
10403 F:      drivers/media/spi/cxd2880*
10404
10405 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10406 L:      [email protected]
10407 W:      https://linuxtv.org
10408 T:      git git://linuxtv.org/media_tree.git
10409 S:      Orphan
10410 F:      drivers/media/pci/ddbridge/*
10411
10412 MEDIA DRIVERS FOR FREESCALE IMX
10413 M:      Steve Longerbeam <[email protected]>
10414 M:      Philipp Zabel <[email protected]>
10415 L:      [email protected]
10416 T:      git git://linuxtv.org/media_tree.git
10417 S:      Maintained
10418 F:      Documentation/devicetree/bindings/media/imx.txt
10419 F:      Documentation/media/v4l-drivers/imx.rst
10420 F:      drivers/staging/media/imx/
10421 F:      include/linux/imx-media.h
10422 F:      include/media/imx.h
10423
10424 MEDIA DRIVER FOR FREESCALE IMX PXP
10425 M:      Philipp Zabel <[email protected]>
10426 L:      [email protected]
10427 T:      git git://linuxtv.org/media_tree.git
10428 S:      Maintained
10429 F:      drivers/media/platform/imx-pxp.[ch]
10430
10431 MEDIA DRIVERS FOR FREESCALE IMX7
10432 M:      Rui Miguel Silva <[email protected]>
10433 L:      [email protected]
10434 T:      git git://linuxtv.org/media_tree.git
10435 S:      Maintained
10436 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10437 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10438 F:      Documentation/media/v4l-drivers/imx7.rst
10439 F:      drivers/staging/media/imx/imx7-media-csi.c
10440 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10441
10442 MEDIA DRIVERS FOR HELENE
10443 M:      Abylay Ospan <[email protected]>
10444 L:      [email protected]
10445 W:      https://linuxtv.org
10446 W:      http://netup.tv/
10447 T:      git git://linuxtv.org/media_tree.git
10448 S:      Supported
10449 F:      drivers/media/dvb-frontends/helene*
10450
10451 MEDIA DRIVERS FOR HORUS3A
10452 M:      Sergey Kozlov <[email protected]>
10453 M:      Abylay Ospan <[email protected]>
10454 L:      [email protected]
10455 W:      https://linuxtv.org
10456 W:      http://netup.tv/
10457 T:      git git://linuxtv.org/media_tree.git
10458 S:      Supported
10459 F:      drivers/media/dvb-frontends/horus3a*
10460
10461 MEDIA DRIVERS FOR LNBH25
10462 M:      Sergey Kozlov <[email protected]>
10463 M:      Abylay Ospan <[email protected]>
10464 L:      [email protected]
10465 W:      https://linuxtv.org
10466 W:      http://netup.tv/
10467 T:      git git://linuxtv.org/media_tree.git
10468 S:      Supported
10469 F:      drivers/media/dvb-frontends/lnbh25*
10470
10471 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10472 L:      [email protected]
10473 W:      https://linuxtv.org
10474 T:      git git://linuxtv.org/media_tree.git
10475 S:      Orphan
10476 F:      drivers/media/dvb-frontends/mxl5xx*
10477
10478 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10479 M:      Sergey Kozlov <[email protected]>
10480 M:      Abylay Ospan <[email protected]>
10481 L:      [email protected]
10482 W:      https://linuxtv.org
10483 W:      http://netup.tv/
10484 T:      git git://linuxtv.org/media_tree.git
10485 S:      Supported
10486 F:      drivers/media/pci/netup_unidvb/*
10487
10488 MEDIA DRIVERS FOR RENESAS - CEU
10489 M:      Jacopo Mondi <[email protected]>
10490 L:      [email protected]
10491 L:      [email protected]
10492 T:      git git://linuxtv.org/media_tree.git
10493 S:      Supported
10494 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10495 F:      drivers/media/platform/renesas-ceu.c
10496 F:      include/media/drv-intf/renesas-ceu.h
10497
10498 MEDIA DRIVERS FOR RENESAS - DRIF
10499 M:      Ramesh Shanmugasundaram <[email protected]>
10500 L:      [email protected]
10501 L:      [email protected]
10502 T:      git git://linuxtv.org/media_tree.git
10503 S:      Supported
10504 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10505 F:      drivers/media/platform/rcar_drif.c
10506
10507 MEDIA DRIVERS FOR RENESAS - FCP
10508 M:      Laurent Pinchart <[email protected]>
10509 L:      [email protected]
10510 L:      [email protected]
10511 T:      git git://linuxtv.org/media_tree.git
10512 S:      Supported
10513 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10514 F:      drivers/media/platform/rcar-fcp.c
10515 F:      include/media/rcar-fcp.h
10516
10517 MEDIA DRIVERS FOR RENESAS - FDP1
10518 M:      Kieran Bingham <[email protected]>
10519 L:      [email protected]
10520 L:      [email protected]
10521 T:      git git://linuxtv.org/media_tree.git
10522 S:      Supported
10523 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10524 F:      drivers/media/platform/rcar_fdp1.c
10525
10526 MEDIA DRIVERS FOR RENESAS - VIN
10527 M:      Niklas Söderlund <[email protected]>
10528 L:      [email protected]
10529 L:      [email protected]
10530 T:      git git://linuxtv.org/media_tree.git
10531 S:      Supported
10532 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10533 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10534 F:      drivers/media/platform/rcar-vin/
10535
10536 MEDIA DRIVERS FOR RENESAS - VSP1
10537 M:      Laurent Pinchart <[email protected]>
10538 M:      Kieran Bingham <[email protected]>
10539 L:      [email protected]
10540 L:      [email protected]
10541 T:      git git://linuxtv.org/media_tree.git
10542 S:      Supported
10543 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10544 F:      drivers/media/platform/vsp1/
10545
10546 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10547 L:      [email protected]
10548 W:      https://linuxtv.org
10549 T:      git git://linuxtv.org/media_tree.git
10550 S:      Orphan
10551 F:      drivers/media/dvb-frontends/stv0910*
10552
10553 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10554 L:      [email protected]
10555 W:      https://linuxtv.org
10556 T:      git git://linuxtv.org/media_tree.git
10557 S:      Orphan
10558 F:      drivers/media/dvb-frontends/stv6111*
10559
10560 MEDIA DRIVERS FOR STM32 - DCMI
10561 M:      Hugues Fruchet <[email protected]>
10562 L:      [email protected]
10563 T:      git git://linuxtv.org/media_tree.git
10564 S:      Supported
10565 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10566 F:      drivers/media/platform/stm32/stm32-dcmi.c
10567
10568 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10569 M:      Dmitry Osipenko <[email protected]>
10570 L:      [email protected]
10571 L:      [email protected]
10572 T:      git git://linuxtv.org/media_tree.git
10573 S:      Maintained
10574 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10575 F:      drivers/staging/media/tegra-vde/
10576
10577 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10578 M:      Mauro Carvalho Chehab <[email protected]>
10579 L:      [email protected]
10580 W:      https://linuxtv.org
10581 Q:      http://patchwork.kernel.org/project/linux-media/list/
10582 T:      git git://linuxtv.org/media_tree.git
10583 S:      Maintained
10584 F:      Documentation/devicetree/bindings/media/
10585 F:      Documentation/media/
10586 F:      drivers/media/
10587 F:      drivers/staging/media/
10588 F:      include/linux/platform_data/media/
10589 F:      include/media/
10590 F:      include/uapi/linux/dvb/
10591 F:      include/uapi/linux/videodev2.h
10592 F:      include/uapi/linux/media.h
10593 F:      include/uapi/linux/v4l2-*
10594 F:      include/uapi/linux/meye.h
10595 F:      include/uapi/linux/ivtv*
10596 F:      include/uapi/linux/uvcvideo.h
10597
10598 MEDIATEK BLUETOOTH DRIVER
10599 M:      Sean Wang <[email protected]>
10600 L:      [email protected]
10601 L:      [email protected] (moderated for non-subscribers)
10602 S:      Maintained
10603 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10604 F:      drivers/bluetooth/btmtkuart.c
10605
10606 MEDIATEK CIR DRIVER
10607 M:      Sean Wang <[email protected]>
10608 S:      Maintained
10609 F:      drivers/media/rc/mtk-cir.c
10610
10611 MEDIATEK DMA DRIVER
10612 M:      Sean Wang <[email protected]>
10613 L:      [email protected]
10614 L:      [email protected] (moderated for non-subscribers)
10615 L:      [email protected] (moderated for non-subscribers)
10616 S:      Maintained
10617 F:      Documentation/devicetree/bindings/dma/mtk-*
10618 F:      drivers/dma/mediatek/
10619
10620 MEDIATEK PMIC LED DRIVER
10621 M:      Sean Wang <[email protected]>
10622 S:      Maintained
10623 F:      drivers/leds/leds-mt6323.c
10624 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10625
10626 MEDIATEK ETHERNET DRIVER
10627 M:      Felix Fietkau <[email protected]>
10628 M:      John Crispin <[email protected]>
10629 M:      Sean Wang <[email protected]>
10630 M:      Mark Lee <[email protected]>
10631 L:      [email protected]
10632 S:      Maintained
10633 F:      drivers/net/ethernet/mediatek/
10634
10635 MEDIATEK SWITCH DRIVER
10636 M:      Sean Wang <[email protected]>
10637 L:      [email protected]
10638 S:      Maintained
10639 F:      drivers/net/dsa/mt7530.*
10640 F:      net/dsa/tag_mtk.c
10641
10642 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10643 M:      Sean Wang <[email protected]>
10644 L:      [email protected]
10645 S:      Maintained
10646 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10647 F:      drivers/power/reset/mt6323-poweroff.c
10648
10649 MEDIATEK JPEG DRIVER
10650 M:      Rick Chang <[email protected]>
10651 M:      Bin Liu <[email protected]>
10652 S:      Supported
10653 F:      drivers/media/platform/mtk-jpeg/
10654 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10655
10656 MEDIATEK MDP DRIVER
10657 M:      Minghsiu Tsai <[email protected]>
10658 M:      Houlong Wei <[email protected]>
10659 M:      Andrew-CT Chen <[email protected]>
10660 S:      Supported
10661 F:      drivers/media/platform/mtk-mdp/
10662 F:      drivers/media/platform/mtk-vpu/
10663 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10664
10665 MEDIATEK MEDIA DRIVER
10666 M:      Tiffany Lin <[email protected]>
10667 M:      Andrew-CT Chen <[email protected]>
10668 S:      Supported
10669 F:      drivers/media/platform/mtk-vcodec/
10670 F:      drivers/media/platform/mtk-vpu/
10671 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10672 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10673
10674 MEDIATEK MMC/SD/SDIO DRIVER
10675 M:      Chaotian Jing <[email protected]>
10676 S:      Maintained
10677 F:      drivers/mmc/host/mtk-sd.c
10678 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10679
10680 MEDIATEK MT76 WIRELESS LAN DRIVER
10681 M:      Felix Fietkau <[email protected]>
10682 M:      Lorenzo Bianconi <[email protected]>
10683 R:      Ryder Lee <[email protected]>
10684 R:      Roy Luo <[email protected]>
10685 L:      [email protected]
10686 S:      Maintained
10687 F:      drivers/net/wireless/mediatek/mt76/
10688
10689 MEDIATEK MT7601U WIRELESS LAN DRIVER
10690 M:      Jakub Kicinski <[email protected]>
10691 L:      [email protected]
10692 S:      Maintained
10693 F:      drivers/net/wireless/mediatek/mt7601u/
10694
10695 MEDIATEK MT7621/28/88 I2C DRIVER
10696 M:      Stefan Roese <[email protected]>
10697 L:      [email protected]
10698 S:      Maintained
10699 F:      drivers/i2c/busses/i2c-mt7621.c
10700 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10701
10702 MEDIATEK NAND CONTROLLER DRIVER
10703 M:      Xiaolei Li <[email protected]>
10704 L:      [email protected]
10705 S:      Maintained
10706 F:      drivers/mtd/nand/raw/mtk_*
10707 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10708
10709 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10710 M:      Sean Wang <[email protected]>
10711 S:      Maintained
10712 F:      drivers/char/hw_random/mtk-rng.c
10713
10714 MEDIATEK USB3 DRD IP DRIVER
10715 M:      Chunfeng Yun <[email protected]>
10716 L:      [email protected] (moderated for non-subscribers)
10717 L:      [email protected] (moderated for non-subscribers)
10718 L:      [email protected] (moderated for non-subscribers)
10719 S:      Maintained
10720 F:      drivers/usb/mtu3/
10721
10722 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10723 M:      Peter Senna Tschudin <[email protected]>
10724 M:      Martin Donnelly <[email protected]>
10725 M:      Martyn Welch <[email protected]>
10726 S:      Maintained
10727 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10728 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10729
10730 MEGARAID SCSI/SAS DRIVERS
10731 M:      Kashyap Desai <[email protected]>
10732 M:      Sumit Saxena <[email protected]>
10733 M:      Shivasharan S <[email protected]>
10734 L:      [email protected]
10735 L:      [email protected]
10736 W:      http://www.avagotech.com/support/
10737 S:      Maintained
10738 F:      Documentation/scsi/megaraid.rst
10739 F:      drivers/scsi/megaraid.*
10740 F:      drivers/scsi/megaraid/
10741
10742 MELEXIS MLX90614 DRIVER
10743 M:      Crt Mori <[email protected]>
10744 L:      [email protected]
10745 W:      http://www.melexis.com
10746 S:      Supported
10747 F:      drivers/iio/temperature/mlx90614.c
10748
10749 MELEXIS MLX90632 DRIVER
10750 M:      Crt Mori <[email protected]>
10751 L:      [email protected]
10752 W:      http://www.melexis.com
10753 S:      Supported
10754 F:      drivers/iio/temperature/mlx90632.c
10755
10756 MELFAS MIP4 TOUCHSCREEN DRIVER
10757 M:      Sangwon Jee <[email protected]>
10758 W:      http://www.melfas.com
10759 S:      Supported
10760 F:      drivers/input/touchscreen/melfas_mip4.c
10761 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10762
10763 MELLANOX ETHERNET DRIVER (mlx4_en)
10764 M:      Tariq Toukan <[email protected]>
10765 L:      [email protected]
10766 S:      Supported
10767 W:      http://www.mellanox.com
10768 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10769 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10770
10771 MELLANOX ETHERNET DRIVER (mlx5e)
10772 M:      Saeed Mahameed <[email protected]>
10773 L:      [email protected]
10774 S:      Supported
10775 W:      http://www.mellanox.com
10776 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10777 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10778
10779 MELLANOX ETHERNET INNOVA DRIVERS
10780 R:      Boris Pismenny <[email protected]>
10781 L:      [email protected]
10782 S:      Supported
10783 W:      http://www.mellanox.com
10784 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10785 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10786 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10787 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10788 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10789
10790 MELLANOX ETHERNET SWITCH DRIVERS
10791 M:      Jiri Pirko <[email protected]>
10792 M:      Ido Schimmel <[email protected]>
10793 L:      [email protected]
10794 S:      Supported
10795 W:      http://www.mellanox.com
10796 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10797 F:      drivers/net/ethernet/mellanox/mlxsw/
10798 F:      tools/testing/selftests/drivers/net/mlxsw/
10799
10800 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10801 M:      [email protected]
10802 L:      [email protected]
10803 S:      Supported
10804 W:      http://www.mellanox.com
10805 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10806 F:      drivers/net/ethernet/mellanox/mlxfw/
10807
10808 MELLANOX HARDWARE PLATFORM SUPPORT
10809 M:      Andy Shevchenko <[email protected]>
10810 M:      Darren Hart <[email protected]>
10811 M:      Vadim Pasternak <[email protected]>
10812 L:      [email protected]
10813 S:      Supported
10814 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
10815 F:      drivers/platform/mellanox/
10816 F:      include/linux/platform_data/mlxreg.h
10817
10818 MELLANOX MLX4 core VPI driver
10819 M:      Tariq Toukan <[email protected]>
10820 L:      [email protected]
10821 L:      [email protected]
10822 W:      http://www.mellanox.com
10823 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10824 S:      Supported
10825 F:      drivers/net/ethernet/mellanox/mlx4/
10826 F:      include/linux/mlx4/
10827
10828 MELLANOX MLX4 IB driver
10829 M:      Yishai Hadas <[email protected]>
10830 L:      [email protected]
10831 W:      http://www.mellanox.com
10832 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10833 S:      Supported
10834 F:      drivers/infiniband/hw/mlx4/
10835 F:      include/linux/mlx4/
10836 F:      include/uapi/rdma/mlx4-abi.h
10837
10838 MELLANOX MLX5 core VPI driver
10839 M:      Saeed Mahameed <[email protected]>
10840 M:      Leon Romanovsky <[email protected]>
10841 L:      [email protected]
10842 L:      [email protected]
10843 W:      http://www.mellanox.com
10844 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10845 S:      Supported
10846 F:      drivers/net/ethernet/mellanox/mlx5/core/
10847 F:      include/linux/mlx5/
10848 F:      Documentation/networking/device_drivers/mellanox/
10849
10850 MELLANOX MLX5 IB driver
10851 M:      Leon Romanovsky <[email protected]>
10852 L:      [email protected]
10853 W:      http://www.mellanox.com
10854 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10855 S:      Supported
10856 F:      drivers/infiniband/hw/mlx5/
10857 F:      include/linux/mlx5/
10858 F:      include/uapi/rdma/mlx5-abi.h
10859
10860 MELLANOX MLXCPLD I2C AND MUX DRIVER
10861 M:      Vadim Pasternak <[email protected]>
10862 M:      Michael Shych <[email protected]>
10863 L:      [email protected]
10864 S:      Supported
10865 F:      drivers/i2c/busses/i2c-mlxcpld.c
10866 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10867 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10868
10869 MELLANOX MLXCPLD LED DRIVER
10870 M:      Vadim Pasternak <[email protected]>
10871 L:      [email protected]
10872 S:      Supported
10873 F:      drivers/leds/leds-mlxcpld.c
10874 F:      drivers/leds/leds-mlxreg.c
10875 F:      Documentation/leds/leds-mlxcpld.rst
10876
10877 MELLANOX PLATFORM DRIVER
10878 M:      Vadim Pasternak <[email protected]>
10879 L:      [email protected]
10880 S:      Supported
10881 F:      drivers/platform/x86/mlx-platform.c
10882
10883 MEMBARRIER SUPPORT
10884 M:      Mathieu Desnoyers <[email protected]>
10885 M:      "Paul E. McKenney" <[email protected]>
10886 L:      [email protected]
10887 S:      Supported
10888 F:      kernel/sched/membarrier.c
10889 F:      include/uapi/linux/membarrier.h
10890 F:      arch/powerpc/include/asm/membarrier.h
10891
10892 MEMBLOCK
10893 M:      Mike Rapoport <[email protected]>
10894 L:      [email protected]
10895 S:      Maintained
10896 F:      include/linux/memblock.h
10897 F:      mm/memblock.c
10898 F:      Documentation/core-api/boot-time-mm.rst
10899
10900 MEMORY MANAGEMENT
10901 M:      Andrew Morton <[email protected]>
10902 L:      [email protected]
10903 W:      http://www.linux-mm.org
10904 T:      quilt https://ozlabs.org/~akpm/mmotm/
10905 T:      quilt https://ozlabs.org/~akpm/mmots/
10906 T:      git git://github.com/hnaz/linux-mm.git
10907 S:      Maintained
10908 F:      include/linux/mm.h
10909 F:      include/linux/gfp.h
10910 F:      include/linux/mmzone.h
10911 F:      include/linux/memory_hotplug.h
10912 F:      include/linux/vmalloc.h
10913 F:      mm/
10914
10915 MEMORY TECHNOLOGY DEVICES (MTD)
10916 M:      Miquel Raynal <[email protected]>
10917 M:      Richard Weinberger <[email protected]>
10918 M:      Vignesh Raghavendra <[email protected]>
10919 L:      [email protected]
10920 W:      http://www.linux-mtd.infradead.org/
10921 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10922 C:      irc://irc.oftc.net/mtd
10923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10925 S:      Maintained
10926 F:      Documentation/devicetree/bindings/mtd/
10927 F:      drivers/mtd/
10928 F:      include/linux/mtd/
10929 F:      include/uapi/mtd/
10930
10931 MEN A21 WATCHDOG DRIVER
10932 M:      Johannes Thumshirn <[email protected]>
10933 L:      [email protected]
10934 S:      Maintained
10935 F:      drivers/watchdog/mena21_wdt.c
10936
10937 MEN CHAMELEON BUS (mcb)
10938 M:      Johannes Thumshirn <[email protected]>
10939 S:      Maintained
10940 F:      drivers/mcb/
10941 F:      include/linux/mcb.h
10942 F:      Documentation/driver-api/men-chameleon-bus.rst
10943
10944 MEN F21BMC (Board Management Controller)
10945 M:      Andreas Werner <[email protected]>
10946 S:      Supported
10947 F:      drivers/mfd/menf21bmc.c
10948 F:      drivers/watchdog/menf21bmc_wdt.c
10949 F:      drivers/leds/leds-menf21bmc.c
10950 F:      drivers/hwmon/menf21bmc_hwmon.c
10951 F:      Documentation/hwmon/menf21bmc.rst
10952
10953 MEN Z069 WATCHDOG DRIVER
10954 M:      Johannes Thumshirn <[email protected]>
10955 L:      [email protected]
10956 S:      Maintained
10957 F:      drivers/watchdog/menz69_wdt.c
10958
10959 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10960 M:      Neil Armstrong <[email protected]>
10961 L:      [email protected]
10962 L:      [email protected]
10963 W:      http://linux-meson.com/
10964 S:      Supported
10965 F:      drivers/media/platform/meson/ao-cec.c
10966 F:      drivers/media/platform/meson/ao-cec-g12a.c
10967 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
10968 T:      git git://linuxtv.org/media_tree.git
10969
10970 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10971 M:      Liang Yang <[email protected]>
10972 L:      [email protected]
10973 S:      Maintained
10974 F:      drivers/mtd/nand/raw/meson_*
10975 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10976
10977 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10978 M:      Maxime Jourdan <[email protected]>
10979 L:      [email protected]
10980 L:      [email protected]
10981 S:      Supported
10982 F:      drivers/staging/media/meson/vdec/
10983 T:      git git://linuxtv.org/media_tree.git
10984
10985 METHODE UDPU SUPPORT
10986 M:      Vladimir Vid <[email protected]>
10987 S:      Maintained
10988 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10989
10990 MHI BUS
10991 M:      Manivannan Sadhasivam <[email protected]>
10992 M:      Hemant Kumar <[email protected]>
10993 L:      [email protected]
10994 S:      Maintained
10995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
10996 F:      Documentation/mhi/
10997 F:      drivers/bus/mhi/
10998 F:      include/linux/mhi.h
10999
11000 MICROBLAZE ARCHITECTURE
11001 M:      Michal Simek <[email protected]>
11002 W:      http://www.monstr.eu/fdt/
11003 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11004 S:      Supported
11005 F:      arch/microblaze/
11006
11007 MICROCHIP AT91 SERIAL DRIVER
11008 M:      Richard Genoud <[email protected]>
11009 S:      Maintained
11010 F:      drivers/tty/serial/atmel_serial.c
11011 F:      drivers/tty/serial/atmel_serial.h
11012 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11013
11014 MICROCHIP AUDIO ASOC DRIVERS
11015 M:      Codrin Ciubotariu <[email protected]>
11016 L:      [email protected] (moderated for non-subscribers)
11017 S:      Supported
11018 F:      sound/soc/atmel
11019
11020 MICROCHIP DMA DRIVER
11021 M:      Ludovic Desroches <[email protected]>
11022 L:      [email protected] (moderated for non-subscribers)
11023 L:      [email protected]
11024 S:      Supported
11025 F:      drivers/dma/at_hdmac.c
11026 F:      drivers/dma/at_hdmac_regs.h
11027 F:      include/linux/platform_data/dma-atmel.h
11028 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11029 F:      include/dt-bindings/dma/at91.h
11030
11031 MICROCHIP ECC DRIVER
11032 M:      Tudor Ambarus <[email protected]>
11033 L:      [email protected]
11034 S:      Maintained
11035 F:      drivers/crypto/atmel-ecc.*
11036
11037 MICROCHIP I2C DRIVER
11038 M:      Ludovic Desroches <[email protected]>
11039 L:      [email protected]
11040 S:      Supported
11041 F:      drivers/i2c/busses/i2c-at91.h
11042 F:      drivers/i2c/busses/i2c-at91-*.c
11043
11044 MICROCHIP ISC DRIVER
11045 M:      Eugen Hristev <[email protected]>
11046 L:      [email protected]
11047 S:      Supported
11048 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11049 F:      drivers/media/platform/atmel/atmel-isc.h
11050 F:      drivers/media/platform/atmel/atmel-isc-base.c
11051 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11052 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11053 F:      include/linux/atmel-isc-media.h
11054
11055 MICROCHIP ISI DRIVER
11056 M:      Eugen Hristev <[email protected]>
11057 L:      [email protected]
11058 S:      Supported
11059 F:      drivers/media/platform/atmel/atmel-isi.c
11060 F:      drivers/media/platform/atmel/atmel-isi.h
11061
11062 MICROCHIP AT91 USART MFD DRIVER
11063 M:      Radu Pirea <[email protected]>
11064 L:      [email protected]
11065 S:      Supported
11066 F:      drivers/mfd/at91-usart.c
11067 F:      include/dt-bindings/mfd/at91-usart.h
11068 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11069
11070 MICROCHIP AT91 USART SPI DRIVER
11071 M:      Radu Pirea <[email protected]>
11072 L:      [email protected]
11073 S:      Supported
11074 F:      drivers/spi/spi-at91-usart.c
11075 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11076
11077 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11078 M:      Woojung Huh <[email protected]>
11079 M:      Microchip Linux Driver Support <[email protected]>
11080 L:      [email protected]
11081 S:      Maintained
11082 F:      net/dsa/tag_ksz.c
11083 F:      drivers/net/dsa/microchip/*
11084 F:      include/linux/platform_data/microchip-ksz.h
11085 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11086
11087 MICROCHIP LAN743X ETHERNET DRIVER
11088 M:      Bryan Whitehead <[email protected]>
11089 M:      Microchip Linux Driver Support <[email protected]>
11090 L:      [email protected]
11091 S:      Maintained
11092 F:      drivers/net/ethernet/microchip/lan743x_*
11093
11094 MICROCHIP LCDFB DRIVER
11095 M:      Nicolas Ferre <[email protected]>
11096 L:      [email protected]
11097 S:      Maintained
11098 F:      drivers/video/fbdev/atmel_lcdfb.c
11099 F:      include/video/atmel_lcdc.h
11100
11101 MICROCHIP MMC/SD/SDIO MCI DRIVER
11102 M:      Ludovic Desroches <[email protected]>
11103 S:      Maintained
11104 F:      drivers/mmc/host/atmel-mci.c
11105
11106 MICROCHIP MCP16502 PMIC DRIVER
11107 M:      Andrei Stefanescu <[email protected]>
11108 L:      [email protected] (moderated for non-subscribers)
11109 S:      Maintained
11110 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11111 F:      drivers/regulator/mcp16502.c
11112
11113 MICROCHIP MCP3911 ADC DRIVER
11114 M:      Marcus Folkesson <[email protected]>
11115 M:      Kent Gustavsson <[email protected]>
11116 L:      [email protected]
11117 S:      Supported
11118 F:      drivers/iio/adc/mcp3911.c
11119 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11120
11121 MICROCHIP NAND DRIVER
11122 M:      Tudor Ambarus <[email protected]>
11123 L:      [email protected]
11124 S:      Supported
11125 F:      drivers/mtd/nand/raw/atmel/*
11126 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11127
11128 MICROCHIP PWM DRIVER
11129 M:      Claudiu Beznea <[email protected]>
11130 L:      [email protected] (moderated for non-subscribers)
11131 L:      [email protected]
11132 S:      Supported
11133 F:      drivers/pwm/pwm-atmel.c
11134 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11135
11136 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11137 M:      Ludovic Desroches <[email protected]>
11138 M:      Eugen Hristev <[email protected]>
11139 L:      [email protected]
11140 S:      Supported
11141 F:      drivers/iio/adc/at91-sama5d2_adc.c
11142 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11143 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11144
11145 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11146 M:      Nicolas Ferre <[email protected]>
11147 S:      Supported
11148 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11149
11150 MICROCHIP SPI DRIVER
11151 M:      Nicolas Ferre <[email protected]>
11152 S:      Supported
11153 F:      drivers/spi/spi-atmel.*
11154
11155 MICROCHIP SSC DRIVER
11156 M:      Nicolas Ferre <[email protected]>
11157 L:      [email protected] (moderated for non-subscribers)
11158 S:      Supported
11159 F:      drivers/misc/atmel-ssc.c
11160 F:      include/linux/atmel-ssc.h
11161
11162 MICROCHIP USBA UDC DRIVER
11163 M:      Cristian Birsan <[email protected]>
11164 L:      [email protected] (moderated for non-subscribers)
11165 S:      Supported
11166 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11167
11168 MICROCHIP USB251XB DRIVER
11169 M:      Richard Leitner <[email protected]>
11170 L:      [email protected]
11171 S:      Maintained
11172 F:      drivers/usb/misc/usb251xb.c
11173 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11174
11175 MICROCHIP XDMA DRIVER
11176 M:      Ludovic Desroches <[email protected]>
11177 L:      [email protected]
11178 L:      [email protected]
11179 S:      Supported
11180 F:      drivers/dma/at_xdmac.c
11181
11182 MICROSEMI MIPS SOCS
11183 M:      Alexandre Belloni <[email protected]>
11184 M:      Microchip Linux Driver Support <[email protected]>
11185 L:      [email protected]
11186 S:      Supported
11187 F:      arch/mips/generic/board-ocelot.c
11188 F:      arch/mips/configs/generic/board-ocelot.config
11189 F:      arch/mips/boot/dts/mscc/
11190 F:      Documentation/devicetree/bindings/mips/mscc.txt
11191
11192 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11193 M:      Don Brace <[email protected]>
11194 L:      [email protected]
11195 L:      [email protected]
11196 S:      Supported
11197 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11198 F:      drivers/scsi/smartpqi/Kconfig
11199 F:      drivers/scsi/smartpqi/Makefile
11200 F:      include/linux/cciss*.h
11201 F:      include/uapi/linux/cciss*.h
11202 F:      Documentation/scsi/smartpqi.rst
11203
11204 MICROSEMI ETHERNET SWITCH DRIVER
11205 M:      Alexandre Belloni <[email protected]>
11206 M:      Microchip Linux Driver Support <[email protected]>
11207 L:      [email protected]
11208 S:      Supported
11209 F:      drivers/net/ethernet/mscc/
11210 F:      include/soc/mscc/ocelot*
11211
11212 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11213 M:      Chen Yu <[email protected]>
11214 L:      [email protected]
11215 S:      Supported
11216 F:      drivers/platform/x86/surfacepro3_button.c
11217
11218 MICROTEK X6 SCANNER
11219 M:      Oliver Neukum <[email protected]>
11220 S:      Maintained
11221 F:      drivers/usb/image/microtek.*
11222
11223 MIPS
11224 M:      Thomas Bogendoerfer <[email protected]>
11225 L:      [email protected]
11226 W:      http://www.linux-mips.org/
11227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11228 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11229 S:      Maintained
11230 F:      Documentation/devicetree/bindings/mips/
11231 F:      Documentation/mips/
11232 F:      arch/mips/
11233 F:      drivers/platform/mips/
11234
11235 MIPS BOSTON DEVELOPMENT BOARD
11236 M:      Paul Burton <[email protected]>
11237 L:      [email protected]
11238 S:      Maintained
11239 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11240 F:      arch/mips/boot/dts/img/boston.dts
11241 F:      arch/mips/configs/generic/board-boston.config
11242 F:      drivers/clk/imgtec/clk-boston.c
11243 F:      include/dt-bindings/clock/boston-clock.h
11244
11245 MIPS GENERIC PLATFORM
11246 M:      Paul Burton <[email protected]>
11247 L:      [email protected]
11248 S:      Supported
11249 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11250 F:      arch/mips/generic/
11251 F:      arch/mips/tools/generic-board-config.sh
11252
11253 MIPS/LOONGSON1 ARCHITECTURE
11254 M:      Keguang Zhang <[email protected]>
11255 L:      [email protected]
11256 S:      Maintained
11257 F:      arch/mips/loongson32/
11258 F:      arch/mips/include/asm/mach-loongson32/
11259 F:      drivers/*/*loongson1*
11260 F:      drivers/*/*/*loongson1*
11261
11262 MIPS/LOONGSON2EF ARCHITECTURE
11263 M:      Jiaxun Yang <[email protected]>
11264 L:      [email protected]
11265 S:      Maintained
11266 F:      arch/mips/loongson2ef/
11267 F:      arch/mips/include/asm/mach-loongson2ef/
11268 F:      drivers/*/*loongson2*
11269 F:      drivers/*/*/*loongson2*
11270
11271 MIPS/LOONGSON64 ARCHITECTURE
11272 M:      Huacai Chen <[email protected]>
11273 M:      Jiaxun Yang <[email protected]>
11274 L:      [email protected]
11275 S:      Maintained
11276 F:      arch/mips/loongson64/
11277 F:      arch/mips/include/asm/mach-loongson64/
11278 F:      drivers/platform/mips/cpu_hwmon.c
11279 F:      drivers/irqchip/irq-loongson*
11280 F:      drivers/*/*loongson3*
11281 F:      drivers/*/*/*loongson3*
11282
11283 MIPS RINT INSTRUCTION EMULATION
11284 M:      Aleksandar Markovic <[email protected]>
11285 L:      [email protected]
11286 S:      Supported
11287 F:      arch/mips/math-emu/sp_rint.c
11288 F:      arch/mips/math-emu/dp_rint.c
11289
11290 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11291 M:      Hans Verkuil <[email protected]>
11292 L:      [email protected]
11293 T:      git git://linuxtv.org/media_tree.git
11294 W:      https://linuxtv.org
11295 S:      Odd Fixes
11296 F:      drivers/media/radio/radio-miropcm20*
11297
11298 MMP SUPPORT
11299 R:      Lubomir Rintel <[email protected]>
11300 L:      [email protected] (moderated for non-subscribers)
11301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11302 S:      Odd Fixes
11303 F:      arch/arm/boot/dts/mmp*
11304 F:      arch/arm/mach-mmp/
11305 F:      linux/soc/mmp/
11306
11307 MMP USB PHY DRIVERS
11308 R:      Lubomir Rintel <[email protected]>
11309 L:      [email protected] (moderated for non-subscribers)
11310 S:      Maintained
11311 F:      drivers/phy/marvell/phy-mmp3-usb.c
11312 F:      drivers/phy/marvell/phy-pxa-usb.c
11313
11314 MMU GATHER AND TLB INVALIDATION
11315 M:      Will Deacon <[email protected]>
11316 M:      "Aneesh Kumar K.V" <[email protected]>
11317 M:      Andrew Morton <[email protected]>
11318 M:      Nick Piggin <[email protected]>
11319 M:      Peter Zijlstra <[email protected]>
11320 L:      [email protected]
11321 L:      [email protected]
11322 S:      Maintained
11323 F:      arch/*/include/asm/tlb.h
11324 F:      include/asm-generic/tlb.h
11325 F:      mm/mmu_gather.c
11326
11327 MN88472 MEDIA DRIVER
11328 M:      Antti Palosaari <[email protected]>
11329 L:      [email protected]
11330 W:      https://linuxtv.org
11331 W:      http://palosaari.fi/linux/
11332 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11333 S:      Maintained
11334 F:      drivers/media/dvb-frontends/mn88472*
11335
11336 MN88473 MEDIA DRIVER
11337 M:      Antti Palosaari <[email protected]>
11338 L:      [email protected]
11339 W:      https://linuxtv.org
11340 W:      http://palosaari.fi/linux/
11341 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11342 S:      Maintained
11343 F:      drivers/media/dvb-frontends/mn88473*
11344
11345 MODULE SUPPORT
11346 M:      Jessica Yu <[email protected]>
11347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11348 S:      Maintained
11349 F:      include/linux/module.h
11350 F:      kernel/module.c
11351
11352 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11353 W:      http://popies.net/meye/
11354 S:      Orphan
11355 F:      Documentation/media/v4l-drivers/meye*
11356 F:      drivers/media/pci/meye/
11357 F:      include/uapi/linux/meye.h
11358
11359 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11360 M:      Jiri Slaby <[email protected]>
11361 S:      Maintained
11362 F:      Documentation/driver-api/serial/moxa-smartio.rst
11363 F:      drivers/tty/mxser.*
11364
11365 MONOLITHIC POWER SYSTEM PMIC DRIVER
11366 M:      Saravanan Sekar <[email protected]>
11367 S:      Maintained
11368 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11369 F:      drivers/regulator/mp5416.c
11370 F:      drivers/regulator/mpq7920.c
11371 F:      drivers/regulator/mpq7920.h
11372
11373 MR800 AVERMEDIA USB FM RADIO DRIVER
11374 M:      Alexey Klimov <[email protected]>
11375 L:      [email protected]
11376 T:      git git://linuxtv.org/media_tree.git
11377 S:      Maintained
11378 F:      drivers/media/radio/radio-mr800.c
11379
11380 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11381 M:      Alan Ott <[email protected]>
11382 L:      [email protected]
11383 S:      Maintained
11384 F:      drivers/net/ieee802154/mrf24j40.c
11385 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11386
11387 MSI LAPTOP SUPPORT
11388 M:      "Lee, Chun-Yi" <[email protected]>
11389 L:      [email protected]
11390 S:      Maintained
11391 F:      drivers/platform/x86/msi-laptop.c
11392
11393 MSI WMI SUPPORT
11394 L:      [email protected]
11395 S:      Orphan
11396 F:      drivers/platform/x86/msi-wmi.c
11397
11398 MSI001 MEDIA DRIVER
11399 M:      Antti Palosaari <[email protected]>
11400 L:      [email protected]
11401 W:      https://linuxtv.org
11402 W:      http://palosaari.fi/linux/
11403 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11404 T:      git git://linuxtv.org/anttip/media_tree.git
11405 S:      Maintained
11406 F:      drivers/media/tuners/msi001*
11407
11408 MSI2500 MEDIA DRIVER
11409 M:      Antti Palosaari <[email protected]>
11410 L:      [email protected]
11411 W:      https://linuxtv.org
11412 W:      http://palosaari.fi/linux/
11413 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11414 T:      git git://linuxtv.org/anttip/media_tree.git
11415 S:      Maintained
11416 F:      drivers/media/usb/msi2500/
11417
11418 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11419 M:      Robert Jarzmik <[email protected]>
11420 L:      [email protected]
11421 S:      Maintained
11422 F:      drivers/mtd/devices/docg3*
11423
11424 MT9M032 APTINA SENSOR DRIVER
11425 M:      Laurent Pinchart <[email protected]>
11426 L:      [email protected]
11427 T:      git git://linuxtv.org/media_tree.git
11428 S:      Maintained
11429 F:      drivers/media/i2c/mt9m032.c
11430 F:      include/media/i2c/mt9m032.h
11431
11432 MT9P031 APTINA CAMERA SENSOR
11433 M:      Laurent Pinchart <[email protected]>
11434 L:      [email protected]
11435 T:      git git://linuxtv.org/media_tree.git
11436 S:      Maintained
11437 F:      drivers/media/i2c/mt9p031.c
11438 F:      include/media/i2c/mt9p031.h
11439
11440 MT9T001 APTINA CAMERA SENSOR
11441 M:      Laurent Pinchart <[email protected]>
11442 L:      [email protected]
11443 T:      git git://linuxtv.org/media_tree.git
11444 S:      Maintained
11445 F:      drivers/media/i2c/mt9t001.c
11446 F:      include/media/i2c/mt9t001.h
11447
11448 MT9T112 APTINA CAMERA SENSOR
11449 M:      Jacopo Mondi <[email protected]>
11450 L:      [email protected]
11451 T:      git git://linuxtv.org/media_tree.git
11452 S:      Odd Fixes
11453 F:      drivers/media/i2c/mt9t112.c
11454 F:      include/media/i2c/mt9t112.h
11455
11456 MT9V032 APTINA CAMERA SENSOR
11457 M:      Laurent Pinchart <[email protected]>
11458 L:      [email protected]
11459 T:      git git://linuxtv.org/media_tree.git
11460 S:      Maintained
11461 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11462 F:      drivers/media/i2c/mt9v032.c
11463 F:      include/media/i2c/mt9v032.h
11464
11465 MT9V111 APTINA CAMERA SENSOR
11466 M:      Jacopo Mondi <[email protected]>
11467 L:      [email protected]
11468 T:      git git://linuxtv.org/media_tree.git
11469 S:      Maintained
11470 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11471 F:      drivers/media/i2c/mt9v111.c
11472
11473 MULTIFUNCTION DEVICES (MFD)
11474 M:      Lee Jones <[email protected]>
11475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11476 S:      Supported
11477 F:      Documentation/devicetree/bindings/mfd/
11478 F:      drivers/mfd/
11479 F:      include/linux/mfd/
11480 F:      include/dt-bindings/mfd/
11481
11482 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11483 S:      Orphan
11484 F:      drivers/mmc/host/mmc_spi.c
11485 F:      include/linux/spi/mmc_spi.h
11486
11487 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11488 M:      Ulf Hansson <[email protected]>
11489 L:      [email protected]
11490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11491 S:      Maintained
11492 F:      Documentation/devicetree/bindings/mmc/
11493 F:      drivers/mmc/
11494 F:      include/linux/mmc/
11495 F:      include/uapi/linux/mmc/
11496
11497 MULTIPLEXER SUBSYSTEM
11498 M:      Peter Rosin <[email protected]>
11499 S:      Maintained
11500 F:      Documentation/ABI/testing/sysfs-class-mux*
11501 F:      Documentation/devicetree/bindings/mux/
11502 F:      include/dt-bindings/mux/
11503 F:      include/linux/mux/
11504 F:      drivers/mux/
11505
11506 MULTITECH MULTIPORT CARD (ISICOM)
11507 S:      Orphan
11508 F:      drivers/tty/isicom.c
11509 F:      include/linux/isicom.h
11510
11511 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11512 M:      Bin Liu <[email protected]>
11513 L:      [email protected]
11514 S:      Maintained
11515 F:      drivers/usb/musb/
11516
11517 MXL301RF MEDIA DRIVER
11518 M:      Akihiro Tsukada <[email protected]>
11519 L:      [email protected]
11520 S:      Odd Fixes
11521 F:      drivers/media/tuners/mxl301rf*
11522
11523 MXL5007T MEDIA DRIVER
11524 M:      Michael Krufky <[email protected]>
11525 L:      [email protected]
11526 W:      https://linuxtv.org
11527 W:      http://github.com/mkrufky
11528 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11529 T:      git git://linuxtv.org/mkrufky/tuners.git
11530 S:      Maintained
11531 F:      drivers/media/tuners/mxl5007t.*
11532
11533 MXSFB DRM DRIVER
11534 M:      Marek Vasut <[email protected]>
11535 M:      Stefan Agner <[email protected]>
11536 L:      [email protected]
11537 S:      Supported
11538 F:      drivers/gpu/drm/mxsfb/
11539 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11540 T:      git git://anongit.freedesktop.org/drm/drm-misc
11541
11542 MYLEX DAC960 PCI RAID Controller
11543 M:      Hannes Reinecke <[email protected]>
11544 L:      [email protected]
11545 S:      Supported
11546 F:      drivers/scsi/myrb.*
11547 F:      drivers/scsi/myrs.*
11548
11549 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11550 M:      Chris Lee <[email protected]>
11551 L:      [email protected]
11552 W:      https://www.cspi.com/ethernet-products/support/downloads/
11553 S:      Supported
11554 F:      drivers/net/ethernet/myricom/myri10ge/
11555
11556 NAND FLASH SUBSYSTEM
11557 M:      Miquel Raynal <[email protected]>
11558 R:      Richard Weinberger <[email protected]>
11559 L:      [email protected]
11560 W:      http://www.linux-mtd.infradead.org/
11561 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11563 C:      irc://irc.oftc.net/mtd
11564 S:      Maintained
11565 F:      drivers/mtd/nand/
11566 F:      include/linux/mtd/*nand*.h
11567
11568 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11569 M:      Daniel Mack <[email protected]>
11570 S:      Maintained
11571 L:      [email protected] (moderated for non-subscribers)
11572 W:      http://www.native-instruments.com
11573 F:      sound/usb/caiaq/
11574
11575 NATSEMI ETHERNET DRIVER (DP8381x)
11576 S:      Orphan
11577 F:      drivers/net/ethernet/natsemi/natsemi.c
11578
11579 NCR 5380 SCSI DRIVERS
11580 M:      Finn Thain <[email protected]>
11581 M:      Michael Schmitz <[email protected]>
11582 L:      [email protected]
11583 S:      Maintained
11584 F:      Documentation/scsi/g_NCR5380.rst
11585 F:      drivers/scsi/NCR5380.*
11586 F:      drivers/scsi/arm/cumana_1.c
11587 F:      drivers/scsi/arm/oak.c
11588 F:      drivers/scsi/atari_scsi.*
11589 F:      drivers/scsi/dmx3191d.c
11590 F:      drivers/scsi/g_NCR5380.*
11591 F:      drivers/scsi/mac_scsi.*
11592 F:      drivers/scsi/sun3_scsi.*
11593 F:      drivers/scsi/sun3_scsi_vme.c
11594
11595 NCSI LIBRARY
11596 M:      Samuel Mendoza-Jonas <[email protected]>
11597 S:      Maintained
11598 F:      net/ncsi/
11599
11600 NCT6775 HARDWARE MONITOR DRIVER
11601 M:      Guenter Roeck <[email protected]>
11602 L:      [email protected]
11603 S:      Maintained
11604 F:      Documentation/hwmon/nct6775.rst
11605 F:      drivers/hwmon/nct6775.c
11606
11607 NET_FAILOVER MODULE
11608 M:      Sridhar Samudrala <[email protected]>
11609 L:      [email protected]
11610 S:      Supported
11611 F:      drivers/net/net_failover.c
11612 F:      include/net/net_failover.h
11613 F:      Documentation/networking/net_failover.rst
11614
11615 NETEM NETWORK EMULATOR
11616 M:      Stephen Hemminger <[email protected]>
11617 L:      [email protected]
11618 S:      Maintained
11619 F:      net/sched/sch_netem.c
11620
11621 NETERION 10GbE DRIVERS (s2io/vxge)
11622 M:      Jon Mason <[email protected]>
11623 L:      [email protected]
11624 S:      Supported
11625 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11626 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11627 F:      drivers/net/ethernet/neterion/
11628
11629 NETFILTER
11630 M:      Pablo Neira Ayuso <[email protected]>
11631 M:      Jozsef Kadlecsik <[email protected]>
11632 M:      Florian Westphal <[email protected]>
11633 L:      [email protected]
11634 L:      [email protected]
11635 W:      http://www.netfilter.org/
11636 W:      http://www.iptables.org/
11637 W:      http://www.nftables.org/
11638 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11641 S:      Maintained
11642 F:      include/linux/netfilter*
11643 F:      include/linux/netfilter/
11644 F:      include/net/netfilter/
11645 F:      include/uapi/linux/netfilter*
11646 F:      include/uapi/linux/netfilter/
11647 F:      net/*/netfilter.c
11648 F:      net/*/netfilter/
11649 F:      net/netfilter/
11650 F:      net/bridge/br_netfilter*.c
11651
11652 NETROM NETWORK LAYER
11653 M:      Ralf Baechle <[email protected]>
11654 L:      [email protected]
11655 W:      http://www.linux-ax25.org/
11656 S:      Maintained
11657 F:      include/net/netrom.h
11658 F:      include/uapi/linux/netrom.h
11659 F:      net/netrom/
11660
11661 NETRONOME ETHERNET DRIVERS
11662 M:      Jakub Kicinski <[email protected]>
11663 L:      [email protected]
11664 S:      Maintained
11665 F:      drivers/net/ethernet/netronome/
11666
11667 NETWORK BLOCK DEVICE (NBD)
11668 M:      Josef Bacik <[email protected]>
11669 S:      Maintained
11670 L:      [email protected]
11671 L:      [email protected]
11672 F:      Documentation/admin-guide/blockdev/nbd.rst
11673 F:      drivers/block/nbd.c
11674 F:      include/trace/events/nbd.h
11675 F:      include/uapi/linux/nbd.h
11676
11677 NETWORK DROP MONITOR
11678 M:      Neil Horman <[email protected]>
11679 L:      [email protected]
11680 S:      Maintained
11681 W:      https://fedorahosted.org/dropwatch/
11682 F:      net/core/drop_monitor.c
11683 F:      include/uapi/linux/net_dropmon.h
11684 F:      include/net/drop_monitor.h
11685
11686 NETWORKING DRIVERS
11687 M:      "David S. Miller" <[email protected]>
11688 L:      [email protected]
11689 W:      http://www.linuxfoundation.org/en/Net
11690 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11693 S:      Odd Fixes
11694 F:      Documentation/devicetree/bindings/net/
11695 F:      drivers/net/
11696 F:      include/linux/if_*
11697 F:      include/linux/netdevice.h
11698 F:      include/linux/etherdevice.h
11699 F:      include/linux/fcdevice.h
11700 F:      include/linux/fddidevice.h
11701 F:      include/linux/hippidevice.h
11702 F:      include/linux/inetdevice.h
11703 F:      include/uapi/linux/if_*
11704 F:      include/uapi/linux/netdevice.h
11705
11706 NETWORKING DRIVERS (WIRELESS)
11707 M:      Kalle Valo <[email protected]>
11708 L:      [email protected]
11709 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11712 S:      Maintained
11713 F:      Documentation/devicetree/bindings/net/wireless/
11714 F:      drivers/net/wireless/
11715
11716 NETWORKING [DSA]
11717 M:      Andrew Lunn <[email protected]>
11718 M:      Vivien Didelot <[email protected]>
11719 M:      Florian Fainelli <[email protected]>
11720 S:      Maintained
11721 F:      Documentation/devicetree/bindings/net/dsa/
11722 F:      net/dsa/
11723 F:      include/net/dsa.h
11724 F:      include/linux/dsa/
11725 F:      include/linux/platform_data/dsa.h
11726 F:      drivers/net/dsa/
11727
11728 NETWORKING [GENERAL]
11729 M:      "David S. Miller" <[email protected]>
11730 M:      Jakub Kicinski <[email protected]>
11731 L:      [email protected]
11732 W:      http://www.linuxfoundation.org/en/Net
11733 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11736 B:      mailto:[email protected]
11737 S:      Maintained
11738 F:      net/
11739 F:      include/net/
11740 F:      include/linux/in.h
11741 F:      include/linux/net.h
11742 F:      include/linux/netdevice.h
11743 F:      include/uapi/linux/in.h
11744 F:      include/uapi/linux/net.h
11745 F:      include/uapi/linux/netdevice.h
11746 F:      include/uapi/linux/net_namespace.h
11747 F:      tools/testing/selftests/net/
11748 F:      lib/net_utils.c
11749 F:      lib/random32.c
11750 F:      Documentation/networking/
11751
11752 NETWORKING [IPSEC]
11753 M:      Steffen Klassert <[email protected]>
11754 M:      Herbert Xu <[email protected]>
11755 M:      "David S. Miller" <[email protected]>
11756 L:      [email protected]
11757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11759 S:      Maintained
11760 F:      net/xfrm/
11761 F:      net/key/
11762 F:      net/ipv4/xfrm*
11763 F:      net/ipv4/esp4*
11764 F:      net/ipv4/ah4.c
11765 F:      net/ipv4/ipcomp.c
11766 F:      net/ipv4/ip_vti.c
11767 F:      net/ipv6/xfrm*
11768 F:      net/ipv6/esp6*
11769 F:      net/ipv6/ah6.c
11770 F:      net/ipv6/ipcomp6.c
11771 F:      net/ipv6/ip6_vti.c
11772 F:      include/uapi/linux/xfrm.h
11773 F:      include/net/xfrm.h
11774
11775 NETWORKING [IPv4/IPv6]
11776 M:      "David S. Miller" <[email protected]>
11777 M:      Alexey Kuznetsov <[email protected]>
11778 M:      Hideaki YOSHIFUJI <[email protected]>
11779 L:      [email protected]
11780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11781 S:      Maintained
11782 F:      net/ipv4/
11783 F:      net/ipv6/
11784 F:      include/net/ip*
11785 F:      arch/x86/net/*
11786
11787 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11788 M:      Paul Moore <[email protected]>
11789 W:      https://github.com/netlabel
11790 L:      [email protected]
11791 L:      [email protected]
11792 S:      Maintained
11793 F:      Documentation/netlabel/
11794 F:      include/net/calipso.h
11795 F:      include/net/cipso_ipv4.h
11796 F:      include/net/netlabel.h
11797 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11798 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11799 F:      net/netlabel/
11800 F:      net/ipv4/cipso_ipv4.c
11801 F:      net/ipv6/calipso.c
11802 F:      net/netfilter/xt_CONNSECMARK.c
11803 F:      net/netfilter/xt_SECMARK.c
11804
11805 NETWORKING [MPTCP]
11806 M:      Mat Martineau <[email protected]>
11807 M:      Matthieu Baerts <[email protected]>
11808 L:      [email protected]
11809 L:      [email protected]
11810 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
11811 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
11812 S:      Maintained
11813 F:      include/net/mptcp.h
11814 F:      include/uapi/linux/mptcp.h
11815 F:      net/mptcp/
11816 F:      tools/testing/selftests/net/mptcp/
11817
11818 NETWORKING [TCP]
11819 M:      Eric Dumazet <[email protected]>
11820 L:      [email protected]
11821 S:      Maintained
11822 F:      net/ipv4/tcp*.c
11823 F:      net/ipv4/syncookies.c
11824 F:      net/ipv6/tcp*.c
11825 F:      net/ipv6/syncookies.c
11826 F:      include/uapi/linux/tcp.h
11827 F:      include/net/tcp.h
11828 F:      include/linux/tcp.h
11829 F:      include/trace/events/tcp.h
11830
11831 NETWORKING [TLS]
11832 M:      Boris Pismenny <[email protected]>
11833 M:      Aviad Yehezkel <[email protected]>
11834 M:      John Fastabend <[email protected]>
11835 M:      Daniel Borkmann <[email protected]>
11836 M:      Jakub Kicinski <[email protected]>
11837 L:      [email protected]
11838 S:      Maintained
11839 F:      net/tls/*
11840 F:      include/uapi/linux/tls.h
11841 F:      include/net/tls.h
11842
11843 NETWORKING [WIRELESS]
11844 L:      [email protected]
11845 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11846
11847 NETDEVSIM
11848 M:      Jakub Kicinski <[email protected]>
11849 S:      Maintained
11850 F:      drivers/net/netdevsim/*
11851
11852 NETXEN (1/10) GbE SUPPORT
11853 M:      Manish Chopra <[email protected]>
11854 M:      Rahul Verma <[email protected]>
11855 M:      [email protected]
11856 L:      [email protected]
11857 S:      Supported
11858 F:      drivers/net/ethernet/qlogic/netxen/
11859
11860 NEXTHOP
11861 M:      David Ahern <[email protected]>
11862 L:      [email protected]
11863 S:      Maintained
11864 F:      include/net/nexthop.h
11865 F:      include/uapi/linux/nexthop.h
11866 F:      include/net/netns/nexthop.h
11867 F:      net/ipv4/nexthop.c
11868
11869 NFC SUBSYSTEM
11870 L:      [email protected]
11871 S:      Orphan
11872 F:      net/nfc/
11873 F:      include/net/nfc/
11874 F:      include/uapi/linux/nfc.h
11875 F:      drivers/nfc/
11876 F:      include/linux/platform_data/nfcmrvl.h
11877 F:      Documentation/devicetree/bindings/net/nfc/
11878
11879 NFS, SUNRPC, AND LOCKD CLIENTS
11880 M:      Trond Myklebust <[email protected]>
11881 M:      Anna Schumaker <[email protected]>
11882 L:      [email protected]
11883 W:      http://client.linux-nfs.org
11884 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11885 S:      Maintained
11886 F:      fs/lockd/
11887 F:      fs/nfs/
11888 F:      fs/nfs_common/
11889 F:      net/sunrpc/
11890 F:      include/linux/lockd/
11891 F:      include/linux/nfs*
11892 F:      include/linux/sunrpc/
11893 F:      include/uapi/linux/nfs*
11894 F:      include/uapi/linux/sunrpc/
11895
11896 NILFS2 FILESYSTEM
11897 M:      Ryusuke Konishi <[email protected]>
11898 L:      [email protected]
11899 W:      https://nilfs.sourceforge.io/
11900 W:      https://nilfs.osdn.jp/
11901 T:      git git://github.com/konis/nilfs2.git
11902 S:      Supported
11903 F:      Documentation/filesystems/nilfs2.rst
11904 F:      fs/nilfs2/
11905 F:      include/trace/events/nilfs2.h
11906 F:      include/uapi/linux/nilfs2_api.h
11907 F:      include/uapi/linux/nilfs2_ondisk.h
11908
11909 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11910 M:      YOKOTA Hiroshi <[email protected]>
11911 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11912 S:      Maintained
11913 F:      Documentation/scsi/NinjaSCSI.rst
11914 F:      drivers/scsi/pcmcia/nsp_*
11915
11916 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11917 M:      GOTO Masanori <[email protected]>
11918 M:      YOKOTA Hiroshi <[email protected]>
11919 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11920 S:      Maintained
11921 F:      Documentation/scsi/NinjaSCSI.rst
11922 F:      drivers/scsi/nsp32*
11923
11924 NIOS2 ARCHITECTURE
11925 M:      Ley Foon Tan <[email protected]>
11926 L:      [email protected] (moderated for non-subscribers)
11927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11928 S:      Maintained
11929 F:      arch/nios2/
11930
11931 NOHZ, DYNTICKS SUPPORT
11932 M:      Frederic Weisbecker <[email protected]>
11933 M:      Thomas Gleixner <[email protected]>
11934 M:      Ingo Molnar <[email protected]>
11935 L:      [email protected]
11936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11937 S:      Maintained
11938 F:      kernel/time/tick*.*
11939 F:      include/linux/tick.h
11940 F:      include/linux/sched/nohz.h
11941
11942 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11943 M:      Pavel Machek <[email protected]>
11944 M:      Sakari Ailus <[email protected]>
11945 L:      [email protected]
11946 S:      Maintained
11947 F:      drivers/media/i2c/et8ek8
11948 F:      drivers/media/i2c/ad5820.c
11949
11950 NOKIA N900 POWER SUPPLY DRIVERS
11951 R:      Pali Rohár <[email protected]>
11952 F:      include/linux/power/bq2415x_charger.h
11953 F:      include/linux/power/bq27xxx_battery.h
11954 F:      drivers/power/supply/bq2415x_charger.c
11955 F:      drivers/power/supply/bq27xxx_battery.c
11956 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11957 F:      drivers/power/supply/isp1704_charger.c
11958 F:      drivers/power/supply/rx51_battery.c
11959
11960 NOLIBC HEADER FILE
11961 M:      Willy Tarreau <[email protected]>
11962 S:      Maintained
11963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11964 F:      tools/include/nolibc/
11965
11966 NSDEPS
11967 M:      Matthias Maennich <[email protected]>
11968 S:      Maintained
11969 F:      scripts/nsdeps
11970 F:      Documentation/core-api/symbol-namespaces.rst
11971
11972 NTB AMD DRIVER
11973 M:      Sanjay R Mehta <[email protected]>
11974 M:      Shyam Sundar S K <[email protected]>
11975 L:      [email protected]
11976 S:      Supported
11977 F:      drivers/ntb/hw/amd/
11978
11979 NTB DRIVER CORE
11980 M:      Jon Mason <[email protected]>
11981 M:      Dave Jiang <[email protected]>
11982 M:      Allen Hubbe <[email protected]>
11983 L:      [email protected]
11984 S:      Supported
11985 W:      https://github.com/jonmason/ntb/wiki
11986 T:      git git://github.com/jonmason/ntb.git
11987 F:      drivers/ntb/
11988 F:      drivers/net/ntb_netdev.c
11989 F:      include/linux/ntb.h
11990 F:      include/linux/ntb_transport.h
11991 F:      tools/testing/selftests/ntb/
11992
11993 NTB IDT DRIVER
11994 M:      Serge Semin <[email protected]>
11995 L:      [email protected]
11996 S:      Supported
11997 F:      drivers/ntb/hw/idt/
11998
11999 NTB INTEL DRIVER
12000 M:      Dave Jiang <[email protected]>
12001 L:      [email protected]
12002 S:      Supported
12003 W:      https://github.com/davejiang/linux/wiki
12004 T:      git https://github.com/davejiang/linux.git
12005 F:      drivers/ntb/hw/intel/
12006
12007 NTFS FILESYSTEM
12008 M:      Anton Altaparmakov <[email protected]>
12009 L:      [email protected]
12010 W:      http://www.tuxera.com/
12011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12012 S:      Supported
12013 F:      Documentation/filesystems/ntfs.rst
12014 F:      fs/ntfs/
12015
12016 NUBUS SUBSYSTEM
12017 M:      Finn Thain <[email protected]>
12018 L:      [email protected]
12019 S:      Maintained
12020 F:      arch/*/include/asm/nubus.h
12021 F:      drivers/nubus/
12022 F:      include/linux/nubus.h
12023 F:      include/uapi/linux/nubus.h
12024
12025 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12026 M:      Antonino Daplas <[email protected]>
12027 L:      [email protected]
12028 S:      Maintained
12029 F:      drivers/video/fbdev/riva/
12030 F:      drivers/video/fbdev/nvidia/
12031
12032 NVM EXPRESS DRIVER
12033 M:      Keith Busch <[email protected]>
12034 M:      Jens Axboe <[email protected]>
12035 M:      Christoph Hellwig <[email protected]>
12036 M:      Sagi Grimberg <[email protected]>
12037 L:      [email protected]
12038 T:      git://git.infradead.org/nvme.git
12039 W:      http://git.infradead.org/nvme.git
12040 S:      Supported
12041 F:      drivers/nvme/host/
12042 F:      include/linux/nvme.h
12043 F:      include/uapi/linux/nvme_ioctl.h
12044
12045 NVM EXPRESS FC TRANSPORT DRIVERS
12046 M:      James Smart <[email protected]>
12047 L:      [email protected]
12048 S:      Supported
12049 F:      include/linux/nvme-fc.h
12050 F:      include/linux/nvme-fc-driver.h
12051 F:      drivers/nvme/host/fc.c
12052 F:      drivers/nvme/target/fc.c
12053 F:      drivers/nvme/target/fcloop.c
12054
12055 NVM EXPRESS TARGET DRIVER
12056 M:      Christoph Hellwig <[email protected]>
12057 M:      Sagi Grimberg <[email protected]>
12058 M:      Chaitanya Kulkarni <[email protected]>
12059 L:      [email protected]
12060 T:      git://git.infradead.org/nvme.git
12061 W:      http://git.infradead.org/nvme.git
12062 S:      Supported
12063 F:      drivers/nvme/target/
12064
12065 NVMEM FRAMEWORK
12066 M:      Srinivas Kandagatla <[email protected]>
12067 S:      Maintained
12068 F:      drivers/nvmem/
12069 F:      Documentation/devicetree/bindings/nvmem/
12070 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12071 F:      include/linux/nvmem-consumer.h
12072 F:      include/linux/nvmem-provider.h
12073
12074 NXP FXAS21002C DRIVER
12075 M:      Rui Miguel Silva <[email protected]>
12076 L:      [email protected]
12077 S:      Maintained
12078 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12079 F:      drivers/iio/gyro/fxas21002c_core.c
12080 F:      drivers/iio/gyro/fxas21002c.h
12081 F:      drivers/iio/gyro/fxas21002c_i2c.c
12082 F:      drivers/iio/gyro/fxas21002c_spi.c
12083
12084 NXP SGTL5000 DRIVER
12085 M:      Fabio Estevam <[email protected]>
12086 L:      [email protected] (moderated for non-subscribers)
12087 S:      Maintained
12088 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12089 F:      sound/soc/codecs/sgtl5000*
12090
12091 NXP SJA1105 ETHERNET SWITCH DRIVER
12092 M:      Vladimir Oltean <[email protected]>
12093 L:      [email protected]
12094 S:      Maintained
12095 F:      drivers/net/dsa/sja1105
12096
12097 NXP TDA998X DRM DRIVER
12098 M:      Russell King <[email protected]>
12099 S:      Maintained
12100 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12101 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12102 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12103 F:      include/drm/i2c/tda998x.h
12104 F:      include/dt-bindings/display/tda998x.h
12105 K:      "nxp,tda998x"
12106
12107 NXP TFA9879 DRIVER
12108 M:      Peter Rosin <[email protected]>
12109 L:      [email protected] (moderated for non-subscribers)
12110 S:      Maintained
12111 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12112 F:      sound/soc/codecs/tfa9879*
12113
12114 NXP-NCI NFC DRIVER
12115 M:      Clément Perrochaud <[email protected]>
12116 R:      Charles Gorand <[email protected]>
12117 L:      [email protected] (moderated for non-subscribers)
12118 S:      Supported
12119 F:      drivers/nfc/nxp-nci
12120
12121 OBJAGG
12122 M:      Jiri Pirko <[email protected]>
12123 L:      [email protected]
12124 S:      Supported
12125 F:      lib/objagg.c
12126 F:      lib/test_objagg.c
12127 F:      include/linux/objagg.h
12128
12129 NXP FSPI DRIVER
12130 R:      Yogesh Gaur <[email protected]>
12131 M:      Ashish Kumar <[email protected]>
12132 L:      [email protected]
12133 S:      Maintained
12134 F:      drivers/spi/spi-nxp-fspi.c
12135 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12136
12137 OBJTOOL
12138 M:      Josh Poimboeuf <[email protected]>
12139 M:      Peter Zijlstra <[email protected]>
12140 S:      Supported
12141 F:      tools/objtool/
12142
12143 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12144 M:      Frederic Barrat <[email protected]>
12145 M:      Andrew Donnellan <[email protected]>
12146 L:      [email protected]
12147 S:      Supported
12148 F:      arch/powerpc/platforms/powernv/ocxl.c
12149 F:      arch/powerpc/include/asm/pnv-ocxl.h
12150 F:      drivers/misc/ocxl/
12151 F:      include/misc/ocxl*
12152 F:      include/uapi/misc/ocxl.h
12153 F:      Documentation/userspace-api/accelerators/ocxl.rst
12154
12155 OMAP AUDIO SUPPORT
12156 M:      Peter Ujfalusi <[email protected]>
12157 M:      Jarkko Nikula <[email protected]>
12158 L:      [email protected] (moderated for non-subscribers)
12159 L:      [email protected]
12160 S:      Maintained
12161 F:      sound/soc/ti/omap*
12162 F:      sound/soc/ti/rx51.c
12163 F:      sound/soc/ti/n810.c
12164 F:      sound/soc/ti/sdma-pcm.*
12165
12166 OMAP CLOCK FRAMEWORK SUPPORT
12167 M:      Paul Walmsley <[email protected]>
12168 L:      [email protected]
12169 S:      Maintained
12170 F:      arch/arm/*omap*/*clock*
12171
12172 OMAP DEVICE TREE SUPPORT
12173 M:      Benoît Cousson <[email protected]>
12174 M:      Tony Lindgren <[email protected]>
12175 L:      [email protected]
12176 L:      [email protected]
12177 S:      Maintained
12178 F:      arch/arm/boot/dts/*omap*
12179 F:      arch/arm/boot/dts/*am3*
12180 F:      arch/arm/boot/dts/*am4*
12181 F:      arch/arm/boot/dts/*am5*
12182 F:      arch/arm/boot/dts/*dra7*
12183 F:      arch/arm/boot/dts/logicpd-som-lv*
12184 F:      arch/arm/boot/dts/logicpd-torpedo*
12185
12186 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12187 L:      [email protected]
12188 L:      [email protected]
12189 S:      Orphan
12190 F:      drivers/video/fbdev/omap2/
12191 F:      Documentation/arm/omap/dss.rst
12192
12193 OMAP FRAMEBUFFER SUPPORT
12194 L:      [email protected]
12195 L:      [email protected]
12196 S:      Orphan
12197 F:      drivers/video/fbdev/omap/
12198
12199 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12200 M:      Roger Quadros <[email protected]>
12201 M:      Tony Lindgren <[email protected]>
12202 L:      [email protected]
12203 S:      Maintained
12204 F:      drivers/memory/omap-gpmc.c
12205 F:      arch/arm/mach-omap2/*gpmc*
12206
12207 OMAP GPIO DRIVER
12208 M:      Grygorii Strashko <[email protected]>
12209 M:      Santosh Shilimkar <[email protected]>
12210 M:      Kevin Hilman <[email protected]>
12211 L:      [email protected]
12212 S:      Maintained
12213 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12214 F:      drivers/gpio/gpio-omap.c
12215
12216 OMAP HARDWARE SPINLOCK SUPPORT
12217 M:      Ohad Ben-Cohen <[email protected]>
12218 L:      [email protected]
12219 S:      Maintained
12220 F:      drivers/hwspinlock/omap_hwspinlock.c
12221
12222 OMAP HS MMC SUPPORT
12223 L:      [email protected]
12224 L:      [email protected]
12225 S:      Orphan
12226 F:      drivers/mmc/host/omap_hsmmc.c
12227
12228 OMAP HWMOD DATA
12229 M:      Paul Walmsley <[email protected]>
12230 L:      [email protected]
12231 S:      Maintained
12232 F:      arch/arm/mach-omap2/omap_hwmod*data*
12233
12234 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12235 M:      Benoît Cousson <[email protected]>
12236 L:      [email protected]
12237 S:      Maintained
12238 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12239
12240 OMAP HWMOD SUPPORT
12241 M:      Benoît Cousson <[email protected]>
12242 M:      Paul Walmsley <[email protected]>
12243 L:      [email protected]
12244 S:      Maintained
12245 F:      arch/arm/mach-omap2/omap_hwmod.*
12246
12247 OMAP I2C DRIVER
12248 M:      Vignesh R <[email protected]>
12249 L:      [email protected]
12250 L:      [email protected]
12251 S:      Maintained
12252 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12253 F:      drivers/i2c/busses/i2c-omap.c
12254
12255 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12256 M:      Laurent Pinchart <[email protected]>
12257 L:      [email protected]
12258 S:      Maintained
12259 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12260 F:      drivers/media/platform/omap3isp/
12261 F:      drivers/staging/media/omap4iss/
12262
12263 OMAP MMC SUPPORT
12264 M:      Aaro Koskinen <[email protected]>
12265 L:      [email protected]
12266 S:      Odd Fixes
12267 F:      drivers/mmc/host/omap.c
12268
12269 OMAP POWER MANAGEMENT SUPPORT
12270 M:      Kevin Hilman <[email protected]>
12271 L:      [email protected]
12272 S:      Maintained
12273 F:      arch/arm/*omap*/*pm*
12274 F:      drivers/cpufreq/omap-cpufreq.c
12275
12276 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12277 M:      Rajendra Nayak <[email protected]>
12278 M:      Paul Walmsley <[email protected]>
12279 L:      [email protected]
12280 S:      Maintained
12281 F:      arch/arm/mach-omap2/prm*
12282
12283 OMAP RANDOM NUMBER GENERATOR SUPPORT
12284 M:      Deepak Saxena <[email protected]>
12285 S:      Maintained
12286 F:      drivers/char/hw_random/omap-rng.c
12287
12288 OMAP USB SUPPORT
12289 L:      [email protected]
12290 L:      [email protected]
12291 S:      Orphan
12292 F:      drivers/usb/*/*omap*
12293 F:      arch/arm/*omap*/usb*
12294
12295 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12296 M:      Mark Jackson <[email protected]>
12297 L:      [email protected]
12298 S:      Maintained
12299 F:      arch/arm/boot/dts/am335x-nano.dts
12300
12301 OMAP1 SUPPORT
12302 M:      Aaro Koskinen <[email protected]>
12303 M:      Tony Lindgren <[email protected]>
12304 L:      [email protected]
12305 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12307 S:      Maintained
12308 F:      arch/arm/mach-omap1/
12309 F:      arch/arm/plat-omap/
12310 F:      arch/arm/configs/omap1_defconfig
12311 F:      drivers/i2c/busses/i2c-omap.c
12312 F:      include/linux/platform_data/i2c-omap.h
12313 F:      include/linux/platform_data/ams-delta-fiq.h
12314
12315 OMAP2+ SUPPORT
12316 M:      Tony Lindgren <[email protected]>
12317 L:      [email protected]
12318 W:      http://www.muru.com/linux/omap/
12319 W:      http://linux.omap.com/
12320 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12322 S:      Maintained
12323 F:      arch/arm/mach-omap2/
12324 F:      arch/arm/plat-omap/
12325 F:      arch/arm/configs/omap2plus_defconfig
12326 F:      drivers/bus/ti-sysc.c
12327 F:      drivers/i2c/busses/i2c-omap.c
12328 F:      drivers/irqchip/irq-omap-intc.c
12329 F:      drivers/mfd/*omap*.c
12330 F:      drivers/mfd/menelaus.c
12331 F:      drivers/mfd/palmas.c
12332 F:      drivers/mfd/tps65217.c
12333 F:      drivers/mfd/tps65218.c
12334 F:      drivers/mfd/tps65910.c
12335 F:      drivers/mfd/twl-core.[ch]
12336 F:      drivers/mfd/twl4030*.c
12337 F:      drivers/mfd/twl6030*.c
12338 F:      drivers/mfd/twl6040*.c
12339 F:      drivers/regulator/palmas-regulator*.c
12340 F:      drivers/regulator/pbias-regulator.c
12341 F:      drivers/regulator/tps65217-regulator.c
12342 F:      drivers/regulator/tps65218-regulator.c
12343 F:      drivers/regulator/tps65910-regulator.c
12344 F:      drivers/regulator/twl-regulator.c
12345 F:      drivers/regulator/twl6030-regulator.c
12346 F:      include/linux/platform_data/i2c-omap.h
12347 F:      include/linux/platform_data/ti-sysc.h
12348
12349 ONION OMEGA2+ BOARD
12350 M:      Harvey Hunt <[email protected]>
12351 L:      [email protected]
12352 S:      Maintained
12353 F:      arch/mips/boot/dts/ralink/omega2p.dts
12354
12355 OMFS FILESYSTEM
12356 M:      Bob Copeland <[email protected]>
12357 L:      [email protected]
12358 S:      Maintained
12359 F:      Documentation/filesystems/omfs.rst
12360 F:      fs/omfs/
12361
12362 OMNIKEY CARDMAN 4000 DRIVER
12363 M:      Harald Welte <[email protected]>
12364 S:      Maintained
12365 F:      drivers/char/pcmcia/cm4000_cs.c
12366 F:      include/linux/cm4000_cs.h
12367 F:      include/uapi/linux/cm4000_cs.h
12368
12369 OMNIKEY CARDMAN 4040 DRIVER
12370 M:      Harald Welte <[email protected]>
12371 S:      Maintained
12372 F:      drivers/char/pcmcia/cm4040_cs.*
12373
12374 OMNIVISION OV13858 SENSOR DRIVER
12375 M:      Sakari Ailus <[email protected]>
12376 L:      [email protected]
12377 T:      git git://linuxtv.org/media_tree.git
12378 S:      Maintained
12379 F:      drivers/media/i2c/ov13858.c
12380
12381 OMNIVISION OV2680 SENSOR DRIVER
12382 M:      Rui Miguel Silva <[email protected]>
12383 L:      [email protected]
12384 T:      git git://linuxtv.org/media_tree.git
12385 S:      Maintained
12386 F:      drivers/media/i2c/ov2680.c
12387 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12388
12389 OMNIVISION OV2685 SENSOR DRIVER
12390 M:      Shunqian Zheng <[email protected]>
12391 L:      [email protected]
12392 T:      git git://linuxtv.org/media_tree.git
12393 S:      Maintained
12394 F:      drivers/media/i2c/ov2685.c
12395
12396 OMNIVISION OV5640 SENSOR DRIVER
12397 M:      Steve Longerbeam <[email protected]>
12398 L:      [email protected]
12399 T:      git git://linuxtv.org/media_tree.git
12400 S:      Maintained
12401 F:      drivers/media/i2c/ov5640.c
12402
12403 OMNIVISION OV5647 SENSOR DRIVER
12404 M:      Luis Oliveira <[email protected]>
12405 L:      [email protected]
12406 T:      git git://linuxtv.org/media_tree.git
12407 S:      Maintained
12408 F:      drivers/media/i2c/ov5647.c
12409
12410 OMNIVISION OV5670 SENSOR DRIVER
12411 M:      Chiranjeevi Rapolu <[email protected]>
12412 M:      Hyungwoo Yang <[email protected]>
12413 L:      [email protected]
12414 T:      git git://linuxtv.org/media_tree.git
12415 S:      Maintained
12416 F:      drivers/media/i2c/ov5670.c
12417
12418 OMNIVISION OV5675 SENSOR DRIVER
12419 M:      Shawn Tu <[email protected]>
12420 L:      [email protected]
12421 T:      git git://linuxtv.org/media_tree.git
12422 S:      Maintained
12423 F:      drivers/media/i2c/ov5675.c
12424
12425 OMNIVISION OV5695 SENSOR DRIVER
12426 M:      Shunqian Zheng <[email protected]>
12427 L:      [email protected]
12428 T:      git git://linuxtv.org/media_tree.git
12429 S:      Maintained
12430 F:      drivers/media/i2c/ov5695.c
12431
12432 OMNIVISION OV7670 SENSOR DRIVER
12433 M:      Jonathan Corbet <[email protected]>
12434 L:      [email protected]
12435 T:      git git://linuxtv.org/media_tree.git
12436 S:      Maintained
12437 F:      drivers/media/i2c/ov7670.c
12438 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12439
12440 OMNIVISION OV772x SENSOR DRIVER
12441 M:      Jacopo Mondi <[email protected]>
12442 L:      [email protected]
12443 T:      git git://linuxtv.org/media_tree.git
12444 S:      Odd fixes
12445 F:      drivers/media/i2c/ov772x.c
12446 F:      include/media/i2c/ov772x.h
12447 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12448
12449 OMNIVISION OV7740 SENSOR DRIVER
12450 M:      Wenyou Yang <[email protected]>
12451 L:      [email protected]
12452 T:      git git://linuxtv.org/media_tree.git
12453 S:      Maintained
12454 F:      drivers/media/i2c/ov7740.c
12455 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12456
12457 OMNIVISION OV9640 SENSOR DRIVER
12458 M:      Petr Cvek <[email protected]>
12459 L:      [email protected]
12460 S:      Maintained
12461 F:      drivers/media/i2c/ov9640.*
12462
12463 OMNIVISION OV8856 SENSOR DRIVER
12464 M:      Ben Kao <[email protected]>
12465 L:      [email protected]
12466 T:      git git://linuxtv.org/media_tree.git
12467 S:      Maintained
12468 F:      drivers/media/i2c/ov8856.c
12469
12470 OMNIVISION OV9650 SENSOR DRIVER
12471 M:      Sakari Ailus <[email protected]>
12472 R:      Akinobu Mita <[email protected]>
12473 R:      Sylwester Nawrocki <[email protected]>
12474 L:      [email protected]
12475 T:      git git://linuxtv.org/media_tree.git
12476 S:      Maintained
12477 F:      drivers/media/i2c/ov9650.c
12478 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12479
12480 ONENAND FLASH DRIVER
12481 M:      Kyungmin Park <[email protected]>
12482 L:      [email protected]
12483 S:      Maintained
12484 F:      drivers/mtd/nand/onenand/
12485 F:      include/linux/mtd/onenand*.h
12486
12487 OP-TEE DRIVER
12488 M:      Jens Wiklander <[email protected]>
12489 L:      [email protected]
12490 S:      Maintained
12491 F:      drivers/tee/optee/
12492
12493 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12494 M:      Sumit Garg <[email protected]>
12495 L:      [email protected]
12496 S:      Maintained
12497 F:      drivers/char/hw_random/optee-rng.c
12498
12499 OPA-VNIC DRIVER
12500 M:      Dennis Dalessandro <[email protected]>
12501 M:      Niranjana Vishwanathapura <[email protected]>
12502 L:      [email protected]
12503 S:      Supported
12504 F:      drivers/infiniband/ulp/opa_vnic
12505
12506 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12507 M:      Pantelis Antoniou <[email protected]>
12508 M:      Frank Rowand <[email protected]>
12509 L:      [email protected]
12510 S:      Maintained
12511 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12512 F:      Documentation/devicetree/overlay-notes.txt
12513 F:      drivers/of/overlay.c
12514 F:      drivers/of/resolver.c
12515 K:      of_overlay_notifier_
12516
12517 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12518 M:      Rob Herring <[email protected]>
12519 M:      Frank Rowand <[email protected]>
12520 L:      [email protected]
12521 W:      http://www.devicetree.org/
12522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12523 S:      Maintained
12524 F:      drivers/of/
12525 F:      include/linux/of*.h
12526 F:      scripts/dtc/
12527 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12528
12529 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12530 M:      Rob Herring <[email protected]>
12531 L:      [email protected]
12532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12533 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12534 S:      Maintained
12535 F:      Documentation/devicetree/
12536 F:      arch/*/boot/dts/
12537 F:      include/dt-bindings/
12538
12539 OPENCORES I2C BUS DRIVER
12540 M:      Peter Korsgaard <[email protected]>
12541 M:      Andrew Lunn <[email protected]>
12542 L:      [email protected]
12543 S:      Maintained
12544 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12545 F:      Documentation/i2c/busses/i2c-ocores.rst
12546 F:      drivers/i2c/busses/i2c-ocores.c
12547 F:      include/linux/platform_data/i2c-ocores.h
12548
12549 OPENRISC ARCHITECTURE
12550 M:      Jonas Bonn <[email protected]>
12551 M:      Stefan Kristiansson <[email protected]>
12552 M:      Stafford Horne <[email protected]>
12553 T:      git git://github.com/openrisc/linux.git
12554 L:      [email protected]
12555 W:      http://openrisc.io
12556 S:      Maintained
12557 F:      Documentation/devicetree/bindings/openrisc/
12558 F:      Documentation/openrisc/
12559 F:      arch/openrisc/
12560 F:      drivers/irqchip/irq-ompic.c
12561 F:      drivers/irqchip/irq-or1k-*
12562
12563 OPENVSWITCH
12564 M:      Pravin B Shelar <[email protected]>
12565 L:      [email protected]
12566 L:      [email protected]
12567 W:      http://openvswitch.org
12568 S:      Maintained
12569 F:      net/openvswitch/
12570 F:      include/uapi/linux/openvswitch.h
12571
12572 OPERATING PERFORMANCE POINTS (OPP)
12573 M:      Viresh Kumar <[email protected]>
12574 M:      Nishanth Menon <[email protected]>
12575 M:      Stephen Boyd <[email protected]>
12576 L:      [email protected]
12577 S:      Maintained
12578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12579 F:      drivers/opp/
12580 F:      include/linux/pm_opp.h
12581 F:      Documentation/power/opp.rst
12582 F:      Documentation/devicetree/bindings/opp/
12583
12584 OPL4 DRIVER
12585 M:      Clemens Ladisch <[email protected]>
12586 L:      [email protected] (moderated for non-subscribers)
12587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12588 S:      Maintained
12589 F:      sound/drivers/opl4/
12590
12591 OPROFILE
12592 M:      Robert Richter <[email protected]>
12593 L:      [email protected]
12594 S:      Maintained
12595 F:      arch/*/include/asm/oprofile*.h
12596 F:      arch/*/oprofile/
12597 F:      drivers/oprofile/
12598 F:      include/linux/oprofile.h
12599
12600 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12601 M:      Mark Fasheh <[email protected]>
12602 M:      Joel Becker <[email protected]>
12603 M:      Joseph Qi <[email protected]>
12604 L:      [email protected] (moderated for non-subscribers)
12605 W:      http://ocfs2.wiki.kernel.org
12606 S:      Supported
12607 F:      Documentation/filesystems/ocfs2.rst
12608 F:      Documentation/filesystems/dlmfs.rst
12609 F:      fs/ocfs2/
12610
12611 ORANGEFS FILESYSTEM
12612 M:      Mike Marshall <[email protected]>
12613 R:      Martin Brandenburg <[email protected]>
12614 L:      [email protected]
12615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12616 S:      Supported
12617 F:      fs/orangefs/
12618 F:      Documentation/filesystems/orangefs.rst
12619
12620 ORINOCO DRIVER
12621 L:      [email protected]
12622 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12623 W:      http://www.nongnu.org/orinoco/
12624 S:      Orphan
12625 F:      drivers/net/wireless/intersil/orinoco/
12626
12627 OV2659 OMNIVISION SENSOR DRIVER
12628 M:      "Lad, Prabhakar" <[email protected]>
12629 L:      [email protected]
12630 W:      https://linuxtv.org
12631 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12632 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12633 S:      Maintained
12634 F:      drivers/media/i2c/ov2659.c
12635 F:      include/media/i2c/ov2659.h
12636
12637 OVERLAY FILESYSTEM
12638 M:      Miklos Szeredi <[email protected]>
12639 L:      [email protected]
12640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12641 S:      Supported
12642 F:      fs/overlayfs/
12643 F:      Documentation/filesystems/overlayfs.rst
12644
12645 P54 WIRELESS DRIVER
12646 M:      Christian Lamparter <[email protected]>
12647 L:      [email protected]
12648 W:      http://wireless.kernel.org/en/users/Drivers/p54
12649 S:      Maintained
12650 F:      drivers/net/wireless/intersil/p54/
12651
12652 PACKING
12653 M:      Vladimir Oltean <[email protected]>
12654 L:      [email protected]
12655 S:      Supported
12656 F:      lib/packing.c
12657 F:      include/linux/packing.h
12658 F:      Documentation/core-api/packing.rst
12659
12660 PADATA PARALLEL EXECUTION MECHANISM
12661 M:      Steffen Klassert <[email protected]>
12662 L:      [email protected]
12663 S:      Maintained
12664 F:      kernel/padata.c
12665 F:      include/linux/padata.h
12666 F:      Documentation/core-api/padata.rst
12667
12668 PAGE POOL
12669 M:      Jesper Dangaard Brouer <[email protected]>
12670 M:      Ilias Apalodimas <[email protected]>
12671 L:      [email protected]
12672 S:      Supported
12673 F:      net/core/page_pool.c
12674 F:      include/net/page_pool.h
12675
12676 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12677 M:      Harald Welte <[email protected]>
12678 L:      [email protected]
12679 S:      Maintained
12680 F:      drivers/platform/x86/panasonic-laptop.c
12681
12682 PARALLAX PING IIO SENSOR DRIVER
12683 M:      Andreas Klinger <[email protected]>
12684 L:      [email protected]
12685 S:      Maintained
12686 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12687 F:      drivers/iio/proximity/ping.c
12688
12689 PARALLEL LCD/KEYPAD PANEL DRIVER
12690 M:      Willy Tarreau <[email protected]>
12691 M:      Ksenija Stanojevic <[email protected]>
12692 S:      Odd Fixes
12693 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12694 F:      drivers/auxdisplay/panel.c
12695
12696 PARALLEL PORT SUBSYSTEM
12697 M:      Sudip Mukherjee <[email protected]>
12698 M:      Sudip Mukherjee <[email protected]>
12699 L:      [email protected] (subscribers-only)
12700 S:      Maintained
12701 F:      drivers/parport/
12702 F:      include/linux/parport*.h
12703 F:      drivers/char/ppdev.c
12704 F:      include/uapi/linux/ppdev.h
12705 F:      Documentation/driver-api/parport*.rst
12706
12707 PARAVIRT_OPS INTERFACE
12708 M:      Juergen Gross <[email protected]>
12709 M:      Thomas Hellstrom <[email protected]>
12710 M:      "VMware, Inc." <[email protected]>
12711 L:      [email protected]
12712 S:      Supported
12713 F:      Documentation/virt/paravirt_ops.rst
12714 F:      arch/*/kernel/paravirt*
12715 F:      arch/*/include/asm/paravirt*.h
12716 F:      include/linux/hypervisor.h
12717
12718 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12719 M:      Tim Waugh <[email protected]>
12720 L:      [email protected] (subscribers-only)
12721 S:      Maintained
12722 F:      Documentation/admin-guide/blockdev/paride.rst
12723 F:      drivers/block/paride/
12724
12725 PARISC ARCHITECTURE
12726 M:      "James E.J. Bottomley" <[email protected]>
12727 M:      Helge Deller <[email protected]>
12728 L:      [email protected]
12729 W:      http://www.parisc-linux.org/
12730 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12733 S:      Maintained
12734 F:      arch/parisc/
12735 F:      Documentation/parisc/
12736 F:      drivers/parisc/
12737 F:      drivers/char/agp/parisc-agp.c
12738 F:      drivers/input/misc/hp_sdc_rtc.c
12739 F:      drivers/input/serio/gscps2.c
12740 F:      drivers/input/serio/hp_sdc*
12741 F:      drivers/parport/parport_gsc.*
12742 F:      drivers/tty/serial/8250/8250_gsc.c
12743 F:      drivers/video/fbdev/sti*
12744 F:      drivers/video/console/sti*
12745 F:      drivers/video/logo/logo_parisc*
12746 F:      include/linux/hp_sdc.h
12747
12748 PARMAN
12749 M:      Jiri Pirko <[email protected]>
12750 L:      [email protected]
12751 S:      Supported
12752 F:      lib/parman.c
12753 F:      lib/test_parman.c
12754 F:      include/linux/parman.h
12755
12756 PC ENGINES APU BOARD DRIVER
12757 M:      Enrico Weigelt, metux IT consult <[email protected]>
12758 S:      Maintained
12759 F:      drivers/platform/x86/pcengines-apuv2.c
12760
12761 PC87360 HARDWARE MONITORING DRIVER
12762 M:      Jim Cromie <[email protected]>
12763 L:      [email protected]
12764 S:      Maintained
12765 F:      Documentation/hwmon/pc87360.rst
12766 F:      drivers/hwmon/pc87360.c
12767
12768 PC8736x GPIO DRIVER
12769 M:      Jim Cromie <[email protected]>
12770 S:      Maintained
12771 F:      drivers/char/pc8736x_gpio.c
12772
12773 PC87427 HARDWARE MONITORING DRIVER
12774 M:      Jean Delvare <[email protected]>
12775 L:      [email protected]
12776 S:      Maintained
12777 F:      Documentation/hwmon/pc87427.rst
12778 F:      drivers/hwmon/pc87427.c
12779
12780 PCA9532 LED DRIVER
12781 M:      Riku Voipio <[email protected]>
12782 S:      Maintained
12783 F:      drivers/leds/leds-pca9532.c
12784 F:      include/linux/leds-pca9532.h
12785
12786 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12787 M:      Guenter Roeck <[email protected]>
12788 L:      [email protected]
12789 S:      Maintained
12790 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12791
12792 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12793 M:      Khalid Aziz <[email protected]>
12794 S:      Maintained
12795 F:      drivers/firmware/pcdp.*
12796
12797 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12798 M:      Thomas Petazzoni <[email protected]>
12799 L:      [email protected]
12800 L:      [email protected] (moderated for non-subscribers)
12801 S:      Maintained
12802 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12803 F:      drivers/pci/controller/pci-aardvark.c
12804
12805 PCI DRIVER FOR ALTERA PCIE IP
12806 M:      Ley Foon Tan <[email protected]>
12807 L:      [email protected] (moderated for non-subscribers)
12808 L:      [email protected]
12809 S:      Supported
12810 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12811 F:      drivers/pci/controller/pcie-altera.c
12812
12813 PCI DRIVER FOR APPLIEDMICRO XGENE
12814 M:      Toan Le <[email protected]>
12815 L:      [email protected]
12816 L:      [email protected]
12817 S:      Maintained
12818 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12819 F:      drivers/pci/controller/pci-xgene.c
12820
12821 PCI DRIVER FOR ARM VERSATILE PLATFORM
12822 M:      Rob Herring <[email protected]>
12823 L:      [email protected]
12824 L:      [email protected]
12825 S:      Maintained
12826 F:      Documentation/devicetree/bindings/pci/versatile.yaml
12827 F:      drivers/pci/controller/pci-versatile.c
12828
12829 PCI DRIVER FOR ARMADA 8K
12830 M:      Thomas Petazzoni <[email protected]>
12831 L:      [email protected]
12832 L:      [email protected]
12833 S:      Maintained
12834 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12835 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12836
12837 PCI DRIVER FOR CADENCE PCIE IP
12838 M:      Tom Joseph <[email protected]>
12839 L:      [email protected]
12840 S:      Maintained
12841 F:      Documentation/devicetree/bindings/pci/cdns,*
12842 F:      drivers/pci/controller/cadence/
12843
12844 PCI DRIVER FOR FREESCALE LAYERSCAPE
12845 M:      Minghuan Lian <[email protected]>
12846 M:      Mingkai Hu <[email protected]>
12847 M:      Roy Zang <[email protected]>
12848 L:      [email protected]
12849 L:      [email protected]
12850 L:      [email protected]
12851 S:      Maintained
12852 F:      drivers/pci/controller/dwc/*layerscape*
12853
12854 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
12855 M:      Hou Zhiqiang <[email protected]>
12856 L:      [email protected]
12857 L:      [email protected]
12858 S:      Maintained
12859 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
12860 F:      drivers/pci/controller/mobibeil/pcie-layerscape-gen4.c
12861
12862 PCI DRIVER FOR GENERIC OF HOSTS
12863 M:      Will Deacon <[email protected]>
12864 L:      [email protected]
12865 L:      [email protected] (moderated for non-subscribers)
12866 S:      Maintained
12867 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
12868 F:      drivers/pci/controller/pci-host-common.c
12869 F:      drivers/pci/controller/pci-host-generic.c
12870
12871 PCI DRIVER FOR IMX6
12872 M:      Richard Zhu <[email protected]>
12873 M:      Lucas Stach <[email protected]>
12874 L:      [email protected]
12875 L:      [email protected] (moderated for non-subscribers)
12876 S:      Maintained
12877 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12878 F:      drivers/pci/controller/dwc/*imx6*
12879
12880 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12881 M:      Jonathan Derrick <[email protected]>
12882 L:      [email protected]
12883 S:      Supported
12884 F:      drivers/pci/controller/vmd.c
12885
12886 PCI DRIVER FOR MICROSEMI SWITCHTEC
12887 M:      Kurt Schwemmer <[email protected]>
12888 M:      Logan Gunthorpe <[email protected]>
12889 L:      [email protected]
12890 S:      Maintained
12891 F:      Documentation/driver-api/switchtec.rst
12892 F:      Documentation/ABI/testing/sysfs-class-switchtec
12893 F:      drivers/pci/switch/switchtec*
12894 F:      include/uapi/linux/switchtec_ioctl.h
12895 F:      include/linux/switchtec.h
12896 F:      drivers/ntb/hw/mscc/
12897
12898 PCI DRIVER FOR MOBIVEIL PCIE IP
12899 M:      Karthikeyan Mitran <[email protected]>
12900 M:      Hou Zhiqiang <[email protected]>
12901 L:      [email protected]
12902 S:      Supported
12903 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12904 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
12905
12906 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12907 M:      Thomas Petazzoni <[email protected]>
12908 M:      Jason Cooper <[email protected]>
12909 L:      [email protected]
12910 L:      [email protected] (moderated for non-subscribers)
12911 S:      Maintained
12912 F:      drivers/pci/controller/*mvebu*
12913
12914 PCI DRIVER FOR NVIDIA TEGRA
12915 M:      Thierry Reding <[email protected]>
12916 L:      [email protected]
12917 L:      [email protected]
12918 S:      Supported
12919 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12920 F:      drivers/pci/controller/pci-tegra.c
12921
12922 PCI DRIVER FOR RENESAS R-CAR
12923 M:      Marek Vasut <[email protected]>
12924 M:      Yoshihiro Shimoda <[email protected]>
12925 L:      [email protected]
12926 L:      [email protected]
12927 S:      Maintained
12928 F:      drivers/pci/controller/*rcar*
12929
12930 PCI DRIVER FOR SAMSUNG EXYNOS
12931 M:      Jingoo Han <[email protected]>
12932 L:      [email protected]
12933 L:      [email protected] (moderated for non-subscribers)
12934 L:      [email protected] (moderated for non-subscribers)
12935 S:      Maintained
12936 F:      drivers/pci/controller/dwc/pci-exynos.c
12937
12938 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12939 M:      Jingoo Han <[email protected]>
12940 M:      Gustavo Pimentel <[email protected]>
12941 L:      [email protected]
12942 S:      Maintained
12943 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12944 F:      drivers/pci/controller/dwc/*designware*
12945
12946 PCI DRIVER FOR TI DRA7XX
12947 M:      Kishon Vijay Abraham I <[email protected]>
12948 L:      [email protected]
12949 L:      [email protected]
12950 S:      Supported
12951 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12952 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12953
12954 PCI DRIVER FOR TI KEYSTONE
12955 M:      Murali Karicheri <[email protected]>
12956 L:      [email protected]
12957 L:      [email protected] (moderated for non-subscribers)
12958 S:      Maintained
12959 F:      drivers/pci/controller/dwc/pci-keystone.c
12960
12961 PCI ENDPOINT SUBSYSTEM
12962 M:      Kishon Vijay Abraham I <[email protected]>
12963 M:      Lorenzo Pieralisi <[email protected]>
12964 L:      [email protected]
12965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12966 S:      Supported
12967 F:      drivers/pci/endpoint/
12968 F:      drivers/misc/pci_endpoint_test.c
12969 F:      tools/pci/
12970
12971 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12972 M:      Russell Currey <[email protected]>
12973 M:      Sam Bobroff <[email protected]>
12974 M:      Oliver O'Halloran <[email protected]>
12975 L:      [email protected]
12976 S:      Supported
12977 F:      Documentation/PCI/pci-error-recovery.rst
12978 F:      drivers/pci/pcie/aer.c
12979 F:      drivers/pci/pcie/dpc.c
12980 F:      drivers/pci/pcie/err.c
12981 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
12982 F:      arch/powerpc/kernel/eeh*.c
12983 F:      arch/powerpc/platforms/*/eeh*.c
12984 F:      arch/powerpc/include/*/eeh*.h
12985
12986 PCI ERROR RECOVERY
12987 M:      Linas Vepstas <[email protected]>
12988 L:      [email protected]
12989 S:      Supported
12990 F:      Documentation/PCI/pci-error-recovery.rst
12991
12992 PCI MSI DRIVER FOR ALTERA MSI IP
12993 M:      Ley Foon Tan <[email protected]>
12994 L:      [email protected] (moderated for non-subscribers)
12995 L:      [email protected]
12996 S:      Supported
12997 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
12998 F:      drivers/pci/controller/pcie-altera-msi.c
12999
13000 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13001 M:      Toan Le <[email protected]>
13002 L:      [email protected]
13003 L:      [email protected]
13004 S:      Maintained
13005 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13006 F:      drivers/pci/controller/pci-xgene-msi.c
13007
13008 PCI SUBSYSTEM
13009 M:      Bjorn Helgaas <[email protected]>
13010 L:      [email protected]
13011 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13013 S:      Supported
13014 F:      Documentation/devicetree/bindings/pci/
13015 F:      Documentation/PCI/
13016 F:      drivers/acpi/pci*
13017 F:      drivers/pci/
13018 F:      include/asm-generic/pci*
13019 F:      include/linux/pci*
13020 F:      include/linux/of_pci.h
13021 F:      include/uapi/linux/pci*
13022 F:      lib/pci*
13023 F:      arch/x86/pci/
13024 F:      arch/x86/kernel/quirks.c
13025 F:      arch/x86/kernel/early-quirks.c
13026
13027 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13028 M:      Lorenzo Pieralisi <[email protected]>
13029 R:      Andrew Murray <[email protected]>
13030 L:      [email protected]
13031 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13033 S:      Supported
13034 F:      drivers/pci/controller/
13035
13036 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13037 M:      Jonathan Chocron <[email protected]>
13038 L:      [email protected]
13039 S:      Maintained
13040 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13041 F:      drivers/pci/controller/dwc/pcie-al.c
13042
13043 PCIE DRIVER FOR AMLOGIC MESON
13044 M:      Yue Wang <[email protected]>
13045 L:      [email protected]
13046 L:      [email protected]
13047 S:      Maintained
13048 F:      drivers/pci/controller/dwc/pci-meson.c
13049
13050 PCIE DRIVER FOR AXIS ARTPEC
13051 M:      Jesper Nilsson <[email protected]>
13052 L:      [email protected]
13053 L:      [email protected]
13054 S:      Maintained
13055 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13056 F:      drivers/pci/controller/dwc/*artpec*
13057
13058 PCIE DRIVER FOR CAVIUM THUNDERX
13059 M:      Robert Richter <[email protected]>
13060 L:      [email protected]
13061 L:      [email protected] (moderated for non-subscribers)
13062 S:      Supported
13063 F:      drivers/pci/controller/pci-thunder-*
13064
13065 PCIE DRIVER FOR HISILICON
13066 M:      Zhou Wang <[email protected]>
13067 L:      [email protected]
13068 S:      Maintained
13069 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13070 F:      drivers/pci/controller/dwc/pcie-hisi.c
13071
13072 PCIE DRIVER FOR HISILICON KIRIN
13073 M:      Xiaowei Song <[email protected]>
13074 M:      Binghui Wang <[email protected]>
13075 L:      [email protected]
13076 S:      Maintained
13077 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13078 F:      drivers/pci/controller/dwc/pcie-kirin.c
13079
13080 PCIE DRIVER FOR HISILICON STB
13081 M:      Shawn Guo <[email protected]>
13082 L:      [email protected]
13083 S:      Maintained
13084 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13085 F:      drivers/pci/controller/dwc/pcie-histb.c
13086
13087 PCIE DRIVER FOR MEDIATEK
13088 M:      Ryder Lee <[email protected]>
13089 L:      [email protected]
13090 L:      [email protected]
13091 S:      Supported
13092 F:      Documentation/devicetree/bindings/pci/mediatek*
13093 F:      drivers/pci/controller/*mediatek*
13094
13095 PCIE DRIVER FOR QUALCOMM MSM
13096 M:      Stanimir Varbanov <[email protected]>
13097 L:      [email protected]
13098 L:      [email protected]
13099 S:      Maintained
13100 F:      drivers/pci/controller/dwc/*qcom*
13101
13102 PCIE DRIVER FOR ROCKCHIP
13103 M:      Shawn Lin <[email protected]>
13104 L:      [email protected]
13105 L:      [email protected]
13106 S:      Maintained
13107 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13108 F:      drivers/pci/controller/pcie-rockchip*
13109
13110 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13111 M:      Linus Walleij <[email protected]>
13112 L:      [email protected]
13113 S:      Maintained
13114 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13115 F:      drivers/pci/controller/pci-v3-semi.c
13116
13117 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13118 M:      Kunihiko Hayashi <[email protected]>
13119 L:      [email protected]
13120 S:      Maintained
13121 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
13122 F:      drivers/pci/controller/dwc/pcie-uniphier.c
13123
13124 PCIE DRIVER FOR ST SPEAR13XX
13125 M:      Pratyush Anand <[email protected]>
13126 L:      [email protected]
13127 S:      Maintained
13128 F:      drivers/pci/controller/dwc/*spear*
13129
13130 PCMCIA SUBSYSTEM
13131 M:      Dominik Brodowski <[email protected]>
13132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13133 S:      Odd Fixes
13134 F:      Documentation/pcmcia/
13135 F:      tools/pcmcia/
13136 F:      drivers/pcmcia/
13137 F:      include/pcmcia/
13138
13139 PCNET32 NETWORK DRIVER
13140 M:      Don Fry <[email protected]>
13141 L:      [email protected]
13142 S:      Maintained
13143 F:      drivers/net/ethernet/amd/pcnet32.c
13144
13145 PCRYPT PARALLEL CRYPTO ENGINE
13146 M:      Steffen Klassert <[email protected]>
13147 L:      [email protected]
13148 S:      Maintained
13149 F:      crypto/pcrypt.c
13150 F:      include/crypto/pcrypt.h
13151
13152 PEAQ WMI HOTKEYS DRIVER
13153 M:      Hans de Goede <[email protected]>
13154 L:      [email protected]
13155 S:      Maintained
13156 F:      drivers/platform/x86/peaq-wmi.c
13157
13158 PENSANDO ETHERNET DRIVERS
13159 M:      Shannon Nelson <[email protected]>
13160 M:      Pensando Drivers <[email protected]>
13161 L:      [email protected]
13162 S:      Supported
13163 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13164 F:      drivers/net/ethernet/pensando/
13165
13166 PER-CPU MEMORY ALLOCATOR
13167 M:      Dennis Zhou <[email protected]>
13168 M:      Tejun Heo <[email protected]>
13169 M:      Christoph Lameter <[email protected]>
13170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13171 S:      Maintained
13172 F:      include/linux/percpu*.h
13173 F:      mm/percpu*.c
13174 F:      arch/*/include/asm/percpu.h
13175
13176 PER-TASK DELAY ACCOUNTING
13177 M:      Balbir Singh <[email protected]>
13178 S:      Maintained
13179 F:      include/linux/delayacct.h
13180 F:      kernel/delayacct.c
13181
13182 PERFORMANCE EVENTS SUBSYSTEM
13183 M:      Peter Zijlstra <[email protected]>
13184 M:      Ingo Molnar <[email protected]>
13185 M:      Arnaldo Carvalho de Melo <[email protected]>
13186 R:      Mark Rutland <[email protected]>
13187 R:      Alexander Shishkin <[email protected]>
13188 R:      Jiri Olsa <[email protected]>
13189 R:      Namhyung Kim <[email protected]>
13190 L:      [email protected]
13191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13192 S:      Supported
13193 F:      kernel/events/*
13194 F:      include/linux/perf_event.h
13195 F:      include/uapi/linux/perf_event.h
13196 F:      arch/*/kernel/perf_event*.c
13197 F:      arch/*/kernel/*/perf_event*.c
13198 F:      arch/*/kernel/*/*/perf_event*.c
13199 F:      arch/*/include/asm/perf_event.h
13200 F:      arch/*/kernel/perf_callchain.c
13201 F:      arch/*/events/*
13202 F:      arch/*/events/*/*
13203 F:      tools/perf/
13204
13205 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13206 R:      John Garry <[email protected]>
13207 R:      Will Deacon <[email protected]>
13208 L:      [email protected] (moderated for non-subscribers)
13209 S:      Supported
13210 F:      tools/perf/pmu-events/arch/arm64/
13211
13212 PERSONALITY HANDLING
13213 M:      Christoph Hellwig <[email protected]>
13214 L:      [email protected]
13215 S:      Maintained
13216 F:      include/linux/personality.h
13217 F:      include/uapi/linux/personality.h
13218
13219 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13220 M:      Marcus Folkesson <[email protected]>
13221 L:      [email protected]
13222 S:      Maintained
13223 F:      Documentation/input/devices/pxrc.rst
13224 F:      drivers/input/joystick/pxrc.c
13225
13226 FLYSKY FSIA6B RC RECEIVER
13227 M:      Markus Koch <[email protected]>
13228 L:      [email protected]
13229 S:      Maintained
13230 F:      drivers/input/joystick/fsia6b.c
13231
13232 PHONET PROTOCOL
13233 M:      Remi Denis-Courmont <[email protected]>
13234 S:      Supported
13235 F:      Documentation/networking/phonet.txt
13236 F:      include/linux/phonet.h
13237 F:      include/net/phonet/
13238 F:      include/uapi/linux/phonet.h
13239 F:      net/phonet/
13240
13241 PHRAM MTD DRIVER
13242 M:      Joern Engel <[email protected]>
13243 L:      [email protected]
13244 S:      Maintained
13245 F:      drivers/mtd/devices/phram.c
13246
13247 PICOLCD HID DRIVER
13248 M:      Bruno Prémont <[email protected]>
13249 L:      [email protected]
13250 S:      Maintained
13251 F:      drivers/hid/hid-picolcd*
13252
13253 PICOXCELL SUPPORT
13254 M:      Jamie Iles <[email protected]>
13255 L:      [email protected] (moderated for non-subscribers)
13256 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13257 S:      Supported
13258 F:      arch/arm/boot/dts/picoxcell*
13259 F:      arch/arm/mach-picoxcell/
13260 F:      drivers/crypto/picoxcell*
13261
13262 PIDFD API
13263 M:      Christian Brauner <[email protected]>
13264 L:      [email protected]
13265 S:      Maintained
13266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13267 F:      samples/pidfd/
13268 F:      tools/testing/selftests/pidfd/
13269 F:      tools/testing/selftests/pid_namespace/
13270 F:      tools/testing/selftests/clone3/
13271 K:      (?i)pidfd
13272 K:      (?i)clone3
13273 K:      \b(clone_args|kernel_clone_args)\b
13274
13275 PIN CONTROL SUBSYSTEM
13276 M:      Linus Walleij <[email protected]>
13277 L:      [email protected]
13278 S:      Maintained
13279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13280 F:      Documentation/devicetree/bindings/pinctrl/
13281 F:      Documentation/driver-api/pinctl.rst
13282 F:      drivers/pinctrl/
13283 F:      include/linux/pinctrl/
13284
13285 PIN CONTROLLER - FREESCALE
13286 M:      Dong Aisheng <[email protected]>
13287 M:      Fabio Estevam <[email protected]>
13288 M:      Shawn Guo <[email protected]>
13289 M:      Stefan Agner <[email protected]>
13290 R:      Pengutronix Kernel Team <[email protected]>
13291 L:      [email protected]
13292 S:      Maintained
13293 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13294 F:      drivers/pinctrl/freescale/
13295
13296 PIN CONTROLLER - INTEL
13297 M:      Mika Westerberg <[email protected]>
13298 M:      Andy Shevchenko <[email protected]>
13299 S:      Maintained
13300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13301 F:      drivers/pinctrl/intel/
13302
13303 PIN CONTROLLER - MEDIATEK
13304 M:      Sean Wang <[email protected]>
13305 L:      [email protected] (moderated for non-subscribers)
13306 S:      Maintained
13307 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13308 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13309 F:      drivers/pinctrl/mediatek/
13310
13311 PIN CONTROLLER - MICROCHIP AT91
13312 M:      Ludovic Desroches <[email protected]>
13313 L:      [email protected] (moderated for non-subscribers)
13314 L:      [email protected]
13315 S:      Supported
13316 F:      drivers/gpio/gpio-sama5d2-piobu.c
13317 F:      drivers/pinctrl/pinctrl-at91*
13318
13319 PIN CONTROLLER - QUALCOMM
13320 M:      Bjorn Andersson <[email protected]>
13321 L:      [email protected]
13322 S:      Maintained
13323 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13324 F:      drivers/pinctrl/qcom/
13325
13326 PIN CONTROLLER - RENESAS
13327 M:      Geert Uytterhoeven <[email protected]>
13328 L:      [email protected]
13329 S:      Maintained
13330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13331 F:      drivers/pinctrl/pinctrl-rz*
13332 F:      drivers/pinctrl/sh-pfc/
13333
13334 PIN CONTROLLER - SAMSUNG
13335 M:      Tomasz Figa <[email protected]>
13336 M:      Krzysztof Kozlowski <[email protected]>
13337 M:      Sylwester Nawrocki <[email protected]>
13338 L:      [email protected] (moderated for non-subscribers)
13339 L:      [email protected] (moderated for non-subscribers)
13340 S:      Maintained
13341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13342 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13343 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13344 F:      drivers/pinctrl/samsung/
13345 F:      include/dt-bindings/pinctrl/samsung.h
13346
13347 PIN CONTROLLER - SINGLE
13348 M:      Tony Lindgren <[email protected]>
13349 M:      Haojian Zhuang <[email protected]>
13350 L:      [email protected] (moderated for non-subscribers)
13351 L:      [email protected]
13352 S:      Maintained
13353 F:      drivers/pinctrl/pinctrl-single.c
13354
13355 PIN CONTROLLER - ST SPEAR
13356 M:      Viresh Kumar <[email protected]>
13357 L:      [email protected] (moderated for non-subscribers)
13358 S:      Maintained
13359 W:      http://www.st.com/spear
13360 F:      drivers/pinctrl/spear/
13361
13362 PISTACHIO SOC SUPPORT
13363 M:      James Hartley <[email protected]>
13364 L:      [email protected]
13365 S:      Odd Fixes
13366 F:      arch/mips/pistachio/
13367 F:      arch/mips/include/asm/mach-pistachio/
13368 F:      arch/mips/boot/dts/img/pistachio*
13369 F:      arch/mips/configs/pistachio*_defconfig
13370
13371 PKTCDVD DRIVER
13372 S:      Orphan
13373 M:      [email protected]
13374 F:      drivers/block/pktcdvd.c
13375 F:      include/linux/pktcdvd.h
13376 F:      include/uapi/linux/pktcdvd.h
13377
13378 PKUNITY SOC DRIVERS
13379 M:      Guan Xuetao <[email protected]>
13380 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13381 S:      Maintained
13382 T:      git git://github.com/gxt/linux.git
13383 F:      drivers/input/serio/i8042-unicore32io.h
13384 F:      drivers/i2c/busses/i2c-puv3.c
13385 F:      drivers/video/fbdev/fb-puv3.c
13386 F:      drivers/rtc/rtc-puv3.c
13387
13388 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13389 M:      Tomasz Duszynski <[email protected]>
13390 S:      Maintained
13391 F:      drivers/iio/chemical/pms7003.c
13392 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13393
13394 PLX DMA DRIVER
13395 M:      Logan Gunthorpe <[email protected]>
13396 S:      Maintained
13397 F:      drivers/dma/plx_dma.c
13398
13399 PMBUS HARDWARE MONITORING DRIVERS
13400 M:      Guenter Roeck <[email protected]>
13401 L:      [email protected]
13402 W:      http://hwmon.wiki.kernel.org/
13403 W:      http://www.roeck-us.net/linux/drivers/
13404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13405 S:      Maintained
13406 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13407 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13408 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13409 F:      Documentation/hwmon/adm1275.rst
13410 F:      Documentation/hwmon/ibm-cffps.rst
13411 F:      Documentation/hwmon/ir35221.rst
13412 F:      Documentation/hwmon/lm25066.rst
13413 F:      Documentation/hwmon/ltc2978.rst
13414 F:      Documentation/hwmon/ltc3815.rst
13415 F:      Documentation/hwmon/max16064.rst
13416 F:      Documentation/hwmon/max20751.rst
13417 F:      Documentation/hwmon/max31785.rst
13418 F:      Documentation/hwmon/max34440.rst
13419 F:      Documentation/hwmon/max8688.rst
13420 F:      Documentation/hwmon/pmbus.rst
13421 F:      Documentation/hwmon/pmbus-core.rst
13422 F:      Documentation/hwmon/tps40422.rst
13423 F:      Documentation/hwmon/ucd9000.rst
13424 F:      Documentation/hwmon/ucd9200.rst
13425 F:      Documentation/hwmon/zl6100.rst
13426 F:      drivers/hwmon/pmbus/
13427 F:      include/linux/pmbus.h
13428
13429 PMC SIERRA MaxRAID DRIVER
13430 L:      [email protected]
13431 W:      http://www.pmc-sierra.com/
13432 S:      Orphan
13433 F:      drivers/scsi/pmcraid.*
13434
13435 PMC SIERRA PM8001 DRIVER
13436 M:      Jack Wang <[email protected]>
13437 L:      [email protected]
13438 S:      Supported
13439 F:      drivers/scsi/pm8001/
13440
13441 PM-GRAPH UTILITY
13442 M:      "Todd E Brandt" <[email protected]>
13443 L:      [email protected]
13444 W:      https://01.org/pm-graph
13445 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13446 T:      git git://github.com/intel/pm-graph
13447 S:      Supported
13448 F:      tools/power/pm-graph
13449
13450 PNI RM3100 IIO DRIVER
13451 M:      Song Qiang <[email protected]>
13452 L:      [email protected]
13453 S:      Maintained
13454 F:      drivers/iio/magnetometer/rm3100*
13455 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13456
13457 PNP SUPPORT
13458 M:      "Rafael J. Wysocki" <[email protected]>
13459 L:      [email protected]
13460 S:      Maintained
13461 F:      include/linux/pnp.h
13462 F:      drivers/pnp/
13463
13464 POSIX CLOCKS and TIMERS
13465 M:      Thomas Gleixner <[email protected]>
13466 L:      [email protected]
13467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13468 S:      Maintained
13469 F:      fs/timerfd.c
13470 F:      include/linux/timer*
13471 F:      include/linux/time_namespace.h
13472 F:      kernel/time/namespace.c
13473 F:      kernel/time/*timer*
13474
13475 POWER MANAGEMENT CORE
13476 M:      "Rafael J. Wysocki" <[email protected]>
13477 L:      [email protected]
13478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13479 B:      https://bugzilla.kernel.org
13480 S:      Supported
13481 F:      drivers/base/power/
13482 F:      include/linux/pm.h
13483 F:      include/linux/pm_*
13484 F:      include/linux/powercap.h
13485 F:      include/linux/intel_rapl.h
13486 F:      drivers/powercap/
13487 F:      kernel/configs/nopm.config
13488
13489 POWER STATE COORDINATION INTERFACE (PSCI)
13490 M:      Mark Rutland <[email protected]>
13491 M:      Lorenzo Pieralisi <[email protected]>
13492 L:      [email protected]
13493 S:      Maintained
13494 F:      drivers/firmware/psci/
13495 F:      include/linux/psci.h
13496 F:      include/uapi/linux/psci.h
13497
13498 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13499 M:      Sebastian Reichel <[email protected]>
13500 L:      [email protected]
13501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13502 S:      Maintained
13503 F:      Documentation/ABI/testing/sysfs-class-power
13504 F:      Documentation/devicetree/bindings/power/supply/
13505 F:      include/linux/power_supply.h
13506 F:      drivers/power/supply/
13507
13508 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13509 M:      Suraj Jitindar Singh <[email protected]>
13510 L:      [email protected]
13511 S:      Maintained
13512 F:      drivers/char/powernv-op-panel.c
13513
13514 PPP OVER ATM (RFC 2364)
13515 M:      Mitchell Blank Jr <[email protected]>
13516 S:      Maintained
13517 F:      net/atm/pppoatm.c
13518 F:      include/uapi/linux/atmppp.h
13519
13520 PPP OVER ETHERNET
13521 M:      Michal Ostrowski <[email protected]>
13522 S:      Maintained
13523 F:      drivers/net/ppp/pppoe.c
13524 F:      drivers/net/ppp/pppox.c
13525
13526 PPP OVER L2TP
13527 M:      James Chapman <[email protected]>
13528 S:      Maintained
13529 F:      net/l2tp/l2tp_ppp.c
13530 F:      include/linux/if_pppol2tp.h
13531 F:      include/uapi/linux/if_pppol2tp.h
13532
13533 PPP PROTOCOL DRIVERS AND COMPRESSORS
13534 M:      Paul Mackerras <[email protected]>
13535 L:      [email protected]
13536 S:      Maintained
13537 F:      drivers/net/ppp/ppp_*
13538
13539 PPS SUPPORT
13540 M:      Rodolfo Giometti <[email protected]>
13541 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13542 L:      [email protected] (subscribers-only)
13543 S:      Maintained
13544 F:      Documentation/driver-api/pps.rst
13545 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13546 F:      Documentation/ABI/testing/sysfs-pps
13547 F:      drivers/pps/
13548 F:      include/linux/pps*.h
13549 F:      include/uapi/linux/pps.h
13550
13551 PPTP DRIVER
13552 M:      Dmitry Kozlov <[email protected]>
13553 L:      [email protected]
13554 S:      Maintained
13555 F:      drivers/net/ppp/pptp.c
13556 W:      http://sourceforge.net/projects/accel-pptp
13557
13558 PRINTK
13559 M:      Petr Mladek <[email protected]>
13560 M:      Sergey Senozhatsky <[email protected]>
13561 R:      Steven Rostedt <[email protected]>
13562 S:      Maintained
13563 F:      kernel/printk/
13564 F:      include/linux/printk.h
13565
13566 PRISM54 WIRELESS DRIVER
13567 M:      Luis Chamberlain <[email protected]>
13568 L:      [email protected]
13569 W:      http://wireless.kernel.org/en/users/Drivers/p54
13570 S:      Obsolete
13571 F:      drivers/net/wireless/intersil/prism54/
13572
13573 PROC FILESYSTEM
13574 R:      Alexey Dobriyan <[email protected]>
13575 L:      [email protected]
13576 L:      [email protected]
13577 S:      Maintained
13578 F:      fs/proc/
13579 F:      include/linux/proc_fs.h
13580 F:      tools/testing/selftests/proc/
13581 F:      Documentation/filesystems/proc.rst
13582
13583 PROC SYSCTL
13584 M:      Luis Chamberlain <[email protected]>
13585 M:      Kees Cook <[email protected]>
13586 M:      Iurii Zaikin <[email protected]>
13587 L:      [email protected]
13588 L:      [email protected]
13589 S:      Maintained
13590 F:      fs/proc/proc_sysctl.c
13591 F:      include/linux/sysctl.h
13592 F:      kernel/sysctl.c
13593 F:      kernel/sysctl-test.c
13594 F:      tools/testing/selftests/sysctl/
13595
13596 PS3 NETWORK SUPPORT
13597 M:      Geoff Levand <[email protected]>
13598 L:      [email protected]
13599 L:      [email protected]
13600 S:      Maintained
13601 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13602
13603 PS3 PLATFORM SUPPORT
13604 M:      Geoff Levand <[email protected]>
13605 L:      [email protected]
13606 S:      Maintained
13607 F:      arch/powerpc/boot/ps3*
13608 F:      arch/powerpc/include/asm/lv1call.h
13609 F:      arch/powerpc/include/asm/ps3*.h
13610 F:      arch/powerpc/platforms/ps3/
13611 F:      drivers/*/ps3*
13612 F:      drivers/ps3/
13613 F:      drivers/rtc/rtc-ps3.c
13614 F:      drivers/usb/host/*ps3.c
13615 F:      sound/ppc/snd_ps3*
13616
13617 PS3VRAM DRIVER
13618 M:      Jim Paris <[email protected]>
13619 M:      Geoff Levand <[email protected]>
13620 L:      [email protected]
13621 S:      Maintained
13622 F:      drivers/block/ps3vram.c
13623
13624 PSAMPLE PACKET SAMPLING SUPPORT
13625 M:      Yotam Gigi <[email protected]>
13626 S:      Maintained
13627 F:      net/psample
13628 F:      include/net/psample.h
13629 F:      include/uapi/linux/psample.h
13630
13631 PRESSURE STALL INFORMATION (PSI)
13632 M:      Johannes Weiner <[email protected]>
13633 S:      Maintained
13634 F:      kernel/sched/psi.c
13635 F:      include/linux/psi*
13636
13637 PSTORE FILESYSTEM
13638 M:      Kees Cook <[email protected]>
13639 M:      Anton Vorontsov <[email protected]>
13640 M:      Colin Cross <[email protected]>
13641 M:      Tony Luck <[email protected]>
13642 S:      Maintained
13643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13644 F:      fs/pstore/
13645 F:      include/linux/pstore*
13646 F:      drivers/firmware/efi/efi-pstore.c
13647 F:      drivers/acpi/apei/erst.c
13648 F:      Documentation/admin-guide/ramoops.rst
13649 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13650 K:      \b(pstore|ramoops)
13651
13652 PTP HARDWARE CLOCK SUPPORT
13653 M:      Richard Cochran <[email protected]>
13654 L:      [email protected]
13655 S:      Maintained
13656 W:      http://linuxptp.sourceforge.net/
13657 F:      Documentation/ABI/testing/sysfs-ptp
13658 F:      Documentation/driver-api/ptp.rst
13659 F:      drivers/net/phy/dp83640*
13660 F:      drivers/ptp/*
13661 F:      include/linux/ptp_cl*
13662
13663 PTRACE SUPPORT
13664 M:      Oleg Nesterov <[email protected]>
13665 S:      Maintained
13666 F:      include/asm-generic/syscall.h
13667 F:      include/linux/ptrace.h
13668 F:      include/linux/regset.h
13669 F:      include/linux/tracehook.h
13670 F:      include/uapi/linux/ptrace.h
13671 F:      include/uapi/linux/ptrace.h
13672 F:      kernel/ptrace.c
13673 F:      arch/*/ptrace*.c
13674 F:      arch/*/*/ptrace*.c
13675 F:      arch/*/include/asm/ptrace*.h
13676
13677 PULSE8-CEC DRIVER
13678 M:      Hans Verkuil <[email protected]>
13679 L:      [email protected]
13680 T:      git git://linuxtv.org/media_tree.git
13681 S:      Maintained
13682 F:      drivers/media/usb/pulse8-cec/*
13683 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13684
13685 PVRUSB2 VIDEO4LINUX DRIVER
13686 M:      Mike Isely <[email protected]>
13687 L:      [email protected]       (subscribers-only)
13688 L:      [email protected]
13689 W:      http://www.isely.net/pvrusb2/
13690 T:      git git://linuxtv.org/media_tree.git
13691 S:      Maintained
13692 F:      Documentation/media/v4l-drivers/pvrusb2*
13693 F:      drivers/media/usb/pvrusb2/
13694
13695 PWC WEBCAM DRIVER
13696 M:      Hans Verkuil <[email protected]>
13697 L:      [email protected]
13698 T:      git git://linuxtv.org/media_tree.git
13699 S:      Odd Fixes
13700 F:      drivers/media/usb/pwc/*
13701 F:      include/trace/events/pwc.h
13702
13703 PWM FAN DRIVER
13704 M:      Kamil Debski <[email protected]>
13705 M:      Bartlomiej Zolnierkiewicz <[email protected]>
13706 L:      [email protected]
13707 S:      Supported
13708 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13709 F:      Documentation/hwmon/pwm-fan.rst
13710 F:      drivers/hwmon/pwm-fan.c
13711
13712 PWM IR Transmitter
13713 M:      Sean Young <[email protected]>
13714 L:      [email protected]
13715 S:      Maintained
13716 F:      drivers/media/rc/pwm-ir-tx.c
13717
13718 PWM SUBSYSTEM
13719 M:      Thierry Reding <[email protected]>
13720 R:      Uwe Kleine-König <[email protected]>
13721 L:      [email protected]
13722 S:      Maintained
13723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13724 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13725 F:      Documentation/driver-api/pwm.rst
13726 F:      Documentation/devicetree/bindings/pwm/
13727 F:      include/linux/pwm.h
13728 F:      drivers/pwm/
13729 F:      drivers/video/backlight/pwm_bl.c
13730 F:      include/linux/pwm_backlight.h
13731 F:      drivers/gpio/gpio-mvebu.c
13732 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13733 K:      pwm_(config|apply_state|ops)
13734
13735 PXA GPIO DRIVER
13736 M:      Robert Jarzmik <[email protected]>
13737 L:      [email protected]
13738 S:      Maintained
13739 F:      drivers/gpio/gpio-pxa.c
13740
13741 PXA MMCI DRIVER
13742 S:      Orphan
13743
13744 PXA RTC DRIVER
13745 M:      Robert Jarzmik <[email protected]>
13746 L:      [email protected]
13747 S:      Maintained
13748
13749 PXA2xx/PXA3xx SUPPORT
13750 M:      Daniel Mack <[email protected]>
13751 M:      Haojian Zhuang <[email protected]>
13752 M:      Robert Jarzmik <[email protected]>
13753 L:      [email protected] (moderated for non-subscribers)
13754 T:      git git://github.com/hzhuang1/linux.git
13755 T:      git git://github.com/rjarzmik/linux.git
13756 S:      Maintained
13757 F:      arch/arm/boot/dts/pxa*
13758 F:      arch/arm/mach-pxa/
13759 F:      drivers/dma/pxa*
13760 F:      drivers/pcmcia/pxa2xx*
13761 F:      drivers/pinctrl/pxa/
13762 F:      drivers/spi/spi-pxa2xx*
13763 F:      drivers/usb/gadget/udc/pxa2*
13764 F:      include/sound/pxa2xx-lib.h
13765 F:      sound/arm/pxa*
13766 F:      sound/soc/pxa/
13767
13768 QAT DRIVER
13769 M:      Giovanni Cabiddu <[email protected]>
13770 L:      [email protected]
13771 S:      Supported
13772 F:      drivers/crypto/qat/
13773
13774 QCOM AUDIO (ASoC) DRIVERS
13775 M:      Patrick Lai <[email protected]>
13776 M:      Banajit Goswami <[email protected]>
13777 L:      [email protected] (moderated for non-subscribers)
13778 S:      Supported
13779 F:      sound/soc/qcom/
13780
13781 QCOM IPA DRIVER
13782 M:      Alex Elder <[email protected]>
13783 L:      [email protected]
13784 S:      Supported
13785 F:      drivers/net/ipa/
13786
13787 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13788 M:      Gabriel Somlo <[email protected]>
13789 M:      "Michael S. Tsirkin" <[email protected]>
13790 L:      [email protected]
13791 S:      Maintained
13792 F:      drivers/firmware/qemu_fw_cfg.c
13793 F:      include/uapi/linux/qemu_fw_cfg.h
13794
13795 QIB DRIVER
13796 M:      Dennis Dalessandro <[email protected]>
13797 M:      Mike Marciniszyn <[email protected]>
13798 L:      [email protected]
13799 S:      Supported
13800 F:      drivers/infiniband/hw/qib/
13801
13802 QLOGIC QL41xxx FCOE DRIVER
13803 M:      [email protected]
13804 L:      [email protected]
13805 S:      Supported
13806 F:      drivers/scsi/qedf/
13807
13808 QLOGIC QL41xxx ISCSI DRIVER
13809 M:      [email protected]
13810 L:      [email protected]
13811 S:      Supported
13812 F:      drivers/scsi/qedi/
13813
13814 QLOGIC QL4xxx ETHERNET DRIVER
13815 M:      Ariel Elior <[email protected]>
13816 M:      [email protected]
13817 L:      [email protected]
13818 S:      Supported
13819 F:      drivers/net/ethernet/qlogic/qed/
13820 F:      include/linux/qed/
13821 F:      drivers/net/ethernet/qlogic/qede/
13822
13823 QLOGIC QL4xxx RDMA DRIVER
13824 M:      Michal Kalderon <[email protected]>
13825 M:      Ariel Elior <[email protected]>
13826 L:      [email protected]
13827 S:      Supported
13828 F:      drivers/infiniband/hw/qedr/
13829 F:      include/uapi/rdma/qedr-abi.h
13830
13831 QLOGIC QLA1280 SCSI DRIVER
13832 M:      Michael Reed <[email protected]>
13833 L:      [email protected]
13834 S:      Maintained
13835 F:      drivers/scsi/qla1280.[ch]
13836
13837 QLOGIC QLA2XXX FC-SCSI DRIVER
13838 M:      [email protected]
13839 L:      [email protected]
13840 S:      Supported
13841 F:      Documentation/scsi/LICENSE.qla2xxx
13842 F:      drivers/scsi/qla2xxx/
13843
13844 QLOGIC QLA3XXX NETWORK DRIVER
13845 M:      [email protected]
13846 L:      [email protected]
13847 S:      Supported
13848 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13849 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13850
13851 QLOGIC QLA4XXX iSCSI DRIVER
13852 M:      [email protected]
13853 L:      [email protected]
13854 S:      Supported
13855 F:      Documentation/scsi/LICENSE.qla4xxx
13856 F:      drivers/scsi/qla4xxx/
13857
13858 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13859 M:      Shahed Shaikh <[email protected]>
13860 M:      Manish Chopra <[email protected]>
13861 M:      [email protected]
13862 L:      [email protected]
13863 S:      Supported
13864 F:      drivers/net/ethernet/qlogic/qlcnic/
13865
13866 QLOGIC QLGE 10Gb ETHERNET DRIVER
13867 M:      Manish Chopra <[email protected]>
13868 M:      [email protected]
13869 L:      [email protected]
13870 S:      Supported
13871 F:      drivers/staging/qlge/
13872
13873 QM1D1B0004 MEDIA DRIVER
13874 M:      Akihiro Tsukada <[email protected]>
13875 L:      [email protected]
13876 S:      Odd Fixes
13877 F:      drivers/media/tuners/qm1d1b0004*
13878
13879 QM1D1C0042 MEDIA DRIVER
13880 M:      Akihiro Tsukada <[email protected]>
13881 L:      [email protected]
13882 S:      Odd Fixes
13883 F:      drivers/media/tuners/qm1d1c0042*
13884
13885 QNX4 FILESYSTEM
13886 M:      Anders Larsen <[email protected]>
13887 W:      http://www.alarsen.net/linux/qnx4fs/
13888 S:      Maintained
13889 F:      fs/qnx4/
13890 F:      include/uapi/linux/qnx4_fs.h
13891 F:      include/uapi/linux/qnxtypes.h
13892
13893 QORIQ DPAA2 FSL-MC BUS DRIVER
13894 M:      Stuart Yoder <[email protected]>
13895 M:      Laurentiu Tudor <[email protected]>
13896 L:      [email protected]
13897 S:      Maintained
13898 F:      drivers/bus/fsl-mc/
13899 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13900 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13901
13902 QT1010 MEDIA DRIVER
13903 M:      Antti Palosaari <[email protected]>
13904 L:      [email protected]
13905 W:      https://linuxtv.org
13906 W:      http://palosaari.fi/linux/
13907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13908 T:      git git://linuxtv.org/anttip/media_tree.git
13909 S:      Maintained
13910 F:      drivers/media/tuners/qt1010*
13911
13912 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13913 M:      Kalle Valo <[email protected]>
13914 L:      [email protected]
13915 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13917 S:      Supported
13918 F:      drivers/net/wireless/ath/ath10k/
13919
13920 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
13921 M:      Kalle Valo <[email protected]>
13922 L:      [email protected]
13923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13924 S:      Supported
13925 F:      drivers/net/wireless/ath/ath11k/
13926
13927 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13928 M:      QCA ath9k Development <[email protected]>
13929 L:      [email protected]
13930 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13931 S:      Supported
13932 F:      drivers/net/wireless/ath/ath9k/
13933
13934 QUALCOMM CAMERA SUBSYSTEM DRIVER
13935 M:      Todor Tomov <[email protected]>
13936 L:      [email protected]
13937 S:      Maintained
13938 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13939 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13940 F:      drivers/media/platform/qcom/camss/
13941
13942 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13943 M:      Ilia Lin <[email protected]>
13944 L:      [email protected]
13945 S:      Maintained
13946 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13947 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13948
13949 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
13950 M:      Niklas Cassel <[email protected]>
13951 L:      [email protected]
13952 L:      [email protected]
13953 S:      Maintained
13954 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
13955 F:      drivers/power/avs/qcom-cpr.c
13956
13957 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13958 M:      Timur Tabi <[email protected]>
13959 L:      [email protected]
13960 S:      Maintained
13961 F:      drivers/net/ethernet/qualcomm/emac/
13962
13963 QUALCOMM ETHQOS ETHERNET DRIVER
13964 M:      Vinod Koul <[email protected]>
13965 L:      [email protected]
13966 S:      Maintained
13967 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13968 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13969
13970 QUALCOMM GENERIC INTERFACE I2C DRIVER
13971 M:      Alok Chauhan <[email protected]>
13972 L:      [email protected]
13973 L:      [email protected]
13974 S:      Supported
13975 F:      drivers/i2c/busses/i2c-qcom-geni.c
13976
13977 QUALCOMM HEXAGON ARCHITECTURE
13978 M:      Brian Cain <[email protected]>
13979 L:      [email protected]
13980 S:      Supported
13981 F:      arch/hexagon/
13982
13983 QUALCOMM HIDMA DRIVER
13984 M:      Sinan Kaya <[email protected]>
13985 L:      [email protected]
13986 L:      [email protected]
13987 L:      [email protected]
13988 S:      Supported
13989 F:      drivers/dma/qcom/hidma*
13990
13991 QUALCOMM IOMMU
13992 M:      Rob Clark <[email protected]>
13993 L:      [email protected]
13994 L:      [email protected]
13995 S:      Maintained
13996 F:      drivers/iommu/qcom_iommu.c
13997
13998 QUALCOMM RMNET DRIVER
13999 M:      Subash Abhinov Kasiviswanathan <[email protected]>
14000 M:      Sean Tranchetti <[email protected]>
14001 L:      [email protected]
14002 S:      Maintained
14003 F:      drivers/net/ethernet/qualcomm/rmnet/
14004 F:      Documentation/networking/device_drivers/qualcomm/rmnet.txt
14005 F:      include/linux/if_rmnet.h
14006
14007 QUALCOMM TSENS THERMAL DRIVER
14008 M:      Amit Kucheria <[email protected]>
14009 L:      [email protected]
14010 L:      [email protected]
14011 S:      Maintained
14012 F:      drivers/thermal/qcom/
14013 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14014
14015 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14016 M:      Stanimir Varbanov <[email protected]>
14017 L:      [email protected]
14018 L:      [email protected]
14019 T:      git git://linuxtv.org/media_tree.git
14020 S:      Maintained
14021 F:      drivers/media/platform/qcom/venus/
14022 F:      Documentation/devicetree/bindings/media/*venus*
14023
14024 QUALCOMM WCN36XX WIRELESS DRIVER
14025 M:      Kalle Valo <[email protected]>
14026 L:      [email protected]
14027 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
14028 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14029 S:      Supported
14030 F:      drivers/net/wireless/ath/wcn36xx/
14031
14032 QUANTENNA QTNFMAC WIRELESS DRIVER
14033 M:      Igor Mitsyanko <[email protected]>
14034 M:      Avinash Patil <[email protected]>
14035 M:      Sergey Matyukevich <[email protected]>
14036 L:      [email protected]
14037 S:      Maintained
14038 F:      drivers/net/wireless/quantenna
14039
14040 RADEON and AMDGPU DRM DRIVERS
14041 M:      Alex Deucher <[email protected]>
14042 M:      Christian König <[email protected]>
14043 M:      David (ChunMing) Zhou <[email protected]>
14044 L:      [email protected]
14045 T:      git git://people.freedesktop.org/~agd5f/linux
14046 S:      Supported
14047 F:      drivers/gpu/drm/radeon/
14048 F:      include/uapi/drm/radeon_drm.h
14049 F:      drivers/gpu/drm/amd/
14050 F:      include/uapi/drm/amdgpu_drm.h
14051
14052 RADEON FRAMEBUFFER DISPLAY DRIVER
14053 M:      Benjamin Herrenschmidt <[email protected]>
14054 L:      [email protected]
14055 S:      Maintained
14056 F:      drivers/video/fbdev/aty/radeon*
14057 F:      include/uapi/linux/radeonfb.h
14058
14059 RADIOSHARK RADIO DRIVER
14060 M:      Hans Verkuil <[email protected]>
14061 L:      [email protected]
14062 T:      git git://linuxtv.org/media_tree.git
14063 S:      Maintained
14064 F:      drivers/media/radio/radio-shark.c
14065
14066 RADIOSHARK2 RADIO DRIVER
14067 M:      Hans Verkuil <[email protected]>
14068 L:      [email protected]
14069 T:      git git://linuxtv.org/media_tree.git
14070 S:      Maintained
14071 F:      drivers/media/radio/radio-shark2.c
14072 F:      drivers/media/radio/radio-tea5777.c
14073
14074 RADOS BLOCK DEVICE (RBD)
14075 M:      Ilya Dryomov <[email protected]>
14076 M:      Sage Weil <[email protected]>
14077 R:      Dongsheng Yang <[email protected]>
14078 L:      [email protected]
14079 W:      http://ceph.com/
14080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
14081 T:      git git://github.com/ceph/ceph-client.git
14082 S:      Supported
14083 F:      Documentation/ABI/testing/sysfs-bus-rbd
14084 F:      drivers/block/rbd.c
14085 F:      drivers/block/rbd_types.h
14086
14087 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14088 M:      Paul Mackerras <[email protected]>
14089 L:      [email protected]
14090 S:      Maintained
14091 F:      drivers/video/fbdev/aty/aty128fb.c
14092
14093 RAINSHADOW-CEC DRIVER
14094 M:      Hans Verkuil <[email protected]>
14095 L:      [email protected]
14096 T:      git git://linuxtv.org/media_tree.git
14097 S:      Maintained
14098 F:      drivers/media/usb/rainshadow-cec/*
14099
14100 RALINK MIPS ARCHITECTURE
14101 M:      John Crispin <[email protected]>
14102 L:      [email protected]
14103 S:      Maintained
14104 F:      arch/mips/ralink
14105
14106 RALINK RT2X00 WIRELESS LAN DRIVER
14107 M:      Stanislaw Gruszka <[email protected]>
14108 M:      Helmut Schaa <[email protected]>
14109 L:      [email protected]
14110 S:      Maintained
14111 F:      drivers/net/wireless/ralink/rt2x00/
14112
14113 RAMDISK RAM BLOCK DEVICE DRIVER
14114 M:      Jens Axboe <[email protected]>
14115 S:      Maintained
14116 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14117 F:      drivers/block/brd.c
14118
14119 RANCHU VIRTUAL BOARD FOR MIPS
14120 M:      Miodrag Dinic <[email protected]>
14121 L:      [email protected]
14122 S:      Supported
14123 F:      arch/mips/generic/board-ranchu.c
14124 F:      arch/mips/configs/generic/board-ranchu.config
14125
14126 RANDOM NUMBER DRIVER
14127 M:      "Theodore Ts'o" <[email protected]>
14128 S:      Maintained
14129 F:      drivers/char/random.c
14130
14131 RAPIDIO SUBSYSTEM
14132 M:      Matt Porter <[email protected]>
14133 M:      Alexandre Bounine <[email protected]>
14134 S:      Maintained
14135 F:      drivers/rapidio/
14136
14137 RAS INFRASTRUCTURE
14138 M:      Tony Luck <[email protected]>
14139 M:      Borislav Petkov <[email protected]>
14140 L:      [email protected]
14141 S:      Maintained
14142 F:      drivers/ras/
14143 F:      include/linux/ras.h
14144 F:      include/ras/ras_event.h
14145 F:      Documentation/admin-guide/ras.rst
14146
14147 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14148 L:      [email protected]
14149 S:      Orphan
14150 F:      drivers/net/wireless/ray*
14151
14152 RCUTORTURE TEST FRAMEWORK
14153 M:      "Paul E. McKenney" <[email protected]>
14154 M:      Josh Triplett <[email protected]>
14155 R:      Steven Rostedt <[email protected]>
14156 R:      Mathieu Desnoyers <[email protected]>
14157 R:      Lai Jiangshan <[email protected]>
14158 L:      [email protected]
14159 S:      Supported
14160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14161 F:      tools/testing/selftests/rcutorture
14162
14163 RDC R-321X SoC
14164 M:      Florian Fainelli <[email protected]>
14165 S:      Maintained
14166
14167 RDC R6040 FAST ETHERNET DRIVER
14168 M:      Florian Fainelli <[email protected]>
14169 L:      [email protected]
14170 S:      Maintained
14171 F:      drivers/net/ethernet/rdc/r6040.c
14172
14173 RDMAVT - RDMA verbs software
14174 M:      Dennis Dalessandro <[email protected]>
14175 M:      Mike Marciniszyn <[email protected]>
14176 L:      [email protected]
14177 S:      Supported
14178 F:      drivers/infiniband/sw/rdmavt
14179
14180 RDS - RELIABLE DATAGRAM SOCKETS
14181 M:      Santosh Shilimkar <[email protected]>
14182 L:      [email protected]
14183 L:      [email protected]
14184 L:      [email protected] (moderated for non-subscribers)
14185 W:      https://oss.oracle.com/projects/rds/
14186 S:      Supported
14187 F:      net/rds/
14188 F:      Documentation/networking/rds.txt
14189
14190 RDT - RESOURCE ALLOCATION
14191 M:      Fenghua Yu <[email protected]>
14192 M:      Reinette Chatre <[email protected]>
14193 L:      [email protected]
14194 S:      Supported
14195 F:      arch/x86/kernel/cpu/resctrl/
14196 F:      arch/x86/include/asm/resctrl_sched.h
14197 F:      Documentation/x86/resctrl*
14198 F:      tools/testing/selftests/resctrl/
14199
14200 READ-COPY UPDATE (RCU)
14201 M:      "Paul E. McKenney" <[email protected]>
14202 M:      Josh Triplett <[email protected]>
14203 R:      Steven Rostedt <[email protected]>
14204 R:      Mathieu Desnoyers <[email protected]>
14205 R:      Lai Jiangshan <[email protected]>
14206 R:      Joel Fernandes <[email protected]>
14207 L:      [email protected]
14208 W:      http://www.rdrop.com/users/paulmck/RCU/
14209 S:      Supported
14210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14211 F:      Documentation/RCU/
14212 X:      Documentation/RCU/torture.txt
14213 F:      include/linux/rcu*
14214 X:      include/linux/srcu*.h
14215 F:      kernel/rcu/
14216 X:      kernel/rcu/srcu*.c
14217
14218 REAL TIME CLOCK (RTC) SUBSYSTEM
14219 M:      Alessandro Zummo <[email protected]>
14220 M:      Alexandre Belloni <[email protected]>
14221 L:      [email protected]
14222 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14224 S:      Maintained
14225 F:      Documentation/devicetree/bindings/rtc/
14226 F:      Documentation/admin-guide/rtc.rst
14227 F:      drivers/rtc/
14228 F:      include/linux/rtc.h
14229 F:      include/uapi/linux/rtc.h
14230 F:      include/linux/rtc/
14231 F:      include/linux/platform_data/rtc-*
14232 F:      tools/testing/selftests/rtc/
14233
14234 REALTEK AUDIO CODECS
14235 M:      Oder Chiou <[email protected]>
14236 S:      Maintained
14237 F:      sound/soc/codecs/rt*
14238 F:      include/sound/rt*.h
14239
14240 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14241 M:      Linus Walleij <[email protected]>
14242 S:      Maintained
14243 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14244 F:      drivers/net/dsa/realtek-smi*
14245 F:      drivers/net/dsa/rtl83*
14246
14247 REDPINE WIRELESS DRIVER
14248 M:      Amitkumar Karwar <[email protected]>
14249 M:      Siva Rebbagondla <[email protected]>
14250 L:      [email protected]
14251 S:      Maintained
14252 F:      drivers/net/wireless/rsi/
14253
14254 REGISTER MAP ABSTRACTION
14255 M:      Mark Brown <[email protected]>
14256 L:      [email protected]
14257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14258 S:      Supported
14259 F:      Documentation/devicetree/bindings/regmap/
14260 F:      drivers/base/regmap/
14261 F:      include/linux/regmap.h
14262
14263 REISERFS FILE SYSTEM
14264 L:      [email protected]
14265 S:      Supported
14266 F:      fs/reiserfs/
14267
14268 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14269 M:      Ohad Ben-Cohen <[email protected]>
14270 M:      Bjorn Andersson <[email protected]>
14271 L:      [email protected]
14272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14273 S:      Maintained
14274 F:      Documentation/devicetree/bindings/remoteproc/
14275 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14276 F:      Documentation/remoteproc.txt
14277 F:      drivers/remoteproc/
14278 F:      include/linux/remoteproc.h
14279 F:      include/linux/remoteproc/
14280
14281 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14282 M:      Ohad Ben-Cohen <[email protected]>
14283 M:      Bjorn Andersson <[email protected]>
14284 L:      [email protected]
14285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14286 S:      Maintained
14287 F:      drivers/rpmsg/
14288 F:      Documentation/rpmsg.txt
14289 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14290 F:      include/linux/rpmsg.h
14291 F:      include/linux/rpmsg/
14292 F:      include/uapi/linux/rpmsg.h
14293 F:      samples/rpmsg/
14294
14295 RENESAS CLOCK DRIVERS
14296 M:      Geert Uytterhoeven <[email protected]>
14297 L:      [email protected]
14298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14299 S:      Supported
14300 F:      drivers/clk/renesas/
14301
14302 RENESAS EMEV2 I2C DRIVER
14303 M:      Wolfram Sang <[email protected]>
14304 S:      Supported
14305 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14306 F:      drivers/i2c/busses/i2c-emev2.c
14307
14308 RENESAS ETHERNET DRIVERS
14309 R:      Sergei Shtylyov <[email protected]>
14310 L:      [email protected]
14311 L:      [email protected]
14312 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14313 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14314 F:      drivers/net/ethernet/renesas/
14315 F:      include/linux/sh_eth.h
14316
14317 RENESAS R-CAR GYROADC DRIVER
14318 M:      Marek Vasut <[email protected]>
14319 L:      [email protected]
14320 S:      Supported
14321 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14322 F:      drivers/iio/adc/rcar-gyroadc.c
14323
14324 RENESAS R-CAR I2C DRIVERS
14325 M:      Wolfram Sang <[email protected]>
14326 S:      Supported
14327 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14328 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14329 F:      drivers/i2c/busses/i2c-rcar.c
14330 F:      drivers/i2c/busses/i2c-sh_mobile.c
14331
14332 RENESAS RIIC DRIVER
14333 M:      Chris Brandt <[email protected]>
14334 S:      Supported
14335 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14336 F:      drivers/i2c/busses/i2c-riic.c
14337
14338 RENESAS USB PHY DRIVER
14339 M:      Yoshihiro Shimoda <[email protected]>
14340 L:      [email protected]
14341 S:      Maintained
14342 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14343
14344 RESET CONTROLLER FRAMEWORK
14345 M:      Philipp Zabel <[email protected]>
14346 T:      git git://git.pengutronix.de/git/pza/linux
14347 S:      Maintained
14348 F:      drivers/reset/
14349 F:      Documentation/devicetree/bindings/reset/
14350 F:      include/dt-bindings/reset/
14351 F:      include/linux/reset.h
14352 F:      include/linux/reset/
14353 F:      include/linux/reset-controller.h
14354 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14355
14356 RESTARTABLE SEQUENCES SUPPORT
14357 M:      Mathieu Desnoyers <[email protected]>
14358 M:      Peter Zijlstra <[email protected]>
14359 M:      "Paul E. McKenney" <[email protected]>
14360 M:      Boqun Feng <[email protected]>
14361 L:      [email protected]
14362 S:      Supported
14363 F:      kernel/rseq.c
14364 F:      include/uapi/linux/rseq.h
14365 F:      include/trace/events/rseq.h
14366 F:      tools/testing/selftests/rseq/
14367
14368 RFKILL
14369 M:      Johannes Berg <[email protected]>
14370 L:      [email protected]
14371 W:      http://wireless.kernel.org/
14372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14374 S:      Maintained
14375 F:      Documentation/driver-api/rfkill.rst
14376 F:      Documentation/ABI/stable/sysfs-class-rfkill
14377 F:      net/rfkill/
14378 F:      include/linux/rfkill.h
14379 F:      include/uapi/linux/rfkill.h
14380
14381 RHASHTABLE
14382 M:      Thomas Graf <[email protected]>
14383 M:      Herbert Xu <[email protected]>
14384 L:      [email protected]
14385 S:      Maintained
14386 F:      lib/rhashtable.c
14387 F:      lib/test_rhashtable.c
14388 F:      include/linux/rhashtable.h
14389 F:      include/linux/rhashtable-types.h
14390
14391 RICOH R5C592 MEMORYSTICK DRIVER
14392 M:      Maxim Levitsky <[email protected]>
14393 S:      Maintained
14394 F:      drivers/memstick/host/r592.*
14395
14396 RICOH SMARTMEDIA/XD DRIVER
14397 M:      Maxim Levitsky <[email protected]>
14398 S:      Maintained
14399 F:      drivers/mtd/nand/raw/r852.c
14400 F:      drivers/mtd/nand/raw/r852.h
14401
14402 RISC-V ARCHITECTURE
14403 M:      Paul Walmsley <[email protected]>
14404 M:      Palmer Dabbelt <[email protected]>
14405 M:      Albert Ou <[email protected]>
14406 L:      [email protected]
14407 P:      Documentation/riscv/patch-acceptance.rst
14408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14409 S:      Supported
14410 F:      arch/riscv/
14411 K:      riscv
14412 N:      riscv
14413
14414 ROCCAT DRIVERS
14415 M:      Stefan Achatz <[email protected]>
14416 W:      http://sourceforge.net/projects/roccat/
14417 S:      Maintained
14418 F:      drivers/hid/hid-roccat*
14419 F:      include/linux/hid-roccat*
14420 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14421
14422 ROCKCHIP ISP V1 DRIVER
14423 M:      Helen Koike <[email protected]>
14424 L:      [email protected]
14425 S:      Maintained
14426 F:      drivers/staging/media/rkisp1/
14427
14428 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14429 M:      Jacob Chen <[email protected]>
14430 M:      Ezequiel Garcia <[email protected]>
14431 L:      [email protected]
14432 S:      Maintained
14433 F:      drivers/media/platform/rockchip/rga/
14434 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
14435
14436 HANTRO VPU CODEC DRIVER
14437 M:      Ezequiel Garcia <[email protected]>
14438 M:      Philipp Zabel <[email protected]>
14439 L:      [email protected]
14440 L:      [email protected]
14441 S:      Maintained
14442 F:      drivers/staging/media/hantro/
14443 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
14444 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
14445
14446 ROCKER DRIVER
14447 M:      Jiri Pirko <[email protected]>
14448 L:      [email protected]
14449 S:      Supported
14450 F:      drivers/net/ethernet/rocker/
14451
14452 ROCKETPORT DRIVER
14453 W:      http://www.comtrol.com
14454 S:      Maintained
14455 F:      Documentation/driver-api/serial/rocket.rst
14456 F:      drivers/tty/rocket*
14457
14458 ROCKETPORT EXPRESS/INFINITY DRIVER
14459 M:      Kevin Cernekee <[email protected]>
14460 L:      [email protected]
14461 S:      Odd Fixes
14462 F:      drivers/tty/serial/rp2.*
14463
14464 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14465 M:      Tomasz Duszynski <[email protected]>
14466 S:      Maintained
14467 F:      drivers/iio/light/bh1750.c
14468 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14469
14470 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14471 M:      Marek Vasut <[email protected]>
14472 L:      [email protected]
14473 L:      [email protected]
14474 S:      Supported
14475 F:      drivers/mfd/bd9571mwv.c
14476 F:      drivers/regulator/bd9571mwv-regulator.c
14477 F:      drivers/gpio/gpio-bd9571mwv.c
14478 F:      include/linux/mfd/bd9571mwv.h
14479 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14480
14481 ROSE NETWORK LAYER
14482 M:      Ralf Baechle <[email protected]>
14483 L:      [email protected]
14484 W:      http://www.linux-ax25.org/
14485 S:      Maintained
14486 F:      include/net/rose.h
14487 F:      include/uapi/linux/rose.h
14488 F:      net/rose/
14489
14490 ROTATION DRIVER FOR ALLWINNER A83T
14491 M:      Jernej Skrabec <[email protected]>
14492 L:      [email protected]
14493 T:      git git://linuxtv.org/media_tree.git
14494 S:      Maintained
14495 F:      drivers/media/platform/sunxi/sun8i-rotate/
14496 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14497
14498 RTL2830 MEDIA DRIVER
14499 M:      Antti Palosaari <[email protected]>
14500 L:      [email protected]
14501 W:      https://linuxtv.org
14502 W:      http://palosaari.fi/linux/
14503 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14504 T:      git git://linuxtv.org/anttip/media_tree.git
14505 S:      Maintained
14506 F:      drivers/media/dvb-frontends/rtl2830*
14507
14508 RTL2832 MEDIA DRIVER
14509 M:      Antti Palosaari <[email protected]>
14510 L:      [email protected]
14511 W:      https://linuxtv.org
14512 W:      http://palosaari.fi/linux/
14513 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14514 T:      git git://linuxtv.org/anttip/media_tree.git
14515 S:      Maintained
14516 F:      drivers/media/dvb-frontends/rtl2832*
14517
14518 RTL2832_SDR MEDIA DRIVER
14519 M:      Antti Palosaari <[email protected]>
14520 L:      [email protected]
14521 W:      https://linuxtv.org
14522 W:      http://palosaari.fi/linux/
14523 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14524 T:      git git://linuxtv.org/anttip/media_tree.git
14525 S:      Maintained
14526 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14527
14528 RTL8180 WIRELESS DRIVER
14529 L:      [email protected]
14530 W:      http://wireless.kernel.org/
14531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14532 S:      Orphan
14533 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14534
14535 RTL8187 WIRELESS DRIVER
14536 M:      Herton Ronaldo Krzesinski <[email protected]>
14537 M:      Hin-Tak Leung <[email protected]>
14538 M:      Larry Finger <[email protected]>
14539 L:      [email protected]
14540 W:      http://wireless.kernel.org/
14541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14542 S:      Maintained
14543 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14544
14545 REALTEK WIRELESS DRIVER (rtlwifi family)
14546 M:      Ping-Ke Shih <[email protected]>
14547 L:      [email protected]
14548 W:      http://wireless.kernel.org/
14549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14550 S:      Maintained
14551 F:      drivers/net/wireless/realtek/rtlwifi/
14552
14553 REALTEK WIRELESS DRIVER (rtw88)
14554 M:      Yan-Hsuan Chuang <[email protected]>
14555 L:      [email protected]
14556 S:      Maintained
14557 F:      drivers/net/wireless/realtek/rtw88/
14558
14559 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14560 M:      Jes Sorensen <[email protected]>
14561 L:      [email protected]
14562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14563 S:      Maintained
14564 F:      drivers/net/wireless/realtek/rtl8xxxu/
14565
14566 RXRPC SOCKETS (AF_RXRPC)
14567 M:      David Howells <[email protected]>
14568 L:      [email protected]
14569 S:      Supported
14570 F:      net/rxrpc/
14571 F:      include/keys/rxrpc-type.h
14572 F:      include/net/af_rxrpc.h
14573 F:      include/trace/events/rxrpc.h
14574 F:      include/uapi/linux/rxrpc.h
14575 F:      Documentation/networking/rxrpc.txt
14576 W:      https://www.infradead.org/~dhowells/kafs/
14577
14578 S3 SAVAGE FRAMEBUFFER DRIVER
14579 M:      Antonino Daplas <[email protected]>
14580 L:      [email protected]
14581 S:      Maintained
14582 F:      drivers/video/fbdev/savage/
14583
14584 S390
14585 M:      Heiko Carstens <[email protected]>
14586 M:      Vasily Gorbik <[email protected]>
14587 M:      Christian Borntraeger <[email protected]>
14588 L:      [email protected]
14589 W:      http://www.ibm.com/developerworks/linux/linux390/
14590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14591 S:      Supported
14592 F:      arch/s390/
14593 F:      drivers/s390/
14594 F:      Documentation/s390/
14595 F:      Documentation/driver-api/s390-drivers.rst
14596
14597 S390 COMMON I/O LAYER
14598 M:      Vineeth Vijayan <[email protected]>
14599 M:      Peter Oberparleiter <[email protected]>
14600 L:      [email protected]
14601 W:      http://www.ibm.com/developerworks/linux/linux390/
14602 S:      Supported
14603 F:      drivers/s390/cio/
14604
14605 S390 DASD DRIVER
14606 M:      Stefan Haberland <[email protected]>
14607 M:      Jan Hoeppner <[email protected]>
14608 L:      [email protected]
14609 W:      http://www.ibm.com/developerworks/linux/linux390/
14610 S:      Supported
14611 F:      drivers/s390/block/dasd*
14612 F:      block/partitions/ibm.c
14613
14614 S390 IOMMU (PCI)
14615 M:      Gerald Schaefer <[email protected]>
14616 L:      [email protected]
14617 W:      http://www.ibm.com/developerworks/linux/linux390/
14618 S:      Supported
14619 F:      drivers/iommu/s390-iommu.c
14620
14621 S390 IUCV NETWORK LAYER
14622 M:      Julian Wiedmann <[email protected]>
14623 M:      Ursula Braun <[email protected]>
14624 L:      [email protected]
14625 W:      http://www.ibm.com/developerworks/linux/linux390/
14626 S:      Supported
14627 F:      drivers/s390/net/*iucv*
14628 F:      include/net/iucv/
14629 F:      net/iucv/
14630
14631 S390 NETWORK DRIVERS
14632 M:      Julian Wiedmann <[email protected]>
14633 M:      Ursula Braun <[email protected]>
14634 L:      [email protected]
14635 W:      http://www.ibm.com/developerworks/linux/linux390/
14636 S:      Supported
14637 F:      drivers/s390/net/
14638
14639 S390 PCI SUBSYSTEM
14640 M:      Niklas Schnelle <[email protected]>
14641 M:      Gerald Schaefer <[email protected]>
14642 L:      [email protected]
14643 W:      http://www.ibm.com/developerworks/linux/linux390/
14644 S:      Supported
14645 F:      arch/s390/pci/
14646 F:      drivers/pci/hotplug/s390_pci_hpc.c
14647
14648 S390 VFIO-CCW DRIVER
14649 M:      Cornelia Huck <[email protected]>
14650 M:      Eric Farman <[email protected]>
14651 R:      Halil Pasic <[email protected]>
14652 L:      [email protected]
14653 L:      [email protected]
14654 S:      Supported
14655 F:      drivers/s390/cio/vfio_ccw*
14656 F:      Documentation/s390/vfio-ccw.rst
14657 F:      include/uapi/linux/vfio_ccw.h
14658
14659 S390 ZCRYPT DRIVER
14660 M:      Harald Freudenberger <[email protected]>
14661 L:      [email protected]
14662 W:      http://www.ibm.com/developerworks/linux/linux390/
14663 S:      Supported
14664 F:      drivers/s390/crypto/
14665
14666 S390 VFIO AP DRIVER
14667 M:      Tony Krowiak <[email protected]>
14668 M:      Pierre Morel <[email protected]>
14669 M:      Halil Pasic <[email protected]>
14670 L:      [email protected]
14671 W:      http://www.ibm.com/developerworks/linux/linux390/
14672 S:      Supported
14673 F:      drivers/s390/crypto/vfio_ap_drv.c
14674 F:      drivers/s390/crypto/vfio_ap_private.h
14675 F:      drivers/s390/crypto/vfio_ap_ops.c
14676 F:      Documentation/s390/vfio-ap.rst
14677
14678 S390 ZFCP DRIVER
14679 M:      Steffen Maier <[email protected]>
14680 M:      Benjamin Block <[email protected]>
14681 L:      [email protected]
14682 W:      http://www.ibm.com/developerworks/linux/linux390/
14683 S:      Supported
14684 F:      drivers/s390/scsi/zfcp_*
14685
14686 S3C24XX SD/MMC Driver
14687 M:      Ben Dooks <[email protected]>
14688 L:      [email protected] (moderated for non-subscribers)
14689 S:      Supported
14690 F:      drivers/mmc/host/s3cmci.*
14691
14692 SAA6588 RDS RECEIVER DRIVER
14693 M:      Hans Verkuil <[email protected]>
14694 L:      [email protected]
14695 T:      git git://linuxtv.org/media_tree.git
14696 W:      https://linuxtv.org
14697 S:      Odd Fixes
14698 F:      drivers/media/i2c/saa6588*
14699
14700 SAA7134 VIDEO4LINUX DRIVER
14701 M:      Mauro Carvalho Chehab <[email protected]>
14702 L:      [email protected]
14703 W:      https://linuxtv.org
14704 T:      git git://linuxtv.org/media_tree.git
14705 S:      Odd fixes
14706 F:      Documentation/media/v4l-drivers/saa7134*
14707 F:      drivers/media/pci/saa7134/
14708
14709 SAA7146 VIDEO4LINUX-2 DRIVER
14710 M:      Hans Verkuil <[email protected]>
14711 L:      [email protected]
14712 T:      git git://linuxtv.org/media_tree.git
14713 S:      Maintained
14714 F:      drivers/media/common/saa7146/
14715 F:      drivers/media/pci/saa7146/
14716 F:      include/media/drv-intf/saa7146*
14717
14718 SAFESETID SECURITY MODULE
14719 M:      Micah Morton <[email protected]>
14720 S:      Supported
14721 F:      security/safesetid/
14722 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14723
14724 SAMSUNG AUDIO (ASoC) DRIVERS
14725 M:      Krzysztof Kozlowski <[email protected]>
14726 M:      Sangbeom Kim <[email protected]>
14727 M:      Sylwester Nawrocki <[email protected]>
14728 L:      [email protected] (moderated for non-subscribers)
14729 S:      Supported
14730 F:      sound/soc/samsung/
14731 F:      Documentation/devicetree/bindings/sound/samsung*
14732
14733 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14734 M:      Krzysztof Kozlowski <[email protected]>
14735 L:      [email protected]
14736 L:      [email protected]
14737 S:      Maintained
14738 F:      drivers/crypto/exynos-rng.c
14739 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14740
14741 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14742 M:      Łukasz Stelmach <[email protected]>
14743 L:      [email protected]
14744 S:      Maintained
14745 F:      drivers/char/hw_random/exynos-trng.c
14746 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14747
14748 SAMSUNG FRAMEBUFFER DRIVER
14749 M:      Jingoo Han <[email protected]>
14750 L:      [email protected]
14751 S:      Maintained
14752 F:      drivers/video/fbdev/s3c-fb.c
14753
14754 SAMSUNG LAPTOP DRIVER
14755 M:      Corentin Chary <[email protected]>
14756 L:      [email protected]
14757 S:      Maintained
14758 F:      drivers/platform/x86/samsung-laptop.c
14759
14760 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14761 M:      Sangbeom Kim <[email protected]>
14762 M:      Krzysztof Kozlowski <[email protected]>
14763 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14764 L:      [email protected]
14765 L:      [email protected]
14766 S:      Supported
14767 F:      drivers/mfd/sec*.c
14768 F:      drivers/regulator/s2m*.c
14769 F:      drivers/regulator/s5m*.c
14770 F:      drivers/clk/clk-s2mps11.c
14771 F:      drivers/rtc/rtc-s5m.c
14772 F:      include/linux/mfd/samsung/
14773 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14774 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14775 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14776 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14777
14778 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14779 M:      Sylwester Nawrocki <[email protected]>
14780 L:      [email protected]
14781 L:      [email protected] (moderated for non-subscribers)
14782 S:      Maintained
14783 F:      drivers/media/platform/s3c-camif/
14784 F:      include/media/drv-intf/s3c_camif.h
14785
14786 SAMSUNG S3FWRN5 NFC DRIVER
14787 M:      Robert Baldyga <[email protected]>
14788 M:      Krzysztof Opasiak <[email protected]>
14789 L:      [email protected] (moderated for non-subscribers)
14790 S:      Supported
14791 F:      drivers/nfc/s3fwrn5
14792
14793 SAMSUNG S5C73M3 CAMERA DRIVER
14794 M:      Kyungmin Park <[email protected]>
14795 M:      Andrzej Hajda <[email protected]>
14796 L:      [email protected]
14797 S:      Supported
14798 F:      drivers/media/i2c/s5c73m3/*
14799
14800 SAMSUNG S5K5BAF CAMERA DRIVER
14801 M:      Kyungmin Park <[email protected]>
14802 M:      Andrzej Hajda <[email protected]>
14803 L:      [email protected]
14804 S:      Supported
14805 F:      drivers/media/i2c/s5k5baf.c
14806
14807 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14808 M:      Krzysztof Kozlowski <[email protected]>
14809 M:      Vladimir Zapolskiy <[email protected]>
14810 M:      Kamil Konieczny <[email protected]>
14811 L:      [email protected]
14812 L:      [email protected]
14813 S:      Maintained
14814 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
14815 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
14816 F:      drivers/crypto/s5p-sss.c
14817
14818 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14819 M:      Kyungmin Park <[email protected]>
14820 M:      Sylwester Nawrocki <[email protected]>
14821 L:      [email protected]
14822 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14823 S:      Supported
14824 F:      drivers/media/platform/exynos4-is/
14825
14826 SAMSUNG SOC CLOCK DRIVERS
14827 M:      Sylwester Nawrocki <[email protected]>
14828 M:      Tomasz Figa <[email protected]>
14829 M:      Chanwoo Choi <[email protected]>
14830 S:      Supported
14831 L:      [email protected] (moderated for non-subscribers)
14832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14833 F:      drivers/clk/samsung/
14834 F:      include/dt-bindings/clock/exynos*.h
14835 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14836 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14837 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14838
14839 SAMSUNG SPI DRIVERS
14840 M:      Kukjin Kim <[email protected]>
14841 M:      Krzysztof Kozlowski <[email protected]>
14842 M:      Andi Shyti <[email protected]>
14843 L:      [email protected]
14844 L:      [email protected] (moderated for non-subscribers)
14845 S:      Maintained
14846 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14847 F:      drivers/spi/spi-s3c*
14848 F:      include/linux/platform_data/spi-s3c64xx.h
14849
14850 SAMSUNG SXGBE DRIVERS
14851 M:      Byungho An <[email protected]>
14852 S:      Supported
14853 L:      [email protected]
14854 F:      drivers/net/ethernet/samsung/sxgbe/
14855
14856 SAMSUNG THERMAL DRIVER
14857 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14858 L:      [email protected]
14859 L:      [email protected]
14860 S:      Supported
14861 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14862 F:      drivers/thermal/samsung/
14863
14864 SAMSUNG USB2 PHY DRIVER
14865 M:      Kamil Debski <[email protected]>
14866 M:      Sylwester Nawrocki <[email protected]>
14867 L:      [email protected]
14868 S:      Supported
14869 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14870 F:      Documentation/driver-api/phy/samsung-usb2.rst
14871 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14872 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14873 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14874 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14875 F:      drivers/phy/samsung/phy-samsung-usb2.c
14876 F:      drivers/phy/samsung/phy-samsung-usb2.h
14877
14878 SC1200 WDT DRIVER
14879 M:      Zwane Mwaikambo <[email protected]>
14880 S:      Maintained
14881 F:      drivers/watchdog/sc1200wdt.c
14882
14883 SCHEDULER
14884 M:      Ingo Molnar <[email protected]>
14885 M:      Peter Zijlstra <[email protected]>
14886 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
14887 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
14888 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
14889 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
14890 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
14891 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
14892 L:      [email protected]
14893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14894 S:      Maintained
14895 F:      kernel/sched/
14896 F:      include/linux/sched.h
14897 F:      include/uapi/linux/sched.h
14898 F:      include/linux/wait.h
14899 F:      include/linux/preempt.h
14900
14901 SCR24X CHIP CARD INTERFACE DRIVER
14902 M:      Lubomir Rintel <[email protected]>
14903 S:      Supported
14904 F:      drivers/char/pcmcia/scr24x_cs.c
14905
14906 SCSI CDROM DRIVER
14907 M:      Jens Axboe <[email protected]>
14908 L:      [email protected]
14909 W:      http://www.kernel.dk
14910 S:      Maintained
14911 F:      drivers/scsi/sr*
14912
14913 SCSI RDMA PROTOCOL (SRP) INITIATOR
14914 M:      Bart Van Assche <[email protected]>
14915 L:      [email protected]
14916 S:      Supported
14917 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14918 F:      drivers/infiniband/ulp/srp/
14919 F:      include/scsi/srp.h
14920
14921 SCSI RDMA PROTOCOL (SRP) TARGET
14922 M:      Bart Van Assche <[email protected]>
14923 L:      [email protected]
14924 L:      [email protected]
14925 S:      Supported
14926 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14927 F:      drivers/infiniband/ulp/srpt/
14928
14929 SCSI SG DRIVER
14930 M:      Doug Gilbert <[email protected]>
14931 L:      [email protected]
14932 W:      http://sg.danny.cz/sg
14933 S:      Maintained
14934 F:      Documentation/scsi/scsi-generic.rst
14935 F:      drivers/scsi/sg.c
14936 F:      include/scsi/sg.h
14937
14938 SCSI SUBSYSTEM
14939 M:      "James E.J. Bottomley" <[email protected]>
14940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14941 M:      "Martin K. Petersen" <[email protected]>
14942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14943 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14944 L:      [email protected]
14945 S:      Maintained
14946 F:      Documentation/devicetree/bindings/scsi/
14947 F:      drivers/scsi/
14948 F:      include/scsi/
14949
14950 SCSI TAPE DRIVER
14951 M:      Kai Mäkisara <[email protected]>
14952 L:      [email protected]
14953 S:      Maintained
14954 F:      Documentation/scsi/st.rst
14955 F:      drivers/scsi/st.*
14956 F:      drivers/scsi/st_*.h
14957
14958 SCSI TARGET SUBSYSTEM
14959 M:      "Martin K. Petersen" <[email protected]>
14960 L:      [email protected]
14961 L:      [email protected]
14962 W:      http://www.linux-iscsi.org
14963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14964 Q:      https://patchwork.kernel.org/project/target-devel/list/
14965 S:      Supported
14966 F:      drivers/target/
14967 F:      include/target/
14968 F:      Documentation/target/
14969
14970 SCTP PROTOCOL
14971 M:      Vlad Yasevich <[email protected]>
14972 M:      Neil Horman <[email protected]>
14973 M:      Marcelo Ricardo Leitner <[email protected]>
14974 L:      [email protected]
14975 W:      http://lksctp.sourceforge.net
14976 S:      Maintained
14977 F:      Documentation/networking/sctp.txt
14978 F:      include/linux/sctp.h
14979 F:      include/uapi/linux/sctp.h
14980 F:      include/net/sctp/
14981 F:      net/sctp/
14982
14983 SCx200 CPU SUPPORT
14984 M:      Jim Cromie <[email protected]>
14985 S:      Odd Fixes
14986 F:      Documentation/i2c/busses/scx200_acb.rst
14987 F:      arch/x86/platform/scx200/
14988 F:      drivers/watchdog/scx200_wdt.c
14989 F:      drivers/i2c/busses/scx200*
14990 F:      drivers/mtd/maps/scx200_docflash.c
14991 F:      include/linux/scx200.h
14992
14993 SCx200 GPIO DRIVER
14994 M:      Jim Cromie <[email protected]>
14995 S:      Maintained
14996 F:      drivers/char/scx200_gpio.c
14997 F:      include/linux/scx200_gpio.h
14998
14999 SCx200 HRT CLOCKSOURCE DRIVER
15000 M:      Jim Cromie <[email protected]>
15001 S:      Maintained
15002 F:      drivers/clocksource/scx200_hrt.c
15003
15004 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15005 M:      Sascha Sommer <[email protected]>
15006 L:      [email protected] (subscribers-only)
15007 S:      Maintained
15008 F:      drivers/mmc/host/sdricoh_cs.c
15009
15010 SECO BOARDS CEC DRIVER
15011 M:      Ettore Chimenti <[email protected]>
15012 S:      Maintained
15013 F:      drivers/media/platform/seco-cec/seco-cec.c
15014 F:      drivers/media/platform/seco-cec/seco-cec.h
15015
15016 SECURE COMPUTING
15017 M:      Kees Cook <[email protected]>
15018 R:      Andy Lutomirski <[email protected]>
15019 R:      Will Drewry <[email protected]>
15020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15021 S:      Supported
15022 F:      kernel/seccomp.c
15023 F:      include/uapi/linux/seccomp.h
15024 F:      include/linux/seccomp.h
15025 F:      tools/testing/selftests/seccomp/*
15026 F:      tools/testing/selftests/kselftest_harness.h
15027 F:      Documentation/userspace-api/seccomp_filter.rst
15028 K:      \bsecure_computing
15029 K:      \bTIF_SECCOMP\b
15030
15031 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15032 M:      Al Cooper <[email protected]>
15033 L:      [email protected]
15034 L:      [email protected]
15035 S:      Maintained
15036 F:      drivers/mmc/host/sdhci-brcmstb*
15037
15038 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15039 M:      Adrian Hunter <[email protected]>
15040 L:      [email protected]
15041 S:      Maintained
15042 F:      drivers/mmc/host/sdhci*
15043 F:      include/linux/mmc/sdhci*
15044
15045 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
15046 M:      Adrian Hunter <[email protected]>
15047 M:      Ritesh Harjani <[email protected]>
15048 M:      Asutosh Das <[email protected]>
15049 L:      [email protected]
15050 S:      Maintained
15051 F:      drivers/mmc/host/cqhci*
15052
15053 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
15054 M:      Prabu Thangamuthu <[email protected]>
15055 M:      Manjunath M B <[email protected]>
15056 L:      [email protected]
15057 S:      Maintained
15058 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
15059
15060 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15061 M:      Ludovic Desroches <[email protected]>
15062 L:      [email protected]
15063 S:      Supported
15064 F:      drivers/mmc/host/sdhci-of-at91.c
15065
15066 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15067 M:      Ben Dooks <[email protected]>
15068 M:      Jaehoon Chung <[email protected]>
15069 L:      [email protected]
15070 S:      Maintained
15071 F:      drivers/mmc/host/sdhci-s3c*
15072
15073 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15074 M:      Viresh Kumar <[email protected]>
15075 L:      [email protected]
15076 S:      Maintained
15077 F:      drivers/mmc/host/sdhci-spear.c
15078
15079 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15080 M:      Kishon Vijay Abraham I <[email protected]>
15081 L:      [email protected]
15082 S:      Maintained
15083 F:      drivers/mmc/host/sdhci-omap.c
15084
15085 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15086 M:      Jonathan Derrick <[email protected]>
15087 M:      Revanth Rajashekar <[email protected]>
15088 L:      [email protected]
15089 S:      Supported
15090 F:      block/sed*
15091 F:      block/opal_proto.h
15092 F:      include/linux/sed*
15093 F:      include/uapi/linux/sed*
15094
15095 SECURITY CONTACT
15096 M:      Security Officers <[email protected]>
15097 S:      Supported
15098
15099 SECURITY SUBSYSTEM
15100 M:      James Morris <[email protected]>
15101 M:      "Serge E. Hallyn" <[email protected]>
15102 L:      [email protected] (suggested Cc:)
15103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15104 W:      http://kernsec.org/
15105 S:      Supported
15106 F:      security/
15107 X:      security/selinux/
15108
15109 SELINUX SECURITY MODULE
15110 M:      Paul Moore <[email protected]>
15111 M:      Stephen Smalley <[email protected]>
15112 M:      Eric Paris <[email protected]>
15113 L:      [email protected]
15114 W:      https://selinuxproject.org
15115 W:      https://github.com/SELinuxProject
15116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15117 S:      Supported
15118 F:      include/uapi/linux/selinux_netlink.h
15119 F:      security/selinux/
15120 F:      scripts/selinux/
15121 F:      Documentation/admin-guide/LSM/SELinux.rst
15122 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15123 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15124
15125 SENSABLE PHANTOM
15126 M:      Jiri Slaby <[email protected]>
15127 S:      Maintained
15128 F:      drivers/misc/phantom.c
15129 F:      include/uapi/linux/phantom.h
15130
15131 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15132 M:      Tomasz Duszynski <[email protected]>
15133 S:      Maintained
15134 F:      drivers/iio/chemical/sps30.c
15135 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15136
15137 SERIAL DEVICE BUS
15138 M:      Rob Herring <[email protected]>
15139 L:      [email protected]
15140 S:      Maintained
15141 F:      Documentation/devicetree/bindings/serial/serial.yaml
15142 F:      drivers/tty/serdev/
15143 F:      include/linux/serdev.h
15144
15145 SERIAL DRIVERS
15146 M:      Greg Kroah-Hartman <[email protected]>
15147 L:      [email protected]
15148 S:      Maintained
15149 F:      Documentation/devicetree/bindings/serial/
15150 F:      drivers/tty/serial/
15151
15152 SERIAL IR RECEIVER
15153 M:      Sean Young <[email protected]>
15154 L:      [email protected]
15155 S:      Maintained
15156 F:      drivers/media/rc/serial_ir.c
15157
15158 SFC NETWORK DRIVER
15159 M:      Solarflare linux maintainers <[email protected]>
15160 M:      Edward Cree <[email protected]>
15161 M:      Martin Habets <[email protected]>
15162 L:      [email protected]
15163 S:      Supported
15164 F:      drivers/net/ethernet/sfc/
15165
15166 SFF/SFP/SFP+ MODULE SUPPORT
15167 M:      Russell King <[email protected]>
15168 L:      [email protected]
15169 S:      Maintained
15170 F:      drivers/net/phy/phylink.c
15171 F:      drivers/net/phy/sfp*
15172 F:      include/linux/phylink.h
15173 F:      include/linux/sfp.h
15174 K:      phylink
15175
15176 SGI GRU DRIVER
15177 M:      Dimitri Sivanich <[email protected]>
15178 S:      Maintained
15179 F:      drivers/misc/sgi-gru/
15180
15181 SGI XP/XPC/XPNET DRIVER
15182 M:      Cliff Whickman <[email protected]>
15183 M:      Robin Holt <[email protected]>
15184 S:      Maintained
15185 F:      drivers/misc/sgi-xp/
15186
15187 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15188 M:      Ursula Braun <[email protected]>
15189 M:      Karsten Graul <[email protected]>
15190 L:      [email protected]
15191 W:      http://www.ibm.com/developerworks/linux/linux390/
15192 S:      Supported
15193 F:      net/smc/
15194
15195 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15196 M:      Linus Walleij <[email protected]>
15197 L:      [email protected]
15198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15199 S:      Maintained
15200 F:      drivers/iio/light/gp2ap002.c
15201 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15202
15203 SHARP RJ54N1CB0C SENSOR DRIVER
15204 M:      Jacopo Mondi <[email protected]>
15205 L:      [email protected]
15206 T:      git git://linuxtv.org/media_tree.git
15207 S:      Odd fixes
15208 F:      drivers/media/i2c/rj54n1cb0c.c
15209 F:      include/media/i2c/rj54n1cb0c.h
15210
15211 SH_VEU V4L2 MEM2MEM DRIVER
15212 L:      [email protected]
15213 S:      Orphan
15214 F:      drivers/media/platform/sh_veu.c
15215
15216 SH_VOU V4L2 OUTPUT DRIVER
15217 L:      [email protected]
15218 S:      Orphan
15219 F:      drivers/media/platform/sh_vou.c
15220 F:      include/media/drv-intf/sh_vou.h
15221
15222 SI2157 MEDIA DRIVER
15223 M:      Antti Palosaari <[email protected]>
15224 L:      [email protected]
15225 W:      https://linuxtv.org
15226 W:      http://palosaari.fi/linux/
15227 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15228 T:      git git://linuxtv.org/anttip/media_tree.git
15229 S:      Maintained
15230 F:      drivers/media/tuners/si2157*
15231
15232 SI2165 MEDIA DRIVER
15233 M:      Matthias Schwarzott <[email protected]>
15234 L:      [email protected]
15235 W:      https://linuxtv.org
15236 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15237 S:      Maintained
15238 F:      drivers/media/dvb-frontends/si2165*
15239
15240 SI2168 MEDIA DRIVER
15241 M:      Antti Palosaari <[email protected]>
15242 L:      [email protected]
15243 W:      https://linuxtv.org
15244 W:      http://palosaari.fi/linux/
15245 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15246 T:      git git://linuxtv.org/anttip/media_tree.git
15247 S:      Maintained
15248 F:      drivers/media/dvb-frontends/si2168*
15249
15250 SI470X FM RADIO RECEIVER I2C DRIVER
15251 M:      Hans Verkuil <[email protected]>
15252 L:      [email protected]
15253 T:      git git://linuxtv.org/media_tree.git
15254 W:      https://linuxtv.org
15255 S:      Odd Fixes
15256 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15257
15258 SI470X FM RADIO RECEIVER USB DRIVER
15259 M:      Hans Verkuil <[email protected]>
15260 L:      [email protected]
15261 T:      git git://linuxtv.org/media_tree.git
15262 W:      https://linuxtv.org
15263 S:      Maintained
15264 F:      drivers/media/radio/si470x/radio-si470x-common.c
15265 F:      drivers/media/radio/si470x/radio-si470x.h
15266 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15267
15268 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15269 M:      Eduardo Valentin <[email protected]>
15270 L:      [email protected]
15271 T:      git git://linuxtv.org/media_tree.git
15272 W:      https://linuxtv.org
15273 S:      Odd Fixes
15274 F:      drivers/media/radio/si4713/si4713.?
15275
15276 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15277 M:      Eduardo Valentin <[email protected]>
15278 L:      [email protected]
15279 T:      git git://linuxtv.org/media_tree.git
15280 W:      https://linuxtv.org
15281 S:      Odd Fixes
15282 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15283
15284 SI4713 FM RADIO TRANSMITTER USB DRIVER
15285 M:      Hans Verkuil <[email protected]>
15286 L:      [email protected]
15287 T:      git git://linuxtv.org/media_tree.git
15288 W:      https://linuxtv.org
15289 S:      Maintained
15290 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15291
15292 SIANO DVB DRIVER
15293 M:      Mauro Carvalho Chehab <[email protected]>
15294 L:      [email protected]
15295 W:      https://linuxtv.org
15296 T:      git git://linuxtv.org/media_tree.git
15297 S:      Odd fixes
15298 F:      drivers/media/common/siano/
15299 F:      drivers/media/usb/siano/
15300 F:      drivers/media/usb/siano/
15301 F:      drivers/media/mmc/siano/
15302
15303 SIFIVE PDMA DRIVER
15304 M:      Green Wan <[email protected]>
15305 S:      Maintained
15306 F:      drivers/dma/sf-pdma/
15307 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15308
15309 SIFIVE DRIVERS
15310 M:      Palmer Dabbelt <[email protected]>
15311 M:      Paul Walmsley <[email protected]>
15312 L:      [email protected]
15313 T:      git git://github.com/sifive/riscv-linux.git
15314 S:      Supported
15315 K:      [^@]sifive
15316 N:      sifive
15317
15318 SIFIVE FU540 SYSTEM-ON-CHIP
15319 M:      Paul Walmsley <[email protected]>
15320 M:      Palmer Dabbelt <[email protected]>
15321 L:      [email protected]
15322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15323 S:      Supported
15324 K:      fu540
15325 N:      fu540
15326
15327 SILEAD TOUCHSCREEN DRIVER
15328 M:      Hans de Goede <[email protected]>
15329 L:      [email protected]
15330 L:      [email protected]
15331 S:      Maintained
15332 F:      drivers/input/touchscreen/silead.c
15333 F:      drivers/platform/x86/touchscreen_dmi.c
15334
15335 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15336 M:      Jérôme Pouiller <[email protected]>
15337 S:      Supported
15338 F:      drivers/staging/wfx/
15339
15340 SILICON MOTION SM712 FRAME BUFFER DRIVER
15341 M:      Sudip Mukherjee <[email protected]>
15342 M:      Teddy Wang <[email protected]>
15343 M:      Sudip Mukherjee <[email protected]>
15344 L:      [email protected]
15345 S:      Maintained
15346 F:      drivers/video/fbdev/sm712*
15347 F:      Documentation/fb/sm712fb.rst
15348
15349 SIMPLE FIRMWARE INTERFACE (SFI)
15350 W:      http://simplefirmware.org/
15351 S:      Obsolete
15352 F:      arch/x86/platform/sfi/
15353 F:      drivers/sfi/
15354 F:      include/linux/sfi*.h
15355
15356 SIMPLEFB FB DRIVER
15357 M:      Hans de Goede <[email protected]>
15358 L:      [email protected]
15359 S:      Maintained
15360 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15361 F:      drivers/video/fbdev/simplefb.c
15362 F:      include/linux/platform_data/simplefb.h
15363
15364 SIMTEC EB110ATX (Chalice CATS)
15365 M:      Vincent Sanders <[email protected]>
15366 M:      Simtec Linux Team <[email protected]>
15367 W:      http://www.simtec.co.uk/products/EB110ATX/
15368 S:      Supported
15369
15370 SIMTEC EB2410ITX (BAST)
15371 M:      Vincent Sanders <[email protected]>
15372 M:      Simtec Linux Team <[email protected]>
15373 W:      http://www.simtec.co.uk/products/EB2410ITX/
15374 S:      Supported
15375 F:      arch/arm/mach-s3c24xx/mach-bast.c
15376 F:      arch/arm/mach-s3c24xx/bast-ide.c
15377 F:      arch/arm/mach-s3c24xx/bast-irq.c
15378
15379 SIPHASH PRF ROUTINES
15380 M:      Jason A. Donenfeld <[email protected]>
15381 S:      Maintained
15382 F:      lib/siphash.c
15383 F:      lib/test_siphash.c
15384 F:      include/linux/siphash.h
15385
15386 SIOX
15387 M:      Thorsten Scherer <[email protected]>
15388 M:      Uwe Kleine-König <[email protected]>
15389 R:      Pengutronix Kernel Team <[email protected]>
15390 S:      Supported
15391 F:      drivers/siox/*
15392 F:      drivers/gpio/gpio-siox.c
15393 F:      include/trace/events/siox.h
15394
15395 SIS 190 ETHERNET DRIVER
15396 M:      Francois Romieu <[email protected]>
15397 L:      [email protected]
15398 S:      Maintained
15399 F:      drivers/net/ethernet/sis/sis190.c
15400
15401 SIS 900/7016 FAST ETHERNET DRIVER
15402 M:      Daniele Venzano <[email protected]>
15403 W:      http://www.brownhat.org/sis900.html
15404 L:      [email protected]
15405 S:      Maintained
15406 F:      drivers/net/ethernet/sis/sis900.*
15407
15408 SIS FRAMEBUFFER DRIVER
15409 M:      Thomas Winischhofer <[email protected]>
15410 W:      http://www.winischhofer.net/linuxsisvga.shtml
15411 S:      Maintained
15412 F:      Documentation/fb/sisfb.rst
15413 F:      drivers/video/fbdev/sis/
15414 F:      include/video/sisfb.h
15415
15416 SIS USB2VGA DRIVER
15417 M:      Thomas Winischhofer <[email protected]>
15418 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15419 S:      Maintained
15420 F:      drivers/usb/misc/sisusbvga/
15421
15422 SLAB ALLOCATOR
15423 M:      Christoph Lameter <[email protected]>
15424 M:      Pekka Enberg <[email protected]>
15425 M:      David Rientjes <[email protected]>
15426 M:      Joonsoo Kim <[email protected]>
15427 M:      Andrew Morton <[email protected]>
15428 L:      [email protected]
15429 S:      Maintained
15430 F:      include/linux/sl?b*.h
15431 F:      mm/sl?b*
15432
15433 SLEEPABLE READ-COPY UPDATE (SRCU)
15434 M:      Lai Jiangshan <[email protected]>
15435 M:      "Paul E. McKenney" <[email protected]>
15436 M:      Josh Triplett <[email protected]>
15437 R:      Steven Rostedt <[email protected]>
15438 R:      Mathieu Desnoyers <[email protected]>
15439 L:      [email protected]
15440 W:      http://www.rdrop.com/users/paulmck/RCU/
15441 S:      Supported
15442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15443 F:      include/linux/srcu*.h
15444 F:      kernel/rcu/srcu*.c
15445
15446 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15447 M:      Srinivas Kandagatla <[email protected]>
15448 L:      [email protected] (moderated for non-subscribers)
15449 S:      Maintained
15450 F:      drivers/slimbus/
15451 F:      Documentation/devicetree/bindings/slimbus/
15452 F:      include/linux/slimbus.h
15453
15454 SMACK SECURITY MODULE
15455 M:      Casey Schaufler <[email protected]>
15456 L:      [email protected]
15457 W:      http://schaufler-ca.com
15458 T:      git git://github.com/cschaufler/smack-next
15459 S:      Maintained
15460 F:      Documentation/admin-guide/LSM/Smack.rst
15461 F:      security/smack/
15462
15463 SMC91x ETHERNET DRIVER
15464 M:      Nicolas Pitre <[email protected]>
15465 S:      Odd Fixes
15466 F:      drivers/net/ethernet/smsc/smc91x.*
15467
15468 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15469 M:      Sakari Ailus <[email protected]>
15470 L:      [email protected]
15471 S:      Maintained
15472 F:      drivers/media/i2c/smiapp/
15473 F:      drivers/media/i2c/smiapp-pll.c
15474 F:      drivers/media/i2c/smiapp-pll.h
15475 F:      include/uapi/linux/smiapp.h
15476 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15477
15478 SMM665 HARDWARE MONITOR DRIVER
15479 M:      Guenter Roeck <[email protected]>
15480 L:      [email protected]
15481 S:      Maintained
15482 F:      Documentation/hwmon/smm665.rst
15483 F:      drivers/hwmon/smm665.c
15484
15485 SMSC EMC2103 HARDWARE MONITOR DRIVER
15486 M:      Steve Glendinning <[email protected]>
15487 L:      [email protected]
15488 S:      Maintained
15489 F:      Documentation/hwmon/emc2103.rst
15490 F:      drivers/hwmon/emc2103.c
15491
15492 SMSC SCH5627 HARDWARE MONITOR DRIVER
15493 M:      Hans de Goede <[email protected]>
15494 L:      [email protected]
15495 S:      Supported
15496 F:      Documentation/hwmon/sch5627.rst
15497 F:      drivers/hwmon/sch5627.c
15498
15499 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15500 M:      Steve Glendinning <[email protected]>
15501 L:      [email protected]
15502 S:      Maintained
15503 F:      drivers/video/fbdev/smscufx.c
15504
15505 SMSC47B397 HARDWARE MONITOR DRIVER
15506 M:      Jean Delvare <[email protected]>
15507 L:      [email protected]
15508 S:      Maintained
15509 F:      Documentation/hwmon/smsc47b397.rst
15510 F:      drivers/hwmon/smsc47b397.c
15511
15512 SMSC911x ETHERNET DRIVER
15513 M:      Steve Glendinning <[email protected]>
15514 L:      [email protected]
15515 S:      Maintained
15516 F:      include/linux/smsc911x.h
15517 F:      drivers/net/ethernet/smsc/smsc911x.*
15518
15519 SMSC9420 PCI ETHERNET DRIVER
15520 M:      Steve Glendinning <[email protected]>
15521 L:      [email protected]
15522 S:      Maintained
15523 F:      drivers/net/ethernet/smsc/smsc9420.*
15524
15525 SOC-CAMERA V4L2 SUBSYSTEM
15526 L:      [email protected]
15527 T:      git git://linuxtv.org/media_tree.git
15528 S:      Orphan
15529 F:      include/media/soc_camera.h
15530 F:      drivers/staging/media/soc_camera/
15531
15532 SOCIONEXT SYNQUACER I2C DRIVER
15533 M:      Ard Biesheuvel <[email protected]>
15534 L:      [email protected]
15535 S:      Maintained
15536 F:      drivers/i2c/busses/i2c-synquacer.c
15537 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15538
15539 SOCIONEXT UNIPHIER SOUND DRIVER
15540 L:      [email protected] (moderated for non-subscribers)
15541 S:      Orphan
15542 F:      sound/soc/uniphier/
15543
15544 SOEKRIS NET48XX LED SUPPORT
15545 M:      Chris Boot <[email protected]>
15546 S:      Maintained
15547 F:      drivers/leds/leds-net48xx.c
15548
15549 SOFT-IWARP DRIVER (siw)
15550 M:      Bernard Metzler <[email protected]>
15551 L:      [email protected]
15552 S:      Supported
15553 F:      drivers/infiniband/sw/siw/
15554 F:      include/uapi/rdma/siw-abi.h
15555
15556 SOFT-ROCE DRIVER (rxe)
15557 M:      Zhu Yanjun <[email protected]>
15558 L:      [email protected]
15559 S:      Supported
15560 F:      drivers/infiniband/sw/rxe/
15561 F:      include/uapi/rdma/rdma_user_rxe.h
15562
15563 SOFTLOGIC 6x10 MPEG CODEC
15564 M:      Bluecherry Maintainers <[email protected]>
15565 M:      Anton Sviridenko <[email protected]>
15566 M:      Andrey Utkin <[email protected]>
15567 M:      Andrey Utkin <[email protected]>
15568 M:      Ismael Luceno <[email protected]>
15569 L:      [email protected]
15570 S:      Supported
15571 F:      drivers/media/pci/solo6x10/
15572
15573 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15574 M:      James Morse <[email protected]>
15575 L:      [email protected]
15576 S:      Maintained
15577 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15578 F:      drivers/firmware/arm_sdei.c
15579 F:      include/linux/arm_sdei.h
15580 F:      include/uapi/linux/arm_sdei.h
15581
15582 SOFTWARE RAID (Multiple Disks) SUPPORT
15583 M:      Song Liu <[email protected]>
15584 L:      [email protected]
15585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15586 S:      Supported
15587 F:      drivers/md/Makefile
15588 F:      drivers/md/Kconfig
15589 F:      drivers/md/md*
15590 F:      drivers/md/raid*
15591 F:      include/linux/raid/
15592 F:      include/uapi/linux/raid/
15593
15594 SOCIONEXT (SNI) AVE NETWORK DRIVER
15595 M:      Kunihiko Hayashi <[email protected]>
15596 L:      [email protected]
15597 S:      Maintained
15598 F:      drivers/net/ethernet/socionext/sni_ave.c
15599 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15600
15601 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15602 M:      Jassi Brar <[email protected]>
15603 M:      Ilias Apalodimas <[email protected]>
15604 L:      [email protected]
15605 S:      Maintained
15606 F:      drivers/net/ethernet/socionext/netsec.c
15607 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15608
15609 SOCIONEXT (SNI) Synquacer SPI DRIVER
15610 M:      Masahisa Kojima <[email protected]>
15611 M:      Jassi Brar <[email protected]>
15612 L:      [email protected]
15613 S:      Maintained
15614 F:      drivers/spi/spi-synquacer.c
15615 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15616
15617 SOLIDRUN CLEARFOG SUPPORT
15618 M:      Russell King <[email protected]>
15619 S:      Maintained
15620 F:      arch/arm/boot/dts/armada-388-clearfog*
15621 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15622
15623 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15624 M:      Russell King <[email protected]>
15625 S:      Maintained
15626 F:      arch/arm/boot/dts/imx6*-cubox-i*
15627 F:      arch/arm/boot/dts/imx6*-hummingboard*
15628 F:      arch/arm/boot/dts/imx6*-sr-*
15629
15630 SONIC NETWORK DRIVER
15631 M:      Thomas Bogendoerfer <[email protected]>
15632 L:      [email protected]
15633 S:      Maintained
15634 F:      drivers/net/ethernet/natsemi/sonic.*
15635
15636 SONICS SILICON BACKPLANE DRIVER (SSB)
15637 M:      Michael Buesch <[email protected]>
15638 L:      [email protected]
15639 S:      Maintained
15640 F:      drivers/ssb/
15641 F:      include/linux/ssb/
15642
15643 SONY IMX214 SENSOR DRIVER
15644 M:      Ricardo Ribalda <[email protected]>
15645 L:      [email protected]
15646 T:      git git://linuxtv.org/media_tree.git
15647 S:      Maintained
15648 F:      drivers/media/i2c/imx214.c
15649 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15650
15651 SONY IMX219 SENSOR DRIVER
15652 M:      Dave Stevenson <[email protected]>
15653 L:      [email protected]
15654 T:      git git://linuxtv.org/media_tree.git
15655 S:      Maintained
15656 F:      drivers/media/i2c/imx219.c
15657 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15658
15659 SONY IMX258 SENSOR DRIVER
15660 M:      Sakari Ailus <[email protected]>
15661 L:      [email protected]
15662 T:      git git://linuxtv.org/media_tree.git
15663 S:      Maintained
15664 F:      drivers/media/i2c/imx258.c
15665
15666 SONY IMX274 SENSOR DRIVER
15667 M:      Leon Luo <[email protected]>
15668 L:      [email protected]
15669 T:      git git://linuxtv.org/media_tree.git
15670 S:      Maintained
15671 F:      drivers/media/i2c/imx274.c
15672 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15673
15674 SONY IMX290 SENSOR DRIVER
15675 M:      Manivannan Sadhasivam <[email protected]>
15676 L:      [email protected]
15677 T:      git git://linuxtv.org/media_tree.git
15678 S:      Maintained
15679 F:      drivers/media/i2c/imx290.c
15680 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15681
15682 SONY IMX319 SENSOR DRIVER
15683 M:      Bingbu Cao <[email protected]>
15684 L:      [email protected]
15685 T:      git git://linuxtv.org/media_tree.git
15686 S:      Maintained
15687 F:      drivers/media/i2c/imx319.c
15688
15689 SONY IMX355 SENSOR DRIVER
15690 M:      Tianshu Qiu <[email protected]>
15691 L:      [email protected]
15692 T:      git git://linuxtv.org/media_tree.git
15693 S:      Maintained
15694 F:      drivers/media/i2c/imx355.c
15695
15696 SONY MEMORYSTICK SUBSYSTEM
15697 M:      Maxim Levitsky <[email protected]>
15698 M:      Alex Dubov <[email protected]>
15699 M:      Ulf Hansson <[email protected]>
15700 L:      [email protected]
15701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15702 S:      Maintained
15703 F:      drivers/memstick/
15704 F:      include/linux/memstick.h
15705
15706 SONY VAIO CONTROL DEVICE DRIVER
15707 M:      Mattia Dongili <[email protected]>
15708 L:      [email protected]
15709 S:      Maintained
15710 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15711 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15712 F:      drivers/char/sonypi.c
15713 F:      drivers/platform/x86/sony-laptop.c
15714 F:      include/linux/sony-laptop.h
15715
15716 SOUND
15717 M:      Jaroslav Kysela <[email protected]>
15718 M:      Takashi Iwai <[email protected]>
15719 L:      [email protected] (moderated for non-subscribers)
15720 W:      http://www.alsa-project.org/
15721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15722 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15723 S:      Maintained
15724 F:      Documentation/sound/
15725 F:      include/sound/
15726 F:      include/uapi/sound/
15727 F:      sound/
15728
15729 SOUND - COMPRESSED AUDIO
15730 M:      Vinod Koul <[email protected]>
15731 L:      [email protected] (moderated for non-subscribers)
15732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15733 S:      Supported
15734 F:      Documentation/sound/designs/compress-offload.rst
15735 F:      include/sound/compress_driver.h
15736 F:      include/uapi/sound/compress_*
15737 F:      sound/core/compress_offload.c
15738 F:      sound/soc/soc-compress.c
15739
15740 SOUND - DMAENGINE HELPERS
15741 M:      Lars-Peter Clausen <[email protected]>
15742 S:      Supported
15743 F:      include/sound/dmaengine_pcm.h
15744 F:      sound/core/pcm_dmaengine.c
15745 F:      sound/soc/soc-generic-dmaengine-pcm.c
15746
15747 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15748 M:      Liam Girdwood <[email protected]>
15749 M:      Mark Brown <[email protected]>
15750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15751 L:      [email protected] (moderated for non-subscribers)
15752 W:      http://alsa-project.org/main/index.php/ASoC
15753 S:      Supported
15754 F:      Documentation/devicetree/bindings/sound/
15755 F:      Documentation/sound/soc/
15756 F:      sound/soc/
15757 F:      include/dt-bindings/sound/
15758 F:      include/sound/soc*
15759
15760 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
15761 M:      Pierre-Louis Bossart <[email protected]>
15762 M:      Liam Girdwood <[email protected]>
15763 M:      Ranjani Sridharan <[email protected]>
15764 M:      Kai Vehmanen <[email protected]>
15765 M:      Daniel Baluta <[email protected]>
15766 L:      [email protected] (moderated for non-subscribers)
15767 W:      https://github.com/thesofproject/linux/
15768 S:      Supported
15769 F:      sound/soc/sof/
15770
15771 SOUNDWIRE SUBSYSTEM
15772 M:      Vinod Koul <[email protected]>
15773 M:      Sanyog Kale <[email protected]>
15774 R:      Pierre-Louis Bossart <[email protected]>
15775 L:      [email protected] (moderated for non-subscribers)
15776 S:      Supported
15777 F:      Documentation/driver-api/soundwire/
15778 F:      drivers/soundwire/
15779 F:      include/linux/soundwire/
15780
15781 SP2 MEDIA DRIVER
15782 M:      Olli Salonen <[email protected]>
15783 L:      [email protected]
15784 W:      https://linuxtv.org
15785 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15786 S:      Maintained
15787 F:      drivers/media/dvb-frontends/sp2*
15788
15789 SPARC + UltraSPARC (sparc/sparc64)
15790 M:      "David S. Miller" <[email protected]>
15791 L:      [email protected]
15792 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15795 S:      Maintained
15796 F:      arch/sparc/
15797 F:      drivers/sbus/
15798
15799 SPARC SERIAL DRIVERS
15800 M:      "David S. Miller" <[email protected]>
15801 L:      [email protected]
15802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15804 S:      Maintained
15805 F:      include/linux/sunserialcore.h
15806 F:      drivers/tty/serial/suncore.c
15807 F:      drivers/tty/serial/sunhv.c
15808 F:      drivers/tty/serial/sunsab.c
15809 F:      drivers/tty/serial/sunsab.h
15810 F:      drivers/tty/serial/sunsu.c
15811 F:      drivers/tty/serial/sunzilog.c
15812 F:      drivers/tty/serial/sunzilog.h
15813 F:      drivers/tty/vcc.c
15814
15815 SPARSE CHECKER
15816 M:      "Luc Van Oostenryck" <[email protected]>
15817 L:      [email protected]
15818 W:      https://sparse.wiki.kernel.org/
15819 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15820 S:      Maintained
15821 F:      include/linux/compiler.h
15822
15823 SPEAR CLOCK FRAMEWORK SUPPORT
15824 M:      Viresh Kumar <[email protected]>
15825 L:      [email protected] (moderated for non-subscribers)
15826 W:      http://www.st.com/spear
15827 S:      Maintained
15828 F:      drivers/clk/spear/
15829
15830 SPEAR PLATFORM SUPPORT
15831 M:      Viresh Kumar <[email protected]>
15832 M:      Shiraz Hashim <[email protected]>
15833 L:      [email protected] (moderated for non-subscribers)
15834 W:      http://www.st.com/spear
15835 S:      Maintained
15836 F:      arch/arm/boot/dts/spear*
15837 F:      arch/arm/mach-spear/
15838
15839 SPI NOR SUBSYSTEM
15840 M:      Tudor Ambarus <[email protected]>
15841 L:      [email protected]
15842 W:      http://www.linux-mtd.infradead.org/
15843 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15845 C:      irc://irc.oftc.net/mtd
15846 S:      Maintained
15847 F:      drivers/mtd/spi-nor/
15848 F:      include/linux/mtd/spi-nor.h
15849
15850 SPI SUBSYSTEM
15851 M:      Mark Brown <[email protected]>
15852 L:      [email protected]
15853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15854 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15855 S:      Maintained
15856 F:      Documentation/devicetree/bindings/spi/
15857 F:      Documentation/spi/
15858 F:      drivers/spi/
15859 F:      include/linux/spi/
15860 F:      include/uapi/linux/spi/
15861 F:      tools/spi/
15862
15863 SPIDERNET NETWORK DRIVER for CELL
15864 M:      Ishizaki Kou <[email protected]>
15865 L:      [email protected]
15866 S:      Supported
15867 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15868 F:      drivers/net/ethernet/toshiba/spider_net*
15869
15870 SPMI SUBSYSTEM
15871 R:      Stephen Boyd <[email protected]>
15872 L:      [email protected]
15873 F:      Documentation/devicetree/bindings/spmi/
15874 F:      drivers/spmi/
15875 F:      include/dt-bindings/spmi/spmi.h
15876 F:      include/linux/spmi.h
15877 F:      include/trace/events/spmi.h
15878
15879 SPU FILE SYSTEM
15880 M:      Jeremy Kerr <[email protected]>
15881 L:      [email protected]
15882 W:      http://www.ibm.com/developerworks/power/cell/
15883 S:      Supported
15884 F:      Documentation/filesystems/spufs.txt
15885 F:      arch/powerpc/platforms/cell/spufs/
15886
15887 SQUASHFS FILE SYSTEM
15888 M:      Phillip Lougher <[email protected]>
15889 L:      [email protected] (subscribers-only)
15890 W:      http://squashfs.org.uk
15891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15892 S:      Maintained
15893 F:      Documentation/filesystems/squashfs.rst
15894 F:      fs/squashfs/
15895
15896 SRM (Alpha) environment access
15897 M:      Jan-Benedict Glaw <[email protected]>
15898 S:      Maintained
15899 F:      arch/alpha/kernel/srm_env.c
15900
15901 ST LSM6DSx IMU IIO DRIVER
15902 M:      Lorenzo Bianconi <[email protected]>
15903 L:      [email protected]
15904 W:      http://www.st.com/
15905 S:      Maintained
15906 F:      drivers/iio/imu/st_lsm6dsx/
15907 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15908
15909 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15910 M:      Mickael Guene <[email protected]>
15911 L:      [email protected]
15912 T:      git git://linuxtv.org/media_tree.git
15913 S:      Maintained
15914 F:      drivers/media/i2c/st-mipid02.c
15915 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15916
15917 ST STM32 I2C/SMBUS DRIVER
15918 M:      Pierre-Yves MORDRET <[email protected]>
15919 L:      [email protected]
15920 S:      Maintained
15921 F:      drivers/i2c/busses/i2c-stm32*
15922
15923 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15924 M:      Song Qiang <[email protected]>
15925 L:      [email protected]
15926 S:      Maintained
15927 F:      drivers/iio/proximity/vl53l0x-i2c.c
15928 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15929
15930 STABLE BRANCH
15931 M:      Greg Kroah-Hartman <[email protected]>
15932 M:      Sasha Levin <[email protected]>
15933 L:      [email protected]
15934 S:      Supported
15935 F:      Documentation/process/stable-kernel-rules.rst
15936
15937 STAGING - COMEDI
15938 M:      Ian Abbott <[email protected]>
15939 M:      H Hartley Sweeten <[email protected]>
15940 S:      Odd Fixes
15941 F:      drivers/staging/comedi/
15942
15943 STAGING - FIELDBUS SUBSYSTEM
15944 M:      Sven Van Asbroeck <[email protected]>
15945 S:      Maintained
15946 F:      drivers/staging/fieldbus/*
15947 F:      drivers/staging/fieldbus/Documentation/
15948
15949 STAGING - HMS ANYBUS-S BUS
15950 M:      Sven Van Asbroeck <[email protected]>
15951 S:      Maintained
15952 F:      drivers/staging/fieldbus/anybuss/
15953
15954 STAGING - INDUSTRIAL IO
15955 M:      Jonathan Cameron <[email protected]>
15956 L:      [email protected]
15957 S:      Odd Fixes
15958 F:      Documentation/devicetree/bindings/staging/iio/
15959 F:      drivers/staging/iio/
15960
15961 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15962 M:      Marc Dietrich <[email protected]>
15963 L:      [email protected] (moderated for non-subscribers)
15964 L:      [email protected]
15965 S:      Maintained
15966 F:      drivers/staging/nvec/
15967
15968 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15969 M:      Jens Frederich <[email protected]>
15970 M:      Daniel Drake <[email protected]>
15971 M:      Jon Nettleton <[email protected]>
15972 W:      http://wiki.laptop.org/go/DCON
15973 S:      Maintained
15974 F:      drivers/staging/olpc_dcon/
15975
15976 STAGING - REALTEK RTL8712U DRIVERS
15977 M:      Larry Finger <[email protected]>
15978 M:      Florian Schilhabel <[email protected]>.
15979 S:      Odd Fixes
15980 F:      drivers/staging/rtl8712/
15981
15982 STAGING - REALTEK RTL8188EU DRIVERS
15983 M:      Larry Finger <[email protected]>
15984 S:      Odd Fixes
15985 F:      drivers/staging/rtl8188eu/
15986
15987 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15988 M:      Sudip Mukherjee <[email protected]>
15989 M:      Teddy Wang <[email protected]>
15990 M:      Sudip Mukherjee <[email protected]>
15991 L:      [email protected]
15992 S:      Maintained
15993 F:      drivers/staging/sm750fb/
15994
15995 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
15996 M:      William Hubbs <[email protected]>
15997 M:      Chris Brannon <[email protected]>
15998 M:      Kirk Reiser <[email protected]>
15999 M:      Samuel Thibault <[email protected]>
16000 L:      [email protected]
16001 W:      http://www.linux-speakup.org/
16002 S:      Odd Fixes
16003 F:      drivers/staging/speakup/
16004
16005 STAGING - VIA VT665X DRIVERS
16006 M:      Forest Bond <[email protected]>
16007 S:      Odd Fixes
16008 F:      drivers/staging/vt665?/
16009
16010 STAGING - WILC1000 WIFI DRIVER
16011 M:      Adham Abozaeid <[email protected]>
16012 M:      Ajay Singh <[email protected]>
16013 L:      [email protected]
16014 S:      Supported
16015 F:      drivers/staging/wilc1000/
16016
16017 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16018 M:      Michael Hennerich <[email protected]>
16019 M:      Beniamin Bia <[email protected]>
16020 L:      [email protected]
16021 S:      Supported
16022 F:      drivers/staging/fbtft/fb_seps525.c
16023 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16024
16025 STAGING SUBSYSTEM
16026 M:      Greg Kroah-Hartman <[email protected]>
16027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16028 L:      [email protected]
16029 S:      Supported
16030 F:      drivers/staging/
16031
16032 STARFIRE/DURALAN NETWORK DRIVER
16033 M:      Ion Badulescu <[email protected]>
16034 S:      Odd Fixes
16035 F:      drivers/net/ethernet/adaptec/starfire*
16036
16037 STEC S1220 SKD DRIVER
16038 M:      Damien Le Moal <[email protected]>
16039 L:      [email protected]
16040 S:      Maintained
16041 F:      drivers/block/skd*[ch]
16042
16043 STI AUDIO (ASoC) DRIVERS
16044 M:      Arnaud Pouliquen <[email protected]>
16045 L:      [email protected] (moderated for non-subscribers)
16046 S:      Maintained
16047 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16048 F:      sound/soc/sti/
16049
16050 STI CEC DRIVER
16051 M:      Benjamin Gaignard <[email protected]>
16052 S:      Maintained
16053 F:      drivers/media/platform/sti/cec/
16054 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16055
16056 STK1160 USB VIDEO CAPTURE DRIVER
16057 M:      Ezequiel Garcia <[email protected]>
16058 L:      [email protected]
16059 T:      git git://linuxtv.org/media_tree.git
16060 S:      Maintained
16061 F:      drivers/media/usb/stk1160/
16062
16063 STM32 AUDIO (ASoC) DRIVERS
16064 M:      Olivier Moysan <[email protected]>
16065 M:      Arnaud Pouliquen <[email protected]>
16066 L:      [email protected] (moderated for non-subscribers)
16067 S:      Maintained
16068 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16069 F:      sound/soc/stm/
16070
16071 STM32 TIMER/LPTIMER DRIVERS
16072 M:      Fabrice Gasnier <[email protected]>
16073 S:      Maintained
16074 F:      drivers/*/stm32-*timer*
16075 F:      drivers/pwm/pwm-stm32*
16076 F:      include/linux/*/stm32-*tim*
16077 F:      Documentation/ABI/testing/*timer-stm32
16078 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16079
16080 STMMAC ETHERNET DRIVER
16081 M:      Giuseppe Cavallaro <[email protected]>
16082 M:      Alexandre Torgue <[email protected]>
16083 M:      Jose Abreu <[email protected]>
16084 L:      [email protected]
16085 W:      http://www.stlinux.com
16086 S:      Supported
16087 F:      Documentation/networking/device_drivers/stmicro/
16088 F:      drivers/net/ethernet/stmicro/stmmac/
16089
16090 EXTRA BOOT CONFIG
16091 M:      Masami Hiramatsu <[email protected]>
16092 S:      Maintained
16093 F:      lib/bootconfig.c
16094 F:      fs/proc/bootconfig.c
16095 F:      include/linux/bootconfig.h
16096 F:      tools/bootconfig/*
16097 F:      Documentation/admin-guide/bootconfig.rst
16098
16099 SUN3/3X
16100 M:      Sam Creasey <[email protected]>
16101 W:      http://sammy.net/sun3/
16102 S:      Maintained
16103 F:      arch/m68k/kernel/*sun3*
16104 F:      arch/m68k/sun3*/
16105 F:      arch/m68k/include/asm/sun3*
16106 F:      drivers/net/ethernet/i825xx/sun3*
16107
16108 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16109 M:      Hans de Goede <[email protected]>
16110 L:      [email protected]
16111 S:      Maintained
16112 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16113 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16114
16115 SUNDANCE NETWORK DRIVER
16116 M:      Denis Kirjanov <[email protected]>
16117 L:      [email protected]
16118 S:      Maintained
16119 F:      drivers/net/ethernet/dlink/sundance.c
16120
16121 SUPERH
16122 M:      Yoshinori Sato <[email protected]>
16123 M:      Rich Felker <[email protected]>
16124 L:      [email protected]
16125 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16126 S:      Maintained
16127 F:      Documentation/sh/
16128 F:      arch/sh/
16129 F:      drivers/sh/
16130
16131 SUSPEND TO RAM
16132 M:      "Rafael J. Wysocki" <[email protected]>
16133 M:      Len Brown <[email protected]>
16134 M:      Pavel Machek <[email protected]>
16135 L:      [email protected]
16136 B:      https://bugzilla.kernel.org
16137 S:      Supported
16138 F:      Documentation/power/
16139 F:      arch/x86/kernel/acpi/
16140 F:      drivers/base/power/
16141 F:      kernel/power/
16142 F:      include/linux/suspend.h
16143 F:      include/linux/freezer.h
16144 F:      include/linux/pm.h
16145
16146 SVGA HANDLING
16147 M:      Martin Mares <[email protected]>
16148 L:      [email protected]
16149 S:      Maintained
16150 F:      Documentation/admin-guide/svga.rst
16151 F:      arch/x86/boot/video*
16152
16153 SWIOTLB SUBSYSTEM
16154 M:      Konrad Rzeszutek Wilk <[email protected]>
16155 L:      [email protected]
16156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16157 S:      Supported
16158 F:      kernel/dma/swiotlb.c
16159 F:      arch/*/kernel/pci-swiotlb.c
16160 F:      include/linux/swiotlb.h
16161
16162 SWITCHDEV
16163 M:      Jiri Pirko <[email protected]>
16164 M:      Ivan Vecera <[email protected]>
16165 L:      [email protected]
16166 S:      Supported
16167 F:      net/switchdev/
16168 F:      include/net/switchdev.h
16169
16170 SY8106A REGULATOR DRIVER
16171 M:      Icenowy Zheng <[email protected]>
16172 S:      Maintained
16173 F:      drivers/regulator/sy8106a-regulator.c
16174 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16175
16176 SYNC FILE FRAMEWORK
16177 M:      Sumit Semwal <[email protected]>
16178 R:      Gustavo Padovan <[email protected]>
16179 S:      Maintained
16180 L:      [email protected]
16181 L:      [email protected]
16182 F:      drivers/dma-buf/sync_*
16183 F:      drivers/dma-buf/dma-fence*
16184 F:      drivers/dma-buf/sw_sync.c
16185 F:      include/linux/sync_file.h
16186 F:      include/uapi/linux/sync_file.h
16187 F:      Documentation/driver-api/sync_file.rst
16188 T:      git git://anongit.freedesktop.org/drm/drm-misc
16189
16190 SYNOPSYS ARC ARCHITECTURE
16191 M:      Vineet Gupta <[email protected]>
16192 L:      [email protected]
16193 S:      Supported
16194 F:      arch/arc/
16195 F:      Documentation/devicetree/bindings/arc/*
16196 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16197 F:      drivers/clocksource/arc_timer.c
16198 F:      drivers/tty/serial/arc_uart.c
16199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16200
16201 SYNOPSYS ARC HSDK SDP pll clock driver
16202 M:      Eugeniy Paltsev <[email protected]>
16203 S:      Supported
16204 F:      drivers/clk/clk-hsdk-pll.c
16205 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16206
16207 SYNOPSYS ARC SDP clock driver
16208 M:      Eugeniy Paltsev <[email protected]>
16209 S:      Supported
16210 F:      drivers/clk/axs10x/*
16211 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16212
16213 SYNOPSYS ARC SDP platform support
16214 M:      Alexey Brodkin <[email protected]>
16215 S:      Supported
16216 F:      arch/arc/plat-axs10x
16217 F:      arch/arc/boot/dts/ax*
16218 F:      Documentation/devicetree/bindings/arc/axs10*
16219
16220 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16221 M:      Eugeniy Paltsev <[email protected]>
16222 S:      Supported
16223 F:      drivers/reset/reset-axs10x.c
16224 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16225
16226 SYNOPSYS CREG GPIO DRIVER
16227 M:      Eugeniy Paltsev <[email protected]>
16228 S:      Maintained
16229 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16230 F:      drivers/gpio/gpio-creg-snps.c
16231
16232 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16233 R:      Andy Shevchenko <[email protected]>
16234 S:      Maintained
16235 F:      drivers/tty/serial/8250/8250_dw.c
16236 F:      drivers/tty/serial/8250/8250_dwlib.*
16237 F:      drivers/tty/serial/8250/8250_lpss.c
16238
16239 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16240 M:      Hoan Tran <[email protected]>
16241 L:      [email protected]
16242 S:      Maintained
16243 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
16244 F:      drivers/gpio/gpio-dwapb.c
16245
16246 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16247 M:      Eugeniy Paltsev <[email protected]>
16248 S:      Maintained
16249 F:      drivers/dma/dw-axi-dmac/
16250 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16251
16252 SYNOPSYS DESIGNWARE DMAC DRIVER
16253 M:      Viresh Kumar <[email protected]>
16254 R:      Andy Shevchenko <[email protected]>
16255 S:      Maintained
16256 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16257 F:      drivers/dma/dw/
16258 F:      include/dt-bindings/dma/dw-dmac.h
16259 F:      include/linux/dma/dw.h
16260 F:      include/linux/platform_data/dma-dw.h
16261
16262 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16263 M:      Jose Abreu <[email protected]>
16264 L:      [email protected]
16265 S:      Supported
16266 F:      drivers/net/ethernet/synopsys/
16267
16268 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16269 M:      Jose Abreu <[email protected]>
16270 L:      [email protected]
16271 S:      Supported
16272 F:      drivers/net/phy/mdio-xpcs.c
16273 F:      include/linux/mdio-xpcs.h
16274
16275 SYNOPSYS DESIGNWARE I2C DRIVER
16276 M:      Jarkko Nikula <[email protected]>
16277 R:      Andy Shevchenko <[email protected]>
16278 R:      Mika Westerberg <[email protected]>
16279 L:      [email protected]
16280 S:      Maintained
16281 F:      drivers/i2c/busses/i2c-designware-*
16282 F:      include/linux/platform_data/i2c-designware.h
16283
16284 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16285 M:      Jaehoon Chung <[email protected]>
16286 L:      [email protected]
16287 S:      Maintained
16288 F:      drivers/mmc/host/dw_mmc*
16289
16290 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16291 M:      Eugeniy Paltsev <[email protected]>
16292 S:      Supported
16293 F:      drivers/reset/reset-hsdk.c
16294 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16295 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16296
16297 SYSTEM CONFIGURATION (SYSCON)
16298 M:      Lee Jones <[email protected]>
16299 M:      Arnd Bergmann <[email protected]>
16300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16301 S:      Supported
16302 F:      drivers/mfd/syscon.c
16303
16304 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16305 M:      Sudeep Holla <[email protected]>
16306 L:      [email protected]
16307 S:      Maintained
16308 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16309 F:      drivers/clk/clk-sc[mp]i.c
16310 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16311 F:      drivers/firmware/arm_scpi.c
16312 F:      drivers/firmware/arm_scmi/
16313 F:      drivers/reset/reset-scmi.c
16314 F:      include/linux/sc[mp]i_protocol.h
16315 F:      include/trace/events/scmi.h
16316
16317 SYSTEM RESET/SHUTDOWN DRIVERS
16318 M:      Sebastian Reichel <[email protected]>
16319 L:      [email protected]
16320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16321 S:      Maintained
16322 F:      Documentation/devicetree/bindings/power/reset/
16323 F:      drivers/power/reset/
16324
16325 SYSTEM TRACE MODULE CLASS
16326 M:      Alexander Shishkin <[email protected]>
16327 S:      Maintained
16328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16329 F:      Documentation/trace/stm.rst
16330 F:      drivers/hwtracing/stm/
16331 F:      include/linux/stm.h
16332 F:      include/uapi/linux/stm.h
16333
16334 SYSTEM76 ACPI DRIVER
16335 M:      Jeremy Soller <[email protected]>
16336 M:      System76 Product Development <[email protected]>
16337 L:      [email protected]
16338 S:      Maintained
16339 F:      drivers/platform/x86/system76_acpi.c
16340
16341 SYSV FILESYSTEM
16342 M:      Christoph Hellwig <[email protected]>
16343 S:      Maintained
16344 F:      Documentation/filesystems/sysv-fs.rst
16345 F:      fs/sysv/
16346 F:      include/linux/sysv_fs.h
16347
16348 TASKSTATS STATISTICS INTERFACE
16349 M:      Balbir Singh <[email protected]>
16350 S:      Maintained
16351 F:      Documentation/accounting/taskstats*
16352 F:      include/linux/taskstats*
16353 F:      kernel/taskstats.c
16354
16355 TC subsystem
16356 M:      Jamal Hadi Salim <[email protected]>
16357 M:      Cong Wang <[email protected]>
16358 M:      Jiri Pirko <[email protected]>
16359 L:      [email protected]
16360 S:      Maintained
16361 F:      include/net/pkt_cls.h
16362 F:      include/net/pkt_sched.h
16363 F:      include/net/tc_act/
16364 F:      include/uapi/linux/pkt_cls.h
16365 F:      include/uapi/linux/pkt_sched.h
16366 F:      include/uapi/linux/tc_act/
16367 F:      include/uapi/linux/tc_ematch/
16368 F:      net/sched/
16369
16370 TC90522 MEDIA DRIVER
16371 M:      Akihiro Tsukada <[email protected]>
16372 L:      [email protected]
16373 S:      Odd Fixes
16374 F:      drivers/media/dvb-frontends/tc90522*
16375
16376 TCP LOW PRIORITY MODULE
16377 M:      "Wong Hoi Sing, Edison" <[email protected]>
16378 M:      "Hung Hing Lun, Mike" <[email protected]>
16379 W:      http://tcp-lp-mod.sourceforge.net/
16380 S:      Maintained
16381 F:      net/ipv4/tcp_lp.c
16382
16383 TDA10071 MEDIA DRIVER
16384 M:      Antti Palosaari <[email protected]>
16385 L:      [email protected]
16386 W:      https://linuxtv.org
16387 W:      http://palosaari.fi/linux/
16388 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16389 T:      git git://linuxtv.org/anttip/media_tree.git
16390 S:      Maintained
16391 F:      drivers/media/dvb-frontends/tda10071*
16392
16393 TDA18212 MEDIA DRIVER
16394 M:      Antti Palosaari <[email protected]>
16395 L:      [email protected]
16396 W:      https://linuxtv.org
16397 W:      http://palosaari.fi/linux/
16398 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16399 T:      git git://linuxtv.org/anttip/media_tree.git
16400 S:      Maintained
16401 F:      drivers/media/tuners/tda18212*
16402
16403 TDA18218 MEDIA DRIVER
16404 M:      Antti Palosaari <[email protected]>
16405 L:      [email protected]
16406 W:      https://linuxtv.org
16407 W:      http://palosaari.fi/linux/
16408 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16409 T:      git git://linuxtv.org/anttip/media_tree.git
16410 S:      Maintained
16411 F:      drivers/media/tuners/tda18218*
16412
16413 TDA18250 MEDIA DRIVER
16414 M:      Olli Salonen <[email protected]>
16415 L:      [email protected]
16416 W:      https://linuxtv.org
16417 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16418 T:      git git://linuxtv.org/media_tree.git
16419 S:      Maintained
16420 F:      drivers/media/tuners/tda18250*
16421
16422 TDA18271 MEDIA DRIVER
16423 M:      Michael Krufky <[email protected]>
16424 L:      [email protected]
16425 W:      https://linuxtv.org
16426 W:      http://github.com/mkrufky
16427 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16428 T:      git git://linuxtv.org/mkrufky/tuners.git
16429 S:      Maintained
16430 F:      drivers/media/tuners/tda18271*
16431
16432 TDA1997x MEDIA DRIVER
16433 M:      Tim Harvey <[email protected]>
16434 L:      [email protected]
16435 W:      https://linuxtv.org
16436 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16437 S:      Maintained
16438 F:      drivers/media/i2c/tda1997x.*
16439
16440 TDA827x MEDIA DRIVER
16441 M:      Michael Krufky <[email protected]>
16442 L:      [email protected]
16443 W:      https://linuxtv.org
16444 W:      http://github.com/mkrufky
16445 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16446 T:      git git://linuxtv.org/mkrufky/tuners.git
16447 S:      Maintained
16448 F:      drivers/media/tuners/tda8290.*
16449
16450 TDA8290 MEDIA DRIVER
16451 M:      Michael Krufky <[email protected]>
16452 L:      [email protected]
16453 W:      https://linuxtv.org
16454 W:      http://github.com/mkrufky
16455 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16456 T:      git git://linuxtv.org/mkrufky/tuners.git
16457 S:      Maintained
16458 F:      drivers/media/tuners/tda8290.*
16459
16460 TDA9840 MEDIA DRIVER
16461 M:      Hans Verkuil <[email protected]>
16462 L:      [email protected]
16463 T:      git git://linuxtv.org/media_tree.git
16464 W:      https://linuxtv.org
16465 S:      Maintained
16466 F:      drivers/media/i2c/tda9840*
16467
16468 TEA5761 TUNER DRIVER
16469 M:      Mauro Carvalho Chehab <[email protected]>
16470 L:      [email protected]
16471 W:      https://linuxtv.org
16472 T:      git git://linuxtv.org/media_tree.git
16473 S:      Odd fixes
16474 F:      drivers/media/tuners/tea5761.*
16475
16476 TEA5767 TUNER DRIVER
16477 M:      Mauro Carvalho Chehab <[email protected]>
16478 L:      [email protected]
16479 W:      https://linuxtv.org
16480 T:      git git://linuxtv.org/media_tree.git
16481 S:      Maintained
16482 F:      drivers/media/tuners/tea5767.*
16483
16484 TEA6415C MEDIA DRIVER
16485 M:      Hans Verkuil <[email protected]>
16486 L:      [email protected]
16487 T:      git git://linuxtv.org/media_tree.git
16488 W:      https://linuxtv.org
16489 S:      Maintained
16490 F:      drivers/media/i2c/tea6415c*
16491
16492 TEA6420 MEDIA DRIVER
16493 M:      Hans Verkuil <[email protected]>
16494 L:      [email protected]
16495 T:      git git://linuxtv.org/media_tree.git
16496 W:      https://linuxtv.org
16497 S:      Maintained
16498 F:      drivers/media/i2c/tea6420*
16499
16500 TEAM DRIVER
16501 M:      Jiri Pirko <[email protected]>
16502 L:      [email protected]
16503 S:      Supported
16504 F:      drivers/net/team/
16505 F:      include/linux/if_team.h
16506 F:      include/uapi/linux/if_team.h
16507
16508 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16509 M:      "Savoir-faire Linux Inc." <[email protected]>
16510 S:      Maintained
16511 F:      arch/x86/platform/ts5500/
16512
16513 TECHNOTREND USB IR RECEIVER
16514 M:      Sean Young <[email protected]>
16515 L:      [email protected]
16516 S:      Maintained
16517 F:      drivers/media/rc/ttusbir.c
16518
16519 TECHWELL TW9910 VIDEO DECODER
16520 L:      [email protected]
16521 S:      Orphan
16522 F:      drivers/media/i2c/tw9910.c
16523 F:      include/media/i2c/tw9910.h
16524
16525 TEE SUBSYSTEM
16526 M:      Jens Wiklander <[email protected]>
16527 L:      [email protected]
16528 S:      Maintained
16529 F:      include/linux/tee_drv.h
16530 F:      include/uapi/linux/tee.h
16531 F:      drivers/tee/
16532 F:      Documentation/tee.txt
16533
16534 TEGRA ARCHITECTURE SUPPORT
16535 M:      Thierry Reding <[email protected]>
16536 M:      Jonathan Hunter <[email protected]>
16537 L:      [email protected]
16538 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16540 S:      Supported
16541 N:      [^a-z]tegra
16542
16543 TEGRA CLOCK DRIVER
16544 M:      Peter De Schrijver <[email protected]>
16545 M:      Prashant Gaikwad <[email protected]>
16546 S:      Supported
16547 F:      drivers/clk/tegra/
16548
16549 TEGRA DMA DRIVERS
16550 M:      Laxman Dewangan <[email protected]>
16551 M:      Jon Hunter <[email protected]>
16552 S:      Supported
16553 F:      drivers/dma/tegra*
16554
16555 TEGRA I2C DRIVER
16556 M:      Laxman Dewangan <[email protected]>
16557 R:      Dmitry Osipenko <[email protected]>
16558 S:      Supported
16559 F:      drivers/i2c/busses/i2c-tegra.c
16560
16561 TEGRA IOMMU DRIVERS
16562 M:      Thierry Reding <[email protected]>
16563 L:      [email protected]
16564 S:      Supported
16565 F:      drivers/iommu/tegra*
16566
16567 TEGRA KBC DRIVER
16568 M:      Laxman Dewangan <[email protected]>
16569 S:      Supported
16570 F:      drivers/input/keyboard/tegra-kbc.c
16571
16572 TEGRA NAND DRIVER
16573 M:      Stefan Agner <[email protected]>
16574 M:      Lucas Stach <[email protected]>
16575 S:      Maintained
16576 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16577 F:      drivers/mtd/nand/raw/tegra_nand.c
16578
16579 TEGRA PWM DRIVER
16580 M:      Thierry Reding <[email protected]>
16581 S:      Supported
16582 F:      drivers/pwm/pwm-tegra.c
16583
16584 TEGRA SERIAL DRIVER
16585 M:      Laxman Dewangan <[email protected]>
16586 S:      Supported
16587 F:      drivers/tty/serial/serial-tegra.c
16588
16589 TEGRA SPI DRIVER
16590 M:      Laxman Dewangan <[email protected]>
16591 S:      Supported
16592 F:      drivers/spi/spi-tegra*
16593
16594 TEGRA XUSB PADCTL DRIVER
16595 M:      JC Kuo <[email protected]>
16596 S:      Supported
16597 F:      drivers/phy/tegra/xusb*
16598
16599 TEHUTI ETHERNET DRIVER
16600 M:      Andy Gospodarek <[email protected]>
16601 L:      [email protected]
16602 S:      Supported
16603 F:      drivers/net/ethernet/tehuti/*
16604
16605 Telecom Clock Driver for MCPL0010
16606 M:      Mark Gross <[email protected]>
16607 S:      Supported
16608 F:      drivers/char/tlclk.c
16609
16610 TENSILICA XTENSA PORT (xtensa)
16611 M:      Chris Zankel <[email protected]>
16612 M:      Max Filippov <[email protected]>
16613 L:      [email protected]
16614 T:      git git://github.com/czankel/xtensa-linux.git
16615 S:      Maintained
16616 F:      arch/xtensa/
16617 F:      drivers/irqchip/irq-xtensa-*
16618
16619 Texas Instruments' System Control Interface (TISCI) Protocol Driver
16620 M:      Nishanth Menon <[email protected]>
16621 M:      Tero Kristo <[email protected]>
16622 M:      Santosh Shilimkar <[email protected]>
16623 L:      [email protected]
16624 S:      Maintained
16625 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16626 F:      drivers/firmware/ti_sci*
16627 F:      include/linux/soc/ti/ti_sci_protocol.h
16628 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16629 F:      drivers/soc/ti/ti_sci_pm_domains.c
16630 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16631 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16632 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16633 F:      drivers/clk/keystone/sci-clk.c
16634 F:      drivers/reset/reset-ti-sci.c
16635 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16636 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16637 F:      drivers/irqchip/irq-ti-sci-intr.c
16638 F:      drivers/irqchip/irq-ti-sci-inta.c
16639 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16640 F:      drivers/soc/ti/ti_sci_inta_msi.c
16641
16642 Texas Instruments ASoC drivers
16643 M:      Peter Ujfalusi <[email protected]>
16644 L:      [email protected] (moderated for non-subscribers)
16645 S:      Maintained
16646 F:      sound/soc/ti/
16647
16648 Texas Instruments' DAC7612 DAC Driver
16649 M:      Ricardo Ribalda <[email protected]>
16650 L:      [email protected]
16651 S:      Supported
16652 F:      drivers/iio/dac/ti-dac7612.c
16653 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16654
16655 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16656 M:      Hans Verkuil <[email protected]>
16657 L:      [email protected]
16658 T:      git git://linuxtv.org/media_tree.git
16659 W:      https://linuxtv.org
16660 S:      Maintained
16661 F:      drivers/media/radio/radio-raremono.c
16662
16663 THERMAL
16664 M:      Zhang Rui <[email protected]>
16665 M:      Daniel Lezcano <[email protected]>
16666 R:      Amit Kucheria <[email protected]>
16667 L:      [email protected]
16668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16669 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16670 S:      Supported
16671 F:      drivers/thermal/
16672 F:      include/linux/thermal.h
16673 F:      include/uapi/linux/thermal.h
16674 F:      include/linux/cpu_cooling.h
16675 F:      Documentation/devicetree/bindings/thermal/
16676
16677 THERMAL/CPU_COOLING
16678 M:      Amit Daniel Kachhap <[email protected]>
16679 M:      Daniel Lezcano <[email protected]>
16680 M:      Viresh Kumar <[email protected]>
16681 M:      Javi Merino <[email protected]>
16682 L:      [email protected]
16683 S:      Supported
16684 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16685 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16686 F:      drivers/thermal/cpufreq_cooling.c
16687 F:      drivers/thermal/cpuidle_cooling.c
16688 F:      include/linux/cpu_cooling.h
16689
16690 THERMAL DRIVER FOR AMLOGIC SOCS
16691 M:      Guillaume La Roque <[email protected]>
16692 L:      [email protected]
16693 L:      [email protected]
16694 W:      http://linux-meson.com/
16695 S:      Supported
16696 F:      drivers/thermal/amlogic_thermal.c
16697 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16698
16699 THINKPAD ACPI EXTRAS DRIVER
16700 M:      Henrique de Moraes Holschuh <[email protected]>
16701 L:      [email protected]
16702 L:      [email protected]
16703 S:      Maintained
16704 W:      http://ibm-acpi.sourceforge.net
16705 W:      http://thinkwiki.org/wiki/Ibm-acpi
16706 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16707 F:      drivers/platform/x86/thinkpad_acpi.c
16708
16709 THUNDERBOLT DRIVER
16710 M:      Andreas Noever <[email protected]>
16711 M:      Michael Jamet <[email protected]>
16712 M:      Mika Westerberg <[email protected]>
16713 M:      Yehezkel Bernat <[email protected]>
16714 L:      [email protected]
16715 S:      Maintained
16716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16717 F:      Documentation/admin-guide/thunderbolt.rst
16718 F:      drivers/thunderbolt/
16719 F:      include/linux/thunderbolt.h
16720
16721 THUNDERBOLT NETWORK DRIVER
16722 M:      Michael Jamet <[email protected]>
16723 M:      Mika Westerberg <[email protected]>
16724 M:      Yehezkel Bernat <[email protected]>
16725 L:      [email protected]
16726 S:      Maintained
16727 F:      drivers/net/thunderbolt.c
16728
16729 THUNDERX GPIO DRIVER
16730 M:      Robert Richter <[email protected]>
16731 S:      Maintained
16732 F:      drivers/gpio/gpio-thunderx.c
16733
16734 TI AM437X VPFE DRIVER
16735 M:      "Lad, Prabhakar" <[email protected]>
16736 L:      [email protected]
16737 W:      https://linuxtv.org
16738 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16739 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16740 S:      Maintained
16741 F:      drivers/media/platform/am437x/
16742
16743 TI BANDGAP AND THERMAL DRIVER
16744 M:      Eduardo Valentin <[email protected]>
16745 M:      Keerthy <[email protected]>
16746 L:      [email protected]
16747 L:      [email protected]
16748 S:      Maintained
16749 F:      drivers/thermal/ti-soc-thermal/
16750
16751 TI BQ27XXX POWER SUPPLY DRIVER
16752 R:      Andrew F. Davis <[email protected]>
16753 F:      include/linux/power/bq27xxx_battery.h
16754 F:      drivers/power/supply/bq27xxx_battery.c
16755 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16756
16757 TI CDCE706 CLOCK DRIVER
16758 M:      Max Filippov <[email protected]>
16759 S:      Maintained
16760 F:      drivers/clk/clk-cdce706.c
16761
16762 TI CLOCK DRIVER
16763 M:      Tero Kristo <[email protected]>
16764 L:      [email protected]
16765 S:      Maintained
16766 F:      drivers/clk/ti/
16767 F:      include/linux/clk/ti.h
16768
16769 TI DAVINCI MACHINE SUPPORT
16770 M:      Sekhar Nori <[email protected]>
16771 R:      Bartosz Golaszewski <[email protected]>
16772 L:      [email protected] (moderated for non-subscribers)
16773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16774 S:      Supported
16775 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16776 F:      arch/arm/mach-davinci/
16777 F:      drivers/i2c/busses/i2c-davinci.c
16778 F:      arch/arm/boot/dts/da850*
16779
16780 TI DAVINCI SERIES CLOCK DRIVER
16781 M:      David Lechner <[email protected]>
16782 R:      Sekhar Nori <[email protected]>
16783 S:      Maintained
16784 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16785 F:      drivers/clk/davinci/
16786
16787 TI DAVINCI SERIES GPIO DRIVER
16788 M:      Keerthy <[email protected]>
16789 L:      [email protected]
16790 S:      Maintained
16791 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16792 F:      drivers/gpio/gpio-davinci.c
16793
16794 TI DAVINCI SERIES MEDIA DRIVER
16795 M:      "Lad, Prabhakar" <[email protected]>
16796 L:      [email protected]
16797 W:      https://linuxtv.org
16798 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16799 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16800 S:      Maintained
16801 F:      drivers/media/platform/davinci/
16802 F:      include/media/davinci/
16803
16804 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
16805 R:      David Lechner <[email protected]>
16806 L:      [email protected]
16807 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
16808 F:      drivers/counter/ti-eqep.c
16809
16810 TI ETHERNET SWITCH DRIVER (CPSW)
16811 R:      Grygorii Strashko <[email protected]>
16812 L:      [email protected]
16813 L:      [email protected]
16814 S:      Maintained
16815 F:      drivers/net/ethernet/ti/cpsw*
16816 F:      drivers/net/ethernet/ti/davinci*
16817
16818 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16819 M:      Alex Dubov <[email protected]>
16820 S:      Maintained
16821 W:      http://tifmxx.berlios.de/
16822 F:      drivers/memstick/host/tifm_ms.c
16823 F:      drivers/misc/tifm*
16824 F:      drivers/mmc/host/tifm_sd.c
16825 F:      include/linux/tifm.h
16826
16827 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16828 M:      Santosh Shilimkar <[email protected]>
16829 L:      [email protected]
16830 L:      [email protected] (moderated for non-subscribers)
16831 S:      Maintained
16832 F:      drivers/soc/ti/*
16833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16834
16835 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16836 M:      M R Swami Reddy <[email protected]>
16837 M:      Vishwas A Deshpande <[email protected]>
16838 L:      [email protected] (moderated for non-subscribers)
16839 S:      Maintained
16840 F:      sound/soc/codecs/lm49453*
16841 F:      sound/soc/codecs/isabelle*
16842
16843 TI LP855x BACKLIGHT DRIVER
16844 M:      Milo Kim <[email protected]>
16845 S:      Maintained
16846 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16847 F:      drivers/video/backlight/lp855x_bl.c
16848 F:      include/linux/platform_data/lp855x.h
16849
16850 TI LP8727 CHARGER DRIVER
16851 M:      Milo Kim <[email protected]>
16852 S:      Maintained
16853 F:      drivers/power/supply/lp8727_charger.c
16854 F:      include/linux/platform_data/lp8727.h
16855
16856 TI LP8788 MFD DRIVER
16857 M:      Milo Kim <[email protected]>
16858 S:      Maintained
16859 F:      drivers/iio/adc/lp8788_adc.c
16860 F:      drivers/leds/leds-lp8788.c
16861 F:      drivers/mfd/lp8788*.c
16862 F:      drivers/power/supply/lp8788-charger.c
16863 F:      drivers/regulator/lp8788-*.c
16864 F:      include/linux/mfd/lp8788*.h
16865
16866 TI NETCP ETHERNET DRIVER
16867 M:      Wingman Kwok <[email protected]>
16868 M:      Murali Karicheri <[email protected]>
16869 L:      [email protected]
16870 S:      Maintained
16871 F:      drivers/net/ethernet/ti/netcp*
16872
16873 TI PCM3060 ASoC CODEC DRIVER
16874 M:      Kirill Marinushkin <[email protected]>
16875 L:      [email protected] (moderated for non-subscribers)
16876 S:      Maintained
16877 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16878 F:      sound/soc/codecs/pcm3060*
16879
16880 TI TAS571X FAMILY ASoC CODEC DRIVER
16881 M:      Kevin Cernekee <[email protected]>
16882 L:      [email protected] (moderated for non-subscribers)
16883 S:      Odd Fixes
16884 F:      sound/soc/codecs/tas571x*
16885
16886 TI TCAN4X5X DEVICE DRIVER
16887 M:      Dan Murphy <[email protected]>
16888 L:      [email protected]
16889 S:      Maintained
16890 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
16891 F:      drivers/net/can/m_can/tcan4x5x.c
16892
16893 TI TRF7970A NFC DRIVER
16894 M:      Mark Greer <[email protected]>
16895 L:      [email protected]
16896 L:      [email protected] (moderated for non-subscribers)
16897 S:      Supported
16898 F:      drivers/nfc/trf7970a.c
16899 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16900
16901 TI TWL4030 SERIES SOC CODEC DRIVER
16902 M:      Peter Ujfalusi <[email protected]>
16903 L:      [email protected] (moderated for non-subscribers)
16904 S:      Maintained
16905 F:      sound/soc/codecs/twl4030*
16906
16907 TI VPE/CAL DRIVERS
16908 M:      Benoit Parrot <[email protected]>
16909 L:      [email protected]
16910 S:      Maintained
16911 W:      http://linuxtv.org/
16912 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16913 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
16914 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
16915 F:      drivers/media/platform/ti-vpe/
16916
16917 TI WILINK WIRELESS DRIVERS
16918 L:      [email protected]
16919 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16920 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16922 S:      Orphan
16923 F:      drivers/net/wireless/ti/
16924 F:      include/linux/wl12xx.h
16925
16926 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16927 M:      John Stultz <[email protected]>
16928 M:      Thomas Gleixner <[email protected]>
16929 R:      Stephen Boyd <[email protected]>
16930 L:      [email protected]
16931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16932 S:      Supported
16933 F:      include/linux/clocksource.h
16934 F:      include/linux/time.h
16935 F:      include/linux/timex.h
16936 F:      include/uapi/linux/time.h
16937 F:      include/uapi/linux/timex.h
16938 F:      kernel/time/clocksource.c
16939 F:      kernel/time/time*.c
16940 F:      kernel/time/alarmtimer.c
16941 F:      kernel/time/ntp.c
16942 F:      tools/testing/selftests/timers/
16943
16944 TIPC NETWORK LAYER
16945 M:      Jon Maloy <[email protected]>
16946 M:      Ying Xue <[email protected]>
16947 L:      [email protected] (core kernel code)
16948 L:      [email protected] (user apps, general discussion)
16949 W:      http://tipc.sourceforge.net/
16950 S:      Maintained
16951 F:      include/uapi/linux/tipc*.h
16952 F:      net/tipc/
16953
16954 TLAN NETWORK DRIVER
16955 M:      Samuel Chessman <[email protected]>
16956 L:      [email protected] (subscribers-only)
16957 W:      http://sourceforge.net/projects/tlan/
16958 S:      Maintained
16959 F:      Documentation/networking/device_drivers/ti/tlan.txt
16960 F:      drivers/net/ethernet/ti/tlan.*
16961
16962 TM6000 VIDEO4LINUX DRIVER
16963 M:      Mauro Carvalho Chehab <[email protected]>
16964 L:      [email protected]
16965 W:      https://linuxtv.org
16966 T:      git git://linuxtv.org/media_tree.git
16967 S:      Odd fixes
16968 F:      drivers/media/usb/tm6000/
16969 F:      Documentation/media/v4l-drivers/tm6000*
16970
16971 TMIO/SDHI MMC DRIVER
16972 M:      Wolfram Sang <[email protected]>
16973 L:      [email protected]
16974 S:      Supported
16975 F:      drivers/mmc/host/tmio_mmc*
16976 F:      drivers/mmc/host/renesas_sdhi*
16977 F:      include/linux/mfd/tmio.h
16978
16979 TMP401 HARDWARE MONITOR DRIVER
16980 M:      Guenter Roeck <[email protected]>
16981 L:      [email protected]
16982 S:      Maintained
16983 F:      Documentation/hwmon/tmp401.rst
16984 F:      drivers/hwmon/tmp401.c
16985
16986 TMP513 HARDWARE MONITOR DRIVER
16987 M:      Eric Tremblay <[email protected]>
16988 L:      [email protected]
16989 S:      Maintained
16990 F:      Documentation/hwmon/tmp513.rst
16991 F:      drivers/hwmon/tmp513.c
16992
16993 TMPFS (SHMEM FILESYSTEM)
16994 M:      Hugh Dickins <[email protected]>
16995 L:      [email protected]
16996 S:      Maintained
16997 F:      include/linux/shmem_fs.h
16998 F:      mm/shmem.c
16999
17000 TOMOYO SECURITY MODULE
17001 M:      Kentaro Takeda <[email protected]>
17002 M:      Tetsuo Handa <[email protected]>
17003 L:      [email protected] (subscribers-only, for developers in English)
17004 L:      [email protected] (subscribers-only, for users in English)
17005 L:      [email protected] (subscribers-only, for developers in Japanese)
17006 L:      [email protected] (subscribers-only, for users in Japanese)
17007 W:      https://tomoyo.osdn.jp/
17008 S:      Maintained
17009 F:      security/tomoyo/
17010
17011 TOPSTAR LAPTOP EXTRAS DRIVER
17012 M:      Herton Ronaldo Krzesinski <[email protected]>
17013 L:      [email protected]
17014 S:      Maintained
17015 F:      drivers/platform/x86/topstar-laptop.c
17016
17017 TORTURE-TEST MODULES
17018 M:      Davidlohr Bueso <[email protected]>
17019 M:      "Paul E. McKenney" <[email protected]>
17020 M:      Josh Triplett <[email protected]>
17021 L:      [email protected]
17022 S:      Supported
17023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17024 F:      Documentation/RCU/torture.txt
17025 F:      kernel/torture.c
17026 F:      kernel/rcu/rcutorture.c
17027 F:      kernel/rcu/rcuperf.c
17028 F:      kernel/locking/locktorture.c
17029
17030 TOSHIBA ACPI EXTRAS DRIVER
17031 M:      Azael Avalos <[email protected]>
17032 L:      [email protected]
17033 S:      Maintained
17034 F:      drivers/platform/x86/toshiba_acpi.c
17035
17036 TOSHIBA BLUETOOTH DRIVER
17037 M:      Azael Avalos <[email protected]>
17038 L:      [email protected]
17039 S:      Maintained
17040 F:      drivers/platform/x86/toshiba_bluetooth.c
17041
17042 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17043 M:      Azael Avalos <[email protected]>
17044 L:      [email protected]
17045 S:      Maintained
17046 F:      drivers/platform/x86/toshiba_haps.c
17047
17048 TOSHIBA SMM DRIVER
17049 M:      Jonathan Buzzard <[email protected]>
17050 W:      http://www.buzzard.org.uk/toshiba/
17051 S:      Maintained
17052 F:      drivers/char/toshiba.c
17053 F:      include/linux/toshiba.h
17054 F:      include/uapi/linux/toshiba.h
17055
17056 TOSHIBA TC358743 DRIVER
17057 M:      Mats Randgaard <[email protected]>
17058 L:      [email protected]
17059 S:      Maintained
17060 F:      drivers/media/i2c/tc358743*
17061 F:      include/media/i2c/tc358743.h
17062
17063 TOSHIBA WMI HOTKEYS DRIVER
17064 M:      Azael Avalos <[email protected]>
17065 L:      [email protected]
17066 S:      Maintained
17067 F:      drivers/platform/x86/toshiba-wmi.c
17068
17069 TPM DEVICE DRIVER
17070 M:      Peter Huewe <[email protected]>
17071 M:      Jarkko Sakkinen <[email protected]>
17072 R:      Jason Gunthorpe <[email protected]>
17073 L:      [email protected]
17074 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17075 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17076 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17077 S:      Maintained
17078 F:      drivers/char/tpm/
17079
17080 TRACING
17081 M:      Steven Rostedt <[email protected]>
17082 M:      Ingo Molnar <[email protected]>
17083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17084 S:      Maintained
17085 F:      Documentation/trace/ftrace.rst
17086 F:      arch/*/*/*/ftrace.h
17087 F:      arch/*/kernel/ftrace.c
17088 F:      include/*/ftrace.h
17089 F:      include/linux/trace*.h
17090 F:      include/trace/
17091 F:      kernel/trace/
17092 F:      tools/testing/selftests/ftrace/
17093
17094 TRACING MMIO ACCESSES (MMIOTRACE)
17095 M:      Steven Rostedt <[email protected]>
17096 M:      Ingo Molnar <[email protected]>
17097 R:      Karol Herbst <[email protected]>
17098 R:      Pekka Paalanen <[email protected]>
17099 S:      Maintained
17100 L:      [email protected]
17101 L:      [email protected]
17102 F:      kernel/trace/trace_mmiotrace.c
17103 F:      include/linux/mmiotrace.h
17104 F:      arch/x86/mm/kmmio.c
17105 F:      arch/x86/mm/mmio-mod.c
17106 F:      arch/x86/mm/testmmiotrace.c
17107
17108 TRIVIAL PATCHES
17109 M:      Jiri Kosina <[email protected]>
17110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17111 S:      Maintained
17112 K:      ^Subject:.*(?i)trivial
17113
17114 TEMPO SEMICONDUCTOR DRIVERS
17115 M:      Steven Eckhoff <[email protected]>
17116 S:      Maintained
17117 F:      sound/soc/codecs/tscs*.c
17118 F:      sound/soc/codecs/tscs*.h
17119 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17120
17121 TTY LAYER
17122 M:      Greg Kroah-Hartman <[email protected]>
17123 M:      Jiri Slaby <[email protected]>
17124 S:      Supported
17125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17126 F:      Documentation/driver-api/serial/
17127 F:      drivers/tty/
17128 F:      drivers/tty/serial/serial_core.c
17129 F:      include/linux/serial_core.h
17130 F:      include/linux/serial.h
17131 F:      include/linux/tty.h
17132 F:      include/uapi/linux/serial_core.h
17133 F:      include/uapi/linux/serial.h
17134 F:      include/uapi/linux/tty.h
17135
17136 TUA9001 MEDIA DRIVER
17137 M:      Antti Palosaari <[email protected]>
17138 L:      [email protected]
17139 W:      https://linuxtv.org
17140 W:      http://palosaari.fi/linux/
17141 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17142 T:      git git://linuxtv.org/anttip/media_tree.git
17143 S:      Maintained
17144 F:      drivers/media/tuners/tua9001*
17145
17146 TULIP NETWORK DRIVERS
17147 L:      [email protected]
17148 L:      [email protected]
17149 S:      Orphan
17150 F:      drivers/net/ethernet/dec/tulip/
17151
17152 TUN/TAP driver
17153 M:      Maxim Krasnyansky <[email protected]>
17154 W:      http://vtun.sourceforge.net/tun
17155 S:      Maintained
17156 F:      Documentation/networking/tuntap.txt
17157 F:      arch/um/os-Linux/drivers/
17158
17159 TURBOCHANNEL SUBSYSTEM
17160 M:      "Maciej W. Rozycki" <[email protected]>
17161 M:      Ralf Baechle <[email protected]>
17162 L:      [email protected]
17163 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17164 S:      Maintained
17165 F:      drivers/tc/
17166 F:      include/linux/tc.h
17167
17168 TURBOSTAT UTILITY
17169 M:      "Len Brown" <[email protected]>
17170 L:      [email protected]
17171 B:      https://bugzilla.kernel.org
17172 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17174 S:      Supported
17175 F:      tools/power/x86/turbostat/
17176
17177 TW5864 VIDEO4LINUX DRIVER
17178 M:      Bluecherry Maintainers <[email protected]>
17179 M:      Anton Sviridenko <[email protected]>
17180 M:      Andrey Utkin <[email protected]>
17181 M:      Andrey Utkin <[email protected]>
17182 L:      [email protected]
17183 S:      Supported
17184 F:      drivers/media/pci/tw5864/
17185
17186 TW68 VIDEO4LINUX DRIVER
17187 M:      Hans Verkuil <[email protected]>
17188 L:      [email protected]
17189 T:      git git://linuxtv.org/media_tree.git
17190 W:      https://linuxtv.org
17191 S:      Odd Fixes
17192 F:      drivers/media/pci/tw68/
17193
17194 TW686X VIDEO4LINUX DRIVER
17195 M:      Ezequiel Garcia <[email protected]>
17196 L:      [email protected]
17197 T:      git git://linuxtv.org/media_tree.git
17198 W:      http://linuxtv.org
17199 S:      Maintained
17200 F:      drivers/media/pci/tw686x/
17201
17202 UACCE ACCELERATOR FRAMEWORK
17203 M:      Zhangfei Gao <[email protected]>
17204 M:      Zhou Wang <[email protected]>
17205 L:      [email protected]
17206 L:      [email protected]
17207 S:      Maintained
17208 F:      Documentation/ABI/testing/sysfs-driver-uacce
17209 F:      Documentation/misc-devices/uacce.rst
17210 F:      drivers/misc/uacce/
17211 F:      include/linux/uacce.h
17212 F:      include/uapi/misc/uacce/
17213
17214 UBI FILE SYSTEM (UBIFS)
17215 M:      Richard Weinberger <[email protected]>
17216 L:      [email protected]
17217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17219 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17220 S:      Supported
17221 F:      Documentation/filesystems/ubifs.rst
17222 F:      fs/ubifs/
17223
17224 UCLINUX (M68KNOMMU AND COLDFIRE)
17225 M:      Greg Ungerer <[email protected]>
17226 W:      http://www.linux-m68k.org/
17227 W:      http://www.uclinux.org/
17228 L:      [email protected]
17229 L:      [email protected]  (subscribers-only)
17230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17231 S:      Maintained
17232 F:      arch/m68k/coldfire/
17233 F:      arch/m68k/68*/
17234 F:      arch/m68k/*/*_no.*
17235 F:      arch/m68k/include/asm/*_no.*
17236
17237 UDF FILESYSTEM
17238 M:      Jan Kara <[email protected]>
17239 S:      Maintained
17240 F:      Documentation/filesystems/udf.rst
17241 F:      fs/udf/
17242
17243 UDRAW TABLET
17244 M:      Bastien Nocera <[email protected]>
17245 L:      [email protected]
17246 S:      Maintained
17247 F:      drivers/hid/hid-udraw-ps3.c
17248
17249 UFS FILESYSTEM
17250 M:      Evgeniy Dushistov <[email protected]>
17251 S:      Maintained
17252 F:      Documentation/admin-guide/ufs.rst
17253 F:      fs/ufs/
17254
17255 UHID USERSPACE HID IO DRIVER
17256 M:      David Herrmann <[email protected]>
17257 L:      [email protected]
17258 S:      Maintained
17259 F:      drivers/hid/uhid.c
17260 F:      include/uapi/linux/uhid.h
17261
17262 ULPI BUS
17263 M:      Heikki Krogerus <[email protected]>
17264 L:      [email protected]
17265 S:      Maintained
17266 F:      drivers/usb/common/ulpi.c
17267 F:      include/linux/ulpi/
17268
17269 UNICODE SUBSYSTEM
17270 M:      Gabriel Krisman Bertazi <[email protected]>
17271 L:      [email protected]
17272 S:      Supported
17273 F:      fs/unicode/
17274
17275 UNICORE32 ARCHITECTURE
17276 M:      Guan Xuetao <[email protected]>
17277 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17278 S:      Maintained
17279 T:      git git://github.com/gxt/linux.git
17280 F:      arch/unicore32/
17281
17282 UNIFDEF
17283 M:      Tony Finch <[email protected]>
17284 W:      http://dotat.at/prog/unifdef
17285 S:      Maintained
17286 F:      scripts/unifdef.c
17287
17288 UNIFORM CDROM DRIVER
17289 M:      Jens Axboe <[email protected]>
17290 W:      http://www.kernel.dk
17291 S:      Maintained
17292 F:      Documentation/cdrom/
17293 F:      drivers/cdrom/cdrom.c
17294 F:      include/linux/cdrom.h
17295 F:      include/uapi/linux/cdrom.h
17296
17297 UNISYS S-PAR DRIVERS
17298 M:      David Kershner <[email protected]>
17299 L:      [email protected] (Unisys internal)
17300 S:      Supported
17301 F:      include/linux/visorbus.h
17302 F:      drivers/visorbus/
17303 F:      drivers/staging/unisys/
17304
17305 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17306 R:      Alim Akhtar <[email protected]>
17307 R:      Avri Altman <[email protected]>
17308 L:      [email protected]
17309 S:      Supported
17310 F:      Documentation/scsi/ufs.rst
17311 F:      drivers/scsi/ufs/
17312
17313 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17314 M:      Pedro Sousa <[email protected]>
17315 L:      [email protected]
17316 S:      Supported
17317 F:      drivers/scsi/ufs/*dwc*
17318
17319 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17320 M:      Stanley Chu <[email protected]>
17321 L:      [email protected]
17322 L:      [email protected] (moderated for non-subscribers)
17323 S:      Maintained
17324 F:      drivers/scsi/ufs/ufs-mediatek*
17325
17326 UNSORTED BLOCK IMAGES (UBI)
17327 M:      Richard Weinberger <[email protected]>
17328 W:      http://www.linux-mtd.infradead.org/
17329 L:      [email protected]
17330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17332 S:      Supported
17333 F:      drivers/mtd/ubi/
17334 F:      include/linux/mtd/ubi.h
17335 F:      include/uapi/mtd/ubi-user.h
17336
17337 USB "USBNET" DRIVER FRAMEWORK
17338 M:      Oliver Neukum <[email protected]>
17339 L:      [email protected]
17340 W:      http://www.linux-usb.org/usbnet
17341 S:      Maintained
17342 F:      drivers/net/usb/usbnet.c
17343 F:      include/linux/usb/usbnet.h
17344
17345 USB ACM DRIVER
17346 M:      Oliver Neukum <[email protected]>
17347 L:      [email protected]
17348 S:      Maintained
17349 F:      Documentation/usb/acm.rst
17350 F:      drivers/usb/class/cdc-acm.*
17351
17352 USB APPLE MFI FASTCHARGE DRIVER
17353 M:      Bastien Nocera <[email protected]>
17354 L:      [email protected]
17355 S:      Maintained
17356 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17357
17358 USB AR5523 WIRELESS DRIVER
17359 M:      Pontus Fuchs <[email protected]>
17360 L:      [email protected]
17361 S:      Maintained
17362 F:      drivers/net/wireless/ath/ar5523/
17363
17364 USB ATTACHED SCSI
17365 M:      Oliver Neukum <[email protected]>
17366 L:      [email protected]
17367 L:      [email protected]
17368 S:      Maintained
17369 F:      drivers/usb/storage/uas.c
17370
17371 USB CDC ETHERNET DRIVER
17372 M:      Oliver Neukum <[email protected]>
17373 L:      [email protected]
17374 S:      Maintained
17375 F:      drivers/net/usb/cdc_*.c
17376 F:      include/uapi/linux/usb/cdc.h
17377
17378 USB CHAOSKEY DRIVER
17379 M:      Keith Packard <[email protected]>
17380 L:      [email protected]
17381 S:      Maintained
17382 F:      drivers/usb/misc/chaoskey.c
17383
17384 USB CYPRESS C67X00 DRIVER
17385 M:      Peter Korsgaard <[email protected]>
17386 L:      [email protected]
17387 S:      Maintained
17388 F:      drivers/usb/c67x00/
17389
17390 USB DAVICOM DM9601 DRIVER
17391 M:      Peter Korsgaard <[email protected]>
17392 L:      [email protected]
17393 W:      http://www.linux-usb.org/usbnet
17394 S:      Maintained
17395 F:      drivers/net/usb/dm9601.c
17396
17397 USB EHCI DRIVER
17398 M:      Alan Stern <[email protected]>
17399 L:      [email protected]
17400 S:      Maintained
17401 F:      Documentation/usb/ehci.rst
17402 F:      drivers/usb/host/ehci*
17403
17404 USB GADGET/PERIPHERAL SUBSYSTEM
17405 M:      Felipe Balbi <[email protected]>
17406 L:      [email protected]
17407 W:      http://www.linux-usb.org/gadget
17408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17409 S:      Maintained
17410 F:      drivers/usb/gadget/
17411 F:      include/linux/usb/gadget*
17412
17413 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17414 M:      Jiri Kosina <[email protected]>
17415 M:      Benjamin Tissoires <[email protected]>
17416 L:      [email protected]
17417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17418 S:      Maintained
17419 F:      Documentation/hid/hiddev.rst
17420 F:      drivers/hid/usbhid/
17421
17422 USB INTEL XHCI ROLE MUX DRIVER
17423 M:      Hans de Goede <[email protected]>
17424 L:      [email protected]
17425 S:      Maintained
17426 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17427
17428 USB IP DRIVER FOR HISILICON KIRIN
17429 M:      Yu Chen <[email protected]>
17430 M:      Binghui Wang <[email protected]>
17431 L:      [email protected]
17432 S:      Maintained
17433 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17434 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17435
17436 USB ISP116X DRIVER
17437 M:      Olav Kongas <[email protected]>
17438 L:      [email protected]
17439 S:      Maintained
17440 F:      drivers/usb/host/isp116x*
17441 F:      include/linux/usb/isp116x.h
17442
17443 USB LAN78XX ETHERNET DRIVER
17444 M:      Woojung Huh <[email protected]>
17445 M:      Microchip Linux Driver Support <[email protected]>
17446 L:      [email protected]
17447 S:      Maintained
17448 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17449 F:      drivers/net/usb/lan78xx.*
17450 F:      include/dt-bindings/net/microchip-lan78xx.h
17451
17452 USB MASS STORAGE DRIVER
17453 M:      Alan Stern <[email protected]>
17454 L:      [email protected]
17455 L:      [email protected]
17456 S:      Maintained
17457 F:      drivers/usb/storage/
17458
17459 USB MIDI DRIVER
17460 M:      Clemens Ladisch <[email protected]>
17461 L:      [email protected] (moderated for non-subscribers)
17462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17463 S:      Maintained
17464 F:      sound/usb/midi.*
17465
17466 USB NETWORKING DRIVERS
17467 L:      [email protected]
17468 S:      Odd Fixes
17469 F:      drivers/net/usb/
17470
17471 USB OHCI DRIVER
17472 M:      Alan Stern <[email protected]>
17473 L:      [email protected]
17474 S:      Maintained
17475 F:      Documentation/usb/ohci.rst
17476 F:      drivers/usb/host/ohci*
17477
17478 USB OTG FSM (Finite State Machine)
17479 M:      Peter Chen <[email protected]>
17480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17481 L:      [email protected]
17482 S:      Maintained
17483 F:      drivers/usb/common/usb-otg-fsm.c
17484
17485 USB OVER IP DRIVER
17486 M:      Valentina Manea <[email protected]>
17487 M:      Shuah Khan <[email protected]>
17488 M:      Shuah Khan <[email protected]>
17489 L:      [email protected]
17490 S:      Maintained
17491 F:      Documentation/usb/usbip_protocol.rst
17492 F:      drivers/usb/usbip/
17493 F:      tools/usb/usbip/
17494 F:      tools/testing/selftests/drivers/usb/usbip/
17495
17496 USB PEGASUS DRIVER
17497 M:      Petko Manolov <[email protected]>
17498 L:      [email protected]
17499 L:      [email protected]
17500 T:      git git://github.com/petkan/pegasus.git
17501 W:      https://github.com/petkan/pegasus
17502 S:      Maintained
17503 F:      drivers/net/usb/pegasus.*
17504
17505 USB PHY LAYER
17506 M:      Felipe Balbi <[email protected]>
17507 L:      [email protected]
17508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17509 S:      Maintained
17510 F:      drivers/usb/phy/
17511
17512 USB PRINTER DRIVER (usblp)
17513 M:      Pete Zaitcev <[email protected]>
17514 L:      [email protected]
17515 S:      Supported
17516 F:      drivers/usb/class/usblp.c
17517
17518 USB QMI WWAN NETWORK DRIVER
17519 M:      Bjørn Mork <[email protected]>
17520 L:      [email protected]
17521 S:      Maintained
17522 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17523 F:      drivers/net/usb/qmi_wwan.c
17524
17525 USB RTL8150 DRIVER
17526 M:      Petko Manolov <[email protected]>
17527 L:      [email protected]
17528 L:      [email protected]
17529 T:      git git://github.com/petkan/rtl8150.git
17530 W:      https://github.com/petkan/rtl8150
17531 S:      Maintained
17532 F:      drivers/net/usb/rtl8150.c
17533
17534 USB SERIAL SUBSYSTEM
17535 M:      Johan Hovold <[email protected]>
17536 L:      [email protected]
17537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17538 S:      Maintained
17539 F:      Documentation/usb/usb-serial.rst
17540 F:      drivers/usb/serial/
17541 F:      include/linux/usb/serial.h
17542
17543 USB SMSC75XX ETHERNET DRIVER
17544 M:      Steve Glendinning <[email protected]>
17545 L:      [email protected]
17546 S:      Maintained
17547 F:      drivers/net/usb/smsc75xx.*
17548
17549 USB SMSC95XX ETHERNET DRIVER
17550 M:      Steve Glendinning <[email protected]>
17551 M:      Microchip Linux Driver Support <[email protected]>
17552 L:      [email protected]
17553 S:      Maintained
17554 F:      drivers/net/usb/smsc95xx.*
17555
17556 USB SUBSYSTEM
17557 M:      Greg Kroah-Hartman <[email protected]>
17558 L:      [email protected]
17559 W:      http://www.linux-usb.org
17560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17561 S:      Supported
17562 F:      Documentation/devicetree/bindings/usb/
17563 F:      Documentation/usb/
17564 F:      drivers/usb/
17565 F:      include/linux/usb.h
17566 F:      include/linux/usb/
17567
17568 USB TYPEC BUS FOR ALTERNATE MODES
17569 M:      Heikki Krogerus <[email protected]>
17570 L:      [email protected]
17571 S:      Maintained
17572 F:      Documentation/ABI/testing/sysfs-bus-typec
17573 F:      Documentation/driver-api/usb/typec_bus.rst
17574 F:      drivers/usb/typec/altmodes/
17575 F:      include/linux/usb/typec_altmode.h
17576
17577 USB TYPEC CLASS
17578 M:      Heikki Krogerus <[email protected]>
17579 L:      [email protected]
17580 S:      Maintained
17581 F:      Documentation/ABI/testing/sysfs-class-typec
17582 F:      Documentation/driver-api/usb/typec.rst
17583 F:      drivers/usb/typec/
17584 F:      include/linux/usb/typec.h
17585
17586 USB TYPEC PI3USB30532 MUX DRIVER
17587 M:      Hans de Goede <[email protected]>
17588 L:      [email protected]
17589 S:      Maintained
17590 F:      drivers/usb/typec/mux/pi3usb30532.c
17591
17592 USB TYPEC PORT CONTROLLER DRIVERS
17593 M:      Guenter Roeck <[email protected]>
17594 L:      [email protected]
17595 S:      Maintained
17596 F:      drivers/usb/typec/tcpm/
17597
17598 USB UHCI DRIVER
17599 M:      Alan Stern <[email protected]>
17600 L:      [email protected]
17601 S:      Maintained
17602 F:      drivers/usb/host/uhci*
17603
17604 USB VIDEO CLASS
17605 M:      Laurent Pinchart <[email protected]>
17606 L:      [email protected] (subscribers-only)
17607 L:      [email protected]
17608 T:      git git://linuxtv.org/media_tree.git
17609 W:      http://www.ideasonboard.org/uvc/
17610 S:      Maintained
17611 F:      drivers/media/usb/uvc/
17612 F:      include/uapi/linux/uvcvideo.h
17613
17614 USB VISION DRIVER
17615 M:      Hans Verkuil <[email protected]>
17616 L:      [email protected]
17617 T:      git git://linuxtv.org/media_tree.git
17618 W:      https://linuxtv.org
17619 S:      Odd Fixes
17620 F:      drivers/staging/media/usbvision/
17621
17622 USB WEBCAM GADGET
17623 M:      Laurent Pinchart <[email protected]>
17624 L:      [email protected]
17625 S:      Maintained
17626 F:      drivers/usb/gadget/function/*uvc*
17627 F:      drivers/usb/gadget/legacy/webcam.c
17628 F:      include/uapi/linux/usb/g_uvc.h
17629
17630 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17631 M:      Jussi Kivilinna <[email protected]>
17632 L:      [email protected]
17633 S:      Maintained
17634 F:      drivers/net/wireless/rndis_wlan.c
17635
17636 USB XHCI DRIVER
17637 M:      Mathias Nyman <[email protected]>
17638 L:      [email protected]
17639 S:      Supported
17640 F:      drivers/usb/host/xhci*
17641 F:      drivers/usb/host/pci-quirks*
17642
17643 USB ZD1201 DRIVER
17644 L:      [email protected]
17645 W:      http://linux-lc100020.sourceforge.net
17646 S:      Orphan
17647 F:      drivers/net/wireless/zydas/zd1201.*
17648
17649 USB ZR364XX DRIVER
17650 M:      Antoine Jacquet <[email protected]>
17651 L:      [email protected]
17652 L:      [email protected]
17653 T:      git git://linuxtv.org/media_tree.git
17654 W:      http://royale.zerezo.com/zr364xx/
17655 S:      Maintained
17656 F:      Documentation/media/v4l-drivers/zr364xx*
17657 F:      drivers/media/usb/zr364xx/
17658
17659 USER-MODE LINUX (UML)
17660 M:      Jeff Dike <[email protected]>
17661 M:      Richard Weinberger <[email protected]>
17662 M:      Anton Ivanov <[email protected]>
17663 L:      [email protected]
17664 W:      http://user-mode-linux.sourceforge.net
17665 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17667 S:      Maintained
17668 F:      Documentation/virt/uml/
17669 F:      arch/um/
17670 F:      arch/x86/um/
17671 F:      fs/hostfs/
17672
17673 USERSPACE COPYIN/COPYOUT (UIOVEC)
17674 M:      Alexander Viro <[email protected]>
17675 S:      Maintained
17676 F:      lib/iov_iter.c
17677 F:      include/linux/uio.h
17678
17679 USERSPACE DMA BUFFER DRIVER
17680 M:      Gerd Hoffmann <[email protected]>
17681 S:      Maintained
17682 L:      [email protected]
17683 F:      drivers/dma-buf/udmabuf.c
17684 F:      include/uapi/linux/udmabuf.h
17685 T:      git git://anongit.freedesktop.org/drm/drm-misc
17686
17687 USERSPACE I/O (UIO)
17688 M:      Greg Kroah-Hartman <[email protected]>
17689 S:      Maintained
17690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17691 F:      Documentation/driver-api/uio-howto.rst
17692 F:      drivers/uio/
17693 F:      include/linux/uio_driver.h
17694
17695 UTIL-LINUX PACKAGE
17696 M:      Karel Zak <[email protected]>
17697 L:      [email protected]
17698 W:      http://en.wikipedia.org/wiki/Util-linux
17699 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17700 S:      Maintained
17701
17702 UUID HELPERS
17703 M:      Christoph Hellwig <[email protected]>
17704 R:      Andy Shevchenko <[email protected]>
17705 L:      [email protected]
17706 T:      git git://git.infradead.org/users/hch/uuid.git
17707 F:      lib/uuid.c
17708 F:      lib/test_uuid.c
17709 F:      include/linux/uuid.h
17710 F:      include/uapi/linux/uuid.h
17711 S:      Maintained
17712
17713 UVESAFB DRIVER
17714 M:      Michal Januszewski <[email protected]>
17715 L:      [email protected]
17716 W:      https://github.com/mjanusz/v86d
17717 S:      Maintained
17718 F:      Documentation/fb/uvesafb.rst
17719 F:      drivers/video/fbdev/uvesafb.*
17720
17721 VF610 NAND DRIVER
17722 M:      Stefan Agner <[email protected]>
17723 L:      [email protected]
17724 S:      Supported
17725 F:      drivers/mtd/nand/raw/vf610_nfc.c
17726
17727 VFAT/FAT/MSDOS FILESYSTEM
17728 M:      OGAWA Hirofumi <[email protected]>
17729 S:      Maintained
17730 F:      Documentation/filesystems/vfat.rst
17731 F:      fs/fat/
17732
17733 VFIO DRIVER
17734 M:      Alex Williamson <[email protected]>
17735 R:      Cornelia Huck <[email protected]>
17736 L:      [email protected]
17737 T:      git git://github.com/awilliam/linux-vfio.git
17738 S:      Maintained
17739 F:      Documentation/driver-api/vfio.rst
17740 F:      drivers/vfio/
17741 F:      include/linux/vfio.h
17742 F:      include/uapi/linux/vfio.h
17743
17744 VFIO MEDIATED DEVICE DRIVERS
17745 M:      Kirti Wankhede <[email protected]>
17746 L:      [email protected]
17747 S:      Maintained
17748 F:      Documentation/driver-api/vfio-mediated-device.rst
17749 F:      drivers/vfio/mdev/
17750 F:      include/linux/mdev.h
17751 F:      samples/vfio-mdev/
17752
17753 VFIO PLATFORM DRIVER
17754 M:      Eric Auger <[email protected]>
17755 L:      [email protected]
17756 S:      Maintained
17757 F:      drivers/vfio/platform/
17758
17759 VGA_SWITCHEROO
17760 R:      Lukas Wunner <[email protected]>
17761 S:      Maintained
17762 F:      Documentation/gpu/vga-switcheroo.rst
17763 F:      drivers/gpu/vga/vga_switcheroo.c
17764 F:      include/linux/vga_switcheroo.h
17765 T:      git git://anongit.freedesktop.org/drm/drm-misc
17766
17767 VIA RHINE NETWORK DRIVER
17768 S:      Orphan
17769 F:      drivers/net/ethernet/via/via-rhine.c
17770
17771 VIA SD/MMC CARD CONTROLLER DRIVER
17772 M:      Bruce Chang <[email protected]>
17773 M:      Harald Welte <[email protected]>
17774 S:      Maintained
17775 F:      drivers/mmc/host/via-sdmmc.c
17776
17777 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17778 M:      Florian Tobias Schandinat <[email protected]>
17779 L:      [email protected]
17780 S:      Maintained
17781 F:      include/linux/via-core.h
17782 F:      include/linux/via-gpio.h
17783 F:      include/linux/via_i2c.h
17784 F:      drivers/video/fbdev/via/
17785
17786 VIA VELOCITY NETWORK DRIVER
17787 M:      Francois Romieu <[email protected]>
17788 L:      [email protected]
17789 S:      Maintained
17790 F:      drivers/net/ethernet/via/via-velocity.*
17791
17792 VICODEC VIRTUAL CODEC DRIVER
17793 M:      Hans Verkuil <[email protected]>
17794 L:      [email protected]
17795 T:      git git://linuxtv.org/media_tree.git
17796 W:      https://linuxtv.org
17797 S:      Maintained
17798 F:      drivers/media/platform/vicodec/*
17799
17800 VIDEO MULTIPLEXER DRIVER
17801 M:      Philipp Zabel <[email protected]>
17802 L:      [email protected]
17803 S:      Maintained
17804 F:      drivers/media/platform/video-mux.c
17805
17806 VIDEO I2C POLLING DRIVER
17807 M:      Matt Ranostay <[email protected]>
17808 L:      [email protected]
17809 S:      Maintained
17810 F:      drivers/media/i2c/video-i2c.c
17811
17812 VIDEOBUF2 FRAMEWORK
17813 M:      Pawel Osciak <[email protected]>
17814 M:      Marek Szyprowski <[email protected]>
17815 M:      Kyungmin Park <[email protected]>
17816 R:      Tomasz Figa <[email protected]>
17817 L:      [email protected]
17818 S:      Maintained
17819 F:      drivers/media/common/videobuf2/*
17820 F:      include/media/videobuf2-*
17821
17822 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17823 M:      Helen Koike <[email protected]>
17824 R:      Shuah Khan <[email protected]>
17825 L:      [email protected]
17826 T:      git git://linuxtv.org/media_tree.git
17827 W:      https://linuxtv.org
17828 S:      Maintained
17829 F:      drivers/media/platform/vimc/*
17830
17831 VIRT LIB
17832 M:      Alex Williamson <[email protected]>
17833 M:      Paolo Bonzini <[email protected]>
17834 L:      [email protected]
17835 S:      Supported
17836 F:      virt/lib/
17837
17838 VIRTIO AND VHOST VSOCK DRIVER
17839 M:      Stefan Hajnoczi <[email protected]>
17840 M:      Stefano Garzarella <[email protected]>
17841 L:      [email protected]
17842 L:      [email protected]
17843 L:      [email protected]
17844 S:      Maintained
17845 F:      include/linux/virtio_vsock.h
17846 F:      include/uapi/linux/virtio_vsock.h
17847 F:      include/uapi/linux/vsockmon.h
17848 F:      include/uapi/linux/vm_sockets_diag.h
17849 F:      net/vmw_vsock/diag.c
17850 F:      net/vmw_vsock/af_vsock_tap.c
17851 F:      net/vmw_vsock/virtio_transport_common.c
17852 F:      net/vmw_vsock/virtio_transport.c
17853 F:      net/vmw_vsock/vsock_loopback.c
17854 F:      drivers/net/vsockmon.c
17855 F:      drivers/vhost/vsock.c
17856 F:      tools/testing/vsock/
17857
17858 VIRTIO CONSOLE DRIVER
17859 M:      Amit Shah <[email protected]>
17860 L:      [email protected]
17861 S:      Maintained
17862 F:      drivers/char/virtio_console.c
17863 F:      include/linux/virtio_console.h
17864 F:      include/uapi/linux/virtio_console.h
17865
17866 VIRTIO CORE AND NET DRIVERS
17867 M:      "Michael S. Tsirkin" <[email protected]>
17868 M:      Jason Wang <[email protected]>
17869 L:      [email protected]
17870 S:      Maintained
17871 F:      Documentation/devicetree/bindings/virtio/
17872 F:      drivers/virtio/
17873 F:      tools/virtio/
17874 F:      drivers/net/virtio_net.c
17875 F:      drivers/block/virtio_blk.c
17876 F:      include/linux/virtio*.h
17877 F:      include/uapi/linux/virtio_*.h
17878 F:      drivers/crypto/virtio/
17879 F:      mm/balloon_compaction.c
17880
17881 VIRTIO BLOCK AND SCSI DRIVERS
17882 M:      "Michael S. Tsirkin" <[email protected]>
17883 M:      Jason Wang <[email protected]>
17884 R:      Paolo Bonzini <[email protected]>
17885 R:      Stefan Hajnoczi <[email protected]>
17886 L:      [email protected]
17887 S:      Maintained
17888 F:      drivers/block/virtio_blk.c
17889 F:      drivers/scsi/virtio_scsi.c
17890 F:      include/uapi/linux/virtio_blk.h
17891 F:      include/uapi/linux/virtio_scsi.h
17892 F:      drivers/vhost/scsi.c
17893
17894 VIRTIO CRYPTO DRIVER
17895 M:      Gonglei <[email protected]>
17896 L:      [email protected]
17897 L:      [email protected]
17898 S:      Maintained
17899 F:      drivers/crypto/virtio/
17900 F:      include/uapi/linux/virtio_crypto.h
17901
17902 VIRTIO DRIVERS FOR S390
17903 M:      Cornelia Huck <[email protected]>
17904 M:      Halil Pasic <[email protected]>
17905 L:      [email protected]
17906 L:      [email protected]
17907 L:      [email protected]
17908 S:      Supported
17909 F:      drivers/s390/virtio/
17910 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17911
17912 VIRTIO FILE SYSTEM
17913 M:      Vivek Goyal <[email protected]>
17914 M:      Stefan Hajnoczi <[email protected]>
17915 M:      Miklos Szeredi <[email protected]>
17916 L:      [email protected]
17917 L:      [email protected]
17918 W:      https://virtio-fs.gitlab.io/
17919 S:      Supported
17920 F:      fs/fuse/virtio_fs.c
17921 F:      include/uapi/linux/virtio_fs.h
17922 F:      Documentation/filesystems/virtiofs.rst
17923
17924 VIRTIO GPU DRIVER
17925 M:      David Airlie <[email protected]>
17926 M:      Gerd Hoffmann <[email protected]>
17927 L:      [email protected]
17928 L:      [email protected]
17929 T:      git git://anongit.freedesktop.org/drm/drm-misc
17930 S:      Maintained
17931 F:      drivers/gpu/drm/virtio/
17932 F:      include/uapi/linux/virtio_gpu.h
17933
17934 VIRTIO HOST (VHOST)
17935 M:      "Michael S. Tsirkin" <[email protected]>
17936 M:      Jason Wang <[email protected]>
17937 L:      [email protected]
17938 L:      [email protected]
17939 L:      [email protected]
17940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17941 S:      Maintained
17942 F:      drivers/vhost/
17943 F:      include/uapi/linux/vhost.h
17944
17945 VIRTIO INPUT DRIVER
17946 M:      Gerd Hoffmann <[email protected]>
17947 S:      Maintained
17948 F:      drivers/virtio/virtio_input.c
17949 F:      include/uapi/linux/virtio_input.h
17950
17951 VIRTIO IOMMU DRIVER
17952 M:      Jean-Philippe Brucker <[email protected]>
17953 L:      [email protected]
17954 S:      Maintained
17955 F:      drivers/iommu/virtio-iommu.c
17956 F:      include/uapi/linux/virtio_iommu.h
17957
17958 VIRTUAL BOX GUEST DEVICE DRIVER
17959 M:      Hans de Goede <[email protected]>
17960 M:      Arnd Bergmann <[email protected]>
17961 M:      Greg Kroah-Hartman <[email protected]>
17962 S:      Maintained
17963 F:      include/linux/vbox_utils.h
17964 F:      include/uapi/linux/vbox*.h
17965 F:      drivers/virt/vboxguest/
17966
17967 VIRTUAL BOX SHARED FOLDER VFS DRIVER
17968 M:      Hans de Goede <[email protected]>
17969 L:      [email protected]
17970 S:      Maintained
17971 F:      fs/vboxsf/*
17972
17973 VIRTUAL SERIO DEVICE DRIVER
17974 M:      Stephen Chandler Paul <[email protected]>
17975 S:      Maintained
17976 F:      drivers/input/serio/userio.c
17977 F:      include/uapi/linux/userio.h
17978
17979 VITESSE FELIX ETHERNET SWITCH DRIVER
17980 M:      Vladimir Oltean <[email protected]>
17981 M:      Claudiu Manoil <[email protected]>
17982 L:      [email protected]
17983 S:      Maintained
17984 F:      drivers/net/dsa/ocelot/*
17985 F:      net/dsa/tag_ocelot.c
17986
17987 VIVID VIRTUAL VIDEO DRIVER
17988 M:      Hans Verkuil <[email protected]>
17989 L:      [email protected]
17990 T:      git git://linuxtv.org/media_tree.git
17991 W:      https://linuxtv.org
17992 S:      Maintained
17993 F:      drivers/media/platform/vivid/*
17994
17995 VLYNQ BUS
17996 M:      Florian Fainelli <[email protected]>
17997 L:      [email protected] (subscribers-only)
17998 S:      Maintained
17999 F:      drivers/vlynq/vlynq.c
18000 F:      include/linux/vlynq.h
18001
18002 VME SUBSYSTEM
18003 M:      Martyn Welch <[email protected]>
18004 M:      Manohar Vanga <[email protected]>
18005 M:      Greg Kroah-Hartman <[email protected]>
18006 L:      [email protected]
18007 S:      Maintained
18008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18009 F:      Documentation/driver-api/vme.rst
18010 F:      drivers/staging/vme/
18011 F:      drivers/vme/
18012 F:      include/linux/vme*
18013
18014 VMWARE BALLOON DRIVER
18015 M:      Nadav Amit <[email protected]>
18016 M:      "VMware, Inc." <[email protected]>
18017 L:      [email protected]
18018 S:      Maintained
18019 F:      drivers/misc/vmw_balloon.c
18020
18021 VMWARE HYPERVISOR INTERFACE
18022 M:      Thomas Hellstrom <[email protected]>
18023 M:      "VMware, Inc." <[email protected]>
18024 L:      [email protected]
18025 S:      Supported
18026 F:      arch/x86/kernel/cpu/vmware.c
18027 F:      arch/x86/include/asm/vmware.h
18028
18029 VMWARE VIRTUAL PTP CLOCK DRIVER
18030 M:      Vivek Thampi <[email protected]>
18031 M:      "VMware, Inc." <[email protected]>
18032 L:      [email protected]
18033 S:      Supported
18034 F:      drivers/ptp/ptp_vmw.c
18035
18036 VMWARE PVRDMA DRIVER
18037 M:      Adit Ranadive <[email protected]>
18038 M:      VMware PV-Drivers <[email protected]>
18039 L:      [email protected]
18040 S:      Maintained
18041 F:      drivers/infiniband/hw/vmw_pvrdma/
18042
18043 VMware PVSCSI driver
18044 M:      Jim Gill <[email protected]>
18045 M:      VMware PV-Drivers <[email protected]>
18046 L:      [email protected]
18047 S:      Maintained
18048 F:      drivers/scsi/vmw_pvscsi.c
18049 F:      drivers/scsi/vmw_pvscsi.h
18050
18051 VMWARE VMMOUSE SUBDRIVER
18052 M:      "VMware Graphics" <[email protected]>
18053 M:      "VMware, Inc." <[email protected]>
18054 L:      [email protected]
18055 S:      Maintained
18056 F:      drivers/input/mouse/vmmouse.c
18057 F:      drivers/input/mouse/vmmouse.h
18058
18059 VMWARE VMXNET3 ETHERNET DRIVER
18060 M:      Ronak Doshi <[email protected]>
18061 M:      "VMware, Inc." <[email protected]>
18062 L:      [email protected]
18063 S:      Maintained
18064 F:      drivers/net/vmxnet3/
18065
18066 VOCORE VOCORE2 BOARD
18067 M:      Harvey Hunt <[email protected]>
18068 L:      [email protected]
18069 S:      Maintained
18070 F:      arch/mips/boot/dts/ralink/vocore2.dts
18071
18072 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18073 M:      Liam Girdwood <[email protected]>
18074 M:      Mark Brown <[email protected]>
18075 L:      [email protected]
18076 W:      http://www.slimlogic.co.uk/?p=48
18077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18078 S:      Supported
18079 F:      Documentation/devicetree/bindings/regulator/
18080 F:      Documentation/power/regulator/
18081 F:      drivers/regulator/
18082 F:      include/dt-bindings/regulator/
18083 F:      include/linux/regulator/
18084 K:      regulator_get_optional
18085
18086 VRF
18087 M:      David Ahern <[email protected]>
18088 M:      Shrijeet Mukherjee <[email protected]>
18089 L:      [email protected]
18090 S:      Maintained
18091 F:      drivers/net/vrf.c
18092 F:      Documentation/networking/vrf.txt
18093
18094 VSPRINTF
18095 M:      Petr Mladek <[email protected]>
18096 M:      Steven Rostedt <[email protected]>
18097 M:      Sergey Senozhatsky <[email protected]>
18098 R:      Andy Shevchenko <[email protected]>
18099 R:      Rasmus Villemoes <[email protected]>
18100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18101 S:      Maintained
18102 F:      lib/vsprintf.c
18103 F:      lib/test_printf.c
18104 F:      Documentation/core-api/printk-formats.rst
18105
18106 VT1211 HARDWARE MONITOR DRIVER
18107 M:      Juerg Haefliger <[email protected]>
18108 L:      [email protected]
18109 S:      Maintained
18110 F:      Documentation/hwmon/vt1211.rst
18111 F:      drivers/hwmon/vt1211.c
18112
18113 VT8231 HARDWARE MONITOR DRIVER
18114 M:      Roger Lucas <[email protected]>
18115 L:      [email protected]
18116 S:      Maintained
18117 F:      drivers/hwmon/vt8231.c
18118
18119 VUB300 USB to SDIO/SD/MMC bridge chip
18120 L:      [email protected]
18121 S:      Orphan
18122 F:      drivers/mmc/host/vub300.c
18123
18124 W1 DALLAS'S 1-WIRE BUS
18125 M:      Evgeniy Polyakov <[email protected]>
18126 S:      Maintained
18127 F:      Documentation/devicetree/bindings/w1/
18128 F:      Documentation/w1/
18129 F:      drivers/w1/
18130 F:      include/linux/w1.h
18131
18132 W83791D HARDWARE MONITORING DRIVER
18133 M:      Marc Hulsman <[email protected]>
18134 L:      [email protected]
18135 S:      Maintained
18136 F:      Documentation/hwmon/w83791d.rst
18137 F:      drivers/hwmon/w83791d.c
18138
18139 W83793 HARDWARE MONITORING DRIVER
18140 M:      Rudolf Marek <[email protected]>
18141 L:      [email protected]
18142 S:      Maintained
18143 F:      Documentation/hwmon/w83793.rst
18144 F:      drivers/hwmon/w83793.c
18145
18146 W83795 HARDWARE MONITORING DRIVER
18147 M:      Jean Delvare <[email protected]>
18148 L:      [email protected]
18149 S:      Maintained
18150 F:      drivers/hwmon/w83795.c
18151
18152 W83L51xD SD/MMC CARD INTERFACE DRIVER
18153 M:      Pierre Ossman <[email protected]>
18154 S:      Maintained
18155 F:      drivers/mmc/host/wbsd.*
18156
18157 WACOM PROTOCOL 4 SERIAL TABLETS
18158 M:      Julian Squires <[email protected]>
18159 M:      Hans de Goede <[email protected]>
18160 L:      [email protected]
18161 S:      Maintained
18162 F:      drivers/input/tablet/wacom_serial4.c
18163
18164 WATCHDOG DEVICE DRIVERS
18165 M:      Wim Van Sebroeck <[email protected]>
18166 M:      Guenter Roeck <[email protected]>
18167 L:      [email protected]
18168 W:      http://www.linux-watchdog.org/
18169 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18170 S:      Maintained
18171 F:      Documentation/devicetree/bindings/watchdog/
18172 F:      Documentation/watchdog/
18173 F:      drivers/watchdog/
18174 F:      include/linux/watchdog.h
18175 F:      include/uapi/linux/watchdog.h
18176
18177 WHISKEYCOVE PMIC GPIO DRIVER
18178 M:      Kuppuswamy Sathyanarayanan <[email protected]>
18179 L:      [email protected]
18180 S:      Maintained
18181 F:      drivers/gpio/gpio-wcove.c
18182
18183 WHWAVE RTC DRIVER
18184 M:      Dianlong Li <[email protected]>
18185 L:      [email protected]
18186 S:      Maintained
18187 F:      drivers/rtc/rtc-sd3078.c
18188
18189 WIIMOTE HID DRIVER
18190 M:      David Herrmann <[email protected]>
18191 L:      [email protected]
18192 S:      Maintained
18193 F:      drivers/hid/hid-wiimote*
18194
18195 WILOCITY WIL6210 WIRELESS DRIVER
18196 M:      Maya Erez <[email protected]>
18197 L:      [email protected]
18198 L:      [email protected]
18199 S:      Supported
18200 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
18201 F:      drivers/net/wireless/ath/wil6210/
18202
18203 WIMAX STACK
18204 M:      Inaky Perez-Gonzalez <[email protected]>
18205 M:      [email protected]
18206 L:      [email protected] (subscribers-only)
18207 S:      Supported
18208 W:      http://linuxwimax.org
18209 F:      Documentation/admin-guide/wimax/wimax.rst
18210 F:      include/linux/wimax/debug.h
18211 F:      include/net/wimax.h
18212 F:      include/uapi/linux/wimax.h
18213 F:      net/wimax/
18214
18215 WINBOND CIR DRIVER
18216 M:      David Härdeman <[email protected]>
18217 S:      Maintained
18218 F:      drivers/media/rc/winbond-cir.c
18219
18220 RCMM REMOTE CONTROLS DECODER
18221 M:      Patrick Lerda <[email protected]>
18222 S:      Maintained
18223 F:      drivers/media/rc/ir-rcmm-decoder.c
18224
18225 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18226 M:      William Breathitt Gray <[email protected]>
18227 L:      [email protected]
18228 S:      Maintained
18229 F:      drivers/watchdog/ebc-c384_wdt.c
18230
18231 WINSYSTEMS WS16C48 GPIO DRIVER
18232 M:      William Breathitt Gray <[email protected]>
18233 L:      [email protected]
18234 S:      Maintained
18235 F:      drivers/gpio/gpio-ws16c48.c
18236
18237 WIREGUARD SECURE NETWORK TUNNEL
18238 M:      Jason A. Donenfeld <[email protected]>
18239 S:      Maintained
18240 F:      drivers/net/wireguard/
18241 F:      tools/testing/selftests/wireguard/
18242 L:      [email protected]
18243 L:      [email protected]
18244
18245 WISTRON LAPTOP BUTTON DRIVER
18246 M:      Miloslav Trmac <[email protected]>
18247 S:      Maintained
18248 F:      drivers/input/misc/wistron_btns.c
18249
18250 WL3501 WIRELESS PCMCIA CARD DRIVER
18251 L:      [email protected]
18252 S:      Odd fixes
18253 F:      drivers/net/wireless/wl3501*
18254
18255 WOLFSON MICROELECTRONICS DRIVERS
18256 L:      [email protected]
18257 T:      git https://github.com/CirrusLogic/linux-drivers.git
18258 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18259 S:      Supported
18260 F:      Documentation/hwmon/wm83??.rst
18261 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
18262 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
18263 F:      Documentation/devicetree/bindings/mfd/arizona.txt
18264 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18265 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
18266 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18267 F:      drivers/clk/clk-wm83*.c
18268 F:      drivers/extcon/extcon-arizona.c
18269 F:      drivers/leds/leds-wm83*.c
18270 F:      drivers/gpio/gpio-*wm*.c
18271 F:      drivers/gpio/gpio-arizona.c
18272 F:      drivers/hwmon/wm83??-hwmon.c
18273 F:      drivers/input/misc/wm831x-on.c
18274 F:      drivers/input/touchscreen/wm831x-ts.c
18275 F:      drivers/input/touchscreen/wm97*.c
18276 F:      drivers/mfd/arizona*
18277 F:      drivers/mfd/wm*.c
18278 F:      drivers/mfd/cs47l24*
18279 F:      drivers/power/supply/wm83*.c
18280 F:      drivers/rtc/rtc-wm83*.c
18281 F:      drivers/regulator/wm8*.c
18282 F:      drivers/regulator/arizona*
18283 F:      drivers/video/backlight/wm83*_bl.c
18284 F:      drivers/watchdog/wm83*_wdt.c
18285 F:      include/linux/mfd/arizona/
18286 F:      include/linux/mfd/wm831x/
18287 F:      include/linux/mfd/wm8350/
18288 F:      include/linux/mfd/wm8400*
18289 F:      include/linux/regulator/arizona*
18290 F:      include/linux/wm97xx.h
18291 F:      include/sound/wm????.h
18292 F:      sound/soc/codecs/arizona.?
18293 F:      sound/soc/codecs/wm*
18294 F:      sound/soc/codecs/cs47l24*
18295
18296 WORKQUEUE
18297 M:      Tejun Heo <[email protected]>
18298 R:      Lai Jiangshan <[email protected]>
18299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18300 S:      Maintained
18301 F:      include/linux/workqueue.h
18302 F:      kernel/workqueue.c
18303 F:      Documentation/core-api/workqueue.rst
18304
18305 X-POWERS AXP288 PMIC DRIVERS
18306 M:      Hans de Goede <[email protected]>
18307 S:      Maintained
18308 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18309 N:      axp288
18310
18311 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18312 M:      Chen-Yu Tsai <[email protected]>
18313 L:      [email protected]
18314 S:      Maintained
18315 N:      axp[128]
18316
18317 X.25 NETWORK LAYER
18318 M:      Andrew Hendry <[email protected]>
18319 L:      [email protected]
18320 S:      Odd Fixes
18321 F:      Documentation/networking/x25*
18322 F:      include/net/x25*
18323 F:      net/x25/
18324
18325 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18326 M:      Thomas Gleixner <[email protected]>
18327 M:      Ingo Molnar <[email protected]>
18328 M:      Borislav Petkov <[email protected]>
18329 R:      "H. Peter Anvin" <[email protected]>
18330 M:      [email protected]
18331 L:      [email protected]
18332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18333 S:      Maintained
18334 F:      Documentation/devicetree/bindings/x86/
18335 F:      Documentation/x86/
18336 F:      arch/x86/
18337
18338 X86 ENTRY CODE
18339 M:      Andy Lutomirski <[email protected]>
18340 L:      [email protected]
18341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18342 S:      Maintained
18343 F:      arch/x86/entry/
18344
18345 X86 MCE INFRASTRUCTURE
18346 M:      Tony Luck <[email protected]>
18347 M:      Borislav Petkov <[email protected]>
18348 L:      [email protected]
18349 S:      Maintained
18350 F:      arch/x86/kernel/cpu/mce/*
18351
18352 X86 MICROCODE UPDATE SUPPORT
18353 M:      Borislav Petkov <[email protected]>
18354 S:      Maintained
18355 F:      arch/x86/kernel/cpu/microcode/*
18356
18357 X86 MM
18358 M:      Dave Hansen <[email protected]>
18359 M:      Andy Lutomirski <[email protected]>
18360 M:      Peter Zijlstra <[email protected]>
18361 L:      [email protected]
18362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18363 S:      Maintained
18364 F:      arch/x86/mm/
18365
18366 X86 PLATFORM DRIVERS
18367 M:      Darren Hart <[email protected]>
18368 M:      Andy Shevchenko <[email protected]>
18369 L:      [email protected]
18370 S:      Odd Fixes
18371 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18372 F:      drivers/platform/olpc/
18373 F:      drivers/platform/x86/
18374
18375 X86 PLATFORM DRIVERS - ARCH
18376 R:      Darren Hart <[email protected]>
18377 R:      Andy Shevchenko <[email protected]>
18378 L:      [email protected]
18379 L:      [email protected]
18380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18381 S:      Maintained
18382 F:      arch/x86/platform
18383
18384 X86 VDSO
18385 M:      Andy Lutomirski <[email protected]>
18386 L:      [email protected]
18387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18388 S:      Maintained
18389 F:      arch/x86/entry/vdso/
18390
18391 XARRAY
18392 M:      Matthew Wilcox <[email protected]>
18393 L:      [email protected]
18394 S:      Supported
18395 F:      Documentation/core-api/xarray.rst
18396 F:      lib/idr.c
18397 F:      lib/xarray.c
18398 F:      include/linux/idr.h
18399 F:      include/linux/xarray.h
18400 F:      tools/testing/radix-tree
18401
18402 XBOX DVD IR REMOTE
18403 M:      Benjamin Valentin <[email protected]>
18404 S:      Maintained
18405 F:      drivers/media/rc/xbox_remote.c
18406 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18407
18408 XC2028/3028 TUNER DRIVER
18409 M:      Mauro Carvalho Chehab <[email protected]>
18410 L:      [email protected]
18411 W:      https://linuxtv.org
18412 T:      git git://linuxtv.org/media_tree.git
18413 S:      Maintained
18414 F:      drivers/media/tuners/tuner-xc2028.*
18415
18416 XDP (eXpress Data Path)
18417 M:      Alexei Starovoitov <[email protected]>
18418 M:      Daniel Borkmann <[email protected]>
18419 M:      David S. Miller <[email protected]>
18420 M:      Jakub Kicinski <[email protected]>
18421 M:      Jesper Dangaard Brouer <[email protected]>
18422 M:      John Fastabend <[email protected]>
18423 L:      [email protected]
18424 L:      [email protected]
18425 S:      Supported
18426 F:      net/core/xdp.c
18427 F:      include/net/xdp.h
18428 F:      kernel/bpf/devmap.c
18429 F:      kernel/bpf/cpumap.c
18430 F:      include/trace/events/xdp.h
18431 K:      xdp
18432 N:      xdp
18433
18434 XDP SOCKETS (AF_XDP)
18435 M:      Björn Töpel <[email protected]>
18436 M:      Magnus Karlsson <[email protected]>
18437 R:      Jonathan Lemon <[email protected]>
18438 L:      [email protected]
18439 L:      [email protected]
18440 S:      Maintained
18441 F:      kernel/bpf/xskmap.c
18442 F:      net/xdp/
18443
18444 XEN BLOCK SUBSYSTEM
18445 M:      Konrad Rzeszutek Wilk <[email protected]>
18446 M:      Roger Pau Monné <[email protected]>
18447 L:      [email protected] (moderated for non-subscribers)
18448 S:      Supported
18449 F:      drivers/block/xen-blkback/*
18450 F:      drivers/block/xen*
18451
18452 XEN HYPERVISOR ARM
18453 M:      Stefano Stabellini <[email protected]>
18454 L:      [email protected] (moderated for non-subscribers)
18455 S:      Maintained
18456 F:      arch/arm/xen/
18457 F:      arch/arm/include/asm/xen/
18458
18459 XEN HYPERVISOR ARM64
18460 M:      Stefano Stabellini <[email protected]>
18461 L:      [email protected] (moderated for non-subscribers)
18462 S:      Maintained
18463 F:      arch/arm64/xen/
18464 F:      arch/arm64/include/asm/xen/
18465
18466 XEN HYPERVISOR INTERFACE
18467 M:      Boris Ostrovsky <[email protected]>
18468 M:      Juergen Gross <[email protected]>
18469 R:      Stefano Stabellini <[email protected]>
18470 L:      [email protected] (moderated for non-subscribers)
18471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18472 S:      Supported
18473 F:      arch/x86/xen/
18474 F:      arch/x86/platform/pvh/
18475 F:      drivers/*/xen-*front.c
18476 F:      drivers/xen/
18477 F:      arch/x86/include/asm/xen/
18478 F:      arch/x86/include/asm/pvclock-abi.h
18479 F:      include/xen/
18480 F:      include/uapi/xen/
18481 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18482 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18483
18484 XEN NETWORK BACKEND DRIVER
18485 M:      Wei Liu <[email protected]>
18486 M:      Paul Durrant <[email protected]>
18487 L:      [email protected] (moderated for non-subscribers)
18488 L:      [email protected]
18489 S:      Supported
18490 F:      drivers/net/xen-netback/*
18491
18492 XEN PCI SUBSYSTEM
18493 M:      Konrad Rzeszutek Wilk <[email protected]>
18494 L:      [email protected] (moderated for non-subscribers)
18495 S:      Supported
18496 F:      arch/x86/pci/*xen*
18497 F:      drivers/pci/*xen*
18498
18499 XEN PVSCSI DRIVERS
18500 M:      Juergen Gross <[email protected]>
18501 L:      [email protected] (moderated for non-subscribers)
18502 L:      [email protected]
18503 S:      Supported
18504 F:      drivers/scsi/xen-scsifront.c
18505 F:      drivers/xen/xen-scsiback.c
18506 F:      include/xen/interface/io/vscsiif.h
18507
18508 XEN SWIOTLB SUBSYSTEM
18509 M:      Konrad Rzeszutek Wilk <[email protected]>
18510 L:      [email protected] (moderated for non-subscribers)
18511 L:      [email protected]
18512 S:      Supported
18513 F:      arch/x86/xen/*swiotlb*
18514 F:      drivers/xen/*swiotlb*
18515
18516 XEN SOUND FRONTEND DRIVER
18517 M:      Oleksandr Andrushchenko <[email protected]>
18518 L:      [email protected] (moderated for non-subscribers)
18519 L:      [email protected] (moderated for non-subscribers)
18520 S:      Supported
18521 F:      sound/xen/*
18522
18523 XFS FILESYSTEM
18524 M:      Darrick J. Wong <[email protected]>
18525 M:      [email protected]
18526 L:      [email protected]
18527 W:      http://xfs.org/
18528 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18529 S:      Supported
18530 F:      Documentation/admin-guide/xfs.rst
18531 F:      Documentation/ABI/testing/sysfs-fs-xfs
18532 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
18533 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
18534 F:      fs/xfs/
18535 F:      include/uapi/linux/dqblk_xfs.h
18536 F:      include/uapi/linux/fsmap.h
18537
18538 XILINX AXI ETHERNET DRIVER
18539 M:      Radhey Shyam Pandey <[email protected]>
18540 S:      Maintained
18541 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18542
18543 XILINX CAN DRIVER
18544 M:      Appana Durga Kedareswara rao <[email protected]>
18545 R:      Naga Sureshkumar Relli <[email protected]>
18546 L:      [email protected]
18547 S:      Maintained
18548 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18549 F:      drivers/net/can/xilinx_can.c
18550
18551 XILINX UARTLITE SERIAL DRIVER
18552 M:      Peter Korsgaard <[email protected]>
18553 L:      [email protected]
18554 S:      Maintained
18555 F:      drivers/tty/serial/uartlite.c
18556
18557 XILINX VIDEO IP CORES
18558 M:      Hyun Kwon <[email protected]>
18559 M:      Laurent Pinchart <[email protected]>
18560 L:      [email protected]
18561 T:      git git://linuxtv.org/media_tree.git
18562 S:      Supported
18563 F:      Documentation/devicetree/bindings/media/xilinx/
18564 F:      drivers/media/platform/xilinx/
18565 F:      include/uapi/linux/xilinx-v4l2-controls.h
18566
18567 XILINX SD-FEC IP CORES
18568 M:      Derek Kiernan <[email protected]>
18569 M:      Dragan Cvetic <[email protected]>
18570 S:      Maintained
18571 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18572 F:      Documentation/misc-devices/xilinx_sdfec.rst
18573 F:      drivers/misc/xilinx_sdfec.c
18574 F:      drivers/misc/Kconfig
18575 F:      drivers/misc/Makefile
18576 F:      include/uapi/misc/xilinx_sdfec.h
18577
18578 XILLYBUS DRIVER
18579 M:      Eli Billauer <[email protected]>
18580 L:      [email protected]
18581 S:      Supported
18582 F:      drivers/char/xillybus/
18583
18584 XLP9XX I2C DRIVER
18585 M:      George Cherian <[email protected]>
18586 L:      [email protected]
18587 W:      http://www.marvell.com
18588 S:      Supported
18589 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18590 F:      drivers/i2c/busses/i2c-xlp9xx.c
18591
18592 XRA1403 GPIO EXPANDER
18593 M:      Nandor Han <[email protected]>
18594 M:      Semi Malinen <[email protected]>
18595 L:      [email protected]
18596 S:      Maintained
18597 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18598 F:      drivers/gpio/gpio-xra1403.c
18599
18600 XTENSA XTFPGA PLATFORM SUPPORT
18601 M:      Max Filippov <[email protected]>
18602 L:      [email protected]
18603 S:      Maintained
18604 F:      drivers/spi/spi-xtensa-xtfpga.c
18605 F:      sound/soc/xtensa/xtfpga-i2s.c
18606
18607 YAM DRIVER FOR AX.25
18608 M:      Jean-Paul Roubelat <[email protected]>
18609 L:      [email protected]
18610 S:      Maintained
18611 F:      drivers/net/hamradio/yam*
18612 F:      include/linux/yam.h
18613
18614 YAMA SECURITY MODULE
18615 M:      Kees Cook <[email protected]>
18616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18617 S:      Supported
18618 F:      security/yama/
18619 F:      Documentation/admin-guide/LSM/Yama.rst
18620
18621 YEALINK PHONE DRIVER
18622 M:      Henk Vergonet <[email protected]>
18623 L:      [email protected]
18624 S:      Maintained
18625 F:      Documentation/input/devices/yealink.rst
18626 F:      drivers/input/misc/yealink.*
18627
18628 Z8530 DRIVER FOR AX.25
18629 M:      Joerg Reuter <[email protected]>
18630 W:      http://yaina.de/jreuter/
18631 W:      http://www.qsl.net/dl1bke/
18632 L:      [email protected]
18633 S:      Maintained
18634 F:      Documentation/networking/z8530drv.txt
18635 F:      drivers/net/hamradio/*scc.c
18636 F:      drivers/net/hamradio/z8530.h
18637
18638 ZBUD COMPRESSED PAGE ALLOCATOR
18639 M:      Seth Jennings <[email protected]>
18640 M:      Dan Streetman <[email protected]>
18641 L:      [email protected]
18642 S:      Maintained
18643 F:      mm/zbud.c
18644 F:      include/linux/zbud.h
18645
18646 ZD1211RW WIRELESS DRIVER
18647 M:      Daniel Drake <[email protected]>
18648 M:      Ulrich Kunitz <[email protected]>
18649 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18650 L:      [email protected]
18651 L:      [email protected] (subscribers-only)
18652 S:      Maintained
18653 F:      drivers/net/wireless/zydas/zd1211rw/
18654
18655 ZD1301 MEDIA DRIVER
18656 M:      Antti Palosaari <[email protected]>
18657 L:      [email protected]
18658 W:      https://linuxtv.org/
18659 W:      http://palosaari.fi/linux/
18660 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18661 S:      Maintained
18662 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18663
18664 ZD1301_DEMOD MEDIA DRIVER
18665 M:      Antti Palosaari <[email protected]>
18666 L:      [email protected]
18667 W:      https://linuxtv.org/
18668 W:      http://palosaari.fi/linux/
18669 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18670 S:      Maintained
18671 F:      drivers/media/dvb-frontends/zd1301_demod*
18672
18673 ZHAOXIN PROCESSOR SUPPORT
18674 M:      Tony W Wang-oc <[email protected]>
18675 L:      [email protected]
18676 S:      Maintained
18677 F:      arch/x86/kernel/cpu/zhaoxin.c
18678
18679 ZONEFS FILESYSTEM
18680 M:      Damien Le Moal <[email protected]>
18681 M:      Naohiro Aota <[email protected]>
18682 R:      Johannes Thumshirn <[email protected]>
18683 L:      [email protected]
18684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18685 S:      Maintained
18686 F:      fs/zonefs/
18687 F:      Documentation/filesystems/zonefs.rst
18688
18689 ZPOOL COMPRESSED PAGE STORAGE API
18690 M:      Dan Streetman <[email protected]>
18691 L:      [email protected]
18692 S:      Maintained
18693 F:      mm/zpool.c
18694 F:      include/linux/zpool.h
18695
18696 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18697 M:      Minchan Kim <[email protected]>
18698 M:      Nitin Gupta <[email protected]>
18699 R:      Sergey Senozhatsky <[email protected]>
18700 L:      [email protected]
18701 S:      Maintained
18702 F:      drivers/block/zram/
18703 F:      Documentation/admin-guide/blockdev/zram.rst
18704
18705 ZS DECSTATION Z85C30 SERIAL DRIVER
18706 M:      "Maciej W. Rozycki" <[email protected]>
18707 S:      Maintained
18708 F:      drivers/tty/serial/zs.*
18709
18710 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18711 M:      Minchan Kim <[email protected]>
18712 M:      Nitin Gupta <[email protected]>
18713 R:      Sergey Senozhatsky <[email protected]>
18714 L:      [email protected]
18715 S:      Maintained
18716 F:      mm/zsmalloc.c
18717 F:      include/linux/zsmalloc.h
18718 F:      Documentation/vm/zsmalloc.rst
18719
18720 ZSWAP COMPRESSED SWAP CACHING
18721 M:      Seth Jennings <[email protected]>
18722 M:      Dan Streetman <[email protected]>
18723 M:      Vitaly Wool <[email protected]>
18724 L:      [email protected]
18725 S:      Maintained
18726 F:      mm/zswap.c
18727
18728 THE REST
18729 M:      Linus Torvalds <[email protected]>
18730 L:      [email protected]
18731 Q:      http://patchwork.kernel.org/project/LKML/list/
18732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18733 S:      Buried alive in reporters
18734 F:      *
18735 F:      */
This page took 1.031651 seconds and 4 git commands to generate.