]> Git Repo - linux.git/blob - MAINTAINERS
powerpc/pseries: Read TLB Block Invalidate Characteristics
[linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/process/coding-style.rst for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/process/submitting-patches.rst for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/process/submitting-patches.rst.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: [email protected], especially if the maintainer
65         does not respond. Please keep in mind that the security team is
66         a small set of people who can be efficient only when working on
67         verified bugs. Please only Cc: this list when you have identified
68         that the bug would present a short-term risk to other users if it
69         were publicly disclosed. For example, reports of address leaks do
70         not represent an immediate threat and are better handled publicly,
71         and ideally, should come with a patch proposal. Please do not send
72         automated reports to this list either. Such bugs will be handled
73         better and faster in the usual public places.
74
75 8.      Happy hacking.
76
77 Descriptions of section entries:
78
79         P: Person (obsolete)
80         M: Mail patches to: FullName <address@domain>
81         R: Designated reviewer: FullName <address@domain>
82            These reviewers should be CCed on patches.
83         L: Mailing list that is relevant to this area
84         W: Web-page with status/info
85         B: URI for where to file bugs. A web-page with detailed bug
86            filing info, a direct bug tracker link, or a mailto: URI.
87         C: URI for chat protocol, server and channel where developers
88            usually hang out, for example irc://server/channel.
89         Q: Patchwork web based patch tracking system site
90         T: SCM tree type and location.
91            Type is one of: git, hg, quilt, stgit, topgit
92         S: Status, one of the following:
93            Supported:   Someone is actually paid to look after this.
94            Maintained:  Someone actually looks after it.
95            Odd Fixes:   It has a maintainer but they don't have time to do
96                         much other than throw the odd patch in. See below..
97            Orphan:      No current maintainer [but maybe you could take the
98                         role as you write your new code].
99            Obsolete:    Old code. Something tagged obsolete generally means
100                         it has been replaced by a better system and you
101                         should be using that.
102         F: Files and directories with wildcard patterns.
103            A trailing slash includes all files and subdirectory files.
104            F:   drivers/net/    all files in and below drivers/net
105            F:   drivers/net/*   all files in drivers/net, but not below
106            F:   */net/*         all files in "any top level directory"/net
107            One pattern per line.  Multiple F: lines acceptable.
108         N: Files and directories with regex patterns.
109            N:   [^a-z]tegra     all files whose path contains the word tegra
110            One pattern per line.  Multiple N: lines acceptable.
111            scripts/get_maintainer.pl has different behavior for files that
112            match F: pattern and matches of N: patterns.  By default,
113            get_maintainer will not look at git log history when an F: pattern
114            match occurs.  When an N: match occurs, git log history is used
115            to also notify the people that have git commit signatures.
116         X: Files and directories that are NOT maintained, same rules as F:
117            Files exclusions are tested before file matches.
118            Can be useful for excluding a specific subdirectory, for instance:
119            F:   net/
120            X:   net/ipv6/
121            matches all files in and below net excluding net/ipv6/
122         K: Keyword perl extended regex pattern to match content in a
123            patch or file.  For instance:
124            K: of_get_profile
125               matches patches or files that contain "of_get_profile"
126            K: \b(printk|pr_(info|err))\b
127               matches patches or files that contain one or more of the words
128               printk, pr_info or pr_err
129            One regex pattern per line.  Multiple K: lines acceptable.
130
131 Note: For the hard of thinking, this list is meant to remain in alphabetical
132 order. If you could add yourselves to it in alphabetical order that would be
133 so much easier [Ed]
134
135 Maintainers List (try to look for most precise areas first)
136
137                 -----------------------------------
138
139 3C59X NETWORK DRIVER
140 M:      Steffen Klassert <[email protected]>
141 L:      [email protected]
142 S:      Odd Fixes
143 F:      Documentation/networking/device_drivers/3com/vortex.txt
144 F:      drivers/net/ethernet/3com/3c59x.c
145
146 3CR990 NETWORK DRIVER
147 M:      David Dillow <[email protected]>
148 L:      [email protected]
149 S:      Maintained
150 F:      drivers/net/ethernet/3com/typhoon*
151
152 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
153 M:      Adam Radford <[email protected]>
154 L:      [email protected]
155 W:      http://www.lsi.com
156 S:      Supported
157 F:      drivers/scsi/3w-*
158
159 53C700 AND 53C700-66 SCSI DRIVER
160 M:      "James E.J. Bottomley" <[email protected]>
161 L:      [email protected]
162 S:      Maintained
163 F:      drivers/scsi/53c700*
164
165 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
166 M:      Alexander Aring <[email protected]>
167 M:      Jukka Rissanen <[email protected]>
168 L:      [email protected]
169 L:      [email protected]
170 S:      Maintained
171 F:      net/6lowpan/
172 F:      include/net/6lowpan.h
173 F:      Documentation/networking/6lowpan.txt
174
175 6PACK NETWORK DRIVER FOR AX.25
176 M:      Andreas Koensgen <[email protected]>
177 L:      [email protected]
178 S:      Maintained
179 F:      drivers/net/hamradio/6pack.c
180
181 8169 10/100/1000 GIGABIT ETHERNET DRIVER
182 M:      Realtek linux nic maintainers <[email protected]>
183 M:      Heiner Kallweit <[email protected]>
184 L:      [email protected]
185 S:      Maintained
186 F:      drivers/net/ethernet/realtek/r8169*
187
188 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
189 M:      Greg Kroah-Hartman <[email protected]>
190 L:      [email protected]
191 S:      Maintained
192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
193 F:      drivers/tty/serial/8250*
194 F:      include/linux/serial_8250.h
195
196 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
197 L:      [email protected]
198 S:      Orphan / Obsolete
199 F:      drivers/net/ethernet/8390/
200
201 9P FILE SYSTEM
202 M:      Eric Van Hensbergen <[email protected]>
203 M:      Latchesar Ionkov <[email protected]>
204 M:      Dominique Martinet <[email protected]>
205 L:      [email protected]
206 W:      http://swik.net/v9fs
207 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
209 T:      git git://github.com/martinetd/linux.git
210 S:      Maintained
211 F:      Documentation/filesystems/9p.txt
212 F:      fs/9p/
213 F:      net/9p/
214 F:      include/net/9p/
215 F:      include/uapi/linux/virtio_9p.h
216 F:      include/trace/events/9p.h
217
218 A8293 MEDIA DRIVER
219 M:      Antti Palosaari <[email protected]>
220 L:      [email protected]
221 W:      https://linuxtv.org
222 W:      http://palosaari.fi/linux/
223 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
224 T:      git git://linuxtv.org/anttip/media_tree.git
225 S:      Maintained
226 F:      drivers/media/dvb-frontends/a8293*
227
228 AACRAID SCSI RAID DRIVER
229 M:      Adaptec OEM Raid Solutions <[email protected]>
230 L:      [email protected]
231 W:      http://www.adaptec.com/
232 S:      Supported
233 F:      Documentation/scsi/aacraid.txt
234 F:      drivers/scsi/aacraid/
235
236 ABI/API
237 L:      [email protected]
238 F:      include/linux/syscalls.h
239 F:      kernel/sys_ni.c
240
241 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
242 M:      Hans de Goede <[email protected]>
243 L:      [email protected]
244 S:      Maintained
245 F:      drivers/hwmon/abituguru.c
246
247 ABIT UGURU 3 HARDWARE MONITOR DRIVER
248 M:      Alistair John Strachan <[email protected]>
249 L:      [email protected]
250 S:      Maintained
251 F:      drivers/hwmon/abituguru3.c
252
253 ACCES 104-DIO-48E GPIO DRIVER
254 M:      William Breathitt Gray <[email protected]>
255 L:      [email protected]
256 S:      Maintained
257 F:      drivers/gpio/gpio-104-dio-48e.c
258
259 ACCES 104-IDI-48 GPIO DRIVER
260 M:      "William Breathitt Gray" <[email protected]>
261 L:      [email protected]
262 S:      Maintained
263 F:      drivers/gpio/gpio-104-idi-48.c
264
265 ACCES 104-IDIO-16 GPIO DRIVER
266 M:      "William Breathitt Gray" <[email protected]>
267 L:      [email protected]
268 S:      Maintained
269 F:      drivers/gpio/gpio-104-idio-16.c
270
271 ACCES 104-QUAD-8 DRIVER
272 M:      William Breathitt Gray <[email protected]>
273 L:      [email protected]
274 S:      Maintained
275 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
276 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
277 F:      drivers/counter/104-quad-8.c
278
279 ACCES PCI-IDIO-16 GPIO DRIVER
280 M:      William Breathitt Gray <[email protected]>
281 L:      [email protected]
282 S:      Maintained
283 F:      drivers/gpio/gpio-pci-idio-16.c
284
285 ACCES PCIe-IDIO-24 GPIO DRIVER
286 M:      William Breathitt Gray <[email protected]>
287 L:      [email protected]
288 S:      Maintained
289 F:      drivers/gpio/gpio-pcie-idio-24.c
290
291 ACENIC DRIVER
292 M:      Jes Sorensen <[email protected]>
293 L:      [email protected]
294 S:      Maintained
295 F:      drivers/net/ethernet/alteon/acenic*
296
297 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
298 M:      Peter Feuerer <[email protected]>
299 L:      [email protected]
300 W:      http://piie.net/?section=acerhdf
301 S:      Maintained
302 F:      drivers/platform/x86/acerhdf.c
303
304 ACER WMI LAPTOP EXTRAS
305 M:      "Lee, Chun-Yi" <[email protected]>
306 L:      [email protected]
307 S:      Maintained
308 F:      drivers/platform/x86/acer-wmi.c
309
310 ACPI
311 M:      "Rafael J. Wysocki" <[email protected]>
312 M:      Len Brown <[email protected]>
313 L:      [email protected]
314 W:      https://01.org/linux-acpi
315 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
317 B:      https://bugzilla.kernel.org
318 S:      Supported
319 F:      drivers/acpi/
320 F:      drivers/pnp/pnpacpi/
321 F:      include/linux/acpi.h
322 F:      include/linux/fwnode.h
323 F:      include/acpi/
324 F:      Documentation/firmware-guide/acpi/
325 F:      Documentation/ABI/testing/sysfs-bus-acpi
326 F:      Documentation/ABI/testing/configfs-acpi
327 F:      drivers/pci/*acpi*
328 F:      drivers/pci/*/*acpi*
329 F:      tools/power/acpi/
330
331 ACPI APEI
332 M:      "Rafael J. Wysocki" <[email protected]>
333 M:      Len Brown <[email protected]>
334 L:      [email protected]
335 R:      James Morse <[email protected]>
336 R:      Tony Luck <[email protected]>
337 R:      Borislav Petkov <[email protected]>
338 F:      drivers/acpi/apei/
339
340 ACPI COMPONENT ARCHITECTURE (ACPICA)
341 M:      Robert Moore <[email protected]>
342 M:      Erik Schmauss <[email protected]>
343 M:      "Rafael J. Wysocki" <[email protected]>
344 L:      [email protected]
345 L:      [email protected]
346 W:      https://acpica.org/
347 W:      https://github.com/acpica/acpica/
348 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
350 B:      https://bugzilla.kernel.org
351 B:      https://bugs.acpica.org
352 S:      Supported
353 F:      drivers/acpi/acpica/
354 F:      include/acpi/
355 F:      tools/power/acpi/
356
357 ACPI FAN DRIVER
358 M:      Zhang Rui <[email protected]>
359 L:      [email protected]
360 W:      https://01.org/linux-acpi
361 B:      https://bugzilla.kernel.org
362 S:      Supported
363 F:      drivers/acpi/fan.c
364
365 ACPI FOR ARM64 (ACPI/arm64)
366 M:      Lorenzo Pieralisi <[email protected]>
367 M:      Hanjun Guo <[email protected]>
368 M:      Sudeep Holla <[email protected]>
369 L:      [email protected]
370 L:      [email protected] (moderated for non-subscribers)
371 S:      Maintained
372 F:      drivers/acpi/arm64
373
374 ACPI I2C MULTI INSTANTIATE DRIVER
375 M:      Hans de Goede <[email protected]>
376 L:      [email protected]
377 S:      Maintained
378 F:      drivers/platform/x86/i2c-multi-instantiate.c
379
380 ACPI PMIC DRIVERS
381 M:      "Rafael J. Wysocki" <[email protected]>
382 M:      Len Brown <[email protected]>
383 R:      Andy Shevchenko <[email protected]>
384 R:      Mika Westerberg <[email protected]>
385 L:      [email protected]
386 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
388 B:      https://bugzilla.kernel.org
389 S:      Supported
390 F:      drivers/acpi/pmic/
391
392 ACPI THERMAL DRIVER
393 M:      Zhang Rui <[email protected]>
394 L:      [email protected]
395 W:      https://01.org/linux-acpi
396 B:      https://bugzilla.kernel.org
397 S:      Supported
398 F:      drivers/acpi/*thermal*
399
400 ACPI VIDEO DRIVER
401 M:      Zhang Rui <[email protected]>
402 L:      [email protected]
403 W:      https://01.org/linux-acpi
404 B:      https://bugzilla.kernel.org
405 S:      Supported
406 F:      drivers/acpi/acpi_video.c
407
408 ACPI WMI DRIVER
409 L:      [email protected]
410 S:      Orphan
411 F:      drivers/platform/x86/wmi.c
412 F:      include/uapi/linux/wmi.h
413
414 AD1889 ALSA SOUND DRIVER
415 W:      https://parisc.wiki.kernel.org/index.php/AD1889
416 L:      [email protected]
417 S:      Maintained
418 F:      sound/pci/ad1889.*
419
420 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
421 M:      Michael Hennerich <[email protected]>
422 W:      http://wiki.analog.com/AD5254
423 W:      http://ez.analog.com/community/linux-device-drivers
424 S:      Supported
425 F:      drivers/misc/ad525x_dpot.c
426
427 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
428 M:      Michael Hennerich <[email protected]>
429 W:      http://wiki.analog.com/AD5398
430 W:      http://ez.analog.com/community/linux-device-drivers
431 S:      Supported
432 F:      drivers/regulator/ad5398.c
433
434 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
435 M:      Michael Hennerich <[email protected]>
436 W:      http://wiki.analog.com/AD7142
437 W:      http://ez.analog.com/community/linux-device-drivers
438 S:      Supported
439 F:      drivers/input/misc/ad714x.c
440
441 AD7877 TOUCHSCREEN DRIVER
442 M:      Michael Hennerich <[email protected]>
443 W:      http://wiki.analog.com/AD7877
444 W:      http://ez.analog.com/community/linux-device-drivers
445 S:      Supported
446 F:      drivers/input/touchscreen/ad7877.c
447
448 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
449 M:      Michael Hennerich <[email protected]>
450 W:      http://wiki.analog.com/AD7879
451 W:      http://ez.analog.com/community/linux-device-drivers
452 S:      Supported
453 F:      drivers/input/touchscreen/ad7879.c
454
455 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
456 M:      Jiri Kosina <[email protected]>
457 S:      Maintained
458
459 ADF7242 IEEE 802.15.4 RADIO DRIVER
460 M:      Michael Hennerich <[email protected]>
461 W:      https://wiki.analog.com/ADF7242
462 W:      http://ez.analog.com/community/linux-device-drivers
463 L:      [email protected]
464 S:      Supported
465 F:      drivers/net/ieee802154/adf7242.c
466 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
467
468 ADM1025 HARDWARE MONITOR DRIVER
469 M:      Jean Delvare <[email protected]>
470 L:      [email protected]
471 S:      Maintained
472 F:      Documentation/hwmon/adm1025.rst
473 F:      drivers/hwmon/adm1025.c
474
475 ADM1029 HARDWARE MONITOR DRIVER
476 M:      Corentin Labbe <[email protected]>
477 L:      [email protected]
478 S:      Maintained
479 F:      drivers/hwmon/adm1029.c
480
481 ADM8211 WIRELESS DRIVER
482 L:      [email protected]
483 W:      http://wireless.kernel.org/
484 S:      Orphan
485 F:      drivers/net/wireless/admtek/adm8211.*
486
487 ADP1653 FLASH CONTROLLER DRIVER
488 M:      Sakari Ailus <[email protected]>
489 L:      [email protected]
490 S:      Maintained
491 F:      drivers/media/i2c/adp1653.c
492 F:      include/media/i2c/adp1653.h
493
494 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
495 M:      Michael Hennerich <[email protected]>
496 W:      http://wiki.analog.com/ADP5520
497 W:      http://ez.analog.com/community/linux-device-drivers
498 S:      Supported
499 F:      drivers/mfd/adp5520.c
500 F:      drivers/video/backlight/adp5520_bl.c
501 F:      drivers/leds/leds-adp5520.c
502 F:      drivers/gpio/gpio-adp5520.c
503 F:      drivers/input/keyboard/adp5520-keys.c
504
505 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
506 M:      Michael Hennerich <[email protected]>
507 W:      http://wiki.analog.com/ADP5588
508 W:      http://ez.analog.com/community/linux-device-drivers
509 S:      Supported
510 F:      drivers/input/keyboard/adp5588-keys.c
511 F:      drivers/gpio/gpio-adp5588.c
512
513 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
514 M:      Michael Hennerich <[email protected]>
515 W:      http://wiki.analog.com/ADP8860
516 W:      http://ez.analog.com/community/linux-device-drivers
517 S:      Supported
518 F:      drivers/video/backlight/adp8860_bl.c
519
520 ADT746X FAN DRIVER
521 M:      Colin Leroy <[email protected]>
522 S:      Maintained
523 F:      drivers/macintosh/therm_adt746x.c
524
525 ADT7475 HARDWARE MONITOR DRIVER
526 M:      Jean Delvare <[email protected]>
527 L:      [email protected]
528 S:      Maintained
529 F:      Documentation/hwmon/adt7475.rst
530 F:      drivers/hwmon/adt7475.c
531
532 ADVANSYS SCSI DRIVER
533 M:      Matthew Wilcox <[email protected]>
534 M:      Hannes Reinecke <[email protected]>
535 L:      [email protected]
536 S:      Maintained
537 F:      Documentation/scsi/advansys.txt
538 F:      drivers/scsi/advansys.c
539
540 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
541 M:      Michael Hennerich <[email protected]>
542 W:      http://wiki.analog.com/ADXL345
543 W:      http://ez.analog.com/community/linux-device-drivers
544 S:      Supported
545 F:      drivers/input/misc/adxl34x.c
546 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
547
548 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
549 M:      Stefan Popa <[email protected]>
550 W:      http://ez.analog.com/community/linux-device-drivers
551 S:      Supported
552 F:      drivers/iio/accel/adxl372.c
553 F:      drivers/iio/accel/adxl372_spi.c
554 F:      drivers/iio/accel/adxl372_i2c.c
555 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
556
557 AF9013 MEDIA DRIVER
558 M:      Antti Palosaari <[email protected]>
559 L:      [email protected]
560 W:      https://linuxtv.org
561 W:      http://palosaari.fi/linux/
562 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
563 T:      git git://linuxtv.org/anttip/media_tree.git
564 S:      Maintained
565 F:      drivers/media/dvb-frontends/af9013*
566
567 AF9033 MEDIA DRIVER
568 M:      Antti Palosaari <[email protected]>
569 L:      [email protected]
570 W:      https://linuxtv.org
571 W:      http://palosaari.fi/linux/
572 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
573 T:      git git://linuxtv.org/anttip/media_tree.git
574 S:      Maintained
575 F:      drivers/media/dvb-frontends/af9033*
576
577 AFFS FILE SYSTEM
578 M:      David Sterba <[email protected]>
579 L:      [email protected]
580 S:      Odd Fixes
581 F:      Documentation/filesystems/affs.txt
582 F:      fs/affs/
583
584 AFS FILESYSTEM
585 M:      David Howells <[email protected]>
586 L:      [email protected]
587 S:      Supported
588 F:      fs/afs/
589 F:      include/trace/events/afs.h
590 F:      Documentation/filesystems/afs.txt
591 W:      https://www.infradead.org/~dhowells/kafs/
592
593 AGPGART DRIVER
594 M:      David Airlie <[email protected]>
595 T:      git git://anongit.freedesktop.org/drm/drm
596 S:      Maintained
597 F:      drivers/char/agp/
598 F:      include/linux/agp*
599 F:      include/uapi/linux/agp*
600
601 AHA152X SCSI DRIVER
602 M:      "Juergen E. Fischer" <[email protected]>
603 L:      [email protected]
604 S:      Maintained
605 F:      drivers/scsi/aha152x*
606 F:      drivers/scsi/pcmcia/aha152x*
607
608 AIC7XXX / AIC79XX SCSI DRIVER
609 M:      Hannes Reinecke <[email protected]>
610 L:      [email protected]
611 S:      Maintained
612 F:      drivers/scsi/aic7xxx/
613
614 AIMSLAB FM RADIO RECEIVER DRIVER
615 M:      Hans Verkuil <[email protected]>
616 L:      [email protected]
617 T:      git git://linuxtv.org/media_tree.git
618 W:      https://linuxtv.org
619 S:      Maintained
620 F:      drivers/media/radio/radio-aimslab*
621
622 AIO
623 M:      Benjamin LaHaise <[email protected]>
624 L:      [email protected]
625 S:      Supported
626 F:      fs/aio.c
627 F:      include/linux/*aio*.h
628
629 AIRSPY MEDIA DRIVER
630 M:      Antti Palosaari <[email protected]>
631 L:      [email protected]
632 W:      https://linuxtv.org
633 W:      http://palosaari.fi/linux/
634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
635 T:      git git://linuxtv.org/anttip/media_tree.git
636 S:      Maintained
637 F:      drivers/media/usb/airspy/
638
639 ALACRITECH GIGABIT ETHERNET DRIVER
640 M:      Lino Sanfilippo <[email protected]>
641 S:      Maintained
642 F:      drivers/net/ethernet/alacritech/*
643
644 FORCEDETH GIGABIT ETHERNET DRIVER
645 M:      Rain River <[email protected]>
646 L:      [email protected]
647 S:      Maintained
648 F:      drivers/net/ethernet/nvidia/*
649
650 ALCATEL SPEEDTOUCH USB DRIVER
651 M:      Duncan Sands <[email protected]>
652 L:      [email protected]
653 W:      http://www.linux-usb.org/SpeedTouch/
654 S:      Maintained
655 F:      drivers/usb/atm/speedtch.c
656 F:      drivers/usb/atm/usbatm.c
657
658 ALCHEMY AU1XX0 MMC DRIVER
659 M:      Manuel Lauss <[email protected]>
660 S:      Maintained
661 F:      drivers/mmc/host/au1xmmc.c
662
663 ALI1563 I2C DRIVER
664 M:      Rudolf Marek <[email protected]>
665 L:      [email protected]
666 S:      Maintained
667 F:      Documentation/i2c/busses/i2c-ali1563.rst
668 F:      drivers/i2c/busses/i2c-ali1563.c
669
670 ALLEGRO DVT VIDEO IP CORE DRIVER
671 M:      Michael Tretter <[email protected]>
672 R:      Pengutronix Kernel Team <[email protected]>
673 L:      [email protected]
674 S:      Maintained
675 F:      drivers/staging/media/allegro-dvt/
676
677 ALLWINNER CPUFREQ DRIVER
678 M:      Yangtao Li <[email protected]>
679 L:      [email protected]
680 S:      Maintained
681 F:      Documentation/devicetree/bindings/opp/sun50i-nvmem-cpufreq.txt
682 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
683
684 ALLWINNER SECURITY SYSTEM
685 M:      Corentin Labbe <[email protected]>
686 L:      [email protected]
687 S:      Maintained
688 F:      drivers/crypto/sunxi-ss/
689
690 ALLWINNER VPU DRIVER
691 M:      Maxime Ripard <[email protected]>
692 M:      Paul Kocialkowski <[email protected]>
693 L:      [email protected]
694 S:      Maintained
695 F:      drivers/staging/media/sunxi/cedrus/
696
697 ALPHA PORT
698 M:      Richard Henderson <[email protected]>
699 M:      Ivan Kokshaysky <[email protected]>
700 M:      Matt Turner <[email protected]>
701 S:      Odd Fixes
702 L:      [email protected]
703 F:      arch/alpha/
704
705 ALPS PS/2 TOUCHPAD DRIVER
706 R:      Pali Rohár <[email protected]>
707 F:      drivers/input/mouse/alps.*
708
709 ALTERA I2C CONTROLLER DRIVER
710 M:      Thor Thayer <[email protected]>
711 S:      Maintained
712 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
713 F:      drivers/i2c/busses/i2c-altera.c
714
715 ALTERA MAILBOX DRIVER
716 M:      Ley Foon Tan <[email protected]>
717 L:      [email protected] (moderated for non-subscribers)
718 S:      Maintained
719 F:      drivers/mailbox/mailbox-altera.c
720
721 ALTERA PIO DRIVER
722 M:      Tien Hock Loh <[email protected]>
723 L:      [email protected]
724 S:      Maintained
725 F:      drivers/gpio/gpio-altera.c
726
727 ALTERA SYSTEM MANAGER DRIVER
728 M:      Thor Thayer <[email protected]>
729 S:      Maintained
730 F:      drivers/mfd/altera-sysmgr.c
731 F:      include/linux/mfd/altera-sysgmr.h
732
733 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
734 M:      Thor Thayer <[email protected]>
735 S:      Maintained
736 F:      drivers/gpio/gpio-altera-a10sr.c
737 F:      drivers/mfd/altera-a10sr.c
738 F:      drivers/reset/reset-a10sr.c
739 F:      include/linux/mfd/altera-a10sr.h
740 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
741
742 ALTERA TRIPLE SPEED ETHERNET DRIVER
743 M:      Thor Thayer <[email protected]>
744 L:      [email protected]
745 L:      [email protected] (moderated for non-subscribers)
746 S:      Maintained
747 F:      drivers/net/ethernet/altera/
748
749 ALTERA UART/JTAG UART SERIAL DRIVERS
750 M:      Tobias Klauser <[email protected]>
751 L:      [email protected]
752 L:      [email protected] (moderated for non-subscribers)
753 S:      Maintained
754 F:      drivers/tty/serial/altera_uart.c
755 F:      drivers/tty/serial/altera_jtaguart.c
756 F:      include/linux/altera_uart.h
757 F:      include/linux/altera_jtaguart.h
758
759 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
760 M:      Talel Shenhar <[email protected]>
761 S:      Maintained
762 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
763 F:      drivers/thermal/thermal_mmio.c
764
765 AMAZON ETHERNET DRIVERS
766 M:      Netanel Belgazal <[email protected]>
767 R:      Saeed Bishara <[email protected]>
768 R:      Zorik Machulsky <[email protected]>
769 L:      [email protected]
770 S:      Supported
771 F:      Documentation/networking/device_drivers/amazon/ena.txt
772 F:      drivers/net/ethernet/amazon/
773
774 AMAZON RDMA EFA DRIVER
775 M:      Gal Pressman <[email protected]>
776 R:      Yossi Leybovich <[email protected]>
777 L:      [email protected]
778 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
779 S:      Supported
780 F:      drivers/infiniband/hw/efa/
781 F:      include/uapi/rdma/efa-abi.h
782
783 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
784 M:      Tom Lendacky <[email protected]>
785 M:      Gary Hook <[email protected]>
786 L:      [email protected]
787 S:      Supported
788 F:      drivers/crypto/ccp/
789 F:      include/linux/ccp.h
790
791 AMD DISPLAY CORE
792 M:      Harry Wentland <[email protected]>
793 M:      Leo Li <[email protected]>
794 L:      [email protected]
795 T:      git git://people.freedesktop.org/~agd5f/linux
796 S:      Supported
797 F:      drivers/gpu/drm/amd/display/
798
799 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
800 M:      Huang Rui <[email protected]>
801 L:      [email protected]
802 S:      Supported
803 F:      Documentation/hwmon/fam15h_power.rst
804 F:      drivers/hwmon/fam15h_power.c
805
806 AMD FCH GPIO DRIVER
807 M:      Enrico Weigelt, metux IT consult <[email protected]>
808 L:      [email protected]
809 S:      Maintained
810 F:      drivers/gpio/gpio-amd-fch.c
811 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
812
813 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
814 L:      [email protected] (moderated for non-subscribers)
815 S:      Orphan
816 F:      drivers/usb/gadget/udc/amd5536udc.*
817
818 AMD GEODE PROCESSOR/CHIPSET SUPPORT
819 P:      Andres Salomon <[email protected]>
820 L:      [email protected] (moderated for non-subscribers)
821 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
822 S:      Supported
823 F:      drivers/char/hw_random/geode-rng.c
824 F:      drivers/crypto/geode*
825 F:      drivers/video/fbdev/geode/
826 F:      arch/x86/include/asm/geode.h
827
828 AMD IOMMU (AMD-VI)
829 M:      Joerg Roedel <[email protected]>
830 L:      [email protected]
831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
832 S:      Maintained
833 F:      drivers/iommu/amd_iommu*.[ch]
834 F:      include/linux/amd-iommu.h
835
836 AMD KFD
837 M:      Felix Kuehling <[email protected]>
838 L:      [email protected]
839 T:      git git://people.freedesktop.org/~agd5f/linux
840 S:      Supported
841 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
842 F:      drivers/gpu/drm/amd/amdkfd/
843 F:      drivers/gpu/drm/amd/include/cik_structs.h
844 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
845 F:      drivers/gpu/drm/amd/include/vi_structs.h
846 F:      drivers/gpu/drm/amd/include/v9_structs.h
847 F:      include/uapi/linux/kfd_ioctl.h
848
849 AMD MP2 I2C DRIVER
850 M:      Elie Morisse <[email protected]>
851 M:      Nehal Shah <[email protected]>
852 M:      Shyam Sundar S K <[email protected]>
853 L:      [email protected]
854 S:      Maintained
855 F:      drivers/i2c/busses/i2c-amd-mp2*
856
857 AMD POWERPLAY
858 M:      Rex Zhu <[email protected]>
859 M:      Evan Quan <[email protected]>
860 L:      [email protected]
861 S:      Supported
862 F:      drivers/gpu/drm/amd/powerplay/
863 T:      git git://people.freedesktop.org/~agd5f/linux
864
865 AMD SEATTLE DEVICE TREE SUPPORT
866 M:      Brijesh Singh <[email protected]>
867 M:      Suravee Suthikulpanit <[email protected]>
868 M:      Tom Lendacky <[email protected]>
869 S:      Supported
870 F:      arch/arm64/boot/dts/amd/
871
872 AMD XGBE DRIVER
873 M:      Tom Lendacky <[email protected]>
874 L:      [email protected]
875 S:      Supported
876 F:      drivers/net/ethernet/amd/xgbe/
877 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
878
879 ANALOG DEVICES INC AD5686 DRIVER
880 M:      Stefan Popa <[email protected]>
881 L:      [email protected]
882 W:      http://ez.analog.com/community/linux-device-drivers
883 S:      Supported
884 F:      drivers/iio/dac/ad5686*
885 F:      drivers/iio/dac/ad5696*
886
887 ANALOG DEVICES INC AD5758 DRIVER
888 M:      Stefan Popa <[email protected]>
889 L:      [email protected]
890 W:      http://ez.analog.com/community/linux-device-drivers
891 S:      Supported
892 F:      drivers/iio/dac/ad5758.c
893 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
894
895 ANALOG DEVICES INC AD7124 DRIVER
896 M:      Stefan Popa <[email protected]>
897 L:      [email protected]
898 W:      http://ez.analog.com/community/linux-device-drivers
899 S:      Supported
900 F:      drivers/iio/adc/ad7124.c
901 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
902
903 ANALOG DEVICES INC AD7606 DRIVER
904 M:      Stefan Popa <[email protected]>
905 M:      Beniamin Bia <[email protected]>
906 L:      [email protected]
907 W:      http://ez.analog.com/community/linux-device-drivers
908 S:      Supported
909 F:      drivers/iio/adc/ad7606.c
910 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
911
912 ANALOG DEVICES INC AD7768-1 DRIVER
913 M:      Stefan Popa <[email protected]>
914 L:      [email protected]
915 W:      http://ez.analog.com/community/linux-device-drivers
916 S:      Supported
917 F:      drivers/iio/adc/ad7768-1.c
918 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
919
920 ANALOG DEVICES INC AD7780 DRIVER
921 M:      Michael Hennerich <[email protected]>
922 M:      Renato Lui Geh <[email protected]>
923 L:      [email protected]
924 W:      http://ez.analog.com/community/linux-device-drivers
925 S:      Supported
926 F:      drivers/iio/adc/ad7780.c
927 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
928
929 ANALOG DEVICES INC AD9389B DRIVER
930 M:      Hans Verkuil <[email protected]>
931 L:      [email protected]
932 S:      Maintained
933 F:      drivers/media/i2c/ad9389b*
934
935 ANALOG DEVICES INC ADGS1408 DRIVER
936 M:      Mircea Caprioru <[email protected]>
937 S:      Supported
938 F:      drivers/mux/adgs1408.c
939 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
940
941 ANALOG DEVICES INC ADIN DRIVER
942 M:      Alexandru Ardelean <[email protected]>
943 L:      [email protected]
944 W:      http://ez.analog.com/community/linux-device-drivers
945 S:      Supported
946 F:      drivers/net/phy/adin.c
947 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
948
949 ANALOG DEVICES INC ADIS DRIVER LIBRARY
950 M:      Alexandru Ardelean <[email protected]>
951 S:      Supported
952 L:      [email protected]
953 F:      include/linux/iio/imu/adis.h
954 F:      drivers/iio/imu/adis.c
955
956 ANALOG DEVICES INC ADIS16460 DRIVER
957 M:      Dragos Bogdan <[email protected]>
958 S:      Supported
959 L:      [email protected]
960 W:      http://ez.analog.com/community/linux-device-drivers
961 F:      drivers/iio/imu/adis16460.c
962 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
963
964 ANALOG DEVICES INC ADP5061 DRIVER
965 M:      Stefan Popa <[email protected]>
966 L:      [email protected]
967 W:      http://ez.analog.com/community/linux-device-drivers
968 S:      Supported
969 F:      drivers/power/supply/adp5061.c
970
971 ANALOG DEVICES INC ADV7180 DRIVER
972 M:      Lars-Peter Clausen <[email protected]>
973 L:      [email protected]
974 W:      http://ez.analog.com/community/linux-device-drivers
975 S:      Supported
976 F:      drivers/media/i2c/adv7180.c
977
978 ANALOG DEVICES INC ADV748X DRIVER
979 M:      Kieran Bingham <[email protected]>
980 L:      [email protected]
981 S:      Maintained
982 F:      drivers/media/i2c/adv748x/*
983
984 ANALOG DEVICES INC ADV7511 DRIVER
985 M:      Hans Verkuil <[email protected]>
986 L:      [email protected]
987 S:      Maintained
988 F:      drivers/media/i2c/adv7511*
989
990 ANALOG DEVICES INC ADV7604 DRIVER
991 M:      Hans Verkuil <[email protected]>
992 L:      [email protected]
993 S:      Maintained
994 F:      drivers/media/i2c/adv7604*
995
996 ANALOG DEVICES INC ADV7842 DRIVER
997 M:      Hans Verkuil <[email protected]>
998 L:      [email protected]
999 S:      Maintained
1000 F:      drivers/media/i2c/adv7842*
1001
1002 ANALOG DEVICES INC ASOC CODEC DRIVERS
1003 M:      Lars-Peter Clausen <[email protected]>
1004 L:      [email protected] (moderated for non-subscribers)
1005 W:      http://wiki.analog.com/
1006 W:      http://ez.analog.com/community/linux-device-drivers
1007 S:      Supported
1008 F:      sound/soc/codecs/adau*
1009 F:      sound/soc/codecs/adav*
1010 F:      sound/soc/codecs/ad1*
1011 F:      sound/soc/codecs/ad7*
1012 F:      sound/soc/codecs/ssm*
1013 F:      sound/soc/codecs/sigmadsp.*
1014
1015 ANALOG DEVICES INC DMA DRIVERS
1016 M:      Lars-Peter Clausen <[email protected]>
1017 W:      http://ez.analog.com/community/linux-device-drivers
1018 S:      Supported
1019 F:      drivers/dma/dma-axi-dmac.c
1020
1021 ANALOG DEVICES INC IIO DRIVERS
1022 M:      Lars-Peter Clausen <[email protected]>
1023 M:      Michael Hennerich <[email protected]>
1024 M:      Stefan Popa <[email protected]>
1025 W:      http://wiki.analog.com/
1026 W:      http://ez.analog.com/community/linux-device-drivers
1027 S:      Supported
1028 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1029 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1030 F:      drivers/iio/*/ad*
1031 F:      drivers/iio/adc/ltc2497*
1032 X:      drivers/iio/*/adjd*
1033 F:      drivers/staging/iio/*/ad*
1034
1035 ANALOGBITS PLL LIBRARIES
1036 M:      Paul Walmsley <[email protected]>
1037 S:      Supported
1038 F:      drivers/clk/analogbits/*
1039 F:      include/linux/clk/analogbits*
1040
1041 ANDES ARCHITECTURE
1042 M:      Greentime Hu <[email protected]>
1043 M:      Vincent Chen <[email protected]>
1044 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1045 S:      Supported
1046 F:      arch/nds32/
1047 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1048 F:      Documentation/devicetree/bindings/nds32/
1049 K:      nds32
1050 N:      nds32
1051
1052 ANDROID CONFIG FRAGMENTS
1053 M:      Rob Herring <[email protected]>
1054 S:      Supported
1055 F:      kernel/configs/android*
1056
1057 ANDROID DRIVERS
1058 M:      Greg Kroah-Hartman <[email protected]>
1059 M:      Arve Hjønnevåg <[email protected]>
1060 M:      Todd Kjos <[email protected]>
1061 M:      Martijn Coenen <[email protected]>
1062 M:      Joel Fernandes <[email protected]>
1063 M:      Christian Brauner <[email protected]>
1064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1065 L:      [email protected]
1066 S:      Supported
1067 F:      drivers/android/
1068 F:      drivers/staging/android/
1069
1070 ANDROID GOLDFISH PIC DRIVER
1071 M:      Miodrag Dinic <[email protected]>
1072 S:      Supported
1073 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1074 F:      drivers/irqchip/irq-goldfish-pic.c
1075
1076 ANDROID GOLDFISH RTC DRIVER
1077 M:      Miodrag Dinic <[email protected]>
1078 S:      Supported
1079 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1080 F:      drivers/rtc/rtc-goldfish.c
1081
1082 ANDROID ION DRIVER
1083 M:      Laura Abbott <[email protected]>
1084 M:      Sumit Semwal <[email protected]>
1085 L:      [email protected]
1086 L:      [email protected]
1087 L:      [email protected] (moderated for non-subscribers)
1088 S:      Supported
1089 F:      drivers/staging/android/ion
1090 F:      drivers/staging/android/uapi/ion.h
1091
1092 AOA (Apple Onboard Audio) ALSA DRIVER
1093 M:      Johannes Berg <[email protected]>
1094 L:      [email protected]
1095 L:      [email protected] (moderated for non-subscribers)
1096 S:      Maintained
1097 F:      sound/aoa/
1098
1099 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1100 M:      William Breathitt Gray <[email protected]>
1101 L:      [email protected]
1102 S:      Maintained
1103 F:      drivers/iio/adc/stx104.c
1104
1105 APM DRIVER
1106 M:      Jiri Kosina <[email protected]>
1107 S:      Odd fixes
1108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1109 F:      arch/x86/kernel/apm_32.c
1110 F:      include/linux/apm_bios.h
1111 F:      include/uapi/linux/apm_bios.h
1112 F:      drivers/char/apm-emulation.c
1113
1114 APPARMOR SECURITY MODULE
1115 M:      John Johansen <[email protected]>
1116 L:      [email protected] (subscribers-only, general discussion)
1117 W:      wiki.apparmor.net
1118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1119 S:      Supported
1120 F:      security/apparmor/
1121 F:      Documentation/admin-guide/LSM/apparmor.rst
1122
1123 APPLE BCM5974 MULTITOUCH DRIVER
1124 M:      Henrik Rydberg <[email protected]>
1125 L:      [email protected]
1126 S:      Odd fixes
1127 F:      drivers/input/mouse/bcm5974.c
1128
1129 APPLE SMC DRIVER
1130 M:      Henrik Rydberg <[email protected]>
1131 L:      [email protected]
1132 S:      Odd fixes
1133 F:      drivers/hwmon/applesmc.c
1134
1135 APPLETALK NETWORK LAYER
1136 L:      [email protected]
1137 S:      Odd fixes
1138 F:      drivers/net/appletalk/
1139 F:      net/appletalk/
1140 F:      include/linux/atalk.h
1141 F:      include/uapi/linux/atalk.h
1142
1143 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1144 M:      Khuong Dinh <[email protected]>
1145 S:      Supported
1146 F:      arch/arm64/boot/dts/apm/
1147
1148 APPLIED MICRO (APM) X-GENE SOC EDAC
1149 M:      Khuong Dinh <[email protected]>
1150 S:      Supported
1151 F:      drivers/edac/xgene_edac.c
1152 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1153
1154 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1155 M:      Iyappan Subramanian <[email protected]>
1156 M:      Keyur Chudgar <[email protected]>
1157 S:      Supported
1158 F:      drivers/net/ethernet/apm/xgene-v2/
1159
1160 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1161 M:      Iyappan Subramanian <[email protected]>
1162 M:      Keyur Chudgar <[email protected]>
1163 M:      Quan Nguyen <[email protected]>
1164 S:      Supported
1165 F:      drivers/net/ethernet/apm/xgene/
1166 F:      drivers/net/phy/mdio-xgene.c
1167 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1168 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1169
1170 APPLIED MICRO (APM) X-GENE SOC PMU
1171 M:      Khuong Dinh <[email protected]>
1172 S:      Supported
1173 F:      drivers/perf/xgene_pmu.c
1174 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1175 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1176
1177 APTINA CAMERA SENSOR PLL
1178 M:      Laurent Pinchart <[email protected]>
1179 L:      [email protected]
1180 S:      Maintained
1181 F:      drivers/media/i2c/aptina-pll.*
1182
1183 AQUANTIA ETHERNET DRIVER (atlantic)
1184 M:      Igor Russkikh <[email protected]>
1185 L:      [email protected]
1186 S:      Supported
1187 W:      http://www.aquantia.com
1188 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1189 F:      drivers/net/ethernet/aquantia/atlantic/
1190 F:      Documentation/networking/device_drivers/aquantia/atlantic.txt
1191
1192 ARC FRAMEBUFFER DRIVER
1193 M:      Jaya Kumar <[email protected]>
1194 S:      Maintained
1195 F:      drivers/video/fbdev/arcfb.c
1196 F:      drivers/video/fbdev/core/fb_defio.c
1197
1198 ARC PGU DRM DRIVER
1199 M:      Alexey Brodkin <[email protected]>
1200 S:      Supported
1201 F:      drivers/gpu/drm/arc/
1202 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1203
1204 ARCNET NETWORK LAYER
1205 M:      Michael Grzeschik <[email protected]>
1206 L:      [email protected]
1207 S:      Maintained
1208 F:      drivers/net/arcnet/
1209 F:      include/uapi/linux/if_arcnet.h
1210
1211 ARM ARCHITECTED TIMER DRIVER
1212 M:      Mark Rutland <[email protected]>
1213 M:      Marc Zyngier <[email protected]>
1214 L:      [email protected] (moderated for non-subscribers)
1215 S:      Maintained
1216 F:      arch/arm/include/asm/arch_timer.h
1217 F:      arch/arm64/include/asm/arch_timer.h
1218 F:      drivers/clocksource/arm_arch_timer.c
1219
1220 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1221 M:      Linus Walleij <[email protected]>
1222 L:      [email protected] (moderated for non-subscribers)
1223 S:      Maintained
1224 F:      Documentation/devicetree/bindings/arm/arm-boards
1225 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1226 F:      Documentation/devicetree/bindings/clock/arm-integrator.txt
1227 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1228 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1229 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1230 F:      arch/arm/mach-integrator/
1231 F:      arch/arm/mach-realview/
1232 F:      arch/arm/mach-versatile/
1233 F:      arch/arm/plat-versatile/
1234 F:      arch/arm/boot/dts/arm-realview-*
1235 F:      arch/arm/boot/dts/integrator*
1236 F:      arch/arm/boot/dts/versatile*
1237 F:      drivers/clk/versatile/
1238 F:      drivers/i2c/busses/i2c-versatile.c
1239 F:      drivers/irqchip/irq-versatile-fpga.c
1240 F:      drivers/mtd/maps/physmap_of_versatile.c
1241 F:      drivers/power/reset/arm-versatile-reboot.c
1242 F:      drivers/soc/versatile/
1243
1244 ARM HDLCD DRM DRIVER
1245 M:      Liviu Dudau <[email protected]>
1246 S:      Supported
1247 F:      drivers/gpu/drm/arm/hdlcd_*
1248 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1249
1250 ARM KOMEDA DRM-KMS DRIVER
1251 M:      James (Qian) Wang <[email protected]>
1252 M:      Liviu Dudau <[email protected]>
1253 L:      Mali DP Maintainers <[email protected]>
1254 S:      Supported
1255 T:      git git://anongit.freedesktop.org/drm/drm-misc
1256 F:      drivers/gpu/drm/arm/display/include/
1257 F:      drivers/gpu/drm/arm/display/komeda/
1258 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1259 F:      Documentation/gpu/komeda-kms.rst
1260
1261 ARM MALI-DP DRM DRIVER
1262 M:      Liviu Dudau <[email protected]>
1263 M:      Brian Starkey <[email protected]>
1264 L:      Mali DP Maintainers <[email protected]>
1265 S:      Supported
1266 T:      git git://anongit.freedesktop.org/drm/drm-misc
1267 F:      drivers/gpu/drm/arm/
1268 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1269 F:      Documentation/gpu/afbc.rst
1270
1271 ARM MALI PANFROST DRM DRIVER
1272 M:      Rob Herring <[email protected]>
1273 M:      Tomeu Vizoso <[email protected]>
1274 L:      [email protected]
1275 S:      Supported
1276 T:      git git://anongit.freedesktop.org/drm/drm-misc
1277 F:      drivers/gpu/drm/panfrost/
1278 F:      include/uapi/drm/panfrost_drm.h
1279
1280 ARM MFM AND FLOPPY DRIVERS
1281 M:      Ian Molton <[email protected]>
1282 S:      Maintained
1283 F:      arch/arm/mach-rpc/floppydma.S
1284 F:      arch/arm/include/asm/floppy.h
1285
1286 ARM PMU PROFILING AND DEBUGGING
1287 M:      Will Deacon <[email protected]>
1288 M:      Mark Rutland <[email protected]>
1289 S:      Maintained
1290 L:      [email protected] (moderated for non-subscribers)
1291 F:      arch/arm*/kernel/perf_*
1292 F:      arch/arm/oprofile/common.c
1293 F:      arch/arm*/kernel/hw_breakpoint.c
1294 F:      arch/arm*/include/asm/hw_breakpoint.h
1295 F:      arch/arm*/include/asm/perf_event.h
1296 F:      drivers/perf/*
1297 F:      include/linux/perf/arm_pmu.h
1298 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1299 F:      Documentation/devicetree/bindings/perf/
1300
1301 ARM PORT
1302 M:      Russell King <[email protected]>
1303 L:      [email protected] (moderated for non-subscribers)
1304 W:      http://www.armlinux.org.uk/
1305 S:      Odd Fixes
1306 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1307 F:      arch/arm/
1308 X:      arch/arm/boot/dts/
1309
1310 ARM PRIMECELL AACI PL041 DRIVER
1311 M:      Russell King <[email protected]>
1312 S:      Odd Fixes
1313 F:      sound/arm/aaci.*
1314
1315 ARM PRIMECELL BUS SUPPORT
1316 M:      Russell King <[email protected]>
1317 S:      Odd Fixes
1318 F:      drivers/amba/
1319 F:      include/linux/amba/bus.h
1320
1321 ARM PRIMECELL CLCD PL110 DRIVER
1322 M:      Russell King <[email protected]>
1323 S:      Odd Fixes
1324 F:      drivers/video/fbdev/amba-clcd.*
1325
1326 ARM PRIMECELL KMI PL050 DRIVER
1327 M:      Russell King <[email protected]>
1328 S:      Odd Fixes
1329 F:      drivers/input/serio/ambakmi.*
1330 F:      include/linux/amba/kmi.h
1331
1332 ARM PRIMECELL MMCI PL180/1 DRIVER
1333 M:      Russell King <[email protected]>
1334 S:      Odd Fixes
1335 F:      drivers/mmc/host/mmci.*
1336 F:      include/linux/amba/mmci.h
1337
1338 ARM PRIMECELL SSP PL022 SPI DRIVER
1339 M:      Linus Walleij <[email protected]>
1340 L:      [email protected] (moderated for non-subscribers)
1341 S:      Maintained
1342 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1343 F:      drivers/spi/spi-pl022.c
1344
1345 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1346 M:      Russell King <[email protected]>
1347 S:      Odd Fixes
1348 F:      drivers/tty/serial/amba-pl01*.c
1349 F:      include/linux/amba/serial.h
1350
1351 ARM PRIMECELL VIC PL190/PL192 DRIVER
1352 M:      Linus Walleij <[email protected]>
1353 L:      [email protected] (moderated for non-subscribers)
1354 S:      Maintained
1355 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1356 F:      drivers/irqchip/irq-vic.c
1357
1358 AMAZON ANNAPURNA LABS FIC DRIVER
1359 M:      Talel Shenhar <[email protected]>
1360 S:      Maintained
1361 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
1362 F:      drivers/irqchip/irq-al-fic.c
1363
1364 ARM SMMU DRIVERS
1365 M:      Will Deacon <[email protected]>
1366 R:      Robin Murphy <[email protected]>
1367 L:      [email protected] (moderated for non-subscribers)
1368 S:      Maintained
1369 F:      drivers/iommu/arm-smmu*
1370 F:      drivers/iommu/io-pgtable-arm.c
1371 F:      drivers/iommu/io-pgtable-arm-v7s.c
1372
1373 ARM SUB-ARCHITECTURES
1374 L:      [email protected] (moderated for non-subscribers)
1375 S:      Maintained
1376 F:      arch/arm/mach-*/
1377 F:      arch/arm/plat-*/
1378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1379
1380 ARM/ACTIONS SEMI ARCHITECTURE
1381 M:      Andreas Färber <[email protected]>
1382 R:      Manivannan Sadhasivam <[email protected]>
1383 L:      [email protected] (moderated for non-subscribers)
1384 S:      Maintained
1385 N:      owl
1386 F:      arch/arm/mach-actions/
1387 F:      arch/arm/boot/dts/owl-*
1388 F:      arch/arm64/boot/dts/actions/
1389 F:      drivers/clk/actions/
1390 F:      drivers/clocksource/timer-owl*
1391 F:      drivers/dma/owl-dma.c
1392 F:      drivers/i2c/busses/i2c-owl.c
1393 F:      drivers/pinctrl/actions/*
1394 F:      drivers/soc/actions/
1395 F:      include/dt-bindings/power/owl-*
1396 F:      include/linux/soc/actions/
1397 F:      Documentation/devicetree/bindings/arm/actions.yaml
1398 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1399 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1400 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1401 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1402 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1403 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1404
1405 ARM/ADS SPHERE MACHINE SUPPORT
1406 M:      Lennert Buytenhek <[email protected]>
1407 L:      [email protected] (moderated for non-subscribers)
1408 S:      Maintained
1409
1410 ARM/AFEB9260 MACHINE SUPPORT
1411 M:      Sergey Lapin <[email protected]>
1412 L:      [email protected] (moderated for non-subscribers)
1413 S:      Maintained
1414
1415 ARM/AJECO 1ARM MACHINE SUPPORT
1416 M:      Lennert Buytenhek <[email protected]>
1417 L:      [email protected] (moderated for non-subscribers)
1418 S:      Maintained
1419
1420 ARM/Allwinner SoC Clock Support
1421 M:      Emilio López <[email protected]>
1422 S:      Maintained
1423 F:      drivers/clk/sunxi/
1424
1425 ARM/Allwinner sunXi SoC support
1426 M:      Maxime Ripard <[email protected]>
1427 M:      Chen-Yu Tsai <[email protected]>
1428 L:      [email protected] (moderated for non-subscribers)
1429 S:      Maintained
1430 N:      sun[x456789]i
1431 N:      sun50i
1432 F:      arch/arm/mach-sunxi/
1433 F:      arch/arm64/boot/dts/allwinner/
1434 F:      drivers/clk/sunxi-ng/
1435 F:      drivers/pinctrl/sunxi/
1436 F:      drivers/soc/sunxi/
1437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1438
1439 Allwinner A10 CSI driver
1440 M:      Maxime Ripard <[email protected]>
1441 L:      [email protected]
1442 T:      git git://linuxtv.org/media_tree.git
1443 F:      drivers/media/platform/sunxi/sun4i-csi/
1444 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
1445 S:      Maintained
1446
1447 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1448 M:      Neil Armstrong <[email protected]>
1449 M:      Jerome Brunet <[email protected]>
1450 L:      [email protected]
1451 S:      Maintained
1452 F:      drivers/clk/meson/
1453 F:      include/dt-bindings/clock/meson*
1454 F:      include/dt-bindings/clock/gxbb*
1455 F:      Documentation/devicetree/bindings/clock/amlogic*
1456
1457 ARM/Amlogic Meson SoC support
1458 M:      Kevin Hilman <[email protected]>
1459 L:      [email protected] (moderated for non-subscribers)
1460 L:      [email protected]
1461 W:      http://linux-meson.com/
1462 S:      Maintained
1463 F:      arch/arm/mach-meson/
1464 F:      arch/arm/boot/dts/meson*
1465 F:      arch/arm64/boot/dts/amlogic/
1466 F:      drivers/pinctrl/meson/
1467 F:      drivers/mmc/host/meson*
1468 F:      drivers/soc/amlogic/
1469 N:      meson
1470
1471 ARM/Amlogic Meson SoC Sound Drivers
1472 M:      Jerome Brunet <[email protected]>
1473 L:      [email protected] (moderated for non-subscribers)
1474 S:      Maintained
1475 F:      sound/soc/meson/
1476 F:      Documentation/devicetree/bindings/sound/amlogic*
1477
1478 ARM/Annapurna Labs ALPINE ARCHITECTURE
1479 M:      Tsahee Zidenberg <[email protected]>
1480 M:      Antoine Tenart <[email protected]>
1481 L:      [email protected] (moderated for non-subscribers)
1482 S:      Maintained
1483 F:      arch/arm/mach-alpine/
1484 F:      arch/arm/boot/dts/alpine*
1485 F:      arch/arm64/boot/dts/al/
1486 F:      drivers/*/*alpine*
1487
1488 ARM/ARTPEC MACHINE SUPPORT
1489 M:      Jesper Nilsson <[email protected]>
1490 M:      Lars Persson <[email protected]>
1491 S:      Maintained
1492 L:      [email protected]
1493 F:      arch/arm/mach-artpec
1494 F:      arch/arm/boot/dts/artpec6*
1495 F:      drivers/clk/axis
1496 F:      drivers/crypto/axis
1497 F:      drivers/mmc/host/usdhi6rol0.c
1498 F:      drivers/pinctrl/pinctrl-artpec*
1499 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1500
1501 ARM/ASPEED I2C DRIVER
1502 M:      Brendan Higgins <[email protected]>
1503 R:      Benjamin Herrenschmidt <[email protected]>
1504 R:      Joel Stanley <[email protected]>
1505 L:      [email protected]
1506 L:      [email protected] (moderated for non-subscribers)
1507 S:      Maintained
1508 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1509 F:      drivers/i2c/busses/i2c-aspeed.c
1510 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1511 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1512
1513 ARM/ASPEED MACHINE SUPPORT
1514 M:      Joel Stanley <[email protected]>
1515 R:      Andrew Jeffery <[email protected]>
1516 L:      [email protected] (moderated for non-subscribers)
1517 L:      [email protected] (moderated for non-subscribers)
1518 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1519 S:      Supported
1520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1521 F:      arch/arm/mach-aspeed/
1522 F:      arch/arm/boot/dts/aspeed-*
1523 N:      aspeed
1524
1525 ARM/BITMAIN ARCHITECTURE
1526 M:      Manivannan Sadhasivam <[email protected]>
1527 L:      [email protected] (moderated for non-subscribers)
1528 S:      Maintained
1529 F:      arch/arm64/boot/dts/bitmain/
1530 F:      drivers/pinctrl/pinctrl-bm1880.c
1531 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1532 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1533
1534 ARM/CALXEDA HIGHBANK ARCHITECTURE
1535 M:      Rob Herring <[email protected]>
1536 L:      [email protected] (moderated for non-subscribers)
1537 S:      Maintained
1538 F:      arch/arm/mach-highbank/
1539 F:      arch/arm/boot/dts/highbank.dts
1540 F:      arch/arm/boot/dts/ecx-*.dts*
1541
1542 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1543 M:      Krzysztof Halasa <[email protected]>
1544 S:      Maintained
1545 F:      arch/arm/mach-cns3xxx/
1546
1547 ARM/CAVIUM THUNDER NETWORK DRIVER
1548 M:      Sunil Goutham <[email protected]>
1549 M:      Robert Richter <[email protected]>
1550 L:      [email protected] (moderated for non-subscribers)
1551 S:      Supported
1552 F:      drivers/net/ethernet/cavium/thunder/
1553
1554 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1555 M:      Lukasz Majewski <[email protected]>
1556 L:      [email protected] (moderated for non-subscribers)
1557 S:      Maintained
1558 F:      arch/arm/mach-ep93xx/ts72xx.c
1559
1560 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1561 M:      Alexander Shiyan <[email protected]>
1562 L:      [email protected] (moderated for non-subscribers)
1563 S:      Odd Fixes
1564 N:      clps711x
1565
1566 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1567 M:      Lennert Buytenhek <[email protected]>
1568 L:      [email protected] (moderated for non-subscribers)
1569 S:      Maintained
1570
1571 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1572 M:      Hartley Sweeten <[email protected]>
1573 M:      Alexander Sverdlin <[email protected]>
1574 L:      [email protected] (moderated for non-subscribers)
1575 S:      Maintained
1576 F:      arch/arm/mach-ep93xx/
1577 F:      arch/arm/mach-ep93xx/include/mach/
1578
1579 ARM/CLKDEV SUPPORT
1580 M:      Russell King <[email protected]>
1581 L:      [email protected] (moderated for non-subscribers)
1582 S:      Maintained
1583 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1584 F:      drivers/clk/clkdev.c
1585
1586 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1587 M:      Mike Rapoport <[email protected]>
1588 L:      [email protected] (moderated for non-subscribers)
1589 S:      Maintained
1590
1591 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1592 M:      Baruch Siach <[email protected]>
1593 L:      [email protected] (moderated for non-subscribers)
1594 S:      Maintained
1595 F:      arch/arm/boot/dts/cx92755*
1596 N:      digicolor
1597
1598 ARM/CONTEC MICRO9 MACHINE SUPPORT
1599 M:      Hubert Feurstein <[email protected]>
1600 S:      Maintained
1601 F:      arch/arm/mach-ep93xx/micro9.c
1602
1603 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1604 M:      Mathieu Poirier <[email protected]>
1605 R:      Suzuki K Poulose <[email protected]>
1606 L:      [email protected] (moderated for non-subscribers)
1607 S:      Maintained
1608 F:      drivers/hwtracing/coresight/*
1609 F:      Documentation/trace/coresight.rst
1610 F:      Documentation/trace/coresight-cpu-debug.rst
1611 F:      Documentation/devicetree/bindings/arm/coresight.txt
1612 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1613 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1614 F:      tools/perf/arch/arm/util/pmu.c
1615 F:      tools/perf/arch/arm/util/auxtrace.c
1616 F:      tools/perf/arch/arm/util/cs-etm.c
1617 F:      tools/perf/arch/arm/util/cs-etm.h
1618 F:      tools/perf/util/cs-etm.*
1619 F:      tools/perf/util/cs-etm-decoder/*
1620
1621 ARM/CORGI MACHINE SUPPORT
1622 M:      Richard Purdie <[email protected]>
1623 S:      Maintained
1624
1625 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1626 M:      Hans Ulli Kroll <[email protected]>
1627 M:      Linus Walleij <[email protected]>
1628 L:      [email protected] (moderated for non-subscribers)
1629 T:      git git://github.com/ulli-kroll/linux.git
1630 S:      Maintained
1631 F:      Documentation/devicetree/bindings/arm/gemini.txt
1632 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1633 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1634 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1635 F:      arch/arm/mach-gemini/
1636 F:      drivers/net/ethernet/cortina/
1637 F:      drivers/pinctrl/pinctrl-gemini.c
1638 F:      drivers/rtc/rtc-ftrtc010.c
1639
1640 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1641 M:      Barry Song <[email protected]>
1642 L:      [email protected] (moderated for non-subscribers)
1643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1644 S:      Maintained
1645 F:      arch/arm/boot/dts/prima2*
1646 F:      arch/arm/mach-prima2/
1647 F:      drivers/clk/sirf/
1648 F:      drivers/clocksource/timer-prima2.c
1649 F:      drivers/clocksource/timer-atlas7.c
1650 N:      [^a-z]sirf
1651 X:      drivers/gnss
1652
1653 ARM/CZ.NIC TURRIS MOX SUPPORT
1654 M:      Marek Behun <[email protected]>
1655 W:      http://mox.turris.cz
1656 S:      Maintained
1657 F:      Documentation/ABI/testing/debugfs-moxtet
1658 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1659 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1660 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1661 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1662 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1663 F:      include/linux/moxtet.h
1664 F:      drivers/bus/moxtet.c
1665 F:      drivers/firmware/turris-mox-rwtm.c
1666 F:      drivers/gpio/gpio-moxtet.c
1667
1668 ARM/EBSA110 MACHINE SUPPORT
1669 M:      Russell King <[email protected]>
1670 L:      [email protected] (moderated for non-subscribers)
1671 W:      http://www.armlinux.org.uk/
1672 S:      Maintained
1673 F:      arch/arm/mach-ebsa110/
1674 F:      drivers/net/ethernet/amd/am79c961a.*
1675
1676 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1677 M:      Uwe Kleine-König <[email protected]>
1678 R:      Pengutronix Kernel Team <[email protected]>
1679 L:      [email protected] (moderated for non-subscribers)
1680 S:      Maintained
1681 N:      efm32
1682
1683 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1684 M:      Robert Jarzmik <[email protected]>
1685 L:      [email protected] (moderated for non-subscribers)
1686 S:      Maintained
1687 F:      arch/arm/mach-pxa/ezx.c
1688
1689 ARM/FARADAY FA526 PORT
1690 M:      Hans Ulli Kroll <[email protected]>
1691 L:      [email protected] (moderated for non-subscribers)
1692 S:      Maintained
1693 T:      git git://git.berlios.de/gemini-board
1694 F:      arch/arm/mm/*-fa*
1695
1696 ARM/FOOTBRIDGE ARCHITECTURE
1697 M:      Russell King <[email protected]>
1698 L:      [email protected] (moderated for non-subscribers)
1699 W:      http://www.armlinux.org.uk/
1700 S:      Maintained
1701 F:      arch/arm/include/asm/hardware/dec21285.h
1702 F:      arch/arm/mach-footbridge/
1703
1704 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1705 M:      Shawn Guo <[email protected]>
1706 M:      Sascha Hauer <[email protected]>
1707 R:      Pengutronix Kernel Team <[email protected]>
1708 R:      Fabio Estevam <[email protected]>
1709 R:      NXP Linux Team <[email protected]>
1710 L:      [email protected] (moderated for non-subscribers)
1711 S:      Maintained
1712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1713 N:      imx
1714 N:      mxs
1715 X:      drivers/media/i2c/
1716
1717 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1718 M:      Shawn Guo <[email protected]>
1719 M:      Sascha Hauer <[email protected]>
1720 R:      Pengutronix Kernel Team <[email protected]>
1721 R:      Stefan Agner <[email protected]>
1722 L:      [email protected] (moderated for non-subscribers)
1723 S:      Maintained
1724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1725 F:      arch/arm/mach-imx/*vf610*
1726 F:      arch/arm/boot/dts/vf*
1727
1728 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1729 M:      Shawn Guo <[email protected]>
1730 M:      Li Yang <[email protected]>
1731 L:      [email protected] (moderated for non-subscribers)
1732 S:      Maintained
1733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1734 F:      arch/arm/boot/dts/ls1021a*
1735 F:      arch/arm64/boot/dts/freescale/fsl-*
1736 F:      arch/arm64/boot/dts/freescale/qoriq-*
1737
1738 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1739 M:      Lennert Buytenhek <[email protected]>
1740 L:      [email protected] (moderated for non-subscribers)
1741 S:      Maintained
1742
1743 ARM/GUMSTIX MACHINE SUPPORT
1744 M:      Steve Sakoman <[email protected]>
1745 L:      [email protected] (moderated for non-subscribers)
1746 S:      Maintained
1747
1748 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1749 M:      Philipp Zabel <[email protected]>
1750 M:      Paul Parsons <[email protected]>
1751 L:      [email protected] (moderated for non-subscribers)
1752 S:      Maintained
1753 F:      arch/arm/mach-pxa/hx4700.c
1754 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1755 F:      sound/soc/pxa/hx4700.c
1756
1757 ARM/HISILICON SOC SUPPORT
1758 M:      Wei Xu <[email protected]>
1759 L:      [email protected] (moderated for non-subscribers)
1760 W:      http://www.hisilicon.com
1761 S:      Supported
1762 T:      git git://github.com/hisilicon/linux-hisi.git
1763 F:      arch/arm/mach-hisi/
1764 F:      arch/arm/boot/dts/hi3*
1765 F:      arch/arm/boot/dts/hip*
1766 F:      arch/arm/boot/dts/hisi*
1767 F:      arch/arm64/boot/dts/hisilicon/
1768
1769 ARM/HP JORNADA 7XX MACHINE SUPPORT
1770 M:      Kristoffer Ericson <[email protected]>
1771 W:      www.jlime.com
1772 S:      Maintained
1773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1774 F:      arch/arm/mach-sa1100/jornada720.c
1775 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1776
1777 ARM/IGEP MACHINE SUPPORT
1778 M:      Enric Balletbo i Serra <[email protected]>
1779 M:      Javier Martinez Canillas <[email protected]>
1780 L:      [email protected]
1781 L:      [email protected] (moderated for non-subscribers)
1782 S:      Maintained
1783 F:      arch/arm/boot/dts/omap3-igep*
1784
1785 ARM/INCOME PXA270 SUPPORT
1786 M:      Marek Vasut <[email protected]>
1787 L:      [email protected] (moderated for non-subscribers)
1788 S:      Maintained
1789 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1790
1791 ARM/INTEL IOP32X ARM ARCHITECTURE
1792 M:      Lennert Buytenhek <[email protected]>
1793 L:      [email protected] (moderated for non-subscribers)
1794 S:      Maintained
1795
1796 ARM/INTEL IQ81342EX MACHINE SUPPORT
1797 M:      Lennert Buytenhek <[email protected]>
1798 L:      [email protected] (moderated for non-subscribers)
1799 S:      Maintained
1800
1801 ARM/INTEL IXDP2850 MACHINE SUPPORT
1802 M:      Lennert Buytenhek <[email protected]>
1803 L:      [email protected] (moderated for non-subscribers)
1804 S:      Maintained
1805
1806 ARM/INTEL IXP4XX ARM ARCHITECTURE
1807 M:      Linus Walleij <[email protected]>
1808 M:      Imre Kaloz <[email protected]>
1809 M:      Krzysztof Halasa <[email protected]>
1810 L:      [email protected] (moderated for non-subscribers)
1811 S:      Maintained
1812 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1813 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1814 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1815 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1816 F:      arch/arm/mach-ixp4xx/
1817 F:      drivers/clocksource/timer-ixp4xx.c
1818 F:      drivers/gpio/gpio-ixp4xx.c
1819 F:      drivers/irqchip/irq-ixp4xx.c
1820 F:      include/linux/irqchip/irq-ixp4xx.h
1821 F:      include/linux/platform_data/timer-ixp4xx.h
1822
1823 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1824 M:      Jonathan Cameron <[email protected]>
1825 L:      [email protected] (moderated for non-subscribers)
1826 S:      Maintained
1827 F:      arch/arm/mach-pxa/stargate2.c
1828 F:      drivers/pcmcia/pxa2xx_stargate2.c
1829
1830 ARM/INTEL XSC3 (MANZANO) ARM CORE
1831 M:      Lennert Buytenhek <[email protected]>
1832 L:      [email protected] (moderated for non-subscribers)
1833 S:      Maintained
1834
1835 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1836 M:      Lennert Buytenhek <[email protected]>
1837 L:      [email protected] (moderated for non-subscribers)
1838 S:      Maintained
1839
1840 ARM/LG1K ARCHITECTURE
1841 M:      Chanho Min <[email protected]>
1842 L:      [email protected] (moderated for non-subscribers)
1843 S:      Maintained
1844 F:      arch/arm64/boot/dts/lg/
1845
1846 ARM/LOGICPD PXA270 MACHINE SUPPORT
1847 M:      Lennert Buytenhek <[email protected]>
1848 L:      [email protected] (moderated for non-subscribers)
1849 S:      Maintained
1850
1851 ARM/LPC18XX ARCHITECTURE
1852 M:      Vladimir Zapolskiy <[email protected]>
1853 L:      [email protected] (moderated for non-subscribers)
1854 S:      Maintained
1855 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1856 F:      arch/arm/boot/dts/lpc43*
1857 F:      drivers/i2c/busses/i2c-lpc2k.c
1858 F:      drivers/memory/pl172.c
1859 F:      drivers/mtd/spi-nor/nxp-spifi.c
1860 F:      drivers/rtc/rtc-lpc24xx.c
1861 N:      lpc18xx
1862
1863 ARM/LPC32XX SOC SUPPORT
1864 M:      Vladimir Zapolskiy <[email protected]>
1865 M:      Sylvain Lemieux <[email protected]>
1866 L:      [email protected] (moderated for non-subscribers)
1867 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1868 S:      Maintained
1869 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1870 F:      arch/arm/boot/dts/lpc32*
1871 F:      arch/arm/mach-lpc32xx/
1872 F:      drivers/i2c/busses/i2c-pnx.c
1873 F:      drivers/net/ethernet/nxp/lpc_eth.c
1874 F:      drivers/usb/host/ohci-nxp.c
1875 F:      drivers/watchdog/pnx4008_wdt.c
1876 N:      lpc32xx
1877
1878 ARM/MAGICIAN MACHINE SUPPORT
1879 M:      Philipp Zabel <[email protected]>
1880 S:      Maintained
1881
1882 ARM/Marvell Dove/MV78xx0/Orion SOC support
1883 M:      Jason Cooper <[email protected]>
1884 M:      Andrew Lunn <[email protected]>
1885 M:      Sebastian Hesselbarth <[email protected]>
1886 M:      Gregory Clement <[email protected]>
1887 L:      [email protected] (moderated for non-subscribers)
1888 S:      Maintained
1889 F:      Documentation/devicetree/bindings/soc/dove/
1890 F:      arch/arm/mach-dove/
1891 F:      arch/arm/mach-mv78xx0/
1892 F:      arch/arm/mach-orion5x/
1893 F:      arch/arm/plat-orion/
1894 F:      arch/arm/boot/dts/dove*
1895 F:      arch/arm/boot/dts/orion5x*
1896 T:      git git://git.infradead.org/linux-mvebu.git
1897
1898 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1899 M:      Jason Cooper <[email protected]>
1900 M:      Andrew Lunn <[email protected]>
1901 M:      Gregory Clement <[email protected]>
1902 M:      Sebastian Hesselbarth <[email protected]>
1903 L:      [email protected] (moderated for non-subscribers)
1904 S:      Maintained
1905 F:      arch/arm/boot/dts/armada*
1906 F:      arch/arm/boot/dts/kirkwood*
1907 F:      arch/arm/configs/mvebu_*_defconfig
1908 F:      arch/arm/mach-mvebu/
1909 F:      arch/arm64/boot/dts/marvell/armada*
1910 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1911 F:      drivers/cpufreq/armada-8k-cpufreq.c
1912 F:      drivers/cpufreq/mvebu-cpufreq.c
1913 F:      drivers/irqchip/irq-armada-370-xp.c
1914 F:      drivers/irqchip/irq-mvebu-*
1915 F:      drivers/pinctrl/mvebu/
1916 F:      drivers/rtc/rtc-armada38x.c
1917 T:      git git://git.infradead.org/linux-mvebu.git
1918
1919 ARM/Mediatek RTC DRIVER
1920 M:      Eddie Huang <[email protected]>
1921 M:      Sean Wang <[email protected]>
1922 L:      [email protected] (moderated for non-subscribers)
1923 L:      [email protected] (moderated for non-subscribers)
1924 S:      Maintained
1925 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1926 F:      drivers/rtc/rtc-mt6397.c
1927 F:      drivers/rtc/rtc-mt7622.c
1928
1929 ARM/Mediatek SoC support
1930 M:      Matthias Brugger <[email protected]>
1931 L:      [email protected] (moderated for non-subscribers)
1932 L:      [email protected] (moderated for non-subscribers)
1933 W:      https://mtk.bcnfs.org/
1934 C:      irc://chat.freenode.net/linux-mediatek
1935 S:      Maintained
1936 F:      arch/arm/boot/dts/mt6*
1937 F:      arch/arm/boot/dts/mt7*
1938 F:      arch/arm/boot/dts/mt8*
1939 F:      arch/arm/mach-mediatek/
1940 F:      arch/arm64/boot/dts/mediatek/
1941 F:      drivers/soc/mediatek/
1942 N:      mtk
1943 N:      mt[678]
1944 K:      mediatek
1945
1946 ARM/Mediatek USB3 PHY DRIVER
1947 M:      Chunfeng Yun <[email protected]>
1948 L:      [email protected] (moderated for non-subscribers)
1949 L:      [email protected] (moderated for non-subscribers)
1950 S:      Maintained
1951 F:      drivers/phy/mediatek/
1952 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
1953
1954 ARM/Microchip (AT91) SoC support
1955 M:      Nicolas Ferre <[email protected]>
1956 M:      Alexandre Belloni <[email protected]>
1957 M:      Ludovic Desroches <[email protected]>
1958 L:      [email protected] (moderated for non-subscribers)
1959 W:      http://www.linux4sam.org
1960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
1961 S:      Supported
1962 N:      at91
1963 N:      atmel
1964 F:      arch/arm/mach-at91/
1965 F:      include/soc/at91/
1966 F:      arch/arm/boot/dts/at91*.dts
1967 F:      arch/arm/boot/dts/at91*.dtsi
1968 F:      arch/arm/boot/dts/sama*.dts
1969 F:      arch/arm/boot/dts/sama*.dtsi
1970 F:      arch/arm/include/debug/at91.S
1971 F:      drivers/memory/atmel*
1972 F:      drivers/watchdog/sama5d4_wdt.c
1973 X:      drivers/input/touchscreen/atmel_mxt_ts.c
1974 X:      drivers/net/wireless/atmel/
1975
1976 ARM/MIOA701 MACHINE SUPPORT
1977 M:      Robert Jarzmik <[email protected]>
1978 L:      [email protected] (moderated for non-subscribers)
1979 F:      arch/arm/mach-pxa/mioa701.c
1980 S:      Maintained
1981
1982 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1983 M:      Michael Petchkovsky <[email protected]>
1984 S:      Maintained
1985
1986 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
1987 M:      Linus Walleij <[email protected]>
1988 L:      [email protected] (moderated for non-subscribers)
1989 S:      Maintained
1990 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
1991 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
1992 F:      arch/arm/mach-nomadik/
1993 F:      arch/arm/mach-u300/
1994 F:      arch/arm/mach-ux500/
1995 F:      drivers/soc/ux500/
1996 F:      arch/arm/boot/dts/ste-*
1997 F:      drivers/clk/clk-nomadik.c
1998 F:      drivers/clk/clk-u300.c
1999 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2000 F:      drivers/clocksource/timer-u300.c
2001 F:      drivers/dma/coh901318*
2002 F:      drivers/dma/ste_dma40*
2003 F:      drivers/hwspinlock/u8500_hsem.c
2004 F:      drivers/i2c/busses/i2c-nomadik.c
2005 F:      drivers/i2c/busses/i2c-stu300.c
2006 F:      drivers/mfd/ab3100*
2007 F:      drivers/mfd/ab8500*
2008 F:      drivers/mfd/abx500*
2009 F:      drivers/mfd/dbx500*
2010 F:      drivers/mfd/db8500*
2011 F:      drivers/pinctrl/nomadik/
2012 F:      drivers/pinctrl/pinctrl-coh901*
2013 F:      drivers/pinctrl/pinctrl-u300.c
2014 F:      drivers/rtc/rtc-ab3100.c
2015 F:      drivers/rtc/rtc-ab8500.c
2016 F:      drivers/rtc/rtc-coh901331.c
2017 F:      drivers/rtc/rtc-pl031.c
2018 F:      drivers/watchdog/coh901327_wdt.c
2019 F:      Documentation/devicetree/bindings/arm/ste-*
2020 F:      Documentation/devicetree/bindings/arm/ux500/
2021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2022
2023 ARM/NUVOTON NPCM ARCHITECTURE
2024 M:      Avi Fishman <[email protected]>
2025 M:      Tomer Maimon <[email protected]>
2026 M:      Tali Perry <[email protected]>
2027 R:      Patrick Venture <[email protected]>
2028 R:      Nancy Yuen <[email protected]>
2029 R:      Benjamin Fair <[email protected]>
2030 L:      [email protected] (moderated for non-subscribers)
2031 S:      Supported
2032 F:      arch/arm/mach-npcm/
2033 F:      arch/arm/boot/dts/nuvoton-npcm*
2034 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2035 F:      drivers/*/*npcm*
2036 F:      Documentation/devicetree/bindings/*/*npcm*
2037 F:      Documentation/devicetree/bindings/*/*/*npcm*
2038
2039 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2040 L:      [email protected] (subscribers-only)
2041 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2042 S:      Orphan
2043 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2044 F:      arch/arm/mach-s3c24xx/gta02.h
2045
2046 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2047 M:      Alexander Clouter <[email protected]>
2048 L:      [email protected] (moderated for non-subscribers)
2049 W:      http://www.digriz.org.uk/ts78xx/kernel
2050 S:      Maintained
2051 F:      arch/arm/mach-orion5x/ts78xx-*
2052
2053 ARM/OXNAS platform support
2054 M:      Neil Armstrong <[email protected]>
2055 L:      [email protected] (moderated for non-subscribers)
2056 L:      [email protected] (moderated for non-subscribers)
2057 S:      Maintained
2058 F:      arch/arm/mach-oxnas/
2059 F:      arch/arm/boot/dts/ox8*.dts*
2060 N:      oxnas
2061
2062 ARM/PALM TREO SUPPORT
2063 M:      Tomas Cech <[email protected]>
2064 L:      [email protected]
2065 W:      http://hackndev.com
2066 S:      Maintained
2067 F:      arch/arm/mach-pxa/palmtreo.*
2068
2069 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2070 M:      Marek Vasut <[email protected]>
2071 L:      [email protected]
2072 W:      http://hackndev.com
2073 S:      Maintained
2074 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2075 F:      arch/arm/mach-pxa/palmtx.c
2076 F:      arch/arm/mach-pxa/palmt5.*
2077 F:      arch/arm/mach-pxa/include/mach/palmld.h
2078 F:      arch/arm/mach-pxa/palmld.c
2079 F:      arch/arm/mach-pxa/palmte2.*
2080 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2081 F:      arch/arm/mach-pxa/palmtc.c
2082
2083 ARM/PALMZ72 SUPPORT
2084 M:      Sergey Lapin <[email protected]>
2085 L:      [email protected]
2086 W:      http://hackndev.com
2087 S:      Maintained
2088 F:      arch/arm/mach-pxa/palmz72.*
2089
2090 ARM/PLEB SUPPORT
2091 M:      Peter Chubb <[email protected]>
2092 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2093 S:      Maintained
2094
2095 ARM/PT DIGITAL BOARD PORT
2096 M:      Stefan Eletzhofer <[email protected]>
2097 L:      [email protected] (moderated for non-subscribers)
2098 W:      http://www.armlinux.org.uk/
2099 S:      Maintained
2100
2101 ARM/QUALCOMM SUPPORT
2102 M:      Andy Gross <[email protected]>
2103 L:      [email protected]
2104 S:      Maintained
2105 F:      Documentation/devicetree/bindings/soc/qcom/
2106 F:      Documentation/devicetree/bindings/*/qcom*
2107 F:      arch/arm/boot/dts/qcom-*.dts
2108 F:      arch/arm/boot/dts/qcom-*.dtsi
2109 F:      arch/arm/mach-qcom/
2110 F:      arch/arm64/boot/dts/qcom/
2111 F:      drivers/*/qcom/
2112 F:      drivers/*/qcom*
2113 F:      drivers/*/*/qcom/
2114 F:      drivers/*/*/qcom*
2115 F:      drivers/*/pm8???-*
2116 F:      drivers/bluetooth/btqcomsmd.c
2117 F:      drivers/clocksource/timer-qcom.c
2118 F:      drivers/extcon/extcon-qcom*
2119 F:      drivers/iommu/msm*
2120 F:      drivers/i2c/busses/i2c-qup.c
2121 F:      drivers/i2c/busses/i2c-qcom-geni.c
2122 F:      drivers/mfd/ssbi.c
2123 F:      drivers/mmc/host/mmci_qcom*
2124 F:      drivers/mmc/host/sdhci-msm.c
2125 F:      drivers/pci/controller/dwc/pcie-qcom.c
2126 F:      drivers/phy/qualcomm/
2127 F:      drivers/power/*/msm*
2128 F:      drivers/reset/reset-qcom-*
2129 F:      drivers/scsi/ufs/ufs-qcom.*
2130 F:      drivers/spi/spi-qup.c
2131 F:      drivers/spi/spi-geni-qcom.c
2132 F:      drivers/spi/spi-qcom-qspi.c
2133 F:      drivers/tty/serial/msm_serial.c
2134 F:      drivers/usb/dwc3/dwc3-qcom.c
2135 F:      include/dt-bindings/*/qcom*
2136 F:      include/linux/*/qcom*
2137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2138
2139 ARM/RADISYS ENP2611 MACHINE SUPPORT
2140 M:      Lennert Buytenhek <[email protected]>
2141 L:      [email protected] (moderated for non-subscribers)
2142 S:      Maintained
2143
2144 ARM/RDA MICRO ARCHITECTURE
2145 M:      Manivannan Sadhasivam <[email protected]>
2146 L:      [email protected] (moderated for non-subscribers)
2147 L:      [email protected] (moderated for non-subscribers)
2148 S:      Maintained
2149 F:      arch/arm/boot/dts/rda8810pl-*
2150 F:      drivers/clocksource/timer-rda.c
2151 F:      drivers/irqchip/irq-rda-intc.c
2152 F:      drivers/tty/serial/rda-uart.c
2153 F:      Documentation/devicetree/bindings/arm/rda.yaml
2154 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2155 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2156 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2157
2158 ARM/REALTEK ARCHITECTURE
2159 M:      Andreas Färber <[email protected]>
2160 L:      [email protected] (moderated for non-subscribers)
2161 S:      Maintained
2162 F:      arch/arm64/boot/dts/realtek/
2163 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2164
2165 ARM/RENESAS ARM64 ARCHITECTURE
2166 M:      Simon Horman <[email protected]>
2167 M:      Geert Uytterhoeven <[email protected]>
2168 M:      Magnus Damm <[email protected]>
2169 L:      [email protected]
2170 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
2172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2173 S:      Supported
2174 F:      arch/arm64/boot/dts/renesas/
2175 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2176 F:      drivers/soc/renesas/
2177 F:      include/linux/soc/renesas/
2178
2179 ARM/RISCPC ARCHITECTURE
2180 M:      Russell King <[email protected]>
2181 L:      [email protected] (moderated for non-subscribers)
2182 W:      http://www.armlinux.org.uk/
2183 S:      Maintained
2184 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2185 F:      arch/arm/include/asm/hardware/ioc.h
2186 F:      arch/arm/include/asm/hardware/iomd.h
2187 F:      arch/arm/include/asm/hardware/memc.h
2188 F:      arch/arm/mach-rpc/
2189 F:      drivers/net/ethernet/8390/etherh.c
2190 F:      drivers/net/ethernet/i825xx/ether1*
2191 F:      drivers/net/ethernet/seeq/ether3*
2192 F:      drivers/scsi/arm/
2193
2194 ARM/Rockchip SoC support
2195 M:      Heiko Stuebner <[email protected]>
2196 L:      [email protected] (moderated for non-subscribers)
2197 L:      [email protected]
2198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2199 S:      Maintained
2200 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.txt
2201 F:      arch/arm/boot/dts/rk3*
2202 F:      arch/arm/boot/dts/rv1108*
2203 F:      arch/arm/mach-rockchip/
2204 F:      drivers/clk/rockchip/
2205 F:      drivers/i2c/busses/i2c-rk3x.c
2206 F:      drivers/*/*rockchip*
2207 F:      drivers/*/*/*rockchip*
2208 F:      sound/soc/rockchip/
2209 N:      rockchip
2210
2211 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2212 M:      Kukjin Kim <[email protected]>
2213 M:      Krzysztof Kozlowski <[email protected]>
2214 L:      [email protected] (moderated for non-subscribers)
2215 L:      [email protected] (moderated for non-subscribers)
2216 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2217 S:      Maintained
2218 F:      arch/arm/boot/dts/s3c*
2219 F:      arch/arm/boot/dts/s5p*
2220 F:      arch/arm/boot/dts/exynos*
2221 F:      arch/arm64/boot/dts/exynos/
2222 F:      arch/arm/plat-samsung/
2223 F:      arch/arm/mach-s3c24*/
2224 F:      arch/arm/mach-s3c64xx/
2225 F:      arch/arm/mach-s5p*/
2226 F:      arch/arm/mach-exynos*/
2227 F:      drivers/*/*s3c24*
2228 F:      drivers/*/*/*s3c24*
2229 F:      drivers/*/*s3c64xx*
2230 F:      drivers/*/*s5pv210*
2231 F:      drivers/memory/samsung/
2232 F:      drivers/soc/samsung/
2233 F:      include/linux/soc/samsung/
2234 F:      Documentation/arm/samsung/
2235 F:      Documentation/devicetree/bindings/arm/samsung/
2236 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
2237 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
2238 N:      exynos
2239
2240 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2241 M:      Kyungmin Park <[email protected]>
2242 L:      [email protected] (moderated for non-subscribers)
2243 S:      Maintained
2244 F:      arch/arm/mach-s5pv210/
2245
2246 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2247 M:      Kyungmin Park <[email protected]>
2248 M:      Kamil Debski <[email protected]>
2249 M:      Andrzej Hajda <[email protected]>
2250 L:      [email protected]
2251 L:      [email protected]
2252 S:      Maintained
2253 F:      drivers/media/platform/s5p-g2d/
2254
2255 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2256 M:      Marek Szyprowski <[email protected]>
2257 L:      [email protected] (moderated for non-subscribers)
2258 L:      [email protected]
2259 S:      Maintained
2260 F:      drivers/media/platform/s5p-cec/
2261 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2262
2263 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2264 M:      Andrzej Pietrasiewicz <[email protected]>
2265 M:      Jacek Anaszewski <[email protected]>
2266 M:      Sylwester Nawrocki <[email protected]>
2267 L:      [email protected]
2268 L:      [email protected]
2269 S:      Maintained
2270 F:      drivers/media/platform/s5p-jpeg/
2271
2272 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2273 M:      Kyungmin Park <[email protected]>
2274 M:      Kamil Debski <[email protected]>
2275 M:      Jeongtae Park <[email protected]>
2276 M:      Andrzej Hajda <[email protected]>
2277 L:      [email protected]
2278 L:      [email protected]
2279 S:      Maintained
2280 F:      drivers/media/platform/s5p-mfc/
2281
2282 ARM/SHMOBILE ARM ARCHITECTURE
2283 M:      Simon Horman <[email protected]>
2284 M:      Geert Uytterhoeven <[email protected]>
2285 M:      Magnus Damm <[email protected]>
2286 L:      [email protected]
2287 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
2289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2290 S:      Supported
2291 F:      arch/arm/boot/dts/emev2*
2292 F:      arch/arm/boot/dts/gr-peach*
2293 F:      arch/arm/boot/dts/iwg20d-q7*
2294 F:      arch/arm/boot/dts/r7s*
2295 F:      arch/arm/boot/dts/r8a*
2296 F:      arch/arm/boot/dts/r9a*
2297 F:      arch/arm/boot/dts/sh*
2298 F:      arch/arm/configs/shmobile_defconfig
2299 F:      arch/arm/include/debug/renesas-scif.S
2300 F:      arch/arm/mach-shmobile/
2301 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2302 F:      drivers/soc/renesas/
2303 F:      include/linux/soc/renesas/
2304
2305 ARM/SOCFPGA ARCHITECTURE
2306 M:      Dinh Nguyen <[email protected]>
2307 S:      Maintained
2308 F:      arch/arm/mach-socfpga/
2309 F:      arch/arm/boot/dts/socfpga*
2310 F:      arch/arm/configs/socfpga_defconfig
2311 F:      arch/arm64/boot/dts/altera/
2312 F:      arch/arm64/boot/dts/intel/
2313 W:      http://www.rocketboards.org
2314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2315
2316 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2317 M:      Dinh Nguyen <[email protected]>
2318 S:      Maintained
2319 F:      drivers/clk/socfpga/
2320
2321 ARM/SOCFPGA EDAC SUPPORT
2322 M:      Thor Thayer <[email protected]>
2323 S:      Maintained
2324 F:      drivers/edac/altera_edac.
2325
2326 ARM/SPREADTRUM SoC SUPPORT
2327 M:      Orson Zhai <[email protected]>
2328 M:      Baolin Wang <[email protected]>
2329 M:      Chunyan Zhang <[email protected]>
2330 S:      Maintained
2331 F:      arch/arm64/boot/dts/sprd
2332 N:      sprd
2333
2334 ARM/STI ARCHITECTURE
2335 M:      Patrice Chotard <[email protected]>
2336 L:      [email protected] (moderated for non-subscribers)
2337 W:      http://www.stlinux.com
2338 S:      Maintained
2339 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2340 F:      arch/arm/mach-sti/
2341 F:      arch/arm/boot/dts/sti*
2342 F:      drivers/char/hw_random/st-rng.c
2343 F:      drivers/clocksource/arm_global_timer.c
2344 F:      drivers/clocksource/clksrc_st_lpc.c
2345 F:      drivers/cpufreq/sti-cpufreq.c
2346 F:      drivers/dma/st_fdma*
2347 F:      drivers/i2c/busses/i2c-st.c
2348 F:      drivers/media/rc/st_rc.c
2349 F:      drivers/media/platform/sti/c8sectpfe/
2350 F:      drivers/mmc/host/sdhci-st.c
2351 F:      drivers/phy/st/phy-miphy28lp.c
2352 F:      drivers/phy/st/phy-stih407-usb.c
2353 F:      drivers/pinctrl/pinctrl-st.c
2354 F:      drivers/remoteproc/st_remoteproc.c
2355 F:      drivers/remoteproc/st_slim_rproc.c
2356 F:      drivers/reset/sti/
2357 F:      drivers/rtc/rtc-st-lpc.c
2358 F:      drivers/tty/serial/st-asc.c
2359 F:      drivers/usb/dwc3/dwc3-st.c
2360 F:      drivers/usb/host/ehci-st.c
2361 F:      drivers/usb/host/ohci-st.c
2362 F:      drivers/watchdog/st_lpc_wdt.c
2363 F:      drivers/ata/ahci_st.c
2364 F:      include/linux/remoteproc/st_slim_rproc.h
2365
2366 ARM/STM32 ARCHITECTURE
2367 M:      Maxime Coquelin <[email protected]>
2368 M:      Alexandre Torgue <[email protected]>
2369 L:      [email protected] (moderated for non-subscribers)
2370 L:      [email protected] (moderated for non-subscribers)
2371 S:      Maintained
2372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2373 N:      stm32
2374 N:      stm
2375 F:      arch/arm/boot/dts/stm32*
2376 F:      arch/arm/mach-stm32/
2377 F:      drivers/clocksource/armv7m_systick.c
2378
2379 ARM/Synaptics SoC support
2380 M:      Jisheng Zhang <[email protected]>
2381 M:      Sebastian Hesselbarth <[email protected]>
2382 L:      [email protected] (moderated for non-subscribers)
2383 S:      Maintained
2384 F:      arch/arm/mach-berlin/
2385 F:      arch/arm/boot/dts/berlin*
2386 F:      arch/arm64/boot/dts/synaptics/
2387
2388 ARM/TANGO ARCHITECTURE
2389 M:      Marc Gonzalez <[email protected]>
2390 M:      Mans Rullgard <[email protected]>
2391 L:      [email protected]
2392 S:      Odd Fixes
2393 N:      tango
2394
2395 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2396 M:      Lennert Buytenhek <[email protected]>
2397 L:      [email protected] (moderated for non-subscribers)
2398 S:      Maintained
2399
2400 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2401 M:      Hans Verkuil <[email protected]>
2402 L:      [email protected]
2403 L:      [email protected]
2404 S:      Maintained
2405 F:      drivers/media/platform/tegra-cec/
2406 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2407
2408 ARM/TETON BGA MACHINE SUPPORT
2409 M:      "Mark F. Brown" <[email protected]>
2410 L:      [email protected] (moderated for non-subscribers)
2411 S:      Maintained
2412
2413 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2414 M:      Santosh Shilimkar <[email protected]>
2415 L:      [email protected]
2416 S:      Maintained
2417 F:      drivers/memory/*emif*
2418
2419 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2420 M:      Tero Kristo <[email protected]>
2421 M:      Nishanth Menon <[email protected]>
2422 L:      [email protected] (moderated for non-subscribers)
2423 S:      Supported
2424 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2425 F:      arch/arm64/boot/dts/ti/Makefile
2426 F:      arch/arm64/boot/dts/ti/k3-*
2427 F:      include/dt-bindings/pinctrl/k3.h
2428
2429 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2430 M:      Santosh Shilimkar <[email protected]>
2431 L:      [email protected] (moderated for non-subscribers)
2432 S:      Maintained
2433 F:      arch/arm/mach-keystone/
2434 F:      arch/arm/boot/dts/keystone-*
2435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2436
2437 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2438 M:      Santosh Shilimkar <[email protected]>
2439 L:      [email protected]
2440 S:      Maintained
2441 F:      drivers/clk/keystone/
2442
2443 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2444 M:      Santosh Shilimkar <[email protected]>
2445 L:      [email protected] (moderated for non-subscribers)
2446 L:      [email protected]
2447 S:      Maintained
2448 F:      drivers/clocksource/timer-keystone.c
2449
2450 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2451 M:      Santosh Shilimkar <[email protected]>
2452 L:      [email protected]
2453 S:      Maintained
2454 F:      drivers/power/reset/keystone-reset.c
2455
2456 ARM/THECUS N2100 MACHINE SUPPORT
2457 M:      Lennert Buytenhek <[email protected]>
2458 L:      [email protected] (moderated for non-subscribers)
2459 S:      Maintained
2460
2461 ARM/TOSA MACHINE SUPPORT
2462 M:      Dmitry Eremin-Solenikov <[email protected]>
2463 M:      Dirk Opfer <[email protected]>
2464 S:      Maintained
2465
2466 ARM/UNIPHIER ARCHITECTURE
2467 M:      Masahiro Yamada <[email protected]>
2468 L:      [email protected] (moderated for non-subscribers)
2469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2470 S:      Maintained
2471 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.txt
2472 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2473 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2474 F:      arch/arm/boot/dts/uniphier*
2475 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2476 F:      arch/arm/mach-uniphier/
2477 F:      arch/arm/mm/cache-uniphier.c
2478 F:      arch/arm64/boot/dts/socionext/uniphier*
2479 F:      drivers/bus/uniphier-system-bus.c
2480 F:      drivers/clk/uniphier/
2481 F:      drivers/dma/uniphier-mdmac.c
2482 F:      drivers/gpio/gpio-uniphier.c
2483 F:      drivers/i2c/busses/i2c-uniphier*
2484 F:      drivers/irqchip/irq-uniphier-aidet.c
2485 F:      drivers/mmc/host/uniphier-sd.c
2486 F:      drivers/pinctrl/uniphier/
2487 F:      drivers/reset/reset-uniphier.c
2488 F:      drivers/tty/serial/8250/8250_uniphier.c
2489 N:      uniphier
2490
2491 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2492 M:      Ulf Hansson <[email protected]>
2493 L:      [email protected] (moderated for non-subscribers)
2494 T:      git git://git.linaro.org/people/ulfh/clk.git
2495 S:      Maintained
2496 F:      drivers/clk/ux500/
2497
2498 ARM/VERSATILE EXPRESS PLATFORM
2499 M:      Liviu Dudau <[email protected]>
2500 M:      Sudeep Holla <[email protected]>
2501 M:      Lorenzo Pieralisi <[email protected]>
2502 L:      [email protected] (moderated for non-subscribers)
2503 S:      Maintained
2504 F:      arch/arm/boot/dts/vexpress*
2505 F:      arch/arm64/boot/dts/arm/
2506 F:      arch/arm/mach-vexpress/
2507 F:      */*/vexpress*
2508 F:      */*/*/vexpress*
2509 F:      drivers/clk/versatile/clk-vexpress-osc.c
2510 F:      drivers/clocksource/timer-versatile.c
2511 N:      mps2
2512
2513 ARM/VFP SUPPORT
2514 M:      Russell King <[email protected]>
2515 L:      [email protected] (moderated for non-subscribers)
2516 W:      http://www.armlinux.org.uk/
2517 S:      Maintained
2518 F:      arch/arm/vfp/
2519
2520 ARM/VOIPAC PXA270 SUPPORT
2521 M:      Marek Vasut <[email protected]>
2522 L:      [email protected] (moderated for non-subscribers)
2523 S:      Maintained
2524 F:      arch/arm/mach-pxa/vpac270.c
2525 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2526
2527 ARM/VT8500 ARM ARCHITECTURE
2528 M:      Tony Prisk <[email protected]>
2529 L:      [email protected] (moderated for non-subscribers)
2530 S:      Maintained
2531 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2532 F:      arch/arm/mach-vt8500/
2533 F:      drivers/clocksource/timer-vt8500.c
2534 F:      drivers/i2c/busses/i2c-wmt.c
2535 F:      drivers/mmc/host/wmt-sdmmc.c
2536 F:      drivers/pwm/pwm-vt8500.c
2537 F:      drivers/rtc/rtc-vt8500.c
2538 F:      drivers/tty/serial/vt8500_serial.c
2539 F:      drivers/usb/host/ehci-platform.c
2540 F:      drivers/usb/host/uhci-platform.c
2541 F:      drivers/video/fbdev/vt8500lcdfb.*
2542 F:      drivers/video/fbdev/wm8505fb*
2543 F:      drivers/video/fbdev/wmt_ge_rops.*
2544
2545 ARM/ZIPIT Z2 SUPPORT
2546 M:      Marek Vasut <[email protected]>
2547 L:      [email protected] (moderated for non-subscribers)
2548 S:      Maintained
2549 F:      arch/arm/mach-pxa/z2.c
2550 F:      arch/arm/mach-pxa/include/mach/z2.h
2551
2552 ARM/ZTE ARCHITECTURE
2553 M:      Jun Nie <[email protected]>
2554 M:      Shawn Guo <[email protected]>
2555 L:      [email protected] (moderated for non-subscribers)
2556 S:      Maintained
2557 F:      arch/arm/boot/dts/zx2967*
2558 F:      arch/arm/mach-zx/
2559 F:      arch/arm64/boot/dts/zte/
2560 F:      drivers/clk/zte/
2561 F:      drivers/dma/zx_dma.c
2562 F:      drivers/gpio/gpio-zx.c
2563 F:      drivers/i2c/busses/i2c-zx2967.c
2564 F:      drivers/mmc/host/dw_mmc-zx.*
2565 F:      drivers/pinctrl/zte/
2566 F:      drivers/soc/zte/
2567 F:      drivers/thermal/zx2967_thermal.c
2568 F:      drivers/watchdog/zx2967_wdt.c
2569 F:      Documentation/devicetree/bindings/arm/zte.yaml
2570 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2571 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2572 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2573 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2574 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2575 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2576 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2577 F:      Documentation/devicetree/bindings/soc/zte/
2578 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2579 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2580 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2581 F:      include/dt-bindings/clock/zx2967*.h
2582 F:      include/dt-bindings/soc/zte,*.h
2583 F:      sound/soc/codecs/zx_aud96p22.c
2584 F:      sound/soc/zte/
2585
2586 ARM/ZYNQ ARCHITECTURE
2587 M:      Michal Simek <[email protected]>
2588 L:      [email protected] (moderated for non-subscribers)
2589 W:      http://wiki.xilinx.com
2590 T:      git https://github.com/Xilinx/linux-xlnx.git
2591 S:      Supported
2592 F:      arch/arm/mach-zynq/
2593 F:      drivers/cpuidle/cpuidle-zynq.c
2594 F:      drivers/block/xsysace.c
2595 N:      zynq
2596 N:      xilinx
2597 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2598 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2599 F:      drivers/clocksource/timer-cadence-ttc.c
2600 F:      drivers/i2c/busses/i2c-cadence.c
2601 F:      drivers/mmc/host/sdhci-of-arasan.c
2602 F:      drivers/edac/synopsys_edac.c
2603 F:      drivers/i2c/busses/i2c-xiic.c
2604
2605 ARM64 PORT (AARCH64 ARCHITECTURE)
2606 M:      Catalin Marinas <[email protected]>
2607 M:      Will Deacon <[email protected]>
2608 L:      [email protected] (moderated for non-subscribers)
2609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2610 S:      Maintained
2611 F:      arch/arm64/
2612 X:      arch/arm64/boot/dts/
2613 F:      Documentation/arm64/
2614
2615 AS3645A LED FLASH CONTROLLER DRIVER
2616 M:      Sakari Ailus <[email protected]>
2617 L:      [email protected]
2618 S:      Maintained
2619 F:      drivers/leds/leds-as3645a.c
2620
2621 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2622 M:      Tianshu Qiu <[email protected]>
2623 L:      [email protected]
2624 T:      git git://linuxtv.org/media_tree.git
2625 S:      Maintained
2626 F:      drivers/media/i2c/ak7375.c
2627 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2628
2629 ASAHI KASEI AK8974 DRIVER
2630 M:      Linus Walleij <[email protected]>
2631 L:      [email protected]
2632 W:      http://www.akm.com/
2633 S:      Supported
2634 F:      drivers/iio/magnetometer/ak8974.c
2635
2636 ASC7621 HARDWARE MONITOR DRIVER
2637 M:      George Joseph <[email protected]>
2638 L:      [email protected]
2639 S:      Maintained
2640 F:      Documentation/hwmon/asc7621.rst
2641 F:      drivers/hwmon/asc7621.c
2642
2643 ASPEED PINCTRL DRIVERS
2644 M:      Andrew Jeffery <[email protected]>
2645 L:      [email protected] (moderated for non-subscribers)
2646 L:      [email protected] (moderated for non-subscribers)
2647 L:      [email protected]
2648 S:      Maintained
2649 F:      drivers/pinctrl/aspeed/
2650 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2651
2652 ASPEED VIDEO ENGINE DRIVER
2653 M:      Eddie James <[email protected]>
2654 L:      [email protected]
2655 L:      [email protected] (moderated for non-subscribers)
2656 S:      Maintained
2657 F:      drivers/media/platform/aspeed-video.c
2658 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2659
2660 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2661 M:      Corentin Chary <[email protected]>
2662 L:      [email protected]
2663 L:      [email protected]
2664 W:      http://acpi4asus.sf.net
2665 S:      Maintained
2666 F:      drivers/platform/x86/asus*.c
2667 F:      drivers/platform/x86/eeepc*.c
2668
2669 ASUS WIRELESS RADIO CONTROL DRIVER
2670 M:      João Paulo Rechi Vita <[email protected]>
2671 L:      [email protected]
2672 S:      Maintained
2673 F:      drivers/platform/x86/asus-wireless.c
2674
2675 ASYMMETRIC KEYS
2676 M:      David Howells <[email protected]>
2677 L:      [email protected]
2678 S:      Maintained
2679 F:      Documentation/crypto/asymmetric-keys.txt
2680 F:      include/linux/verification.h
2681 F:      include/crypto/public_key.h
2682 F:      include/crypto/pkcs7.h
2683 F:      crypto/asymmetric_keys/
2684
2685 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2686 R:      Dan Williams <[email protected]>
2687 W:      http://sourceforge.net/projects/xscaleiop
2688 S:      Odd fixes
2689 F:      Documentation/crypto/async-tx-api.txt
2690 F:      crypto/async_tx/
2691 F:      drivers/dma/
2692 F:      include/linux/dmaengine.h
2693 F:      include/linux/async_tx.h
2694
2695 AT24 EEPROM DRIVER
2696 M:      Bartosz Golaszewski <[email protected]>
2697 L:      [email protected]
2698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2699 S:      Maintained
2700 F:      Documentation/devicetree/bindings/eeprom/at24.txt
2701 F:      drivers/misc/eeprom/at24.c
2702
2703 ATA OVER ETHERNET (AOE) DRIVER
2704 M:      "Justin Sanders" <[email protected]>
2705 W:      http://www.openaoe.org/
2706 S:      Supported
2707 F:      Documentation/admin-guide/aoe/
2708 F:      drivers/block/aoe/
2709
2710 ATHEROS 71XX/9XXX GPIO DRIVER
2711 M:      Alban Bedel <[email protected]>
2712 W:      https://github.com/AlbanBedel/linux
2713 T:      git git://github.com/AlbanBedel/linux
2714 S:      Maintained
2715 F:      drivers/gpio/gpio-ath79.c
2716 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2717
2718 ATHEROS 71XX/9XXX USB PHY DRIVER
2719 M:      Alban Bedel <[email protected]>
2720 W:      https://github.com/AlbanBedel/linux
2721 T:      git git://github.com/AlbanBedel/linux
2722 S:      Maintained
2723 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2724 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2725
2726 ATHEROS ATH GENERIC UTILITIES
2727 M:      Kalle Valo <[email protected]>
2728 L:      [email protected]
2729 S:      Supported
2730 F:      drivers/net/wireless/ath/*
2731
2732 ATHEROS ATH5K WIRELESS DRIVER
2733 M:      Jiri Slaby <[email protected]>
2734 M:      Nick Kossifidis <[email protected]>
2735 M:      Luis Chamberlain <[email protected]>
2736 L:      [email protected]
2737 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2738 S:      Maintained
2739 F:      drivers/net/wireless/ath/ath5k/
2740
2741 ATHEROS ATH6KL WIRELESS DRIVER
2742 M:      Kalle Valo <[email protected]>
2743 L:      [email protected]
2744 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2746 S:      Supported
2747 F:      drivers/net/wireless/ath/ath6kl/
2748
2749 ATI_REMOTE2 DRIVER
2750 M:      Ville Syrjala <[email protected]>
2751 S:      Maintained
2752 F:      drivers/input/misc/ati_remote2.c
2753
2754 ATK0110 HWMON DRIVER
2755 M:      Luca Tettamanti <[email protected]>
2756 L:      [email protected]
2757 S:      Maintained
2758 F:      drivers/hwmon/asus_atk0110.c
2759
2760 ATLX ETHERNET DRIVERS
2761 M:      Jay Cliburn <[email protected]>
2762 M:      Chris Snook <[email protected]>
2763 L:      [email protected]
2764 W:      http://sourceforge.net/projects/atl1
2765 W:      http://atl1.sourceforge.net
2766 S:      Maintained
2767 F:      drivers/net/ethernet/atheros/
2768
2769 ATM
2770 M:      Chas Williams <[email protected]>
2771 L:      [email protected] (moderated for non-subscribers)
2772 L:      [email protected]
2773 W:      http://linux-atm.sourceforge.net
2774 S:      Maintained
2775 F:      drivers/atm/
2776 F:      include/linux/atm*
2777 F:      include/uapi/linux/atm*
2778
2779 ATMEL MACB ETHERNET DRIVER
2780 M:      Nicolas Ferre <[email protected]>
2781 S:      Supported
2782 F:      drivers/net/ethernet/cadence/
2783
2784 ATMEL MAXTOUCH DRIVER
2785 M:      Nick Dyer <[email protected]>
2786 T:      git git://github.com/ndyer/linux.git
2787 S:      Maintained
2788 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2789 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2790
2791 ATMEL WIRELESS DRIVER
2792 M:      Simon Kelley <[email protected]>
2793 L:      [email protected]
2794 W:      http://www.thekelleys.org.uk/atmel
2795 W:      http://atmelwlandriver.sourceforge.net/
2796 S:      Maintained
2797 F:      drivers/net/wireless/atmel/atmel*
2798
2799 ATOMIC INFRASTRUCTURE
2800 M:      Will Deacon <[email protected]>
2801 M:      Peter Zijlstra <[email protected]>
2802 R:      Boqun Feng <[email protected]>
2803 L:      [email protected]
2804 S:      Maintained
2805 F:      arch/*/include/asm/atomic*.h
2806 F:      include/*/atomic*.h
2807 F:      scripts/atomic/
2808
2809 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2810 M:      Bradley Grove <[email protected]>
2811 L:      [email protected]
2812 W:      http://www.attotech.com
2813 S:      Supported
2814 F:      drivers/scsi/esas2r
2815
2816 ATUSB IEEE 802.15.4 RADIO DRIVER
2817 M:      Stefan Schmidt <[email protected]>
2818 L:      [email protected]
2819 S:      Maintained
2820 F:      drivers/net/ieee802154/atusb.c
2821 F:      drivers/net/ieee802154/atusb.h
2822 F:      drivers/net/ieee802154/at86rf230.h
2823
2824 AUDIT SUBSYSTEM
2825 M:      Paul Moore <[email protected]>
2826 M:      Eric Paris <[email protected]>
2827 L:      [email protected] (moderated for non-subscribers)
2828 W:      https://github.com/linux-audit
2829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2830 S:      Supported
2831 F:      include/linux/audit.h
2832 F:      include/uapi/linux/audit.h
2833 F:      kernel/audit*
2834
2835 AUXILIARY DISPLAY DRIVERS
2836 M:      Miguel Ojeda Sandonis <[email protected]>
2837 S:      Maintained
2838 F:      drivers/auxdisplay/
2839 F:      include/linux/cfag12864b.h
2840
2841 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2842 M:      Andreas Klinger <[email protected]>
2843 L:      [email protected]
2844 S:      Maintained
2845 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2846 F:      drivers/iio/adc/hx711.c
2847
2848 AX.25 NETWORK LAYER
2849 M:      Ralf Baechle <[email protected]>
2850 L:      [email protected]
2851 W:      http://www.linux-ax25.org/
2852 S:      Maintained
2853 F:      include/uapi/linux/ax25.h
2854 F:      include/net/ax25.h
2855 F:      net/ax25/
2856
2857 AXENTIA ARM DEVICES
2858 M:      Peter Rosin <[email protected]>
2859 L:      [email protected] (moderated for non-subscribers)
2860 S:      Maintained
2861 F:      Documentation/devicetree/bindings/arm/axentia.txt
2862 F:      arch/arm/boot/dts/at91-linea.dtsi
2863 F:      arch/arm/boot/dts/at91-natte.dtsi
2864 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2865 F:      arch/arm/boot/dts/at91-tse850-3.dts
2866
2867 AXENTIA ASOC DRIVERS
2868 M:      Peter Rosin <[email protected]>
2869 L:      [email protected] (moderated for non-subscribers)
2870 S:      Maintained
2871 F:      Documentation/devicetree/bindings/sound/axentia,*
2872 F:      sound/soc/atmel/tse850-pcm5142.c
2873
2874 AXXIA I2C CONTROLLER
2875 M:      Krzysztof Adamski <[email protected]>
2876 L:      [email protected]
2877 S:      Maintained
2878 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2879 F:      drivers/i2c/busses/i2c-axxia.c
2880
2881 AZ6007 DVB DRIVER
2882 M:      Mauro Carvalho Chehab <[email protected]>
2883 L:      [email protected]
2884 W:      https://linuxtv.org
2885 T:      git git://linuxtv.org/media_tree.git
2886 S:      Maintained
2887 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2888
2889 AZTECH FM RADIO RECEIVER DRIVER
2890 M:      Hans Verkuil <[email protected]>
2891 L:      [email protected]
2892 T:      git git://linuxtv.org/media_tree.git
2893 W:      https://linuxtv.org
2894 S:      Maintained
2895 F:      drivers/media/radio/radio-aztech*
2896
2897 B43 WIRELESS DRIVER
2898 L:      [email protected]
2899 L:      [email protected]
2900 W:      http://wireless.kernel.org/en/users/Drivers/b43
2901 S:      Odd Fixes
2902 F:      drivers/net/wireless/broadcom/b43/
2903
2904 B43LEGACY WIRELESS DRIVER
2905 M:      Larry Finger <[email protected]>
2906 L:      [email protected]
2907 L:      [email protected]
2908 W:      http://wireless.kernel.org/en/users/Drivers/b43
2909 S:      Maintained
2910 F:      drivers/net/wireless/broadcom/b43legacy/
2911
2912 BACKLIGHT CLASS/SUBSYSTEM
2913 M:      Lee Jones <[email protected]>
2914 M:      Daniel Thompson <[email protected]>
2915 M:      Jingoo Han <[email protected]>
2916 L:      [email protected]
2917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2918 S:      Maintained
2919 F:      drivers/video/backlight/
2920 F:      include/linux/backlight.h
2921 F:      include/linux/pwm_backlight.h
2922 F:      Documentation/devicetree/bindings/leds/backlight
2923
2924 BATMAN ADVANCED
2925 M:      Marek Lindner <[email protected]>
2926 M:      Simon Wunderlich <[email protected]>
2927 M:      Antonio Quartulli <[email protected]>
2928 M:      Sven Eckelmann <[email protected]>
2929 L:      [email protected] (moderated for non-subscribers)
2930 W:      https://www.open-mesh.org/
2931 B:      https://www.open-mesh.org/projects/batman-adv/issues
2932 C:      irc://chat.freenode.net/batman
2933 Q:      https://patchwork.open-mesh.org/project/batman/list/
2934 T:      git https://git.open-mesh.org/linux-merge.git
2935 S:      Maintained
2936 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
2937 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
2938 F:      Documentation/networking/batman-adv.rst
2939 F:      include/uapi/linux/batadv_packet.h
2940 F:      include/uapi/linux/batman_adv.h
2941 F:      net/batman-adv/
2942
2943 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2944 M:      Thomas Sailer <[email protected]>
2945 L:      [email protected]
2946 W:      http://www.baycom.org/~tom/ham/ham.html
2947 S:      Maintained
2948 F:      drivers/net/hamradio/baycom*
2949
2950 BCACHE (BLOCK LAYER CACHE)
2951 M:      Coly Li <[email protected]>
2952 M:      Kent Overstreet <[email protected]>
2953 L:      [email protected]
2954 W:      http://bcache.evilpiepirate.org
2955 C:      irc://irc.oftc.net/bcache
2956 S:      Maintained
2957 F:      drivers/md/bcache/
2958
2959 BDISP ST MEDIA DRIVER
2960 M:      Fabien Dessenne <[email protected]>
2961 L:      [email protected]
2962 T:      git git://linuxtv.org/media_tree.git
2963 W:      https://linuxtv.org
2964 S:      Supported
2965 F:      drivers/media/platform/sti/bdisp
2966
2967 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2968 M:      Dariusz Marcinkiewicz <[email protected]>
2969 L:      [email protected]
2970 S:      Maintained
2971 F:      drivers/net/ethernet/ec_bhf.c
2972
2973 BEFS FILE SYSTEM
2974 M:      Luis de Bethencourt <[email protected]>
2975 M:      Salah Triki <[email protected]>
2976 S:      Maintained
2977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2978 F:      Documentation/filesystems/befs.txt
2979 F:      fs/befs/
2980
2981 BFQ I/O SCHEDULER
2982 M:      Paolo Valente <[email protected]>
2983 M:      Jens Axboe <[email protected]>
2984 L:      [email protected]
2985 S:      Maintained
2986 F:      block/bfq-*
2987 F:      Documentation/block/bfq-iosched.rst
2988
2989 BFS FILE SYSTEM
2990 M:      "Tigran A. Aivazian" <[email protected]>
2991 S:      Maintained
2992 F:      Documentation/filesystems/bfs.txt
2993 F:      fs/bfs/
2994 F:      include/uapi/linux/bfs_fs.h
2995
2996 BLINKM RGB LED DRIVER
2997 M:      Jan-Simon Moeller <[email protected]>
2998 S:      Maintained
2999 F:      drivers/leds/leds-blinkm.c
3000
3001 BLOCK LAYER
3002 M:      Jens Axboe <[email protected]>
3003 L:      [email protected]
3004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3005 S:      Maintained
3006 F:      block/
3007 F:      drivers/block/
3008 F:      kernel/trace/blktrace.c
3009 F:      lib/sbitmap.c
3010
3011 BLOCK2MTD DRIVER
3012 M:      Joern Engel <[email protected]>
3013 L:      [email protected]
3014 S:      Maintained
3015 F:      drivers/mtd/devices/block2mtd.c
3016
3017 BLUETOOTH DRIVERS
3018 M:      Marcel Holtmann <[email protected]>
3019 M:      Johan Hedberg <[email protected]>
3020 L:      [email protected]
3021 W:      http://www.bluez.org/
3022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3024 S:      Maintained
3025 F:      drivers/bluetooth/
3026
3027 BLUETOOTH SUBSYSTEM
3028 M:      Marcel Holtmann <[email protected]>
3029 M:      Johan Hedberg <[email protected]>
3030 L:      [email protected]
3031 W:      http://www.bluez.org/
3032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3034 S:      Maintained
3035 F:      net/bluetooth/
3036 F:      include/net/bluetooth/
3037
3038 BONDING DRIVER
3039 M:      Jay Vosburgh <[email protected]>
3040 M:      Veaceslav Falico <[email protected]>
3041 M:      Andy Gospodarek <[email protected]>
3042 L:      [email protected]
3043 W:      http://sourceforge.net/projects/bonding/
3044 S:      Supported
3045 F:      drivers/net/bonding/
3046 F:      include/uapi/linux/if_bonding.h
3047
3048 BPF (Safe dynamic programs and tools)
3049 M:      Alexei Starovoitov <[email protected]>
3050 M:      Daniel Borkmann <[email protected]>
3051 R:      Martin KaFai Lau <[email protected]>
3052 R:      Song Liu <[email protected]>
3053 R:      Yonghong Song <[email protected]>
3054 L:      [email protected]
3055 L:      [email protected]
3056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3058 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3059 S:      Supported
3060 F:      arch/*/net/*
3061 F:      Documentation/networking/filter.txt
3062 F:      Documentation/bpf/
3063 F:      include/linux/bpf*
3064 F:      include/linux/filter.h
3065 F:      include/trace/events/xdp.h
3066 F:      include/uapi/linux/bpf*
3067 F:      include/uapi/linux/filter.h
3068 F:      kernel/bpf/
3069 F:      kernel/trace/bpf_trace.c
3070 F:      lib/test_bpf.c
3071 F:      net/bpf/
3072 F:      net/core/filter.c
3073 F:      net/sched/act_bpf.c
3074 F:      net/sched/cls_bpf.c
3075 F:      samples/bpf/
3076 F:      tools/bpf/
3077 F:      tools/lib/bpf/
3078 F:      tools/testing/selftests/bpf/
3079 K:      bpf
3080 N:      bpf
3081
3082 BPF JIT for ARM
3083 M:      Shubham Bansal <[email protected]>
3084 L:      [email protected]
3085 L:      [email protected]
3086 S:      Maintained
3087 F:      arch/arm/net/
3088
3089 BPF JIT for ARM64
3090 M:      Daniel Borkmann <[email protected]>
3091 M:      Alexei Starovoitov <[email protected]>
3092 M:      Zi Shen Lim <[email protected]>
3093 L:      [email protected]
3094 L:      [email protected]
3095 S:      Supported
3096 F:      arch/arm64/net/
3097
3098 BPF JIT for MIPS (32-BIT AND 64-BIT)
3099 M:      Paul Burton <[email protected]>
3100 L:      [email protected]
3101 L:      [email protected]
3102 S:      Maintained
3103 F:      arch/mips/net/
3104
3105 BPF JIT for NFP NICs
3106 M:      Jakub Kicinski <[email protected]>
3107 L:      [email protected]
3108 L:      [email protected]
3109 S:      Supported
3110 F:      drivers/net/ethernet/netronome/nfp/bpf/
3111
3112 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3113 M:      Naveen N. Rao <[email protected]>
3114 M:      Sandipan Das <[email protected]>
3115 L:      [email protected]
3116 L:      [email protected]
3117 S:      Maintained
3118 F:      arch/powerpc/net/
3119
3120 BPF JIT for RISC-V (RV64G)
3121 M:      Björn Töpel <[email protected]>
3122 L:      [email protected]
3123 S:      Maintained
3124 F:      arch/riscv/net/
3125
3126 BPF JIT for S390
3127 M:      Ilya Leoshkevich <[email protected]>
3128 M:      Heiko Carstens <[email protected]>
3129 M:      Vasily Gorbik <[email protected]>
3130 L:      [email protected]
3131 L:      [email protected]
3132 S:      Maintained
3133 F:      arch/s390/net/
3134 X:      arch/s390/net/pnet.c
3135
3136 BPF JIT for SPARC (32-BIT AND 64-BIT)
3137 M:      David S. Miller <[email protected]>
3138 L:      [email protected]
3139 L:      [email protected]
3140 S:      Maintained
3141 F:      arch/sparc/net/
3142
3143 BPF JIT for X86 32-BIT
3144 M:      Wang YanQing <[email protected]>
3145 L:      [email protected]
3146 L:      [email protected]
3147 S:      Maintained
3148 F:      arch/x86/net/bpf_jit_comp32.c
3149
3150 BPF JIT for X86 64-BIT
3151 M:      Alexei Starovoitov <[email protected]>
3152 M:      Daniel Borkmann <[email protected]>
3153 L:      [email protected]
3154 L:      [email protected]
3155 S:      Supported
3156 F:      arch/x86/net/
3157 X:      arch/x86/net/bpf_jit_comp32.c
3158
3159 BROADCOM B44 10/100 ETHERNET DRIVER
3160 M:      Michael Chan <[email protected]>
3161 L:      [email protected]
3162 S:      Supported
3163 F:      drivers/net/ethernet/broadcom/b44.*
3164
3165 BROADCOM B53 ETHERNET SWITCH DRIVER
3166 M:      Florian Fainelli <[email protected]>
3167 L:      [email protected]
3168 L:      [email protected] (subscribers-only)
3169 S:      Supported
3170 F:      drivers/net/dsa/b53/*
3171 F:      include/linux/platform_data/b53.h
3172
3173 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3174 M:      Florian Fainelli <[email protected]>
3175 M:      Ray Jui <[email protected]>
3176 M:      Scott Branden <[email protected]>
3177 M:      [email protected]
3178 T:      git git://github.com/broadcom/mach-bcm
3179 S:      Maintained
3180 N:      bcm281*
3181 N:      bcm113*
3182 N:      bcm216*
3183 N:      kona
3184 F:      arch/arm/mach-bcm/
3185
3186 BROADCOM BCM2835 ARM ARCHITECTURE
3187 M:      Eric Anholt <[email protected]>
3188 M:      Stefan Wahren <[email protected]>
3189 L:      [email protected]
3190 L:      [email protected] (moderated for non-subscribers)
3191 L:      [email protected] (moderated for non-subscribers)
3192 T:      git git://github.com/anholt/linux
3193 S:      Maintained
3194 N:      bcm2835
3195 F:      drivers/staging/vc04_services
3196
3197 BROADCOM BCM47XX MIPS ARCHITECTURE
3198 M:      Hauke Mehrtens <[email protected]>
3199 M:      Rafał Miłecki <[email protected]>
3200 L:      [email protected]
3201 S:      Maintained
3202 F:      Documentation/devicetree/bindings/mips/brcm/
3203 F:      arch/mips/bcm47xx/*
3204 F:      arch/mips/include/asm/mach-bcm47xx/*
3205
3206 BROADCOM BCM5301X ARM ARCHITECTURE
3207 M:      Hauke Mehrtens <[email protected]>
3208 M:      Rafał Miłecki <[email protected]>
3209 M:      [email protected]
3210 L:      [email protected]
3211 S:      Maintained
3212 F:      arch/arm/mach-bcm/bcm_5301x.c
3213 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3214 F:      arch/arm/boot/dts/bcm470*
3215 F:      arch/arm/boot/dts/bcm953012*
3216
3217 BROADCOM BCM53573 ARM ARCHITECTURE
3218 M:      Rafał Miłecki <[email protected]>
3219 L:      [email protected]
3220 L:      [email protected]
3221 S:      Maintained
3222 F:      arch/arm/boot/dts/bcm53573*
3223 F:      arch/arm/boot/dts/bcm47189*
3224
3225 BROADCOM BCM63XX ARM ARCHITECTURE
3226 M:      Florian Fainelli <[email protected]>
3227 M:      [email protected]
3228 L:      [email protected] (moderated for non-subscribers)
3229 T:      git git://github.com/broadcom/stblinux.git
3230 S:      Maintained
3231 N:      bcm63xx
3232
3233 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3234 M:      Kevin Cernekee <[email protected]>
3235 L:      [email protected]
3236 S:      Maintained
3237 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3238
3239 BROADCOM BCM7XXX ARM ARCHITECTURE
3240 M:      Brian Norris <[email protected]>
3241 M:      Gregory Fong <[email protected]>
3242 M:      Florian Fainelli <[email protected]>
3243 M:      [email protected]
3244 L:      [email protected] (moderated for non-subscribers)
3245 T:      git git://github.com/broadcom/stblinux.git
3246 S:      Maintained
3247 F:      arch/arm/mach-bcm/*brcmstb*
3248 F:      arch/arm/boot/dts/bcm7*.dts*
3249 F:      drivers/bus/brcmstb_gisb.c
3250 F:      arch/arm/mm/cache-b15-rac.c
3251 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3252 N:      brcmstb
3253
3254 BROADCOM BMIPS CPUFREQ DRIVER
3255 M:      Markus Mayer <[email protected]>
3256 M:      [email protected]
3257 L:      [email protected]
3258 S:      Maintained
3259 F:      drivers/cpufreq/bmips-cpufreq.c
3260
3261 BROADCOM BMIPS MIPS ARCHITECTURE
3262 M:      Kevin Cernekee <[email protected]>
3263 M:      Florian Fainelli <[email protected]>
3264 L:      [email protected]
3265 L:      [email protected]
3266 T:      git git://github.com/broadcom/stblinux.git
3267 S:      Maintained
3268 F:      arch/mips/bmips/*
3269 F:      arch/mips/include/asm/mach-bmips/*
3270 F:      arch/mips/kernel/*bmips*
3271 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3272 F:      drivers/irqchip/irq-bcm63*
3273 F:      drivers/irqchip/irq-bcm7*
3274 F:      drivers/irqchip/irq-brcmstb*
3275 F:      include/linux/bcm963xx_nvram.h
3276 F:      include/linux/bcm963xx_tag.h
3277
3278 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3279 M:      Rasesh Mody <[email protected]>
3280 M:      [email protected]
3281 L:      [email protected]
3282 S:      Supported
3283 F:      drivers/net/ethernet/broadcom/bnx2.*
3284 F:      drivers/net/ethernet/broadcom/bnx2_*
3285
3286 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3287 M:      [email protected]
3288 L:      [email protected]
3289 S:      Supported
3290 F:      drivers/scsi/bnx2fc/
3291
3292 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3293 M:      [email protected]
3294 L:      [email protected]
3295 S:      Supported
3296 F:      drivers/scsi/bnx2i/
3297
3298 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3299 M:      Ariel Elior <[email protected]>
3300 M:      Sudarsana Kalluru <[email protected]>
3301 M:      [email protected]
3302 L:      [email protected]
3303 S:      Supported
3304 F:      drivers/net/ethernet/broadcom/bnx2x/
3305
3306 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3307 M:      Michael Chan <[email protected]>
3308 L:      [email protected]
3309 S:      Supported
3310 F:      drivers/net/ethernet/broadcom/bnxt/
3311
3312 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3313 M:      Arend van Spriel <[email protected]>
3314 M:      Franky Lin <[email protected]>
3315 M:      Hante Meuleman <[email protected]>
3316 M:      Chi-Hsien Lin <[email protected]>
3317 M:      Wright Feng <[email protected]>
3318 L:      [email protected]
3319 L:      [email protected]
3320 L:      [email protected]
3321 S:      Supported
3322 F:      drivers/net/wireless/broadcom/brcm80211/
3323
3324 BROADCOM BRCMSTB GPIO DRIVER
3325 M:      Gregory Fong <[email protected]>
3326 L:      [email protected]
3327 S:      Supported
3328 F:      drivers/gpio/gpio-brcmstb.c
3329 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3330
3331 BROADCOM BRCMSTB I2C DRIVER
3332 M:      Kamal Dasu <[email protected]>
3333 L:      [email protected]
3334 L:      [email protected]
3335 S:      Supported
3336 F:      drivers/i2c/busses/i2c-brcmstb.c
3337 F:      Documentation/devicetree/bindings/i2c/i2c-brcmstb.txt
3338
3339 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3340 M:      Al Cooper <[email protected]>
3341 L:      [email protected]
3342 L:      [email protected]
3343 S:      Maintained
3344 F:      drivers/phy/broadcom/phy-brcm-usb*
3345
3346 BROADCOM GENET ETHERNET DRIVER
3347 M:      Doug Berger <[email protected]>
3348 M:      Florian Fainelli <[email protected]>
3349 L:      [email protected]
3350 L:      [email protected]
3351 S:      Supported
3352 F:      drivers/net/ethernet/broadcom/genet/
3353
3354 BROADCOM IPROC ARM ARCHITECTURE
3355 M:      Ray Jui <[email protected]>
3356 M:      Scott Branden <[email protected]>
3357 M:      [email protected]
3358 L:      [email protected] (moderated for non-subscribers)
3359 T:      git git://github.com/broadcom/cygnus-linux.git
3360 S:      Maintained
3361 N:      iproc
3362 N:      cygnus
3363 N:      bcm[-_]nsp
3364 N:      bcm9113*
3365 N:      bcm9583*
3366 N:      bcm9585*
3367 N:      bcm9586*
3368 N:      bcm988312
3369 N:      bcm113*
3370 N:      bcm583*
3371 N:      bcm585*
3372 N:      bcm586*
3373 N:      bcm88312
3374 N:      hr2
3375 N:      stingray
3376 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3377 F:      arch/arm64/boot/dts/broadcom/stingray/*
3378 F:      drivers/clk/bcm/clk-ns*
3379 F:      drivers/clk/bcm/clk-sr*
3380 F:      drivers/pinctrl/bcm/pinctrl-ns*
3381 F:      include/dt-bindings/clock/bcm-sr*
3382
3383 BROADCOM KONA GPIO DRIVER
3384 M:      Ray Jui <[email protected]>
3385 L:      [email protected]
3386 S:      Supported
3387 F:      drivers/gpio/gpio-bcm-kona.c
3388 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3389
3390 BROADCOM NETXTREME-E ROCE DRIVER
3391 M:      Selvin Xavier <[email protected]>
3392 M:      Devesh Sharma <[email protected]>
3393 M:      Somnath Kotur <[email protected]>
3394 M:      Sriharsha Basavapatna <[email protected]>
3395 L:      [email protected]
3396 W:      http://www.broadcom.com
3397 S:      Supported
3398 F:      drivers/infiniband/hw/bnxt_re/
3399 F:      include/uapi/rdma/bnxt_re-abi.h
3400
3401 BROADCOM NVRAM DRIVER
3402 M:      Rafał Miłecki <[email protected]>
3403 L:      [email protected]
3404 S:      Maintained
3405 F:      drivers/firmware/broadcom/*
3406
3407 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3408 M:      Rafał Miłecki <[email protected]>
3409 L:      [email protected]
3410 S:      Maintained
3411 F:      drivers/bcma/
3412 F:      include/linux/bcma/
3413
3414 BROADCOM STB AVS CPUFREQ DRIVER
3415 M:      Markus Mayer <[email protected]>
3416 M:      [email protected]
3417 L:      [email protected]
3418 S:      Maintained
3419 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3420 F:      drivers/cpufreq/brcmstb*
3421
3422 BROADCOM STB AVS TMON DRIVER
3423 M:      Markus Mayer <[email protected]>
3424 M:      [email protected]
3425 L:      [email protected]
3426 S:      Maintained
3427 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3428 F:      drivers/thermal/broadcom/brcmstb*
3429
3430 BROADCOM STB NAND FLASH DRIVER
3431 M:      Brian Norris <[email protected]>
3432 M:      Kamal Dasu <[email protected]>
3433 L:      [email protected]
3434 L:      [email protected]
3435 S:      Maintained
3436 F:      drivers/mtd/nand/raw/brcmnand/
3437
3438 BROADCOM STB DPFE DRIVER
3439 M:      Markus Mayer <[email protected]>
3440 M:      [email protected]
3441 L:      [email protected] (moderated for non-subscribers)
3442 S:      Maintained
3443 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3444 F:      drivers/memory/brcmstb_dpfe.c
3445
3446 BROADCOM SPI DRIVER
3447 M:      Kamal Dasu <[email protected]>
3448 M:      [email protected]
3449 S:      Maintained
3450 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3451 F:      drivers/spi/spi-bcm-qspi.*
3452 F:      drivers/spi/spi-brcmstb-qspi.c
3453 F:      drivers/spi/spi-iproc-qspi.c
3454
3455 BROADCOM SYSTEMPORT ETHERNET DRIVER
3456 M:      Florian Fainelli <[email protected]>
3457 L:      [email protected]
3458 L:      [email protected]
3459 S:      Supported
3460 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3461
3462 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3463 M:      Siva Reddy Kallam <[email protected]>
3464 M:      Prashant Sreedharan <[email protected]>
3465 M:      Michael Chan <[email protected]>
3466 L:      [email protected]
3467 S:      Supported
3468 F:      drivers/net/ethernet/broadcom/tg3.*
3469
3470 BROCADE BFA FC SCSI DRIVER
3471 M:      Anil Gurumurthy <[email protected]>
3472 M:      Sudarsana Kalluru <[email protected]>
3473 L:      [email protected]
3474 S:      Supported
3475 F:      drivers/scsi/bfa/
3476
3477 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3478 M:      Rasesh Mody <[email protected]>
3479 M:      Sudarsana Kalluru <[email protected]>
3480 M:      [email protected]
3481 L:      [email protected]
3482 S:      Supported
3483 F:      drivers/net/ethernet/brocade/bna/
3484
3485 BSG (block layer generic sg v4 driver)
3486 M:      FUJITA Tomonori <[email protected]>
3487 L:      [email protected]
3488 S:      Supported
3489 F:      block/bsg.c
3490 F:      include/linux/bsg.h
3491 F:      include/uapi/linux/bsg.h
3492
3493 BT87X AUDIO DRIVER
3494 M:      Clemens Ladisch <[email protected]>
3495 L:      [email protected] (moderated for non-subscribers)
3496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3497 S:      Maintained
3498 F:      Documentation/sound/cards/bt87x.rst
3499 F:      sound/pci/bt87x.c
3500
3501 BT8XXGPIO DRIVER
3502 M:      Michael Buesch <[email protected]>
3503 W:      http://bu3sch.de/btgpio.php
3504 S:      Maintained
3505 F:      drivers/gpio/gpio-bt8xx.c
3506
3507 BTRFS FILE SYSTEM
3508 M:      Chris Mason <[email protected]>
3509 M:      Josef Bacik <[email protected]>
3510 M:      David Sterba <[email protected]>
3511 L:      [email protected]
3512 W:      http://btrfs.wiki.kernel.org/
3513 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3515 S:      Maintained
3516 F:      Documentation/filesystems/btrfs.txt
3517 F:      fs/btrfs/
3518 F:      include/linux/btrfs*
3519 F:      include/uapi/linux/btrfs*
3520
3521 BTTV VIDEO4LINUX DRIVER
3522 M:      Mauro Carvalho Chehab <[email protected]>
3523 L:      [email protected]
3524 W:      https://linuxtv.org
3525 T:      git git://linuxtv.org/media_tree.git
3526 S:      Odd fixes
3527 F:      Documentation/media/v4l-drivers/bttv*
3528 F:      drivers/media/pci/bt8xx/bttv*
3529
3530 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3531 M:      Chanwoo Choi <[email protected]>
3532 L:      [email protected]
3533 L:      [email protected]
3534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3535 S:      Maintained
3536 F:      drivers/devfreq/exynos-bus.c
3537 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3538
3539 BUSLOGIC SCSI DRIVER
3540 M:      Khalid Aziz <[email protected]>
3541 L:      [email protected]
3542 S:      Maintained
3543 F:      drivers/scsi/BusLogic.*
3544 F:      drivers/scsi/FlashPoint.*
3545
3546 C-MEDIA CMI8788 DRIVER
3547 M:      Clemens Ladisch <[email protected]>
3548 L:      [email protected] (moderated for non-subscribers)
3549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3550 S:      Maintained
3551 F:      sound/pci/oxygen/
3552
3553 C-SKY ARCHITECTURE
3554 M:      Guo Ren <[email protected]>
3555 T:      git https://github.com/c-sky/csky-linux.git
3556 S:      Supported
3557 F:      arch/csky/
3558 F:      Documentation/devicetree/bindings/csky/
3559 F:      drivers/irqchip/irq-csky-*
3560 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3561 F:      drivers/clocksource/timer-gx6605s.c
3562 F:      drivers/clocksource/timer-mp-csky.c
3563 F:      Documentation/devicetree/bindings/timer/csky,*
3564 K:      csky
3565 N:      csky
3566
3567 C6X ARCHITECTURE
3568 M:      Mark Salter <[email protected]>
3569 M:      Aurelien Jacquiot <[email protected]>
3570 L:      [email protected]
3571 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3572 S:      Maintained
3573 F:      arch/c6x/
3574
3575 CA8210 IEEE-802.15.4 RADIO DRIVER
3576 M:      Harry Morris <[email protected]>
3577 L:      [email protected]
3578 W:      https://github.com/Cascoda/ca8210-linux.git
3579 S:      Maintained
3580 F:      drivers/net/ieee802154/ca8210.c
3581 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3582
3583 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3584 M:      David Howells <[email protected]>
3585 L:      [email protected] (moderated for non-subscribers)
3586 S:      Supported
3587 F:      Documentation/filesystems/caching/cachefiles.txt
3588 F:      fs/cachefiles/
3589
3590 CADENCE MIPI-CSI2 BRIDGES
3591 M:      Maxime Ripard <[email protected]>
3592 L:      [email protected]
3593 S:      Maintained
3594 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3595 F:      drivers/media/platform/cadence/cdns-csi2*
3596
3597 CADET FM/AM RADIO RECEIVER DRIVER
3598 M:      Hans Verkuil <[email protected]>
3599 L:      [email protected]
3600 T:      git git://linuxtv.org/media_tree.git
3601 W:      https://linuxtv.org
3602 S:      Maintained
3603 F:      drivers/media/radio/radio-cadet*
3604
3605 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3606 M:      Jonathan Corbet <[email protected]>
3607 L:      [email protected]
3608 T:      git git://linuxtv.org/media_tree.git
3609 S:      Maintained
3610 F:      Documentation/media/v4l-drivers/cafe_ccic*
3611 F:      drivers/media/platform/marvell-ccic/
3612
3613 CAIF NETWORK LAYER
3614 L:      [email protected]
3615 S:      Orphan
3616 F:      Documentation/networking/caif/
3617 F:      drivers/net/caif/
3618 F:      include/uapi/linux/caif/
3619 F:      include/net/caif/
3620 F:      net/caif/
3621
3622 CAKE QDISC
3623 M:      Toke Høiland-Jørgensen <[email protected]>
3624 L:      [email protected] (moderated for non-subscribers)
3625 S:      Maintained
3626 F:      net/sched/sch_cake.c
3627
3628 CALGARY x86-64 IOMMU
3629 M:      Muli Ben-Yehuda <[email protected]>
3630 M:      Jon Mason <[email protected]>
3631 L:      [email protected]
3632 S:      Maintained
3633 F:      arch/x86/kernel/pci-calgary_64.c
3634 F:      arch/x86/kernel/tce_64.c
3635 F:      arch/x86/include/asm/calgary.h
3636 F:      arch/x86/include/asm/tce.h
3637
3638 CAN NETWORK DRIVERS
3639 M:      Wolfgang Grandegger <[email protected]>
3640 M:      Marc Kleine-Budde <[email protected]>
3641 L:      [email protected]
3642 W:      https://github.com/linux-can
3643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3645 S:      Maintained
3646 F:      Documentation/devicetree/bindings/net/can/
3647 F:      drivers/net/can/
3648 F:      include/linux/can/dev.h
3649 F:      include/linux/can/led.h
3650 F:      include/linux/can/rx-offload.h
3651 F:      include/linux/can/platform/
3652 F:      include/uapi/linux/can/error.h
3653 F:      include/uapi/linux/can/netlink.h
3654 F:      include/uapi/linux/can/vxcan.h
3655
3656 CAN NETWORK LAYER
3657 M:      Oliver Hartkopp <[email protected]>
3658 M:      Marc Kleine-Budde <[email protected]>
3659 L:      [email protected]
3660 W:      https://github.com/linux-can
3661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3663 S:      Maintained
3664 F:      Documentation/networking/can.rst
3665 F:      net/can/
3666 F:      include/linux/can/core.h
3667 F:      include/linux/can/skb.h
3668 F:      include/net/netns/can.h
3669 F:      include/uapi/linux/can.h
3670 F:      include/uapi/linux/can/bcm.h
3671 F:      include/uapi/linux/can/raw.h
3672 F:      include/uapi/linux/can/gw.h
3673
3674 CAN-J1939 NETWORK LAYER
3675 M:      Robin van der Gracht <[email protected]>
3676 M:      Oleksij Rempel <[email protected]>
3677 R:      Pengutronix Kernel Team <[email protected]>
3678 L:      [email protected]
3679 S:      Maintained
3680 F:      Documentation/networking/j1939.txt
3681 F:      net/can/j1939/
3682 F:      include/uapi/linux/can/j1939.h
3683
3684 CAPABILITIES
3685 M:      Serge Hallyn <[email protected]>
3686 L:      [email protected]
3687 S:      Supported
3688 F:      include/linux/capability.h
3689 F:      include/uapi/linux/capability.h
3690 F:      security/commoncap.c
3691 F:      kernel/capability.c
3692
3693 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3694 M:      Kevin Tsai <[email protected]>
3695 S:      Maintained
3696 F:      drivers/iio/light/cm*
3697
3698 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3699 M:      Christian Lamparter <[email protected]>
3700 L:      [email protected]
3701 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3702 S:      Maintained
3703 F:      drivers/net/wireless/ath/carl9170/
3704
3705 CAVIUM I2C DRIVER
3706 M:      Jan Glauber <[email protected]>
3707 M:      David Daney <[email protected]>
3708 W:      http://www.cavium.com
3709 S:      Supported
3710 F:      drivers/i2c/busses/i2c-octeon*
3711 F:      drivers/i2c/busses/i2c-thunderx*
3712
3713 CAVIUM LIQUIDIO NETWORK DRIVER
3714 M:      Derek Chickles <[email protected]>
3715 M:      Satanand Burla <[email protected]>
3716 M:      Felix Manlunas <[email protected]>
3717 L:      [email protected]
3718 W:      http://www.cavium.com
3719 S:      Supported
3720 F:      drivers/net/ethernet/cavium/liquidio/
3721
3722 CAVIUM MMC DRIVER
3723 M:      Jan Glauber <[email protected]>
3724 M:      David Daney <[email protected]>
3725 M:      Steven J. Hill <[email protected]>
3726 W:      http://www.cavium.com
3727 S:      Supported
3728 F:      drivers/mmc/host/cavium*
3729
3730 CAVIUM OCTEON-TX CRYPTO DRIVER
3731 M:      George Cherian <[email protected]>
3732 L:      [email protected]
3733 W:      http://www.cavium.com
3734 S:      Supported
3735 F:      drivers/crypto/cavium/cpt/
3736
3737 CAVIUM THUNDERX2 ARM64 SOC
3738 M:      Robert Richter <[email protected]>
3739 M:      Jayachandran C <[email protected]>
3740 L:      [email protected] (moderated for non-subscribers)
3741 S:      Maintained
3742 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3743 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3744
3745 CC2520 IEEE-802.15.4 RADIO DRIVER
3746 M:      Varka Bhadram <[email protected]>
3747 L:      [email protected]
3748 S:      Maintained
3749 F:      drivers/net/ieee802154/cc2520.c
3750 F:      include/linux/spi/cc2520.h
3751 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3752
3753 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3754 M:      Gilad Ben-Yossef <[email protected]>
3755 L:      [email protected]
3756 S:      Supported
3757 F:      drivers/crypto/ccree/
3758 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3759
3760 CEC FRAMEWORK
3761 M:      Hans Verkuil <[email protected]>
3762 L:      [email protected]
3763 T:      git git://linuxtv.org/media_tree.git
3764 W:      http://linuxtv.org
3765 S:      Supported
3766 F:      Documentation/media/kapi/cec-core.rst
3767 F:      Documentation/media/uapi/cec
3768 F:      drivers/media/cec/
3769 F:      drivers/media/rc/keymaps/rc-cec.c
3770 F:      include/media/cec.h
3771 F:      include/media/cec-notifier.h
3772 F:      include/uapi/linux/cec.h
3773 F:      include/uapi/linux/cec-funcs.h
3774 F:      Documentation/devicetree/bindings/media/cec.txt
3775 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3776
3777 CEC GPIO DRIVER
3778 M:      Hans Verkuil <[email protected]>
3779 L:      [email protected]
3780 T:      git git://linuxtv.org/media_tree.git
3781 W:      http://linuxtv.org
3782 S:      Supported
3783 F:      drivers/media/platform/cec-gpio/
3784 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3785
3786 CELL BROADBAND ENGINE ARCHITECTURE
3787 M:      Arnd Bergmann <[email protected]>
3788 L:      [email protected]
3789 W:      http://www.ibm.com/developerworks/power/cell/
3790 S:      Supported
3791 F:      arch/powerpc/include/asm/cell*.h
3792 F:      arch/powerpc/include/asm/spu*.h
3793 F:      arch/powerpc/include/uapi/asm/spu*.h
3794 F:      arch/powerpc/oprofile/*cell*
3795 F:      arch/powerpc/platforms/cell/
3796
3797 CEPH COMMON CODE (LIBCEPH)
3798 M:      Ilya Dryomov <[email protected]>
3799 M:      Jeff Layton <[email protected]>
3800 M:      Sage Weil <[email protected]>
3801 L:      [email protected]
3802 W:      http://ceph.com/
3803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3804 T:      git git://github.com/ceph/ceph-client.git
3805 S:      Supported
3806 F:      net/ceph/
3807 F:      include/linux/ceph/
3808 F:      include/linux/crush/
3809
3810 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3811 M:      Jeff Layton <[email protected]>
3812 M:      Sage Weil <[email protected]>
3813 M:      Ilya Dryomov <[email protected]>
3814 L:      [email protected]
3815 W:      http://ceph.com/
3816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3817 T:      git git://github.com/ceph/ceph-client.git
3818 S:      Supported
3819 F:      Documentation/filesystems/ceph.txt
3820 F:      fs/ceph/
3821
3822 CERTIFICATE HANDLING:
3823 M:      David Howells <[email protected]>
3824 M:      David Woodhouse <[email protected]>
3825 L:      [email protected]
3826 S:      Maintained
3827 F:      Documentation/admin-guide/module-signing.rst
3828 F:      certs/
3829 F:      scripts/sign-file.c
3830 F:      scripts/extract-cert.c
3831
3832 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3833 L:      [email protected]
3834 S:      Obsolete
3835 F:      drivers/staging/wusbcore/
3836
3837 CFAG12864B LCD DRIVER
3838 M:      Miguel Ojeda Sandonis <[email protected]>
3839 S:      Maintained
3840 F:      drivers/auxdisplay/cfag12864b.c
3841 F:      include/linux/cfag12864b.h
3842
3843 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3844 M:      Miguel Ojeda Sandonis <[email protected]>
3845 S:      Maintained
3846 F:      drivers/auxdisplay/cfag12864bfb.c
3847 F:      include/linux/cfag12864b.h
3848
3849 802.11 (including CFG80211/NL80211)
3850 M:      Johannes Berg <[email protected]>
3851 L:      [email protected]
3852 W:      http://wireless.kernel.org/
3853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3855 S:      Maintained
3856 F:      net/wireless/
3857 F:      include/uapi/linux/nl80211.h
3858 F:      include/linux/ieee80211.h
3859 F:      include/net/wext.h
3860 F:      include/net/cfg80211.h
3861 F:      include/net/iw_handler.h
3862 F:      include/net/ieee80211_radiotap.h
3863 F:      Documentation/driver-api/80211/cfg80211.rst
3864 F:      Documentation/networking/regulatory.txt
3865
3866 CHAR and MISC DRIVERS
3867 M:      Arnd Bergmann <[email protected]>
3868 M:      Greg Kroah-Hartman <[email protected]>
3869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3870 S:      Supported
3871 F:      drivers/char/
3872 F:      drivers/misc/
3873 F:      include/linux/miscdevice.h
3874
3875 CHECKPATCH
3876 M:      Andy Whitcroft <[email protected]>
3877 M:      Joe Perches <[email protected]>
3878 S:      Maintained
3879 F:      scripts/checkpatch.pl
3880
3881 CHINESE DOCUMENTATION
3882 M:      Harry Wei <[email protected]>
3883 M:      Alex Shi <[email protected]>
3884 L:      [email protected] (subscribers-only)
3885 S:      Maintained
3886 F:      Documentation/translations/zh_CN/
3887
3888 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3889 M:      Peter Chen <[email protected]>
3890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3891 L:      [email protected]
3892 S:      Maintained
3893 F:      drivers/usb/chipidea/
3894
3895 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3896 M:      Hans de Goede <[email protected]>
3897 L:      [email protected]
3898 S:      Maintained
3899 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3900 F:      drivers/input/touchscreen/chipone_icn8318.c
3901
3902 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
3903 M:      Hans de Goede <[email protected]>
3904 L:      [email protected]
3905 S:      Maintained
3906 F:      drivers/input/touchscreen/chipone_icn8505.c
3907
3908 CHROME HARDWARE PLATFORM SUPPORT
3909 M:      Benson Leung <[email protected]>
3910 M:      Enric Balletbo i Serra <[email protected]>
3911 S:      Maintained
3912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
3913 F:      drivers/platform/chrome/
3914
3915 CHROMEOS EC SUBDRIVERS
3916 M:      Benson Leung <[email protected]>
3917 M:      Enric Balletbo i Serra <[email protected]>
3918 R:      Guenter Roeck <[email protected]>
3919 S:      Maintained
3920 N:      cros_ec
3921 N:      cros-ec
3922 F:      drivers/power/supply/cros_usbpd-charger.c
3923
3924 CHROMEOS EC CODEC DRIVER
3925 M:      Cheng-Yi Chiang <[email protected]>
3926 S:      Maintained
3927 R:      Enric Balletbo i Serra <[email protected]>
3928 R:      Guenter Roeck <[email protected]>
3929 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.txt
3930 F:      sound/soc/codecs/cros_ec_codec.*
3931
3932 CIRRUS LOGIC AUDIO CODEC DRIVERS
3933 M:      Brian Austin <[email protected]>
3934 M:      Paul Handrigan <[email protected]>
3935 L:      [email protected] (moderated for non-subscribers)
3936 S:      Maintained
3937 F:      sound/soc/codecs/cs*
3938
3939 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3940 M:      Hartley Sweeten <[email protected]>
3941 L:      [email protected]
3942 S:      Maintained
3943 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3944
3945 CIRRUS LOGIC LOCHNAGAR DRIVER
3946 M:      Charles Keepax <[email protected]>
3947 M:      Richard Fitzgerald <[email protected]>
3948 L:      [email protected]
3949 S:      Supported
3950 F:      drivers/clk/clk-lochnagar.c
3951 F:      drivers/hwmon/lochnagar-hwmon.c
3952 F:      drivers/mfd/lochnagar-i2c.c
3953 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
3954 F:      drivers/regulator/lochnagar-regulator.c
3955 F:      sound/soc/codecs/lochnagar-sc.c
3956 F:      include/dt-bindings/clk/lochnagar.h
3957 F:      include/dt-bindings/pinctrl/lochnagar.h
3958 F:      include/linux/mfd/lochnagar*
3959 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
3960 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
3961 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
3962 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
3963 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
3964 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
3965 F:      Documentation/hwmon/lochnagar.rst
3966
3967 CISCO FCOE HBA DRIVER
3968 M:      Satish Kharat <[email protected]>
3969 M:      Sesidhar Baddela <[email protected]>
3970 M:      Karan Tilak Kumar <[email protected]>
3971 L:      [email protected]
3972 S:      Supported
3973 F:      drivers/scsi/fnic/
3974
3975 CISCO SCSI HBA DRIVER
3976 M:      Karan Tilak Kumar <[email protected]>
3977 M:      Sesidhar Baddela <[email protected]>
3978 L:      [email protected]
3979 S:      Supported
3980 F:      drivers/scsi/snic/
3981
3982 CISCO VIC ETHERNET NIC DRIVER
3983 M:      Christian Benvenuti <[email protected]>
3984 M:      Govindarajulu Varadarajan <[email protected]>
3985 M:      Parvi Kaustubhi <[email protected]>
3986 S:      Supported
3987 F:      drivers/net/ethernet/cisco/enic/
3988
3989 CISCO VIC LOW LATENCY NIC DRIVER
3990 M:      Christian Benvenuti <[email protected]>
3991 M:      Nelson Escobar <[email protected]>
3992 M:      Parvi Kaustubhi <[email protected]>
3993 S:      Supported
3994 F:      drivers/infiniband/hw/usnic/
3995
3996 CIRRUS LOGIC MADERA CODEC DRIVERS
3997 M:      Charles Keepax <[email protected]>
3998 M:      Richard Fitzgerald <[email protected]>
3999 L:      [email protected] (moderated for non-subscribers)
4000 L:      [email protected]
4001 T:      git https://github.com/CirrusLogic/linux-drivers.git
4002 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4003 S:      Supported
4004 F:      Documentation/devicetree/bindings/mfd/madera.txt
4005 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4006 F:      Documentation/devicetree/bindings/sound/madera.txt
4007 F:      include/dt-bindings/sound/madera*
4008 F:      include/linux/irqchip/irq-madera*
4009 F:      include/linux/mfd/madera/*
4010 F:      include/sound/madera*
4011 F:      drivers/gpio/gpio-madera*
4012 F:      drivers/irqchip/irq-madera*
4013 F:      drivers/mfd/madera*
4014 F:      drivers/mfd/cs47l*
4015 F:      drivers/pinctrl/cirrus/*
4016 F:      sound/soc/codecs/cs47l*
4017 F:      sound/soc/codecs/madera*
4018
4019 CLANG-FORMAT FILE
4020 M:      Miguel Ojeda <[email protected]>
4021 S:      Maintained
4022 F:      .clang-format
4023
4024 CLANG/LLVM BUILD SUPPORT
4025 L:      [email protected]
4026 W:      https://clangbuiltlinux.github.io/
4027 B:      https://github.com/ClangBuiltLinux/linux/issues
4028 C:      irc://chat.freenode.net/clangbuiltlinux
4029 S:      Supported
4030 K:      \b(?i:clang|llvm)\b
4031
4032 CLEANCACHE API
4033 M:      Konrad Rzeszutek Wilk <[email protected]>
4034 L:      [email protected]
4035 S:      Maintained
4036 F:      mm/cleancache.c
4037 F:      include/linux/cleancache.h
4038
4039 CLK API
4040 M:      Russell King <[email protected]>
4041 L:      [email protected]
4042 S:      Maintained
4043 F:      include/linux/clk.h
4044
4045 CLOCKSOURCE, CLOCKEVENT DRIVERS
4046 M:      Daniel Lezcano <[email protected]>
4047 M:      Thomas Gleixner <[email protected]>
4048 L:      [email protected]
4049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4050 S:      Supported
4051 F:      drivers/clocksource/
4052 F:      Documentation/devicetree/bindings/timer/
4053
4054 CMPC ACPI DRIVER
4055 M:      Thadeu Lima de Souza Cascardo <[email protected]>
4056 M:      Daniel Oliveira Nascimento <[email protected]>
4057 L:      [email protected]
4058 S:      Supported
4059 F:      drivers/platform/x86/classmate-laptop.c
4060
4061 COBALT MEDIA DRIVER
4062 M:      Hans Verkuil <[email protected]>
4063 L:      [email protected]
4064 T:      git git://linuxtv.org/media_tree.git
4065 W:      https://linuxtv.org
4066 S:      Supported
4067 F:      drivers/media/pci/cobalt/
4068
4069 COCCINELLE/Semantic Patches (SmPL)
4070 M:      Julia Lawall <[email protected]>
4071 M:      Gilles Muller <[email protected]>
4072 M:      Nicolas Palix <[email protected]>
4073 M:      Michal Marek <[email protected]>
4074 L:      [email protected] (moderated for non-subscribers)
4075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4076 W:      http://coccinelle.lip6.fr/
4077 S:      Supported
4078 F:      Documentation/dev-tools/coccinelle.rst
4079 F:      scripts/coccinelle/
4080 F:      scripts/coccicheck
4081
4082 CODA FILE SYSTEM
4083 M:      Jan Harkes <[email protected]>
4084 M:      [email protected]
4085 L:      [email protected]
4086 W:      http://www.coda.cs.cmu.edu/
4087 S:      Maintained
4088 F:      Documentation/filesystems/coda.txt
4089 F:      fs/coda/
4090 F:      include/linux/coda*.h
4091 F:      include/uapi/linux/coda*.h
4092
4093 CODA V4L2 MEM2MEM DRIVER
4094 M:      Philipp Zabel <[email protected]>
4095 L:      [email protected]
4096 S:      Maintained
4097 F:      Documentation/devicetree/bindings/media/coda.txt
4098 F:      drivers/media/platform/coda/
4099
4100 CODE OF CONDUCT
4101 M:      Greg Kroah-Hartman <[email protected]>
4102 S:      Supported
4103 F:      Documentation/process/code-of-conduct.rst
4104 F:      Documentation/process/code-of-conduct-interpretation.rst
4105
4106 COMMON CLK FRAMEWORK
4107 M:      Michael Turquette <[email protected]>
4108 M:      Stephen Boyd <[email protected]>
4109 L:      [email protected]
4110 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4112 S:      Maintained
4113 F:      Documentation/devicetree/bindings/clock/
4114 F:      drivers/clk/
4115 X:      drivers/clk/clkdev.c
4116 F:      include/linux/clk-pr*
4117 F:      include/linux/clk/
4118 F:      include/linux/of_clk.h
4119
4120 COMMON INTERNET FILE SYSTEM (CIFS)
4121 M:      Steve French <[email protected]>
4122 L:      [email protected]
4123 L:      [email protected] (moderated for non-subscribers)
4124 W:      http://linux-cifs.samba.org/
4125 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4126 S:      Supported
4127 F:      Documentation/admin-guide/cifs/
4128 F:      fs/cifs/
4129
4130 COMPACTPCI HOTPLUG CORE
4131 M:      Scott Murray <[email protected]>
4132 L:      [email protected]
4133 S:      Maintained
4134 F:      drivers/pci/hotplug/cpci_hotplug*
4135
4136 COMPACTPCI HOTPLUG GENERIC DRIVER
4137 M:      Scott Murray <[email protected]>
4138 L:      [email protected]
4139 S:      Maintained
4140 F:      drivers/pci/hotplug/cpcihp_generic.c
4141
4142 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4143 M:      Scott Murray <[email protected]>
4144 L:      [email protected]
4145 S:      Maintained
4146 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4147
4148 COMPAL LAPTOP SUPPORT
4149 M:      Cezary Jackiewicz <[email protected]>
4150 L:      [email protected]
4151 S:      Maintained
4152 F:      drivers/platform/x86/compal-laptop.c
4153
4154 COMPILER ATTRIBUTES
4155 M:      Miguel Ojeda <[email protected]>
4156 S:      Maintained
4157 F:      include/linux/compiler_attributes.h
4158
4159 CONEXANT ACCESSRUNNER USB DRIVER
4160 L:      [email protected]
4161 W:      http://accessrunner.sourceforge.net/
4162 S:      Orphan
4163 F:      drivers/usb/atm/cxacru.c
4164
4165 CONFIGFS
4166 M:      Joel Becker <[email protected]>
4167 M:      Christoph Hellwig <[email protected]>
4168 T:      git git://git.infradead.org/users/hch/configfs.git
4169 S:      Supported
4170 F:      fs/configfs/
4171 F:      include/linux/configfs.h
4172
4173 CONNECTOR
4174 M:      Evgeniy Polyakov <[email protected]>
4175 L:      [email protected]
4176 S:      Maintained
4177 F:      drivers/connector/
4178
4179 CONTROL GROUP (CGROUP)
4180 M:      Tejun Heo <[email protected]>
4181 M:      Li Zefan <[email protected]>
4182 M:      Johannes Weiner <[email protected]>
4183 L:      [email protected]
4184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4185 S:      Maintained
4186 F:      Documentation/admin-guide/cgroup-v2.rst
4187 F:      Documentation/admin-guide/cgroup-v1/
4188 F:      include/linux/cgroup*
4189 F:      kernel/cgroup/
4190
4191 CONTROL GROUP - CPUSET
4192 M:      Li Zefan <[email protected]>
4193 L:      [email protected]
4194 W:      http://www.bullopensource.org/cpuset/
4195 W:      http://oss.sgi.com/projects/cpusets/
4196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4197 S:      Maintained
4198 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4199 F:      include/linux/cpuset.h
4200 F:      kernel/cgroup/cpuset.c
4201
4202 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4203 M:      Johannes Weiner <[email protected]>
4204 M:      Michal Hocko <[email protected]>
4205 M:      Vladimir Davydov <[email protected]>
4206 L:      [email protected]
4207 L:      [email protected]
4208 S:      Maintained
4209 F:      mm/memcontrol.c
4210 F:      mm/swap_cgroup.c
4211
4212 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4213 M:      Tejun Heo <[email protected]>
4214 M:      Jens Axboe <[email protected]>
4215 L:      [email protected]
4216 L:      [email protected]
4217 T:      git git://git.kernel.dk/linux-block
4218 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4219 F:      block/blk-cgroup.c
4220 F:      include/linux/blk-cgroup.h
4221 F:      block/blk-throttle.c
4222 F:      block/blk-iolatency.c
4223 F:      block/bfq-cgroup.c
4224
4225 CORETEMP HARDWARE MONITORING DRIVER
4226 M:      Fenghua Yu <[email protected]>
4227 L:      [email protected]
4228 S:      Maintained
4229 F:      Documentation/hwmon/coretemp.rst
4230 F:      drivers/hwmon/coretemp.c
4231
4232 COSA/SRP SYNC SERIAL DRIVER
4233 M:      Jan "Yenya" Kasprzak <[email protected]>
4234 W:      http://www.fi.muni.cz/~kas/cosa/
4235 S:      Maintained
4236 F:      drivers/net/wan/cosa*
4237
4238 COUNTER SUBSYSTEM
4239 M:      William Breathitt Gray <[email protected]>
4240 L:      [email protected]
4241 S:      Maintained
4242 F:      Documentation/ABI/testing/sysfs-bus-counter*
4243 F:      Documentation/driver-api/generic-counter.rst
4244 F:      drivers/counter/
4245 F:      include/linux/counter.h
4246 F:      include/linux/counter_enum.h
4247
4248 CPMAC ETHERNET DRIVER
4249 M:      Florian Fainelli <[email protected]>
4250 L:      [email protected]
4251 S:      Maintained
4252 F:      drivers/net/ethernet/ti/cpmac.c
4253
4254 CPU FREQUENCY SCALING FRAMEWORK
4255 M:      "Rafael J. Wysocki" <[email protected]>
4256 M:      Viresh Kumar <[email protected]>
4257 L:      [email protected]
4258 S:      Maintained
4259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4261 B:      https://bugzilla.kernel.org
4262 F:      Documentation/admin-guide/pm/cpufreq.rst
4263 F:      Documentation/admin-guide/pm/intel_pstate.rst
4264 F:      Documentation/cpu-freq/
4265 F:      Documentation/devicetree/bindings/cpufreq/
4266 F:      drivers/cpufreq/
4267 F:      kernel/sched/cpufreq*.c
4268 F:      include/linux/cpufreq.h
4269 F:      include/linux/sched/cpufreq.h
4270 F:      tools/testing/selftests/cpufreq/
4271
4272 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
4273 M:      Viresh Kumar <[email protected]>
4274 M:      Sudeep Holla <[email protected]>
4275 L:      [email protected]
4276 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4277 S:      Maintained
4278 F:      drivers/cpufreq/arm_big_little.h
4279 F:      drivers/cpufreq/arm_big_little.c
4280
4281 CPU POWER MONITORING SUBSYSTEM
4282 M:      Thomas Renninger <[email protected]>
4283 M:      Shuah Khan <[email protected]>
4284 M:      Shuah Khan <[email protected]>
4285 L:      [email protected]
4286 S:      Maintained
4287 F:      tools/power/cpupower/
4288
4289 CPUID/MSR DRIVER
4290 M:      "H. Peter Anvin" <[email protected]>
4291 S:      Maintained
4292 F:      arch/x86/kernel/cpuid.c
4293 F:      arch/x86/kernel/msr.c
4294
4295 CPUIDLE DRIVER - ARM BIG LITTLE
4296 M:      Lorenzo Pieralisi <[email protected]>
4297 M:      Daniel Lezcano <[email protected]>
4298 L:      [email protected]
4299 L:      [email protected]
4300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4301 S:      Maintained
4302 F:      drivers/cpuidle/cpuidle-big_little.c
4303
4304 CPUIDLE DRIVER - ARM EXYNOS
4305 M:      Bartlomiej Zolnierkiewicz <[email protected]>
4306 M:      Daniel Lezcano <[email protected]>
4307 M:      Kukjin Kim <[email protected]>
4308 L:      [email protected]
4309 L:      [email protected]
4310 S:      Supported
4311 F:      drivers/cpuidle/cpuidle-exynos.c
4312 F:      arch/arm/mach-exynos/pm.c
4313
4314 CPUIDLE DRIVER - ARM PSCI
4315 M:      Lorenzo Pieralisi <[email protected]>
4316 M:      Sudeep Holla <[email protected]>
4317 L:      [email protected]
4318 L:      [email protected]
4319 S:      Supported
4320 F:      drivers/cpuidle/cpuidle-psci.c
4321
4322 CPU IDLE TIME MANAGEMENT FRAMEWORK
4323 M:      "Rafael J. Wysocki" <[email protected]>
4324 M:      Daniel Lezcano <[email protected]>
4325 L:      [email protected]
4326 S:      Maintained
4327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4328 B:      https://bugzilla.kernel.org
4329 F:      Documentation/admin-guide/pm/cpuidle.rst
4330 F:      Documentation/driver-api/pm/cpuidle.rst
4331 F:      drivers/cpuidle/*
4332 F:      include/linux/cpuidle.h
4333
4334 CRAMFS FILESYSTEM
4335 M:      Nicolas Pitre <[email protected]>
4336 S:      Maintained
4337 F:      Documentation/filesystems/cramfs.txt
4338 F:      fs/cramfs/
4339
4340 CRYPTO API
4341 M:      Herbert Xu <[email protected]>
4342 M:      "David S. Miller" <[email protected]>
4343 L:      [email protected]
4344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4346 S:      Maintained
4347 F:      Documentation/crypto/
4348 F:      Documentation/devicetree/bindings/crypto/
4349 F:      arch/*/crypto/
4350 F:      crypto/
4351 F:      drivers/crypto/
4352 F:      include/crypto/
4353 F:      include/linux/crypto*
4354 F:      lib/crypto/
4355
4356 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4357 M:      Neil Horman <[email protected]>
4358 L:      [email protected]
4359 S:      Maintained
4360 F:      crypto/ansi_cprng.c
4361 F:      crypto/rng.c
4362
4363 CS3308 MEDIA DRIVER
4364 M:      Hans Verkuil <[email protected]>
4365 L:      [email protected]
4366 T:      git git://linuxtv.org/media_tree.git
4367 W:      http://linuxtv.org
4368 S:      Odd Fixes
4369 F:      drivers/media/i2c/cs3308.c
4370
4371 CS5535 Audio ALSA driver
4372 M:      Jaya Kumar <[email protected]>
4373 S:      Maintained
4374 F:      sound/pci/cs5535audio/
4375
4376 CSI DRIVERS FOR ALLWINNER V3s
4377 M:      Yong Deng <[email protected]>
4378 L:      [email protected]
4379 T:      git git://linuxtv.org/media_tree.git
4380 S:      Maintained
4381 F:      drivers/media/platform/sunxi/sun6i-csi/
4382 F:      Documentation/devicetree/bindings/media/sun6i-csi.txt
4383
4384 CW1200 WLAN driver
4385 M:      Solomon Peachy <[email protected]>
4386 S:      Maintained
4387 F:      drivers/net/wireless/st/cw1200/
4388
4389 CX18 VIDEO4LINUX DRIVER
4390 M:      Andy Walls <[email protected]>
4391 L:      [email protected] (subscribers-only)
4392 L:      [email protected]
4393 T:      git git://linuxtv.org/media_tree.git
4394 W:      https://linuxtv.org
4395 W:      http://www.ivtvdriver.org/index.php/Cx18
4396 S:      Maintained
4397 F:      Documentation/media/v4l-drivers/cx18*
4398 F:      drivers/media/pci/cx18/
4399 F:      include/uapi/linux/ivtv*
4400
4401 CX2341X MPEG ENCODER HELPER MODULE
4402 M:      Hans Verkuil <[email protected]>
4403 L:      [email protected]
4404 T:      git git://linuxtv.org/media_tree.git
4405 W:      https://linuxtv.org
4406 S:      Maintained
4407 F:      drivers/media/common/cx2341x*
4408 F:      include/media/drv-intf/cx2341x.h
4409
4410 CX24120 MEDIA DRIVER
4411 M:      Jemma Denson <[email protected]>
4412 M:      Patrick Boettcher <[email protected]>
4413 L:      [email protected]
4414 W:      https://linuxtv.org
4415 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4416 S:      Maintained
4417 F:      drivers/media/dvb-frontends/cx24120*
4418
4419 CX88 VIDEO4LINUX DRIVER
4420 M:      Mauro Carvalho Chehab <[email protected]>
4421 L:      [email protected]
4422 W:      https://linuxtv.org
4423 T:      git git://linuxtv.org/media_tree.git
4424 S:      Odd fixes
4425 F:      Documentation/media/v4l-drivers/cx88*
4426 F:      drivers/media/pci/cx88/
4427
4428 CXD2820R MEDIA DRIVER
4429 M:      Antti Palosaari <[email protected]>
4430 L:      [email protected]
4431 W:      https://linuxtv.org
4432 W:      http://palosaari.fi/linux/
4433 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4434 T:      git git://linuxtv.org/anttip/media_tree.git
4435 S:      Maintained
4436 F:      drivers/media/dvb-frontends/cxd2820r*
4437
4438 CXGB3 ETHERNET DRIVER (CXGB3)
4439 M:      Vishal Kulkarni <[email protected]>
4440 L:      [email protected]
4441 W:      http://www.chelsio.com
4442 S:      Supported
4443 F:      drivers/net/ethernet/chelsio/cxgb3/
4444
4445 CXGB3 ISCSI DRIVER (CXGB3I)
4446 M:      Karen Xie <[email protected]>
4447 L:      [email protected]
4448 W:      http://www.chelsio.com
4449 S:      Supported
4450 F:      drivers/scsi/cxgbi/cxgb3i
4451
4452 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
4453 M:      Potnuri Bharat Teja <[email protected]>
4454 L:      [email protected]
4455 W:      http://www.openfabrics.org
4456 S:      Supported
4457 F:      drivers/infiniband/hw/cxgb3/
4458 F:      include/uapi/rdma/cxgb3-abi.h
4459
4460 CXGB4 CRYPTO DRIVER (chcr)
4461 M:      Atul Gupta <[email protected]>
4462 L:      [email protected]
4463 W:      http://www.chelsio.com
4464 S:      Supported
4465 F:      drivers/crypto/chelsio
4466
4467 CXGB4 ETHERNET DRIVER (CXGB4)
4468 M:      Vishal Kulkarni <[email protected]>
4469 L:      [email protected]
4470 W:      http://www.chelsio.com
4471 S:      Supported
4472 F:      drivers/net/ethernet/chelsio/cxgb4/
4473
4474 CXGB4 ISCSI DRIVER (CXGB4I)
4475 M:      Karen Xie <[email protected]>
4476 L:      [email protected]
4477 W:      http://www.chelsio.com
4478 S:      Supported
4479 F:      drivers/scsi/cxgbi/cxgb4i
4480
4481 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4482 M:      Potnuri Bharat Teja <[email protected]>
4483 L:      [email protected]
4484 W:      http://www.openfabrics.org
4485 S:      Supported
4486 F:      drivers/infiniband/hw/cxgb4/
4487 F:      include/uapi/rdma/cxgb4-abi.h
4488
4489 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4490 M:      Casey Leedom <[email protected]>
4491 L:      [email protected]
4492 W:      http://www.chelsio.com
4493 S:      Supported
4494 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4495
4496 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4497 M:      Frederic Barrat <[email protected]>
4498 M:      Andrew Donnellan <[email protected]>
4499 L:      [email protected]
4500 S:      Supported
4501 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4502 F:      drivers/misc/cxl/
4503 F:      include/misc/cxl*
4504 F:      include/uapi/misc/cxl.h
4505 F:      Documentation/powerpc/cxl.rst
4506 F:      Documentation/ABI/testing/sysfs-class-cxl
4507
4508 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4509 M:      Manoj N. Kumar <[email protected]>
4510 M:      Matthew R. Ochs <[email protected]>
4511 M:      Uma Krishnan <[email protected]>
4512 L:      [email protected]
4513 S:      Supported
4514 F:      drivers/scsi/cxlflash/
4515 F:      include/uapi/scsi/cxlflash_ioctl.h
4516 F:      Documentation/powerpc/cxlflash.rst
4517
4518 CYBERPRO FB DRIVER
4519 M:      Russell King <[email protected]>
4520 L:      [email protected] (moderated for non-subscribers)
4521 W:      http://www.armlinux.org.uk/
4522 S:      Maintained
4523 F:      drivers/video/fbdev/cyber2000fb.*
4524
4525 CYCLADES ASYNC MUX DRIVER
4526 W:      http://www.cyclades.com/
4527 S:      Orphan
4528 F:      drivers/tty/cyclades.c
4529 F:      include/linux/cyclades.h
4530 F:      include/uapi/linux/cyclades.h
4531
4532 CYCLADES PC300 DRIVER
4533 W:      http://www.cyclades.com/
4534 S:      Orphan
4535 F:      drivers/net/wan/pc300*
4536
4537 CYPRESS_FIRMWARE MEDIA DRIVER
4538 M:      Antti Palosaari <[email protected]>
4539 L:      [email protected]
4540 W:      https://linuxtv.org
4541 W:      http://palosaari.fi/linux/
4542 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4543 T:      git git://linuxtv.org/anttip/media_tree.git
4544 S:      Maintained
4545 F:      drivers/media/common/cypress_firmware*
4546
4547 CYTTSP TOUCHSCREEN DRIVER
4548 M:      Ferruh Yigit <[email protected]>
4549 L:      [email protected]
4550 S:      Supported
4551 F:      drivers/input/touchscreen/cyttsp*
4552 F:      include/linux/input/cyttsp.h
4553
4554 D-LINK DIR-685 TOUCHKEYS DRIVER
4555 M:      Linus Walleij <[email protected]>
4556 L:      [email protected]
4557 S:      Supported
4558 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4559
4560 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4561 M:      Joshua Kinard <[email protected]>
4562 S:      Maintained
4563 F:      drivers/rtc/rtc-ds1685.c
4564 F:      include/linux/rtc/ds1685.h
4565
4566 DAMA SLAVE for AX.25
4567 M:      Joerg Reuter <[email protected]>
4568 W:      http://yaina.de/jreuter/
4569 W:      http://www.qsl.net/dl1bke/
4570 L:      [email protected]
4571 S:      Maintained
4572 F:      net/ax25/af_ax25.c
4573 F:      net/ax25/ax25_dev.c
4574 F:      net/ax25/ax25_ds_*
4575 F:      net/ax25/ax25_in.c
4576 F:      net/ax25/ax25_out.c
4577 F:      net/ax25/ax25_timer.c
4578 F:      net/ax25/sysctl_net_ax25.c
4579
4580 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4581 L:      [email protected]
4582 S:      Orphan
4583 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4584 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4585
4586 DC390/AM53C974 SCSI driver
4587 M:      Hannes Reinecke <[email protected]>
4588 L:      [email protected]
4589 S:      Maintained
4590 F:      drivers/scsi/am53c974.c
4591
4592 DC395x SCSI driver
4593 M:      Oliver Neukum <[email protected]>
4594 M:      Ali Akcaagac <[email protected]>
4595 M:      Jamie Lenehan <[email protected]>
4596 L:      [email protected]
4597 W:      http://twibble.org/dist/dc395x/
4598 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4599 S:      Maintained
4600 F:      Documentation/scsi/dc395x.txt
4601 F:      drivers/scsi/dc395x.*
4602
4603 DCCP PROTOCOL
4604 M:      Gerrit Renker <[email protected]>
4605 L:      [email protected]
4606 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4607 S:      Maintained
4608 F:      include/linux/dccp.h
4609 F:      include/uapi/linux/dccp.h
4610 F:      include/linux/tfrc.h
4611 F:      net/dccp/
4612
4613 DECnet NETWORK LAYER
4614 W:      http://linux-decnet.sourceforge.net
4615 L:      [email protected]
4616 S:      Orphan
4617 F:      Documentation/networking/decnet.txt
4618 F:      net/decnet/
4619
4620 DECSTATION PLATFORM SUPPORT
4621 M:      "Maciej W. Rozycki" <[email protected]>
4622 L:      [email protected]
4623 W:      http://www.linux-mips.org/wiki/DECstation
4624 S:      Maintained
4625 F:      arch/mips/dec/
4626 F:      arch/mips/include/asm/dec/
4627 F:      arch/mips/include/asm/mach-dec/
4628
4629 DEFXX FDDI NETWORK DRIVER
4630 M:      "Maciej W. Rozycki" <[email protected]>
4631 S:      Maintained
4632 F:      drivers/net/fddi/defxx.*
4633
4634 DELL SMBIOS DRIVER
4635 M:      Pali Rohár <[email protected]>
4636 M:      Mario Limonciello <[email protected]>
4637 L:      [email protected]
4638 S:      Maintained
4639 F:      drivers/platform/x86/dell-smbios.*
4640
4641 DELL SMBIOS SMM DRIVER
4642 M:      Mario Limonciello <[email protected]>
4643 L:      [email protected]
4644 S:      Maintained
4645 F:      drivers/platform/x86/dell-smbios-smm.c
4646
4647 DELL SMBIOS WMI DRIVER
4648 M:      Mario Limonciello <[email protected]>
4649 L:      [email protected]
4650 S:      Maintained
4651 F:      drivers/platform/x86/dell-smbios-wmi.c
4652 F:      tools/wmi/dell-smbios-example.c
4653
4654 DEFZA FDDI NETWORK DRIVER
4655 M:      "Maciej W. Rozycki" <[email protected]>
4656 S:      Maintained
4657 F:      drivers/net/fddi/defza.*
4658
4659 DELL LAPTOP DRIVER
4660 M:      Matthew Garrett <[email protected]>
4661 M:      Pali Rohár <[email protected]>
4662 L:      [email protected]
4663 S:      Maintained
4664 F:      drivers/platform/x86/dell-laptop.c
4665
4666 DELL LAPTOP FREEFALL DRIVER
4667 M:      Pali Rohár <[email protected]>
4668 S:      Maintained
4669 F:      drivers/platform/x86/dell-smo8800.c
4670
4671 DELL LAPTOP RBTN DRIVER
4672 M:      Pali Rohár <[email protected]>
4673 S:      Maintained
4674 F:      drivers/platform/x86/dell-rbtn.*
4675
4676 DELL REMOTE BIOS UPDATE DRIVER
4677 M:      Stuart Hayes <[email protected]>
4678 L:      [email protected]
4679 S:      Maintained
4680 F:      drivers/platform/x86/dell_rbu.c
4681
4682 DELL LAPTOP SMM DRIVER
4683 M:      Pali Rohár <[email protected]>
4684 S:      Maintained
4685 F:      drivers/hwmon/dell-smm-hwmon.c
4686 F:      include/uapi/linux/i8k.h
4687
4688 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4689 M:      Stuart Hayes <[email protected]>
4690 L:      [email protected]
4691 S:      Maintained
4692 F:      Documentation/driver-api/dcdbas.rst
4693 F:      drivers/platform/x86/dcdbas.*
4694
4695 DELL WMI NOTIFICATIONS DRIVER
4696 M:      Matthew Garrett <[email protected]>
4697 M:      Pali Rohár <[email protected]>
4698 S:      Maintained
4699 F:      drivers/platform/x86/dell-wmi.c
4700
4701 DELL WMI DESCRIPTOR DRIVER
4702 M:      Mario Limonciello <[email protected]>
4703 S:      Maintained
4704 F:      drivers/platform/x86/dell-wmi-descriptor.c
4705
4706 DELTA ST MEDIA DRIVER
4707 M:      Hugues Fruchet <[email protected]>
4708 L:      [email protected]
4709 T:      git git://linuxtv.org/media_tree.git
4710 W:      https://linuxtv.org
4711 S:      Supported
4712 F:      drivers/media/platform/sti/delta
4713
4714 DENALI NAND DRIVER
4715 M:      Masahiro Yamada <[email protected]>
4716 L:      [email protected]
4717 S:      Supported
4718 F:      drivers/mtd/nand/raw/denali*
4719
4720 DESIGNWARE EDMA CORE IP DRIVER
4721 M:      Gustavo Pimentel <[email protected]>
4722 L:      [email protected]
4723 S:      Maintained
4724 F:      drivers/dma/dw-edma/
4725 F:      include/linux/dma/edma.h
4726
4727 DESIGNWARE USB2 DRD IP DRIVER
4728 M:      Minas Harutyunyan <[email protected]>
4729 L:      [email protected]
4730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4731 S:      Maintained
4732 F:      drivers/usb/dwc2/
4733
4734 DESIGNWARE USB3 DRD IP DRIVER
4735 M:      Felipe Balbi <[email protected]>
4736 L:      [email protected]
4737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4738 S:      Maintained
4739 F:      drivers/usb/dwc3/
4740
4741 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4742 M:      Andreas Klinger <[email protected]>
4743 L:      [email protected]
4744 S:      Maintained
4745 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4746 F:      drivers/iio/proximity/srf*.c
4747
4748 DEVICE COREDUMP (DEV_COREDUMP)
4749 M:      Johannes Berg <[email protected]>
4750 L:      [email protected]
4751 S:      Maintained
4752 F:      drivers/base/devcoredump.c
4753 F:      include/linux/devcoredump.h
4754
4755 DEVICE FREQUENCY (DEVFREQ)
4756 M:      MyungJoo Ham <[email protected]>
4757 M:      Kyungmin Park <[email protected]>
4758 R:      Chanwoo Choi <[email protected]>
4759 L:      [email protected]
4760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4761 S:      Maintained
4762 F:      drivers/devfreq/
4763 F:      include/linux/devfreq.h
4764 F:      Documentation/devicetree/bindings/devfreq/
4765 F:      include/trace/events/devfreq.h
4766
4767 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4768 M:      Chanwoo Choi <[email protected]>
4769 L:      [email protected]
4770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4771 S:      Supported
4772 F:      drivers/devfreq/event/
4773 F:      drivers/devfreq/devfreq-event.c
4774 F:      include/linux/devfreq-event.h
4775 F:      Documentation/devicetree/bindings/devfreq/event/
4776
4777 DEVICE NUMBER REGISTRY
4778 M:      Torben Mathiasen <[email protected]>
4779 W:      http://lanana.org/docs/device-list/index.html
4780 S:      Maintained
4781
4782 DEVICE-MAPPER  (LVM)
4783 M:      Alasdair Kergon <[email protected]>
4784 M:      Mike Snitzer <[email protected]>
4785 M:      [email protected]
4786 L:      [email protected]
4787 W:      http://sources.redhat.com/dm
4788 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4790 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4791 S:      Maintained
4792 F:      Documentation/admin-guide/device-mapper/
4793 F:      drivers/md/Makefile
4794 F:      drivers/md/Kconfig
4795 F:      drivers/md/dm*
4796 F:      drivers/md/persistent-data/
4797 F:      include/linux/device-mapper.h
4798 F:      include/linux/dm-*.h
4799 F:      include/uapi/linux/dm-*.h
4800
4801 DEVLINK
4802 M:      Jiri Pirko <[email protected]>
4803 L:      [email protected]
4804 S:      Supported
4805 F:      net/core/devlink.c
4806 F:      include/net/devlink.h
4807 F:      include/uapi/linux/devlink.h
4808
4809 DIALOG SEMICONDUCTOR DRIVERS
4810 M:      Support Opensource <[email protected]>
4811 W:      http://www.dialog-semiconductor.com/products
4812 S:      Supported
4813 F:      Documentation/hwmon/da90??.rst
4814 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4815 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4816 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4817 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4818 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4819 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4820 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4821 F:      drivers/gpio/gpio-da90??.c
4822 F:      drivers/hwmon/da90??-hwmon.c
4823 F:      drivers/iio/adc/da91??-*.c
4824 F:      drivers/input/misc/da90??_onkey.c
4825 F:      drivers/input/touchscreen/da9052_tsi.c
4826 F:      drivers/leds/leds-da90??.c
4827 F:      drivers/mfd/da903x.c
4828 F:      drivers/mfd/da90??-*.c
4829 F:      drivers/mfd/da91??-*.c
4830 F:      drivers/power/supply/da9052-battery.c
4831 F:      drivers/power/supply/da91??-*.c
4832 F:      drivers/regulator/da903x.c
4833 F:      drivers/regulator/da9???-regulator.[ch]
4834 F:      drivers/regulator/slg51000-regulator.[ch]
4835 F:      drivers/thermal/da90??-thermal.c
4836 F:      drivers/rtc/rtc-da90??.c
4837 F:      drivers/video/backlight/da90??_bl.c
4838 F:      drivers/watchdog/da90??_wdt.c
4839 F:      include/linux/mfd/da903x.h
4840 F:      include/linux/mfd/da9052/
4841 F:      include/linux/mfd/da9055/
4842 F:      include/linux/mfd/da9062/
4843 F:      include/linux/mfd/da9063/
4844 F:      include/linux/mfd/da9150/
4845 F:      include/linux/regulator/da9211.h
4846 F:      include/sound/da[79]*.h
4847 F:      sound/soc/codecs/da[79]*.[ch]
4848
4849 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4850 M:      William Breathitt Gray <[email protected]>
4851 L:      [email protected]
4852 S:      Maintained
4853 F:      drivers/gpio/gpio-gpio-mm.c
4854
4855 DIOLAN U2C-12 I2C DRIVER
4856 M:      Guenter Roeck <[email protected]>
4857 L:      [email protected]
4858 S:      Maintained
4859 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4860
4861 FILESYSTEM DIRECT ACCESS (DAX)
4862 M:      Dan Williams <[email protected]>
4863 R:      Matthew Wilcox <[email protected]>
4864 R:      Jan Kara <[email protected]>
4865 L:      [email protected]
4866 L:      [email protected]
4867 S:      Supported
4868 F:      fs/dax.c
4869 F:      include/linux/dax.h
4870 F:      include/trace/events/fs_dax.h
4871
4872 DEVICE DIRECT ACCESS (DAX)
4873 M:      Dan Williams <[email protected]>
4874 M:      Vishal Verma <[email protected]>
4875 M:      Keith Busch <[email protected]>
4876 M:      Dave Jiang <[email protected]>
4877 L:      [email protected]
4878 S:      Supported
4879 F:      drivers/dax/
4880
4881 DIRECTORY NOTIFICATION (DNOTIFY)
4882 M:      Jan Kara <[email protected]>
4883 R:      Amir Goldstein <[email protected]>
4884 L:      [email protected]
4885 S:      Maintained
4886 F:      Documentation/filesystems/dnotify.txt
4887 F:      fs/notify/dnotify/
4888 F:      include/linux/dnotify.h
4889
4890 DISK GEOMETRY AND PARTITION HANDLING
4891 M:      Andries Brouwer <[email protected]>
4892 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4893 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4894 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4895 S:      Maintained
4896
4897 DISKQUOTA
4898 M:      Jan Kara <[email protected]>
4899 S:      Maintained
4900 F:      Documentation/filesystems/quota.txt
4901 F:      fs/quota/
4902 F:      include/linux/quota*.h
4903 F:      include/uapi/linux/quota*.h
4904
4905 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4906 M:      Bernie Thompson <[email protected]>
4907 L:      [email protected]
4908 S:      Maintained
4909 W:      http://plugable.com/category/projects/udlfb/
4910 F:      drivers/video/fbdev/udlfb.c
4911 F:      include/video/udlfb.h
4912 F:      Documentation/fb/udlfb.rst
4913
4914 DISTRIBUTED LOCK MANAGER (DLM)
4915 M:      Christine Caulfield <[email protected]>
4916 M:      David Teigland <[email protected]>
4917 L:      [email protected]
4918 W:      http://sources.redhat.com/cluster/
4919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4920 S:      Supported
4921 F:      fs/dlm/
4922
4923 DMA BUFFER SHARING FRAMEWORK
4924 M:      Sumit Semwal <[email protected]>
4925 S:      Maintained
4926 L:      [email protected]
4927 L:      [email protected]
4928 L:      [email protected] (moderated for non-subscribers)
4929 F:      drivers/dma-buf/
4930 F:      include/linux/dma-buf*
4931 F:      include/linux/reservation.h
4932 F:      include/linux/*fence.h
4933 F:      Documentation/driver-api/dma-buf.rst
4934 T:      git git://anongit.freedesktop.org/drm/drm-misc
4935
4936 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4937 M:      Vinod Koul <[email protected]>
4938 L:      [email protected]
4939 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4940 S:      Maintained
4941 F:      drivers/dma/
4942 F:      include/linux/dmaengine.h
4943 F:      include/linux/of_dma.h
4944 F:      Documentation/devicetree/bindings/dma/
4945 F:      Documentation/driver-api/dmaengine/
4946 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4947
4948 DMA MAPPING HELPERS
4949 M:      Christoph Hellwig <[email protected]>
4950 M:      Marek Szyprowski <[email protected]>
4951 R:      Robin Murphy <[email protected]>
4952 L:      [email protected]
4953 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4954 W:      http://git.infradead.org/users/hch/dma-mapping.git
4955 S:      Supported
4956 F:      kernel/dma/
4957 F:      include/asm-generic/dma-mapping.h
4958 F:      include/linux/dma-direct.h
4959 F:      include/linux/dma-mapping.h
4960 F:      include/linux/dma-noncoherent.h
4961
4962 DME1737 HARDWARE MONITOR DRIVER
4963 M:      Juerg Haefliger <[email protected]>
4964 L:      [email protected]
4965 S:      Maintained
4966 F:      Documentation/hwmon/dme1737.rst
4967 F:      drivers/hwmon/dme1737.c
4968
4969 DMI/SMBIOS SUPPORT
4970 M:      Jean Delvare <[email protected]>
4971 S:      Maintained
4972 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4973 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4974 F:      drivers/firmware/dmi-id.c
4975 F:      drivers/firmware/dmi_scan.c
4976 F:      include/linux/dmi.h
4977
4978 DOCUMENTATION
4979 M:      Jonathan Corbet <[email protected]>
4980 L:      [email protected]
4981 S:      Maintained
4982 F:      Documentation/
4983 F:      scripts/documentation-file-ref-check
4984 F:      scripts/kernel-doc
4985 F:      scripts/sphinx-pre-install
4986 X:      Documentation/ABI/
4987 X:      Documentation/firmware-guide/acpi/
4988 X:      Documentation/devicetree/
4989 X:      Documentation/i2c/
4990 X:      Documentation/media/
4991 X:      Documentation/power/
4992 X:      Documentation/spi/
4993 T:      git git://git.lwn.net/linux.git docs-next
4994
4995 DOCUMENTATION/ITALIAN
4996 M:      Federico Vaga <[email protected]>
4997 L:      [email protected]
4998 S:      Maintained
4999 F:      Documentation/translations/it_IT
5000
5001 DOCUMENTATION SCRIPTS
5002 M:      Mauro Carvalho Chehab <[email protected]>
5003 L:      [email protected]
5004 S:      Maintained
5005 F:      scripts/documentation-file-ref-check
5006 F:      scripts/sphinx-pre-install
5007 F:      Documentation/sphinx/parse-headers.pl
5008
5009 DONGWOON DW9714 LENS VOICE COIL DRIVER
5010 M:      Sakari Ailus <[email protected]>
5011 L:      [email protected]
5012 T:      git git://linuxtv.org/media_tree.git
5013 S:      Maintained
5014 F:      drivers/media/i2c/dw9714.c
5015 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5016
5017 DONGWOON DW9807 LENS VOICE COIL DRIVER
5018 M:      Sakari Ailus <[email protected]>
5019 L:      [email protected]
5020 T:      git git://linuxtv.org/media_tree.git
5021 S:      Maintained
5022 F:      drivers/media/i2c/dw9807-vcm.c
5023 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5024
5025 DOUBLETALK DRIVER
5026 M:      "James R. Van Zandt" <[email protected]>
5027 L:      [email protected]
5028 S:      Maintained
5029 F:      drivers/char/dtlk.c
5030 F:      include/linux/dtlk.h
5031
5032 DPAA2 DATAPATH I/O (DPIO) DRIVER
5033 M:      Roy Pledge <[email protected]>
5034 L:      [email protected]
5035 S:      Maintained
5036 F:      drivers/soc/fsl/dpio
5037
5038 DPAA2 ETHERNET DRIVER
5039 M:      Ioana Radulescu <[email protected]>
5040 L:      [email protected]
5041 S:      Maintained
5042 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5043 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5044 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5045 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5046 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5047
5048 DPAA2 ETHERNET SWITCH DRIVER
5049 M:      Ioana Radulescu <[email protected]>
5050 M:      Ioana Ciornei <[email protected]>
5051 L:      [email protected]
5052 S:      Maintained
5053 F:      drivers/staging/fsl-dpaa2/ethsw
5054
5055 DPT_I2O SCSI RAID DRIVER
5056 M:      Adaptec OEM Raid Solutions <[email protected]>
5057 L:      [email protected]
5058 W:      http://www.adaptec.com/
5059 S:      Maintained
5060 F:      drivers/scsi/dpt*
5061 F:      drivers/scsi/dpt/
5062
5063 DRBD DRIVER
5064 M:      Philipp Reisner <[email protected]>
5065 M:      Lars Ellenberg <[email protected]>
5066 L:      [email protected]
5067 W:      http://www.drbd.org
5068 T:      git git://git.linbit.com/linux-drbd.git
5069 T:      git git://git.linbit.com/drbd-8.4.git
5070 S:      Supported
5071 F:      drivers/block/drbd/
5072 F:      lib/lru_cache.c
5073 F:      Documentation/admin-guide/blockdev/
5074
5075 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5076 M:      Greg Kroah-Hartman <[email protected]>
5077 R:      "Rafael J. Wysocki" <[email protected]>
5078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5079 S:      Supported
5080 F:      Documentation/kobject.txt
5081 F:      drivers/base/
5082 F:      fs/debugfs/
5083 F:      fs/sysfs/
5084 F:      include/linux/debugfs.h
5085 F:      include/linux/kobj*
5086 F:      lib/kobj*
5087
5088 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5089 M:      Kevin Hilman <[email protected]>
5090 M:      Nishanth Menon <[email protected]>
5091 S:      Maintained
5092 F:      drivers/power/avs/
5093 F:      include/linux/power/smartreflex.h
5094 L:      [email protected]
5095
5096 DRM DRIVER FOR ARM PL111 CLCD
5097 M:      Eric Anholt <[email protected]>
5098 T:      git git://anongit.freedesktop.org/drm/drm-misc
5099 S:      Supported
5100 F:      drivers/gpu/drm/pl111/
5101
5102 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5103 M:      Linus Walleij <[email protected]>
5104 T:      git git://anongit.freedesktop.org/drm/drm-misc
5105 S:      Maintained
5106 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5107 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5108
5109 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5110 M:      Dave Airlie <[email protected]>
5111 S:      Odd Fixes
5112 F:      drivers/gpu/drm/ast/
5113
5114 DRM DRIVER FOR ASPEED BMC GFX
5115 M:      Joel Stanley <[email protected]>
5116 L:      [email protected]
5117 T:      git git://anongit.freedesktop.org/drm/drm-misc
5118 S:      Supported
5119 F:      drivers/gpu/drm/aspeed/
5120 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5121
5122 DRM DRIVER FOR BOCHS VIRTUAL GPU
5123 M:      Gerd Hoffmann <[email protected]>
5124 L:      [email protected]
5125 T:      git git://anongit.freedesktop.org/drm/drm-misc
5126 S:      Maintained
5127 F:      drivers/gpu/drm/bochs/
5128
5129 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5130 M:      Linus Walleij <[email protected]>
5131 T:      git git://anongit.freedesktop.org/drm/drm-misc
5132 S:      Maintained
5133 F:      drivers/gpu/drm/tve200/
5134
5135 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5136 M:      Jagan Teki <[email protected]>
5137 S:      Maintained
5138 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5139 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5140
5141 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5142 M:      Hans de Goede <[email protected]>
5143 T:      git git://anongit.freedesktop.org/drm/drm-misc
5144 S:      Maintained
5145 F:      drivers/gpu/drm/tiny/gm12u320.c
5146
5147 DRM DRIVER FOR ILITEK ILI9225 PANELS
5148 M:      David Lechner <[email protected]>
5149 T:      git git://anongit.freedesktop.org/drm/drm-misc
5150 S:      Maintained
5151 F:      drivers/gpu/drm/tiny/ili9225.c
5152 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5153
5154 DRM DRIVER FOR HX8357D PANELS
5155 M:      Eric Anholt <[email protected]>
5156 T:      git git://anongit.freedesktop.org/drm/drm-misc
5157 S:      Maintained
5158 F:      drivers/gpu/drm/tiny/hx8357d.c
5159 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5160
5161 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5162 S:      Orphan / Obsolete
5163 F:      drivers/gpu/drm/i810/
5164 F:      include/uapi/drm/i810_drm.h
5165
5166 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5167 S:      Orphan / Obsolete
5168 F:      drivers/gpu/drm/mga/
5169 F:      include/uapi/drm/mga_drm.h
5170
5171 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5172 M:      Dave Airlie <[email protected]>
5173 S:      Odd Fixes
5174 F:      drivers/gpu/drm/mgag200/
5175
5176 DRM DRIVER FOR MI0283QT
5177 M:      Noralf Trønnes <[email protected]>
5178 T:      git git://anongit.freedesktop.org/drm/drm-misc
5179 S:      Maintained
5180 F:      drivers/gpu/drm/tiny/mi0283qt.c
5181 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5182
5183 DRM DRIVER FOR MSM ADRENO GPU
5184 M:      Rob Clark <[email protected]>
5185 M:      Sean Paul <[email protected]>
5186 L:      [email protected]
5187 L:      [email protected]
5188 L:      [email protected]
5189 T:      git https://gitlab.freedesktop.org/drm/msm.git
5190 S:      Maintained
5191 F:      drivers/gpu/drm/msm/
5192 F:      include/uapi/drm/msm_drm.h
5193 F:      Documentation/devicetree/bindings/display/msm/
5194
5195 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5196 M:      Ben Skeggs <[email protected]>
5197 L:      [email protected]
5198 L:      [email protected]
5199 T:      git git://github.com/skeggsb/linux
5200 S:      Supported
5201 F:      drivers/gpu/drm/nouveau/
5202 F:      include/uapi/drm/nouveau_drm.h
5203
5204 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5205 M:      Stefan Mavrodiev <[email protected]>
5206 S:      Maintained
5207 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5208 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5209
5210 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5211 M:      Noralf Trønnes <[email protected]>
5212 T:      git git://anongit.freedesktop.org/drm/drm-misc
5213 S:      Maintained
5214 F:      drivers/gpu/drm/tiny/repaper.c
5215 F:      Documentation/devicetree/bindings/display/repaper.txt
5216
5217 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5218 M:      Dave Airlie <[email protected]>
5219 M:      Gerd Hoffmann <[email protected]>
5220 L:      [email protected]
5221 T:      git git://anongit.freedesktop.org/drm/drm-misc
5222 S:      Obsolete
5223 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5224 F:      drivers/gpu/drm/cirrus/
5225
5226 DRM DRIVER FOR QXL VIRTUAL GPU
5227 M:      Dave Airlie <[email protected]>
5228 M:      Gerd Hoffmann <[email protected]>
5229 L:      [email protected]
5230 L:      [email protected]
5231 T:      git git://anongit.freedesktop.org/drm/drm-misc
5232 S:      Maintained
5233 F:      drivers/gpu/drm/qxl/
5234 F:      include/uapi/drm/qxl_drm.h
5235
5236 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5237 M:      Robert Chiras <[email protected]>
5238 S:      Maintained
5239 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5240 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5241
5242 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5243 S:      Orphan / Obsolete
5244 F:      drivers/gpu/drm/r128/
5245 F:      include/uapi/drm/r128_drm.h
5246
5247 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5248 M:      Guido Günther <[email protected]>
5249 R:      Purism Kernel Team <[email protected]>
5250 S:      Maintained
5251 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5252 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5253
5254 DRM DRIVER FOR SAVAGE VIDEO CARDS
5255 S:      Orphan / Obsolete
5256 F:      drivers/gpu/drm/savage/
5257 F:      include/uapi/drm/savage_drm.h
5258
5259 DRM DRIVER FOR SIS VIDEO CARDS
5260 S:      Orphan / Obsolete
5261 F:      drivers/gpu/drm/sis/
5262 F:      include/uapi/drm/sis_drm.h
5263
5264 DRM DRIVER FOR SITRONIX ST7701 PANELS
5265 M:      Jagan Teki <[email protected]>
5266 S:      Maintained
5267 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5268 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5269
5270 DRM DRIVER FOR SITRONIX ST7586 PANELS
5271 M:      David Lechner <[email protected]>
5272 T:      git git://anongit.freedesktop.org/drm/drm-misc
5273 S:      Maintained
5274 F:      drivers/gpu/drm/tiny/st7586.c
5275 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5276
5277 DRM DRIVER FOR SITRONIX ST7735R PANELS
5278 M:      David Lechner <[email protected]>
5279 T:      git git://anongit.freedesktop.org/drm/drm-misc
5280 S:      Maintained
5281 F:      drivers/gpu/drm/tiny/st7735r.c
5282 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.txt
5283
5284 DRM DRIVER FOR ST-ERICSSON MCDE
5285 M:      Linus Walleij <[email protected]>
5286 T:      git git://anongit.freedesktop.org/drm/drm-misc
5287 S:      Maintained
5288 F:      drivers/gpu/drm/mcde/
5289 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5290
5291 DRM DRIVER FOR TDFX VIDEO CARDS
5292 S:      Orphan / Obsolete
5293 F:      drivers/gpu/drm/tdfx/
5294
5295 DRM DRIVER FOR TPO TPG110 PANELS
5296 M:      Linus Walleij <[email protected]>
5297 T:      git git://anongit.freedesktop.org/drm/drm-misc
5298 S:      Maintained
5299 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5300 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5301
5302 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5303 M:      Dave Airlie <[email protected]>
5304 R:      Sean Paul <[email protected]>
5305 L:      [email protected]
5306 S:      Odd Fixes
5307 F:      drivers/gpu/drm/udl/
5308 T:      git git://anongit.freedesktop.org/drm/drm-misc
5309
5310 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5311 M:      Hans de Goede <[email protected]>
5312 L:      [email protected]
5313 S:      Maintained
5314 F:      drivers/gpu/drm/vboxvideo/
5315 T:      git git://anongit.freedesktop.org/drm/drm-misc
5316
5317 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5318 M:      Rodrigo Siqueira <[email protected]>
5319 R:      Haneen Mohammed <[email protected]>
5320 R:      Daniel Vetter <[email protected]>
5321 T:      git git://anongit.freedesktop.org/drm/drm-misc
5322 S:      Maintained
5323 L:      [email protected]
5324 F:      drivers/gpu/drm/vkms/
5325 F:      Documentation/gpu/vkms.rst
5326
5327 DRM DRIVER FOR VMWARE VIRTUAL GPU
5328 M:      "VMware Graphics" <[email protected]>
5329 M:      Thomas Hellstrom <[email protected]>
5330 L:      [email protected]
5331 T:      git git://people.freedesktop.org/~thomash/linux
5332 S:      Supported
5333 F:      drivers/gpu/drm/vmwgfx/
5334 F:      include/uapi/drm/vmwgfx_drm.h
5335
5336 DRM DRIVERS
5337 M:      David Airlie <[email protected]>
5338 M:      Daniel Vetter <[email protected]>
5339 L:      [email protected]
5340 T:      git git://anongit.freedesktop.org/drm/drm
5341 B:      https://bugs.freedesktop.org/
5342 C:      irc://chat.freenode.net/dri-devel
5343 S:      Maintained
5344 F:      drivers/gpu/drm/
5345 F:      drivers/gpu/vga/
5346 F:      Documentation/devicetree/bindings/display/
5347 F:      Documentation/devicetree/bindings/gpu/
5348 F:      Documentation/gpu/
5349 F:      include/drm/
5350 F:      include/uapi/drm/
5351 F:      include/linux/vga*
5352
5353 DRM DRIVERS AND MISC GPU PATCHES
5354 M:      Maarten Lankhorst <[email protected]>
5355 M:      Maxime Ripard <[email protected]>
5356 M:      Sean Paul <[email protected]>
5357 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5358 S:      Maintained
5359 T:      git git://anongit.freedesktop.org/drm/drm-misc
5360 F:      Documentation/gpu/
5361 F:      drivers/gpu/vga/
5362 F:      drivers/gpu/drm/*
5363 F:      include/drm/drm*
5364 F:      include/uapi/drm/drm*
5365 F:      include/linux/vga*
5366
5367 DRM DRIVERS FOR ALLWINNER A10
5368 M:      Maxime Ripard <[email protected]>
5369 L:      [email protected]
5370 S:      Supported
5371 F:      drivers/gpu/drm/sun4i/
5372 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5373 T:      git git://anongit.freedesktop.org/drm/drm-misc
5374
5375 DRM DRIVERS FOR AMLOGIC SOCS
5376 M:      Neil Armstrong <[email protected]>
5377 L:      [email protected]
5378 L:      [email protected]
5379 W:      http://linux-meson.com/
5380 S:      Supported
5381 F:      drivers/gpu/drm/meson/
5382 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5383 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5384 F:      Documentation/gpu/meson.rst
5385 T:      git git://anongit.freedesktop.org/drm/drm-misc
5386
5387 DRM DRIVERS FOR ATMEL HLCDC
5388 M:      Sam Ravnborg <[email protected]>
5389 M:      Boris Brezillon <[email protected]>
5390 L:      [email protected]
5391 S:      Supported
5392 F:      drivers/gpu/drm/atmel-hlcdc/
5393 F:      Documentation/devicetree/bindings/display/atmel/
5394 T:      git git://anongit.freedesktop.org/drm/drm-misc
5395
5396 DRM DRIVERS FOR BRIDGE CHIPS
5397 M:      Andrzej Hajda <[email protected]>
5398 M:      Neil Armstrong <[email protected]>
5399 R:      Laurent Pinchart <[email protected]>
5400 R:      Jonas Karlman <[email protected]>
5401 R:      Jernej Skrabec <[email protected]>
5402 S:      Maintained
5403 T:      git git://anongit.freedesktop.org/drm/drm-misc
5404 F:      drivers/gpu/drm/bridge/
5405
5406 DRM DRIVERS FOR EXYNOS
5407 M:      Inki Dae <[email protected]>
5408 M:      Joonyoung Shim <[email protected]>
5409 M:      Seung-Woo Kim <[email protected]>
5410 M:      Kyungmin Park <[email protected]>
5411 L:      [email protected]
5412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5413 S:      Supported
5414 F:      drivers/gpu/drm/exynos/
5415 F:      include/uapi/drm/exynos_drm.h
5416 F:      Documentation/devicetree/bindings/display/exynos/
5417
5418 DRM DRIVERS FOR FREESCALE DCU
5419 M:      Stefan Agner <[email protected]>
5420 M:      Alison Wang <[email protected]>
5421 L:      [email protected]
5422 S:      Supported
5423 F:      drivers/gpu/drm/fsl-dcu/
5424 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5425 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5426 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19-05b.txt
5427 T:      git git://anongit.freedesktop.org/drm/drm-misc
5428
5429 DRM DRIVERS FOR FREESCALE IMX
5430 M:      Philipp Zabel <[email protected]>
5431 L:      [email protected]
5432 S:      Maintained
5433 F:      drivers/gpu/drm/imx/
5434 F:      drivers/gpu/ipu-v3/
5435 F:      Documentation/devicetree/bindings/display/imx/
5436
5437 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5438 M:      Patrik Jakobsson <[email protected]>
5439 L:      [email protected]
5440 T:      git git://github.com/patjak/drm-gma500
5441 S:      Maintained
5442 F:      drivers/gpu/drm/gma500/
5443
5444 DRM DRIVERS FOR HISILICON
5445 M:      Xinliang Liu <[email protected]>
5446 M:      Rongrong Zou <[email protected]>
5447 R:      Xinwei Kong <[email protected]>
5448 R:      Chen Feng <[email protected]>
5449 L:      [email protected]
5450 T:      git git://github.com/xin3liang/linux.git
5451 S:      Maintained
5452 F:      drivers/gpu/drm/hisilicon/
5453 F:      Documentation/devicetree/bindings/display/hisilicon/
5454
5455 DRM DRIVERS FOR LIMA
5456 M:      Qiang Yu <[email protected]>
5457 L:      [email protected]
5458 L:      [email protected] (moderated for non-subscribers)
5459 S:      Maintained
5460 F:      drivers/gpu/drm/lima/
5461 F:      include/uapi/drm/lima_drm.h
5462 T:      git git://anongit.freedesktop.org/drm/drm-misc
5463
5464 DRM DRIVERS FOR MEDIATEK
5465 M:      CK Hu <[email protected]>
5466 M:      Philipp Zabel <[email protected]>
5467 L:      [email protected]
5468 S:      Supported
5469 F:      drivers/gpu/drm/mediatek/
5470 F:      Documentation/devicetree/bindings/display/mediatek/
5471
5472 DRM DRIVERS FOR NVIDIA TEGRA
5473 M:      Thierry Reding <[email protected]>
5474 L:      [email protected]
5475 L:      [email protected]
5476 T:      git git://anongit.freedesktop.org/tegra/linux.git
5477 S:      Supported
5478 F:      drivers/gpu/drm/tegra/
5479 F:      drivers/gpu/host1x/
5480 F:      include/linux/host1x.h
5481 F:      include/uapi/drm/tegra_drm.h
5482 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5483
5484 DRM DRIVERS FOR RENESAS
5485 M:      Laurent Pinchart <[email protected]>
5486 M:      Kieran Bingham <[email protected]>
5487 L:      [email protected]
5488 L:      [email protected]
5489 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5490 S:      Supported
5491 F:      drivers/gpu/drm/rcar-du/
5492 F:      drivers/gpu/drm/shmobile/
5493 F:      include/linux/platform_data/shmob_drm.h
5494 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5495 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5496 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5497
5498 DRM DRIVERS FOR ROCKCHIP
5499 M:      Sandy Huang <[email protected]>
5500 M:      Heiko Stübner <[email protected]>
5501 L:      [email protected]
5502 S:      Maintained
5503 F:      drivers/gpu/drm/rockchip/
5504 F:      Documentation/devicetree/bindings/display/rockchip/
5505 T:      git git://anongit.freedesktop.org/drm/drm-misc
5506
5507 DRM DRIVERS FOR STI
5508 M:      Benjamin Gaignard <[email protected]>
5509 M:      Vincent Abriou <[email protected]>
5510 L:      [email protected]
5511 T:      git git://anongit.freedesktop.org/drm/drm-misc
5512 S:      Maintained
5513 F:      drivers/gpu/drm/sti
5514 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5515
5516 DRM DRIVERS FOR STM
5517 M:      Yannick Fertre <[email protected]>
5518 M:      Philippe Cornu <[email protected]>
5519 M:      Benjamin Gaignard <[email protected]>
5520 M:      Vincent Abriou <[email protected]>
5521 L:      [email protected]
5522 T:      git git://anongit.freedesktop.org/drm/drm-misc
5523 S:      Maintained
5524 F:      drivers/gpu/drm/stm
5525 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
5526
5527 DRM DRIVERS FOR TI LCDC
5528 M:      Jyri Sarha <[email protected]>
5529 R:      Tomi Valkeinen <[email protected]>
5530 L:      [email protected]
5531 S:      Maintained
5532 F:      drivers/gpu/drm/tilcdc/
5533 F:      Documentation/devicetree/bindings/display/tilcdc/
5534
5535 DRM DRIVERS FOR TI OMAP
5536 M:      Tomi Valkeinen <[email protected]>
5537 L:      [email protected]
5538 S:      Maintained
5539 F:      drivers/gpu/drm/omapdrm/
5540 F:      Documentation/devicetree/bindings/display/ti/
5541
5542 DRM DRIVERS FOR V3D
5543 M:      Eric Anholt <[email protected]>
5544 S:      Supported
5545 F:      drivers/gpu/drm/v3d/
5546 F:      include/uapi/drm/v3d_drm.h
5547 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5548 T:      git git://anongit.freedesktop.org/drm/drm-misc
5549
5550 DRM DRIVERS FOR VC4
5551 M:      Eric Anholt <[email protected]>
5552 T:      git git://github.com/anholt/linux
5553 S:      Supported
5554 F:      drivers/gpu/drm/vc4/
5555 F:      include/uapi/drm/vc4_drm.h
5556 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5557 T:      git git://anongit.freedesktop.org/drm/drm-misc
5558
5559 DRM DRIVERS FOR VIVANTE GPU IP
5560 M:      Lucas Stach <[email protected]>
5561 R:      Russell King <[email protected]>
5562 R:      Christian Gmeiner <[email protected]>
5563 L:      [email protected] (moderated for non-subscribers)
5564 L:      [email protected]
5565 S:      Maintained
5566 F:      drivers/gpu/drm/etnaviv/
5567 F:      include/uapi/drm/etnaviv_drm.h
5568 F:      Documentation/devicetree/bindings/display/etnaviv/
5569
5570 DRM DRIVERS FOR ZTE ZX
5571 M:      Shawn Guo <[email protected]>
5572 L:      [email protected]
5573 S:      Maintained
5574 F:      drivers/gpu/drm/zte/
5575 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5576 T:      git git://anongit.freedesktop.org/drm/drm-misc
5577
5578 DRM PANEL DRIVERS
5579 M:      Thierry Reding <[email protected]>
5580 R:      Sam Ravnborg <[email protected]>
5581 L:      [email protected]
5582 T:      git git://anongit.freedesktop.org/drm/drm-misc
5583 S:      Maintained
5584 F:      drivers/gpu/drm/drm_panel.c
5585 F:      drivers/gpu/drm/panel/
5586 F:      include/drm/drm_panel.h
5587 F:      Documentation/devicetree/bindings/display/panel/
5588
5589 DRM DRIVERS FOR XEN
5590 M:      Oleksandr Andrushchenko <[email protected]>
5591 T:      git git://anongit.freedesktop.org/drm/drm-misc
5592 L:      [email protected]
5593 L:      [email protected] (moderated for non-subscribers)
5594 S:      Supported
5595 F:      drivers/gpu/drm/xen/
5596 F:      Documentation/gpu/xen-front.rst
5597
5598 DRM TTM SUBSYSTEM
5599 M:      Christian Koenig <[email protected]>
5600 M:      Huang Rui <[email protected]>
5601 T:      git git://people.freedesktop.org/~agd5f/linux
5602 S:      Maintained
5603 L:      [email protected]
5604 F:      include/drm/ttm/
5605 F:      drivers/gpu/drm/ttm/
5606
5607 DSBR100 USB FM RADIO DRIVER
5608 M:      Alexey Klimov <[email protected]>
5609 L:      [email protected]
5610 T:      git git://linuxtv.org/media_tree.git
5611 S:      Maintained
5612 F:      drivers/media/radio/dsbr100.c
5613
5614 DT3155 MEDIA DRIVER
5615 M:      Hans Verkuil <[email protected]>
5616 L:      [email protected]
5617 T:      git git://linuxtv.org/media_tree.git
5618 W:      https://linuxtv.org
5619 S:      Odd Fixes
5620 F:      drivers/media/pci/dt3155/
5621
5622 DVB_USB_AF9015 MEDIA DRIVER
5623 M:      Antti Palosaari <[email protected]>
5624 L:      [email protected]
5625 W:      https://linuxtv.org
5626 W:      http://palosaari.fi/linux/
5627 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5628 T:      git git://linuxtv.org/anttip/media_tree.git
5629 S:      Maintained
5630 F:      drivers/media/usb/dvb-usb-v2/af9015*
5631
5632 DVB_USB_AF9035 MEDIA DRIVER
5633 M:      Antti Palosaari <[email protected]>
5634 L:      [email protected]
5635 W:      https://linuxtv.org
5636 W:      http://palosaari.fi/linux/
5637 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5638 T:      git git://linuxtv.org/anttip/media_tree.git
5639 S:      Maintained
5640 F:      drivers/media/usb/dvb-usb-v2/af9035*
5641
5642 DVB_USB_ANYSEE MEDIA DRIVER
5643 M:      Antti Palosaari <[email protected]>
5644 L:      [email protected]
5645 W:      https://linuxtv.org
5646 W:      http://palosaari.fi/linux/
5647 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5648 T:      git git://linuxtv.org/anttip/media_tree.git
5649 S:      Maintained
5650 F:      drivers/media/usb/dvb-usb-v2/anysee*
5651
5652 DVB_USB_AU6610 MEDIA DRIVER
5653 M:      Antti Palosaari <[email protected]>
5654 L:      [email protected]
5655 W:      https://linuxtv.org
5656 W:      http://palosaari.fi/linux/
5657 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5658 T:      git git://linuxtv.org/anttip/media_tree.git
5659 S:      Maintained
5660 F:      drivers/media/usb/dvb-usb-v2/au6610*
5661
5662 DVB_USB_CE6230 MEDIA DRIVER
5663 M:      Antti Palosaari <[email protected]>
5664 L:      [email protected]
5665 W:      https://linuxtv.org
5666 W:      http://palosaari.fi/linux/
5667 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5668 T:      git git://linuxtv.org/anttip/media_tree.git
5669 S:      Maintained
5670 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5671
5672 DVB_USB_CXUSB MEDIA DRIVER
5673 M:      Michael Krufky <[email protected]>
5674 L:      [email protected]
5675 W:      https://linuxtv.org
5676 W:      http://github.com/mkrufky
5677 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5678 T:      git git://linuxtv.org/media_tree.git
5679 S:      Maintained
5680 F:      drivers/media/usb/dvb-usb/cxusb*
5681
5682 DVB_USB_EC168 MEDIA DRIVER
5683 M:      Antti Palosaari <[email protected]>
5684 L:      [email protected]
5685 W:      https://linuxtv.org
5686 W:      http://palosaari.fi/linux/
5687 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5688 T:      git git://linuxtv.org/anttip/media_tree.git
5689 S:      Maintained
5690 F:      drivers/media/usb/dvb-usb-v2/ec168*
5691
5692 DVB_USB_GL861 MEDIA DRIVER
5693 M:      Antti Palosaari <[email protected]>
5694 L:      [email protected]
5695 W:      https://linuxtv.org
5696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5697 T:      git git://linuxtv.org/anttip/media_tree.git
5698 S:      Maintained
5699 F:      drivers/media/usb/dvb-usb-v2/gl861*
5700
5701 DVB_USB_MXL111SF MEDIA DRIVER
5702 M:      Michael Krufky <[email protected]>
5703 L:      [email protected]
5704 W:      https://linuxtv.org
5705 W:      http://github.com/mkrufky
5706 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5707 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5708 S:      Maintained
5709 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5710
5711 DVB_USB_RTL28XXU MEDIA DRIVER
5712 M:      Antti Palosaari <[email protected]>
5713 L:      [email protected]
5714 W:      https://linuxtv.org
5715 W:      http://palosaari.fi/linux/
5716 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5717 T:      git git://linuxtv.org/anttip/media_tree.git
5718 S:      Maintained
5719 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5720
5721 DVB_USB_V2 MEDIA DRIVER
5722 M:      Antti Palosaari <[email protected]>
5723 L:      [email protected]
5724 W:      https://linuxtv.org
5725 W:      http://palosaari.fi/linux/
5726 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5727 T:      git git://linuxtv.org/anttip/media_tree.git
5728 S:      Maintained
5729 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5730 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5731
5732 DYNAMIC DEBUG
5733 M:      Jason Baron <[email protected]>
5734 S:      Maintained
5735 F:      lib/dynamic_debug.c
5736 F:      include/linux/dynamic_debug.h
5737
5738 DYNAMIC INTERRUPT MODERATION
5739 M:      Tal Gilboa <[email protected]>
5740 S:      Maintained
5741 F:      include/linux/dim.h
5742 F:      lib/dim/
5743
5744 DZ DECSTATION DZ11 SERIAL DRIVER
5745 M:      "Maciej W. Rozycki" <[email protected]>
5746 S:      Maintained
5747 F:      drivers/tty/serial/dz.*
5748
5749 E3X0 POWER BUTTON DRIVER
5750 M:      Moritz Fischer <[email protected]>
5751 L:      [email protected]
5752 W:      http://www.ettus.com
5753 S:      Supported
5754 F:      drivers/input/misc/e3x0-button.c
5755 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5756
5757 E4000 MEDIA DRIVER
5758 M:      Antti Palosaari <[email protected]>
5759 L:      [email protected]
5760 W:      https://linuxtv.org
5761 W:      http://palosaari.fi/linux/
5762 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5763 T:      git git://linuxtv.org/anttip/media_tree.git
5764 S:      Maintained
5765 F:      drivers/media/tuners/e4000*
5766
5767 EARTH_PT1 MEDIA DRIVER
5768 M:      Akihiro Tsukada <[email protected]>
5769 L:      [email protected]
5770 S:      Odd Fixes
5771 F:      drivers/media/pci/pt1/
5772
5773 EARTH_PT3 MEDIA DRIVER
5774 M:      Akihiro Tsukada <[email protected]>
5775 L:      [email protected]
5776 S:      Odd Fixes
5777 F:      drivers/media/pci/pt3/
5778
5779 EC100 MEDIA DRIVER
5780 M:      Antti Palosaari <[email protected]>
5781 L:      [email protected]
5782 W:      https://linuxtv.org
5783 W:      http://palosaari.fi/linux/
5784 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5785 T:      git git://linuxtv.org/anttip/media_tree.git
5786 S:      Maintained
5787 F:      drivers/media/dvb-frontends/ec100*
5788
5789 ECRYPT FILE SYSTEM
5790 M:      Tyler Hicks <[email protected]>
5791 L:      [email protected]
5792 W:      http://ecryptfs.org
5793 W:      https://launchpad.net/ecryptfs
5794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5795 S:      Supported
5796 F:      Documentation/filesystems/ecryptfs.txt
5797 F:      fs/ecryptfs/
5798
5799 EDAC-AMD64
5800 M:      Borislav Petkov <[email protected]>
5801 L:      [email protected]
5802 S:      Maintained
5803 F:      drivers/edac/amd64_edac*
5804
5805 EDAC-AST2500
5806 M:      Stefan Schaeckeler <[email protected]>
5807 S:      Supported
5808 F:      drivers/edac/aspeed_edac.c
5809 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
5810
5811 EDAC-BLUEFIELD
5812 M:      Shravan Kumar Ramani <[email protected]>
5813 S:      Supported
5814 F:      drivers/edac/bluefield_edac.c
5815
5816 EDAC-CALXEDA
5817 M:      Robert Richter <[email protected]>
5818 L:      [email protected]
5819 S:      Maintained
5820 F:      drivers/edac/highbank*
5821
5822 EDAC-CAVIUM OCTEON
5823 M:      Ralf Baechle <[email protected]>
5824 M:      David Daney <[email protected]>
5825 L:      [email protected]
5826 L:      [email protected]
5827 S:      Supported
5828 F:      drivers/edac/octeon_edac*
5829
5830 EDAC-CAVIUM THUNDERX
5831 M:      David Daney <[email protected]>
5832 M:      Jan Glauber <[email protected]>
5833 L:      [email protected]
5834 S:      Supported
5835 F:      drivers/edac/thunderx_edac*
5836
5837 EDAC-CORE
5838 M:      Borislav Petkov <[email protected]>
5839 M:      Mauro Carvalho Chehab <[email protected]>
5840 M:      Tony Luck <[email protected]>
5841 R:      James Morse <[email protected]>
5842 R:      Robert Richter <[email protected]>
5843 L:      [email protected]
5844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
5845 S:      Supported
5846 F:      Documentation/admin-guide/ras.rst
5847 F:      Documentation/driver-api/edac.rst
5848 F:      drivers/edac/
5849 F:      include/linux/edac.h
5850
5851 EDAC-E752X
5852 M:      Mark Gross <[email protected]>
5853 L:      [email protected]
5854 S:      Maintained
5855 F:      drivers/edac/e752x_edac.c
5856
5857 EDAC-E7XXX
5858 L:      [email protected]
5859 S:      Maintained
5860 F:      drivers/edac/e7xxx_edac.c
5861
5862 EDAC-FSL_DDR
5863 M:      York Sun <[email protected]>
5864 L:      [email protected]
5865 S:      Maintained
5866 F:      drivers/edac/fsl_ddr_edac.*
5867
5868 EDAC-GHES
5869 M:      Mauro Carvalho Chehab <[email protected]>
5870 L:      [email protected]
5871 S:      Maintained
5872 F:      drivers/edac/ghes_edac.c
5873
5874 EDAC-I10NM
5875 M:      Tony Luck <[email protected]>
5876 L:      [email protected]
5877 S:      Maintained
5878 F:      drivers/edac/i10nm_base.c
5879
5880 EDAC-I3000
5881 L:      [email protected]
5882 S:      Orphan
5883 F:      drivers/edac/i3000_edac.c
5884
5885 EDAC-I5000
5886 L:      [email protected]
5887 S:      Maintained
5888 F:      drivers/edac/i5000_edac.c
5889
5890 EDAC-I5400
5891 M:      Mauro Carvalho Chehab <[email protected]>
5892 L:      [email protected]
5893 S:      Maintained
5894 F:      drivers/edac/i5400_edac.c
5895
5896 EDAC-I7300
5897 M:      Mauro Carvalho Chehab <[email protected]>
5898 L:      [email protected]
5899 S:      Maintained
5900 F:      drivers/edac/i7300_edac.c
5901
5902 EDAC-I7CORE
5903 M:      Mauro Carvalho Chehab <[email protected]>
5904 L:      [email protected]
5905 S:      Maintained
5906 F:      drivers/edac/i7core_edac.c
5907
5908 EDAC-I82443BXGX
5909 M:      Tim Small <[email protected]>
5910 L:      [email protected]
5911 S:      Maintained
5912 F:      drivers/edac/i82443bxgx_edac.c
5913
5914 EDAC-I82975X
5915 M:      "Arvind R." <[email protected]>
5916 L:      [email protected]
5917 S:      Maintained
5918 F:      drivers/edac/i82975x_edac.c
5919
5920 EDAC-IE31200
5921 M:      Jason Baron <[email protected]>
5922 L:      [email protected]
5923 S:      Maintained
5924 F:      drivers/edac/ie31200_edac.c
5925
5926 EDAC-MPC85XX
5927 M:      Johannes Thumshirn <[email protected]>
5928 L:      [email protected]
5929 S:      Maintained
5930 F:      drivers/edac/mpc85xx_edac.[ch]
5931
5932 EDAC-PASEMI
5933 M:      Egor Martovetsky <[email protected]>
5934 L:      [email protected]
5935 S:      Maintained
5936 F:      drivers/edac/pasemi_edac.c
5937
5938 EDAC-PND2
5939 M:      Tony Luck <[email protected]>
5940 L:      [email protected]
5941 S:      Maintained
5942 F:      drivers/edac/pnd2_edac.[ch]
5943
5944 EDAC-R82600
5945 M:      Tim Small <[email protected]>
5946 L:      [email protected]
5947 S:      Maintained
5948 F:      drivers/edac/r82600_edac.c
5949
5950 EDAC-SBRIDGE
5951 M:      Tony Luck <[email protected]>
5952 R:      Qiuxu Zhuo <[email protected]>
5953 L:      [email protected]
5954 S:      Maintained
5955 F:      drivers/edac/sb_edac.c
5956
5957 EDAC-SIFIVE
5958 M:      Yash Shah <[email protected]>
5959 L:      [email protected]
5960 S:      Supported
5961 F:      drivers/edac/sifive_edac.c
5962
5963 EDAC-SKYLAKE
5964 M:      Tony Luck <[email protected]>
5965 L:      [email protected]
5966 S:      Maintained
5967 F:      drivers/edac/skx_*.c
5968
5969 EDAC-TI
5970 M:      Tero Kristo <[email protected]>
5971 L:      [email protected]
5972 S:      Maintained
5973 F:      drivers/edac/ti_edac.c
5974
5975 EDAC-QCOM
5976 M:      Channagoud Kadabi <[email protected]>
5977 M:      Venkata Narendra Kumar Gutta <[email protected]>
5978 L:      [email protected]
5979 L:      [email protected]
5980 S:      Maintained
5981 F:      drivers/edac/qcom_edac.c
5982
5983 EDIROL UA-101/UA-1000 DRIVER
5984 M:      Clemens Ladisch <[email protected]>
5985 L:      [email protected] (moderated for non-subscribers)
5986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
5987 S:      Maintained
5988 F:      sound/usb/misc/ua101.c
5989
5990 EFI TEST DRIVER
5991 L:      [email protected]
5992 M:      Ivan Hu <[email protected]>
5993 M:      Ard Biesheuvel <[email protected]>
5994 S:      Maintained
5995 F:      drivers/firmware/efi/test/
5996
5997 EFI VARIABLE FILESYSTEM
5998 M:      Matthew Garrett <[email protected]>
5999 M:      Jeremy Kerr <[email protected]>
6000 M:      Ard Biesheuvel <[email protected]>
6001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6002 L:      [email protected]
6003 S:      Maintained
6004 F:      fs/efivarfs/
6005
6006 EFIFB FRAMEBUFFER DRIVER
6007 L:      [email protected]
6008 M:      Peter Jones <[email protected]>
6009 S:      Maintained
6010 F:      drivers/video/fbdev/efifb.c
6011
6012 EFS FILESYSTEM
6013 W:      http://aeschi.ch.eu.org/efs/
6014 S:      Orphan
6015 F:      fs/efs/
6016
6017 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6018 M:      Douglas Miller <[email protected]>
6019 L:      [email protected]
6020 S:      Maintained
6021 F:      drivers/net/ethernet/ibm/ehea/
6022
6023 EM28XX VIDEO4LINUX DRIVER
6024 M:      Mauro Carvalho Chehab <[email protected]>
6025 L:      [email protected]
6026 W:      https://linuxtv.org
6027 T:      git git://linuxtv.org/media_tree.git
6028 S:      Maintained
6029 F:      drivers/media/usb/em28xx/
6030 F:      Documentation/media/v4l-drivers/em28xx*
6031
6032 EMBEDDED LINUX
6033 M:      Paul Gortmaker <[email protected]>
6034 M:      Matt Mackall <[email protected]>
6035 M:      David Woodhouse <[email protected]>
6036 L:      [email protected]
6037 S:      Maintained
6038
6039 Emulex 10Gbps iSCSI - OneConnect DRIVER
6040 M:      Subbu Seetharaman <[email protected]>
6041 M:      Ketan Mukadam <[email protected]>
6042 M:      Jitendra Bhivare <[email protected]>
6043 L:      [email protected]
6044 W:      http://www.broadcom.com
6045 S:      Supported
6046 F:      drivers/scsi/be2iscsi/
6047
6048 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6049 M:      Sathya Perla <[email protected]>
6050 M:      Ajit Khaparde <[email protected]>
6051 M:      Sriharsha Basavapatna <[email protected]>
6052 M:      Somnath Kotur <[email protected]>
6053 L:      [email protected]
6054 W:      http://www.emulex.com
6055 S:      Supported
6056 F:      drivers/net/ethernet/emulex/benet/
6057
6058 EMULEX ONECONNECT ROCE DRIVER
6059 M:      Selvin Xavier <[email protected]>
6060 M:      Devesh Sharma <[email protected]>
6061 L:      [email protected]
6062 W:      http://www.broadcom.com
6063 S:      Odd Fixes
6064 F:      drivers/infiniband/hw/ocrdma/
6065 F:      include/uapi/rdma/ocrdma-abi.h
6066
6067 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6068 M:      James Smart <[email protected]>
6069 M:      Dick Kennedy <[email protected]>
6070 L:      [email protected]
6071 W:      http://www.broadcom.com
6072 S:      Supported
6073 F:      drivers/scsi/lpfc/
6074
6075 ENE CB710 FLASH CARD READER DRIVER
6076 M:      Michał Mirosław <[email protected]>
6077 S:      Maintained
6078 F:      drivers/misc/cb710/
6079 F:      drivers/mmc/host/cb710-mmc.*
6080 F:      include/linux/cb710.h
6081
6082 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6083 M:      Maxim Levitsky <[email protected]>
6084 S:      Maintained
6085 F:      drivers/media/rc/ene_ir.*
6086
6087 EPSON S1D13XXX FRAMEBUFFER DRIVER
6088 M:      Kristoffer Ericson <[email protected]>
6089 S:      Maintained
6090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6091 F:      drivers/video/fbdev/s1d13xxxfb.c
6092 F:      include/video/s1d13xxxfb.h
6093
6094 EROFS FILE SYSTEM
6095 M:      Gao Xiang <[email protected]>
6096 M:      Chao Yu <[email protected]>
6097 L:      [email protected]
6098 S:      Maintained
6099 F:      fs/erofs/
6100
6101 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6102 M:      Jeff Layton <[email protected]>
6103 S:      Maintained
6104 F:      lib/errseq.c
6105 F:      include/linux/errseq.h
6106
6107 ET131X NETWORK DRIVER
6108 M:      Mark Einon <[email protected]>
6109 S:      Odd Fixes
6110 F:      drivers/net/ethernet/agere/
6111
6112 ETHERNET BRIDGE
6113 M:      Roopa Prabhu <[email protected]>
6114 M:      Nikolay Aleksandrov <[email protected]>
6115 L:      [email protected] (moderated for non-subscribers)
6116 L:      [email protected]
6117 W:      http://www.linuxfoundation.org/en/Net:Bridge
6118 S:      Maintained
6119 F:      include/linux/netfilter_bridge/
6120 F:      net/bridge/
6121
6122 ETHERNET PHY LIBRARY
6123 M:      Andrew Lunn <[email protected]>
6124 M:      Florian Fainelli <[email protected]>
6125 M:      Heiner Kallweit <[email protected]>
6126 L:      [email protected]
6127 S:      Maintained
6128 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6129 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6130 F:      Documentation/devicetree/bindings/net/mdio*
6131 F:      Documentation/networking/phy.rst
6132 F:      drivers/net/phy/
6133 F:      drivers/of/of_mdio.c
6134 F:      drivers/of/of_net.c
6135 F:      include/linux/*mdio*.h
6136 F:      include/linux/of_net.h
6137 F:      include/linux/phy.h
6138 F:      include/linux/phy_fixed.h
6139 F:      include/linux/platform_data/mdio-bcm-unimac.h
6140 F:      include/linux/platform_data/mdio-gpio.h
6141 F:      include/trace/events/mdio.h
6142 F:      include/uapi/linux/mdio.h
6143 F:      include/uapi/linux/mii.h
6144
6145 EXFAT FILE SYSTEM
6146 M:      Valdis Kletnieks <[email protected]>
6147 S:      Maintained
6148 F:      drivers/staging/exfat/
6149
6150 EXT2 FILE SYSTEM
6151 M:      Jan Kara <[email protected]>
6152 L:      [email protected]
6153 S:      Maintained
6154 F:      Documentation/filesystems/ext2.txt
6155 F:      fs/ext2/
6156 F:      include/linux/ext2*
6157
6158 EXT4 FILE SYSTEM
6159 M:      "Theodore Ts'o" <[email protected]>
6160 M:      Andreas Dilger <[email protected]>
6161 L:      [email protected]
6162 W:      http://ext4.wiki.kernel.org
6163 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6165 S:      Maintained
6166 F:      Documentation/filesystems/ext4/
6167 F:      fs/ext4/
6168
6169 Extended Verification Module (EVM)
6170 M:      Mimi Zohar <[email protected]>
6171 L:      [email protected]
6172 S:      Supported
6173 F:      security/integrity/evm/
6174
6175 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6176 M:      Ard Biesheuvel <[email protected]>
6177 L:      [email protected]
6178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6179 S:      Maintained
6180 F:      Documentation/admin-guide/efi-stub.rst
6181 F:      arch/*/kernel/efi.c
6182 F:      arch/x86/boot/compressed/eboot.[ch]
6183 F:      arch/*/include/asm/efi.h
6184 F:      arch/x86/platform/efi/
6185 F:      drivers/firmware/efi/
6186 F:      include/linux/efi*.h
6187 F:      arch/arm/boot/compressed/efi-header.S
6188 F:      arch/arm64/kernel/efi-entry.S
6189
6190 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6191 M:      MyungJoo Ham <[email protected]>
6192 M:      Chanwoo Choi <[email protected]>
6193 L:      [email protected]
6194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6195 S:      Maintained
6196 F:      drivers/extcon/
6197 F:      include/linux/extcon/
6198 F:      include/linux/extcon.h
6199 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6200 F:      Documentation/devicetree/bindings/extcon/
6201
6202 EXYNOS DP DRIVER
6203 M:      Jingoo Han <[email protected]>
6204 L:      [email protected]
6205 S:      Maintained
6206 F:      drivers/gpu/drm/exynos/exynos_dp*
6207
6208 EXYNOS SYSMMU (IOMMU) driver
6209 M:      Marek Szyprowski <[email protected]>
6210 L:      [email protected]
6211 S:      Maintained
6212 F:      drivers/iommu/exynos-iommu.c
6213
6214 EZchip NPS platform support
6215 M:      Vineet Gupta <[email protected]>
6216 M:      Ofer Levi <[email protected]>
6217 S:      Supported
6218 F:      arch/arc/plat-eznps
6219 F:      arch/arc/boot/dts/eznps.dts
6220
6221 F2FS FILE SYSTEM
6222 M:      Jaegeuk Kim <[email protected]>
6223 M:      Chao Yu <[email protected]>
6224 L:      [email protected]
6225 W:      https://f2fs.wiki.kernel.org/
6226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6227 S:      Maintained
6228 F:      Documentation/filesystems/f2fs.txt
6229 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6230 F:      fs/f2fs/
6231 F:      include/linux/f2fs_fs.h
6232 F:      include/trace/events/f2fs.h
6233
6234 F71805F HARDWARE MONITORING DRIVER
6235 M:      Jean Delvare <[email protected]>
6236 L:      [email protected]
6237 S:      Maintained
6238 F:      Documentation/hwmon/f71805f.rst
6239 F:      drivers/hwmon/f71805f.c
6240
6241 FADDR2LINE
6242 M:      Josh Poimboeuf <[email protected]>
6243 S:      Maintained
6244 F:      scripts/faddr2line
6245
6246 FAILOVER MODULE
6247 M:      Sridhar Samudrala <[email protected]>
6248 L:      [email protected]
6249 S:      Supported
6250 F:      net/core/failover.c
6251 F:      include/net/failover.h
6252 F:      Documentation/networking/failover.rst
6253
6254 FANOTIFY
6255 M:      Jan Kara <[email protected]>
6256 R:      Amir Goldstein <[email protected]>
6257 L:      [email protected]
6258 S:      Maintained
6259 F:      fs/notify/fanotify/
6260 F:      include/linux/fanotify.h
6261 F:      include/uapi/linux/fanotify.h
6262
6263 FARSYNC SYNCHRONOUS DRIVER
6264 M:      Kevin Curtis <[email protected]>
6265 W:      http://www.farsite.co.uk/
6266 S:      Supported
6267 F:      drivers/net/wan/farsync.*
6268
6269 FAULT INJECTION SUPPORT
6270 M:      Akinobu Mita <[email protected]>
6271 S:      Supported
6272 F:      Documentation/fault-injection/
6273 F:      lib/fault-inject.c
6274
6275 FBTFT Framebuffer drivers
6276 S:      Orphan
6277 L:      [email protected]
6278 L:      [email protected]
6279 F:      drivers/staging/fbtft/
6280
6281 FC0011 TUNER DRIVER
6282 M:      Michael Buesch <[email protected]>
6283 L:      [email protected]
6284 S:      Maintained
6285 F:      drivers/media/tuners/fc0011.h
6286 F:      drivers/media/tuners/fc0011.c
6287
6288 FC2580 MEDIA DRIVER
6289 M:      Antti Palosaari <[email protected]>
6290 L:      [email protected]
6291 W:      https://linuxtv.org
6292 W:      http://palosaari.fi/linux/
6293 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6294 T:      git git://linuxtv.org/anttip/media_tree.git
6295 S:      Maintained
6296 F:      drivers/media/tuners/fc2580*
6297
6298 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6299 M:      Hannes Reinecke <[email protected]>
6300 L:      [email protected]
6301 W:      www.Open-FCoE.org
6302 S:      Supported
6303 F:      drivers/scsi/libfc/
6304 F:      drivers/scsi/fcoe/
6305 F:      include/scsi/fc/
6306 F:      include/scsi/libfc.h
6307 F:      include/scsi/libfcoe.h
6308 F:      include/uapi/scsi/fc/
6309
6310 FILE LOCKING (flock() and fcntl()/lockf())
6311 M:      Jeff Layton <[email protected]>
6312 M:      "J. Bruce Fields" <[email protected]>
6313 L:      [email protected]
6314 S:      Maintained
6315 F:      include/linux/fcntl.h
6316 F:      include/uapi/linux/fcntl.h
6317 F:      fs/fcntl.c
6318 F:      fs/locks.c
6319
6320 FILESYSTEMS (VFS and infrastructure)
6321 M:      Alexander Viro <[email protected]>
6322 L:      [email protected]
6323 S:      Maintained
6324 F:      fs/*
6325 F:      include/linux/fs.h
6326 F:      include/linux/fs_types.h
6327 F:      include/uapi/linux/fs.h
6328
6329 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6330 M:      Riku Voipio <[email protected]>
6331 L:      [email protected]
6332 S:      Maintained
6333 F:      drivers/hwmon/f75375s.c
6334 F:      include/linux/f75375s.h
6335
6336 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6337 M:      Clemens Ladisch <[email protected]>
6338 M:      Takashi Sakamoto <[email protected]>
6339 L:      [email protected] (moderated for non-subscribers)
6340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6341 S:      Maintained
6342 F:      sound/firewire/
6343 F:      include/uapi/sound/firewire.h
6344
6345 FIREWIRE MEDIA DRIVERS (firedtv)
6346 M:      Stefan Richter <[email protected]>
6347 L:      [email protected]
6348 L:      [email protected]
6349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6350 S:      Maintained
6351 F:      drivers/media/firewire/
6352
6353 FIREWIRE SBP-2 TARGET
6354 M:      Chris Boot <[email protected]>
6355 L:      [email protected]
6356 L:      [email protected]
6357 L:      [email protected]
6358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6359 S:      Maintained
6360 F:      drivers/target/sbp/
6361
6362 FIREWIRE SUBSYSTEM
6363 M:      Stefan Richter <[email protected]>
6364 L:      [email protected]
6365 W:      http://ieee1394.wiki.kernel.org/
6366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6367 S:      Maintained
6368 F:      drivers/firewire/
6369 F:      include/linux/firewire.h
6370 F:      include/uapi/linux/firewire*.h
6371 F:      tools/firewire/
6372
6373 FIRMWARE LOADER (request_firmware)
6374 M:      Luis Chamberlain <[email protected]>
6375 L:      [email protected]
6376 S:      Maintained
6377 F:      Documentation/firmware_class/
6378 F:      drivers/base/firmware_loader/
6379 F:      include/linux/firmware.h
6380
6381 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6382 M:      Joshua Morris <[email protected]>
6383 M:      Philip Kelleher <[email protected]>
6384 S:      Maintained
6385 F:      drivers/block/rsxx/
6386
6387 FLEXTIMER FTM-QUADDEC DRIVER
6388 M:      Patrick Havelange <[email protected]>
6389 L:      [email protected]
6390 S:      Maintained
6391 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6392 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6393 F:      drivers/counter/ftm-quaddec.c
6394
6395 FLOPPY DRIVER
6396 M:      Denis Efremov <[email protected]>
6397 S:      Odd Fixes
6398 L:      [email protected]
6399 F:      drivers/block/floppy.c
6400
6401 FPGA MANAGER FRAMEWORK
6402 M:      Moritz Fischer <[email protected]>
6403 L:      [email protected]
6404 S:      Maintained
6405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6406 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6407 F:      Documentation/fpga/
6408 F:      Documentation/driver-api/fpga/
6409 F:      Documentation/devicetree/bindings/fpga/
6410 F:      drivers/fpga/
6411 F:      include/linux/fpga/
6412 W:      http://www.rocketboards.org
6413
6414 FPGA DFL DRIVERS
6415 M:      Wu Hao <[email protected]>
6416 L:      [email protected]
6417 S:      Maintained
6418 F:      Documentation/fpga/dfl.rst
6419 F:      include/uapi/linux/fpga-dfl.h
6420 F:      drivers/fpga/dfl*
6421
6422 FPU EMULATOR
6423 M:      Bill Metzenthen <[email protected]>
6424 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6425 S:      Maintained
6426 F:      arch/x86/math-emu/
6427
6428 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6429 L:      [email protected]
6430 S:      Orphan
6431 F:      drivers/net/wan/dlci.c
6432 F:      drivers/net/wan/sdla.c
6433
6434 FRAMEBUFFER LAYER
6435 M:      Bartlomiej Zolnierkiewicz <[email protected]>
6436 L:      [email protected]
6437 L:      [email protected]
6438 T:      git git://anongit.freedesktop.org/drm/drm-misc
6439 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6440 S:      Maintained
6441 F:      Documentation/fb/
6442 F:      drivers/video/
6443 F:      include/video/
6444 F:      include/linux/fb.h
6445 F:      include/uapi/video/
6446 F:      include/uapi/linux/fb.h
6447
6448 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6449 M:      Horia Geantă <[email protected]>
6450 M:      Aymen Sghaier <[email protected]>
6451 L:      [email protected]
6452 S:      Maintained
6453 F:      drivers/crypto/caam/
6454 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6455
6456 FREESCALE DIU FRAMEBUFFER DRIVER
6457 M:      Timur Tabi <[email protected]>
6458 L:      [email protected]
6459 S:      Maintained
6460 F:      drivers/video/fbdev/fsl-diu-fb.*
6461
6462 FREESCALE DMA DRIVER
6463 M:      Li Yang <[email protected]>
6464 M:      Zhang Wei <[email protected]>
6465 L:      [email protected]
6466 S:      Maintained
6467 F:      drivers/dma/fsldma.*
6468
6469 FREESCALE ENETC ETHERNET DRIVERS
6470 M:      Claudiu Manoil <[email protected]>
6471 L:      [email protected]
6472 S:      Maintained
6473 F:      drivers/net/ethernet/freescale/enetc/
6474
6475 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6476 M:      Claudiu Manoil <[email protected]>
6477 L:      [email protected]
6478 S:      Maintained
6479 F:      drivers/net/ethernet/freescale/gianfar*
6480 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6481
6482 FREESCALE GPMI NAND DRIVER
6483 M:      Han Xu <[email protected]>
6484 L:      [email protected]
6485 S:      Maintained
6486 F:      drivers/mtd/nand/raw/gpmi-nand/*
6487
6488 FREESCALE I2C CPM DRIVER
6489 M:      Jochen Friedrich <[email protected]>
6490 L:      [email protected]
6491 L:      [email protected]
6492 S:      Maintained
6493 F:      drivers/i2c/busses/i2c-cpm.c
6494
6495 FREESCALE IMX DDR PMU DRIVER
6496 M:      Frank Li <[email protected]>
6497 L:      [email protected]
6498 S:      Maintained
6499 F:      drivers/perf/fsl_imx8_ddr_perf.c
6500 F:      Documentation/admin-guide/perf/imx-ddr.rst
6501 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6502
6503 FREESCALE IMX I2C DRIVER
6504 M:      Oleksij Rempel <[email protected]>
6505 R:      Pengutronix Kernel Team <[email protected]>
6506 L:      [email protected]
6507 S:      Maintained
6508 F:      drivers/i2c/busses/i2c-imx.c
6509 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6510
6511 FREESCALE IMX LPI2C DRIVER
6512 M:      Dong Aisheng <[email protected]>
6513 L:      [email protected]
6514 L:      [email protected]
6515 S:      Maintained
6516 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6517 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6518
6519 FREESCALE IMX / MXC FEC DRIVER
6520 M:      Fugang Duan <[email protected]>
6521 L:      [email protected]
6522 S:      Maintained
6523 F:      drivers/net/ethernet/freescale/fec_main.c
6524 F:      drivers/net/ethernet/freescale/fec_ptp.c
6525 F:      drivers/net/ethernet/freescale/fec.h
6526 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6527
6528 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6529 M:      Sascha Hauer <[email protected]>
6530 R:      Pengutronix Kernel Team <[email protected]>
6531 L:      [email protected]
6532 L:      [email protected] (moderated for non-subscribers)
6533 S:      Maintained
6534 F:      include/linux/platform_data/video-imxfb.h
6535 F:      drivers/video/fbdev/imxfb.c
6536
6537 FREESCALE QORIQ DPAA ETHERNET DRIVER
6538 M:      Madalin Bucur <[email protected]>
6539 L:      [email protected]
6540 S:      Maintained
6541 F:      drivers/net/ethernet/freescale/dpaa
6542
6543 FREESCALE QORIQ DPAA FMAN DRIVER
6544 M:      Madalin Bucur <[email protected]>
6545 L:      [email protected]
6546 S:      Maintained
6547 F:      drivers/net/ethernet/freescale/fman
6548 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6549
6550 FREESCALE QORIQ PTP CLOCK DRIVER
6551 M:      Yangbo Lu <[email protected]>
6552 L:      [email protected]
6553 S:      Maintained
6554 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6555 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6556 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6557 F:      drivers/ptp/ptp_qoriq.c
6558 F:      drivers/ptp/ptp_qoriq_debugfs.c
6559 F:      include/linux/fsl/ptp_qoriq.h
6560 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6561
6562 FREESCALE QUAD SPI DRIVER
6563 M:      Han Xu <[email protected]>
6564 L:      [email protected]
6565 S:      Maintained
6566 F:      drivers/spi/spi-fsl-qspi.c
6567
6568 FREESCALE QUICC ENGINE LIBRARY
6569 M:      Qiang Zhao <[email protected]>
6570 L:      [email protected]
6571 S:      Maintained
6572 F:      drivers/soc/fsl/qe/
6573 F:      include/soc/fsl/*qe*.h
6574 F:      include/soc/fsl/*ucc*.h
6575
6576 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6577 M:      Li Yang <[email protected]>
6578 L:      [email protected]
6579 L:      [email protected]
6580 S:      Maintained
6581 F:      drivers/net/ethernet/freescale/ucc_geth*
6582
6583 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6584 M:      Zhao Qiang <[email protected]>
6585 L:      [email protected]
6586 L:      [email protected]
6587 S:      Maintained
6588 F:      drivers/net/wan/fsl_ucc_hdlc*
6589
6590 FREESCALE QUICC ENGINE UCC UART DRIVER
6591 M:      Timur Tabi <[email protected]>
6592 L:      [email protected]
6593 S:      Maintained
6594 F:      drivers/tty/serial/ucc_uart.c
6595
6596 FREESCALE SOC DRIVERS
6597 M:      Li Yang <[email protected]>
6598 L:      [email protected]
6599 L:      [email protected]
6600 S:      Maintained
6601 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6602 F:      Documentation/devicetree/bindings/soc/fsl/
6603 F:      drivers/soc/fsl/
6604 F:      include/linux/fsl/
6605
6606 FREESCALE SOC FS_ENET DRIVER
6607 M:      Pantelis Antoniou <[email protected]>
6608 L:      [email protected]
6609 L:      [email protected]
6610 S:      Maintained
6611 F:      drivers/net/ethernet/freescale/fs_enet/
6612 F:      include/linux/fs_enet_pd.h
6613
6614 FREESCALE SOC SOUND DRIVERS
6615 M:      Timur Tabi <[email protected]>
6616 M:      Nicolin Chen <[email protected]>
6617 M:      Xiubo Li <[email protected]>
6618 R:      Fabio Estevam <[email protected]>
6619 L:      [email protected] (moderated for non-subscribers)
6620 L:      [email protected]
6621 S:      Maintained
6622 F:      sound/soc/fsl/fsl*
6623 F:      sound/soc/fsl/imx*
6624 F:      sound/soc/fsl/mpc8610_hpcd.c
6625
6626 FREESCALE USB PERIPHERAL DRIVERS
6627 M:      Li Yang <[email protected]>
6628 L:      [email protected]
6629 L:      [email protected]
6630 S:      Maintained
6631 F:      drivers/usb/gadget/udc/fsl*
6632
6633 FREEVXFS FILESYSTEM
6634 M:      Christoph Hellwig <[email protected]>
6635 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6636 S:      Maintained
6637 F:      fs/freevxfs/
6638
6639 FREEZER
6640 M:      "Rafael J. Wysocki" <[email protected]>
6641 M:      Pavel Machek <[email protected]>
6642 L:      [email protected]
6643 S:      Supported
6644 F:      Documentation/power/freezing-of-tasks.rst
6645 F:      include/linux/freezer.h
6646 F:      kernel/freezer.c
6647
6648 FRONTSWAP API
6649 M:      Konrad Rzeszutek Wilk <[email protected]>
6650 L:      [email protected]
6651 S:      Maintained
6652 F:      mm/frontswap.c
6653 F:      include/linux/frontswap.h
6654
6655 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6656 M:      David Howells <[email protected]>
6657 L:      [email protected] (moderated for non-subscribers)
6658 S:      Supported
6659 F:      Documentation/filesystems/caching/
6660 F:      fs/fscache/
6661 F:      include/linux/fscache*.h
6662
6663 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6664 M:      Theodore Y. Ts'o <[email protected]>
6665 M:      Jaegeuk Kim <[email protected]>
6666 M:      Eric Biggers <[email protected]>
6667 L:      [email protected]
6668 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6669 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6670 S:      Supported
6671 F:      fs/crypto/
6672 F:      include/linux/fscrypt*.h
6673 F:      include/uapi/linux/fscrypt.h
6674 F:      Documentation/filesystems/fscrypt.rst
6675
6676 FSI SUBSYSTEM
6677 M:      Jeremy Kerr <[email protected]>
6678 M:      Joel Stanley <[email protected]>
6679 R:      Alistar Popple <[email protected]>
6680 R:      Eddie James <[email protected]>
6681 L:      [email protected]
6682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6683 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6684 S:      Supported
6685 F:      drivers/fsi/
6686 F:      include/linux/fsi*.h
6687 F:      include/trace/events/fsi*.h
6688
6689 FSI-ATTACHED I2C DRIVER
6690 M:      Eddie James <[email protected]>
6691 L:      [email protected]
6692 L:      [email protected] (moderated for non-subscribers)
6693 S:      Maintained
6694 F:      drivers/i2c/busses/i2c-fsi.c
6695 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6696
6697 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6698 M:      Jan Kara <[email protected]>
6699 R:      Amir Goldstein <[email protected]>
6700 L:      [email protected]
6701 S:      Maintained
6702 F:      fs/notify/
6703 F:      include/linux/fsnotify*.h
6704
6705 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
6706 M:      Eric Biggers <[email protected]>
6707 M:      Theodore Y. Ts'o <[email protected]>
6708 L:      [email protected]
6709 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6710 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
6711 S:      Supported
6712 F:      fs/verity/
6713 F:      include/linux/fsverity.h
6714 F:      include/uapi/linux/fsverity.h
6715 F:      Documentation/filesystems/fsverity.rst
6716
6717 FUJITSU LAPTOP EXTRAS
6718 M:      Jonathan Woithe <[email protected]>
6719 L:      [email protected]
6720 S:      Maintained
6721 F:      drivers/platform/x86/fujitsu-laptop.c
6722
6723 FUJITSU M-5MO LS CAMERA ISP DRIVER
6724 M:      Kyungmin Park <[email protected]>
6725 M:      Heungjun Kim <[email protected]>
6726 L:      [email protected]
6727 S:      Maintained
6728 F:      drivers/media/i2c/m5mols/
6729 F:      include/media/i2c/m5mols.h
6730
6731 FUJITSU TABLET EXTRAS
6732 M:      Robert Gerlach <[email protected]>
6733 L:      [email protected]
6734 S:      Maintained
6735 F:      drivers/platform/x86/fujitsu-tablet.c
6736
6737 FUSE: FILESYSTEM IN USERSPACE
6738 M:      Miklos Szeredi <[email protected]>
6739 L:      [email protected]
6740 W:      http://fuse.sourceforge.net/
6741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6742 S:      Maintained
6743 F:      fs/fuse/
6744 F:      include/uapi/linux/fuse.h
6745 F:      Documentation/filesystems/fuse.txt
6746
6747 FUTEX SUBSYSTEM
6748 M:      Thomas Gleixner <[email protected]>
6749 M:      Ingo Molnar <[email protected]>
6750 R:      Peter Zijlstra <[email protected]>
6751 R:      Darren Hart <[email protected]>
6752 L:      [email protected]
6753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
6754 S:      Maintained
6755 F:      kernel/futex.c
6756 F:      include/asm-generic/futex.h
6757 F:      include/linux/futex.h
6758 F:      include/uapi/linux/futex.h
6759 F:      tools/testing/selftests/futex/
6760 F:      tools/perf/bench/futex*
6761 F:      Documentation/*futex*
6762
6763 GCC PLUGINS
6764 M:      Kees Cook <[email protected]>
6765 R:      Emese Revfy <[email protected]>
6766 L:      [email protected]
6767 S:      Maintained
6768 F:      scripts/gcc-plugins/
6769 F:      scripts/gcc-plugin.sh
6770 F:      scripts/Makefile.gcc-plugins
6771 F:      Documentation/core-api/gcc-plugins.rst
6772
6773 GASKET DRIVER FRAMEWORK
6774 M:      Rob Springer <[email protected]>
6775 M:      Todd Poynor <[email protected]>
6776 M:      Ben Chan <[email protected]>
6777 S:      Maintained
6778 F:      drivers/staging/gasket/
6779
6780 GCOV BASED KERNEL PROFILING
6781 M:      Peter Oberparleiter <[email protected]>
6782 S:      Maintained
6783 F:      kernel/gcov/
6784 F:      Documentation/dev-tools/gcov.rst
6785
6786 GDB KERNEL DEBUGGING HELPER SCRIPTS
6787 M:      Jan Kiszka <[email protected]>
6788 M:      Kieran Bingham <[email protected]>
6789 S:      Supported
6790 F:      scripts/gdb/
6791
6792 GDT SCSI DISK ARRAY CONTROLLER DRIVER
6793 M:      Achim Leubner <[email protected]>
6794 L:      [email protected]
6795 W:      http://www.icp-vortex.com/
6796 S:      Supported
6797 F:      drivers/scsi/gdt*
6798
6799 GEMTEK FM RADIO RECEIVER DRIVER
6800 M:      Hans Verkuil <[email protected]>
6801 L:      [email protected]
6802 T:      git git://linuxtv.org/media_tree.git
6803 W:      https://linuxtv.org
6804 S:      Maintained
6805 F:      drivers/media/radio/radio-gemtek*
6806
6807 GENERIC ARCHITECTURE TOPOLOGY
6808 M:      Sudeep Holla <[email protected]>
6809 L:      [email protected]
6810 S:      Maintained
6811 F:      drivers/base/arch_topology.c
6812 F:      include/linux/arch_topology.h
6813
6814 GENERIC GPIO I2C DRIVER
6815 M:      Wolfram Sang <[email protected]>
6816 S:      Supported
6817 F:      drivers/i2c/busses/i2c-gpio.c
6818 F:      include/linux/platform_data/i2c-gpio.h
6819
6820 GENERIC GPIO I2C MULTIPLEXER DRIVER
6821 M:      Peter Korsgaard <[email protected]>
6822 L:      [email protected]
6823 S:      Supported
6824 F:      drivers/i2c/muxes/i2c-mux-gpio.c
6825 F:      include/linux/platform_data/i2c-mux-gpio.h
6826 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
6827
6828 GENERIC HDLC (WAN) DRIVERS
6829 M:      Krzysztof Halasa <[email protected]>
6830 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
6831 S:      Maintained
6832 F:      drivers/net/wan/c101.c
6833 F:      drivers/net/wan/hd6457*
6834 F:      drivers/net/wan/hdlc*
6835 F:      drivers/net/wan/n2.c
6836 F:      drivers/net/wan/pc300too.c
6837 F:      drivers/net/wan/pci200syn.c
6838 F:      drivers/net/wan/wanxl*
6839
6840 GENERIC INCLUDE/ASM HEADER FILES
6841 M:      Arnd Bergmann <[email protected]>
6842 L:      [email protected]
6843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
6844 S:      Maintained
6845 F:      include/asm-generic/
6846 F:      include/uapi/asm-generic/
6847
6848 GENERIC PHY FRAMEWORK
6849 M:      Kishon Vijay Abraham I <[email protected]>
6850 L:      [email protected]
6851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
6852 S:      Supported
6853 F:      drivers/phy/
6854 F:      include/linux/phy/
6855 F:      Documentation/devicetree/bindings/phy/
6856
6857 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
6858 M:      Wolfram Sang <[email protected]>
6859 S:      Supported
6860 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
6861
6862 GENERIC PM DOMAINS
6863 M:      "Rafael J. Wysocki" <[email protected]>
6864 M:      Kevin Hilman <[email protected]>
6865 M:      Ulf Hansson <[email protected]>
6866 L:      [email protected]
6867 S:      Supported
6868 F:      drivers/base/power/domain*.c
6869 F:      include/linux/pm_domain.h
6870 F:      Documentation/devicetree/bindings/power/power_domain.txt
6871
6872 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
6873 M:      Eugen Hristev <[email protected]>
6874 L:      [email protected]
6875 S:      Maintained
6876 F:      drivers/input/touchscreen/resistive-adc-touch.c
6877
6878 GENERIC UIO DRIVER FOR PCI DEVICES
6879 M:      "Michael S. Tsirkin" <[email protected]>
6880 L:      [email protected]
6881 S:      Supported
6882 F:      drivers/uio/uio_pci_generic.c
6883
6884 GENERIC VDSO LIBRARY:
6885 M:      Andy Lutomirski <[email protected]>
6886 M:      Thomas Gleixner <[email protected]>
6887 M:      Vincenzo Frascino <[email protected]>
6888 L:      [email protected]
6889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
6890 S:      Maintained
6891 F:      lib/vdso/
6892 F:      kernel/time/vsyscall.c
6893 F:      include/vdso/
6894 F:      include/asm-generic/vdso/vsyscall.h
6895
6896 GENWQE (IBM Generic Workqueue Card)
6897 M:      Frank Haverkamp <[email protected]>
6898 S:      Supported
6899 F:      drivers/misc/genwqe/
6900
6901 GET_MAINTAINER SCRIPT
6902 M:      Joe Perches <[email protected]>
6903 S:      Maintained
6904 F:      scripts/get_maintainer.pl
6905
6906 GFS2 FILE SYSTEM
6907 M:      Bob Peterson <[email protected]>
6908 M:      Andreas Gruenbacher <[email protected]>
6909 L:      [email protected]
6910 W:      http://sources.redhat.com/cluster/
6911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
6912 S:      Supported
6913 F:      Documentation/filesystems/gfs2*.txt
6914 F:      fs/gfs2/
6915 F:      include/uapi/linux/gfs2_ondisk.h
6916
6917 GNSS SUBSYSTEM
6918 M:      Johan Hovold <[email protected]>
6919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
6920 S:      Maintained
6921 F:      Documentation/ABI/testing/sysfs-class-gnss
6922 F:      Documentation/devicetree/bindings/gnss/
6923 F:      drivers/gnss/
6924 F:      include/linux/gnss.h
6925
6926 GO7007 MPEG CODEC
6927 M:      Hans Verkuil <[email protected]>
6928 L:      [email protected]
6929 S:      Maintained
6930 F:      drivers/media/usb/go7007/
6931
6932 GOODIX TOUCHSCREEN
6933 M:      Bastien Nocera <[email protected]>
6934 L:      [email protected]
6935 S:      Maintained
6936 F:      drivers/input/touchscreen/goodix.c
6937
6938 GOOGLE ETHERNET DRIVERS
6939 M:      Catherine Sullivan <[email protected]>
6940 R:      Sagi Shahar <[email protected]>
6941 R:      Jon Olson <[email protected]>
6942 L:      [email protected]
6943 S:      Supported
6944 F:      Documentation/networking/device_drivers/google/gve.rst
6945 F:      drivers/net/ethernet/google
6946
6947 GPD POCKET FAN DRIVER
6948 M:      Hans de Goede <[email protected]>
6949 L:      [email protected]
6950 S:      Maintained
6951 F:      drivers/platform/x86/gpd-pocket-fan.c
6952
6953 GPIO ACPI SUPPORT
6954 M:      Mika Westerberg <[email protected]>
6955 M:      Andy Shevchenko <[email protected]>
6956 L:      [email protected]
6957 L:      [email protected]
6958 S:      Maintained
6959 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
6960 F:      drivers/gpio/gpiolib-acpi.c
6961
6962 GPIO IR Transmitter
6963 M:      Sean Young <[email protected]>
6964 L:      [email protected]
6965 S:      Maintained
6966 F:      drivers/media/rc/gpio-ir-tx.c
6967
6968 GPIO MOCKUP DRIVER
6969 M:      Bamvor Jian Zhang <[email protected]>
6970 L:      [email protected]
6971 S:      Maintained
6972 F:      drivers/gpio/gpio-mockup.c
6973 F:      tools/testing/selftests/gpio/
6974
6975 GPIO SUBSYSTEM
6976 M:      Linus Walleij <[email protected]>
6977 M:      Bartosz Golaszewski <[email protected]>
6978 L:      [email protected]
6979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
6980 S:      Maintained
6981 F:      Documentation/devicetree/bindings/gpio/
6982 F:      Documentation/driver-api/gpio/
6983 F:      Documentation/admin-guide/gpio/
6984 F:      Documentation/ABI/testing/gpio-cdev
6985 F:      Documentation/ABI/obsolete/sysfs-gpio
6986 F:      drivers/gpio/
6987 F:      include/linux/gpio/
6988 F:      include/linux/gpio.h
6989 F:      include/linux/of_gpio.h
6990 F:      include/asm-generic/gpio.h
6991 F:      include/uapi/linux/gpio.h
6992 F:      tools/gpio/
6993
6994 GRE DEMULTIPLEXER DRIVER
6995 M:      Dmitry Kozlov <[email protected]>
6996 L:      [email protected]
6997 S:      Maintained
6998 F:      net/ipv4/gre_demux.c
6999 F:      net/ipv4/gre_offload.c
7000 F:      include/net/gre.h
7001
7002 GRETH 10/100/1G Ethernet MAC device driver
7003 M:      Andreas Larsson <[email protected]>
7004 L:      [email protected]
7005 S:      Maintained
7006 F:      drivers/net/ethernet/aeroflex/
7007
7008 GREYBUS AUDIO PROTOCOLS DRIVERS
7009 M:      Vaibhav Agarwal <[email protected]>
7010 M:      Mark Greer <[email protected]>
7011 S:      Maintained
7012 F:      drivers/staging/greybus/audio_apbridgea.c
7013 F:      drivers/staging/greybus/audio_apbridgea.h
7014 F:      drivers/staging/greybus/audio_codec.c
7015 F:      drivers/staging/greybus/audio_codec.h
7016 F:      drivers/staging/greybus/audio_gb.c
7017 F:      drivers/staging/greybus/audio_manager.c
7018 F:      drivers/staging/greybus/audio_manager.h
7019 F:      drivers/staging/greybus/audio_manager_module.c
7020 F:      drivers/staging/greybus/audio_manager_private.h
7021 F:      drivers/staging/greybus/audio_manager_sysfs.c
7022 F:      drivers/staging/greybus/audio_module.c
7023 F:      drivers/staging/greybus/audio_topology.c
7024
7025 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7026 M:      Viresh Kumar <[email protected]>
7027 S:      Maintained
7028 F:      drivers/staging/greybus/authentication.c
7029 F:      drivers/staging/greybus/bootrom.c
7030 F:      drivers/staging/greybus/firmware.h
7031 F:      drivers/staging/greybus/fw-core.c
7032 F:      drivers/staging/greybus/fw-download.c
7033 F:      drivers/staging/greybus/fw-management.c
7034 F:      drivers/staging/greybus/greybus_authentication.h
7035 F:      drivers/staging/greybus/greybus_firmware.h
7036 F:      drivers/staging/greybus/hid.c
7037 F:      drivers/staging/greybus/i2c.c
7038 F:      drivers/staging/greybus/spi.c
7039 F:      drivers/staging/greybus/spilib.c
7040 F:      drivers/staging/greybus/spilib.h
7041
7042 GREYBUS LOOPBACK DRIVER
7043 M:      Bryan O'Donoghue <[email protected]>
7044 S:      Maintained
7045 F:      drivers/staging/greybus/loopback.c
7046
7047 GREYBUS PLATFORM DRIVERS
7048 M:      Vaibhav Hiremath <[email protected]>
7049 S:      Maintained
7050 F:      drivers/staging/greybus/arche-platform.c
7051 F:      drivers/staging/greybus/arche-apb-ctrl.c
7052 F:      drivers/staging/greybus/arche_platform.h
7053
7054 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7055 M:      Rui Miguel Silva <[email protected]>
7056 S:      Maintained
7057 F:      drivers/staging/greybus/sdio.c
7058 F:      drivers/staging/greybus/light.c
7059 F:      drivers/staging/greybus/gpio.c
7060 F:      drivers/staging/greybus/power_supply.c
7061 F:      drivers/staging/greybus/spi.c
7062 F:      drivers/staging/greybus/spilib.c
7063
7064 GREYBUS SUBSYSTEM
7065 M:      Johan Hovold <[email protected]>
7066 M:      Alex Elder <[email protected]>
7067 M:      Greg Kroah-Hartman <[email protected]>
7068 S:      Maintained
7069 F:      drivers/staging/greybus/
7070 F:      drivers/greybus/
7071 F:      include/linux/greybus.h
7072 F:      include/linux/greybus/
7073 L:      [email protected] (moderated for non-subscribers)
7074
7075 GREYBUS UART PROTOCOLS DRIVERS
7076 M:      David Lin <[email protected]>
7077 S:      Maintained
7078 F:      drivers/staging/greybus/uart.c
7079 F:      drivers/staging/greybus/log.c
7080
7081 GS1662 VIDEO SERIALIZER
7082 M:      Charles-Antoine Couret <[email protected]>
7083 L:      [email protected]
7084 T:      git git://linuxtv.org/media_tree.git
7085 S:      Maintained
7086 F:      drivers/media/spi/gs1662.c
7087
7088 GSPCA FINEPIX SUBDRIVER
7089 M:      Frank Zago <[email protected]>
7090 L:      [email protected]
7091 T:      git git://linuxtv.org/media_tree.git
7092 S:      Maintained
7093 F:      drivers/media/usb/gspca/finepix.c
7094
7095 GSPCA GL860 SUBDRIVER
7096 M:      Olivier Lorin <[email protected]>
7097 L:      [email protected]
7098 T:      git git://linuxtv.org/media_tree.git
7099 S:      Maintained
7100 F:      drivers/media/usb/gspca/gl860/
7101
7102 GSPCA M5602 SUBDRIVER
7103 M:      Erik Andren <[email protected]>
7104 L:      [email protected]
7105 T:      git git://linuxtv.org/media_tree.git
7106 S:      Maintained
7107 F:      drivers/media/usb/gspca/m5602/
7108
7109 GSPCA PAC207 SONIXB SUBDRIVER
7110 M:      Hans Verkuil <[email protected]>
7111 L:      [email protected]
7112 T:      git git://linuxtv.org/media_tree.git
7113 S:      Odd Fixes
7114 F:      drivers/media/usb/gspca/pac207.c
7115
7116 GSPCA SN9C20X SUBDRIVER
7117 M:      Brian Johnson <[email protected]>
7118 L:      [email protected]
7119 T:      git git://linuxtv.org/media_tree.git
7120 S:      Maintained
7121 F:      drivers/media/usb/gspca/sn9c20x.c
7122
7123 GSPCA T613 SUBDRIVER
7124 M:      Leandro Costantino <[email protected]>
7125 L:      [email protected]
7126 T:      git git://linuxtv.org/media_tree.git
7127 S:      Maintained
7128 F:      drivers/media/usb/gspca/t613.c
7129
7130 GSPCA USB WEBCAM DRIVER
7131 M:      Hans Verkuil <[email protected]>
7132 L:      [email protected]
7133 T:      git git://linuxtv.org/media_tree.git
7134 S:      Odd Fixes
7135 F:      drivers/media/usb/gspca/
7136
7137 GTP (GPRS Tunneling Protocol)
7138 M:      Pablo Neira Ayuso <[email protected]>
7139 M:      Harald Welte <[email protected]>
7140 L:      [email protected]
7141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7142 S:      Maintained
7143 F:      drivers/net/gtp.c
7144
7145 GUID PARTITION TABLE (GPT)
7146 M:      Davidlohr Bueso <[email protected]>
7147 L:      [email protected]
7148 S:      Maintained
7149 F:      block/partitions/efi.*
7150
7151 H8/300 ARCHITECTURE
7152 M:      Yoshinori Sato <[email protected]>
7153 L:      [email protected] (moderated for non-subscribers)
7154 W:      http://uclinux-h8.sourceforge.jp
7155 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7156 S:      Maintained
7157 F:      arch/h8300/
7158 F:      drivers/clocksource/h8300_*.c
7159 F:      drivers/clk/h8300/
7160 F:      drivers/irqchip/irq-renesas-h8*.c
7161
7162 HABANALABS PCI DRIVER
7163 M:      Oded Gabbay <[email protected]>
7164 T:      git https://github.com/HabanaAI/linux.git
7165 S:      Supported
7166 F:      drivers/misc/habanalabs/
7167 F:      include/uapi/misc/habanalabs.h
7168 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7169 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7170
7171 HACKRF MEDIA DRIVER
7172 M:      Antti Palosaari <[email protected]>
7173 L:      [email protected]
7174 W:      https://linuxtv.org
7175 W:      http://palosaari.fi/linux/
7176 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7177 T:      git git://linuxtv.org/anttip/media_tree.git
7178 S:      Maintained
7179 F:      drivers/media/usb/hackrf/
7180
7181 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7182 M:      Frank Seidel <[email protected]>
7183 L:      [email protected]
7184 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7185 S:      Maintained
7186 F:      drivers/platform/x86/hdaps.c
7187
7188 HARDWARE MONITORING
7189 M:      Jean Delvare <[email protected]>
7190 M:      Guenter Roeck <[email protected]>
7191 L:      [email protected]
7192 W:      http://hwmon.wiki.kernel.org/
7193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7194 S:      Maintained
7195 F:      Documentation/devicetree/bindings/hwmon/
7196 F:      Documentation/hwmon/
7197 F:      drivers/hwmon/
7198 F:      include/linux/hwmon*.h
7199 F:      include/trace/events/hwmon*.h
7200
7201 HARDWARE RANDOM NUMBER GENERATOR CORE
7202 M:      Matt Mackall <[email protected]>
7203 M:      Herbert Xu <[email protected]>
7204 L:      [email protected]
7205 S:      Odd fixes
7206 F:      Documentation/devicetree/bindings/rng/
7207 F:      Documentation/admin-guide/hw_random.rst
7208 F:      drivers/char/hw_random/
7209 F:      include/linux/hw_random.h
7210
7211 HARDWARE TRACING FACILITIES
7212 M:      Alexander Shishkin <[email protected]>
7213 S:      Maintained
7214 F:      drivers/hwtracing/
7215
7216 HARDWARE SPINLOCK CORE
7217 M:      Ohad Ben-Cohen <[email protected]>
7218 M:      Bjorn Andersson <[email protected]>
7219 L:      [email protected]
7220 S:      Maintained
7221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
7222 F:      Documentation/devicetree/bindings/hwlock/
7223 F:      Documentation/hwspinlock.txt
7224 F:      drivers/hwspinlock/
7225 F:      include/linux/hwspinlock.h
7226
7227 HARMONY SOUND DRIVER
7228 L:      [email protected]
7229 S:      Maintained
7230 F:      sound/parisc/harmony.*
7231
7232 HDPVR USB VIDEO ENCODER DRIVER
7233 M:      Hans Verkuil <[email protected]>
7234 L:      [email protected]
7235 T:      git git://linuxtv.org/media_tree.git
7236 W:      https://linuxtv.org
7237 S:      Odd Fixes
7238 F:      drivers/media/usb/hdpvr/
7239
7240 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7241 M:      Jerry Hoemann <[email protected]>
7242 S:      Supported
7243 F:      Documentation/watchdog/hpwdt.rst
7244 F:      drivers/watchdog/hpwdt.c
7245
7246 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7247 M:      Don Brace <[email protected]>
7248 L:      [email protected]
7249 L:      [email protected]
7250 S:      Supported
7251 F:      Documentation/scsi/hpsa.txt
7252 F:      drivers/scsi/hpsa*.[ch]
7253 F:      include/linux/cciss*.h
7254 F:      include/uapi/linux/cciss*.h
7255
7256 HFI1 DRIVER
7257 M:      Mike Marciniszyn <[email protected]>
7258 M:      Dennis Dalessandro <[email protected]>
7259 L:      [email protected]
7260 S:      Supported
7261 F:      drivers/infiniband/hw/hfi1
7262
7263 HFS FILESYSTEM
7264 L:      [email protected]
7265 S:      Orphan
7266 F:      Documentation/filesystems/hfs.txt
7267 F:      fs/hfs/
7268
7269 HFSPLUS FILESYSTEM
7270 L:      [email protected]
7271 S:      Orphan
7272 F:      Documentation/filesystems/hfsplus.txt
7273 F:      fs/hfsplus/
7274
7275 HGA FRAMEBUFFER DRIVER
7276 M:      Ferenc Bakonyi <[email protected]>
7277 L:      [email protected]
7278 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7279 S:      Maintained
7280 F:      drivers/video/fbdev/hgafb.c
7281
7282 HIBERNATION (aka Software Suspend, aka swsusp)
7283 M:      "Rafael J. Wysocki" <[email protected]>
7284 M:      Pavel Machek <[email protected]>
7285 L:      [email protected]
7286 B:      https://bugzilla.kernel.org
7287 S:      Supported
7288 F:      arch/x86/power/
7289 F:      drivers/base/power/
7290 F:      kernel/power/
7291 F:      include/linux/suspend.h
7292 F:      include/linux/freezer.h
7293 F:      include/linux/pm.h
7294 F:      arch/*/include/asm/suspend*.h
7295
7296 HID CORE LAYER
7297 M:      Jiri Kosina <[email protected]>
7298 M:      Benjamin Tissoires <[email protected]>
7299 L:      [email protected]
7300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7301 S:      Maintained
7302 F:      drivers/hid/
7303 F:      include/linux/hid*
7304 F:      include/uapi/linux/hid*
7305
7306 HID SENSOR HUB DRIVERS
7307 M:      Jiri Kosina <[email protected]>
7308 M:      Jonathan Cameron <[email protected]>
7309 M:      Srinivas Pandruvada <[email protected]>
7310 L:      [email protected]
7311 L:      [email protected]
7312 S:      Maintained
7313 F:      Documentation/hid/hid-sensor*
7314 F:      drivers/hid/hid-sensor-*
7315 F:      drivers/iio/*/hid-*
7316 F:      include/linux/hid-sensor-*
7317
7318 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7319 M:      Thomas Gleixner <[email protected]>
7320 L:      [email protected]
7321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7322 S:      Maintained
7323 F:      Documentation/timers/
7324 F:      kernel/time/hrtimer.c
7325 F:      kernel/time/clockevents.c
7326 F:      kernel/time/timer_*.c
7327 F:      include/linux/clockchips.h
7328 F:      include/linux/hrtimer.h
7329
7330 HIGH-SPEED SCC DRIVER FOR AX.25
7331 L:      [email protected]
7332 S:      Orphan
7333 F:      drivers/net/hamradio/dmascc.c
7334 F:      drivers/net/hamradio/scc.c
7335
7336 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7337 M:      HighPoint Linux Team <[email protected]>
7338 W:      http://www.highpoint-tech.com
7339 S:      Supported
7340 F:      Documentation/scsi/hptiop.txt
7341 F:      drivers/scsi/hptiop.c
7342
7343 HIPPI
7344 M:      Jes Sorensen <[email protected]>
7345 L:      [email protected]
7346 S:      Maintained
7347 F:      include/linux/hippidevice.h
7348 F:      include/uapi/linux/if_hippi.h
7349 F:      net/802/hippi.c
7350 F:      drivers/net/hippi/
7351
7352 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7353 M:      Yisen Zhuang <[email protected]>
7354 M:      Salil Mehta <[email protected]>
7355 L:      [email protected]
7356 W:      http://www.hisilicon.com
7357 S:      Maintained
7358 F:      drivers/net/ethernet/hisilicon/hns3/
7359
7360 HISILICON LPC BUS DRIVER
7361 M:      [email protected]
7362 W:      http://www.hisilicon.com
7363 S:      Maintained
7364 F:      drivers/bus/hisi_lpc.c
7365 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7366
7367 HISILICON NETWORK SUBSYSTEM DRIVER
7368 M:      Yisen Zhuang <[email protected]>
7369 M:      Salil Mehta <[email protected]>
7370 L:      [email protected]
7371 W:      http://www.hisilicon.com
7372 S:      Maintained
7373 F:      drivers/net/ethernet/hisilicon/
7374 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7375
7376 HISILICON PMU DRIVER
7377 M:      Shaokun Zhang <[email protected]>
7378 W:      http://www.hisilicon.com
7379 S:      Supported
7380 F:      drivers/perf/hisilicon
7381 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7382
7383 HISILICON ROCE DRIVER
7384 M:      Lijun Ou <[email protected]>
7385 M:      Wei Hu(Xavier) <[email protected]>
7386 L:      [email protected]
7387 S:      Maintained
7388 F:      drivers/infiniband/hw/hns/
7389 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7390
7391 HISILICON SAS Controller
7392 M:      John Garry <[email protected]>
7393 W:      http://www.hisilicon.com
7394 S:      Supported
7395 F:      drivers/scsi/hisi_sas/
7396 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7397
7398 HISILICON QM AND ZIP Controller DRIVER
7399 M:      Zhou Wang <[email protected]>
7400 L:      [email protected]
7401 S:      Maintained
7402 F:      drivers/crypto/hisilicon/qm.c
7403 F:      drivers/crypto/hisilicon/qm.h
7404 F:      drivers/crypto/hisilicon/sgl.c
7405 F:      drivers/crypto/hisilicon/sgl.h
7406 F:      drivers/crypto/hisilicon/zip/
7407 F:      Documentation/ABI/testing/debugfs-hisi-zip
7408
7409 HMM - Heterogeneous Memory Management
7410 M:      Jérôme Glisse <[email protected]>
7411 L:      [email protected]
7412 S:      Maintained
7413 F:      mm/hmm*
7414 F:      include/linux/hmm*
7415 F:      Documentation/vm/hmm.rst
7416
7417 HOST AP DRIVER
7418 M:      Jouni Malinen <[email protected]>
7419 L:      [email protected]
7420 W:      http://w1.fi/hostap-driver.html
7421 S:      Obsolete
7422 F:      drivers/net/wireless/intersil/hostap/
7423
7424 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7425 L:      [email protected]
7426 S:      Orphan
7427 F:      drivers/platform/x86/tc1100-wmi.c
7428
7429 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7430 M:      Jaroslav Kysela <[email protected]>
7431 S:      Maintained
7432 F:      drivers/net/ethernet/hp/hp100.*
7433
7434 HPET:   High Precision Event Timers driver
7435 M:      Clemens Ladisch <[email protected]>
7436 S:      Maintained
7437 F:      Documentation/timers/hpet.rst
7438 F:      drivers/char/hpet.c
7439 F:      include/linux/hpet.h
7440 F:      include/uapi/linux/hpet.h
7441
7442 HPET:   x86
7443 S:      Orphan
7444 F:      arch/x86/kernel/hpet.c
7445 F:      arch/x86/include/asm/hpet.h
7446
7447 HPFS FILESYSTEM
7448 M:      Mikulas Patocka <[email protected]>
7449 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7450 S:      Maintained
7451 F:      fs/hpfs/
7452
7453 HSI SUBSYSTEM
7454 M:      Sebastian Reichel <[email protected]>
7455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7456 S:      Maintained
7457 F:      Documentation/ABI/testing/sysfs-bus-hsi
7458 F:      Documentation/driver-api/hsi.rst
7459 F:      drivers/hsi/
7460 F:      include/linux/hsi/
7461 F:      include/uapi/linux/hsi/
7462
7463 HSO 3G MODEM DRIVER
7464 L:      [email protected]
7465 S:      Orphan
7466 F:      drivers/net/usb/hso.c
7467
7468 HSR NETWORK PROTOCOL
7469 M:      Arvid Brodin <[email protected]>
7470 L:      [email protected]
7471 S:      Maintained
7472 F:      net/hsr/
7473
7474 HT16K33 LED CONTROLLER DRIVER
7475 M:      Robin van der Gracht <[email protected]>
7476 S:      Maintained
7477 F:      drivers/auxdisplay/ht16k33.c
7478 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7479
7480 HTCPEN TOUCHSCREEN DRIVER
7481 M:      Pau Oliva Fora <[email protected]>
7482 L:      [email protected]
7483 S:      Maintained
7484 F:      drivers/input/touchscreen/htcpen.c
7485
7486 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7487 M:      Lorenzo Bianconi <[email protected]>
7488 L:      [email protected]
7489 W:      http://www.st.com/
7490 S:      Maintained
7491 F:      drivers/iio/humidity/hts221*
7492 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7493
7494 HUAWEI ETHERNET DRIVER
7495 M:      Aviad Krawczyk <[email protected]>
7496 L:      [email protected]
7497 S:      Supported
7498 F:      Documentation/networking/hinic.txt
7499 F:      drivers/net/ethernet/huawei/hinic/
7500
7501 HUGETLB FILESYSTEM
7502 M:      Mike Kravetz <[email protected]>
7503 L:      [email protected]
7504 S:      Maintained
7505 F:      fs/hugetlbfs/
7506 F:      mm/hugetlb.c
7507 F:      include/linux/hugetlb.h
7508 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7509 F:      Documentation/vm/hugetlbfs_reserv.rst
7510 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7511
7512 HVA ST MEDIA DRIVER
7513 M:      Jean-Christophe Trotin <[email protected]>
7514 L:      [email protected]
7515 T:      git git://linuxtv.org/media_tree.git
7516 W:      https://linuxtv.org
7517 S:      Supported
7518 F:      drivers/media/platform/sti/hva
7519
7520 HWPOISON MEMORY FAILURE HANDLING
7521 M:      Naoya Horiguchi <[email protected]>
7522 L:      [email protected]
7523 S:      Maintained
7524 F:      mm/memory-failure.c
7525 F:      mm/hwpoison-inject.c
7526
7527 HYGON PROCESSOR SUPPORT
7528 M:      Pu Wen <[email protected]>
7529 L:      [email protected]
7530 S:      Maintained
7531 F:      arch/x86/kernel/cpu/hygon.c
7532
7533 Hyper-V CORE AND DRIVERS
7534 M:      "K. Y. Srinivasan" <[email protected]>
7535 M:      Haiyang Zhang <[email protected]>
7536 M:      Stephen Hemminger <[email protected]>
7537 M:      Sasha Levin <[email protected]>
7538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7539 L:      [email protected]
7540 S:      Supported
7541 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7542 F:      arch/x86/include/asm/mshyperv.h
7543 F:      arch/x86/include/asm/trace/hyperv.h
7544 F:      arch/x86/include/asm/hyperv-tlfs.h
7545 F:      arch/x86/kernel/cpu/mshyperv.c
7546 F:      arch/x86/hyperv
7547 F:      drivers/clocksource/hyperv_timer.c
7548 F:      drivers/hid/hid-hyperv.c
7549 F:      drivers/hv/
7550 F:      drivers/input/serio/hyperv-keyboard.c
7551 F:      drivers/pci/controller/pci-hyperv.c
7552 F:      drivers/pci/controller/pci-hyperv-intf.c
7553 F:      drivers/net/hyperv/
7554 F:      drivers/scsi/storvsc_drv.c
7555 F:      drivers/uio/uio_hv_generic.c
7556 F:      drivers/video/fbdev/hyperv_fb.c
7557 F:      drivers/iommu/hyperv-iommu.c
7558 F:      net/vmw_vsock/hyperv_transport.c
7559 F:      include/clocksource/hyperv_timer.h
7560 F:      include/linux/hyperv.h
7561 F:      include/uapi/linux/hyperv.h
7562 F:      include/asm-generic/mshyperv.h
7563 F:      tools/hv/
7564 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7565
7566 HYPERBUS SUPPORT
7567 M:      Vignesh Raghavendra <[email protected]>
7568 S:      Supported
7569 F:      drivers/mtd/hyperbus/
7570 F:      include/linux/mtd/hyperbus.h
7571 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7572 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7573
7574 HYPERVISOR VIRTUAL CONSOLE DRIVER
7575 L:      [email protected]
7576 S:      Odd Fixes
7577 F:      drivers/tty/hvc/
7578
7579 I2C ACPI SUPPORT
7580 M:      Mika Westerberg <[email protected]>
7581 L:      [email protected]
7582 L:      [email protected]
7583 S:      Maintained
7584 F:      drivers/i2c/i2c-core-acpi.c
7585
7586 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7587 M:      Ajay Gupta <[email protected]>
7588 L:      [email protected]
7589 S:      Maintained
7590 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7591 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7592
7593 I2C MUXES
7594 M:      Peter Rosin <[email protected]>
7595 L:      [email protected]
7596 S:      Maintained
7597 F:      Documentation/i2c/i2c-topology.rst
7598 F:      Documentation/i2c/muxes/
7599 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7600 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7601 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7602 F:      drivers/i2c/i2c-mux.c
7603 F:      drivers/i2c/muxes/
7604 F:      include/linux/i2c-mux.h
7605
7606 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7607 M:      Gregory CLEMENT <[email protected]>
7608 L:      [email protected]
7609 S:      Maintained
7610 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7611 F:      drivers/i2c/busses/i2c-mv64xxx.c
7612
7613 I2C OVER PARALLEL PORT
7614 M:      Jean Delvare <[email protected]>
7615 L:      [email protected]
7616 S:      Maintained
7617 F:      Documentation/i2c/busses/i2c-parport.rst
7618 F:      Documentation/i2c/busses/i2c-parport-light.rst
7619 F:      drivers/i2c/busses/i2c-parport.c
7620 F:      drivers/i2c/busses/i2c-parport-light.c
7621
7622 I2C SUBSYSTEM
7623 M:      Wolfram Sang <[email protected]>
7624 L:      [email protected]
7625 W:      https://i2c.wiki.kernel.org/
7626 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7628 S:      Maintained
7629 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7630 F:      Documentation/i2c/
7631 F:      drivers/i2c/*
7632 F:      include/linux/i2c.h
7633 F:      include/linux/i2c-dev.h
7634 F:      include/linux/i2c-smbus.h
7635 F:      include/uapi/linux/i2c.h
7636 F:      include/uapi/linux/i2c-*.h
7637
7638 I2C SUBSYSTEM HOST DRIVERS
7639 L:      [email protected]
7640 W:      https://i2c.wiki.kernel.org/
7641 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7643 S:      Odd Fixes
7644 F:      Documentation/devicetree/bindings/i2c/
7645 F:      drivers/i2c/algos/
7646 F:      drivers/i2c/busses/
7647
7648 I2C-TAOS-EVM DRIVER
7649 M:      Jean Delvare <[email protected]>
7650 L:      [email protected]
7651 S:      Maintained
7652 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7653 F:      drivers/i2c/busses/i2c-taos-evm.c
7654
7655 I2C-TINY-USB DRIVER
7656 M:      Till Harbaum <[email protected]>
7657 L:      [email protected]
7658 W:      http://www.harbaum.org/till/i2c_tiny_usb
7659 S:      Maintained
7660 F:      drivers/i2c/busses/i2c-tiny-usb.c
7661
7662 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7663 M:      Jean Delvare <[email protected]>
7664 L:      [email protected]
7665 S:      Maintained
7666 F:      Documentation/i2c/busses/i2c-ali1535.rst
7667 F:      Documentation/i2c/busses/i2c-ali1563.rst
7668 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7669 F:      Documentation/i2c/busses/i2c-amd756.rst
7670 F:      Documentation/i2c/busses/i2c-amd8111.rst
7671 F:      Documentation/i2c/busses/i2c-i801.rst
7672 F:      Documentation/i2c/busses/i2c-nforce2.rst
7673 F:      Documentation/i2c/busses/i2c-piix4.rst
7674 F:      Documentation/i2c/busses/i2c-sis5595.rst
7675 F:      Documentation/i2c/busses/i2c-sis630.rst
7676 F:      Documentation/i2c/busses/i2c-sis96x.rst
7677 F:      Documentation/i2c/busses/i2c-via.rst
7678 F:      Documentation/i2c/busses/i2c-viapro.rst
7679 F:      drivers/i2c/busses/i2c-ali1535.c
7680 F:      drivers/i2c/busses/i2c-ali1563.c
7681 F:      drivers/i2c/busses/i2c-ali15x3.c
7682 F:      drivers/i2c/busses/i2c-amd756.c
7683 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7684 F:      drivers/i2c/busses/i2c-amd8111.c
7685 F:      drivers/i2c/busses/i2c-i801.c
7686 F:      drivers/i2c/busses/i2c-isch.c
7687 F:      drivers/i2c/busses/i2c-nforce2.c
7688 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7689 F:      drivers/i2c/busses/i2c-piix4.c
7690 F:      drivers/i2c/busses/i2c-sis5595.c
7691 F:      drivers/i2c/busses/i2c-sis630.c
7692 F:      drivers/i2c/busses/i2c-sis96x.c
7693 F:      drivers/i2c/busses/i2c-via.c
7694 F:      drivers/i2c/busses/i2c-viapro.c
7695
7696 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7697 M:      Hans de Goede <[email protected]>
7698 L:      [email protected]
7699 S:      Maintained
7700 F:      drivers/i2c/busses/i2c-cht-wc.c
7701
7702 I2C/SMBUS ISMT DRIVER
7703 M:      Seth Heasley <[email protected]>
7704 M:      Neil Horman <[email protected]>
7705 L:      [email protected]
7706 F:      drivers/i2c/busses/i2c-ismt.c
7707 F:      Documentation/i2c/busses/i2c-ismt.rst
7708
7709 I2C/SMBUS STUB DRIVER
7710 M:      Jean Delvare <[email protected]>
7711 L:      [email protected]
7712 S:      Maintained
7713 F:      drivers/i2c/i2c-stub.c
7714
7715 I3C SUBSYSTEM
7716 M:      Boris Brezillon <[email protected]>
7717 L:      [email protected]
7718 C:      irc://chat.freenode.net/linux-i3c
7719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
7720 S:      Maintained
7721 F:      Documentation/ABI/testing/sysfs-bus-i3c
7722 F:      Documentation/devicetree/bindings/i3c/
7723 F:      Documentation/driver-api/i3c
7724 F:      drivers/i3c/
7725 F:      include/linux/i3c/
7726
7727 I3C DRIVER FOR SYNOPSYS DESIGNWARE
7728 M:      Vitor Soares <[email protected]>
7729 S:      Maintained
7730 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
7731 F:      drivers/i3c/master/dw*
7732
7733 IA64 (Itanium) PLATFORM
7734 M:      Tony Luck <[email protected]>
7735 M:      Fenghua Yu <[email protected]>
7736 L:      [email protected]
7737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
7738 S:      Maintained
7739 F:      arch/ia64/
7740
7741 IBM Power 842 compression accelerator
7742 M:      Haren Myneni <[email protected]>
7743 S:      Supported
7744 F:      drivers/crypto/nx/Makefile
7745 F:      drivers/crypto/nx/Kconfig
7746 F:      drivers/crypto/nx/nx-842*
7747 F:      include/linux/sw842.h
7748 F:      crypto/842.c
7749 F:      lib/842/
7750
7751 IBM Power in-Nest Crypto Acceleration
7752 M:      Breno Leitão <[email protected]>
7753 M:      Nayna Jain <[email protected]>
7754 M:      Paulo Flabiano Smorigo <[email protected]>
7755 L:      [email protected]
7756 S:      Supported
7757 F:      drivers/crypto/nx/Makefile
7758 F:      drivers/crypto/nx/Kconfig
7759 F:      drivers/crypto/nx/nx-aes*
7760 F:      drivers/crypto/nx/nx-sha*
7761 F:      drivers/crypto/nx/nx.*
7762 F:      drivers/crypto/nx/nx_csbcpb.h
7763 F:      drivers/crypto/nx/nx_debugfs.c
7764
7765 IBM Power Linux RAID adapter
7766 M:      Brian King <[email protected]>
7767 S:      Supported
7768 F:      drivers/scsi/ipr.*
7769
7770 IBM Power SRIOV Virtual NIC Device Driver
7771 M:      Thomas Falcon <[email protected]>
7772 M:      John Allen <[email protected]>
7773 L:      [email protected]
7774 S:      Supported
7775 F:      drivers/net/ethernet/ibm/ibmvnic.*
7776
7777 IBM Power Virtual Accelerator Switchboard
7778 M:      Sukadev Bhattiprolu <[email protected]>
7779 L:      [email protected]
7780 S:      Supported
7781 F:      arch/powerpc/platforms/powernv/vas*
7782 F:      arch/powerpc/platforms/powernv/copy-paste.h
7783 F:      arch/powerpc/include/asm/vas.h
7784
7785 IBM Power Virtual Ethernet Device Driver
7786 M:      Thomas Falcon <[email protected]>
7787 L:      [email protected]
7788 S:      Supported
7789 F:      drivers/net/ethernet/ibm/ibmveth.*
7790
7791 IBM Power Virtual FC Device Drivers
7792 M:      Tyrel Datwyler <[email protected]>
7793 L:      [email protected]
7794 S:      Supported
7795 F:      drivers/scsi/ibmvscsi/ibmvfc*
7796
7797 IBM Power Virtual Management Channel Driver
7798 M:      Steven Royer <[email protected]>
7799 S:      Supported
7800 F:      drivers/misc/ibmvmc.*
7801
7802 IBM Power Virtual SCSI Device Drivers
7803 M:      Tyrel Datwyler <[email protected]>
7804 L:      [email protected]
7805 S:      Supported
7806 F:      drivers/scsi/ibmvscsi/ibmvscsi*
7807 F:      include/scsi/viosrp.h
7808
7809 IBM Power Virtual SCSI Device Target Driver
7810 M:      Michael Cyr <[email protected]>
7811 L:      [email protected]
7812 L:      [email protected]
7813 S:      Supported
7814 F:      drivers/scsi/ibmvscsi_tgt/
7815
7816 IBM Power VMX Cryptographic instructions
7817 M:      Breno Leitão <[email protected]>
7818 M:      Nayna Jain <[email protected]>
7819 M:      Paulo Flabiano Smorigo <[email protected]>
7820 L:      [email protected]
7821 S:      Supported
7822 F:      drivers/crypto/vmx/Makefile
7823 F:      drivers/crypto/vmx/Kconfig
7824 F:      drivers/crypto/vmx/vmx.c
7825 F:      drivers/crypto/vmx/aes*
7826 F:      drivers/crypto/vmx/ghash*
7827 F:      drivers/crypto/vmx/ppc-xlate.pl
7828
7829 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
7830 M:      Tyrel Datwyler <[email protected]>
7831 L:      [email protected]
7832 L:      [email protected]
7833 S:      Supported
7834 F:      drivers/pci/hotplug/rpaphp*
7835
7836 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
7837 M:      Tyrel Datwyler <[email protected]>
7838 L:      [email protected]
7839 L:      [email protected]
7840 S:      Supported
7841 F:      drivers/pci/hotplug/rpadlpar*
7842
7843 IBM ServeRAID RAID DRIVER
7844 S:      Orphan
7845 F:      drivers/scsi/ips.*
7846
7847 ICH LPC AND GPIO DRIVER
7848 M:      Peter Tyser <[email protected]>
7849 S:      Maintained
7850 F:      drivers/mfd/lpc_ich.c
7851 F:      drivers/gpio/gpio-ich.c
7852
7853 IDE SUBSYSTEM
7854 M:      "David S. Miller" <[email protected]>
7855 L:      [email protected]
7856 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
7857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
7858 S:      Maintained
7859 F:      Documentation/ide/
7860 F:      drivers/ide/
7861 F:      include/linux/ide.h
7862
7863 IDE/ATAPI DRIVERS
7864 M:      Borislav Petkov <[email protected]>
7865 L:      [email protected]
7866 S:      Maintained
7867 F:      Documentation/cdrom/ide-cd.rst
7868 F:      drivers/ide/ide-cd*
7869
7870 IDEAPAD LAPTOP EXTRAS DRIVER
7871 M:      Ike Panhc <[email protected]>
7872 L:      [email protected]
7873 W:      http://launchpad.net/ideapad-laptop
7874 S:      Maintained
7875 F:      drivers/platform/x86/ideapad-laptop.c
7876
7877 IDEAPAD LAPTOP SLIDEBAR DRIVER
7878 M:      Andrey Moiseev <[email protected]>
7879 L:      [email protected]
7880 W:      https://github.com/o2genum/ideapad-slidebar
7881 S:      Maintained
7882 F:      drivers/input/misc/ideapad_slidebar.c
7883
7884 IDT VersaClock 5 CLOCK DRIVER
7885 M:      Marek Vasut <[email protected]>
7886 S:      Maintained
7887 F:      drivers/clk/clk-versaclock5.c
7888
7889 IEEE 802.15.4 SUBSYSTEM
7890 M:      Alexander Aring <[email protected]>
7891 M:      Stefan Schmidt <[email protected]>
7892 L:      [email protected]
7893 W:      http://wpan.cakelab.org/
7894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
7895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
7896 S:      Maintained
7897 F:      net/ieee802154/
7898 F:      net/mac802154/
7899 F:      drivers/net/ieee802154/
7900 F:      include/linux/nl802154.h
7901 F:      include/linux/ieee802154.h
7902 F:      include/net/nl802154.h
7903 F:      include/net/mac802154.h
7904 F:      include/net/af_ieee802154.h
7905 F:      include/net/cfg802154.h
7906 F:      include/net/ieee802154_netdev.h
7907 F:      Documentation/networking/ieee802154.rst
7908
7909 IFE PROTOCOL
7910 M:      Yotam Gigi <[email protected]>
7911 M:      Jamal Hadi Salim <[email protected]>
7912 F:      net/ife
7913 F:      include/net/ife.h
7914 F:      include/uapi/linux/ife.h
7915
7916 IGORPLUG-USB IR RECEIVER
7917 M:      Sean Young <[email protected]>
7918 L:      [email protected]
7919 S:      Maintained
7920 F:      drivers/media/rc/igorplugusb.c
7921
7922 IGUANAWORKS USB IR TRANSCEIVER
7923 M:      Sean Young <[email protected]>
7924 L:      [email protected]
7925 S:      Maintained
7926 F:      drivers/media/rc/iguanair.c
7927
7928 IIO DIGITAL POTENTIOMETER DAC
7929 M:      Peter Rosin <[email protected]>
7930 L:      [email protected]
7931 S:      Maintained
7932 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
7933 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
7934 F:      drivers/iio/dac/dpot-dac.c
7935
7936 IIO ENVELOPE DETECTOR
7937 M:      Peter Rosin <[email protected]>
7938 L:      [email protected]
7939 S:      Maintained
7940 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
7941 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
7942 F:      drivers/iio/adc/envelope-detector.c
7943
7944 IIO MULTIPLEXER
7945 M:      Peter Rosin <[email protected]>
7946 L:      [email protected]
7947 S:      Maintained
7948 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
7949 F:      drivers/iio/multiplexer/iio-mux.c
7950
7951 IIO SUBSYSTEM AND DRIVERS
7952 M:      Jonathan Cameron <[email protected]>
7953 R:      Hartmut Knaack <[email protected]>
7954 R:      Lars-Peter Clausen <[email protected]>
7955 R:      Peter Meerwald-Stadler <[email protected]>
7956 L:      [email protected]
7957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
7958 S:      Maintained
7959 F:      Documentation/ABI/testing/configfs-iio*
7960 F:      Documentation/ABI/testing/sysfs-bus-iio*
7961 F:      Documentation/devicetree/bindings/iio/
7962 F:      drivers/iio/
7963 F:      drivers/staging/iio/
7964 F:      include/linux/iio/
7965 F:      tools/iio/
7966
7967 IIO UNIT CONVERTER
7968 M:      Peter Rosin <[email protected]>
7969 L:      [email protected]
7970 S:      Maintained
7971 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
7972 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
7973 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
7974 F:      drivers/iio/afe/iio-rescale.c
7975
7976 IKANOS/ADI EAGLE ADSL USB DRIVER
7977 M:      Matthieu Castet <[email protected]>
7978 M:      Stanislaw Gruszka <[email protected]>
7979 S:      Maintained
7980 F:      drivers/usb/atm/ueagle-atm.c
7981
7982 IMGTEC ASCII LCD DRIVER
7983 M:      Paul Burton <[email protected]>
7984 S:      Maintained
7985 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
7986 F:      drivers/auxdisplay/img-ascii-lcd.c
7987
7988 IMGTEC IR DECODER DRIVER
7989 M:      James Hogan <[email protected]>
7990 S:      Maintained
7991 F:      drivers/media/rc/img-ir/
7992
7993 IMON SOUNDGRAPH USB IR RECEIVER
7994 M:      Sean Young <[email protected]>
7995 L:      [email protected]
7996 S:      Maintained
7997 F:      drivers/media/rc/imon_raw.c
7998 F:      drivers/media/rc/imon.c
7999
8000 IMS TWINTURBO FRAMEBUFFER DRIVER
8001 L:      [email protected]
8002 S:      Orphan
8003 F:      drivers/video/fbdev/imsttfb.c
8004
8005 INA209 HARDWARE MONITOR DRIVER
8006 M:      Guenter Roeck <[email protected]>
8007 L:      [email protected]
8008 S:      Maintained
8009 F:      Documentation/hwmon/ina209.rst
8010 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8011 F:      drivers/hwmon/ina209.c
8012
8013 INA2XX HARDWARE MONITOR DRIVER
8014 M:      Guenter Roeck <[email protected]>
8015 L:      [email protected]
8016 S:      Maintained
8017 F:      Documentation/hwmon/ina2xx.rst
8018 F:      drivers/hwmon/ina2xx.c
8019 F:      include/linux/platform_data/ina2xx.h
8020
8021 INDUSTRY PACK SUBSYSTEM (IPACK)
8022 M:      Samuel Iglesias Gonsalvez <[email protected]>
8023 M:      Jens Taprogge <[email protected]>
8024 M:      Greg Kroah-Hartman <[email protected]>
8025 L:      [email protected]
8026 W:      http://industrypack.sourceforge.net
8027 S:      Maintained
8028 F:      drivers/ipack/
8029
8030 INFINEON DPS310 Driver
8031 M:      Eddie James <[email protected]>
8032 L:      [email protected]
8033 F:      drivers/iio/pressure/dps310.c
8034 S:      Maintained
8035
8036 INFINIBAND SUBSYSTEM
8037 M:      Doug Ledford <[email protected]>
8038 M:      Jason Gunthorpe <[email protected]>
8039 L:      [email protected]
8040 W:      https://github.com/linux-rdma/rdma-core
8041 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8043 S:      Supported
8044 F:      Documentation/devicetree/bindings/infiniband/
8045 F:      Documentation/infiniband/
8046 F:      drivers/infiniband/
8047 F:      include/uapi/linux/if_infiniband.h
8048 F:      include/uapi/rdma/
8049 F:      include/rdma/
8050 F:      include/trace/events/ib_mad.h
8051 F:      include/trace/events/ib_umad.h
8052 F:      samples/bpf/ibumad_kern.c
8053 F:      samples/bpf/ibumad_user.c
8054
8055 INGENIC JZ4780 DMA Driver
8056 M:      Zubair Lutfullah Kakakhel <[email protected]>
8057 S:      Maintained
8058 F:      drivers/dma/dma-jz4780.c
8059
8060 INGENIC JZ4780 NAND DRIVER
8061 M:      Harvey Hunt <[email protected]>
8062 L:      [email protected]
8063 S:      Maintained
8064 F:      drivers/mtd/nand/raw/ingenic/
8065
8066 INGENIC JZ47xx SoCs
8067 M:      Paul Cercueil <[email protected]>
8068 S:      Maintained
8069 F:      arch/mips/boot/dts/ingenic/
8070 F:      arch/mips/include/asm/mach-jz4740/
8071 F:      arch/mips/jz4740/
8072 F:      drivers/clk/ingenic/
8073 F:      drivers/dma/dma-jz4780.c
8074 F:      drivers/gpu/drm/ingenic/
8075 F:      drivers/i2c/busses/i2c-jz4780.c
8076 F:      drivers/iio/adc/ingenic-adc.c
8077 F:      drivers/irqchip/irq-ingenic.c
8078 F:      drivers/memory/jz4780-nemc.c
8079 F:      drivers/mmc/host/jz4740_mmc.c
8080 F:      drivers/mtd/nand/raw/ingenic/
8081 F:      drivers/pinctrl/pinctrl-ingenic.c
8082 F:      drivers/power/supply/ingenic-battery.c
8083 F:      drivers/pwm/pwm-jz4740.c
8084 F:      drivers/rtc/rtc-jz4740.c
8085 F:      drivers/tty/serial/8250/8250_ingenic.c
8086 F:      drivers/usb/musb/jz4740.c
8087 F:      drivers/watchdog/jz4740_wdt.c
8088 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8089 F:      include/linux/mfd/ingenic-tcu.h
8090 F:      sound/soc/jz4740/
8091 F:      sound/soc/codecs/jz47*
8092
8093 INOTIFY
8094 M:      Jan Kara <[email protected]>
8095 R:      Amir Goldstein <[email protected]>
8096 L:      [email protected]
8097 S:      Maintained
8098 F:      Documentation/filesystems/inotify.txt
8099 F:      fs/notify/inotify/
8100 F:      include/linux/inotify.h
8101 F:      include/uapi/linux/inotify.h
8102
8103 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8104 M:      Dmitry Torokhov <[email protected]>
8105 L:      [email protected]
8106 Q:      http://patchwork.kernel.org/project/linux-input/list/
8107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8108 S:      Maintained
8109 F:      drivers/input/
8110 F:      include/linux/input.h
8111 F:      include/uapi/linux/input.h
8112 F:      include/uapi/linux/input-event-codes.h
8113 F:      include/linux/input/
8114 F:      Documentation/devicetree/bindings/input/
8115 F:      Documentation/devicetree/bindings/serio/
8116 F:      Documentation/input/
8117
8118 INPUT MULTITOUCH (MT) PROTOCOL
8119 M:      Henrik Rydberg <[email protected]>
8120 L:      [email protected]
8121 S:      Odd fixes
8122 F:      Documentation/input/multi-touch-protocol.rst
8123 F:      drivers/input/input-mt.c
8124 K:      \b(ABS|SYN)_MT_
8125
8126 INSIDE SECURE CRYPTO DRIVER
8127 M:      Antoine Tenart <[email protected]>
8128 F:      drivers/crypto/inside-secure/
8129 S:      Maintained
8130 L:      [email protected]
8131
8132 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8133 M:      Mimi Zohar <[email protected]>
8134 M:      Dmitry Kasatkin <[email protected]>
8135 L:      [email protected]
8136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8137 S:      Supported
8138 F:      security/integrity/ima/
8139
8140 INTEL 810/815 FRAMEBUFFER DRIVER
8141 M:      Antonino Daplas <[email protected]>
8142 L:      [email protected]
8143 S:      Maintained
8144 F:      drivers/video/fbdev/i810/
8145
8146 INTEL ASoC DRIVERS
8147 M:      Cezary Rojewski <[email protected]>
8148 M:      Pierre-Louis Bossart <[email protected]>
8149 M:      Liam Girdwood <[email protected]>
8150 M:      Jie Yang <[email protected]>
8151 L:      [email protected] (moderated for non-subscribers)
8152 S:      Supported
8153 F:      sound/soc/intel/
8154
8155 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8156 M:      Hans de Goede <[email protected]>
8157 L:      [email protected]
8158 S:      Maintained
8159 F:      drivers/platform/x86/intel_atomisp2_pm.c
8160
8161 INTEL C600 SERIES SAS CONTROLLER DRIVER
8162 M:      Intel SCU Linux support <[email protected]>
8163 M:      Artur Paszkiewicz <[email protected]>
8164 L:      [email protected]
8165 T:      git git://git.code.sf.net/p/intel-sas/isci
8166 S:      Supported
8167 F:      drivers/scsi/isci/
8168
8169 INTEL CPU family model numbers
8170 M:      Tony Luck <[email protected]>
8171 M:      [email protected]
8172 L:      [email protected]
8173 S:      Supported
8174 F:      arch/x86/include/asm/intel-family.h
8175
8176 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8177 M:      Jani Nikula <[email protected]>
8178 M:      Joonas Lahtinen <[email protected]>
8179 M:      Rodrigo Vivi <[email protected]>
8180 L:      [email protected]
8181 W:      https://01.org/linuxgraphics/
8182 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
8183 C:      irc://chat.freenode.net/intel-gfx
8184 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8185 T:      git git://anongit.freedesktop.org/drm-intel
8186 S:      Supported
8187 F:      drivers/gpu/drm/i915/
8188 F:      include/drm/i915*
8189 F:      include/uapi/drm/i915_drm.h
8190 F:      Documentation/gpu/i915.rst
8191
8192 INTEL ETHERNET DRIVERS
8193 M:      Jeff Kirsher <[email protected]>
8194 L:      [email protected] (moderated for non-subscribers)
8195 W:      http://www.intel.com/support/feedback.htm
8196 W:      http://e1000.sourceforge.net/
8197 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8200 S:      Supported
8201 F:      Documentation/networking/device_drivers/intel/e100.rst
8202 F:      Documentation/networking/device_drivers/intel/e1000.rst
8203 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8204 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8205 F:      Documentation/networking/device_drivers/intel/igb.rst
8206 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8207 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8208 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8209 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8210 F:      Documentation/networking/device_drivers/intel/i40e.rst
8211 F:      Documentation/networking/device_drivers/intel/iavf.rst
8212 F:      Documentation/networking/device_drivers/intel/ice.rst
8213 F:      drivers/net/ethernet/intel/
8214 F:      drivers/net/ethernet/intel/*/
8215 F:      include/linux/avf/virtchnl.h
8216
8217 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8218 M:      Maik Broemme <[email protected]>
8219 L:      [email protected]
8220 S:      Maintained
8221 F:      Documentation/fb/intelfb.rst
8222 F:      drivers/video/fbdev/intelfb/
8223
8224 INTEL GPIO DRIVERS
8225 M:      Andy Shevchenko <[email protected]>
8226 L:      [email protected]
8227 S:      Maintained
8228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8229 F:      drivers/gpio/gpio-ich.c
8230 F:      drivers/gpio/gpio-intel-mid.c
8231 F:      drivers/gpio/gpio-lynxpoint.c
8232 F:      drivers/gpio/gpio-merrifield.c
8233 F:      drivers/gpio/gpio-ml-ioh.c
8234 F:      drivers/gpio/gpio-pch.c
8235 F:      drivers/gpio/gpio-sch.c
8236 F:      drivers/gpio/gpio-sodaville.c
8237
8238 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8239 M:      Zhenyu Wang <[email protected]>
8240 M:      Zhi Wang <[email protected]>
8241 L:      [email protected]
8242 L:      [email protected]
8243 W:      https://01.org/igvt-g
8244 T:      git https://github.com/intel/gvt-linux.git
8245 S:      Supported
8246 F:      drivers/gpu/drm/i915/gvt/
8247
8248 INTEL HID EVENT DRIVER
8249 M:      Alex Hung <[email protected]>
8250 L:      [email protected]
8251 S:      Maintained
8252 F:      drivers/platform/x86/intel-hid.c
8253
8254 INTEL I/OAT DMA DRIVER
8255 M:      Dave Jiang <[email protected]>
8256 R:      Dan Williams <[email protected]>
8257 L:      [email protected]
8258 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8259 S:      Supported
8260 F:      drivers/dma/ioat*
8261
8262 INTEL IDLE DRIVER
8263 M:      Jacob Pan <[email protected]>
8264 M:      Len Brown <[email protected]>
8265 L:      [email protected]
8266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8267 B:      https://bugzilla.kernel.org
8268 S:      Supported
8269 F:      drivers/idle/intel_idle.c
8270
8271 INTEL INTEGRATED SENSOR HUB DRIVER
8272 M:      Srinivas Pandruvada <[email protected]>
8273 M:      Jiri Kosina <[email protected]>
8274 L:      [email protected]
8275 S:      Maintained
8276 F:      drivers/hid/intel-ish-hid/
8277
8278 INTEL IOMMU (VT-d)
8279 M:      David Woodhouse <[email protected]>
8280 L:      [email protected]
8281 T:      git git://git.infradead.org/iommu-2.6.git
8282 S:      Supported
8283 F:      drivers/iommu/intel-iommu.c
8284 F:      include/linux/intel-iommu.h
8285
8286 INTEL IOP-ADMA DMA DRIVER
8287 R:      Dan Williams <[email protected]>
8288 S:      Odd fixes
8289 F:      drivers/dma/iop-adma.c
8290
8291 INTEL IPU3 CSI-2 CIO2 DRIVER
8292 M:      Yong Zhi <[email protected]>
8293 M:      Sakari Ailus <[email protected]>
8294 M:      Bingbu Cao <[email protected]>
8295 R:      Tian Shu Qiu <[email protected]>
8296 L:      [email protected]
8297 S:      Maintained
8298 F:      drivers/media/pci/intel/ipu3/
8299 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8300
8301 INTEL IPU3 CSI-2 IMGU DRIVER
8302 M:      Sakari Ailus <[email protected]>
8303 L:      [email protected]
8304 S:      Maintained
8305 F:      drivers/staging/media/ipu3/
8306 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8307 F:      Documentation/media/v4l-drivers/ipu3.rst
8308
8309 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8310 M:      Krzysztof Halasa <[email protected]>
8311 S:      Maintained
8312 F:      include/linux/soc/ixp4xx/qmgr.h
8313 F:      include/linux/soc/ixp4xx/npe.h
8314 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8315 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8316 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8317 F:      drivers/net/wan/ixp4xx_hss.c
8318
8319 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8320 M:      Deepak Saxena <[email protected]>
8321 S:      Maintained
8322 F:      drivers/char/hw_random/ixp4xx-rng.c
8323
8324 INTEL MANAGEMENT ENGINE (mei)
8325 M:      Tomas Winkler <[email protected]>
8326 L:      [email protected]
8327 S:      Supported
8328 F:      include/uapi/linux/mei.h
8329 F:      include/linux/mei_cl_bus.h
8330 F:      drivers/misc/mei/*
8331 F:      drivers/watchdog/mei_wdt.c
8332 F:      Documentation/driver-api/mei/*
8333 F:      samples/mei/*
8334
8335 INTEL MENLOW THERMAL DRIVER
8336 M:      Sujith Thomas <[email protected]>
8337 L:      [email protected]
8338 W:      https://01.org/linux-acpi
8339 S:      Supported
8340 F:      drivers/platform/x86/intel_menlow.c
8341
8342 INTEL MIC DRIVERS (mic)
8343 M:      Sudeep Dutt <[email protected]>
8344 M:      Ashutosh Dixit <[email protected]>
8345 S:      Supported
8346 W:      https://github.com/sudeepdutt/mic
8347 W:      http://software.intel.com/en-us/mic-developer
8348 F:      include/linux/mic_bus.h
8349 F:      include/linux/scif.h
8350 F:      include/uapi/linux/mic_common.h
8351 F:      include/uapi/linux/mic_ioctl.h
8352 F:      include/uapi/linux/scif_ioctl.h
8353 F:      drivers/misc/mic/
8354 F:      drivers/dma/mic_x100_dma.c
8355 F:      drivers/dma/mic_x100_dma.h
8356 F:      Documentation/mic/
8357
8358 INTEL PMC CORE DRIVER
8359 M:      Rajneesh Bhardwaj <[email protected]>
8360 M:      Vishwanath Somayaji <[email protected]>
8361 L:      [email protected]
8362 S:      Maintained
8363 F:      drivers/platform/x86/intel_pmc_core*
8364
8365 INTEL PMC/P-Unit IPC DRIVER
8366 M:      Zha Qipeng<[email protected]>
8367 L:      [email protected]
8368 S:      Maintained
8369 F:      drivers/platform/x86/intel_pmc_ipc.c
8370 F:      drivers/platform/x86/intel_punit_ipc.c
8371 F:      arch/x86/include/asm/intel_pmc_ipc.h
8372 F:      arch/x86/include/asm/intel_punit_ipc.h
8373
8374 INTEL PMIC GPIO DRIVERS
8375 M:      Andy Shevchenko <[email protected]>
8376 S:      Maintained
8377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8378 F:      drivers/gpio/gpio-*cove.c
8379 F:      drivers/gpio/gpio-msic.c
8380
8381 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8382 R:      Andy Shevchenko <[email protected]>
8383 S:      Maintained
8384 F:      drivers/mfd/intel_msic.c
8385 F:      drivers/mfd/intel_soc_pmic*
8386 F:      include/linux/mfd/intel_msic.h
8387 F:      include/linux/mfd/intel_soc_pmic*
8388
8389 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8390 M:      Stanislav Yakovlev <[email protected]>
8391 L:      [email protected]
8392 S:      Maintained
8393 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8394 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8395 F:      drivers/net/wireless/intel/ipw2x00/
8396
8397 INTEL PSTATE DRIVER
8398 M:      Srinivas Pandruvada <[email protected]>
8399 M:      Len Brown <[email protected]>
8400 L:      [email protected]
8401 S:      Supported
8402 F:      drivers/cpufreq/intel_pstate.c
8403
8404 INTEL RDMA RNIC DRIVER
8405 M:      Faisal Latif <[email protected]>
8406 M:      Shiraz Saleem <[email protected]>
8407 L:      [email protected]
8408 S:      Supported
8409 F:      drivers/infiniband/hw/i40iw/
8410 F:      include/uapi/rdma/i40iw-abi.h
8411
8412 INTEL SPEED SELECT TECHNOLOGY
8413 M:      Srinivas Pandruvada <[email protected]>
8414 L:      [email protected]
8415 S:      Maintained
8416 F:      drivers/platform/x86/intel_speed_select_if/
8417 F:      tools/power/x86/intel-speed-select/
8418 F:      include/uapi/linux/isst_if.h
8419
8420 INTEL STRATIX10 FIRMWARE DRIVERS
8421 M:      Richard Gong <[email protected]>
8422 L:      [email protected]
8423 S:      Maintained
8424 F:      drivers/firmware/stratix10-rsu.c
8425 F:      drivers/firmware/stratix10-svc.c
8426 F:      include/linux/firmware/intel/stratix10-smc.h
8427 F:      include/linux/firmware/intel/stratix10-svc-client.h
8428 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8429 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8430
8431 INTEL TELEMETRY DRIVER
8432 M:      Rajneesh Bhardwaj <[email protected]>
8433 M:      "David E. Box" <[email protected]>
8434 L:      [email protected]
8435 S:      Maintained
8436 F:      arch/x86/include/asm/intel_telemetry.h
8437 F:      drivers/platform/x86/intel_telemetry*
8438
8439 INTEL VIRTUAL BUTTON DRIVER
8440 M:      AceLan Kao <[email protected]>
8441 L:      [email protected]
8442 S:      Maintained
8443 F:      drivers/platform/x86/intel-vbtn.c
8444
8445 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8446 M:      Stanislaw Gruszka <[email protected]>
8447 L:      [email protected]
8448 S:      Supported
8449 F:      drivers/net/wireless/intel/iwlegacy/
8450
8451 INTEL WIRELESS WIFI LINK (iwlwifi)
8452 M:      Johannes Berg <[email protected]>
8453 M:      Emmanuel Grumbach <[email protected]>
8454 M:      Luca Coelho <[email protected]>
8455 M:      Intel Linux Wireless <[email protected]>
8456 L:      [email protected]
8457 W:      http://intellinuxwireless.org
8458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8459 S:      Supported
8460 F:      drivers/net/wireless/intel/iwlwifi/
8461
8462 INTEL WIRELESS WIMAX CONNECTION 2400
8463 M:      Inaky Perez-Gonzalez <[email protected]>
8464 M:      [email protected]
8465 L:      [email protected] (subscribers-only)
8466 S:      Supported
8467 W:      http://linuxwimax.org
8468 F:      Documentation/admin-guide/wimax/i2400m.rst
8469 F:      drivers/net/wimax/i2400m/
8470 F:      include/uapi/linux/wimax/i2400m.h
8471
8472 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8473 M:      Mario Limonciello <[email protected]>
8474 S:      Maintained
8475 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8476
8477 INTEL(R) TRACE HUB
8478 M:      Alexander Shishkin <[email protected]>
8479 S:      Supported
8480 F:      Documentation/trace/intel_th.rst
8481 F:      drivers/hwtracing/intel_th/
8482 F:      include/linux/intel_th.h
8483
8484 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8485 M:      Ning Sun <[email protected]>
8486 L:      [email protected]
8487 W:      http://tboot.sourceforge.net
8488 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8489 S:      Supported
8490 F:      Documentation/x86/intel_txt.rst
8491 F:      include/linux/tboot.h
8492 F:      arch/x86/kernel/tboot.c
8493
8494 INTERCONNECT API
8495 M:      Georgi Djakov <[email protected]>
8496 L:      [email protected]
8497 S:      Maintained
8498 F:      Documentation/driver-api/interconnect.rst
8499 F:      Documentation/devicetree/bindings/interconnect/
8500 F:      drivers/interconnect/
8501 F:      include/dt-bindings/interconnect/
8502 F:      include/linux/interconnect-provider.h
8503 F:      include/linux/interconnect.h
8504
8505 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8506 M:      Linus Walleij <[email protected]>
8507 L:      [email protected]
8508 S:      Maintained
8509 F:      drivers/iio/gyro/mpu3050*
8510 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8511
8512 IOC3 ETHERNET DRIVER
8513 M:      Ralf Baechle <[email protected]>
8514 L:      [email protected]
8515 S:      Maintained
8516 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8517
8518 IOMAP FILESYSTEM LIBRARY
8519 M:      Christoph Hellwig <[email protected]>
8520 M:      Darrick J. Wong <[email protected]>
8521 M:      [email protected]
8522 M:      [email protected]
8523 L:      [email protected]
8524 L:      [email protected]
8525 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8526 S:      Supported
8527 F:      fs/iomap/
8528 F:      include/linux/iomap.h
8529
8530 IOMMU DRIVERS
8531 M:      Joerg Roedel <[email protected]>
8532 L:      [email protected]
8533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8534 S:      Maintained
8535 F:      Documentation/devicetree/bindings/iommu/
8536 F:      drivers/iommu/
8537 F:      include/linux/iommu.h
8538 F:      include/linux/of_iommu.h
8539 F:      include/linux/iova.h
8540
8541 IO_URING
8542 M:      Jens Axboe <[email protected]>
8543 L:      [email protected]
8544 L:      [email protected]
8545 T:      git git://git.kernel.dk/linux-block
8546 T:      git git://git.kernel.dk/liburing
8547 S:      Maintained
8548 F:      fs/io_uring.c
8549 F:      include/uapi/linux/io_uring.h
8550
8551 IPMI SUBSYSTEM
8552 M:      Corey Minyard <[email protected]>
8553 L:      [email protected] (moderated for non-subscribers)
8554 W:      http://openipmi.sourceforge.net/
8555 S:      Supported
8556 F:      Documentation/devicetree/bindings/ipmi/
8557 F:      Documentation/IPMI.txt
8558 F:      drivers/char/ipmi/
8559 F:      include/linux/ipmi*
8560 F:      include/uapi/linux/ipmi*
8561
8562 IPS SCSI RAID DRIVER
8563 M:      Adaptec OEM Raid Solutions <[email protected]>
8564 L:      [email protected]
8565 W:      http://www.adaptec.com/
8566 S:      Maintained
8567 F:      drivers/scsi/ips*
8568
8569 IPVS
8570 M:      Wensong Zhang <[email protected]>
8571 M:      Simon Horman <[email protected]>
8572 M:      Julian Anastasov <[email protected]>
8573 L:      [email protected]
8574 L:      [email protected]
8575 S:      Maintained
8576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8578 F:      Documentation/networking/ipvs-sysctl.txt
8579 F:      include/net/ip_vs.h
8580 F:      include/uapi/linux/ip_vs.h
8581 F:      net/netfilter/ipvs/
8582
8583 IPWIRELESS DRIVER
8584 M:      Jiri Kosina <[email protected]>
8585 M:      David Sterba <[email protected]>
8586 S:      Odd Fixes
8587 F:      drivers/tty/ipwireless/
8588
8589 IPX NETWORK LAYER
8590 L:      [email protected]
8591 S:      Obsolete
8592 F:      include/uapi/linux/ipx.h
8593
8594 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8595 M:      Marc Zyngier <[email protected]>
8596 S:      Maintained
8597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8598 F:      Documentation/IRQ-domain.txt
8599 F:      include/linux/irqdomain.h
8600 F:      kernel/irq/irqdomain.c
8601 F:      kernel/irq/msi.c
8602
8603 IRQ SUBSYSTEM
8604 M:      Thomas Gleixner <[email protected]>
8605 L:      [email protected]
8606 S:      Maintained
8607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8608 F:      kernel/irq/
8609
8610 IRQCHIP DRIVERS
8611 M:      Thomas Gleixner <[email protected]>
8612 M:      Jason Cooper <[email protected]>
8613 M:      Marc Zyngier <[email protected]>
8614 L:      [email protected]
8615 S:      Maintained
8616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8617 F:      Documentation/devicetree/bindings/interrupt-controller/
8618 F:      drivers/irqchip/
8619
8620 ISA
8621 M:      William Breathitt Gray <[email protected]>
8622 S:      Maintained
8623 F:      Documentation/driver-api/isa.rst
8624 F:      drivers/base/isa.c
8625 F:      include/linux/isa.h
8626
8627 ISA RADIO MODULE
8628 M:      Hans Verkuil <[email protected]>
8629 L:      [email protected]
8630 T:      git git://linuxtv.org/media_tree.git
8631 W:      https://linuxtv.org
8632 S:      Maintained
8633 F:      drivers/media/radio/radio-isa*
8634
8635 ISAPNP
8636 M:      Jaroslav Kysela <[email protected]>
8637 S:      Maintained
8638 F:      Documentation/driver-api/isapnp.rst
8639 F:      drivers/pnp/isapnp/
8640 F:      include/linux/isapnp.h
8641
8642 ISCSI
8643 M:      Lee Duncan <[email protected]>
8644 M:      Chris Leech <[email protected]>
8645 L:      [email protected]
8646 W:      www.open-iscsi.com
8647 S:      Maintained
8648 F:      drivers/scsi/*iscsi*
8649 F:      include/scsi/*iscsi*
8650
8651 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8652 M:      Peter Jones <[email protected]>
8653 M:      Konrad Rzeszutek Wilk <[email protected]>
8654 S:      Maintained
8655 F:      drivers/firmware/iscsi_ibft*
8656
8657 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8658 M:      Sagi Grimberg <[email protected]>
8659 M:      Max Gurtovoy <[email protected]>
8660 L:      [email protected]
8661 S:      Supported
8662 W:      http://www.openfabrics.org
8663 W:      www.open-iscsi.org
8664 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8665 F:      drivers/infiniband/ulp/iser/
8666
8667 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
8668 M:      Sagi Grimberg <[email protected]>
8669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
8670 L:      [email protected]
8671 L:      [email protected]
8672 S:      Supported
8673 W:      http://www.linux-iscsi.org
8674 F:      drivers/infiniband/ulp/isert
8675
8676 ISDN/mISDN SUBSYSTEM
8677 M:      Karsten Keil <[email protected]>
8678 L:      [email protected] (subscribers-only)
8679 L:      [email protected]
8680 W:      http://www.isdn4linux.de
8681 S:      Maintained
8682 F:      drivers/isdn/mISDN
8683 F:      drivers/isdn/hardware
8684
8685 ISDN/CAPI SUBSYSTEM
8686 M:      Karsten Keil <[email protected]>
8687 L:      [email protected] (subscribers-only)
8688 L:      [email protected]
8689 W:      http://www.isdn4linux.de
8690 S:      Odd Fixes
8691 F:      Documentation/isdn/
8692 F:      drivers/isdn/capi/
8693 F:      drivers/staging/isdn/
8694 F:      net/bluetooth/cmtp/
8695 F:      include/linux/isdn/
8696 F:      include/uapi/linux/isdn/
8697
8698 IT87 HARDWARE MONITORING DRIVER
8699 M:      Jean Delvare <[email protected]>
8700 L:      [email protected]
8701 S:      Maintained
8702 F:      Documentation/hwmon/it87.rst
8703 F:      drivers/hwmon/it87.c
8704
8705 IT913X MEDIA DRIVER
8706 M:      Antti Palosaari <[email protected]>
8707 L:      [email protected]
8708 W:      https://linuxtv.org
8709 W:      http://palosaari.fi/linux/
8710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8711 T:      git git://linuxtv.org/anttip/media_tree.git
8712 S:      Maintained
8713 F:      drivers/media/tuners/it913x*
8714
8715 IVTV VIDEO4LINUX DRIVER
8716 M:      Andy Walls <[email protected]>
8717 L:      [email protected] (subscribers-only)
8718 L:      [email protected]
8719 T:      git git://linuxtv.org/media_tree.git
8720 W:      http://www.ivtvdriver.org
8721 S:      Maintained
8722 F:      Documentation/media/v4l-drivers/ivtv*
8723 F:      drivers/media/pci/ivtv/
8724 F:      include/uapi/linux/ivtv*
8725
8726 IX2505V MEDIA DRIVER
8727 M:      Malcolm Priestley <[email protected]>
8728 L:      [email protected]
8729 W:      https://linuxtv.org
8730 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8731 S:      Maintained
8732 F:      drivers/media/dvb-frontends/ix2505v*
8733
8734 JAILHOUSE HYPERVISOR INTERFACE
8735 M:      Jan Kiszka <[email protected]>
8736 L:      [email protected]
8737 S:      Maintained
8738 F:      arch/x86/kernel/jailhouse.c
8739 F:      arch/x86/include/asm/jailhouse_para.h
8740
8741 JC42.4 TEMPERATURE SENSOR DRIVER
8742 M:      Guenter Roeck <[email protected]>
8743 L:      [email protected]
8744 S:      Maintained
8745 F:      drivers/hwmon/jc42.c
8746 F:      Documentation/hwmon/jc42.rst
8747
8748 JFS FILESYSTEM
8749 M:      Dave Kleikamp <[email protected]>
8750 L:      [email protected]
8751 W:      http://jfs.sourceforge.net/
8752 T:      git git://github.com/kleikamp/linux-shaggy.git
8753 S:      Maintained
8754 F:      Documentation/admin-guide/jfs.rst
8755 F:      fs/jfs/
8756
8757 JME NETWORK DRIVER
8758 M:      Guo-Fu Tseng <[email protected]>
8759 L:      [email protected]
8760 S:      Maintained
8761 F:      drivers/net/ethernet/jme.*
8762
8763 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
8764 M:      David Woodhouse <[email protected]>
8765 M:      Richard Weinberger <[email protected]>
8766 L:      [email protected]
8767 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
8768 T:      git git://git.infradead.org/ubifs-2.6.git
8769 S:      Odd Fixes
8770 F:      fs/jffs2/
8771 F:      include/uapi/linux/jffs2.h
8772
8773 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
8774 M:      "Theodore Ts'o" <[email protected]>
8775 M:      Jan Kara <[email protected]>
8776 L:      [email protected]
8777 S:      Maintained
8778 F:      fs/jbd2/
8779 F:      include/linux/jbd2.h
8780
8781 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
8782 M:      Mikhail Ulyanov <[email protected]>
8783 L:      [email protected]
8784 S:      Maintained
8785 F:      drivers/media/platform/rcar_jpu.c
8786
8787 JSM Neo PCI based serial card
8788 L:      [email protected]
8789 S:      Orphan
8790 F:      drivers/tty/serial/jsm/
8791
8792 K10TEMP HARDWARE MONITORING DRIVER
8793 M:      Clemens Ladisch <[email protected]>
8794 L:      [email protected]
8795 S:      Maintained
8796 F:      Documentation/hwmon/k10temp.rst
8797 F:      drivers/hwmon/k10temp.c
8798
8799 K8TEMP HARDWARE MONITORING DRIVER
8800 M:      Rudolf Marek <[email protected]>
8801 L:      [email protected]
8802 S:      Maintained
8803 F:      Documentation/hwmon/k8temp.rst
8804 F:      drivers/hwmon/k8temp.c
8805
8806 KASAN
8807 M:      Andrey Ryabinin <[email protected]>
8808 R:      Alexander Potapenko <[email protected]>
8809 R:      Dmitry Vyukov <[email protected]>
8810 L:      [email protected]
8811 S:      Maintained
8812 F:      arch/*/include/asm/kasan.h
8813 F:      arch/*/mm/kasan_init*
8814 F:      Documentation/dev-tools/kasan.rst
8815 F:      include/linux/kasan*.h
8816 F:      lib/test_kasan.c
8817 F:      mm/kasan/
8818 F:      scripts/Makefile.kasan
8819
8820 KCONFIG
8821 M:      Masahiro Yamada <[email protected]>
8822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
8823 L:      [email protected]
8824 S:      Maintained
8825 F:      Documentation/kbuild/kconfig*
8826 F:      scripts/kconfig/
8827 F:      scripts/Kconfig.include
8828
8829 KDUMP
8830 M:      Dave Young <[email protected]>
8831 M:      Baoquan He <[email protected]>
8832 R:      Vivek Goyal <[email protected]>
8833 L:      [email protected]
8834 W:      http://lse.sourceforge.net/kdump/
8835 S:      Maintained
8836 F:      Documentation/admin-guide/kdump/
8837
8838 KEENE FM RADIO TRANSMITTER DRIVER
8839 M:      Hans Verkuil <[email protected]>
8840 L:      [email protected]
8841 T:      git git://linuxtv.org/media_tree.git
8842 W:      https://linuxtv.org
8843 S:      Maintained
8844 F:      drivers/media/radio/radio-keene*
8845
8846 KERNEL AUTOMOUNTER
8847 M:      Ian Kent <[email protected]>
8848 L:      [email protected]
8849 S:      Maintained
8850 F:      fs/autofs/
8851
8852 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
8853 M:      Masahiro Yamada <[email protected]>
8854 M:      Michal Marek <[email protected]>
8855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
8856 L:      [email protected]
8857 S:      Maintained
8858 F:      Documentation/kbuild/
8859 F:      Makefile
8860 F:      scripts/Kbuild*
8861 F:      scripts/Makefile*
8862 F:      scripts/basic/
8863 F:      scripts/mk*
8864 F:      scripts/*vmlinux*
8865 F:      scripts/mod/
8866 F:      scripts/package/
8867
8868 KERNEL JANITORS
8869 L:      [email protected]
8870 W:      http://kernelnewbies.org/KernelJanitors
8871 S:      Odd Fixes
8872
8873 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
8874 M:      "J. Bruce Fields" <[email protected]>
8875 M:      Chuck Lever <[email protected]>
8876 L:      [email protected]
8877 W:      http://nfs.sourceforge.net/
8878 T:      git git://linux-nfs.org/~bfields/linux.git
8879 S:      Supported
8880 F:      fs/nfsd/
8881 F:      include/uapi/linux/nfsd/
8882 F:      fs/lockd/
8883 F:      fs/nfs_common/
8884 F:      net/sunrpc/
8885 F:      include/linux/lockd/
8886 F:      include/linux/sunrpc/
8887 F:      include/uapi/linux/sunrpc/
8888
8889 KERNEL SELFTEST FRAMEWORK
8890 M:      Shuah Khan <[email protected]>
8891 M:      Shuah Khan <[email protected]>
8892 L:      [email protected]
8893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
8894 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
8895 S:      Maintained
8896 F:      tools/testing/selftests/
8897 F:      Documentation/dev-tools/kselftest*
8898
8899 KERNEL USERMODE HELPER
8900 M:      Luis Chamberlain <[email protected]>
8901 L:      [email protected]
8902 S:      Maintained
8903 F:      kernel/umh.c
8904 F:      include/linux/umh.h
8905
8906 KERNEL VIRTUAL MACHINE (KVM)
8907 M:      Paolo Bonzini <[email protected]>
8908 M:      Radim Krčmář <[email protected]>
8909 L:      [email protected]
8910 W:      http://www.linux-kvm.org
8911 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8912 S:      Supported
8913 F:      Documentation/virt/kvm/
8914 F:      include/trace/events/kvm.h
8915 F:      include/uapi/asm-generic/kvm*
8916 F:      include/uapi/linux/kvm*
8917 F:      include/asm-generic/kvm*
8918 F:      include/linux/kvm*
8919 F:      include/kvm/iodev.h
8920 F:      virt/kvm/*
8921 F:      tools/kvm/
8922 F:      tools/testing/selftests/kvm/
8923
8924 KERNEL VIRTUAL MACHINE FOR ARM/ARM64 (KVM/arm, KVM/arm64)
8925 M:      Marc Zyngier <[email protected]>
8926 R:      James Morse <[email protected]>
8927 R:      Julien Thierry <[email protected]>
8928 R:      Suzuki K Poulose <[email protected]>
8929 L:      [email protected] (moderated for non-subscribers)
8930 L:      [email protected]
8931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
8932 S:      Maintained
8933 F:      arch/arm/include/uapi/asm/kvm*
8934 F:      arch/arm/include/asm/kvm*
8935 F:      arch/arm/kvm/
8936 F:      arch/arm64/include/uapi/asm/kvm*
8937 F:      arch/arm64/include/asm/kvm*
8938 F:      arch/arm64/kvm/
8939 F:      virt/kvm/arm/
8940 F:      include/kvm/arm_*
8941
8942 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
8943 M:      James Hogan <[email protected]>
8944 L:      [email protected]
8945 S:      Supported
8946 F:      arch/mips/include/uapi/asm/kvm*
8947 F:      arch/mips/include/asm/kvm*
8948 F:      arch/mips/kvm/
8949
8950 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
8951 M:      Paul Mackerras <[email protected]>
8952 L:      [email protected]
8953 W:      http://www.linux-kvm.org/
8954 T:      git git://github.com/agraf/linux-2.6.git
8955 S:      Supported
8956 F:      arch/powerpc/include/uapi/asm/kvm*
8957 F:      arch/powerpc/include/asm/kvm*
8958 F:      arch/powerpc/kvm/
8959 F:      arch/powerpc/kernel/kvm*
8960
8961 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
8962 M:      Christian Borntraeger <[email protected]>
8963 M:      Janosch Frank <[email protected]>
8964 R:      David Hildenbrand <[email protected]>
8965 R:      Cornelia Huck <[email protected]>
8966 L:      [email protected]
8967 W:      http://www.ibm.com/developerworks/linux/linux390/
8968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
8969 S:      Supported
8970 F:      arch/s390/include/uapi/asm/kvm*
8971 F:      arch/s390/include/asm/gmap.h
8972 F:      arch/s390/include/asm/kvm*
8973 F:      arch/s390/kvm/
8974 F:      arch/s390/mm/gmap.c
8975 F:      tools/testing/selftests/kvm/s390x/
8976 F:      tools/testing/selftests/kvm/*/s390x/
8977
8978 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
8979 M:      Paolo Bonzini <[email protected]>
8980 M:      Radim Krčmář <[email protected]>
8981 R:      Sean Christopherson <[email protected]>
8982 R:      Vitaly Kuznetsov <[email protected]>
8983 R:      Wanpeng Li <[email protected]>
8984 R:      Jim Mattson <[email protected]>
8985 R:      Joerg Roedel <[email protected]>
8986 L:      [email protected]
8987 W:      http://www.linux-kvm.org
8988 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8989 S:      Supported
8990 F:      arch/x86/kvm/
8991 F:      arch/x86/kvm/*/
8992 F:      arch/x86/include/uapi/asm/kvm*
8993 F:      arch/x86/include/uapi/asm/vmx.h
8994 F:      arch/x86/include/uapi/asm/svm.h
8995 F:      arch/x86/include/asm/kvm*
8996 F:      arch/x86/include/asm/pvclock-abi.h
8997 F:      arch/x86/include/asm/svm.h
8998 F:      arch/x86/include/asm/vmx.h
8999 F:      arch/x86/kernel/kvm.c
9000 F:      arch/x86/kernel/kvmclock.c
9001
9002 KERNFS
9003 M:      Greg Kroah-Hartman <[email protected]>
9004 M:      Tejun Heo <[email protected]>
9005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9006 S:      Supported
9007 F:      include/linux/kernfs.h
9008 F:      fs/kernfs/
9009
9010 KEXEC
9011 M:      Eric Biederman <[email protected]>
9012 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9013 L:      [email protected]
9014 S:      Maintained
9015 F:      include/linux/kexec.h
9016 F:      include/uapi/linux/kexec.h
9017 F:      kernel/kexec*
9018
9019 KEYS-ENCRYPTED
9020 M:      Mimi Zohar <[email protected]>
9021 L:      [email protected]
9022 L:      [email protected]
9023 S:      Supported
9024 F:      Documentation/security/keys/trusted-encrypted.rst
9025 F:      include/keys/encrypted-type.h
9026 F:      security/keys/encrypted-keys/
9027
9028 KEYS-TRUSTED
9029 M:      James Bottomley <[email protected]>
9030 M:      Jarkko Sakkinen <[email protected]>
9031 M:      Mimi Zohar <[email protected]>
9032 L:      [email protected]
9033 L:      [email protected]
9034 S:      Supported
9035 F:      Documentation/security/keys/trusted-encrypted.rst
9036 F:      include/keys/trusted-type.h
9037 F:      security/keys/trusted.c
9038 F:      security/keys/trusted.h
9039
9040 KEYS/KEYRINGS:
9041 M:      David Howells <[email protected]>
9042 L:      [email protected]
9043 S:      Maintained
9044 F:      Documentation/security/keys/core.rst
9045 F:      include/linux/key.h
9046 F:      include/linux/key-type.h
9047 F:      include/linux/keyctl.h
9048 F:      include/uapi/linux/keyctl.h
9049 F:      include/keys/
9050 F:      security/keys/
9051
9052 KGDB / KDB /debug_core
9053 M:      Jason Wessel <[email protected]>
9054 M:      Daniel Thompson <[email protected]>
9055 W:      http://kgdb.wiki.kernel.org/
9056 L:      [email protected]
9057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9058 S:      Maintained
9059 F:      Documentation/dev-tools/kgdb.rst
9060 F:      drivers/misc/kgdbts.c
9061 F:      drivers/tty/serial/kgdboc.c
9062 F:      include/linux/kdb.h
9063 F:      include/linux/kgdb.h
9064 F:      kernel/debug/
9065
9066 KMEMLEAK
9067 M:      Catalin Marinas <[email protected]>
9068 S:      Maintained
9069 F:      Documentation/dev-tools/kmemleak.rst
9070 F:      include/linux/kmemleak.h
9071 F:      mm/kmemleak.c
9072 F:      mm/kmemleak-test.c
9073
9074 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9075 M:      Luis Chamberlain <[email protected]>
9076 L:      [email protected]
9077 S:      Maintained
9078 F:      kernel/kmod.c
9079 F:      include/linux/kmod.h
9080 F:      lib/test_kmod.c
9081 F:      tools/testing/selftests/kmod/
9082
9083 KPROBES
9084 M:      Naveen N. Rao <[email protected]>
9085 M:      Anil S Keshavamurthy <[email protected]>
9086 M:      "David S. Miller" <[email protected]>
9087 M:      Masami Hiramatsu <[email protected]>
9088 S:      Maintained
9089 F:      Documentation/kprobes.txt
9090 F:      include/linux/kprobes.h
9091 F:      include/asm-generic/kprobes.h
9092 F:      kernel/kprobes.c
9093
9094 KS0108 LCD CONTROLLER DRIVER
9095 M:      Miguel Ojeda Sandonis <[email protected]>
9096 S:      Maintained
9097 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9098 F:      drivers/auxdisplay/ks0108.c
9099 F:      include/linux/ks0108.h
9100
9101 L3MDEV
9102 M:      David Ahern <[email protected]>
9103 L:      [email protected]
9104 S:      Maintained
9105 F:      net/l3mdev
9106 F:      include/net/l3mdev.h
9107
9108 L7 BPF FRAMEWORK
9109 M:      John Fastabend <[email protected]>
9110 M:      Daniel Borkmann <[email protected]>
9111 L:      [email protected]
9112 L:      [email protected]
9113 S:      Maintained
9114 F:      include/linux/skmsg.h
9115 F:      net/core/skmsg.c
9116 F:      net/core/sock_map.c
9117 F:      net/ipv4/tcp_bpf.c
9118
9119 LANTIQ / INTEL Ethernet drivers
9120 M:      Hauke Mehrtens <[email protected]>
9121 L:      [email protected]
9122 S:      Maintained
9123 F:      net/dsa/tag_gswip.c
9124 F:      drivers/net/ethernet/lantiq_xrx200.c
9125 F:      drivers/net/dsa/lantiq_pce.h
9126 F:      drivers/net/dsa/lantiq_gswip.c
9127
9128 LANTIQ MIPS ARCHITECTURE
9129 M:      John Crispin <[email protected]>
9130 L:      [email protected]
9131 S:      Maintained
9132 F:      arch/mips/lantiq
9133 F:      drivers/soc/lantiq
9134
9135 LAPB module
9136 L:      [email protected]
9137 S:      Orphan
9138 F:      Documentation/networking/lapb-module.txt
9139 F:      include/*/lapb.h
9140 F:      net/lapb/
9141
9142 LASI 53c700 driver for PARISC
9143 M:      "James E.J. Bottomley" <[email protected]>
9144 L:      [email protected]
9145 S:      Maintained
9146 F:      Documentation/scsi/53c700.txt
9147 F:      drivers/scsi/53c700*
9148
9149 LEAKING_ADDRESSES
9150 M:      Tobin C. Harding <[email protected]>
9151 M:      Tycho Andersen <[email protected]>
9152 L:      [email protected]
9153 S:      Maintained
9154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9155 F:      scripts/leaking_addresses.pl
9156
9157 LED SUBSYSTEM
9158 M:      Jacek Anaszewski <[email protected]>
9159 M:      Pavel Machek <[email protected]>
9160 R:      Dan Murphy <[email protected]>
9161 L:      [email protected]
9162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9163 S:      Maintained
9164 F:      Documentation/devicetree/bindings/leds/
9165 F:      drivers/leds/
9166 F:      include/linux/leds.h
9167
9168 LEGACY EEPROM DRIVER
9169 M:      Jean Delvare <[email protected]>
9170 S:      Maintained
9171 F:      Documentation/misc-devices/eeprom.rst
9172 F:      drivers/misc/eeprom/eeprom.c
9173
9174 LEGO MINDSTORMS EV3
9175 R:      David Lechner <[email protected]>
9176 S:      Maintained
9177 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9178 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9179 F:      drivers/power/supply/lego_ev3_battery.c
9180
9181 LEGO USB Tower driver
9182 M:      Juergen Stuber <[email protected]>
9183 L:      [email protected]
9184 W:      http://legousb.sourceforge.net/
9185 S:      Maintained
9186 F:      drivers/usb/misc/legousbtower.c
9187
9188 LG LAPTOP EXTRAS
9189 M:      Matan Ziv-Av <[email protected]>
9190 L:      [email protected]
9191 S:      Maintained
9192 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9193 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9194 F:      drivers/platform/x86/lg-laptop.c
9195
9196 LG2160 MEDIA DRIVER
9197 M:      Michael Krufky <[email protected]>
9198 L:      [email protected]
9199 W:      https://linuxtv.org
9200 W:      http://github.com/mkrufky
9201 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9202 T:      git git://linuxtv.org/mkrufky/tuners.git
9203 S:      Maintained
9204 F:      drivers/media/dvb-frontends/lg2160.*
9205
9206 LGDT3305 MEDIA DRIVER
9207 M:      Michael Krufky <[email protected]>
9208 L:      [email protected]
9209 W:      https://linuxtv.org
9210 W:      http://github.com/mkrufky
9211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9212 T:      git git://linuxtv.org/mkrufky/tuners.git
9213 S:      Maintained
9214 F:      drivers/media/dvb-frontends/lgdt3305.*
9215
9216 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9217 M:      Viresh Kumar <[email protected]>
9218 L:      [email protected]
9219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9220 S:      Maintained
9221 F:      include/linux/pata_arasan_cf_data.h
9222 F:      drivers/ata/pata_arasan_cf.c
9223
9224 LIBATA PATA DRIVERS
9225 M:      Bartlomiej Zolnierkiewicz <[email protected]>
9226 M:      Jens Axboe <[email protected]>
9227 L:      [email protected]
9228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9229 S:      Maintained
9230 F:      drivers/ata/pata_*.c
9231 F:      drivers/ata/ata_generic.c
9232
9233 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9234 M:      Linus Walleij <[email protected]>
9235 L:      [email protected]
9236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9237 S:      Maintained
9238 F:      drivers/ata/pata_ftide010.c
9239 F:      drivers/ata/sata_gemini.c
9240 F:      drivers/ata/sata_gemini.h
9241
9242 LIBATA SATA AHCI PLATFORM devices support
9243 M:      Hans de Goede <[email protected]>
9244 M:      Jens Axboe <[email protected]>
9245 L:      [email protected]
9246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9247 S:      Maintained
9248 F:      drivers/ata/ahci_platform.c
9249 F:      drivers/ata/libahci_platform.c
9250 F:      include/linux/ahci_platform.h
9251
9252 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9253 M:      Mikael Pettersson <[email protected]>
9254 L:      [email protected]
9255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9256 S:      Maintained
9257 F:      drivers/ata/sata_promise.*
9258
9259 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9260 M:      Jens Axboe <[email protected]>
9261 L:      [email protected]
9262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9263 S:      Maintained
9264 F:      drivers/ata/
9265 F:      include/linux/ata.h
9266 F:      include/linux/libata.h
9267 F:      Documentation/devicetree/bindings/ata/
9268
9269 LIBLOCKDEP
9270 M:      Sasha Levin <[email protected]>
9271 S:      Maintained
9272 F:      tools/lib/lockdep/
9273
9274 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9275 M:      Dan Williams <[email protected]>
9276 M:      Vishal Verma <[email protected]>
9277 M:      Dave Jiang <[email protected]>
9278 L:      [email protected]
9279 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9280 S:      Supported
9281 F:      drivers/nvdimm/blk.c
9282 F:      drivers/nvdimm/region_devs.c
9283
9284 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9285 M:      Vishal Verma <[email protected]>
9286 M:      Dan Williams <[email protected]>
9287 M:      Dave Jiang <[email protected]>
9288 L:      [email protected]
9289 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9290 S:      Supported
9291 F:      drivers/nvdimm/btt*
9292
9293 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9294 M:      Dan Williams <[email protected]>
9295 M:      Vishal Verma <[email protected]>
9296 M:      Dave Jiang <[email protected]>
9297 L:      [email protected]
9298 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9299 S:      Supported
9300 F:      drivers/nvdimm/pmem*
9301
9302 LIBNVDIMM: DEVICETREE BINDINGS
9303 M:      Oliver O'Halloran <[email protected]>
9304 L:      [email protected]
9305 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9306 S:      Supported
9307 F:      drivers/nvdimm/of_pmem.c
9308 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9309
9310 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9311 M:      Dan Williams <[email protected]>
9312 M:      Vishal Verma <[email protected]>
9313 M:      Dave Jiang <[email protected]>
9314 M:      Keith Busch <[email protected]>
9315 M:      Ira Weiny <[email protected]>
9316 L:      [email protected]
9317 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9319 S:      Supported
9320 F:      drivers/nvdimm/*
9321 F:      drivers/acpi/nfit/*
9322 F:      include/linux/nd.h
9323 F:      include/linux/libnvdimm.h
9324 F:      include/uapi/linux/ndctl.h
9325
9326 LICENSES and SPDX stuff
9327 M:      Thomas Gleixner <[email protected]>
9328 M:      Greg Kroah-Hartman <[email protected]>
9329 L:      [email protected]
9330 S:      Maintained
9331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9332 F:      COPYING
9333 F:      Documentation/process/license-rules.rst
9334 F:      LICENSES/
9335 F:      scripts/spdxcheck-test.sh
9336 F:      scripts/spdxcheck.py
9337
9338 LIGHTNVM PLATFORM SUPPORT
9339 M:      Matias Bjorling <[email protected]>
9340 W:      http://github/OpenChannelSSD
9341 L:      [email protected]
9342 S:      Maintained
9343 F:      drivers/lightnvm/
9344 F:      include/linux/lightnvm.h
9345 F:      include/uapi/linux/lightnvm.h
9346
9347 LINUX FOR POWER MACINTOSH
9348 M:      Benjamin Herrenschmidt <[email protected]>
9349 W:      http://www.penguinppc.org/
9350 L:      [email protected]
9351 S:      Maintained
9352 F:      arch/powerpc/platforms/powermac/
9353 F:      drivers/macintosh/
9354
9355 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9356 M:      Benjamin Herrenschmidt <[email protected]>
9357 M:      Paul Mackerras <[email protected]>
9358 M:      Michael Ellerman <[email protected]>
9359 W:      https://github.com/linuxppc/linux/wiki
9360 L:      [email protected]
9361 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9363 S:      Supported
9364 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9365 F:      Documentation/devicetree/bindings/powerpc/
9366 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9367 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9368 F:      Documentation/powerpc/
9369 F:      arch/powerpc/
9370 F:      drivers/char/tpm/tpm_ibmvtpm*
9371 F:      drivers/crypto/nx/
9372 F:      drivers/crypto/vmx/
9373 F:      drivers/i2c/busses/i2c-opal.c
9374 F:      drivers/net/ethernet/ibm/ibmveth.*
9375 F:      drivers/net/ethernet/ibm/ibmvnic.*
9376 F:      drivers/pci/hotplug/pnv_php.c
9377 F:      drivers/pci/hotplug/rpa*
9378 F:      drivers/rtc/rtc-opal.c
9379 F:      drivers/scsi/ibmvscsi/
9380 F:      drivers/tty/hvc/hvc_opal.c
9381 F:      drivers/watchdog/wdrtas.c
9382 F:      tools/testing/selftests/powerpc
9383 N:      /pmac
9384 N:      powermac
9385 N:      powernv
9386 N:      [^a-z0-9]ps3
9387 N:      pseries
9388
9389 LINUX FOR POWERPC EMBEDDED MPC5XXX
9390 M:      Anatolij Gustschin <[email protected]>
9391 L:      [email protected]
9392 T:      git git://git.denx.de/linux-denx-agust.git
9393 S:      Maintained
9394 F:      arch/powerpc/platforms/512x/
9395 F:      arch/powerpc/platforms/52xx/
9396
9397 LINUX FOR POWERPC EMBEDDED PPC4XX
9398 M:      Alistair Popple <[email protected]>
9399 M:      Matt Porter <[email protected]>
9400 W:      http://www.penguinppc.org/
9401 L:      [email protected]
9402 S:      Maintained
9403 F:      arch/powerpc/platforms/40x/
9404 F:      arch/powerpc/platforms/44x/
9405
9406 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9407 M:      Scott Wood <[email protected]>
9408 M:      Kumar Gala <[email protected]>
9409 W:      http://www.penguinppc.org/
9410 L:      [email protected]
9411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9412 S:      Maintained
9413 F:      arch/powerpc/platforms/83xx/
9414 F:      arch/powerpc/platforms/85xx/
9415 F:      Documentation/devicetree/bindings/powerpc/fsl/
9416
9417 LINUX FOR POWERPC EMBEDDED PPC8XX
9418 M:      Vitaly Bordug <[email protected]>
9419 W:      http://www.penguinppc.org/
9420 L:      [email protected]
9421 S:      Maintained
9422 F:      arch/powerpc/platforms/8xx/
9423
9424 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
9425 L:      [email protected]
9426 S:      Orphan
9427 F:      arch/powerpc/*/*virtex*
9428 F:      arch/powerpc/*/*/*virtex*
9429
9430 LINUX FOR POWERPC PA SEMI PWRFICIENT
9431 L:      [email protected]
9432 S:      Orphan
9433 F:      arch/powerpc/platforms/pasemi/
9434 F:      drivers/*/*pasemi*
9435 F:      drivers/*/*/*pasemi*
9436
9437 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9438 M:      Kees Cook <[email protected]>
9439 S:      Maintained
9440 F:      drivers/misc/lkdtm/*
9441
9442 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9443 M:      Alan Stern <[email protected]>
9444 M:      Andrea Parri <[email protected]>
9445 M:      Will Deacon <[email protected]>
9446 M:      Peter Zijlstra <[email protected]>
9447 M:      Boqun Feng <[email protected]>
9448 M:      Nicholas Piggin <[email protected]>
9449 M:      David Howells <[email protected]>
9450 M:      Jade Alglave <[email protected]>
9451 M:      Luc Maranget <[email protected]>
9452 M:      "Paul E. McKenney" <[email protected]>
9453 R:      Akira Yokosawa <[email protected]>
9454 R:      Daniel Lustig <[email protected]>
9455 L:      [email protected]
9456 L:      [email protected]
9457 S:      Supported
9458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9459 F:      tools/memory-model/
9460 F:      Documentation/atomic_bitops.txt
9461 F:      Documentation/atomic_t.txt
9462 F:      Documentation/core-api/atomic_ops.rst
9463 F:      Documentation/core-api/refcount-vs-atomic.rst
9464 F:      Documentation/memory-barriers.txt
9465
9466 LIS3LV02D ACCELEROMETER DRIVER
9467 M:      Eric Piel <[email protected]>
9468 S:      Maintained
9469 F:      Documentation/misc-devices/lis3lv02d.rst
9470 F:      drivers/misc/lis3lv02d/
9471 F:      drivers/platform/x86/hp_accel.c
9472
9473 LIVE PATCHING
9474 M:      Josh Poimboeuf <[email protected]>
9475 M:      Jiri Kosina <[email protected]>
9476 M:      Miroslav Benes <[email protected]>
9477 M:      Petr Mladek <[email protected]>
9478 R:      Joe Lawrence <[email protected]>
9479 S:      Maintained
9480 F:      kernel/livepatch/
9481 F:      include/linux/livepatch.h
9482 F:      arch/x86/include/asm/livepatch.h
9483 F:      arch/x86/kernel/livepatch.c
9484 F:      Documentation/livepatch/
9485 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9486 F:      samples/livepatch/
9487 F:      tools/testing/selftests/livepatch/
9488 L:      [email protected]
9489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9490
9491 LLC (802.2)
9492 L:      [email protected]
9493 S:      Odd fixes
9494 F:      include/linux/llc.h
9495 F:      include/uapi/linux/llc.h
9496 F:      include/net/llc*
9497 F:      net/llc/
9498
9499 LM73 HARDWARE MONITOR DRIVER
9500 M:      Guillaume Ligneul <[email protected]>
9501 L:      [email protected]
9502 S:      Maintained
9503 F:      drivers/hwmon/lm73.c
9504
9505 LM78 HARDWARE MONITOR DRIVER
9506 M:      Jean Delvare <[email protected]>
9507 L:      [email protected]
9508 S:      Maintained
9509 F:      Documentation/hwmon/lm78.rst
9510 F:      drivers/hwmon/lm78.c
9511
9512 LM83 HARDWARE MONITOR DRIVER
9513 M:      Jean Delvare <[email protected]>
9514 L:      [email protected]
9515 S:      Maintained
9516 F:      Documentation/hwmon/lm83.rst
9517 F:      drivers/hwmon/lm83.c
9518
9519 LM90 HARDWARE MONITOR DRIVER
9520 M:      Jean Delvare <[email protected]>
9521 L:      [email protected]
9522 S:      Maintained
9523 F:      Documentation/hwmon/lm90.rst
9524 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9525 F:      drivers/hwmon/lm90.c
9526 F:      include/dt-bindings/thermal/lm90.h
9527
9528 LM95234 HARDWARE MONITOR DRIVER
9529 M:      Guenter Roeck <[email protected]>
9530 L:      [email protected]
9531 S:      Maintained
9532 F:      Documentation/hwmon/lm95234.rst
9533 F:      drivers/hwmon/lm95234.c
9534
9535 LME2510 MEDIA DRIVER
9536 M:      Malcolm Priestley <[email protected]>
9537 L:      [email protected]
9538 W:      https://linuxtv.org
9539 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9540 S:      Maintained
9541 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9542
9543 LOADPIN SECURITY MODULE
9544 M:      Kees Cook <[email protected]>
9545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9546 S:      Supported
9547 F:      security/loadpin/
9548 F:      Documentation/admin-guide/LSM/LoadPin.rst
9549
9550 LOCKING PRIMITIVES
9551 M:      Peter Zijlstra <[email protected]>
9552 M:      Ingo Molnar <[email protected]>
9553 M:      Will Deacon <[email protected]>
9554 L:      [email protected]
9555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9556 S:      Maintained
9557 F:      Documentation/locking/
9558 F:      include/linux/lockdep.h
9559 F:      include/linux/spinlock*.h
9560 F:      arch/*/include/asm/spinlock*.h
9561 F:      include/linux/rwlock*.h
9562 F:      include/linux/mutex*.h
9563 F:      include/linux/rwsem*.h
9564 F:      include/linux/seqlock.h
9565 F:      lib/locking*.[ch]
9566 F:      kernel/locking/
9567 X:      kernel/locking/locktorture.c
9568
9569 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9570 M:      "Richard Russon (FlatCap)" <[email protected]>
9571 L:      [email protected]
9572 W:      http://www.linux-ntfs.org/content/view/19/37/
9573 S:      Maintained
9574 F:      Documentation/admin-guide/ldm.rst
9575 F:      block/partitions/ldm.*
9576
9577 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9578 M:      Sathya Prakash <[email protected]>
9579 M:      Chaitra P B <[email protected]>
9580 M:      Suganath Prabu Subramani <[email protected]>
9581 L:      [email protected]
9582 L:      [email protected]
9583 W:      http://www.avagotech.com/support/
9584 S:      Supported
9585 F:      drivers/message/fusion/
9586 F:      drivers/scsi/mpt3sas/
9587
9588 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9589 M:      Matthew Wilcox <[email protected]>
9590 L:      [email protected]
9591 S:      Maintained
9592 F:      drivers/scsi/sym53c8xx_2/
9593
9594 LTC1660 DAC DRIVER
9595 M:      Marcus Folkesson <[email protected]>
9596 L:      [email protected]
9597 S:      Maintained
9598 F:      Documentation/devicetree/bindings/iio/dac/ltc1660.txt
9599 F:      drivers/iio/dac/ltc1660.c
9600
9601 LTC4261 HARDWARE MONITOR DRIVER
9602 M:      Guenter Roeck <[email protected]>
9603 L:      [email protected]
9604 S:      Maintained
9605 F:      Documentation/hwmon/ltc4261.rst
9606 F:      drivers/hwmon/ltc4261.c
9607
9608 LTC4306 I2C MULTIPLEXER DRIVER
9609 M:      Michael Hennerich <[email protected]>
9610 W:      http://ez.analog.com/community/linux-device-drivers
9611 L:      [email protected]
9612 S:      Supported
9613 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9614 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9615
9616 LTP (Linux Test Project)
9617 M:      Mike Frysinger <[email protected]>
9618 M:      Cyril Hrubis <[email protected]>
9619 M:      Wanlong Gao <[email protected]>
9620 M:      Jan Stancek <[email protected]>
9621 M:      Stanislav Kholmanskikh <[email protected]>
9622 M:      Alexey Kodanev <[email protected]>
9623 L:      [email protected] (subscribers-only)
9624 W:      http://linux-test-project.github.io/
9625 T:      git git://github.com/linux-test-project/ltp.git
9626 S:      Maintained
9627
9628 M68K ARCHITECTURE
9629 M:      Geert Uytterhoeven <[email protected]>
9630 L:      [email protected]
9631 W:      http://www.linux-m68k.org/
9632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9633 S:      Maintained
9634 F:      arch/m68k/
9635 F:      drivers/zorro/
9636
9637 M68K ON APPLE MACINTOSH
9638 M:      Joshua Thompson <[email protected]>
9639 W:      http://www.mac.linux-m68k.org/
9640 L:      [email protected]
9641 S:      Maintained
9642 F:      arch/m68k/mac/
9643
9644 M68K ON HP9000/300
9645 M:      Philip Blundell <[email protected]>
9646 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
9647 S:      Maintained
9648 F:      arch/m68k/hp300/
9649
9650 M88DS3103 MEDIA DRIVER
9651 M:      Antti Palosaari <[email protected]>
9652 L:      [email protected]
9653 W:      https://linuxtv.org
9654 W:      http://palosaari.fi/linux/
9655 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9656 T:      git git://linuxtv.org/anttip/media_tree.git
9657 S:      Maintained
9658 F:      drivers/media/dvb-frontends/m88ds3103*
9659
9660 M88RS2000 MEDIA DRIVER
9661 M:      Malcolm Priestley <[email protected]>
9662 L:      [email protected]
9663 W:      https://linuxtv.org
9664 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9665 S:      Maintained
9666 F:      drivers/media/dvb-frontends/m88rs2000*
9667
9668 MA901 MASTERKIT USB FM RADIO DRIVER
9669 M:      Alexey Klimov <[email protected]>
9670 L:      [email protected]
9671 T:      git git://linuxtv.org/media_tree.git
9672 S:      Maintained
9673 F:      drivers/media/radio/radio-ma901.c
9674
9675 MAC80211
9676 M:      Johannes Berg <[email protected]>
9677 L:      [email protected]
9678 W:      http://wireless.kernel.org/
9679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9681 S:      Maintained
9682 F:      Documentation/networking/mac80211-injection.txt
9683 F:      include/net/mac80211.h
9684 F:      net/mac80211/
9685 F:      drivers/net/wireless/mac80211_hwsim.[ch]
9686 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
9687
9688 MAILBOX API
9689 M:      Jassi Brar <[email protected]>
9690 L:      [email protected]
9691 S:      Maintained
9692 F:      drivers/mailbox/
9693 F:      include/linux/mailbox_client.h
9694 F:      include/linux/mailbox_controller.h
9695
9696 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
9697 M:      Michael Kerrisk <[email protected]>
9698 W:      http://www.kernel.org/doc/man-pages
9699 L:      [email protected]
9700 S:      Maintained
9701
9702 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
9703 M:      Rahul Bedarkar <[email protected]>
9704 L:      [email protected]
9705 S:      Maintained
9706 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
9707
9708 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
9709 M:      Andrew Lunn <[email protected]>
9710 M:      Vivien Didelot <[email protected]>
9711 L:      [email protected]
9712 S:      Maintained
9713 F:      drivers/net/dsa/mv88e6xxx/
9714 F:      include/linux/platform_data/mv88e6xxx.h
9715 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
9716
9717 MARVELL ARMADA DRM SUPPORT
9718 M:      Russell King <[email protected]>
9719 S:      Maintained
9720 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
9721 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
9722 F:      drivers/gpu/drm/armada/
9723 F:      include/uapi/drm/armada_drm.h
9724 F:      Documentation/devicetree/bindings/display/armada/
9725
9726 MARVELL ARMADA 3700 PHY DRIVERS
9727 M:      Miquel Raynal <[email protected]>
9728 S:      Maintained
9729 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
9730 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
9731 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
9732 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
9733
9734 MARVELL CRYPTO DRIVER
9735 M:      Boris Brezillon <[email protected]>
9736 M:      Arnaud Ebalard <[email protected]>
9737 F:      drivers/crypto/marvell/
9738 S:      Maintained
9739 L:      [email protected]
9740
9741 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
9742 M:      Mirko Lindner <[email protected]>
9743 M:      Stephen Hemminger <[email protected]>
9744 L:      [email protected]
9745 S:      Maintained
9746 F:      drivers/net/ethernet/marvell/sk*
9747
9748 MARVELL LIBERTAS WIRELESS DRIVER
9749 L:      [email protected]
9750 S:      Orphan
9751 F:      drivers/net/wireless/marvell/libertas/
9752
9753 MARVELL MACCHIATOBIN SUPPORT
9754 M:      Russell King <[email protected]>
9755 L:      [email protected]
9756 S:      Maintained
9757 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
9758
9759 MARVELL MV643XX ETHERNET DRIVER
9760 M:      Sebastian Hesselbarth <[email protected]>
9761 L:      [email protected]
9762 S:      Maintained
9763 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
9764 F:      include/linux/mv643xx.h
9765
9766 MARVELL MV88X3310 PHY DRIVER
9767 M:      Russell King <[email protected]>
9768 L:      [email protected]
9769 S:      Maintained
9770 F:      drivers/net/phy/marvell10g.c
9771
9772 MARVELL MVEBU THERMAL DRIVER
9773 M:      Miquel Raynal <[email protected]>
9774 S:      Maintained
9775 F:      drivers/thermal/armada_thermal.c
9776
9777 MARVELL MVNETA ETHERNET DRIVER
9778 M:      Thomas Petazzoni <[email protected]>
9779 L:      [email protected]
9780 S:      Maintained
9781 F:      drivers/net/ethernet/marvell/mvneta.*
9782
9783 MARVELL MWIFIEX WIRELESS DRIVER
9784 M:      Amitkumar Karwar <[email protected]>
9785 M:      Nishant Sarmukadam <[email protected]>
9786 M:      Ganapathi Bhat <[email protected]>
9787 M:      Xinming Hu <[email protected]>
9788 L:      [email protected]
9789 S:      Maintained
9790 F:      drivers/net/wireless/marvell/mwifiex/
9791
9792 MARVELL MWL8K WIRELESS DRIVER
9793 M:      Lennert Buytenhek <[email protected]>
9794 L:      [email protected]
9795 S:      Odd Fixes
9796 F:      drivers/net/wireless/marvell/mwl8k.c
9797
9798 MARVELL NAND CONTROLLER DRIVER
9799 M:      Miquel Raynal <[email protected]>
9800 L:      [email protected]
9801 S:      Maintained
9802 F:      drivers/mtd/nand/raw/marvell_nand.c
9803 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
9804
9805 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
9806 M:      Nicolas Pitre <[email protected]>
9807 S:      Odd Fixes
9808 F:      drivers/mmc/host/mvsdio.*
9809
9810 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
9811 M:      Hu Ziji <[email protected]>
9812 L:      [email protected]
9813 S:      Supported
9814 F:      drivers/mmc/host/sdhci-xenon*
9815 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
9816
9817 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
9818 M:      Sunil Goutham <[email protected]>
9819 M:      Linu Cherian <[email protected]>
9820 M:      Geetha sowjanya <[email protected]>
9821 M:      Jerin Jacob <[email protected]>
9822 L:      [email protected]
9823 S:      Supported
9824 F:      drivers/net/ethernet/marvell/octeontx2/af/
9825
9826 MATROX FRAMEBUFFER DRIVER
9827 L:      [email protected]
9828 S:      Orphan
9829 F:      drivers/video/fbdev/matrox/matroxfb_*
9830 F:      include/uapi/linux/matroxfb.h
9831
9832 MAX16065 HARDWARE MONITOR DRIVER
9833 M:      Guenter Roeck <[email protected]>
9834 L:      [email protected]
9835 S:      Maintained
9836 F:      Documentation/hwmon/max16065.rst
9837 F:      drivers/hwmon/max16065.c
9838
9839 MAX2175 SDR TUNER DRIVER
9840 M:      Ramesh Shanmugasundaram <[email protected]>
9841 L:      [email protected]
9842 T:      git git://linuxtv.org/media_tree.git
9843 S:      Maintained
9844 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
9845 F:      Documentation/media/v4l-drivers/max2175.rst
9846 F:      drivers/media/i2c/max2175*
9847 F:      include/uapi/linux/max2175.h
9848
9849 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
9850 L:      [email protected]
9851 S:      Orphan
9852 F:      Documentation/hwmon/max6650.rst
9853 F:      drivers/hwmon/max6650.c
9854
9855 MAX6697 HARDWARE MONITOR DRIVER
9856 M:      Guenter Roeck <[email protected]>
9857 L:      [email protected]
9858 S:      Maintained
9859 F:      Documentation/hwmon/max6697.rst
9860 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
9861 F:      drivers/hwmon/max6697.c
9862 F:      include/linux/platform_data/max6697.h
9863
9864 MAX9860 MONO AUDIO VOICE CODEC DRIVER
9865 M:      Peter Rosin <[email protected]>
9866 L:      [email protected] (moderated for non-subscribers)
9867 S:      Maintained
9868 F:      Documentation/devicetree/bindings/sound/max9860.txt
9869 F:      sound/soc/codecs/max9860.*
9870
9871 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
9872 M:      Andreas Klinger <[email protected]>
9873 L:      [email protected]
9874 S:      Maintained
9875 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.txt
9876 F:      drivers/iio/proximity/mb1232.c
9877
9878 MAXIM MAX77650 PMIC MFD DRIVER
9879 M:      Bartosz Golaszewski <[email protected]>
9880 L:      [email protected]
9881 S:      Maintained
9882 F:      Documentation/devicetree/bindings/*/*max77650.txt
9883 F:      Documentation/devicetree/bindings/*/max77650*.txt
9884 F:      include/linux/mfd/max77650.h
9885 F:      drivers/mfd/max77650.c
9886 F:      drivers/regulator/max77650-regulator.c
9887 F:      drivers/power/supply/max77650-charger.c
9888 F:      drivers/input/misc/max77650-onkey.c
9889 F:      drivers/leds/leds-max77650.c
9890 F:      drivers/gpio/gpio-max77650.c
9891
9892 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
9893 M:      Javier Martinez Canillas <[email protected]>
9894 L:      [email protected]
9895 S:      Supported
9896 F:      drivers/regulator/max77802-regulator.c
9897 F:      Documentation/devicetree/bindings/*/*max77802.txt
9898 F:      include/dt-bindings/*/*max77802.h
9899
9900 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
9901 M:      Krzysztof Kozlowski <[email protected]>
9902 M:      Bartlomiej Zolnierkiewicz <[email protected]>
9903 L:      [email protected]
9904 S:      Supported
9905 F:      drivers/power/supply/max14577_charger.c
9906 F:      drivers/power/supply/max77693_charger.c
9907
9908 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
9909 M:      Chanwoo Choi <[email protected]>
9910 M:      Krzysztof Kozlowski <[email protected]>
9911 M:      Bartlomiej Zolnierkiewicz <[email protected]>
9912 L:      [email protected]
9913 S:      Supported
9914 F:      drivers/*/max14577*.c
9915 F:      drivers/*/max77686*.c
9916 F:      drivers/*/max77693*.c
9917 F:      drivers/extcon/extcon-max14577.c
9918 F:      drivers/extcon/extcon-max77693.c
9919 F:      drivers/rtc/rtc-max77686.c
9920 F:      drivers/clk/clk-max77686.c
9921 F:      Documentation/devicetree/bindings/mfd/max14577.txt
9922 F:      Documentation/devicetree/bindings/*/max77686.txt
9923 F:      Documentation/devicetree/bindings/mfd/max77693.txt
9924 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
9925 F:      include/linux/mfd/max14577*.h
9926 F:      include/linux/mfd/max77686*.h
9927 F:      include/linux/mfd/max77693*.h
9928
9929 MAXIRADIO FM RADIO RECEIVER DRIVER
9930 M:      Hans Verkuil <[email protected]>
9931 L:      [email protected]
9932 T:      git git://linuxtv.org/media_tree.git
9933 W:      https://linuxtv.org
9934 S:      Maintained
9935 F:      drivers/media/radio/radio-maxiradio*
9936
9937 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
9938 M:      Peter Rosin <[email protected]>
9939 L:      [email protected]
9940 S:      Maintained
9941 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
9942 F:      drivers/iio/potentiometer/mcp4018.c
9943 F:      drivers/iio/potentiometer/mcp4531.c
9944
9945 MCR20A IEEE-802.15.4 RADIO DRIVER
9946 M:      Xue Liu <[email protected]>
9947 L:      [email protected]
9948 W:      https://github.com/xueliu/mcr20a-linux
9949 S:      Maintained
9950 F:      drivers/net/ieee802154/mcr20a.c
9951 F:      drivers/net/ieee802154/mcr20a.h
9952 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
9953
9954 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
9955 M:      William Breathitt Gray <[email protected]>
9956 L:      [email protected]
9957 S:      Maintained
9958 F:      drivers/iio/dac/cio-dac.c
9959
9960 MEDIA CONTROLLER FRAMEWORK
9961 M:      Sakari Ailus <[email protected]>
9962 M:      Laurent Pinchart <[email protected]>
9963 L:      [email protected]
9964 W:      https://www.linuxtv.org
9965 T:      git git://linuxtv.org/media_tree.git
9966 S:      Supported
9967 F:      drivers/media/mc/
9968 F:      include/media/media-*.h
9969 F:      include/uapi/linux/media.h
9970
9971 MEDIA DRIVERS FOR ASCOT2E
9972 M:      Sergey Kozlov <[email protected]>
9973 M:      Abylay Ospan <[email protected]>
9974 L:      [email protected]
9975 W:      https://linuxtv.org
9976 W:      http://netup.tv/
9977 T:      git git://linuxtv.org/media_tree.git
9978 S:      Supported
9979 F:      drivers/media/dvb-frontends/ascot2e*
9980
9981 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
9982 M:      Jasmin Jessich <[email protected]>
9983 L:      [email protected]
9984 W:      https://linuxtv.org
9985 T:      git git://linuxtv.org/media_tree.git
9986 S:      Maintained
9987 F:      drivers/media/dvb-frontends/cxd2099*
9988
9989 MEDIA DRIVERS FOR CXD2841ER
9990 M:      Sergey Kozlov <[email protected]>
9991 M:      Abylay Ospan <[email protected]>
9992 L:      [email protected]
9993 W:      https://linuxtv.org
9994 W:      http://netup.tv/
9995 T:      git git://linuxtv.org/media_tree.git
9996 S:      Supported
9997 F:      drivers/media/dvb-frontends/cxd2841er*
9998
9999 MEDIA DRIVERS FOR CXD2880
10000 M:      Yasunari Takiguchi <[email protected]>
10001 L:      [email protected]
10002 W:      http://linuxtv.org/
10003 T:      git git://linuxtv.org/media_tree.git
10004 S:      Supported
10005 F:      drivers/media/dvb-frontends/cxd2880/*
10006 F:      drivers/media/spi/cxd2880*
10007
10008 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10009 L:      [email protected]
10010 W:      https://linuxtv.org
10011 T:      git git://linuxtv.org/media_tree.git
10012 S:      Orphan
10013 F:      drivers/media/pci/ddbridge/*
10014
10015 MEDIA DRIVERS FOR FREESCALE IMX
10016 M:      Steve Longerbeam <[email protected]>
10017 M:      Philipp Zabel <[email protected]>
10018 L:      [email protected]
10019 T:      git git://linuxtv.org/media_tree.git
10020 S:      Maintained
10021 F:      Documentation/devicetree/bindings/media/imx.txt
10022 F:      Documentation/media/v4l-drivers/imx.rst
10023 F:      drivers/staging/media/imx/
10024 F:      include/linux/imx-media.h
10025 F:      include/media/imx.h
10026
10027 MEDIA DRIVER FOR FREESCALE IMX PXP
10028 M:      Philipp Zabel <[email protected]>
10029 L:      [email protected]
10030 T:      git git://linuxtv.org/media_tree.git
10031 S:      Maintained
10032 F:      drivers/media/platform/imx-pxp.[ch]
10033
10034 MEDIA DRIVERS FOR FREESCALE IMX7
10035 M:      Rui Miguel Silva <[email protected]>
10036 L:      [email protected]
10037 T:      git git://linuxtv.org/media_tree.git
10038 S:      Maintained
10039 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10040 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10041 F:      Documentation/media/v4l-drivers/imx7.rst
10042 F:      drivers/staging/media/imx/imx7-media-csi.c
10043 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10044
10045 MEDIA DRIVERS FOR HELENE
10046 M:      Abylay Ospan <[email protected]>
10047 L:      [email protected]
10048 W:      https://linuxtv.org
10049 W:      http://netup.tv/
10050 T:      git git://linuxtv.org/media_tree.git
10051 S:      Supported
10052 F:      drivers/media/dvb-frontends/helene*
10053
10054 MEDIA DRIVERS FOR HORUS3A
10055 M:      Sergey Kozlov <[email protected]>
10056 M:      Abylay Ospan <[email protected]>
10057 L:      [email protected]
10058 W:      https://linuxtv.org
10059 W:      http://netup.tv/
10060 T:      git git://linuxtv.org/media_tree.git
10061 S:      Supported
10062 F:      drivers/media/dvb-frontends/horus3a*
10063
10064 MEDIA DRIVERS FOR LNBH25
10065 M:      Sergey Kozlov <[email protected]>
10066 M:      Abylay Ospan <[email protected]>
10067 L:      [email protected]
10068 W:      https://linuxtv.org
10069 W:      http://netup.tv/
10070 T:      git git://linuxtv.org/media_tree.git
10071 S:      Supported
10072 F:      drivers/media/dvb-frontends/lnbh25*
10073
10074 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10075 L:      [email protected]
10076 W:      https://linuxtv.org
10077 T:      git git://linuxtv.org/media_tree.git
10078 S:      Orphan
10079 F:      drivers/media/dvb-frontends/mxl5xx*
10080
10081 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10082 M:      Sergey Kozlov <[email protected]>
10083 M:      Abylay Ospan <[email protected]>
10084 L:      [email protected]
10085 W:      https://linuxtv.org
10086 W:      http://netup.tv/
10087 T:      git git://linuxtv.org/media_tree.git
10088 S:      Supported
10089 F:      drivers/media/pci/netup_unidvb/*
10090
10091 MEDIA DRIVERS FOR RENESAS - CEU
10092 M:      Jacopo Mondi <[email protected]>
10093 L:      [email protected]
10094 L:      [email protected]
10095 T:      git git://linuxtv.org/media_tree.git
10096 S:      Supported
10097 F:      Documentation/devicetree/bindings/media/renesas,ceu.txt
10098 F:      drivers/media/platform/renesas-ceu.c
10099 F:      include/media/drv-intf/renesas-ceu.h
10100
10101 MEDIA DRIVERS FOR RENESAS - DRIF
10102 M:      Ramesh Shanmugasundaram <[email protected]>
10103 L:      [email protected]
10104 L:      [email protected]
10105 T:      git git://linuxtv.org/media_tree.git
10106 S:      Supported
10107 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10108 F:      drivers/media/platform/rcar_drif.c
10109
10110 MEDIA DRIVERS FOR RENESAS - FCP
10111 M:      Laurent Pinchart <[email protected]>
10112 L:      [email protected]
10113 L:      [email protected]
10114 T:      git git://linuxtv.org/media_tree.git
10115 S:      Supported
10116 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10117 F:      drivers/media/platform/rcar-fcp.c
10118 F:      include/media/rcar-fcp.h
10119
10120 MEDIA DRIVERS FOR RENESAS - FDP1
10121 M:      Kieran Bingham <[email protected]>
10122 L:      [email protected]
10123 L:      [email protected]
10124 T:      git git://linuxtv.org/media_tree.git
10125 S:      Supported
10126 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10127 F:      drivers/media/platform/rcar_fdp1.c
10128
10129 MEDIA DRIVERS FOR RENESAS - VIN
10130 M:      Niklas Söderlund <[email protected]>
10131 L:      [email protected]
10132 L:      [email protected]
10133 T:      git git://linuxtv.org/media_tree.git
10134 S:      Supported
10135 F:      Documentation/devicetree/bindings/media/renesas,csi2.txt
10136 F:      Documentation/devicetree/bindings/media/renesas,vin.txt
10137 F:      drivers/media/platform/rcar-vin/
10138
10139 MEDIA DRIVERS FOR RENESAS - VSP1
10140 M:      Laurent Pinchart <[email protected]>
10141 M:      Kieran Bingham <[email protected]>
10142 L:      [email protected]
10143 L:      [email protected]
10144 T:      git git://linuxtv.org/media_tree.git
10145 S:      Supported
10146 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10147 F:      drivers/media/platform/vsp1/
10148
10149 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10150 L:      [email protected]
10151 W:      https://linuxtv.org
10152 T:      git git://linuxtv.org/media_tree.git
10153 S:      Orphan
10154 F:      drivers/media/dvb-frontends/stv0910*
10155
10156 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10157 L:      [email protected]
10158 W:      https://linuxtv.org
10159 T:      git git://linuxtv.org/media_tree.git
10160 S:      Orphan
10161 F:      drivers/media/dvb-frontends/stv6111*
10162
10163 MEDIA DRIVERS FOR STM32 - DCMI
10164 M:      Hugues Fruchet <[email protected]>
10165 L:      [email protected]
10166 T:      git git://linuxtv.org/media_tree.git
10167 S:      Supported
10168 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.txt
10169 F:      drivers/media/platform/stm32/stm32-dcmi.c
10170
10171 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10172 M:      Dmitry Osipenko <[email protected]>
10173 L:      [email protected]
10174 L:      [email protected]
10175 T:      git git://linuxtv.org/media_tree.git
10176 S:      Maintained
10177 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10178 F:      drivers/staging/media/tegra-vde/
10179
10180 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10181 M:      Mauro Carvalho Chehab <[email protected]>
10182 P:      LinuxTV.org Project
10183 L:      [email protected]
10184 W:      https://linuxtv.org
10185 Q:      http://patchwork.kernel.org/project/linux-media/list/
10186 T:      git git://linuxtv.org/media_tree.git
10187 S:      Maintained
10188 F:      Documentation/devicetree/bindings/media/
10189 F:      Documentation/media/
10190 F:      drivers/media/
10191 F:      drivers/staging/media/
10192 F:      include/linux/platform_data/media/
10193 F:      include/media/
10194 F:      include/uapi/linux/dvb/
10195 F:      include/uapi/linux/videodev2.h
10196 F:      include/uapi/linux/media.h
10197 F:      include/uapi/linux/v4l2-*
10198 F:      include/uapi/linux/meye.h
10199 F:      include/uapi/linux/ivtv*
10200 F:      include/uapi/linux/uvcvideo.h
10201
10202 MEDIATEK BLUETOOTH DRIVER
10203 M:      Sean Wang <[email protected]>
10204 L:      [email protected]
10205 L:      [email protected] (moderated for non-subscribers)
10206 S:      Maintained
10207 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10208 F:      drivers/bluetooth/btmtkuart.c
10209
10210 MEDIATEK CIR DRIVER
10211 M:      Sean Wang <[email protected]>
10212 S:      Maintained
10213 F:      drivers/media/rc/mtk-cir.c
10214
10215 MEDIATEK DMA DRIVER
10216 M:      Sean Wang <[email protected]>
10217 L:      [email protected]
10218 L:      [email protected] (moderated for non-subscribers)
10219 L:      [email protected] (moderated for non-subscribers)
10220 S:      Maintained
10221 F:      Documentation/devicetree/bindings/dma/mtk-*
10222 F:      drivers/dma/mediatek/
10223
10224 MEDIATEK PMIC LED DRIVER
10225 M:      Sean Wang <[email protected]>
10226 S:      Maintained
10227 F:      drivers/leds/leds-mt6323.c
10228 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10229
10230 MEDIATEK ETHERNET DRIVER
10231 M:      Felix Fietkau <[email protected]>
10232 M:      John Crispin <[email protected]>
10233 M:      Sean Wang <[email protected]>
10234 M:      Nelson Chang <[email protected]>
10235 L:      [email protected]
10236 S:      Maintained
10237 F:      drivers/net/ethernet/mediatek/
10238
10239 MEDIATEK SWITCH DRIVER
10240 M:      Sean Wang <[email protected]>
10241 L:      [email protected]
10242 S:      Maintained
10243 F:      drivers/net/dsa/mt7530.*
10244 F:      net/dsa/tag_mtk.c
10245
10246 MEDIATEK JPEG DRIVER
10247 M:      Rick Chang <[email protected]>
10248 M:      Bin Liu <[email protected]>
10249 S:      Supported
10250 F:      drivers/media/platform/mtk-jpeg/
10251 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10252
10253 MEDIATEK MDP DRIVER
10254 M:      Minghsiu Tsai <[email protected]>
10255 M:      Houlong Wei <[email protected]>
10256 M:      Andrew-CT Chen <[email protected]>
10257 S:      Supported
10258 F:      drivers/media/platform/mtk-mdp/
10259 F:      drivers/media/platform/mtk-vpu/
10260 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10261
10262 MEDIATEK MEDIA DRIVER
10263 M:      Tiffany Lin <[email protected]>
10264 M:      Andrew-CT Chen <[email protected]>
10265 S:      Supported
10266 F:      drivers/media/platform/mtk-vcodec/
10267 F:      drivers/media/platform/mtk-vpu/
10268 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10269 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10270
10271 MEDIATEK MMC/SD/SDIO DRIVER
10272 M:      Chaotian Jing <[email protected]>
10273 S:      Maintained
10274 F:      drivers/mmc/host/mtk-sd.c
10275 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10276
10277 MEDIATEK MT76 WIRELESS LAN DRIVER
10278 M:      Felix Fietkau <[email protected]>
10279 M:      Lorenzo Bianconi <[email protected]>
10280 R:      Ryder Lee <[email protected]>
10281 R:      Roy Luo <[email protected]>
10282 L:      [email protected]
10283 S:      Maintained
10284 F:      drivers/net/wireless/mediatek/mt76/
10285
10286 MEDIATEK MT7601U WIRELESS LAN DRIVER
10287 M:      Jakub Kicinski <[email protected]>
10288 L:      [email protected]
10289 S:      Maintained
10290 F:      drivers/net/wireless/mediatek/mt7601u/
10291
10292 MEDIATEK MT7621/28/88 I2C DRIVER
10293 M:      Stefan Roese <[email protected]>
10294 L:      [email protected]
10295 S:      Maintained
10296 F:      drivers/i2c/busses/i2c-mt7621.c
10297 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10298
10299 MEDIATEK NAND CONTROLLER DRIVER
10300 M:      Xiaolei Li <[email protected]>
10301 L:      [email protected]
10302 S:      Maintained
10303 F:      drivers/mtd/nand/raw/mtk_*
10304 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10305
10306 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10307 M:      Sean Wang <[email protected]>
10308 S:      Maintained
10309 F:      drivers/char/hw_random/mtk-rng.c
10310
10311 MEDIATEK USB3 DRD IP DRIVER
10312 M:      Chunfeng Yun <[email protected]>
10313 L:      [email protected] (moderated for non-subscribers)
10314 L:      [email protected] (moderated for non-subscribers)
10315 L:      [email protected] (moderated for non-subscribers)
10316 S:      Maintained
10317 F:      drivers/usb/mtu3/
10318
10319 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10320 M:      Peter Senna Tschudin <[email protected]>
10321 M:      Martin Donnelly <[email protected]>
10322 M:      Martyn Welch <[email protected]>
10323 S:      Maintained
10324 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10325 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10326
10327 MEGARAID SCSI/SAS DRIVERS
10328 M:      Kashyap Desai <[email protected]>
10329 M:      Sumit Saxena <[email protected]>
10330 M:      Shivasharan S <[email protected]>
10331 L:      [email protected]
10332 L:      [email protected]
10333 W:      http://www.avagotech.com/support/
10334 S:      Maintained
10335 F:      Documentation/scsi/megaraid.txt
10336 F:      drivers/scsi/megaraid.*
10337 F:      drivers/scsi/megaraid/
10338
10339 MELEXIS MLX90614 DRIVER
10340 M:      Crt Mori <[email protected]>
10341 L:      [email protected]
10342 W:      http://www.melexis.com
10343 S:      Supported
10344 F:      drivers/iio/temperature/mlx90614.c
10345
10346 MELEXIS MLX90632 DRIVER
10347 M:      Crt Mori <[email protected]>
10348 L:      [email protected]
10349 W:      http://www.melexis.com
10350 S:      Supported
10351 F:      drivers/iio/temperature/mlx90632.c
10352
10353 MELFAS MIP4 TOUCHSCREEN DRIVER
10354 M:      Sangwon Jee <[email protected]>
10355 W:      http://www.melfas.com
10356 S:      Supported
10357 F:      drivers/input/touchscreen/melfas_mip4.c
10358 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10359
10360 MELLANOX ETHERNET DRIVER (mlx4_en)
10361 M:      Tariq Toukan <[email protected]>
10362 L:      [email protected]
10363 S:      Supported
10364 W:      http://www.mellanox.com
10365 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10366 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10367
10368 MELLANOX ETHERNET DRIVER (mlx5e)
10369 M:      Saeed Mahameed <[email protected]>
10370 L:      [email protected]
10371 S:      Supported
10372 W:      http://www.mellanox.com
10373 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10374 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10375
10376 MELLANOX ETHERNET INNOVA DRIVERS
10377 R:      Boris Pismenny <[email protected]>
10378 L:      [email protected]
10379 S:      Supported
10380 W:      http://www.mellanox.com
10381 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10382 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10383 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10384 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10385 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10386
10387 MELLANOX ETHERNET SWITCH DRIVERS
10388 M:      Jiri Pirko <[email protected]>
10389 M:      Ido Schimmel <[email protected]>
10390 L:      [email protected]
10391 S:      Supported
10392 W:      http://www.mellanox.com
10393 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10394 F:      drivers/net/ethernet/mellanox/mlxsw/
10395 F:      tools/testing/selftests/drivers/net/mlxsw/
10396
10397 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10398 M:      [email protected]
10399 L:      [email protected]
10400 S:      Supported
10401 W:      http://www.mellanox.com
10402 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10403 F:      drivers/net/ethernet/mellanox/mlxfw/
10404
10405 MELLANOX HARDWARE PLATFORM SUPPORT
10406 M:      Andy Shevchenko <[email protected]>
10407 M:      Darren Hart <[email protected]>
10408 M:      Vadim Pasternak <[email protected]>
10409 L:      [email protected]
10410 S:      Supported
10411 F:      drivers/platform/mellanox/
10412 F:      include/linux/platform_data/mlxreg.h
10413
10414 MELLANOX MLX4 core VPI driver
10415 M:      Tariq Toukan <[email protected]>
10416 L:      [email protected]
10417 L:      [email protected]
10418 W:      http://www.mellanox.com
10419 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10420 S:      Supported
10421 F:      drivers/net/ethernet/mellanox/mlx4/
10422 F:      include/linux/mlx4/
10423
10424 MELLANOX MLX4 IB driver
10425 M:      Yishai Hadas <[email protected]>
10426 L:      [email protected]
10427 W:      http://www.mellanox.com
10428 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10429 S:      Supported
10430 F:      drivers/infiniband/hw/mlx4/
10431 F:      include/linux/mlx4/
10432 F:      include/uapi/rdma/mlx4-abi.h
10433
10434 MELLANOX MLX5 core VPI driver
10435 M:      Saeed Mahameed <[email protected]>
10436 M:      Leon Romanovsky <[email protected]>
10437 L:      [email protected]
10438 L:      [email protected]
10439 W:      http://www.mellanox.com
10440 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10441 S:      Supported
10442 F:      drivers/net/ethernet/mellanox/mlx5/core/
10443 F:      include/linux/mlx5/
10444 F:      Documentation/networking/device_drivers/mellanox/
10445
10446 MELLANOX MLX5 IB driver
10447 M:      Leon Romanovsky <[email protected]>
10448 L:      [email protected]
10449 W:      http://www.mellanox.com
10450 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10451 S:      Supported
10452 F:      drivers/infiniband/hw/mlx5/
10453 F:      include/linux/mlx5/
10454 F:      include/uapi/rdma/mlx5-abi.h
10455
10456 MELLANOX MLXCPLD I2C AND MUX DRIVER
10457 M:      Vadim Pasternak <[email protected]>
10458 M:      Michael Shych <[email protected]>
10459 L:      [email protected]
10460 S:      Supported
10461 F:      drivers/i2c/busses/i2c-mlxcpld.c
10462 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10463 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10464
10465 MELLANOX MLXCPLD LED DRIVER
10466 M:      Vadim Pasternak <[email protected]>
10467 L:      [email protected]
10468 S:      Supported
10469 F:      drivers/leds/leds-mlxcpld.c
10470 F:      drivers/leds/leds-mlxreg.c
10471 F:      Documentation/leds/leds-mlxcpld.rst
10472
10473 MELLANOX PLATFORM DRIVER
10474 M:      Vadim Pasternak <[email protected]>
10475 L:      [email protected]
10476 S:      Supported
10477 F:      drivers/platform/x86/mlx-platform.c
10478
10479 MEMBARRIER SUPPORT
10480 M:      Mathieu Desnoyers <[email protected]>
10481 M:      "Paul E. McKenney" <[email protected]>
10482 L:      [email protected]
10483 S:      Supported
10484 F:      kernel/sched/membarrier.c
10485 F:      include/uapi/linux/membarrier.h
10486 F:      arch/powerpc/include/asm/membarrier.h
10487
10488 MEMBLOCK
10489 M:      Mike Rapoport <[email protected]>
10490 L:      [email protected]
10491 S:      Maintained
10492 F:      include/linux/memblock.h
10493 F:      mm/memblock.c
10494 F:      Documentation/core-api/boot-time-mm.rst
10495
10496 MEMORY MANAGEMENT
10497 L:      [email protected]
10498 W:      http://www.linux-mm.org
10499 S:      Maintained
10500 F:      include/linux/mm.h
10501 F:      include/linux/gfp.h
10502 F:      include/linux/mmzone.h
10503 F:      include/linux/memory_hotplug.h
10504 F:      include/linux/vmalloc.h
10505 F:      mm/
10506
10507 MEMORY TECHNOLOGY DEVICES (MTD)
10508 M:      David Woodhouse <[email protected]>
10509 M:      Brian Norris <[email protected]>
10510 M:      Marek Vasut <[email protected]>
10511 M:      Miquel Raynal <[email protected]>
10512 M:      Richard Weinberger <[email protected]>
10513 M:      Vignesh Raghavendra <[email protected]>
10514 L:      [email protected]
10515 W:      http://www.linux-mtd.infradead.org/
10516 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10519 S:      Maintained
10520 F:      Documentation/devicetree/bindings/mtd/
10521 F:      drivers/mtd/
10522 F:      include/linux/mtd/
10523 F:      include/uapi/mtd/
10524
10525 MEN A21 WATCHDOG DRIVER
10526 M:      Johannes Thumshirn <[email protected]>
10527 L:      [email protected]
10528 S:      Maintained
10529 F:      drivers/watchdog/mena21_wdt.c
10530
10531 MEN CHAMELEON BUS (mcb)
10532 M:      Johannes Thumshirn <[email protected]>
10533 S:      Maintained
10534 F:      drivers/mcb/
10535 F:      include/linux/mcb.h
10536 F:      Documentation/driver-api/men-chameleon-bus.rst
10537
10538 MEN F21BMC (Board Management Controller)
10539 M:      Andreas Werner <[email protected]>
10540 S:      Supported
10541 F:      drivers/mfd/menf21bmc.c
10542 F:      drivers/watchdog/menf21bmc_wdt.c
10543 F:      drivers/leds/leds-menf21bmc.c
10544 F:      drivers/hwmon/menf21bmc_hwmon.c
10545 F:      Documentation/hwmon/menf21bmc.rst
10546
10547 MEN Z069 WATCHDOG DRIVER
10548 M:      Johannes Thumshirn <[email protected]>
10549 L:      [email protected]
10550 S:      Maintained
10551 F:      drivers/watchdog/menz69_wdt.c
10552
10553 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10554 M:      Neil Armstrong <[email protected]>
10555 L:      [email protected]
10556 L:      [email protected]
10557 W:      http://linux-meson.com/
10558 S:      Supported
10559 F:      drivers/media/platform/meson/ao-cec.c
10560 F:      drivers/media/platform/meson/ao-cec-g12a.c
10561 F:      Documentation/devicetree/bindings/media/meson-ao-cec.txt
10562 T:      git git://linuxtv.org/media_tree.git
10563
10564 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10565 M:      Liang Yang <[email protected]>
10566 L:      [email protected]
10567 S:      Maintained
10568 F:      drivers/mtd/nand/raw/meson_*
10569 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10570
10571 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10572 M:      Maxime Jourdan <[email protected]>
10573 L:      [email protected]
10574 L:      [email protected]
10575 S:      Supported
10576 F:      drivers/staging/media/meson/vdec/
10577 T:      git git://linuxtv.org/media_tree.git
10578
10579 METHODE UDPU SUPPORT
10580 M:      Vladimir Vid <[email protected]>
10581 S:      Maintained
10582 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10583
10584 MICROBLAZE ARCHITECTURE
10585 M:      Michal Simek <[email protected]>
10586 W:      http://www.monstr.eu/fdt/
10587 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
10588 S:      Supported
10589 F:      arch/microblaze/
10590
10591 MICROCHIP AT91 SERIAL DRIVER
10592 M:      Richard Genoud <[email protected]>
10593 S:      Maintained
10594 F:      drivers/tty/serial/atmel_serial.c
10595 F:      drivers/tty/serial/atmel_serial.h
10596 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10597
10598 MICROCHIP AUDIO ASOC DRIVERS
10599 M:      Codrin Ciubotariu <[email protected]>
10600 L:      [email protected] (moderated for non-subscribers)
10601 S:      Supported
10602 F:      sound/soc/atmel
10603
10604 MICROCHIP DMA DRIVER
10605 M:      Ludovic Desroches <[email protected]>
10606 L:      [email protected] (moderated for non-subscribers)
10607 L:      [email protected]
10608 S:      Supported
10609 F:      drivers/dma/at_hdmac.c
10610 F:      drivers/dma/at_hdmac_regs.h
10611 F:      include/linux/platform_data/dma-atmel.h
10612 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
10613 F:      include/dt-bindings/dma/at91.h
10614
10615 MICROCHIP ECC DRIVER
10616 M:      Tudor Ambarus <[email protected]>
10617 L:      [email protected]
10618 S:      Maintained
10619 F:      drivers/crypto/atmel-ecc.*
10620
10621 MICROCHIP I2C DRIVER
10622 M:      Ludovic Desroches <[email protected]>
10623 L:      [email protected]
10624 S:      Supported
10625 F:      drivers/i2c/busses/i2c-at91.h
10626 F:      drivers/i2c/busses/i2c-at91-*.c
10627
10628 MICROCHIP ISC DRIVER
10629 M:      Eugen Hristev <[email protected]>
10630 L:      [email protected]
10631 S:      Supported
10632 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
10633 F:      drivers/media/platform/atmel/atmel-isc.h
10634 F:      drivers/media/platform/atmel/atmel-isc-base.c
10635 F:      drivers/media/platform/atmel/atmel-isc-regs.h
10636 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
10637
10638 MICROCHIP ISI DRIVER
10639 M:      Eugen Hristev <[email protected]>
10640 L:      [email protected]
10641 S:      Supported
10642 F:      drivers/media/platform/atmel/atmel-isi.c
10643 F:      drivers/media/platform/atmel/atmel-isi.h
10644
10645 MICROCHIP AT91 USART MFD DRIVER
10646 M:      Radu Pirea <[email protected]>
10647 L:      [email protected]
10648 S:      Supported
10649 F:      drivers/mfd/at91-usart.c
10650 F:      include/dt-bindings/mfd/at91-usart.h
10651 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10652
10653 MICROCHIP AT91 USART SPI DRIVER
10654 M:      Radu Pirea <[email protected]>
10655 L:      [email protected]
10656 S:      Supported
10657 F:      drivers/spi/spi-at91-usart.c
10658 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10659
10660 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
10661 M:      Woojung Huh <[email protected]>
10662 M:      Microchip Linux Driver Support <[email protected]>
10663 L:      [email protected]
10664 S:      Maintained
10665 F:      net/dsa/tag_ksz.c
10666 F:      drivers/net/dsa/microchip/*
10667 F:      include/linux/platform_data/microchip-ksz.h
10668 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
10669
10670 MICROCHIP LAN743X ETHERNET DRIVER
10671 M:      Bryan Whitehead <[email protected]>
10672 M:      Microchip Linux Driver Support <[email protected]>
10673 L:      [email protected]
10674 S:      Maintained
10675 F:      drivers/net/ethernet/microchip/lan743x_*
10676
10677 MICROCHIP LCDFB DRIVER
10678 M:      Nicolas Ferre <[email protected]>
10679 L:      [email protected]
10680 S:      Maintained
10681 F:      drivers/video/fbdev/atmel_lcdfb.c
10682 F:      include/video/atmel_lcdc.h
10683
10684 MICROCHIP MMC/SD/SDIO MCI DRIVER
10685 M:      Ludovic Desroches <[email protected]>
10686 S:      Maintained
10687 F:      drivers/mmc/host/atmel-mci.c
10688
10689 MICROCHIP MCP16502 PMIC DRIVER
10690 M:      Andrei Stefanescu <[email protected]>
10691 L:      [email protected] (moderated for non-subscribers)
10692 S:      Maintained
10693 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
10694 F:      drivers/regulator/mcp16502.c
10695
10696 MICROCHIP MCP3911 ADC DRIVER
10697 M:      Marcus Folkesson <[email protected]>
10698 M:      Kent Gustavsson <[email protected]>
10699 L:      [email protected]
10700 S:      Supported
10701 F:      drivers/iio/adc/mcp3911.c
10702 F:      Documentation/devicetree/bindings/iio/adc/mcp3911.txt
10703
10704 MICROCHIP NAND DRIVER
10705 M:      Tudor Ambarus <[email protected]>
10706 L:      [email protected]
10707 S:      Supported
10708 F:      drivers/mtd/nand/raw/atmel/*
10709 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
10710
10711 MICROCHIP PWM DRIVER
10712 M:      Claudiu Beznea <[email protected]>
10713 L:      [email protected] (moderated for non-subscribers)
10714 L:      [email protected]
10715 S:      Supported
10716 F:      drivers/pwm/pwm-atmel.c
10717 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
10718
10719 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
10720 M:      Ludovic Desroches <[email protected]>
10721 M:      Eugen Hristev <[email protected]>
10722 L:      [email protected]
10723 S:      Supported
10724 F:      drivers/iio/adc/at91-sama5d2_adc.c
10725 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
10726 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
10727
10728 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
10729 M:      Nicolas Ferre <[email protected]>
10730 S:      Supported
10731 F:      drivers/power/reset/at91-sama5d2_shdwc.c
10732
10733 MICROCHIP SPI DRIVER
10734 M:      Nicolas Ferre <[email protected]>
10735 S:      Supported
10736 F:      drivers/spi/spi-atmel.*
10737
10738 MICROCHIP SSC DRIVER
10739 M:      Nicolas Ferre <[email protected]>
10740 L:      [email protected] (moderated for non-subscribers)
10741 S:      Supported
10742 F:      drivers/misc/atmel-ssc.c
10743 F:      include/linux/atmel-ssc.h
10744
10745 MICROCHIP USBA UDC DRIVER
10746 M:      Cristian Birsan <[email protected]>
10747 L:      [email protected] (moderated for non-subscribers)
10748 S:      Supported
10749 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
10750
10751 MICROCHIP USB251XB DRIVER
10752 M:      Richard Leitner <[email protected]>
10753 L:      [email protected]
10754 S:      Maintained
10755 F:      drivers/usb/misc/usb251xb.c
10756 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
10757
10758 MICROCHIP XDMA DRIVER
10759 M:      Ludovic Desroches <[email protected]>
10760 L:      [email protected]
10761 L:      [email protected]
10762 S:      Supported
10763 F:      drivers/dma/at_xdmac.c
10764
10765 MICROSEMI MIPS SOCS
10766 M:      Alexandre Belloni <[email protected]>
10767 M:      Microchip Linux Driver Support <[email protected]>
10768 L:      [email protected]
10769 S:      Supported
10770 F:      arch/mips/generic/board-ocelot.c
10771 F:      arch/mips/configs/generic/board-ocelot.config
10772 F:      arch/mips/boot/dts/mscc/
10773 F:      Documentation/devicetree/bindings/mips/mscc.txt
10774
10775 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
10776 M:      Don Brace <[email protected]>
10777 L:      [email protected]
10778 L:      [email protected]
10779 S:      Supported
10780 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
10781 F:      drivers/scsi/smartpqi/Kconfig
10782 F:      drivers/scsi/smartpqi/Makefile
10783 F:      include/linux/cciss*.h
10784 F:      include/uapi/linux/cciss*.h
10785 F:      Documentation/scsi/smartpqi.txt
10786
10787 MICROSEMI ETHERNET SWITCH DRIVER
10788 M:      Alexandre Belloni <[email protected]>
10789 M:      Microchip Linux Driver Support <[email protected]>
10790 L:      [email protected]
10791 S:      Supported
10792 F:      drivers/net/ethernet/mscc/
10793
10794 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
10795 M:      Chen Yu <[email protected]>
10796 L:      [email protected]
10797 S:      Supported
10798 F:      drivers/platform/x86/surfacepro3_button.c
10799
10800 MICROTEK X6 SCANNER
10801 M:      Oliver Neukum <[email protected]>
10802 S:      Maintained
10803 F:      drivers/usb/image/microtek.*
10804
10805 MIPS
10806 M:      Ralf Baechle <[email protected]>
10807 M:      Paul Burton <[email protected]>
10808 M:      James Hogan <[email protected]>
10809 L:      [email protected]
10810 W:      http://www.linux-mips.org/
10811 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
10812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
10813 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10814 S:      Supported
10815 F:      Documentation/devicetree/bindings/mips/
10816 F:      Documentation/mips/
10817 F:      arch/mips/
10818 F:      drivers/platform/mips/
10819
10820 MIPS BOSTON DEVELOPMENT BOARD
10821 M:      Paul Burton <[email protected]>
10822 L:      [email protected]
10823 S:      Maintained
10824 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
10825 F:      arch/mips/boot/dts/img/boston.dts
10826 F:      arch/mips/configs/generic/board-boston.config
10827 F:      drivers/clk/imgtec/clk-boston.c
10828 F:      include/dt-bindings/clock/boston-clock.h
10829
10830 MIPS GENERIC PLATFORM
10831 M:      Paul Burton <[email protected]>
10832 L:      [email protected]
10833 S:      Supported
10834 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
10835 F:      arch/mips/generic/
10836 F:      arch/mips/tools/generic-board-config.sh
10837
10838 MIPS/LOONGSON1 ARCHITECTURE
10839 M:      Keguang Zhang <[email protected]>
10840 L:      [email protected]
10841 S:      Maintained
10842 F:      arch/mips/loongson32/
10843 F:      arch/mips/include/asm/mach-loongson32/
10844 F:      drivers/*/*loongson1*
10845 F:      drivers/*/*/*loongson1*
10846
10847 MIPS/LOONGSON2 ARCHITECTURE
10848 M:      Jiaxun Yang <[email protected]>
10849 L:      [email protected]
10850 S:      Maintained
10851 F:      arch/mips/loongson64/fuloong-2e/
10852 F:      arch/mips/loongson64/lemote-2f/
10853 F:      arch/mips/include/asm/mach-loongson64/
10854 F:      drivers/*/*loongson2*
10855 F:      drivers/*/*/*loongson2*
10856
10857 MIPS/LOONGSON3 ARCHITECTURE
10858 M:      Huacai Chen <[email protected]>
10859 L:      [email protected]
10860 S:      Maintained
10861 F:      arch/mips/loongson64/
10862 F:      arch/mips/include/asm/mach-loongson64/
10863 F:      drivers/platform/mips/cpu_hwmon.c
10864 F:      drivers/*/*loongson3*
10865 F:      drivers/*/*/*loongson3*
10866
10867 MIPS RINT INSTRUCTION EMULATION
10868 M:      Aleksandar Markovic <[email protected]>
10869 L:      [email protected]
10870 S:      Supported
10871 F:      arch/mips/math-emu/sp_rint.c
10872 F:      arch/mips/math-emu/dp_rint.c
10873
10874 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
10875 M:      Hans Verkuil <[email protected]>
10876 L:      [email protected]
10877 T:      git git://linuxtv.org/media_tree.git
10878 W:      https://linuxtv.org
10879 S:      Odd Fixes
10880 F:      drivers/media/radio/radio-miropcm20*
10881
10882 MMP SUPPORT
10883 R:      Lubomir Rintel <[email protected]>
10884 L:      [email protected] (moderated for non-subscribers)
10885 S:      Odd Fixes
10886 F:      arch/arm/boot/dts/mmp*
10887 F:      arch/arm/mach-mmp/
10888
10889 MMU GATHER AND TLB INVALIDATION
10890 M:      Will Deacon <[email protected]>
10891 M:      "Aneesh Kumar K.V" <[email protected]>
10892 M:      Andrew Morton <[email protected]>
10893 M:      Nick Piggin <[email protected]>
10894 M:      Peter Zijlstra <[email protected]>
10895 L:      [email protected]
10896 L:      [email protected]
10897 S:      Maintained
10898 F:      arch/*/include/asm/tlb.h
10899 F:      include/asm-generic/tlb.h
10900 F:      mm/mmu_gather.c
10901
10902 MN88472 MEDIA DRIVER
10903 M:      Antti Palosaari <[email protected]>
10904 L:      [email protected]
10905 W:      https://linuxtv.org
10906 W:      http://palosaari.fi/linux/
10907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10908 S:      Maintained
10909 F:      drivers/media/dvb-frontends/mn88472*
10910
10911 MN88473 MEDIA DRIVER
10912 M:      Antti Palosaari <[email protected]>
10913 L:      [email protected]
10914 W:      https://linuxtv.org
10915 W:      http://palosaari.fi/linux/
10916 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10917 S:      Maintained
10918 F:      drivers/media/dvb-frontends/mn88473*
10919
10920 MODULE SUPPORT
10921 M:      Jessica Yu <[email protected]>
10922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
10923 S:      Maintained
10924 F:      include/linux/module.h
10925 F:      kernel/module.c
10926
10927 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
10928 W:      http://popies.net/meye/
10929 S:      Orphan
10930 F:      Documentation/media/v4l-drivers/meye*
10931 F:      drivers/media/pci/meye/
10932 F:      include/uapi/linux/meye.h
10933
10934 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
10935 M:      Jiri Slaby <[email protected]>
10936 S:      Maintained
10937 F:      Documentation/driver-api/serial/moxa-smartio.rst
10938 F:      drivers/tty/mxser.*
10939
10940 MR800 AVERMEDIA USB FM RADIO DRIVER
10941 M:      Alexey Klimov <[email protected]>
10942 L:      [email protected]
10943 T:      git git://linuxtv.org/media_tree.git
10944 S:      Maintained
10945 F:      drivers/media/radio/radio-mr800.c
10946
10947 MRF24J40 IEEE 802.15.4 RADIO DRIVER
10948 M:      Alan Ott <[email protected]>
10949 L:      [email protected]
10950 S:      Maintained
10951 F:      drivers/net/ieee802154/mrf24j40.c
10952 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
10953
10954 MSI LAPTOP SUPPORT
10955 M:      "Lee, Chun-Yi" <[email protected]>
10956 L:      [email protected]
10957 S:      Maintained
10958 F:      drivers/platform/x86/msi-laptop.c
10959
10960 MSI WMI SUPPORT
10961 L:      [email protected]
10962 S:      Orphan
10963 F:      drivers/platform/x86/msi-wmi.c
10964
10965 MSI001 MEDIA DRIVER
10966 M:      Antti Palosaari <[email protected]>
10967 L:      [email protected]
10968 W:      https://linuxtv.org
10969 W:      http://palosaari.fi/linux/
10970 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10971 T:      git git://linuxtv.org/anttip/media_tree.git
10972 S:      Maintained
10973 F:      drivers/media/tuners/msi001*
10974
10975 MSI2500 MEDIA DRIVER
10976 M:      Antti Palosaari <[email protected]>
10977 L:      [email protected]
10978 W:      https://linuxtv.org
10979 W:      http://palosaari.fi/linux/
10980 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10981 T:      git git://linuxtv.org/anttip/media_tree.git
10982 S:      Maintained
10983 F:      drivers/media/usb/msi2500/
10984
10985 MSYSTEMS DISKONCHIP G3 MTD DRIVER
10986 M:      Robert Jarzmik <[email protected]>
10987 L:      [email protected]
10988 S:      Maintained
10989 F:      drivers/mtd/devices/docg3*
10990
10991 MT9M032 APTINA SENSOR DRIVER
10992 M:      Laurent Pinchart <[email protected]>
10993 L:      [email protected]
10994 T:      git git://linuxtv.org/media_tree.git
10995 S:      Maintained
10996 F:      drivers/media/i2c/mt9m032.c
10997 F:      include/media/i2c/mt9m032.h
10998
10999 MT9P031 APTINA CAMERA SENSOR
11000 M:      Laurent Pinchart <[email protected]>
11001 L:      [email protected]
11002 T:      git git://linuxtv.org/media_tree.git
11003 S:      Maintained
11004 F:      drivers/media/i2c/mt9p031.c
11005 F:      include/media/i2c/mt9p031.h
11006
11007 MT9T001 APTINA CAMERA SENSOR
11008 M:      Laurent Pinchart <[email protected]>
11009 L:      [email protected]
11010 T:      git git://linuxtv.org/media_tree.git
11011 S:      Maintained
11012 F:      drivers/media/i2c/mt9t001.c
11013 F:      include/media/i2c/mt9t001.h
11014
11015 MT9T112 APTINA CAMERA SENSOR
11016 M:      Jacopo Mondi <[email protected]>
11017 L:      [email protected]
11018 T:      git git://linuxtv.org/media_tree.git
11019 S:      Odd Fixes
11020 F:      drivers/media/i2c/mt9t112.c
11021 F:      include/media/i2c/mt9t112.h
11022
11023 MT9V032 APTINA CAMERA SENSOR
11024 M:      Laurent Pinchart <[email protected]>
11025 L:      [email protected]
11026 T:      git git://linuxtv.org/media_tree.git
11027 S:      Maintained
11028 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11029 F:      drivers/media/i2c/mt9v032.c
11030 F:      include/media/i2c/mt9v032.h
11031
11032 MT9V111 APTINA CAMERA SENSOR
11033 M:      Jacopo Mondi <[email protected]>
11034 L:      [email protected]
11035 T:      git git://linuxtv.org/media_tree.git
11036 S:      Maintained
11037 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11038 F:      drivers/media/i2c/mt9v111.c
11039
11040 MULTIFUNCTION DEVICES (MFD)
11041 M:      Lee Jones <[email protected]>
11042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11043 S:      Supported
11044 F:      Documentation/devicetree/bindings/mfd/
11045 F:      drivers/mfd/
11046 F:      include/linux/mfd/
11047 F:      include/dt-bindings/mfd/
11048
11049 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11050 S:      Orphan
11051 F:      drivers/mmc/host/mmc_spi.c
11052 F:      include/linux/spi/mmc_spi.h
11053
11054 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11055 M:      Ulf Hansson <[email protected]>
11056 L:      [email protected]
11057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11058 S:      Maintained
11059 F:      Documentation/devicetree/bindings/mmc/
11060 F:      drivers/mmc/
11061 F:      include/linux/mmc/
11062 F:      include/uapi/linux/mmc/
11063
11064 MULTIPLEXER SUBSYSTEM
11065 M:      Peter Rosin <[email protected]>
11066 S:      Maintained
11067 F:      Documentation/ABI/testing/sysfs-class-mux*
11068 F:      Documentation/devicetree/bindings/mux/
11069 F:      include/dt-bindings/mux/
11070 F:      include/linux/mux/
11071 F:      drivers/mux/
11072
11073 MULTITECH MULTIPORT CARD (ISICOM)
11074 S:      Orphan
11075 F:      drivers/tty/isicom.c
11076 F:      include/linux/isicom.h
11077
11078 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11079 M:      Bin Liu <[email protected]>
11080 L:      [email protected]
11081 S:      Maintained
11082 F:      drivers/usb/musb/
11083
11084 MXL301RF MEDIA DRIVER
11085 M:      Akihiro Tsukada <[email protected]>
11086 L:      [email protected]
11087 S:      Odd Fixes
11088 F:      drivers/media/tuners/mxl301rf*
11089
11090 MXL5007T MEDIA DRIVER
11091 M:      Michael Krufky <[email protected]>
11092 L:      [email protected]
11093 W:      https://linuxtv.org
11094 W:      http://github.com/mkrufky
11095 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11096 T:      git git://linuxtv.org/mkrufky/tuners.git
11097 S:      Maintained
11098 F:      drivers/media/tuners/mxl5007t.*
11099
11100 MXSFB DRM DRIVER
11101 M:      Marek Vasut <[email protected]>
11102 M:      Stefan Agner <[email protected]>
11103 L:      [email protected]
11104 S:      Supported
11105 F:      drivers/gpu/drm/mxsfb/
11106 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11107 T:      git git://anongit.freedesktop.org/drm/drm-misc
11108
11109 MYLEX DAC960 PCI RAID Controller
11110 M:      Hannes Reinecke <[email protected]>
11111 L:      [email protected]
11112 S:      Supported
11113 F:      drivers/scsi/myrb.*
11114 F:      drivers/scsi/myrs.*
11115
11116 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11117 M:      Chris Lee <[email protected]>
11118 L:      [email protected]
11119 W:      https://www.cspi.com/ethernet-products/support/downloads/
11120 S:      Supported
11121 F:      drivers/net/ethernet/myricom/myri10ge/
11122
11123 NAND FLASH SUBSYSTEM
11124 M:      Miquel Raynal <[email protected]>
11125 R:      Richard Weinberger <[email protected]>
11126 L:      [email protected]
11127 W:      http://www.linux-mtd.infradead.org/
11128 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11130 S:      Maintained
11131 F:      drivers/mtd/nand/
11132 F:      include/linux/mtd/*nand*.h
11133
11134 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11135 M:      Daniel Mack <[email protected]>
11136 S:      Maintained
11137 L:      [email protected] (moderated for non-subscribers)
11138 W:      http://www.native-instruments.com
11139 F:      sound/usb/caiaq/
11140
11141 NATSEMI ETHERNET DRIVER (DP8381x)
11142 S:      Orphan
11143 F:      drivers/net/ethernet/natsemi/natsemi.c
11144
11145 NCR 5380 SCSI DRIVERS
11146 M:      Finn Thain <[email protected]>
11147 M:      Michael Schmitz <[email protected]>
11148 L:      [email protected]
11149 S:      Maintained
11150 F:      Documentation/scsi/g_NCR5380.txt
11151 F:      drivers/scsi/NCR5380.*
11152 F:      drivers/scsi/arm/cumana_1.c
11153 F:      drivers/scsi/arm/oak.c
11154 F:      drivers/scsi/atari_scsi.*
11155 F:      drivers/scsi/dmx3191d.c
11156 F:      drivers/scsi/g_NCR5380.*
11157 F:      drivers/scsi/mac_scsi.*
11158 F:      drivers/scsi/sun3_scsi.*
11159 F:      drivers/scsi/sun3_scsi_vme.c
11160
11161 NCSI LIBRARY:
11162 M:      Samuel Mendoza-Jonas <[email protected]>
11163 S:      Maintained
11164 F:      net/ncsi/
11165
11166 NCT6775 HARDWARE MONITOR DRIVER
11167 M:      Guenter Roeck <[email protected]>
11168 L:      [email protected]
11169 S:      Maintained
11170 F:      Documentation/hwmon/nct6775.rst
11171 F:      drivers/hwmon/nct6775.c
11172
11173 NET_FAILOVER MODULE
11174 M:      Sridhar Samudrala <[email protected]>
11175 L:      [email protected]
11176 S:      Supported
11177 F:      drivers/net/net_failover.c
11178 F:      include/net/net_failover.h
11179 F:      Documentation/networking/net_failover.rst
11180
11181 NETEM NETWORK EMULATOR
11182 M:      Stephen Hemminger <[email protected]>
11183 L:      [email protected] (moderated for non-subscribers)
11184 S:      Maintained
11185 F:      net/sched/sch_netem.c
11186
11187 NETERION 10GbE DRIVERS (s2io/vxge)
11188 M:      Jon Mason <[email protected]>
11189 L:      [email protected]
11190 S:      Supported
11191 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11192 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11193 F:      drivers/net/ethernet/neterion/
11194
11195 NETFILTER
11196 M:      Pablo Neira Ayuso <[email protected]>
11197 M:      Jozsef Kadlecsik <[email protected]>
11198 M:      Florian Westphal <[email protected]>
11199 L:      [email protected]
11200 L:      [email protected]
11201 W:      http://www.netfilter.org/
11202 W:      http://www.iptables.org/
11203 W:      http://www.nftables.org/
11204 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11207 S:      Maintained
11208 F:      include/linux/netfilter*
11209 F:      include/linux/netfilter/
11210 F:      include/net/netfilter/
11211 F:      include/uapi/linux/netfilter*
11212 F:      include/uapi/linux/netfilter/
11213 F:      net/*/netfilter.c
11214 F:      net/*/netfilter/
11215 F:      net/netfilter/
11216 F:      net/bridge/br_netfilter*.c
11217
11218 NETROM NETWORK LAYER
11219 M:      Ralf Baechle <[email protected]>
11220 L:      [email protected]
11221 W:      http://www.linux-ax25.org/
11222 S:      Maintained
11223 F:      include/net/netrom.h
11224 F:      include/uapi/linux/netrom.h
11225 F:      net/netrom/
11226
11227 NETRONOME ETHERNET DRIVERS
11228 M:      Jakub Kicinski <[email protected]>
11229 L:      [email protected]
11230 S:      Maintained
11231 F:      drivers/net/ethernet/netronome/
11232
11233 NETWORK BLOCK DEVICE (NBD)
11234 M:      Josef Bacik <[email protected]>
11235 S:      Maintained
11236 L:      [email protected]
11237 L:      [email protected]
11238 F:      Documentation/admin-guide/blockdev/nbd.rst
11239 F:      drivers/block/nbd.c
11240 F:      include/trace/events/nbd.h
11241 F:      include/uapi/linux/nbd.h
11242
11243 NETWORK DROP MONITOR
11244 M:      Neil Horman <[email protected]>
11245 L:      [email protected]
11246 S:      Maintained
11247 W:      https://fedorahosted.org/dropwatch/
11248 F:      net/core/drop_monitor.c
11249 F:      include/uapi/linux/net_dropmon.h
11250 F:      include/net/drop_monitor.h
11251
11252 NETWORKING DRIVERS
11253 M:      "David S. Miller" <[email protected]>
11254 L:      [email protected]
11255 W:      http://www.linuxfoundation.org/en/Net
11256 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11259 S:      Odd Fixes
11260 F:      Documentation/devicetree/bindings/net/
11261 F:      drivers/net/
11262 F:      include/linux/if_*
11263 F:      include/linux/netdevice.h
11264 F:      include/linux/etherdevice.h
11265 F:      include/linux/fcdevice.h
11266 F:      include/linux/fddidevice.h
11267 F:      include/linux/hippidevice.h
11268 F:      include/linux/inetdevice.h
11269 F:      include/uapi/linux/if_*
11270 F:      include/uapi/linux/netdevice.h
11271
11272 NETWORKING DRIVERS (WIRELESS)
11273 M:      Kalle Valo <[email protected]>
11274 L:      [email protected]
11275 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11278 S:      Maintained
11279 F:      Documentation/devicetree/bindings/net/wireless/
11280 F:      drivers/net/wireless/
11281
11282 NETWORKING [DSA]
11283 M:      Andrew Lunn <[email protected]>
11284 M:      Vivien Didelot <[email protected]>
11285 M:      Florian Fainelli <[email protected]>
11286 S:      Maintained
11287 F:      Documentation/devicetree/bindings/net/dsa/
11288 F:      net/dsa/
11289 F:      include/net/dsa.h
11290 F:      include/linux/dsa/
11291 F:      include/linux/platform_data/dsa.h
11292 F:      drivers/net/dsa/
11293
11294 NETWORKING [GENERAL]
11295 M:      "David S. Miller" <[email protected]>
11296 L:      [email protected]
11297 W:      http://www.linuxfoundation.org/en/Net
11298 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11301 B:      mailto:[email protected]
11302 S:      Maintained
11303 F:      net/
11304 F:      include/net/
11305 F:      include/linux/in.h
11306 F:      include/linux/net.h
11307 F:      include/linux/netdevice.h
11308 F:      include/uapi/linux/in.h
11309 F:      include/uapi/linux/net.h
11310 F:      include/uapi/linux/netdevice.h
11311 F:      include/uapi/linux/net_namespace.h
11312 F:      tools/testing/selftests/net/
11313 F:      lib/net_utils.c
11314 F:      lib/random32.c
11315 F:      Documentation/networking/
11316
11317 NETWORKING [IPSEC]
11318 M:      Steffen Klassert <[email protected]>
11319 M:      Herbert Xu <[email protected]>
11320 M:      "David S. Miller" <[email protected]>
11321 L:      [email protected]
11322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11324 S:      Maintained
11325 F:      net/xfrm/
11326 F:      net/key/
11327 F:      net/ipv4/xfrm*
11328 F:      net/ipv4/esp4*
11329 F:      net/ipv4/ah4.c
11330 F:      net/ipv4/ipcomp.c
11331 F:      net/ipv4/ip_vti.c
11332 F:      net/ipv6/xfrm*
11333 F:      net/ipv6/esp6*
11334 F:      net/ipv6/ah6.c
11335 F:      net/ipv6/ipcomp6.c
11336 F:      net/ipv6/ip6_vti.c
11337 F:      include/uapi/linux/xfrm.h
11338 F:      include/net/xfrm.h
11339
11340 NETWORKING [IPv4/IPv6]
11341 M:      "David S. Miller" <[email protected]>
11342 M:      Alexey Kuznetsov <[email protected]>
11343 M:      Hideaki YOSHIFUJI <[email protected]>
11344 L:      [email protected]
11345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11346 S:      Maintained
11347 F:      net/ipv4/
11348 F:      net/ipv6/
11349 F:      include/net/ip*
11350 F:      arch/x86/net/*
11351
11352 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11353 M:      Paul Moore <[email protected]>
11354 W:      https://github.com/netlabel
11355 L:      [email protected]
11356 L:      [email protected]
11357 S:      Maintained
11358 F:      Documentation/netlabel/
11359 F:      include/net/calipso.h
11360 F:      include/net/cipso_ipv4.h
11361 F:      include/net/netlabel.h
11362 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11363 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11364 F:      net/netlabel/
11365 F:      net/ipv4/cipso_ipv4.c
11366 F:      net/ipv6/calipso.c
11367 F:      net/netfilter/xt_CONNSECMARK.c
11368 F:      net/netfilter/xt_SECMARK.c
11369
11370 NETWORKING [TCP]
11371 M:      Eric Dumazet <[email protected]>
11372 L:      [email protected]
11373 S:      Maintained
11374 F:      net/ipv4/tcp*.c
11375 F:      net/ipv4/syncookies.c
11376 F:      net/ipv6/tcp*.c
11377 F:      net/ipv6/syncookies.c
11378 F:      include/uapi/linux/tcp.h
11379 F:      include/net/tcp.h
11380 F:      include/linux/tcp.h
11381 F:      include/trace/events/tcp.h
11382
11383 NETWORKING [TLS]
11384 M:      Boris Pismenny <[email protected]>
11385 M:      Aviad Yehezkel <[email protected]>
11386 M:      Dave Watson <[email protected]>
11387 M:      John Fastabend <[email protected]>
11388 M:      Daniel Borkmann <[email protected]>
11389 M:      Jakub Kicinski <[email protected]>
11390 L:      [email protected]
11391 S:      Maintained
11392 F:      net/tls/*
11393 F:      include/uapi/linux/tls.h
11394 F:      include/net/tls.h
11395
11396 NETWORKING [WIRELESS]
11397 L:      [email protected]
11398 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11399
11400 NETDEVSIM
11401 M:      Jakub Kicinski <[email protected]>
11402 S:      Maintained
11403 F:      drivers/net/netdevsim/*
11404
11405 NETXEN (1/10) GbE SUPPORT
11406 M:      Manish Chopra <[email protected]>
11407 M:      Rahul Verma <[email protected]>
11408 M:      [email protected]
11409 L:      [email protected]
11410 S:      Supported
11411 F:      drivers/net/ethernet/qlogic/netxen/
11412
11413 NEXTHOP
11414 M:      David Ahern <[email protected]>
11415 L:      [email protected]
11416 S:      Maintained
11417 F:      include/net/nexthop.h
11418 F:      include/uapi/linux/nexthop.h
11419 F:      include/net/netns/nexthop.h
11420 F:      net/ipv4/nexthop.c
11421
11422 NFC SUBSYSTEM
11423 L:      [email protected]
11424 S:      Orphan
11425 F:      net/nfc/
11426 F:      include/net/nfc/
11427 F:      include/uapi/linux/nfc.h
11428 F:      drivers/nfc/
11429 F:      include/linux/platform_data/nfcmrvl.h
11430 F:      Documentation/devicetree/bindings/net/nfc/
11431
11432 NFS, SUNRPC, AND LOCKD CLIENTS
11433 M:      Trond Myklebust <[email protected]>
11434 M:      Anna Schumaker <[email protected]>
11435 L:      [email protected]
11436 W:      http://client.linux-nfs.org
11437 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11438 S:      Maintained
11439 F:      fs/lockd/
11440 F:      fs/nfs/
11441 F:      fs/nfs_common/
11442 F:      net/sunrpc/
11443 F:      include/linux/lockd/
11444 F:      include/linux/nfs*
11445 F:      include/linux/sunrpc/
11446 F:      include/uapi/linux/nfs*
11447 F:      include/uapi/linux/sunrpc/
11448
11449 NILFS2 FILESYSTEM
11450 M:      Ryusuke Konishi <[email protected]>
11451 L:      [email protected]
11452 W:      https://nilfs.sourceforge.io/
11453 W:      https://nilfs.osdn.jp/
11454 T:      git git://github.com/konis/nilfs2.git
11455 S:      Supported
11456 F:      Documentation/filesystems/nilfs2.txt
11457 F:      fs/nilfs2/
11458 F:      include/trace/events/nilfs2.h
11459 F:      include/uapi/linux/nilfs2_api.h
11460 F:      include/uapi/linux/nilfs2_ondisk.h
11461
11462 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11463 M:      YOKOTA Hiroshi <[email protected]>
11464 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11465 S:      Maintained
11466 F:      Documentation/scsi/NinjaSCSI.txt
11467 F:      drivers/scsi/pcmcia/nsp_*
11468
11469 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11470 M:      GOTO Masanori <[email protected]>
11471 M:      YOKOTA Hiroshi <[email protected]>
11472 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11473 S:      Maintained
11474 F:      Documentation/scsi/NinjaSCSI.txt
11475 F:      drivers/scsi/nsp32*
11476
11477 NIOS2 ARCHITECTURE
11478 M:      Ley Foon Tan <[email protected]>
11479 L:      [email protected] (moderated for non-subscribers)
11480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11481 S:      Maintained
11482 F:      arch/nios2/
11483
11484 NOHZ, DYNTICKS SUPPORT
11485 M:      Frederic Weisbecker <[email protected]>
11486 M:      Thomas Gleixner <[email protected]>
11487 M:      Ingo Molnar <[email protected]>
11488 L:      [email protected]
11489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11490 S:      Maintained
11491 F:      kernel/time/tick*.*
11492 F:      include/linux/tick.h
11493 F:      include/linux/sched/nohz.h
11494
11495 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11496 M:      Pavel Machek <[email protected]>
11497 M:      Sakari Ailus <[email protected]>
11498 L:      [email protected]
11499 S:      Maintained
11500 F:      drivers/media/i2c/et8ek8
11501 F:      drivers/media/i2c/ad5820.c
11502
11503 NOKIA N900 POWER SUPPLY DRIVERS
11504 R:      Pali Rohár <[email protected]>
11505 F:      include/linux/power/bq2415x_charger.h
11506 F:      include/linux/power/bq27xxx_battery.h
11507 F:      include/linux/power/isp1704_charger.h
11508 F:      drivers/power/supply/bq2415x_charger.c
11509 F:      drivers/power/supply/bq27xxx_battery.c
11510 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11511 F:      drivers/power/supply/isp1704_charger.c
11512 F:      drivers/power/supply/rx51_battery.c
11513
11514 NOLIBC HEADER FILE
11515 M:      Willy Tarreau <[email protected]>
11516 S:      Maintained
11517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11518 F:      tools/include/nolibc/
11519
11520 NTB AMD DRIVER
11521 M:      Shyam Sundar S K <[email protected]>
11522 L:      [email protected]
11523 S:      Supported
11524 F:      drivers/ntb/hw/amd/
11525
11526 NTB DRIVER CORE
11527 M:      Jon Mason <[email protected]>
11528 M:      Dave Jiang <[email protected]>
11529 M:      Allen Hubbe <[email protected]>
11530 L:      [email protected]
11531 S:      Supported
11532 W:      https://github.com/jonmason/ntb/wiki
11533 T:      git git://github.com/jonmason/ntb.git
11534 F:      drivers/ntb/
11535 F:      drivers/net/ntb_netdev.c
11536 F:      include/linux/ntb.h
11537 F:      include/linux/ntb_transport.h
11538 F:      tools/testing/selftests/ntb/
11539
11540 NTB IDT DRIVER
11541 M:      Serge Semin <[email protected]>
11542 L:      [email protected]
11543 S:      Supported
11544 F:      drivers/ntb/hw/idt/
11545
11546 NTB INTEL DRIVER
11547 M:      Dave Jiang <[email protected]>
11548 L:      [email protected]
11549 S:      Supported
11550 W:      https://github.com/davejiang/linux/wiki
11551 T:      git https://github.com/davejiang/linux.git
11552 F:      drivers/ntb/hw/intel/
11553
11554 NTFS FILESYSTEM
11555 M:      Anton Altaparmakov <[email protected]>
11556 L:      [email protected]
11557 W:      http://www.tuxera.com/
11558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
11559 S:      Supported
11560 F:      Documentation/filesystems/ntfs.txt
11561 F:      fs/ntfs/
11562
11563 NUBUS SUBSYSTEM
11564 M:      Finn Thain <[email protected]>
11565 L:      [email protected]
11566 S:      Maintained
11567 F:      arch/*/include/asm/nubus.h
11568 F:      drivers/nubus/
11569 F:      include/linux/nubus.h
11570 F:      include/uapi/linux/nubus.h
11571
11572 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
11573 M:      Antonino Daplas <[email protected]>
11574 L:      [email protected]
11575 S:      Maintained
11576 F:      drivers/video/fbdev/riva/
11577 F:      drivers/video/fbdev/nvidia/
11578
11579 NVM EXPRESS DRIVER
11580 M:      Keith Busch <[email protected]>
11581 M:      Jens Axboe <[email protected]>
11582 M:      Christoph Hellwig <[email protected]>
11583 M:      Sagi Grimberg <[email protected]>
11584 L:      [email protected]
11585 T:      git://git.infradead.org/nvme.git
11586 W:      http://git.infradead.org/nvme.git
11587 S:      Supported
11588 F:      drivers/nvme/host/
11589 F:      include/linux/nvme.h
11590 F:      include/uapi/linux/nvme_ioctl.h
11591
11592 NVM EXPRESS FC TRANSPORT DRIVERS
11593 M:      James Smart <[email protected]>
11594 L:      [email protected]
11595 S:      Supported
11596 F:      include/linux/nvme-fc.h
11597 F:      include/linux/nvme-fc-driver.h
11598 F:      drivers/nvme/host/fc.c
11599 F:      drivers/nvme/target/fc.c
11600 F:      drivers/nvme/target/fcloop.c
11601
11602 NVM EXPRESS TARGET DRIVER
11603 M:      Christoph Hellwig <[email protected]>
11604 M:      Sagi Grimberg <[email protected]>
11605 L:      [email protected]
11606 T:      git://git.infradead.org/nvme.git
11607 W:      http://git.infradead.org/nvme.git
11608 S:      Supported
11609 F:      drivers/nvme/target/
11610
11611 NVMEM FRAMEWORK
11612 M:      Srinivas Kandagatla <[email protected]>
11613 S:      Maintained
11614 F:      drivers/nvmem/
11615 F:      Documentation/devicetree/bindings/nvmem/
11616 F:      Documentation/ABI/stable/sysfs-bus-nvmem
11617 F:      include/linux/nvmem-consumer.h
11618 F:      include/linux/nvmem-provider.h
11619
11620 NXP FXAS21002C DRIVER
11621 M:      Rui Miguel Silva <[email protected]>
11622 L:      [email protected]
11623 S:      Maintained
11624 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
11625 F:      drivers/iio/gyro/fxas21002c_core.c
11626 F:      drivers/iio/gyro/fxas21002c.h
11627 F:      drivers/iio/gyro/fxas21002c_i2c.c
11628 F:      drivers/iio/gyro/fxas21002c_spi.c
11629
11630 NXP SGTL5000 DRIVER
11631 M:      Fabio Estevam <[email protected]>
11632 L:      [email protected] (moderated for non-subscribers)
11633 S:      Maintained
11634 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
11635 F:      sound/soc/codecs/sgtl5000*
11636
11637 NXP SJA1105 ETHERNET SWITCH DRIVER
11638 M:      Vladimir Oltean <[email protected]>
11639 L:      [email protected]
11640 S:      Maintained
11641 F:      drivers/net/dsa/sja1105
11642
11643 NXP TDA998X DRM DRIVER
11644 M:      Russell King <[email protected]>
11645 S:      Maintained
11646 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
11647 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
11648 F:      drivers/gpu/drm/i2c/tda998x_drv.c
11649 F:      include/drm/i2c/tda998x.h
11650 F:      include/dt-bindings/display/tda998x.h
11651 K:      "nxp,tda998x"
11652
11653 NXP TFA9879 DRIVER
11654 M:      Peter Rosin <[email protected]>
11655 L:      [email protected] (moderated for non-subscribers)
11656 S:      Maintained
11657 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
11658 F:      sound/soc/codecs/tfa9879*
11659
11660 NXP-NCI NFC DRIVER
11661 M:      Clément Perrochaud <[email protected]>
11662 R:      Charles Gorand <[email protected]>
11663 L:      [email protected] (moderated for non-subscribers)
11664 S:      Supported
11665 F:      drivers/nfc/nxp-nci
11666
11667 OBJAGG
11668 M:      Jiri Pirko <[email protected]>
11669 L:      [email protected]
11670 S:      Supported
11671 F:      lib/objagg.c
11672 F:      lib/test_objagg.c
11673 F:      include/linux/objagg.h
11674
11675 NXP FSPI DRIVER
11676 R:      Yogesh Gaur <[email protected]>
11677 M:      Ashish Kumar <[email protected]>
11678 L:      [email protected]
11679 S:      Maintained
11680 F:      drivers/spi/spi-nxp-fspi.c
11681 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
11682
11683 OBJTOOL
11684 M:      Josh Poimboeuf <[email protected]>
11685 M:      Peter Zijlstra <[email protected]>
11686 S:      Supported
11687 F:      tools/objtool/
11688
11689 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
11690 M:      Frederic Barrat <[email protected]>
11691 M:      Andrew Donnellan <[email protected]>
11692 L:      [email protected]
11693 S:      Supported
11694 F:      arch/powerpc/platforms/powernv/ocxl.c
11695 F:      arch/powerpc/include/asm/pnv-ocxl.h
11696 F:      drivers/misc/ocxl/
11697 F:      include/misc/ocxl*
11698 F:      include/uapi/misc/ocxl.h
11699 F:      Documentation/userspace-api/accelerators/ocxl.rst
11700
11701 OMAP AUDIO SUPPORT
11702 M:      Peter Ujfalusi <[email protected]>
11703 M:      Jarkko Nikula <[email protected]>
11704 L:      [email protected] (moderated for non-subscribers)
11705 L:      [email protected]
11706 S:      Maintained
11707 F:      sound/soc/ti/omap*
11708 F:      sound/soc/ti/rx51.c
11709 F:      sound/soc/ti/n810.c
11710 F:      sound/soc/ti/sdma-pcm.*
11711
11712 OMAP CLOCK FRAMEWORK SUPPORT
11713 M:      Paul Walmsley <[email protected]>
11714 L:      [email protected]
11715 S:      Maintained
11716 F:      arch/arm/*omap*/*clock*
11717
11718 OMAP DEVICE TREE SUPPORT
11719 M:      Benoît Cousson <[email protected]>
11720 M:      Tony Lindgren <[email protected]>
11721 L:      [email protected]
11722 L:      [email protected]
11723 S:      Maintained
11724 F:      arch/arm/boot/dts/*omap*
11725 F:      arch/arm/boot/dts/*am3*
11726 F:      arch/arm/boot/dts/*am4*
11727 F:      arch/arm/boot/dts/*am5*
11728 F:      arch/arm/boot/dts/*dra7*
11729
11730 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
11731 L:      [email protected]
11732 L:      [email protected]
11733 S:      Orphan
11734 F:      drivers/video/fbdev/omap2/
11735 F:      Documentation/arm/omap/dss.rst
11736
11737 OMAP FRAMEBUFFER SUPPORT
11738 L:      [email protected]
11739 L:      [email protected]
11740 S:      Orphan
11741 F:      drivers/video/fbdev/omap/
11742
11743 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
11744 M:      Roger Quadros <[email protected]>
11745 M:      Tony Lindgren <[email protected]>
11746 L:      [email protected]
11747 S:      Maintained
11748 F:      drivers/memory/omap-gpmc.c
11749 F:      arch/arm/mach-omap2/*gpmc*
11750
11751 OMAP GPIO DRIVER
11752 M:      Grygorii Strashko <[email protected]>
11753 M:      Santosh Shilimkar <[email protected]>
11754 M:      Kevin Hilman <[email protected]>
11755 L:      [email protected]
11756 S:      Maintained
11757 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
11758 F:      drivers/gpio/gpio-omap.c
11759
11760 OMAP HARDWARE SPINLOCK SUPPORT
11761 M:      Ohad Ben-Cohen <[email protected]>
11762 L:      [email protected]
11763 S:      Maintained
11764 F:      drivers/hwspinlock/omap_hwspinlock.c
11765
11766 OMAP HS MMC SUPPORT
11767 L:      [email protected]
11768 L:      [email protected]
11769 S:      Orphan
11770 F:      drivers/mmc/host/omap_hsmmc.c
11771
11772 OMAP HWMOD DATA
11773 M:      Paul Walmsley <[email protected]>
11774 L:      [email protected]
11775 S:      Maintained
11776 F:      arch/arm/mach-omap2/omap_hwmod*data*
11777
11778 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
11779 M:      Benoît Cousson <[email protected]>
11780 L:      [email protected]
11781 S:      Maintained
11782 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
11783
11784 OMAP HWMOD SUPPORT
11785 M:      Benoît Cousson <[email protected]>
11786 M:      Paul Walmsley <[email protected]>
11787 L:      [email protected]
11788 S:      Maintained
11789 F:      arch/arm/mach-omap2/omap_hwmod.*
11790
11791 OMAP I2C DRIVER
11792 M:      Vignesh R <[email protected]>
11793 L:      [email protected]
11794 L:      [email protected]
11795 S:      Maintained
11796 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
11797 F:      drivers/i2c/busses/i2c-omap.c
11798
11799 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
11800 M:      Laurent Pinchart <[email protected]>
11801 L:      [email protected]
11802 S:      Maintained
11803 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
11804 F:      drivers/media/platform/omap3isp/
11805 F:      drivers/staging/media/omap4iss/
11806
11807 OMAP MMC SUPPORT
11808 M:      Aaro Koskinen <[email protected]>
11809 L:      [email protected]
11810 S:      Odd Fixes
11811 F:      drivers/mmc/host/omap.c
11812
11813 OMAP POWER MANAGEMENT SUPPORT
11814 M:      Kevin Hilman <[email protected]>
11815 L:      [email protected]
11816 S:      Maintained
11817 F:      arch/arm/*omap*/*pm*
11818 F:      drivers/cpufreq/omap-cpufreq.c
11819
11820 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
11821 M:      Rajendra Nayak <[email protected]>
11822 M:      Paul Walmsley <[email protected]>
11823 L:      [email protected]
11824 S:      Maintained
11825 F:      arch/arm/mach-omap2/prm*
11826
11827 OMAP RANDOM NUMBER GENERATOR SUPPORT
11828 M:      Deepak Saxena <[email protected]>
11829 S:      Maintained
11830 F:      drivers/char/hw_random/omap-rng.c
11831
11832 OMAP USB SUPPORT
11833 L:      [email protected]
11834 L:      [email protected]
11835 S:      Orphan
11836 F:      drivers/usb/*/*omap*
11837 F:      arch/arm/*omap*/usb*
11838
11839 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
11840 M:      Mark Jackson <[email protected]>
11841 L:      [email protected]
11842 S:      Maintained
11843 F:      arch/arm/boot/dts/am335x-nano.dts
11844
11845 OMAP1 SUPPORT
11846 M:      Aaro Koskinen <[email protected]>
11847 M:      Tony Lindgren <[email protected]>
11848 L:      [email protected]
11849 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11851 S:      Maintained
11852 F:      arch/arm/mach-omap1/
11853 F:      arch/arm/plat-omap/
11854 F:      arch/arm/configs/omap1_defconfig
11855 F:      drivers/i2c/busses/i2c-omap.c
11856 F:      include/linux/platform_data/i2c-omap.h
11857 F:      include/linux/platform_data/ams-delta-fiq.h
11858
11859 OMAP2+ SUPPORT
11860 M:      Tony Lindgren <[email protected]>
11861 L:      [email protected]
11862 W:      http://www.muru.com/linux/omap/
11863 W:      http://linux.omap.com/
11864 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11866 S:      Maintained
11867 F:      arch/arm/mach-omap2/
11868 F:      arch/arm/plat-omap/
11869 F:      arch/arm/configs/omap2plus_defconfig
11870 F:      drivers/i2c/busses/i2c-omap.c
11871 F:      drivers/irqchip/irq-omap-intc.c
11872 F:      drivers/mfd/*omap*.c
11873 F:      drivers/mfd/menelaus.c
11874 F:      drivers/mfd/palmas.c
11875 F:      drivers/mfd/tps65217.c
11876 F:      drivers/mfd/tps65218.c
11877 F:      drivers/mfd/tps65910.c
11878 F:      drivers/mfd/twl-core.[ch]
11879 F:      drivers/mfd/twl4030*.c
11880 F:      drivers/mfd/twl6030*.c
11881 F:      drivers/mfd/twl6040*.c
11882 F:      drivers/regulator/palmas-regulator*.c
11883 F:      drivers/regulator/pbias-regulator.c
11884 F:      drivers/regulator/tps65217-regulator.c
11885 F:      drivers/regulator/tps65218-regulator.c
11886 F:      drivers/regulator/tps65910-regulator.c
11887 F:      drivers/regulator/twl-regulator.c
11888 F:      drivers/regulator/twl6030-regulator.c
11889 F:      include/linux/platform_data/i2c-omap.h
11890
11891 ONION OMEGA2+ BOARD
11892 M:      Harvey Hunt <[email protected]>
11893 L:      [email protected]
11894 S:      Maintained
11895 F:      arch/mips/boot/dts/ralink/omega2p.dts
11896
11897 OMFS FILESYSTEM
11898 M:      Bob Copeland <[email protected]>
11899 L:      [email protected]
11900 S:      Maintained
11901 F:      Documentation/filesystems/omfs.txt
11902 F:      fs/omfs/
11903
11904 OMNIKEY CARDMAN 4000 DRIVER
11905 M:      Harald Welte <[email protected]>
11906 S:      Maintained
11907 F:      drivers/char/pcmcia/cm4000_cs.c
11908 F:      include/linux/cm4000_cs.h
11909 F:      include/uapi/linux/cm4000_cs.h
11910
11911 OMNIKEY CARDMAN 4040 DRIVER
11912 M:      Harald Welte <[email protected]>
11913 S:      Maintained
11914 F:      drivers/char/pcmcia/cm4040_cs.*
11915
11916 OMNIVISION OV13858 SENSOR DRIVER
11917 M:      Sakari Ailus <[email protected]>
11918 L:      [email protected]
11919 T:      git git://linuxtv.org/media_tree.git
11920 S:      Maintained
11921 F:      drivers/media/i2c/ov13858.c
11922
11923 OMNIVISION OV2680 SENSOR DRIVER
11924 M:      Rui Miguel Silva <[email protected]>
11925 L:      [email protected]
11926 T:      git git://linuxtv.org/media_tree.git
11927 S:      Maintained
11928 F:      drivers/media/i2c/ov2680.c
11929 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
11930
11931 OMNIVISION OV2685 SENSOR DRIVER
11932 M:      Shunqian Zheng <[email protected]>
11933 L:      [email protected]
11934 T:      git git://linuxtv.org/media_tree.git
11935 S:      Maintained
11936 F:      drivers/media/i2c/ov2685.c
11937
11938 OMNIVISION OV5640 SENSOR DRIVER
11939 M:      Steve Longerbeam <[email protected]>
11940 L:      [email protected]
11941 T:      git git://linuxtv.org/media_tree.git
11942 S:      Maintained
11943 F:      drivers/media/i2c/ov5640.c
11944
11945 OMNIVISION OV5647 SENSOR DRIVER
11946 M:      Luis Oliveira <[email protected]>
11947 L:      [email protected]
11948 T:      git git://linuxtv.org/media_tree.git
11949 S:      Maintained
11950 F:      drivers/media/i2c/ov5647.c
11951
11952 OMNIVISION OV5670 SENSOR DRIVER
11953 M:      Chiranjeevi Rapolu <[email protected]>
11954 M:      Hyungwoo Yang <[email protected]>
11955 L:      [email protected]
11956 T:      git git://linuxtv.org/media_tree.git
11957 S:      Maintained
11958 F:      drivers/media/i2c/ov5670.c
11959
11960 OMNIVISION OV5675 SENSOR DRIVER
11961 M:      Shawn Tu <[email protected]>
11962 L:      [email protected]
11963 T:      git git://linuxtv.org/media_tree.git
11964 S:      Maintained
11965 F:      drivers/media/i2c/ov5675.c
11966
11967 OMNIVISION OV5695 SENSOR DRIVER
11968 M:      Shunqian Zheng <[email protected]>
11969 L:      [email protected]
11970 T:      git git://linuxtv.org/media_tree.git
11971 S:      Maintained
11972 F:      drivers/media/i2c/ov5695.c
11973
11974 OMNIVISION OV7670 SENSOR DRIVER
11975 M:      Jonathan Corbet <[email protected]>
11976 L:      [email protected]
11977 T:      git git://linuxtv.org/media_tree.git
11978 S:      Maintained
11979 F:      drivers/media/i2c/ov7670.c
11980 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
11981
11982 OMNIVISION OV772x SENSOR DRIVER
11983 M:      Jacopo Mondi <[email protected]>
11984 L:      [email protected]
11985 T:      git git://linuxtv.org/media_tree.git
11986 S:      Odd fixes
11987 F:      drivers/media/i2c/ov772x.c
11988 F:      include/media/i2c/ov772x.h
11989 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
11990
11991 OMNIVISION OV7740 SENSOR DRIVER
11992 M:      Wenyou Yang <[email protected]>
11993 L:      [email protected]
11994 T:      git git://linuxtv.org/media_tree.git
11995 S:      Maintained
11996 F:      drivers/media/i2c/ov7740.c
11997 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
11998
11999 OMNIVISION OV9640 SENSOR DRIVER
12000 M:      Petr Cvek <[email protected]>
12001 L:      [email protected]
12002 S:      Maintained
12003 F:      drivers/media/i2c/ov9640.*
12004
12005 OMNIVISION OV8856 SENSOR DRIVER
12006 M:      Ben Kao <[email protected]>
12007 L:      [email protected]
12008 T:      git git://linuxtv.org/media_tree.git
12009 S:      Maintained
12010 F:      drivers/media/i2c/ov8856.c
12011
12012 OMNIVISION OV9650 SENSOR DRIVER
12013 M:      Sakari Ailus <[email protected]>
12014 R:      Akinobu Mita <[email protected]>
12015 R:      Sylwester Nawrocki <[email protected]>
12016 L:      [email protected]
12017 T:      git git://linuxtv.org/media_tree.git
12018 S:      Maintained
12019 F:      drivers/media/i2c/ov9650.c
12020 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12021
12022 ONENAND FLASH DRIVER
12023 M:      Kyungmin Park <[email protected]>
12024 L:      [email protected]
12025 S:      Maintained
12026 F:      drivers/mtd/nand/onenand/
12027 F:      include/linux/mtd/onenand*.h
12028
12029 OP-TEE DRIVER
12030 M:      Jens Wiklander <[email protected]>
12031 L:      [email protected]
12032 S:      Maintained
12033 F:      drivers/tee/optee/
12034
12035 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12036 M:      Sumit Garg <[email protected]>
12037 L:      [email protected]
12038 S:      Maintained
12039 F:      drivers/char/hw_random/optee-rng.c
12040
12041 OPA-VNIC DRIVER
12042 M:      Dennis Dalessandro <[email protected]>
12043 M:      Niranjana Vishwanathapura <[email protected]>
12044 L:      [email protected]
12045 S:      Supported
12046 F:      drivers/infiniband/ulp/opa_vnic
12047
12048 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12049 M:      Pantelis Antoniou <[email protected]>
12050 M:      Frank Rowand <[email protected]>
12051 L:      [email protected]
12052 S:      Maintained
12053 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12054 F:      Documentation/devicetree/overlay-notes.txt
12055 F:      drivers/of/overlay.c
12056 F:      drivers/of/resolver.c
12057 K:      of_overlay_notifier_
12058
12059 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12060 M:      Rob Herring <[email protected]>
12061 M:      Frank Rowand <[email protected]>
12062 L:      [email protected]
12063 W:      http://www.devicetree.org/
12064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12065 S:      Maintained
12066 F:      drivers/of/
12067 F:      include/linux/of*.h
12068 F:      scripts/dtc/
12069 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12070
12071 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12072 M:      Rob Herring <[email protected]>
12073 M:      Mark Rutland <[email protected]>
12074 L:      [email protected]
12075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12076 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12077 S:      Maintained
12078 F:      Documentation/devicetree/
12079 F:      arch/*/boot/dts/
12080 F:      include/dt-bindings/
12081
12082 OPENCORES I2C BUS DRIVER
12083 M:      Peter Korsgaard <[email protected]>
12084 M:      Andrew Lunn <[email protected]>
12085 L:      [email protected]
12086 S:      Maintained
12087 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12088 F:      Documentation/i2c/busses/i2c-ocores.rst
12089 F:      drivers/i2c/busses/i2c-ocores.c
12090 F:      include/linux/platform_data/i2c-ocores.h
12091
12092 OPENRISC ARCHITECTURE
12093 M:      Jonas Bonn <[email protected]>
12094 M:      Stefan Kristiansson <[email protected]>
12095 M:      Stafford Horne <[email protected]>
12096 T:      git git://github.com/openrisc/linux.git
12097 L:      [email protected]
12098 W:      http://openrisc.io
12099 S:      Maintained
12100 F:      Documentation/devicetree/bindings/openrisc/
12101 F:      Documentation/openrisc/
12102 F:      arch/openrisc/
12103 F:      drivers/irqchip/irq-ompic.c
12104 F:      drivers/irqchip/irq-or1k-*
12105
12106 OPENVSWITCH
12107 M:      Pravin B Shelar <[email protected]>
12108 L:      [email protected]
12109 L:      [email protected]
12110 W:      http://openvswitch.org
12111 S:      Maintained
12112 F:      net/openvswitch/
12113 F:      include/uapi/linux/openvswitch.h
12114
12115 OPERATING PERFORMANCE POINTS (OPP)
12116 M:      Viresh Kumar <[email protected]>
12117 M:      Nishanth Menon <[email protected]>
12118 M:      Stephen Boyd <[email protected]>
12119 L:      [email protected]
12120 S:      Maintained
12121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12122 F:      drivers/opp/
12123 F:      include/linux/pm_opp.h
12124 F:      Documentation/power/opp.rst
12125 F:      Documentation/devicetree/bindings/opp/
12126
12127 OPL4 DRIVER
12128 M:      Clemens Ladisch <[email protected]>
12129 L:      [email protected] (moderated for non-subscribers)
12130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12131 S:      Maintained
12132 F:      sound/drivers/opl4/
12133
12134 OPROFILE
12135 M:      Robert Richter <[email protected]>
12136 L:      [email protected]
12137 S:      Maintained
12138 F:      arch/*/include/asm/oprofile*.h
12139 F:      arch/*/oprofile/
12140 F:      drivers/oprofile/
12141 F:      include/linux/oprofile.h
12142
12143 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12144 M:      Mark Fasheh <[email protected]>
12145 M:      Joel Becker <[email protected]>
12146 M:      Joseph Qi <[email protected]>
12147 L:      [email protected] (moderated for non-subscribers)
12148 W:      http://ocfs2.wiki.kernel.org
12149 S:      Supported
12150 F:      Documentation/filesystems/ocfs2.txt
12151 F:      Documentation/filesystems/dlmfs.txt
12152 F:      fs/ocfs2/
12153
12154 ORANGEFS FILESYSTEM
12155 M:      Mike Marshall <[email protected]>
12156 R:      Martin Brandenburg <[email protected]>
12157 L:      [email protected]
12158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12159 S:      Supported
12160 F:      fs/orangefs/
12161 F:      Documentation/filesystems/orangefs.txt
12162
12163 ORINOCO DRIVER
12164 L:      [email protected]
12165 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12166 W:      http://www.nongnu.org/orinoco/
12167 S:      Orphan
12168 F:      drivers/net/wireless/intersil/orinoco/
12169
12170 OV2659 OMNIVISION SENSOR DRIVER
12171 M:      "Lad, Prabhakar" <[email protected]>
12172 L:      [email protected]
12173 W:      https://linuxtv.org
12174 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12175 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12176 S:      Maintained
12177 F:      drivers/media/i2c/ov2659.c
12178 F:      include/media/i2c/ov2659.h
12179
12180 OVERLAY FILESYSTEM
12181 M:      Miklos Szeredi <[email protected]>
12182 L:      [email protected]
12183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12184 S:      Supported
12185 F:      fs/overlayfs/
12186 F:      Documentation/filesystems/overlayfs.txt
12187
12188 P54 WIRELESS DRIVER
12189 M:      Christian Lamparter <[email protected]>
12190 L:      [email protected]
12191 W:      http://wireless.kernel.org/en/users/Drivers/p54
12192 S:      Maintained
12193 F:      drivers/net/wireless/intersil/p54/
12194
12195 PA SEMI ETHERNET DRIVER
12196 L:      [email protected]
12197 S:      Orphan
12198 F:      drivers/net/ethernet/pasemi/*
12199
12200 PA SEMI SMBUS DRIVER
12201 L:      [email protected]
12202 S:      Orphan
12203 F:      drivers/i2c/busses/i2c-pasemi.c
12204
12205 PACKING
12206 M:      Vladimir Oltean <[email protected]>
12207 L:      [email protected]
12208 S:      Supported
12209 F:      lib/packing.c
12210 F:      include/linux/packing.h
12211 F:      Documentation/core-api/packing.rst
12212
12213 PADATA PARALLEL EXECUTION MECHANISM
12214 M:      Steffen Klassert <[email protected]>
12215 L:      [email protected]
12216 S:      Maintained
12217 F:      kernel/padata.c
12218 F:      include/linux/padata.h
12219 F:      Documentation/padata.txt
12220
12221 PAGE POOL
12222 M:      Jesper Dangaard Brouer <[email protected]>
12223 M:      Ilias Apalodimas <[email protected]>
12224 L:      [email protected]
12225 S:      Supported
12226 F:      net/core/page_pool.c
12227 F:      include/net/page_pool.h
12228
12229 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12230 M:      Harald Welte <[email protected]>
12231 L:      [email protected]
12232 S:      Maintained
12233 F:      drivers/platform/x86/panasonic-laptop.c
12234
12235 PARALLEL LCD/KEYPAD PANEL DRIVER
12236 M:      Willy Tarreau <[email protected]>
12237 M:      Ksenija Stanojevic <[email protected]>
12238 S:      Odd Fixes
12239 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12240 F:      drivers/auxdisplay/panel.c
12241
12242 PARALLEL PORT SUBSYSTEM
12243 M:      Sudip Mukherjee <[email protected]>
12244 M:      Sudip Mukherjee <[email protected]>
12245 L:      [email protected] (subscribers-only)
12246 S:      Maintained
12247 F:      drivers/parport/
12248 F:      include/linux/parport*.h
12249 F:      drivers/char/ppdev.c
12250 F:      include/uapi/linux/ppdev.h
12251 F:      Documentation/driver-api/parport*.rst
12252
12253 PARAVIRT_OPS INTERFACE
12254 M:      Juergen Gross <[email protected]>
12255 M:      Thomas Hellstrom <[email protected]>
12256 M:      "VMware, Inc." <[email protected]>
12257 L:      [email protected]
12258 S:      Supported
12259 F:      Documentation/virt/paravirt_ops.rst
12260 F:      arch/*/kernel/paravirt*
12261 F:      arch/*/include/asm/paravirt*.h
12262 F:      include/linux/hypervisor.h
12263
12264 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12265 M:      Tim Waugh <[email protected]>
12266 L:      [email protected] (subscribers-only)
12267 S:      Maintained
12268 F:      Documentation/admin-guide/blockdev/paride.rst
12269 F:      drivers/block/paride/
12270
12271 PARISC ARCHITECTURE
12272 M:      "James E.J. Bottomley" <[email protected]>
12273 M:      Helge Deller <[email protected]>
12274 L:      [email protected]
12275 W:      http://www.parisc-linux.org/
12276 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12279 S:      Maintained
12280 F:      arch/parisc/
12281 F:      Documentation/parisc/
12282 F:      drivers/parisc/
12283 F:      drivers/char/agp/parisc-agp.c
12284 F:      drivers/input/serio/gscps2.c
12285 F:      drivers/parport/parport_gsc.*
12286 F:      drivers/tty/serial/8250/8250_gsc.c
12287 F:      drivers/video/fbdev/sti*
12288 F:      drivers/video/console/sti*
12289 F:      drivers/video/logo/logo_parisc*
12290
12291 PARMAN
12292 M:      Jiri Pirko <[email protected]>
12293 L:      [email protected]
12294 S:      Supported
12295 F:      lib/parman.c
12296 F:      lib/test_parman.c
12297 F:      include/linux/parman.h
12298
12299 PC ENGINES APU BOARD DRIVER
12300 M:      Enrico Weigelt, metux IT consult <[email protected]>
12301 S:      Maintained
12302 F:      drivers/platform/x86/pcengines-apuv2.c
12303
12304 PC87360 HARDWARE MONITORING DRIVER
12305 M:      Jim Cromie <[email protected]>
12306 L:      [email protected]
12307 S:      Maintained
12308 F:      Documentation/hwmon/pc87360.rst
12309 F:      drivers/hwmon/pc87360.c
12310
12311 PC8736x GPIO DRIVER
12312 M:      Jim Cromie <[email protected]>
12313 S:      Maintained
12314 F:      drivers/char/pc8736x_gpio.c
12315
12316 PC87427 HARDWARE MONITORING DRIVER
12317 M:      Jean Delvare <[email protected]>
12318 L:      [email protected]
12319 S:      Maintained
12320 F:      Documentation/hwmon/pc87427.rst
12321 F:      drivers/hwmon/pc87427.c
12322
12323 PCA9532 LED DRIVER
12324 M:      Riku Voipio <[email protected]>
12325 S:      Maintained
12326 F:      drivers/leds/leds-pca9532.c
12327 F:      include/linux/leds-pca9532.h
12328
12329 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12330 M:      Guenter Roeck <[email protected]>
12331 L:      [email protected]
12332 S:      Maintained
12333 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12334
12335 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12336 M:      Khalid Aziz <[email protected]>
12337 S:      Maintained
12338 F:      drivers/firmware/pcdp.*
12339
12340 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12341 M:      Thomas Petazzoni <[email protected]>
12342 L:      [email protected]
12343 L:      [email protected] (moderated for non-subscribers)
12344 S:      Maintained
12345 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12346 F:      drivers/pci/controller/pci-aardvark.c
12347
12348 PCI DRIVER FOR ALTERA PCIE IP
12349 M:      Ley Foon Tan <[email protected]>
12350 L:      [email protected] (moderated for non-subscribers)
12351 L:      [email protected]
12352 S:      Supported
12353 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12354 F:      drivers/pci/controller/pcie-altera.c
12355
12356 PCI DRIVER FOR APPLIEDMICRO XGENE
12357 M:      Toan Le <[email protected]>
12358 L:      [email protected]
12359 L:      [email protected]
12360 S:      Maintained
12361 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12362 F:      drivers/pci/controller/pci-xgene.c
12363
12364 PCI DRIVER FOR ARM VERSATILE PLATFORM
12365 M:      Rob Herring <[email protected]>
12366 L:      [email protected]
12367 L:      [email protected]
12368 S:      Maintained
12369 F:      Documentation/devicetree/bindings/pci/versatile.txt
12370 F:      drivers/pci/controller/pci-versatile.c
12371
12372 PCI DRIVER FOR ARMADA 8K
12373 M:      Thomas Petazzoni <[email protected]>
12374 L:      [email protected]
12375 L:      [email protected]
12376 S:      Maintained
12377 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12378 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12379
12380 PCI DRIVER FOR CADENCE PCIE IP
12381 M:      Tom Joseph <[email protected]>
12382 L:      [email protected]
12383 S:      Maintained
12384 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
12385 F:      drivers/pci/controller/pcie-cadence*
12386
12387 PCI DRIVER FOR FREESCALE LAYERSCAPE
12388 M:      Minghuan Lian <[email protected]>
12389 M:      Mingkai Hu <[email protected]>
12390 M:      Roy Zang <[email protected]>
12391 L:      [email protected]
12392 L:      [email protected]
12393 L:      [email protected]
12394 S:      Maintained
12395 F:      drivers/pci/controller/dwc/*layerscape*
12396
12397 PCI DRIVER FOR GENERIC OF HOSTS
12398 M:      Will Deacon <[email protected]>
12399 L:      [email protected]
12400 L:      [email protected] (moderated for non-subscribers)
12401 S:      Maintained
12402 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
12403 F:      drivers/pci/controller/pci-host-common.c
12404 F:      drivers/pci/controller/pci-host-generic.c
12405
12406 PCI DRIVER FOR IMX6
12407 M:      Richard Zhu <[email protected]>
12408 M:      Lucas Stach <[email protected]>
12409 L:      [email protected]
12410 L:      [email protected] (moderated for non-subscribers)
12411 S:      Maintained
12412 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12413 F:      drivers/pci/controller/dwc/*imx6*
12414
12415 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12416 M:      Keith Busch <[email protected]>
12417 M:      Jonathan Derrick <[email protected]>
12418 L:      [email protected]
12419 S:      Supported
12420 F:      drivers/pci/controller/vmd.c
12421
12422 PCI DRIVER FOR MICROSEMI SWITCHTEC
12423 M:      Kurt Schwemmer <[email protected]>
12424 M:      Logan Gunthorpe <[email protected]>
12425 L:      [email protected]
12426 S:      Maintained
12427 F:      Documentation/driver-api/switchtec.rst
12428 F:      Documentation/ABI/testing/sysfs-class-switchtec
12429 F:      drivers/pci/switch/switchtec*
12430 F:      include/uapi/linux/switchtec_ioctl.h
12431 F:      include/linux/switchtec.h
12432 F:      drivers/ntb/hw/mscc/
12433
12434 PCI DRIVER FOR MOBIVEIL PCIE IP
12435 M:      Karthikeyan Mitran <[email protected]>
12436 M:      Hou Zhiqiang <[email protected]>
12437 L:      [email protected]
12438 S:      Supported
12439 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12440 F:      drivers/pci/controller/pcie-mobiveil.c
12441
12442 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12443 M:      Thomas Petazzoni <[email protected]>
12444 M:      Jason Cooper <[email protected]>
12445 L:      [email protected]
12446 L:      [email protected] (moderated for non-subscribers)
12447 S:      Maintained
12448 F:      drivers/pci/controller/*mvebu*
12449
12450 PCI DRIVER FOR NVIDIA TEGRA
12451 M:      Thierry Reding <[email protected]>
12452 L:      [email protected]
12453 L:      [email protected]
12454 S:      Supported
12455 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12456 F:      drivers/pci/controller/pci-tegra.c
12457
12458 PCI DRIVER FOR RENESAS R-CAR
12459 M:      Simon Horman <[email protected]>
12460 L:      [email protected]
12461 L:      [email protected]
12462 S:      Maintained
12463 F:      drivers/pci/controller/*rcar*
12464
12465 PCI DRIVER FOR SAMSUNG EXYNOS
12466 M:      Jingoo Han <[email protected]>
12467 L:      [email protected]
12468 L:      [email protected] (moderated for non-subscribers)
12469 L:      [email protected] (moderated for non-subscribers)
12470 S:      Maintained
12471 F:      drivers/pci/controller/dwc/pci-exynos.c
12472
12473 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12474 M:      Jingoo Han <[email protected]>
12475 M:      Gustavo Pimentel <[email protected]>
12476 L:      [email protected]
12477 S:      Maintained
12478 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12479 F:      drivers/pci/controller/dwc/*designware*
12480
12481 PCI DRIVER FOR TI DRA7XX
12482 M:      Kishon Vijay Abraham I <[email protected]>
12483 L:      [email protected]
12484 L:      [email protected]
12485 S:      Supported
12486 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12487 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12488
12489 PCI DRIVER FOR TI KEYSTONE
12490 M:      Murali Karicheri <[email protected]>
12491 L:      [email protected]
12492 L:      [email protected] (moderated for non-subscribers)
12493 S:      Maintained
12494 F:      drivers/pci/controller/dwc/pci-keystone.c
12495
12496 PCI ENDPOINT SUBSYSTEM
12497 M:      Kishon Vijay Abraham I <[email protected]>
12498 M:      Lorenzo Pieralisi <[email protected]>
12499 L:      [email protected]
12500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12501 S:      Supported
12502 F:      drivers/pci/endpoint/
12503 F:      drivers/misc/pci_endpoint_test.c
12504 F:      tools/pci/
12505
12506 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12507 M:      Russell Currey <[email protected]>
12508 M:      Sam Bobroff <[email protected]>
12509 M:      Oliver O'Halloran <[email protected]>
12510 L:      [email protected]
12511 S:      Supported
12512 F:      Documentation/PCI/pci-error-recovery.rst
12513 F:      drivers/pci/pcie/aer.c
12514 F:      drivers/pci/pcie/dpc.c
12515 F:      drivers/pci/pcie/err.c
12516 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
12517 F:      arch/powerpc/kernel/eeh*.c
12518 F:      arch/powerpc/platforms/*/eeh*.c
12519 F:      arch/powerpc/include/*/eeh*.h
12520
12521 PCI ERROR RECOVERY
12522 M:      Linas Vepstas <[email protected]>
12523 L:      [email protected]
12524 S:      Supported
12525 F:      Documentation/PCI/pci-error-recovery.rst
12526
12527 PCI MSI DRIVER FOR ALTERA MSI IP
12528 M:      Ley Foon Tan <[email protected]>
12529 L:      [email protected] (moderated for non-subscribers)
12530 L:      [email protected]
12531 S:      Supported
12532 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
12533 F:      drivers/pci/controller/pcie-altera-msi.c
12534
12535 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
12536 M:      Toan Le <[email protected]>
12537 L:      [email protected]
12538 L:      [email protected]
12539 S:      Maintained
12540 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
12541 F:      drivers/pci/controller/pci-xgene-msi.c
12542
12543 PCI SUBSYSTEM
12544 M:      Bjorn Helgaas <[email protected]>
12545 L:      [email protected]
12546 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
12548 S:      Supported
12549 F:      Documentation/devicetree/bindings/pci/
12550 F:      Documentation/PCI/
12551 F:      drivers/acpi/pci*
12552 F:      drivers/pci/
12553 F:      include/asm-generic/pci*
12554 F:      include/linux/pci*
12555 F:      include/linux/of_pci.h
12556 F:      include/uapi/linux/pci*
12557 F:      lib/pci*
12558 F:      arch/x86/pci/
12559 F:      arch/x86/kernel/quirks.c
12560 F:      arch/x86/kernel/early-quirks.c
12561
12562 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
12563 M:      Lorenzo Pieralisi <[email protected]>
12564 L:      [email protected]
12565 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
12567 S:      Supported
12568 F:      drivers/pci/controller/
12569
12570 PCIE DRIVER FOR ANNAPURNA LABS
12571 M:      Jonathan Chocron <[email protected]>
12572 L:      [email protected]
12573 S:      Maintained
12574 F:      drivers/pci/controller/dwc/pcie-al.c
12575
12576 PCIE DRIVER FOR AMLOGIC MESON
12577 M:      Yue Wang <[email protected]>
12578 L:      [email protected]
12579 L:      [email protected]
12580 S:      Maintained
12581 F:      drivers/pci/controller/dwc/pci-meson.c
12582
12583 PCIE DRIVER FOR AXIS ARTPEC
12584 M:      Jesper Nilsson <[email protected]>
12585 L:      [email protected]
12586 L:      [email protected]
12587 S:      Maintained
12588 F:      Documentation/devicetree/bindings/pci/axis,artpec*
12589 F:      drivers/pci/controller/dwc/*artpec*
12590
12591 PCIE DRIVER FOR CAVIUM THUNDERX
12592 M:      David Daney <[email protected]>
12593 L:      [email protected]
12594 L:      [email protected] (moderated for non-subscribers)
12595 S:      Supported
12596 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
12597 F:      drivers/pci/controller/pci-thunder-*
12598
12599 PCIE DRIVER FOR HISILICON
12600 M:      Zhou Wang <[email protected]>
12601 L:      [email protected]
12602 S:      Maintained
12603 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
12604 F:      drivers/pci/controller/dwc/pcie-hisi.c
12605
12606 PCIE DRIVER FOR HISILICON KIRIN
12607 M:      Xiaowei Song <[email protected]>
12608 M:      Binghui Wang <[email protected]>
12609 L:      [email protected]
12610 S:      Maintained
12611 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
12612 F:      drivers/pci/controller/dwc/pcie-kirin.c
12613
12614 PCIE DRIVER FOR HISILICON STB
12615 M:      Shawn Guo <[email protected]>
12616 L:      [email protected]
12617 S:      Maintained
12618 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
12619 F:      drivers/pci/controller/dwc/pcie-histb.c
12620
12621 PCIE DRIVER FOR MEDIATEK
12622 M:      Ryder Lee <[email protected]>
12623 L:      [email protected]
12624 L:      [email protected]
12625 S:      Supported
12626 F:      Documentation/devicetree/bindings/pci/mediatek*
12627 F:      drivers/pci/controller/*mediatek*
12628
12629 PCIE DRIVER FOR QUALCOMM MSM
12630 M:      Stanimir Varbanov <[email protected]>
12631 L:      [email protected]
12632 L:      [email protected]
12633 S:      Maintained
12634 F:      drivers/pci/controller/dwc/*qcom*
12635
12636 PCIE DRIVER FOR ROCKCHIP
12637 M:      Shawn Lin <[email protected]>
12638 L:      [email protected]
12639 L:      [email protected]
12640 S:      Maintained
12641 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
12642 F:      drivers/pci/controller/pcie-rockchip*
12643
12644 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
12645 M:      Linus Walleij <[email protected]>
12646 L:      [email protected]
12647 S:      Maintained
12648 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
12649 F:      drivers/pci/controller/pci-v3-semi.c
12650
12651 PCIE DRIVER FOR SOCIONEXT UNIPHIER
12652 M:      Kunihiko Hayashi <[email protected]>
12653 L:      [email protected]
12654 S:      Maintained
12655 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
12656 F:      drivers/pci/controller/dwc/pcie-uniphier.c
12657
12658 PCIE DRIVER FOR ST SPEAR13XX
12659 M:      Pratyush Anand <[email protected]>
12660 L:      [email protected]
12661 S:      Maintained
12662 F:      drivers/pci/controller/dwc/*spear*
12663
12664 PCMCIA SUBSYSTEM
12665 M:      Dominik Brodowski <[email protected]>
12666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
12667 S:      Odd Fixes
12668 F:      Documentation/pcmcia/
12669 F:      tools/pcmcia/
12670 F:      drivers/pcmcia/
12671 F:      include/pcmcia/
12672
12673 PCNET32 NETWORK DRIVER
12674 M:      Don Fry <[email protected]>
12675 L:      [email protected]
12676 S:      Maintained
12677 F:      drivers/net/ethernet/amd/pcnet32.c
12678
12679 PCRYPT PARALLEL CRYPTO ENGINE
12680 M:      Steffen Klassert <[email protected]>
12681 L:      [email protected]
12682 S:      Maintained
12683 F:      crypto/pcrypt.c
12684 F:      include/crypto/pcrypt.h
12685
12686 PEAQ WMI HOTKEYS DRIVER
12687 M:      Hans de Goede <[email protected]>
12688 L:      [email protected]
12689 S:      Maintained
12690 F:      drivers/platform/x86/peaq-wmi.c
12691
12692 PENSANDO ETHERNET DRIVERS
12693 M:      Shannon Nelson <[email protected]>
12694 M:      Pensando Drivers <[email protected]>
12695 L:      [email protected]
12696 S:      Supported
12697 F:      Documentation/networking/device_drivers/pensando/ionic.rst
12698 F:      drivers/net/ethernet/pensando/
12699
12700 PER-CPU MEMORY ALLOCATOR
12701 M:      Dennis Zhou <[email protected]>
12702 M:      Tejun Heo <[email protected]>
12703 M:      Christoph Lameter <[email protected]>
12704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
12705 S:      Maintained
12706 F:      include/linux/percpu*.h
12707 F:      mm/percpu*.c
12708 F:      arch/*/include/asm/percpu.h
12709
12710 PER-TASK DELAY ACCOUNTING
12711 M:      Balbir Singh <[email protected]>
12712 S:      Maintained
12713 F:      include/linux/delayacct.h
12714 F:      kernel/delayacct.c
12715
12716 PERFORMANCE EVENTS SUBSYSTEM
12717 M:      Peter Zijlstra <[email protected]>
12718 M:      Ingo Molnar <[email protected]>
12719 M:      Arnaldo Carvalho de Melo <[email protected]>
12720 R:      Mark Rutland <[email protected]>
12721 R:      Alexander Shishkin <[email protected]>
12722 R:      Jiri Olsa <[email protected]>
12723 R:      Namhyung Kim <[email protected]>
12724 L:      [email protected]
12725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
12726 S:      Supported
12727 F:      kernel/events/*
12728 F:      include/linux/perf_event.h
12729 F:      include/uapi/linux/perf_event.h
12730 F:      arch/*/kernel/perf_event*.c
12731 F:      arch/*/kernel/*/perf_event*.c
12732 F:      arch/*/kernel/*/*/perf_event*.c
12733 F:      arch/*/include/asm/perf_event.h
12734 F:      arch/*/kernel/perf_callchain.c
12735 F:      arch/*/events/*
12736 F:      arch/*/events/*/*
12737 F:      tools/perf/
12738
12739 PERSONALITY HANDLING
12740 M:      Christoph Hellwig <[email protected]>
12741 L:      [email protected]
12742 S:      Maintained
12743 F:      include/linux/personality.h
12744 F:      include/uapi/linux/personality.h
12745
12746 PHOENIX RC FLIGHT CONTROLLER ADAPTER
12747 M:      Marcus Folkesson <[email protected]>
12748 L:      [email protected]
12749 S:      Maintained
12750 F:      Documentation/input/devices/pxrc.rst
12751 F:      drivers/input/joystick/pxrc.c
12752
12753 FLYSKY FSIA6B RC RECEIVER
12754 M:      Markus Koch <[email protected]>
12755 L:      [email protected]
12756 S:      Maintained
12757 F:      drivers/input/joystick/fsia6b.c
12758
12759 PHONET PROTOCOL
12760 M:      Remi Denis-Courmont <[email protected]>
12761 S:      Supported
12762 F:      Documentation/networking/phonet.txt
12763 F:      include/linux/phonet.h
12764 F:      include/net/phonet/
12765 F:      include/uapi/linux/phonet.h
12766 F:      net/phonet/
12767
12768 PHRAM MTD DRIVER
12769 M:      Joern Engel <[email protected]>
12770 L:      [email protected]
12771 S:      Maintained
12772 F:      drivers/mtd/devices/phram.c
12773
12774 PICOLCD HID DRIVER
12775 M:      Bruno Prémont <[email protected]>
12776 L:      [email protected]
12777 S:      Maintained
12778 F:      drivers/hid/hid-picolcd*
12779
12780 PICOXCELL SUPPORT
12781 M:      Jamie Iles <[email protected]>
12782 L:      [email protected] (moderated for non-subscribers)
12783 T:      git git://github.com/jamieiles/linux-2.6-ji.git
12784 S:      Supported
12785 F:      arch/arm/boot/dts/picoxcell*
12786 F:      arch/arm/mach-picoxcell/
12787 F:      drivers/crypto/picoxcell*
12788
12789 PIDFD API
12790 M:      Christian Brauner <[email protected]>
12791 L:      [email protected]
12792 S:      Maintained
12793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
12794 F:      samples/pidfd/
12795 F:      tools/testing/selftests/pidfd/
12796 K:      (?i)pidfd
12797 K:      (?i)clone3
12798 K:      \b(clone_args|kernel_clone_args)\b
12799
12800 PIN CONTROL SUBSYSTEM
12801 M:      Linus Walleij <[email protected]>
12802 L:      [email protected]
12803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
12804 S:      Maintained
12805 F:      Documentation/devicetree/bindings/pinctrl/
12806 F:      Documentation/driver-api/pinctl.rst
12807 F:      drivers/pinctrl/
12808 F:      include/linux/pinctrl/
12809
12810 PIN CONTROLLER - MICROCHIP AT91
12811 M:      Ludovic Desroches <[email protected]>
12812 L:      [email protected] (moderated for non-subscribers)
12813 L:      [email protected]
12814 S:      Supported
12815 F:      drivers/pinctrl/pinctrl-at91*
12816 F:      drivers/gpio/gpio-sama5d2-piobu.c
12817
12818 PIN CONTROLLER - FREESCALE
12819 M:      Dong Aisheng <[email protected]>
12820 M:      Fabio Estevam <[email protected]>
12821 M:      Shawn Guo <[email protected]>
12822 M:      Stefan Agner <[email protected]>
12823 R:      Pengutronix Kernel Team <[email protected]>
12824 L:      [email protected]
12825 S:      Maintained
12826 F:      drivers/pinctrl/freescale/
12827 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
12828
12829 PIN CONTROLLER - INTEL
12830 M:      Mika Westerberg <[email protected]>
12831 M:      Andy Shevchenko <[email protected]>
12832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
12833 S:      Maintained
12834 F:      drivers/pinctrl/intel/
12835
12836 PIN CONTROLLER - MEDIATEK
12837 M:      Sean Wang <[email protected]>
12838 L:      [email protected] (moderated for non-subscribers)
12839 S:      Maintained
12840 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
12841 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
12842 F:      drivers/pinctrl/mediatek/
12843
12844 PIN CONTROLLER - QUALCOMM
12845 M:      Bjorn Andersson <[email protected]>
12846 S:      Maintained
12847 L:      [email protected]
12848 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
12849 F:      drivers/pinctrl/qcom/
12850
12851 PIN CONTROLLER - RENESAS
12852 M:      Geert Uytterhoeven <[email protected]>
12853 L:      [email protected]
12854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
12855 S:      Maintained
12856 F:      drivers/pinctrl/pinctrl-rz*
12857 F:      drivers/pinctrl/sh-pfc/
12858
12859 PIN CONTROLLER - SAMSUNG
12860 M:      Tomasz Figa <[email protected]>
12861 M:      Krzysztof Kozlowski <[email protected]>
12862 M:      Sylwester Nawrocki <[email protected]>
12863 L:      [email protected] (moderated for non-subscribers)
12864 L:      [email protected] (moderated for non-subscribers)
12865 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
12866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
12867 S:      Maintained
12868 F:      drivers/pinctrl/samsung/
12869 F:      include/dt-bindings/pinctrl/samsung.h
12870 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
12871
12872 PIN CONTROLLER - SINGLE
12873 M:      Tony Lindgren <[email protected]>
12874 M:      Haojian Zhuang <[email protected]>
12875 L:      [email protected] (moderated for non-subscribers)
12876 L:      [email protected]
12877 S:      Maintained
12878 F:      drivers/pinctrl/pinctrl-single.c
12879
12880 PIN CONTROLLER - ST SPEAR
12881 M:      Viresh Kumar <[email protected]>
12882 L:      [email protected] (moderated for non-subscribers)
12883 W:      http://www.st.com/spear
12884 S:      Maintained
12885 F:      drivers/pinctrl/spear/
12886
12887 PISTACHIO SOC SUPPORT
12888 M:      James Hartley <[email protected]>
12889 L:      [email protected]
12890 S:      Odd Fixes
12891 F:      arch/mips/pistachio/
12892 F:      arch/mips/include/asm/mach-pistachio/
12893 F:      arch/mips/boot/dts/img/pistachio*
12894 F:      arch/mips/configs/pistachio*_defconfig
12895
12896 PKTCDVD DRIVER
12897 S:      Orphan
12898 M:      [email protected]
12899 F:      drivers/block/pktcdvd.c
12900 F:      include/linux/pktcdvd.h
12901 F:      include/uapi/linux/pktcdvd.h
12902
12903 PKUNITY SOC DRIVERS
12904 M:      Guan Xuetao <[email protected]>
12905 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
12906 S:      Maintained
12907 T:      git git://github.com/gxt/linux.git
12908 F:      drivers/input/serio/i8042-unicore32io.h
12909 F:      drivers/i2c/busses/i2c-puv3.c
12910 F:      drivers/video/fbdev/fb-puv3.c
12911 F:      drivers/rtc/rtc-puv3.c
12912
12913 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
12914 M:      Tomasz Duszynski <[email protected]>
12915 S:      Maintained
12916 F:      drivers/iio/chemical/pms7003.c
12917 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
12918
12919 PMBUS HARDWARE MONITORING DRIVERS
12920 M:      Guenter Roeck <[email protected]>
12921 L:      [email protected]
12922 W:      http://hwmon.wiki.kernel.org/
12923 W:      http://www.roeck-us.net/linux/drivers/
12924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
12925 S:      Maintained
12926 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
12927 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
12928 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
12929 F:      Documentation/hwmon/adm1275.rst
12930 F:      Documentation/hwmon/ibm-cffps.rst
12931 F:      Documentation/hwmon/ir35221.rst
12932 F:      Documentation/hwmon/lm25066.rst
12933 F:      Documentation/hwmon/ltc2978.rst
12934 F:      Documentation/hwmon/ltc3815.rst
12935 F:      Documentation/hwmon/max16064.rst
12936 F:      Documentation/hwmon/max20751.rst
12937 F:      Documentation/hwmon/max31785.rst
12938 F:      Documentation/hwmon/max34440.rst
12939 F:      Documentation/hwmon/max8688.rst
12940 F:      Documentation/hwmon/pmbus.rst
12941 F:      Documentation/hwmon/pmbus-core.rst
12942 F:      Documentation/hwmon/tps40422.rst
12943 F:      Documentation/hwmon/ucd9000.rst
12944 F:      Documentation/hwmon/ucd9200.rst
12945 F:      Documentation/hwmon/zl6100.rst
12946 F:      drivers/hwmon/pmbus/
12947 F:      include/linux/pmbus.h
12948
12949 PMC SIERRA MaxRAID DRIVER
12950 L:      [email protected]
12951 W:      http://www.pmc-sierra.com/
12952 S:      Orphan
12953 F:      drivers/scsi/pmcraid.*
12954
12955 PMC SIERRA PM8001 DRIVER
12956 M:      Jack Wang <[email protected]>
12957 L:      [email protected]
12958 S:      Supported
12959 F:      drivers/scsi/pm8001/
12960
12961 PNP SUPPORT
12962 M:      "Rafael J. Wysocki" <[email protected]>
12963 S:      Maintained
12964 F:      drivers/pnp/
12965
12966 PNI RM3100 IIO DRIVER
12967 M:      Song Qiang <[email protected]>
12968 L:      [email protected]
12969 S:      Maintained
12970 F:      drivers/iio/magnetometer/rm3100*
12971 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
12972
12973 POSIX CLOCKS and TIMERS
12974 M:      Thomas Gleixner <[email protected]>
12975 L:      [email protected]
12976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
12977 S:      Maintained
12978 F:      fs/timerfd.c
12979 F:      include/linux/timer*
12980 F:      kernel/time/*timer*
12981
12982 POWER MANAGEMENT CORE
12983 M:      "Rafael J. Wysocki" <[email protected]>
12984 L:      [email protected]
12985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
12986 B:      https://bugzilla.kernel.org
12987 S:      Supported
12988 F:      drivers/base/power/
12989 F:      include/linux/pm.h
12990 F:      include/linux/pm_*
12991 F:      include/linux/powercap.h
12992 F:      include/linux/intel_rapl.h
12993 F:      drivers/powercap/
12994 F:      kernel/configs/nopm.config
12995
12996 POWER STATE COORDINATION INTERFACE (PSCI)
12997 M:      Mark Rutland <[email protected]>
12998 M:      Lorenzo Pieralisi <[email protected]>
12999 L:      [email protected]
13000 S:      Maintained
13001 F:      drivers/firmware/psci/
13002 F:      include/linux/psci.h
13003 F:      include/uapi/linux/psci.h
13004
13005 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13006 M:      Sebastian Reichel <[email protected]>
13007 L:      [email protected]
13008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13009 S:      Maintained
13010 F:      Documentation/ABI/testing/sysfs-class-power
13011 F:      Documentation/devicetree/bindings/power/supply/
13012 F:      include/linux/power_supply.h
13013 F:      drivers/power/supply/
13014
13015 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13016 M:      Suraj Jitindar Singh <[email protected]>
13017 L:      [email protected]
13018 S:      Maintained
13019 F:      drivers/char/powernv-op-panel.c
13020
13021 PPP OVER ATM (RFC 2364)
13022 M:      Mitchell Blank Jr <[email protected]>
13023 S:      Maintained
13024 F:      net/atm/pppoatm.c
13025 F:      include/uapi/linux/atmppp.h
13026
13027 PPP OVER ETHERNET
13028 M:      Michal Ostrowski <[email protected]>
13029 S:      Maintained
13030 F:      drivers/net/ppp/pppoe.c
13031 F:      drivers/net/ppp/pppox.c
13032
13033 PPP OVER L2TP
13034 M:      James Chapman <[email protected]>
13035 S:      Maintained
13036 F:      net/l2tp/l2tp_ppp.c
13037 F:      include/linux/if_pppol2tp.h
13038 F:      include/uapi/linux/if_pppol2tp.h
13039
13040 PPP PROTOCOL DRIVERS AND COMPRESSORS
13041 M:      Paul Mackerras <[email protected]>
13042 L:      [email protected]
13043 S:      Maintained
13044 F:      drivers/net/ppp/ppp_*
13045
13046 PPS SUPPORT
13047 M:      Rodolfo Giometti <[email protected]>
13048 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13049 L:      [email protected] (subscribers-only)
13050 S:      Maintained
13051 F:      Documentation/driver-api/pps.rst
13052 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13053 F:      Documentation/ABI/testing/sysfs-pps
13054 F:      drivers/pps/
13055 F:      include/linux/pps*.h
13056 F:      include/uapi/linux/pps.h
13057
13058 PPTP DRIVER
13059 M:      Dmitry Kozlov <[email protected]>
13060 L:      [email protected]
13061 S:      Maintained
13062 F:      drivers/net/ppp/pptp.c
13063 W:      http://sourceforge.net/projects/accel-pptp
13064
13065 PRINTK
13066 M:      Petr Mladek <[email protected]>
13067 M:      Sergey Senozhatsky <[email protected]>
13068 R:      Steven Rostedt <[email protected]>
13069 S:      Maintained
13070 F:      kernel/printk/
13071 F:      include/linux/printk.h
13072
13073 PRISM54 WIRELESS DRIVER
13074 M:      Luis Chamberlain <[email protected]>
13075 L:      [email protected]
13076 W:      http://wireless.kernel.org/en/users/Drivers/p54
13077 S:      Obsolete
13078 F:      drivers/net/wireless/intersil/prism54/
13079
13080 PROC FILESYSTEM
13081 R:      Alexey Dobriyan <[email protected]>
13082 L:      [email protected]
13083 L:      [email protected]
13084 S:      Maintained
13085 F:      fs/proc/
13086 F:      include/linux/proc_fs.h
13087 F:      tools/testing/selftests/proc/
13088 F:      Documentation/filesystems/proc.txt
13089
13090 PROC SYSCTL
13091 M:      Luis Chamberlain <[email protected]>
13092 M:      Kees Cook <[email protected]>
13093 L:      [email protected]
13094 L:      [email protected]
13095 S:      Maintained
13096 F:      fs/proc/proc_sysctl.c
13097 F:      include/linux/sysctl.h
13098 F:      kernel/sysctl.c
13099 F:      tools/testing/selftests/sysctl/
13100
13101 PS3 NETWORK SUPPORT
13102 M:      Geoff Levand <[email protected]>
13103 L:      [email protected]
13104 L:      [email protected]
13105 S:      Maintained
13106 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13107
13108 PS3 PLATFORM SUPPORT
13109 M:      Geoff Levand <[email protected]>
13110 L:      [email protected]
13111 S:      Maintained
13112 F:      arch/powerpc/boot/ps3*
13113 F:      arch/powerpc/include/asm/lv1call.h
13114 F:      arch/powerpc/include/asm/ps3*.h
13115 F:      arch/powerpc/platforms/ps3/
13116 F:      drivers/*/ps3*
13117 F:      drivers/ps3/
13118 F:      drivers/rtc/rtc-ps3.c
13119 F:      drivers/usb/host/*ps3.c
13120 F:      sound/ppc/snd_ps3*
13121
13122 PS3VRAM DRIVER
13123 M:      Jim Paris <[email protected]>
13124 M:      Geoff Levand <[email protected]>
13125 L:      [email protected]
13126 S:      Maintained
13127 F:      drivers/block/ps3vram.c
13128
13129 PSAMPLE PACKET SAMPLING SUPPORT:
13130 M:      Yotam Gigi <[email protected]>
13131 S:      Maintained
13132 F:      net/psample
13133 F:      include/net/psample.h
13134 F:      include/uapi/linux/psample.h
13135
13136 PSTORE FILESYSTEM
13137 M:      Kees Cook <[email protected]>
13138 M:      Anton Vorontsov <[email protected]>
13139 M:      Colin Cross <[email protected]>
13140 M:      Tony Luck <[email protected]>
13141 S:      Maintained
13142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13143 F:      fs/pstore/
13144 F:      include/linux/pstore*
13145 F:      drivers/firmware/efi/efi-pstore.c
13146 F:      drivers/acpi/apei/erst.c
13147 F:      Documentation/admin-guide/ramoops.rst
13148 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13149 K:      \b(pstore|ramoops)
13150
13151 PTP HARDWARE CLOCK SUPPORT
13152 M:      Richard Cochran <[email protected]>
13153 L:      [email protected]
13154 S:      Maintained
13155 W:      http://linuxptp.sourceforge.net/
13156 F:      Documentation/ABI/testing/sysfs-ptp
13157 F:      Documentation/driver-api/ptp.rst
13158 F:      drivers/net/phy/dp83640*
13159 F:      drivers/ptp/*
13160 F:      include/linux/ptp_cl*
13161
13162 PTRACE SUPPORT
13163 M:      Oleg Nesterov <[email protected]>
13164 S:      Maintained
13165 F:      include/asm-generic/syscall.h
13166 F:      include/linux/ptrace.h
13167 F:      include/linux/regset.h
13168 F:      include/linux/tracehook.h
13169 F:      include/uapi/linux/ptrace.h
13170 F:      include/uapi/linux/ptrace.h
13171 F:      kernel/ptrace.c
13172 F:      arch/*/ptrace*.c
13173 F:      arch/*/*/ptrace*.c
13174 F:      arch/*/include/asm/ptrace*.h
13175
13176 PULSE8-CEC DRIVER
13177 M:      Hans Verkuil <[email protected]>
13178 L:      [email protected]
13179 T:      git git://linuxtv.org/media_tree.git
13180 S:      Maintained
13181 F:      drivers/media/usb/pulse8-cec/*
13182 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13183
13184 PVRUSB2 VIDEO4LINUX DRIVER
13185 M:      Mike Isely <[email protected]>
13186 L:      [email protected]       (subscribers-only)
13187 L:      [email protected]
13188 W:      http://www.isely.net/pvrusb2/
13189 T:      git git://linuxtv.org/media_tree.git
13190 S:      Maintained
13191 F:      Documentation/media/v4l-drivers/pvrusb2*
13192 F:      drivers/media/usb/pvrusb2/
13193
13194 PWC WEBCAM DRIVER
13195 M:      Hans Verkuil <[email protected]>
13196 L:      [email protected]
13197 T:      git git://linuxtv.org/media_tree.git
13198 S:      Odd Fixes
13199 F:      drivers/media/usb/pwc/*
13200 F:      include/trace/events/pwc.h
13201
13202 PWM FAN DRIVER
13203 M:      Kamil Debski <[email protected]>
13204 M:      Bartlomiej Zolnierkiewicz <[email protected]>
13205 L:      [email protected]
13206 S:      Supported
13207 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13208 F:      Documentation/hwmon/pwm-fan.rst
13209 F:      drivers/hwmon/pwm-fan.c
13210
13211 PWM IR Transmitter
13212 M:      Sean Young <[email protected]>
13213 L:      [email protected]
13214 S:      Maintained
13215 F:      drivers/media/rc/pwm-ir-tx.c
13216
13217 PWM SUBSYSTEM
13218 M:      Thierry Reding <[email protected]>
13219 L:      [email protected]
13220 S:      Maintained
13221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13222 F:      Documentation/driver-api/pwm.rst
13223 F:      Documentation/devicetree/bindings/pwm/
13224 F:      include/linux/pwm.h
13225 F:      drivers/pwm/
13226 F:      drivers/video/backlight/pwm_bl.c
13227 F:      include/linux/pwm_backlight.h
13228 F:      drivers/gpio/gpio-mvebu.c
13229 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13230
13231 PXA GPIO DRIVER
13232 M:      Robert Jarzmik <[email protected]>
13233 L:      [email protected]
13234 S:      Maintained
13235 F:      drivers/gpio/gpio-pxa.c
13236
13237 PXA MMCI DRIVER
13238 S:      Orphan
13239
13240 PXA RTC DRIVER
13241 M:      Robert Jarzmik <[email protected]>
13242 L:      [email protected]
13243 S:      Maintained
13244
13245 PXA2xx/PXA3xx SUPPORT
13246 M:      Daniel Mack <[email protected]>
13247 M:      Haojian Zhuang <[email protected]>
13248 M:      Robert Jarzmik <[email protected]>
13249 L:      [email protected] (moderated for non-subscribers)
13250 T:      git git://github.com/hzhuang1/linux.git
13251 T:      git git://github.com/rjarzmik/linux.git
13252 S:      Maintained
13253 F:      arch/arm/boot/dts/pxa*
13254 F:      arch/arm/mach-pxa/
13255 F:      drivers/dma/pxa*
13256 F:      drivers/pcmcia/pxa2xx*
13257 F:      drivers/pinctrl/pxa/
13258 F:      drivers/spi/spi-pxa2xx*
13259 F:      drivers/usb/gadget/udc/pxa2*
13260 F:      include/sound/pxa2xx-lib.h
13261 F:      sound/arm/pxa*
13262 F:      sound/soc/pxa/
13263
13264 QAT DRIVER
13265 M:      Giovanni Cabiddu <[email protected]>
13266 L:      [email protected]
13267 S:      Supported
13268 F:      drivers/crypto/qat/
13269
13270 QCOM AUDIO (ASoC) DRIVERS
13271 M:      Patrick Lai <[email protected]>
13272 M:      Banajit Goswami <[email protected]>
13273 L:      [email protected] (moderated for non-subscribers)
13274 S:      Supported
13275 F:      sound/soc/qcom/
13276
13277 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13278 M:      Gabriel Somlo <[email protected]>
13279 M:      "Michael S. Tsirkin" <[email protected]>
13280 L:      [email protected]
13281 S:      Maintained
13282 F:      drivers/firmware/qemu_fw_cfg.c
13283 F:      include/uapi/linux/qemu_fw_cfg.h
13284
13285 QIB DRIVER
13286 M:      Dennis Dalessandro <[email protected]>
13287 M:      Mike Marciniszyn <[email protected]>
13288 L:      [email protected]
13289 S:      Supported
13290 F:      drivers/infiniband/hw/qib/
13291
13292 QLOGIC QL41xxx FCOE DRIVER
13293 M:      [email protected]
13294 L:      [email protected]
13295 S:      Supported
13296 F:      drivers/scsi/qedf/
13297
13298 QLOGIC QL41xxx ISCSI DRIVER
13299 M:      [email protected]
13300 L:      [email protected]
13301 S:      Supported
13302 F:      drivers/scsi/qedi/
13303
13304 QLOGIC QL4xxx ETHERNET DRIVER
13305 M:      Ariel Elior <[email protected]>
13306 M:      [email protected]
13307 L:      [email protected]
13308 S:      Supported
13309 F:      drivers/net/ethernet/qlogic/qed/
13310 F:      include/linux/qed/
13311 F:      drivers/net/ethernet/qlogic/qede/
13312
13313 QLOGIC QL4xxx RDMA DRIVER
13314 M:      Michal Kalderon <[email protected]>
13315 M:      Ariel Elior <[email protected]>
13316 L:      [email protected]
13317 S:      Supported
13318 F:      drivers/infiniband/hw/qedr/
13319 F:      include/uapi/rdma/qedr-abi.h
13320
13321 QLOGIC QLA1280 SCSI DRIVER
13322 M:      Michael Reed <[email protected]>
13323 L:      [email protected]
13324 S:      Maintained
13325 F:      drivers/scsi/qla1280.[ch]
13326
13327 QLOGIC QLA2XXX FC-SCSI DRIVER
13328 M:      [email protected]
13329 L:      [email protected]
13330 S:      Supported
13331 F:      Documentation/scsi/LICENSE.qla2xxx
13332 F:      drivers/scsi/qla2xxx/
13333
13334 QLOGIC QLA3XXX NETWORK DRIVER
13335 M:      [email protected]
13336 L:      [email protected]
13337 S:      Supported
13338 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13339 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13340
13341 QLOGIC QLA4XXX iSCSI DRIVER
13342 M:      [email protected]
13343 L:      [email protected]
13344 S:      Supported
13345 F:      Documentation/scsi/LICENSE.qla4xxx
13346 F:      drivers/scsi/qla4xxx/
13347
13348 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13349 M:      Shahed Shaikh <[email protected]>
13350 M:      Manish Chopra <[email protected]>
13351 M:      [email protected]
13352 L:      [email protected]
13353 S:      Supported
13354 F:      drivers/net/ethernet/qlogic/qlcnic/
13355
13356 QLOGIC QLGE 10Gb ETHERNET DRIVER
13357 M:      Manish Chopra <[email protected]>
13358 M:      [email protected]
13359 L:      [email protected]
13360 S:      Supported
13361 F:      drivers/staging/qlge/
13362
13363 QM1D1B0004 MEDIA DRIVER
13364 M:      Akihiro Tsukada <[email protected]>
13365 L:      [email protected]
13366 S:      Odd Fixes
13367 F:      drivers/media/tuners/qm1d1b0004*
13368
13369 QM1D1C0042 MEDIA DRIVER
13370 M:      Akihiro Tsukada <[email protected]>
13371 L:      [email protected]
13372 S:      Odd Fixes
13373 F:      drivers/media/tuners/qm1d1c0042*
13374
13375 QNX4 FILESYSTEM
13376 M:      Anders Larsen <[email protected]>
13377 W:      http://www.alarsen.net/linux/qnx4fs/
13378 S:      Maintained
13379 F:      fs/qnx4/
13380 F:      include/uapi/linux/qnx4_fs.h
13381 F:      include/uapi/linux/qnxtypes.h
13382
13383 QORIQ DPAA2 FSL-MC BUS DRIVER
13384 M:      Stuart Yoder <[email protected]>
13385 M:      Laurentiu Tudor <[email protected]>
13386 L:      [email protected]
13387 S:      Maintained
13388 F:      drivers/bus/fsl-mc/
13389 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13390 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13391
13392 QT1010 MEDIA DRIVER
13393 M:      Antti Palosaari <[email protected]>
13394 L:      [email protected]
13395 W:      https://linuxtv.org
13396 W:      http://palosaari.fi/linux/
13397 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13398 T:      git git://linuxtv.org/anttip/media_tree.git
13399 S:      Maintained
13400 F:      drivers/media/tuners/qt1010*
13401
13402 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13403 M:      Kalle Valo <[email protected]>
13404 L:      [email protected]
13405 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13407 S:      Supported
13408 F:      drivers/net/wireless/ath/ath10k/
13409
13410 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13411 M:      QCA ath9k Development <[email protected]>
13412 L:      [email protected]
13413 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13414 S:      Supported
13415 F:      drivers/net/wireless/ath/ath9k/
13416
13417 QUALCOMM CAMERA SUBSYSTEM DRIVER
13418 M:      Todor Tomov <[email protected]>
13419 L:      [email protected]
13420 S:      Maintained
13421 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13422 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13423 F:      drivers/media/platform/qcom/camss/
13424
13425 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13426 M:      Ilia Lin <[email protected]>
13427 L:      [email protected]
13428 S:      Maintained
13429 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13430 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13431
13432 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13433 M:      Timur Tabi <[email protected]>
13434 L:      [email protected]
13435 S:      Maintained
13436 F:      drivers/net/ethernet/qualcomm/emac/
13437
13438 QUALCOMM ETHQOS ETHERNET DRIVER
13439 M:      Vinod Koul <[email protected]>
13440 M:      Niklas Cassel <[email protected]>
13441 L:      [email protected]
13442 S:      Maintained
13443 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13444 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13445
13446 QUALCOMM GENERIC INTERFACE I2C DRIVER
13447 M:      Alok Chauhan <[email protected]>
13448 L:      [email protected]
13449 L:      [email protected]
13450 S:      Supported
13451 F:      drivers/i2c/busses/i2c-qcom-geni.c
13452
13453 QUALCOMM HEXAGON ARCHITECTURE
13454 M:      Brian Cain <[email protected]>
13455 L:      [email protected]
13456 S:      Supported
13457 F:      arch/hexagon/
13458
13459 QUALCOMM HIDMA DRIVER
13460 M:      Sinan Kaya <[email protected]>
13461 L:      [email protected]
13462 L:      [email protected]
13463 L:      [email protected]
13464 S:      Supported
13465 F:      drivers/dma/qcom/hidma*
13466
13467 QUALCOMM IOMMU
13468 M:      Rob Clark <[email protected]>
13469 L:      [email protected]
13470 L:      [email protected]
13471 S:      Maintained
13472 F:      drivers/iommu/qcom_iommu.c
13473
13474 QUALCOMM TSENS THERMAL DRIVER
13475 M:      Amit Kucheria <[email protected]>
13476 L:      [email protected]
13477 L:      [email protected]
13478 S:      Maintained
13479 F:      drivers/thermal/qcom/
13480
13481 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
13482 M:      Stanimir Varbanov <[email protected]>
13483 L:      [email protected]
13484 L:      [email protected]
13485 T:      git git://linuxtv.org/media_tree.git
13486 S:      Maintained
13487 F:      drivers/media/platform/qcom/venus/
13488
13489 QUALCOMM WCN36XX WIRELESS DRIVER
13490 M:      Kalle Valo <[email protected]>
13491 L:      [email protected]
13492 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
13493 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
13494 S:      Supported
13495 F:      drivers/net/wireless/ath/wcn36xx/
13496
13497 QUANTENNA QTNFMAC WIRELESS DRIVER
13498 M:      Igor Mitsyanko <[email protected]>
13499 M:      Avinash Patil <[email protected]>
13500 M:      Sergey Matyukevich <[email protected]>
13501 L:      [email protected]
13502 S:      Maintained
13503 F:      drivers/net/wireless/quantenna
13504
13505 RADEON and AMDGPU DRM DRIVERS
13506 M:      Alex Deucher <[email protected]>
13507 M:      Christian König <[email protected]>
13508 M:      David (ChunMing) Zhou <[email protected]>
13509 L:      [email protected]
13510 T:      git git://people.freedesktop.org/~agd5f/linux
13511 S:      Supported
13512 F:      drivers/gpu/drm/radeon/
13513 F:      include/uapi/drm/radeon_drm.h
13514 F:      drivers/gpu/drm/amd/
13515 F:      include/uapi/drm/amdgpu_drm.h
13516
13517 RADEON FRAMEBUFFER DISPLAY DRIVER
13518 M:      Benjamin Herrenschmidt <[email protected]>
13519 L:      [email protected]
13520 S:      Maintained
13521 F:      drivers/video/fbdev/aty/radeon*
13522 F:      include/uapi/linux/radeonfb.h
13523
13524 RADIOSHARK RADIO DRIVER
13525 M:      Hans Verkuil <[email protected]>
13526 L:      [email protected]
13527 T:      git git://linuxtv.org/media_tree.git
13528 S:      Maintained
13529 F:      drivers/media/radio/radio-shark.c
13530
13531 RADIOSHARK2 RADIO DRIVER
13532 M:      Hans Verkuil <[email protected]>
13533 L:      [email protected]
13534 T:      git git://linuxtv.org/media_tree.git
13535 S:      Maintained
13536 F:      drivers/media/radio/radio-shark2.c
13537 F:      drivers/media/radio/radio-tea5777.c
13538
13539 RADOS BLOCK DEVICE (RBD)
13540 M:      Ilya Dryomov <[email protected]>
13541 M:      Sage Weil <[email protected]>
13542 M:      Alex Elder <[email protected]>
13543 L:      [email protected]
13544 W:      http://ceph.com/
13545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
13546 T:      git git://github.com/ceph/ceph-client.git
13547 S:      Supported
13548 F:      Documentation/ABI/testing/sysfs-bus-rbd
13549 F:      drivers/block/rbd.c
13550 F:      drivers/block/rbd_types.h
13551
13552 RAGE128 FRAMEBUFFER DISPLAY DRIVER
13553 M:      Paul Mackerras <[email protected]>
13554 L:      [email protected]
13555 S:      Maintained
13556 F:      drivers/video/fbdev/aty/aty128fb.c
13557
13558 RAINSHADOW-CEC DRIVER
13559 M:      Hans Verkuil <[email protected]>
13560 L:      [email protected]
13561 T:      git git://linuxtv.org/media_tree.git
13562 S:      Maintained
13563 F:      drivers/media/usb/rainshadow-cec/*
13564
13565 RALINK MIPS ARCHITECTURE
13566 M:      John Crispin <[email protected]>
13567 L:      [email protected]
13568 S:      Maintained
13569 F:      arch/mips/ralink
13570
13571 RALINK RT2X00 WIRELESS LAN DRIVER
13572 P:      rt2x00 project
13573 M:      Stanislaw Gruszka <[email protected]>
13574 M:      Helmut Schaa <[email protected]>
13575 L:      [email protected]
13576 S:      Maintained
13577 F:      drivers/net/wireless/ralink/rt2x00/
13578
13579 RAMDISK RAM BLOCK DEVICE DRIVER
13580 M:      Jens Axboe <[email protected]>
13581 S:      Maintained
13582 F:      Documentation/admin-guide/blockdev/ramdisk.rst
13583 F:      drivers/block/brd.c
13584
13585 RANCHU VIRTUAL BOARD FOR MIPS
13586 M:      Miodrag Dinic <[email protected]>
13587 L:      [email protected]
13588 S:      Supported
13589 F:      arch/mips/generic/board-ranchu.c
13590 F:      arch/mips/configs/generic/board-ranchu.config
13591
13592 RANDOM NUMBER DRIVER
13593 M:      "Theodore Ts'o" <[email protected]>
13594 S:      Maintained
13595 F:      drivers/char/random.c
13596
13597 RAPIDIO SUBSYSTEM
13598 M:      Matt Porter <[email protected]>
13599 M:      Alexandre Bounine <[email protected]>
13600 S:      Maintained
13601 F:      drivers/rapidio/
13602
13603 RAS INFRASTRUCTURE
13604 M:      Tony Luck <[email protected]>
13605 M:      Borislav Petkov <[email protected]>
13606 L:      [email protected]
13607 S:      Maintained
13608 F:      drivers/ras/
13609 F:      include/linux/ras.h
13610 F:      include/ras/ras_event.h
13611 F:      Documentation/admin-guide/ras.rst
13612
13613 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
13614 L:      [email protected]
13615 S:      Orphan
13616 F:      drivers/net/wireless/ray*
13617
13618 RCUTORTURE TEST FRAMEWORK
13619 M:      "Paul E. McKenney" <[email protected]>
13620 M:      Josh Triplett <[email protected]>
13621 R:      Steven Rostedt <[email protected]>
13622 R:      Mathieu Desnoyers <[email protected]>
13623 R:      Lai Jiangshan <[email protected]>
13624 L:      [email protected]
13625 S:      Supported
13626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13627 F:      tools/testing/selftests/rcutorture
13628
13629 RDC R-321X SoC
13630 M:      Florian Fainelli <[email protected]>
13631 S:      Maintained
13632
13633 RDC R6040 FAST ETHERNET DRIVER
13634 M:      Florian Fainelli <[email protected]>
13635 L:      [email protected]
13636 S:      Maintained
13637 F:      drivers/net/ethernet/rdc/r6040.c
13638
13639 RDMAVT - RDMA verbs software
13640 M:      Dennis Dalessandro <[email protected]>
13641 M:      Mike Marciniszyn <[email protected]>
13642 L:      [email protected]
13643 S:      Supported
13644 F:      drivers/infiniband/sw/rdmavt
13645
13646 RDS - RELIABLE DATAGRAM SOCKETS
13647 M:      Santosh Shilimkar <[email protected]>
13648 L:      [email protected]
13649 L:      [email protected]
13650 L:      [email protected] (moderated for non-subscribers)
13651 W:      https://oss.oracle.com/projects/rds/
13652 S:      Supported
13653 F:      net/rds/
13654 F:      Documentation/networking/rds.txt
13655
13656 RDT - RESOURCE ALLOCATION
13657 M:      Fenghua Yu <[email protected]>
13658 M:      Reinette Chatre <[email protected]>
13659 L:      [email protected]
13660 S:      Supported
13661 F:      arch/x86/kernel/cpu/resctrl/
13662 F:      arch/x86/include/asm/resctrl_sched.h
13663 F:      Documentation/x86/resctrl*
13664
13665 READ-COPY UPDATE (RCU)
13666 M:      "Paul E. McKenney" <[email protected]>
13667 M:      Josh Triplett <[email protected]>
13668 R:      Steven Rostedt <[email protected]>
13669 R:      Mathieu Desnoyers <[email protected]>
13670 R:      Lai Jiangshan <[email protected]>
13671 R:      Joel Fernandes <[email protected]>
13672 L:      [email protected]
13673 W:      http://www.rdrop.com/users/paulmck/RCU/
13674 S:      Supported
13675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13676 F:      Documentation/RCU/
13677 X:      Documentation/RCU/torture.txt
13678 F:      include/linux/rcu*
13679 X:      include/linux/srcu*.h
13680 F:      kernel/rcu/
13681 X:      kernel/rcu/srcu*.c
13682
13683 REAL TIME CLOCK (RTC) SUBSYSTEM
13684 M:      Alessandro Zummo <[email protected]>
13685 M:      Alexandre Belloni <[email protected]>
13686 L:      [email protected]
13687 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
13688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
13689 S:      Maintained
13690 F:      Documentation/devicetree/bindings/rtc/
13691 F:      Documentation/admin-guide/rtc.rst
13692 F:      drivers/rtc/
13693 F:      include/linux/rtc.h
13694 F:      include/uapi/linux/rtc.h
13695 F:      include/linux/rtc/
13696 F:      include/linux/platform_data/rtc-*
13697 F:      tools/testing/selftests/rtc/
13698
13699 REALTEK AUDIO CODECS
13700 M:      Bard Liao <[email protected]>
13701 M:      Oder Chiou <[email protected]>
13702 S:      Maintained
13703 F:      sound/soc/codecs/rt*
13704 F:      include/sound/rt*.h
13705
13706 REALTEK RTL83xx SMI DSA ROUTER CHIPS
13707 M:      Linus Walleij <[email protected]>
13708 S:      Maintained
13709 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
13710 F:      drivers/net/dsa/realtek-smi*
13711 F:      drivers/net/dsa/rtl83*
13712
13713 REDPINE WIRELESS DRIVER
13714 M:      Amitkumar Karwar <[email protected]>
13715 M:      Siva Rebbagondla <[email protected]>
13716 L:      [email protected]
13717 S:      Maintained
13718 F:      drivers/net/wireless/rsi/
13719
13720 REGISTER MAP ABSTRACTION
13721 M:      Mark Brown <[email protected]>
13722 L:      [email protected]
13723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
13724 S:      Supported
13725 F:      Documentation/devicetree/bindings/regmap/
13726 F:      drivers/base/regmap/
13727 F:      include/linux/regmap.h
13728
13729 REISERFS FILE SYSTEM
13730 L:      [email protected]
13731 S:      Supported
13732 F:      fs/reiserfs/
13733
13734 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
13735 M:      Ohad Ben-Cohen <[email protected]>
13736 M:      Bjorn Andersson <[email protected]>
13737 L:      [email protected]
13738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
13739 S:      Maintained
13740 F:      Documentation/devicetree/bindings/remoteproc/
13741 F:      Documentation/ABI/testing/sysfs-class-remoteproc
13742 F:      Documentation/remoteproc.txt
13743 F:      drivers/remoteproc/
13744 F:      include/linux/remoteproc.h
13745 F:      include/linux/remoteproc/
13746
13747 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
13748 M:      Ohad Ben-Cohen <[email protected]>
13749 M:      Bjorn Andersson <[email protected]>
13750 L:      [email protected]
13751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
13752 S:      Maintained
13753 F:      drivers/rpmsg/
13754 F:      Documentation/rpmsg.txt
13755 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
13756 F:      include/linux/rpmsg.h
13757 F:      include/linux/rpmsg/
13758 F:      include/uapi/linux/rpmsg.h
13759 F:      samples/rpmsg/
13760
13761 RENESAS CLOCK DRIVERS
13762 M:      Geert Uytterhoeven <[email protected]>
13763 L:      [email protected]
13764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
13765 S:      Supported
13766 F:      drivers/clk/renesas/
13767
13768 RENESAS EMEV2 I2C DRIVER
13769 M:      Wolfram Sang <[email protected]>
13770 S:      Supported
13771 F:      Documentation/devicetree/bindings/i2c/i2c-emev2.txt
13772 F:      drivers/i2c/busses/i2c-emev2.c
13773
13774 RENESAS ETHERNET DRIVERS
13775 R:      Sergei Shtylyov <[email protected]>
13776 L:      [email protected]
13777 L:      [email protected]
13778 F:      Documentation/devicetree/bindings/net/renesas,*.txt
13779 F:      Documentation/devicetree/bindings/net/sh_eth.txt
13780 F:      drivers/net/ethernet/renesas/
13781 F:      include/linux/sh_eth.h
13782
13783 RENESAS R-CAR GYROADC DRIVER
13784 M:      Marek Vasut <[email protected]>
13785 L:      [email protected]
13786 S:      Supported
13787 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
13788 F:      drivers/iio/adc/rcar-gyroadc.c
13789
13790 RENESAS R-CAR I2C DRIVERS
13791 M:      Wolfram Sang <[email protected]>
13792 S:      Supported
13793 F:      Documentation/devicetree/bindings/i2c/i2c-rcar.txt
13794 F:      Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt
13795 F:      drivers/i2c/busses/i2c-rcar.c
13796 F:      drivers/i2c/busses/i2c-sh_mobile.c
13797
13798 RENESAS RIIC DRIVER
13799 M:      Chris Brandt <[email protected]>
13800 S:      Supported
13801 F:      Documentation/devicetree/bindings/i2c/i2c-riic.txt
13802 F:      drivers/i2c/busses/i2c-riic.c
13803
13804 RENESAS USB PHY DRIVER
13805 M:      Yoshihiro Shimoda <[email protected]>
13806 L:      [email protected]
13807 S:      Maintained
13808 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
13809
13810 RESET CONTROLLER FRAMEWORK
13811 M:      Philipp Zabel <[email protected]>
13812 T:      git git://git.pengutronix.de/git/pza/linux
13813 S:      Maintained
13814 F:      drivers/reset/
13815 F:      Documentation/devicetree/bindings/reset/
13816 F:      include/dt-bindings/reset/
13817 F:      include/linux/reset.h
13818 F:      include/linux/reset/
13819 F:      include/linux/reset-controller.h
13820
13821 RESTARTABLE SEQUENCES SUPPORT
13822 M:      Mathieu Desnoyers <[email protected]>
13823 M:      Peter Zijlstra <[email protected]>
13824 M:      "Paul E. McKenney" <[email protected]>
13825 M:      Boqun Feng <[email protected]>
13826 L:      [email protected]
13827 S:      Supported
13828 F:      kernel/rseq.c
13829 F:      include/uapi/linux/rseq.h
13830 F:      include/trace/events/rseq.h
13831 F:      tools/testing/selftests/rseq/
13832
13833 RFKILL
13834 M:      Johannes Berg <[email protected]>
13835 L:      [email protected]
13836 W:      http://wireless.kernel.org/
13837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
13838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
13839 S:      Maintained
13840 F:      Documentation/driver-api/rfkill.rst
13841 F:      Documentation/ABI/stable/sysfs-class-rfkill
13842 F:      net/rfkill/
13843 F:      include/linux/rfkill.h
13844 F:      include/uapi/linux/rfkill.h
13845
13846 RHASHTABLE
13847 M:      Thomas Graf <[email protected]>
13848 M:      Herbert Xu <[email protected]>
13849 L:      [email protected]
13850 S:      Maintained
13851 F:      lib/rhashtable.c
13852 F:      lib/test_rhashtable.c
13853 F:      include/linux/rhashtable.h
13854 F:      include/linux/rhashtable-types.h
13855
13856 RICOH R5C592 MEMORYSTICK DRIVER
13857 M:      Maxim Levitsky <[email protected]>
13858 S:      Maintained
13859 F:      drivers/memstick/host/r592.*
13860
13861 RICOH SMARTMEDIA/XD DRIVER
13862 M:      Maxim Levitsky <[email protected]>
13863 S:      Maintained
13864 F:      drivers/mtd/nand/raw/r852.c
13865 F:      drivers/mtd/nand/raw/r852.h
13866
13867 RISC-V ARCHITECTURE
13868 M:      Paul Walmsley <[email protected]>
13869 M:      Palmer Dabbelt <[email protected]>
13870 M:      Albert Ou <[email protected]>
13871 L:      [email protected]
13872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
13873 S:      Supported
13874 F:      arch/riscv/
13875 K:      riscv
13876 N:      riscv
13877
13878 ROCCAT DRIVERS
13879 M:      Stefan Achatz <[email protected]>
13880 W:      http://sourceforge.net/projects/roccat/
13881 S:      Maintained
13882 F:      drivers/hid/hid-roccat*
13883 F:      include/linux/hid-roccat*
13884 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
13885
13886 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
13887 M:      Jacob Chen <[email protected]>
13888 M:      Ezequiel Garcia <[email protected]>
13889 L:      [email protected]
13890 S:      Maintained
13891 F:      drivers/media/platform/rockchip/rga/
13892 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
13893
13894 HANTRO VPU CODEC DRIVER
13895 M:      Ezequiel Garcia <[email protected]>
13896 L:      [email protected]
13897 S:      Maintained
13898 F:      drivers/staging/media/hantro/
13899 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
13900
13901 ROCKER DRIVER
13902 M:      Jiri Pirko <[email protected]>
13903 L:      [email protected]
13904 S:      Supported
13905 F:      drivers/net/ethernet/rocker/
13906
13907 ROCKETPORT DRIVER
13908 P:      Comtrol Corp.
13909 W:      http://www.comtrol.com
13910 S:      Maintained
13911 F:      Documentation/driver-api/serial/rocket.rst
13912 F:      drivers/tty/rocket*
13913
13914 ROCKETPORT EXPRESS/INFINITY DRIVER
13915 M:      Kevin Cernekee <[email protected]>
13916 L:      [email protected]
13917 S:      Odd Fixes
13918 F:      drivers/tty/serial/rp2.*
13919
13920 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
13921 M:      Marek Vasut <[email protected]>
13922 L:      [email protected]
13923 L:      [email protected]
13924 S:      Supported
13925 F:      drivers/mfd/bd9571mwv.c
13926 F:      drivers/regulator/bd9571mwv-regulator.c
13927 F:      drivers/gpio/gpio-bd9571mwv.c
13928 F:      include/linux/mfd/bd9571mwv.h
13929 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
13930
13931 ROSE NETWORK LAYER
13932 M:      Ralf Baechle <[email protected]>
13933 L:      [email protected]
13934 W:      http://www.linux-ax25.org/
13935 S:      Maintained
13936 F:      include/net/rose.h
13937 F:      include/uapi/linux/rose.h
13938 F:      net/rose/
13939
13940 RTL2830 MEDIA DRIVER
13941 M:      Antti Palosaari <[email protected]>
13942 L:      [email protected]
13943 W:      https://linuxtv.org
13944 W:      http://palosaari.fi/linux/
13945 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13946 T:      git git://linuxtv.org/anttip/media_tree.git
13947 S:      Maintained
13948 F:      drivers/media/dvb-frontends/rtl2830*
13949
13950 RTL2832 MEDIA DRIVER
13951 M:      Antti Palosaari <[email protected]>
13952 L:      [email protected]
13953 W:      https://linuxtv.org
13954 W:      http://palosaari.fi/linux/
13955 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13956 T:      git git://linuxtv.org/anttip/media_tree.git
13957 S:      Maintained
13958 F:      drivers/media/dvb-frontends/rtl2832*
13959
13960 RTL2832_SDR MEDIA DRIVER
13961 M:      Antti Palosaari <[email protected]>
13962 L:      [email protected]
13963 W:      https://linuxtv.org
13964 W:      http://palosaari.fi/linux/
13965 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13966 T:      git git://linuxtv.org/anttip/media_tree.git
13967 S:      Maintained
13968 F:      drivers/media/dvb-frontends/rtl2832_sdr*
13969
13970 RTL8180 WIRELESS DRIVER
13971 L:      [email protected]
13972 W:      http://wireless.kernel.org/
13973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13974 S:      Orphan
13975 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
13976
13977 RTL8187 WIRELESS DRIVER
13978 M:      Herton Ronaldo Krzesinski <[email protected]>
13979 M:      Hin-Tak Leung <[email protected]>
13980 M:      Larry Finger <[email protected]>
13981 L:      [email protected]
13982 W:      http://wireless.kernel.org/
13983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13984 S:      Maintained
13985 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
13986
13987 REALTEK WIRELESS DRIVER (rtlwifi family)
13988 M:      Ping-Ke Shih <[email protected]>
13989 L:      [email protected]
13990 W:      http://wireless.kernel.org/
13991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13992 S:      Maintained
13993 F:      drivers/net/wireless/realtek/rtlwifi/
13994
13995 REALTEK WIRELESS DRIVER (rtw88)
13996 M:      Yan-Hsuan Chuang <[email protected]>
13997 L:      [email protected]
13998 S:      Maintained
13999 F:      drivers/net/wireless/realtek/rtw88/
14000
14001 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14002 M:      Jes Sorensen <[email protected]>
14003 L:      [email protected]
14004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14005 S:      Maintained
14006 F:      drivers/net/wireless/realtek/rtl8xxxu/
14007
14008 RXRPC SOCKETS (AF_RXRPC)
14009 M:      David Howells <[email protected]>
14010 L:      [email protected]
14011 S:      Supported
14012 F:      net/rxrpc/
14013 F:      include/keys/rxrpc-type.h
14014 F:      include/net/af_rxrpc.h
14015 F:      include/trace/events/rxrpc.h
14016 F:      include/uapi/linux/rxrpc.h
14017 F:      Documentation/networking/rxrpc.txt
14018 W:      https://www.infradead.org/~dhowells/kafs/
14019
14020 S3 SAVAGE FRAMEBUFFER DRIVER
14021 M:      Antonino Daplas <[email protected]>
14022 L:      [email protected]
14023 S:      Maintained
14024 F:      drivers/video/fbdev/savage/
14025
14026 S390
14027 M:      Heiko Carstens <[email protected]>
14028 M:      Vasily Gorbik <[email protected]>
14029 M:      Christian Borntraeger <[email protected]>
14030 L:      [email protected]
14031 W:      http://www.ibm.com/developerworks/linux/linux390/
14032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14033 S:      Supported
14034 F:      arch/s390/
14035 F:      drivers/s390/
14036 F:      Documentation/s390/
14037 F:      Documentation/driver-api/s390-drivers.rst
14038
14039 S390 COMMON I/O LAYER
14040 M:      Sebastian Ott <[email protected]>
14041 M:      Peter Oberparleiter <[email protected]>
14042 L:      [email protected]
14043 W:      http://www.ibm.com/developerworks/linux/linux390/
14044 S:      Supported
14045 F:      drivers/s390/cio/
14046
14047 S390 DASD DRIVER
14048 M:      Stefan Haberland <[email protected]>
14049 M:      Jan Hoeppner <[email protected]>
14050 L:      [email protected]
14051 W:      http://www.ibm.com/developerworks/linux/linux390/
14052 S:      Supported
14053 F:      drivers/s390/block/dasd*
14054 F:      block/partitions/ibm.c
14055
14056 S390 IOMMU (PCI)
14057 M:      Gerald Schaefer <[email protected]>
14058 L:      [email protected]
14059 W:      http://www.ibm.com/developerworks/linux/linux390/
14060 S:      Supported
14061 F:      drivers/iommu/s390-iommu.c
14062
14063 S390 IUCV NETWORK LAYER
14064 M:      Julian Wiedmann <[email protected]>
14065 M:      Ursula Braun <[email protected]>
14066 L:      [email protected]
14067 W:      http://www.ibm.com/developerworks/linux/linux390/
14068 S:      Supported
14069 F:      drivers/s390/net/*iucv*
14070 F:      include/net/iucv/
14071 F:      net/iucv/
14072
14073 S390 NETWORK DRIVERS
14074 M:      Julian Wiedmann <[email protected]>
14075 M:      Ursula Braun <[email protected]>
14076 L:      [email protected]
14077 W:      http://www.ibm.com/developerworks/linux/linux390/
14078 S:      Supported
14079 F:      drivers/s390/net/
14080
14081 S390 PCI SUBSYSTEM
14082 M:      Sebastian Ott <[email protected]>
14083 M:      Gerald Schaefer <[email protected]>
14084 L:      [email protected]
14085 W:      http://www.ibm.com/developerworks/linux/linux390/
14086 S:      Supported
14087 F:      arch/s390/pci/
14088 F:      drivers/pci/hotplug/s390_pci_hpc.c
14089
14090 S390 VFIO-CCW DRIVER
14091 M:      Cornelia Huck <[email protected]>
14092 M:      Eric Farman <[email protected]>
14093 R:      Halil Pasic <[email protected]>
14094 L:      [email protected]
14095 L:      [email protected]
14096 S:      Supported
14097 F:      drivers/s390/cio/vfio_ccw*
14098 F:      Documentation/s390/vfio-ccw.rst
14099 F:      include/uapi/linux/vfio_ccw.h
14100
14101 S390 ZCRYPT DRIVER
14102 M:      Harald Freudenberger <[email protected]>
14103 L:      [email protected]
14104 W:      http://www.ibm.com/developerworks/linux/linux390/
14105 S:      Supported
14106 F:      drivers/s390/crypto/
14107
14108 S390 VFIO AP DRIVER
14109 M:      Tony Krowiak <[email protected]>
14110 M:      Pierre Morel <[email protected]>
14111 M:      Halil Pasic <[email protected]>
14112 L:      [email protected]
14113 W:      http://www.ibm.com/developerworks/linux/linux390/
14114 S:      Supported
14115 F:      drivers/s390/crypto/vfio_ap_drv.c
14116 F:      drivers/s390/crypto/vfio_ap_private.h
14117 F:      drivers/s390/crypto/vfio_ap_ops.c
14118 F:      Documentation/s390/vfio-ap.rst
14119
14120 S390 ZFCP DRIVER
14121 M:      Steffen Maier <[email protected]>
14122 M:      Benjamin Block <[email protected]>
14123 L:      [email protected]
14124 W:      http://www.ibm.com/developerworks/linux/linux390/
14125 S:      Supported
14126 F:      drivers/s390/scsi/zfcp_*
14127
14128 S3C24XX SD/MMC Driver
14129 M:      Ben Dooks <[email protected]>
14130 L:      [email protected] (moderated for non-subscribers)
14131 S:      Supported
14132 F:      drivers/mmc/host/s3cmci.*
14133
14134 SAA6588 RDS RECEIVER DRIVER
14135 M:      Hans Verkuil <[email protected]>
14136 L:      [email protected]
14137 T:      git git://linuxtv.org/media_tree.git
14138 W:      https://linuxtv.org
14139 S:      Odd Fixes
14140 F:      drivers/media/i2c/saa6588*
14141
14142 SAA7134 VIDEO4LINUX DRIVER
14143 M:      Mauro Carvalho Chehab <[email protected]>
14144 L:      [email protected]
14145 W:      https://linuxtv.org
14146 T:      git git://linuxtv.org/media_tree.git
14147 S:      Odd fixes
14148 F:      Documentation/media/v4l-drivers/saa7134*
14149 F:      drivers/media/pci/saa7134/
14150
14151 SAA7146 VIDEO4LINUX-2 DRIVER
14152 M:      Hans Verkuil <[email protected]>
14153 L:      [email protected]
14154 T:      git git://linuxtv.org/media_tree.git
14155 S:      Maintained
14156 F:      drivers/media/common/saa7146/
14157 F:      drivers/media/pci/saa7146/
14158 F:      include/media/drv-intf/saa7146*
14159
14160 SAFESETID SECURITY MODULE
14161 M:     Micah Morton <[email protected]>
14162 S:     Supported
14163 F:     security/safesetid/
14164 F:     Documentation/admin-guide/LSM/SafeSetID.rst
14165
14166 SAMSUNG AUDIO (ASoC) DRIVERS
14167 M:      Krzysztof Kozlowski <[email protected]>
14168 M:      Sangbeom Kim <[email protected]>
14169 M:      Sylwester Nawrocki <[email protected]>
14170 L:      [email protected] (moderated for non-subscribers)
14171 S:      Supported
14172 F:      sound/soc/samsung/
14173 F:      Documentation/devicetree/bindings/sound/samsung*
14174
14175 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14176 M:      Krzysztof Kozlowski <[email protected]>
14177 L:      [email protected]
14178 L:      [email protected]
14179 S:      Maintained
14180 F:      drivers/crypto/exynos-rng.c
14181 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.txt
14182
14183 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14184 M:      Łukasz Stelmach <[email protected]>
14185 L:      [email protected]
14186 S:      Maintained
14187 F:      drivers/char/hw_random/exynos-trng.c
14188 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14189
14190 SAMSUNG FRAMEBUFFER DRIVER
14191 M:      Jingoo Han <[email protected]>
14192 L:      [email protected]
14193 S:      Maintained
14194 F:      drivers/video/fbdev/s3c-fb.c
14195
14196 SAMSUNG LAPTOP DRIVER
14197 M:      Corentin Chary <[email protected]>
14198 L:      [email protected]
14199 S:      Maintained
14200 F:      drivers/platform/x86/samsung-laptop.c
14201
14202 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14203 M:      Sangbeom Kim <[email protected]>
14204 M:      Krzysztof Kozlowski <[email protected]>
14205 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14206 L:      [email protected]
14207 L:      [email protected]
14208 S:      Supported
14209 F:      drivers/mfd/sec*.c
14210 F:      drivers/regulator/s2m*.c
14211 F:      drivers/regulator/s5m*.c
14212 F:      drivers/clk/clk-s2mps11.c
14213 F:      drivers/rtc/rtc-s5m.c
14214 F:      include/linux/mfd/samsung/
14215 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14216 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14217 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14218 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14219
14220 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14221 M:      Sylwester Nawrocki <[email protected]>
14222 L:      [email protected]
14223 L:      [email protected] (moderated for non-subscribers)
14224 S:      Maintained
14225 F:      drivers/media/platform/s3c-camif/
14226 F:      include/media/drv-intf/s3c_camif.h
14227
14228 SAMSUNG S3FWRN5 NFC DRIVER
14229 M:      Robert Baldyga <[email protected]>
14230 M:      Krzysztof Opasiak <[email protected]>
14231 L:      [email protected] (moderated for non-subscribers)
14232 S:      Supported
14233 F:      drivers/nfc/s3fwrn5
14234
14235 SAMSUNG S5C73M3 CAMERA DRIVER
14236 M:      Kyungmin Park <[email protected]>
14237 M:      Andrzej Hajda <[email protected]>
14238 L:      [email protected]
14239 S:      Supported
14240 F:      drivers/media/i2c/s5c73m3/*
14241
14242 SAMSUNG S5K5BAF CAMERA DRIVER
14243 M:      Kyungmin Park <[email protected]>
14244 M:      Andrzej Hajda <[email protected]>
14245 L:      [email protected]
14246 S:      Supported
14247 F:      drivers/media/i2c/s5k5baf.c
14248
14249 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14250 M:      Krzysztof Kozlowski <[email protected]>
14251 M:      Vladimir Zapolskiy <[email protected]>
14252 M:      Kamil Konieczny <[email protected]>
14253 L:      [email protected]
14254 L:      [email protected]
14255 S:      Maintained
14256 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.txt
14257 F:      Documentation/devicetree/bindings/crypto/samsung-sss.txt
14258 F:      drivers/crypto/s5p-sss.c
14259
14260 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14261 M:      Kyungmin Park <[email protected]>
14262 M:      Sylwester Nawrocki <[email protected]>
14263 L:      [email protected]
14264 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14265 S:      Supported
14266 F:      drivers/media/platform/exynos4-is/
14267
14268 SAMSUNG SOC CLOCK DRIVERS
14269 M:      Sylwester Nawrocki <[email protected]>
14270 M:      Tomasz Figa <[email protected]>
14271 M:      Chanwoo Choi <[email protected]>
14272 S:      Supported
14273 L:      [email protected] (moderated for non-subscribers)
14274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14275 F:      drivers/clk/samsung/
14276 F:      include/dt-bindings/clock/exynos*.h
14277 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14278 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14279 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14280
14281 SAMSUNG SPI DRIVERS
14282 M:      Kukjin Kim <[email protected]>
14283 M:      Krzysztof Kozlowski <[email protected]>
14284 M:      Andi Shyti <[email protected]>
14285 L:      [email protected]
14286 L:      [email protected] (moderated for non-subscribers)
14287 S:      Maintained
14288 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14289 F:      drivers/spi/spi-s3c*
14290 F:      include/linux/platform_data/spi-s3c64xx.h
14291
14292 SAMSUNG SXGBE DRIVERS
14293 M:      Byungho An <[email protected]>
14294 M:      Girish K S <[email protected]>
14295 M:      Vipul Pandya <[email protected]>
14296 S:      Supported
14297 L:      [email protected]
14298 F:      drivers/net/ethernet/samsung/sxgbe/
14299
14300 SAMSUNG THERMAL DRIVER
14301 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14302 L:      [email protected]
14303 L:      [email protected]
14304 S:      Supported
14305 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14306 F:      drivers/thermal/samsung/
14307
14308 SAMSUNG USB2 PHY DRIVER
14309 M:      Kamil Debski <[email protected]>
14310 M:      Sylwester Nawrocki <[email protected]>
14311 L:      [email protected]
14312 S:      Supported
14313 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14314 F:      Documentation/driver-api/phy/samsung-usb2.rst
14315 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14316 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14317 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14318 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14319 F:      drivers/phy/samsung/phy-samsung-usb2.c
14320 F:      drivers/phy/samsung/phy-samsung-usb2.h
14321
14322 SC1200 WDT DRIVER
14323 M:      Zwane Mwaikambo <[email protected]>
14324 S:      Maintained
14325 F:      drivers/watchdog/sc1200wdt.c
14326
14327 SCHEDULER
14328 M:      Ingo Molnar <[email protected]>
14329 M:      Peter Zijlstra <[email protected]>
14330 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
14331 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
14332 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
14333 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
14334 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
14335 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
14336 L:      [email protected]
14337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14338 S:      Maintained
14339 F:      kernel/sched/
14340 F:      include/linux/sched.h
14341 F:      include/uapi/linux/sched.h
14342 F:      include/linux/wait.h
14343 F:      include/linux/preempt.h
14344
14345 SCR24X CHIP CARD INTERFACE DRIVER
14346 M:      Lubomir Rintel <[email protected]>
14347 S:      Supported
14348 F:      drivers/char/pcmcia/scr24x_cs.c
14349
14350 SCSI CDROM DRIVER
14351 M:      Jens Axboe <[email protected]>
14352 L:      [email protected]
14353 W:      http://www.kernel.dk
14354 S:      Maintained
14355 F:      drivers/scsi/sr*
14356
14357 SCSI RDMA PROTOCOL (SRP) INITIATOR
14358 M:      Bart Van Assche <[email protected]>
14359 L:      [email protected]
14360 S:      Supported
14361 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14362 F:      drivers/infiniband/ulp/srp/
14363 F:      include/scsi/srp.h
14364
14365 SCSI RDMA PROTOCOL (SRP) TARGET
14366 M:      Bart Van Assche <[email protected]>
14367 L:      [email protected]
14368 L:      [email protected]
14369 S:      Supported
14370 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14371 F:      drivers/infiniband/ulp/srpt/
14372
14373 SCSI SG DRIVER
14374 M:      Doug Gilbert <[email protected]>
14375 L:      [email protected]
14376 W:      http://sg.danny.cz/sg
14377 S:      Maintained
14378 F:      Documentation/scsi/scsi-generic.txt
14379 F:      drivers/scsi/sg.c
14380 F:      include/scsi/sg.h
14381
14382 SCSI SUBSYSTEM
14383 M:      "James E.J. Bottomley" <[email protected]>
14384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14385 M:      "Martin K. Petersen" <[email protected]>
14386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14387 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14388 L:      [email protected]
14389 S:      Maintained
14390 F:      Documentation/devicetree/bindings/scsi/
14391 F:      drivers/scsi/
14392 F:      include/scsi/
14393
14394 SCSI TAPE DRIVER
14395 M:      Kai Mäkisara <[email protected]>
14396 L:      [email protected]
14397 S:      Maintained
14398 F:      Documentation/scsi/st.txt
14399 F:      drivers/scsi/st.*
14400 F:      drivers/scsi/st_*.h
14401
14402 SCSI TARGET SUBSYSTEM
14403 M:      "Martin K. Petersen" <[email protected]>
14404 L:      [email protected]
14405 L:      [email protected]
14406 W:      http://www.linux-iscsi.org
14407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14408 Q:      https://patchwork.kernel.org/project/target-devel/list/
14409 S:      Supported
14410 F:      drivers/target/
14411 F:      include/target/
14412 F:      Documentation/target/
14413
14414 SCTP PROTOCOL
14415 M:      Vlad Yasevich <[email protected]>
14416 M:      Neil Horman <[email protected]>
14417 M:      Marcelo Ricardo Leitner <[email protected]>
14418 L:      [email protected]
14419 W:      http://lksctp.sourceforge.net
14420 S:      Maintained
14421 F:      Documentation/networking/sctp.txt
14422 F:      include/linux/sctp.h
14423 F:      include/uapi/linux/sctp.h
14424 F:      include/net/sctp/
14425 F:      net/sctp/
14426
14427 SCx200 CPU SUPPORT
14428 M:      Jim Cromie <[email protected]>
14429 S:      Odd Fixes
14430 F:      Documentation/i2c/busses/scx200_acb.rst
14431 F:      arch/x86/platform/scx200/
14432 F:      drivers/watchdog/scx200_wdt.c
14433 F:      drivers/i2c/busses/scx200*
14434 F:      drivers/mtd/maps/scx200_docflash.c
14435 F:      include/linux/scx200.h
14436
14437 SCx200 GPIO DRIVER
14438 M:      Jim Cromie <[email protected]>
14439 S:      Maintained
14440 F:      drivers/char/scx200_gpio.c
14441 F:      include/linux/scx200_gpio.h
14442
14443 SCx200 HRT CLOCKSOURCE DRIVER
14444 M:      Jim Cromie <[email protected]>
14445 S:      Maintained
14446 F:      drivers/clocksource/scx200_hrt.c
14447
14448 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
14449 M:      Sascha Sommer <[email protected]>
14450 L:      [email protected] (subscribers-only)
14451 S:      Maintained
14452 F:      drivers/mmc/host/sdricoh_cs.c
14453
14454 SECO BOARDS CEC DRIVER
14455 M:      Ettore Chimenti <[email protected]>
14456 S:      Maintained
14457 F:      drivers/media/platform/seco-cec/seco-cec.c
14458 F:      drivers/media/platform/seco-cec/seco-cec.h
14459
14460 SECURE COMPUTING
14461 M:      Kees Cook <[email protected]>
14462 R:      Andy Lutomirski <[email protected]>
14463 R:      Will Drewry <[email protected]>
14464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
14465 S:      Supported
14466 F:      kernel/seccomp.c
14467 F:      include/uapi/linux/seccomp.h
14468 F:      include/linux/seccomp.h
14469 F:      tools/testing/selftests/seccomp/*
14470 F:      tools/testing/selftests/kselftest_harness.h
14471 F:      Documentation/userspace-api/seccomp_filter.rst
14472 K:      \bsecure_computing
14473 K:      \bTIF_SECCOMP\b
14474
14475 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
14476 M:      Al Cooper <[email protected]>
14477 L:      [email protected]
14478 L:      [email protected]
14479 S:      Maintained
14480 F:      drivers/mmc/host/sdhci-brcmstb*
14481
14482 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
14483 M:      Adrian Hunter <[email protected]>
14484 L:      [email protected]
14485 S:      Maintained
14486 F:      drivers/mmc/host/sdhci*
14487 F:      include/linux/mmc/sdhci*
14488
14489 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
14490 M:      Adrian Hunter <[email protected]>
14491 M:      Ritesh Harjani <[email protected]>
14492 M:      Asutosh Das <[email protected]>
14493 L:      [email protected]
14494 S:      Maintained
14495 F:      drivers/mmc/host/cqhci*
14496
14497 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
14498 M:      Prabu Thangamuthu <[email protected]>
14499 M:      Manjunath M B <[email protected]>
14500 L:      [email protected]
14501 S:      Maintained
14502 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
14503
14504 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
14505 M:      Ludovic Desroches <[email protected]>
14506 L:      [email protected]
14507 S:      Supported
14508 F:      drivers/mmc/host/sdhci-of-at91.c
14509
14510 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
14511 M:      Ben Dooks <[email protected]>
14512 M:      Jaehoon Chung <[email protected]>
14513 L:      [email protected]
14514 S:      Maintained
14515 F:      drivers/mmc/host/sdhci-s3c*
14516
14517 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
14518 M:      Viresh Kumar <[email protected]>
14519 L:      [email protected]
14520 S:      Maintained
14521 F:      drivers/mmc/host/sdhci-spear.c
14522
14523 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
14524 M:      Kishon Vijay Abraham I <[email protected]>
14525 L:      [email protected]
14526 S:      Maintained
14527 F:      drivers/mmc/host/sdhci-omap.c
14528
14529 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
14530 M:      Scott Bauer <[email protected]>
14531 M:      Jonathan Derrick <[email protected]>
14532 L:      [email protected]
14533 S:      Supported
14534 F:      block/sed*
14535 F:      block/opal_proto.h
14536 F:      include/linux/sed*
14537 F:      include/uapi/linux/sed*
14538
14539 SECURITY CONTACT
14540 M:      Security Officers <[email protected]>
14541 S:      Supported
14542
14543 SECURITY SUBSYSTEM
14544 M:      James Morris <[email protected]>
14545 M:      "Serge E. Hallyn" <[email protected]>
14546 L:      [email protected] (suggested Cc:)
14547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
14548 W:      http://kernsec.org/
14549 S:      Supported
14550 F:      security/
14551 X:      security/selinux/
14552
14553 SELINUX SECURITY MODULE
14554 M:      Paul Moore <[email protected]>
14555 M:      Stephen Smalley <[email protected]>
14556 M:      Eric Paris <[email protected]>
14557 L:      [email protected]
14558 W:      https://selinuxproject.org
14559 W:      https://github.com/SELinuxProject
14560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
14561 S:      Supported
14562 F:      include/uapi/linux/selinux_netlink.h
14563 F:      security/selinux/
14564 F:      scripts/selinux/
14565 F:      Documentation/admin-guide/LSM/SELinux.rst
14566
14567 SENSABLE PHANTOM
14568 M:      Jiri Slaby <[email protected]>
14569 S:      Maintained
14570 F:      drivers/misc/phantom.c
14571 F:      include/uapi/linux/phantom.h
14572
14573 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
14574 M:      Tomasz Duszynski <[email protected]>
14575 S:      Maintained
14576 F:      drivers/iio/chemical/sps30.c
14577 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
14578
14579 SERIAL DEVICE BUS
14580 M:      Rob Herring <[email protected]>
14581 L:      [email protected]
14582 S:      Maintained
14583 F:      Documentation/devicetree/bindings/serial/slave-device.txt
14584 F:      drivers/tty/serdev/
14585 F:      include/linux/serdev.h
14586
14587 SERIAL DRIVERS
14588 M:      Greg Kroah-Hartman <[email protected]>
14589 L:      [email protected]
14590 S:      Maintained
14591 F:      Documentation/devicetree/bindings/serial/
14592 F:      drivers/tty/serial/
14593
14594 SERIAL IR RECEIVER
14595 M:      Sean Young <[email protected]>
14596 L:      [email protected]
14597 S:      Maintained
14598 F:      drivers/media/rc/serial_ir.c
14599
14600 SFC NETWORK DRIVER
14601 M:      Solarflare linux maintainers <[email protected]>
14602 M:      Edward Cree <[email protected]>
14603 M:      Martin Habets <[email protected]>
14604 L:      [email protected]
14605 S:      Supported
14606 F:      drivers/net/ethernet/sfc/
14607
14608 SFF/SFP/SFP+ MODULE SUPPORT
14609 M:      Russell King <[email protected]>
14610 L:      [email protected]
14611 S:      Maintained
14612 F:      drivers/net/phy/phylink.c
14613 F:      drivers/net/phy/sfp*
14614 F:      include/linux/phylink.h
14615 F:      include/linux/sfp.h
14616 K:      phylink
14617
14618 SGI GRU DRIVER
14619 M:      Dimitri Sivanich <[email protected]>
14620 S:      Maintained
14621 F:      drivers/misc/sgi-gru/
14622
14623 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
14624 M:      Pat Gefre <[email protected]>
14625 L:      [email protected]
14626 S:      Supported
14627 F:      Documentation/ia64/serial.rst
14628 F:      drivers/tty/serial/ioc?_serial.c
14629 F:      include/linux/ioc?.h
14630
14631 SGI XP/XPC/XPNET DRIVER
14632 M:      Cliff Whickman <[email protected]>
14633 M:      Robin Holt <[email protected]>
14634 S:      Maintained
14635 F:      drivers/misc/sgi-xp/
14636
14637 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
14638 M:      Ursula Braun <[email protected]>
14639 M:      Karsten Graul <[email protected]>
14640 L:      [email protected]
14641 W:      http://www.ibm.com/developerworks/linux/linux390/
14642 S:      Supported
14643 F:      net/smc/
14644
14645 SHARP RJ54N1CB0C SENSOR DRIVER
14646 M:      Jacopo Mondi <[email protected]>
14647 L:      [email protected]
14648 T:      git git://linuxtv.org/media_tree.git
14649 S:      Odd fixes
14650 F:      drivers/media/i2c/rj54n1cb0c.c
14651 F:      include/media/i2c/rj54n1cb0c.h
14652
14653 SH_VEU V4L2 MEM2MEM DRIVER
14654 L:      [email protected]
14655 S:      Orphan
14656 F:      drivers/media/platform/sh_veu.c
14657
14658 SH_VOU V4L2 OUTPUT DRIVER
14659 L:      [email protected]
14660 S:      Orphan
14661 F:      drivers/media/platform/sh_vou.c
14662 F:      include/media/drv-intf/sh_vou.h
14663
14664 SI2157 MEDIA DRIVER
14665 M:      Antti Palosaari <[email protected]>
14666 L:      [email protected]
14667 W:      https://linuxtv.org
14668 W:      http://palosaari.fi/linux/
14669 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14670 T:      git git://linuxtv.org/anttip/media_tree.git
14671 S:      Maintained
14672 F:      drivers/media/tuners/si2157*
14673
14674 SI2165 MEDIA DRIVER
14675 M:      Matthias Schwarzott <[email protected]>
14676 L:      [email protected]
14677 W:      https://linuxtv.org
14678 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14679 S:      Maintained
14680 F:      drivers/media/dvb-frontends/si2165*
14681
14682 SI2168 MEDIA DRIVER
14683 M:      Antti Palosaari <[email protected]>
14684 L:      [email protected]
14685 W:      https://linuxtv.org
14686 W:      http://palosaari.fi/linux/
14687 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14688 T:      git git://linuxtv.org/anttip/media_tree.git
14689 S:      Maintained
14690 F:      drivers/media/dvb-frontends/si2168*
14691
14692 SI470X FM RADIO RECEIVER I2C 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/radio/si470x/radio-si470x-i2c.c
14699
14700 SI470X FM RADIO RECEIVER USB DRIVER
14701 M:      Hans Verkuil <[email protected]>
14702 L:      [email protected]
14703 T:      git git://linuxtv.org/media_tree.git
14704 W:      https://linuxtv.org
14705 S:      Maintained
14706 F:      drivers/media/radio/si470x/radio-si470x-common.c
14707 F:      drivers/media/radio/si470x/radio-si470x.h
14708 F:      drivers/media/radio/si470x/radio-si470x-usb.c
14709
14710 SI4713 FM RADIO TRANSMITTER I2C DRIVER
14711 M:      Eduardo Valentin <[email protected]>
14712 L:      [email protected]
14713 T:      git git://linuxtv.org/media_tree.git
14714 W:      https://linuxtv.org
14715 S:      Odd Fixes
14716 F:      drivers/media/radio/si4713/si4713.?
14717
14718 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
14719 M:      Eduardo Valentin <[email protected]>
14720 L:      [email protected]
14721 T:      git git://linuxtv.org/media_tree.git
14722 W:      https://linuxtv.org
14723 S:      Odd Fixes
14724 F:      drivers/media/radio/si4713/radio-platform-si4713.c
14725
14726 SI4713 FM RADIO TRANSMITTER USB DRIVER
14727 M:      Hans Verkuil <[email protected]>
14728 L:      [email protected]
14729 T:      git git://linuxtv.org/media_tree.git
14730 W:      https://linuxtv.org
14731 S:      Maintained
14732 F:      drivers/media/radio/si4713/radio-usb-si4713.c
14733
14734 SIANO DVB DRIVER
14735 M:      Mauro Carvalho Chehab <[email protected]>
14736 L:      [email protected]
14737 W:      https://linuxtv.org
14738 T:      git git://linuxtv.org/media_tree.git
14739 S:      Odd fixes
14740 F:      drivers/media/common/siano/
14741 F:      drivers/media/usb/siano/
14742 F:      drivers/media/usb/siano/
14743 F:      drivers/media/mmc/siano/
14744
14745 SIFIVE DRIVERS
14746 M:      Palmer Dabbelt <[email protected]>
14747 M:      Paul Walmsley <[email protected]>
14748 L:      [email protected]
14749 T:      git git://github.com/sifive/riscv-linux.git
14750 S:      Supported
14751 K:      [^@]sifive
14752 N:      sifive
14753
14754 SIFIVE FU540 SYSTEM-ON-CHIP
14755 M:      Paul Walmsley <[email protected]>
14756 M:      Palmer Dabbelt <[email protected]>
14757 L:      [email protected]
14758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
14759 S:      Supported
14760 K:      fu540
14761 N:      fu540
14762
14763 SILEAD TOUCHSCREEN DRIVER
14764 M:      Hans de Goede <[email protected]>
14765 L:      [email protected]
14766 L:      [email protected]
14767 S:      Maintained
14768 F:      drivers/input/touchscreen/silead.c
14769 F:      drivers/platform/x86/touchscreen_dmi.c
14770
14771 SILICON MOTION SM712 FRAME BUFFER DRIVER
14772 M:      Sudip Mukherjee <[email protected]>
14773 M:      Teddy Wang <[email protected]>
14774 M:      Sudip Mukherjee <[email protected]>
14775 L:      [email protected]
14776 S:      Maintained
14777 F:      drivers/video/fbdev/sm712*
14778 F:      Documentation/fb/sm712fb.rst
14779
14780 SIMPLE FIRMWARE INTERFACE (SFI)
14781 M:      Len Brown <[email protected]>
14782 L:      [email protected]
14783 W:      http://simplefirmware.org/
14784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
14785 S:      Supported
14786 F:      arch/x86/platform/sfi/
14787 F:      drivers/sfi/
14788 F:      include/linux/sfi*.h
14789
14790 SIMPLEFB FB DRIVER
14791 M:      Hans de Goede <[email protected]>
14792 L:      [email protected]
14793 S:      Maintained
14794 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
14795 F:      drivers/video/fbdev/simplefb.c
14796 F:      include/linux/platform_data/simplefb.h
14797
14798 SIMTEC EB110ATX (Chalice CATS)
14799 P:      Ben Dooks
14800 P:      Vincent Sanders <[email protected]>
14801 M:      Simtec Linux Team <[email protected]>
14802 W:      http://www.simtec.co.uk/products/EB110ATX/
14803 S:      Supported
14804
14805 SIMTEC EB2410ITX (BAST)
14806 P:      Ben Dooks
14807 P:      Vincent Sanders <[email protected]>
14808 M:      Simtec Linux Team <[email protected]>
14809 W:      http://www.simtec.co.uk/products/EB2410ITX/
14810 S:      Supported
14811 F:      arch/arm/mach-s3c24xx/mach-bast.c
14812 F:      arch/arm/mach-s3c24xx/bast-ide.c
14813 F:      arch/arm/mach-s3c24xx/bast-irq.c
14814
14815 SIPHASH PRF ROUTINES
14816 M:      Jason A. Donenfeld <[email protected]>
14817 S:      Maintained
14818 F:      lib/siphash.c
14819 F:      lib/test_siphash.c
14820 F:      include/linux/siphash.h
14821
14822 SIOX
14823 M:      Thorsten Scherer <[email protected]>
14824 M:      Uwe Kleine-König <[email protected]>
14825 R:      Pengutronix Kernel Team <[email protected]>
14826 S:      Supported
14827 F:      drivers/siox/*
14828 F:      drivers/gpio/gpio-siox.c
14829 F:      include/trace/events/siox.h
14830
14831 SIS 190 ETHERNET DRIVER
14832 M:      Francois Romieu <[email protected]>
14833 L:      [email protected]
14834 S:      Maintained
14835 F:      drivers/net/ethernet/sis/sis190.c
14836
14837 SIS 900/7016 FAST ETHERNET DRIVER
14838 M:      Daniele Venzano <[email protected]>
14839 W:      http://www.brownhat.org/sis900.html
14840 L:      [email protected]
14841 S:      Maintained
14842 F:      drivers/net/ethernet/sis/sis900.*
14843
14844 SIS FRAMEBUFFER DRIVER
14845 M:      Thomas Winischhofer <[email protected]>
14846 W:      http://www.winischhofer.net/linuxsisvga.shtml
14847 S:      Maintained
14848 F:      Documentation/fb/sisfb.rst
14849 F:      drivers/video/fbdev/sis/
14850 F:      include/video/sisfb.h
14851
14852 SIS USB2VGA DRIVER
14853 M:      Thomas Winischhofer <[email protected]>
14854 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
14855 S:      Maintained
14856 F:      drivers/usb/misc/sisusbvga/
14857
14858 SLAB ALLOCATOR
14859 M:      Christoph Lameter <[email protected]>
14860 M:      Pekka Enberg <[email protected]>
14861 M:      David Rientjes <[email protected]>
14862 M:      Joonsoo Kim <[email protected]>
14863 M:      Andrew Morton <[email protected]>
14864 L:      [email protected]
14865 S:      Maintained
14866 F:      include/linux/sl?b*.h
14867 F:      mm/sl?b*
14868
14869 SLEEPABLE READ-COPY UPDATE (SRCU)
14870 M:      Lai Jiangshan <[email protected]>
14871 M:      "Paul E. McKenney" <[email protected]>
14872 M:      Josh Triplett <[email protected]>
14873 R:      Steven Rostedt <[email protected]>
14874 R:      Mathieu Desnoyers <[email protected]>
14875 L:      [email protected]
14876 W:      http://www.rdrop.com/users/paulmck/RCU/
14877 S:      Supported
14878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14879 F:      include/linux/srcu*.h
14880 F:      kernel/rcu/srcu*.c
14881
14882 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
14883 M:      Srinivas Kandagatla <[email protected]>
14884 L:      [email protected] (moderated for non-subscribers)
14885 S:      Maintained
14886 F:      drivers/slimbus/
14887 F:      Documentation/devicetree/bindings/slimbus/
14888 F:      include/linux/slimbus.h
14889
14890 SMACK SECURITY MODULE
14891 M:      Casey Schaufler <[email protected]>
14892 L:      [email protected]
14893 W:      http://schaufler-ca.com
14894 T:      git git://github.com/cschaufler/smack-next
14895 S:      Maintained
14896 F:      Documentation/admin-guide/LSM/Smack.rst
14897 F:      security/smack/
14898
14899 SMC91x ETHERNET DRIVER
14900 M:      Nicolas Pitre <[email protected]>
14901 S:      Odd Fixes
14902 F:      drivers/net/ethernet/smsc/smc91x.*
14903
14904 SMIA AND SMIA++ IMAGE SENSOR DRIVER
14905 M:      Sakari Ailus <[email protected]>
14906 L:      [email protected]
14907 S:      Maintained
14908 F:      drivers/media/i2c/smiapp/
14909 F:      include/media/i2c/smiapp.h
14910 F:      drivers/media/i2c/smiapp-pll.c
14911 F:      drivers/media/i2c/smiapp-pll.h
14912 F:      include/uapi/linux/smiapp.h
14913 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
14914
14915 SMM665 HARDWARE MONITOR DRIVER
14916 M:      Guenter Roeck <[email protected]>
14917 L:      [email protected]
14918 S:      Maintained
14919 F:      Documentation/hwmon/smm665.rst
14920 F:      drivers/hwmon/smm665.c
14921
14922 SMSC EMC2103 HARDWARE MONITOR DRIVER
14923 M:      Steve Glendinning <[email protected]>
14924 L:      [email protected]
14925 S:      Maintained
14926 F:      Documentation/hwmon/emc2103.rst
14927 F:      drivers/hwmon/emc2103.c
14928
14929 SMSC SCH5627 HARDWARE MONITOR DRIVER
14930 M:      Hans de Goede <[email protected]>
14931 L:      [email protected]
14932 S:      Supported
14933 F:      Documentation/hwmon/sch5627.rst
14934 F:      drivers/hwmon/sch5627.c
14935
14936 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
14937 M:      Steve Glendinning <[email protected]>
14938 L:      [email protected]
14939 S:      Maintained
14940 F:      drivers/video/fbdev/smscufx.c
14941
14942 SMSC47B397 HARDWARE MONITOR DRIVER
14943 M:      Jean Delvare <[email protected]>
14944 L:      [email protected]
14945 S:      Maintained
14946 F:      Documentation/hwmon/smsc47b397.rst
14947 F:      drivers/hwmon/smsc47b397.c
14948
14949 SMSC911x ETHERNET DRIVER
14950 M:      Steve Glendinning <[email protected]>
14951 L:      [email protected]
14952 S:      Maintained
14953 F:      include/linux/smsc911x.h
14954 F:      drivers/net/ethernet/smsc/smsc911x.*
14955
14956 SMSC9420 PCI ETHERNET DRIVER
14957 M:      Steve Glendinning <[email protected]>
14958 L:      [email protected]
14959 S:      Maintained
14960 F:      drivers/net/ethernet/smsc/smsc9420.*
14961
14962 SOC-CAMERA V4L2 SUBSYSTEM
14963 L:      [email protected]
14964 T:      git git://linuxtv.org/media_tree.git
14965 S:      Orphan
14966 F:      include/media/soc_camera.h
14967 F:      drivers/staging/media/soc_camera/
14968
14969 SOCIONEXT SYNQUACER I2C DRIVER
14970 M:      Ard Biesheuvel <[email protected]>
14971 L:      [email protected]
14972 S:      Maintained
14973 F:      drivers/i2c/busses/i2c-synquacer.c
14974 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
14975
14976 SOCIONEXT UNIPHIER SOUND DRIVER
14977 L:      [email protected] (moderated for non-subscribers)
14978 S:      Orphan
14979 F:      sound/soc/uniphier/
14980
14981 SOEKRIS NET48XX LED SUPPORT
14982 M:      Chris Boot <[email protected]>
14983 S:      Maintained
14984 F:      drivers/leds/leds-net48xx.c
14985
14986 SOFT-IWARP DRIVER (siw)
14987 M:      Bernard Metzler <[email protected]>
14988 L:      [email protected]
14989 S:      Supported
14990 F:      drivers/infiniband/sw/siw/
14991 F:      include/uapi/rdma/siw-abi.h
14992
14993 SOFT-ROCE DRIVER (rxe)
14994 M:      Moni Shoua <[email protected]>
14995 L:      [email protected]
14996 S:      Supported
14997 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
14998 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14999 F:      drivers/infiniband/sw/rxe/
15000 F:      include/uapi/rdma/rdma_user_rxe.h
15001
15002 SOFTLOGIC 6x10 MPEG CODEC
15003 M:      Bluecherry Maintainers <[email protected]>
15004 M:      Anton Sviridenko <[email protected]>
15005 M:      Andrey Utkin <[email protected]>
15006 M:      Andrey Utkin <[email protected]>
15007 M:      Ismael Luceno <[email protected]>
15008 L:      [email protected]
15009 S:      Supported
15010 F:      drivers/media/pci/solo6x10/
15011
15012 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15013 M:      James Morse <[email protected]>
15014 L:      [email protected]
15015 S:      Maintained
15016 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15017 F:      drivers/firmware/arm_sdei.c
15018 F:      include/linux/arm_sdei.h
15019 F:      include/uapi/linux/arm_sdei.h
15020
15021 SOFTWARE RAID (Multiple Disks) SUPPORT
15022 M:      Song Liu <[email protected]>
15023 L:      [email protected]
15024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15025 S:      Supported
15026 F:      drivers/md/Makefile
15027 F:      drivers/md/Kconfig
15028 F:      drivers/md/md*
15029 F:      drivers/md/raid*
15030 F:      include/linux/raid/
15031 F:      include/uapi/linux/raid/
15032
15033 SOCIONEXT (SNI) AVE NETWORK DRIVER
15034 M:      Kunihiko Hayashi <[email protected]>
15035 L:      [email protected]
15036 S:      Maintained
15037 F:      drivers/net/ethernet/socionext/sni_ave.c
15038 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15039
15040 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15041 M:      Jassi Brar <[email protected]>
15042 M:      Ilias Apalodimas <[email protected]>
15043 L:      [email protected]
15044 S:      Maintained
15045 F:      drivers/net/ethernet/socionext/netsec.c
15046 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15047
15048 SOCIONEXT (SNI) Synquacer SPI DRIVER
15049 M:      Masahisa Kojima <[email protected]>
15050 M:      Jassi Brar <[email protected]>
15051 L:      [email protected]
15052 S:      Maintained
15053 F:      drivers/spi/spi-synquacer.c
15054 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15055
15056 SOLIDRUN CLEARFOG SUPPORT
15057 M:      Russell King <[email protected]>
15058 S:      Maintained
15059 F:      arch/arm/boot/dts/armada-388-clearfog*
15060 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15061
15062 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15063 M:      Russell King <[email protected]>
15064 S:      Maintained
15065 F:      arch/arm/boot/dts/imx6*-cubox-i*
15066 F:      arch/arm/boot/dts/imx6*-hummingboard*
15067 F:      arch/arm/boot/dts/imx6*-sr-*
15068
15069 SONIC NETWORK DRIVER
15070 M:      Thomas Bogendoerfer <[email protected]>
15071 L:      [email protected]
15072 S:      Maintained
15073 F:      drivers/net/ethernet/natsemi/sonic.*
15074
15075 SONICS SILICON BACKPLANE DRIVER (SSB)
15076 M:      Michael Buesch <[email protected]>
15077 L:      [email protected]
15078 S:      Maintained
15079 F:      drivers/ssb/
15080 F:      include/linux/ssb/
15081
15082 SONY IMX214 SENSOR DRIVER
15083 M:      Ricardo Ribalda <[email protected]>
15084 L:      [email protected]
15085 T:      git git://linuxtv.org/media_tree.git
15086 S:      Maintained
15087 F:      drivers/media/i2c/imx214.c
15088 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15089
15090 SONY IMX258 SENSOR DRIVER
15091 M:      Sakari Ailus <[email protected]>
15092 L:      [email protected]
15093 T:      git git://linuxtv.org/media_tree.git
15094 S:      Maintained
15095 F:      drivers/media/i2c/imx258.c
15096
15097 SONY IMX274 SENSOR DRIVER
15098 M:      Leon Luo <[email protected]>
15099 L:      [email protected]
15100 T:      git git://linuxtv.org/media_tree.git
15101 S:      Maintained
15102 F:      drivers/media/i2c/imx274.c
15103 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15104
15105 SONY IMX319 SENSOR DRIVER
15106 M:      Bingbu Cao <[email protected]>
15107 L:      [email protected]
15108 T:      git git://linuxtv.org/media_tree.git
15109 S:      Maintained
15110 F:      drivers/media/i2c/imx319.c
15111
15112 SONY IMX355 SENSOR DRIVER
15113 M:      Tianshu Qiu <[email protected]>
15114 L:      [email protected]
15115 T:      git git://linuxtv.org/media_tree.git
15116 S:      Maintained
15117 F:      drivers/media/i2c/imx355.c
15118
15119 SONY MEMORYSTICK SUBSYSTEM
15120 M:      Maxim Levitsky <[email protected]>
15121 M:      Alex Dubov <[email protected]>
15122 M:      Ulf Hansson <[email protected]>
15123 L:      [email protected]
15124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15125 S:      Maintained
15126 F:      drivers/memstick/
15127 F:      include/linux/memstick.h
15128
15129 SONY VAIO CONTROL DEVICE DRIVER
15130 M:      Mattia Dongili <[email protected]>
15131 L:      [email protected]
15132 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15133 S:      Maintained
15134 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15135 F:      drivers/char/sonypi.c
15136 F:      drivers/platform/x86/sony-laptop.c
15137 F:      include/linux/sony-laptop.h
15138
15139 SOUND
15140 M:      Jaroslav Kysela <[email protected]>
15141 M:      Takashi Iwai <[email protected]>
15142 L:      [email protected] (moderated for non-subscribers)
15143 W:      http://www.alsa-project.org/
15144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15145 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15146 S:      Maintained
15147 F:      Documentation/sound/
15148 F:      include/sound/
15149 F:      include/uapi/sound/
15150 F:      sound/
15151
15152 SOUND - COMPRESSED AUDIO
15153 M:      Vinod Koul <[email protected]>
15154 L:      [email protected] (moderated for non-subscribers)
15155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15156 S:      Supported
15157 F:      Documentation/sound/designs/compress-offload.rst
15158 F:      include/sound/compress_driver.h
15159 F:      include/uapi/sound/compress_*
15160 F:      sound/core/compress_offload.c
15161 F:      sound/soc/soc-compress.c
15162
15163 SOUND - DMAENGINE HELPERS
15164 M:      Lars-Peter Clausen <[email protected]>
15165 S:      Supported
15166 F:      include/sound/dmaengine_pcm.h
15167 F:      sound/core/pcm_dmaengine.c
15168 F:      sound/soc/soc-generic-dmaengine-pcm.c
15169
15170 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15171 M:      Liam Girdwood <[email protected]>
15172 M:      Mark Brown <[email protected]>
15173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15174 L:      [email protected] (moderated for non-subscribers)
15175 W:      http://alsa-project.org/main/index.php/ASoC
15176 S:      Supported
15177 F:      Documentation/devicetree/bindings/sound/
15178 F:      Documentation/sound/soc/
15179 F:      sound/soc/
15180 F:      include/dt-bindings/sound/
15181 F:      include/sound/soc*
15182
15183 SOUNDWIRE SUBSYSTEM
15184 M:      Vinod Koul <[email protected]>
15185 M:      Sanyog Kale <[email protected]>
15186 R:      Pierre-Louis Bossart <[email protected]>
15187 L:      [email protected] (moderated for non-subscribers)
15188 S:      Supported
15189 F:      Documentation/driver-api/soundwire/
15190 F:      drivers/soundwire/
15191 F:      include/linux/soundwire/
15192
15193 SP2 MEDIA DRIVER
15194 M:      Olli Salonen <[email protected]>
15195 L:      [email protected]
15196 W:      https://linuxtv.org
15197 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15198 S:      Maintained
15199 F:      drivers/media/dvb-frontends/sp2*
15200
15201 SPARC + UltraSPARC (sparc/sparc64)
15202 M:      "David S. Miller" <[email protected]>
15203 L:      [email protected]
15204 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15207 S:      Maintained
15208 F:      arch/sparc/
15209 F:      drivers/sbus/
15210
15211 SPARC SERIAL DRIVERS
15212 M:      "David S. Miller" <[email protected]>
15213 L:      [email protected]
15214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15216 S:      Maintained
15217 F:      include/linux/sunserialcore.h
15218 F:      drivers/tty/serial/suncore.c
15219 F:      drivers/tty/serial/sunhv.c
15220 F:      drivers/tty/serial/sunsab.c
15221 F:      drivers/tty/serial/sunsab.h
15222 F:      drivers/tty/serial/sunsu.c
15223 F:      drivers/tty/serial/sunzilog.c
15224 F:      drivers/tty/serial/sunzilog.h
15225 F:      drivers/tty/vcc.c
15226
15227 SPARSE CHECKER
15228 M:      "Luc Van Oostenryck" <[email protected]>
15229 L:      [email protected]
15230 W:      https://sparse.wiki.kernel.org/
15231 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15232 S:      Maintained
15233 F:      include/linux/compiler.h
15234
15235 SPEAR CLOCK FRAMEWORK SUPPORT
15236 M:      Viresh Kumar <[email protected]>
15237 L:      [email protected] (moderated for non-subscribers)
15238 W:      http://www.st.com/spear
15239 S:      Maintained
15240 F:      drivers/clk/spear/
15241
15242 SPEAR PLATFORM SUPPORT
15243 M:      Viresh Kumar <[email protected]>
15244 M:      Shiraz Hashim <[email protected]>
15245 L:      [email protected] (moderated for non-subscribers)
15246 W:      http://www.st.com/spear
15247 S:      Maintained
15248 F:      arch/arm/boot/dts/spear*
15249 F:      arch/arm/mach-spear/
15250
15251 SPI NOR SUBSYSTEM
15252 M:      Marek Vasut <[email protected]>
15253 M:      Tudor Ambarus <[email protected]>
15254 L:      [email protected]
15255 W:      http://www.linux-mtd.infradead.org/
15256 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15258 S:      Maintained
15259 F:      drivers/mtd/spi-nor/
15260 F:      include/linux/mtd/spi-nor.h
15261
15262 SPI SUBSYSTEM
15263 M:      Mark Brown <[email protected]>
15264 L:      [email protected]
15265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15266 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15267 S:      Maintained
15268 F:      Documentation/devicetree/bindings/spi/
15269 F:      Documentation/spi/
15270 F:      drivers/spi/
15271 F:      include/linux/spi/
15272 F:      include/uapi/linux/spi/
15273 F:      tools/spi/
15274
15275 SPIDERNET NETWORK DRIVER for CELL
15276 M:      Ishizaki Kou <[email protected]>
15277 L:      [email protected]
15278 S:      Supported
15279 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15280 F:      drivers/net/ethernet/toshiba/spider_net*
15281
15282 SPMI SUBSYSTEM
15283 R:      Stephen Boyd <[email protected]>
15284 L:      [email protected]
15285 F:      Documentation/devicetree/bindings/spmi/
15286 F:      drivers/spmi/
15287 F:      include/dt-bindings/spmi/spmi.h
15288 F:      include/linux/spmi.h
15289 F:      include/trace/events/spmi.h
15290
15291 SPU FILE SYSTEM
15292 M:      Jeremy Kerr <[email protected]>
15293 L:      [email protected]
15294 W:      http://www.ibm.com/developerworks/power/cell/
15295 S:      Supported
15296 F:      Documentation/filesystems/spufs.txt
15297 F:      arch/powerpc/platforms/cell/spufs/
15298
15299 SQUASHFS FILE SYSTEM
15300 M:      Phillip Lougher <[email protected]>
15301 L:      [email protected] (subscribers-only)
15302 W:      http://squashfs.org.uk
15303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15304 S:      Maintained
15305 F:      Documentation/filesystems/squashfs.txt
15306 F:      fs/squashfs/
15307
15308 SRM (Alpha) environment access
15309 M:      Jan-Benedict Glaw <[email protected]>
15310 S:      Maintained
15311 F:      arch/alpha/kernel/srm_env.c
15312
15313 ST LSM6DSx IMU IIO DRIVER
15314 M:      Lorenzo Bianconi <[email protected]>
15315 L:      [email protected]
15316 W:      http://www.st.com/
15317 S:      Maintained
15318 F:      drivers/iio/imu/st_lsm6dsx/
15319 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15320
15321 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15322 M:      Mickael Guene <[email protected]>
15323 L:      [email protected]
15324 T:      git git://linuxtv.org/media_tree.git
15325 S:      Maintained
15326 F:      drivers/media/i2c/st-mipid02.c
15327 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15328
15329 ST STM32 I2C/SMBUS DRIVER
15330 M:      Pierre-Yves MORDRET <[email protected]>
15331 L:      [email protected]
15332 S:      Maintained
15333 F:      drivers/i2c/busses/i2c-stm32*
15334
15335 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15336 M:      Song Qiang <[email protected]>
15337 L:      [email protected]
15338 S:      Maintained
15339 F:      drivers/iio/proximity/vl53l0x-i2c.c
15340 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15341
15342 STABLE BRANCH
15343 M:      Greg Kroah-Hartman <[email protected]>
15344 M:      Sasha Levin <[email protected]>
15345 L:      [email protected]
15346 S:      Supported
15347 F:      Documentation/process/stable-kernel-rules.rst
15348
15349 STAGING - COMEDI
15350 M:      Ian Abbott <[email protected]>
15351 M:      H Hartley Sweeten <[email protected]>
15352 S:      Odd Fixes
15353 F:      drivers/staging/comedi/
15354
15355 STAGING - FIELDBUS SUBSYSTEM
15356 M:      Sven Van Asbroeck <[email protected]>
15357 S:      Maintained
15358 F:      drivers/staging/fieldbus/*
15359 F:      drivers/staging/fieldbus/Documentation/
15360
15361 STAGING - HMS ANYBUS-S BUS
15362 M:      Sven Van Asbroeck <[email protected]>
15363 S:      Maintained
15364 F:      drivers/staging/fieldbus/anybuss/
15365
15366 STAGING - INDUSTRIAL IO
15367 M:      Jonathan Cameron <[email protected]>
15368 L:      [email protected]
15369 S:      Odd Fixes
15370 F:      Documentation/devicetree/bindings/staging/iio/
15371 F:      drivers/staging/iio/
15372
15373 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15374 M:      Marc Dietrich <[email protected]>
15375 L:      [email protected] (moderated for non-subscribers)
15376 L:      [email protected]
15377 S:      Maintained
15378 F:      drivers/staging/nvec/
15379
15380 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15381 M:      Jens Frederich <[email protected]>
15382 M:      Daniel Drake <[email protected]>
15383 M:      Jon Nettleton <[email protected]>
15384 W:      http://wiki.laptop.org/go/DCON
15385 S:      Maintained
15386 F:      drivers/staging/olpc_dcon/
15387
15388 STAGING - REALTEK RTL8712U DRIVERS
15389 M:      Larry Finger <[email protected]>
15390 M:      Florian Schilhabel <[email protected]>.
15391 S:      Odd Fixes
15392 F:      drivers/staging/rtl8712/
15393
15394 STAGING - REALTEK RTL8188EU DRIVERS
15395 M:      Larry Finger <[email protected]>
15396 S:      Odd Fixes
15397 F:      drivers/staging/rtl8188eu/
15398
15399 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15400 M:      Sudip Mukherjee <[email protected]>
15401 M:      Teddy Wang <[email protected]>
15402 M:      Sudip Mukherjee <[email protected]>
15403 L:      [email protected]
15404 S:      Maintained
15405 F:      drivers/staging/sm750fb/
15406
15407 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
15408 M:      William Hubbs <[email protected]>
15409 M:      Chris Brannon <[email protected]>
15410 M:      Kirk Reiser <[email protected]>
15411 M:      Samuel Thibault <[email protected]>
15412 L:      [email protected]
15413 W:      http://www.linux-speakup.org/
15414 S:      Odd Fixes
15415 F:      drivers/staging/speakup/
15416
15417 STAGING - VIA VT665X DRIVERS
15418 M:      Forest Bond <[email protected]>
15419 S:      Odd Fixes
15420 F:      drivers/staging/vt665?/
15421
15422 STAGING - WILC1000 WIFI DRIVER
15423 M:      Adham Abozaeid <[email protected]>
15424 M:      Ajay Singh <[email protected]>
15425 L:      [email protected]
15426 S:      Supported
15427 F:      drivers/staging/wilc1000/
15428
15429 STAGING SUBSYSTEM
15430 M:      Greg Kroah-Hartman <[email protected]>
15431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
15432 L:      [email protected]
15433 S:      Supported
15434 F:      drivers/staging/
15435
15436 STARFIRE/DURALAN NETWORK DRIVER
15437 M:      Ion Badulescu <[email protected]>
15438 S:      Odd Fixes
15439 F:      drivers/net/ethernet/adaptec/starfire*
15440
15441 STEC S1220 SKD DRIVER
15442 M:      Damien Le Moal <[email protected]>
15443 L:      [email protected]
15444 S:      Maintained
15445 F:      drivers/block/skd*[ch]
15446
15447 STI AUDIO (ASoC) DRIVERS
15448 M:      Arnaud Pouliquen <[email protected]>
15449 L:      [email protected] (moderated for non-subscribers)
15450 S:      Maintained
15451 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
15452 F:      sound/soc/sti/
15453
15454 STI CEC DRIVER
15455 M:      Benjamin Gaignard <[email protected]>
15456 S:      Maintained
15457 F:      drivers/media/platform/sti/cec/
15458 F:      Documentation/devicetree/bindings/media/stih-cec.txt
15459
15460 STK1160 USB VIDEO CAPTURE DRIVER
15461 M:      Ezequiel Garcia <[email protected]>
15462 L:      [email protected]
15463 T:      git git://linuxtv.org/media_tree.git
15464 S:      Maintained
15465 F:      drivers/media/usb/stk1160/
15466
15467 STM32 AUDIO (ASoC) DRIVERS
15468 M:      Olivier Moysan <[email protected]>
15469 M:      Arnaud Pouliquen <[email protected]>
15470 L:      [email protected] (moderated for non-subscribers)
15471 S:      Maintained
15472 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
15473 F:      sound/soc/stm/
15474
15475 STM32 TIMER/LPTIMER DRIVERS
15476 M:      Fabrice Gasnier <[email protected]>
15477 S:      Maintained
15478 F:      drivers/*/stm32-*timer*
15479 F:      drivers/pwm/pwm-stm32*
15480 F:      include/linux/*/stm32-*tim*
15481 F:      Documentation/ABI/testing/*timer-stm32
15482 F:      Documentation/devicetree/bindings/*/stm32-*timer*
15483 F:      Documentation/devicetree/bindings/pwm/pwm-stm32*
15484
15485 STMMAC ETHERNET DRIVER
15486 M:      Giuseppe Cavallaro <[email protected]>
15487 M:      Alexandre Torgue <[email protected]>
15488 M:      Jose Abreu <[email protected]>
15489 L:      [email protected]
15490 W:      http://www.stlinux.com
15491 S:      Supported
15492 F:      drivers/net/ethernet/stmicro/stmmac/
15493
15494 SUN3/3X
15495 M:      Sam Creasey <[email protected]>
15496 W:      http://sammy.net/sun3/
15497 S:      Maintained
15498 F:      arch/m68k/kernel/*sun3*
15499 F:      arch/m68k/sun3*/
15500 F:      arch/m68k/include/asm/sun3*
15501 F:      drivers/net/ethernet/i825xx/sun3*
15502
15503 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
15504 M:      Hans de Goede <[email protected]>
15505 L:      [email protected]
15506 S:      Maintained
15507 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
15508 F:      drivers/input/keyboard/sun4i-lradc-keys.c
15509
15510 SUNDANCE NETWORK DRIVER
15511 M:      Denis Kirjanov <[email protected]>
15512 L:      [email protected]
15513 S:      Maintained
15514 F:      drivers/net/ethernet/dlink/sundance.c
15515
15516 SUPERH
15517 M:      Yoshinori Sato <[email protected]>
15518 M:      Rich Felker <[email protected]>
15519 L:      [email protected]
15520 Q:      http://patchwork.kernel.org/project/linux-sh/list/
15521 S:      Maintained
15522 F:      Documentation/sh/
15523 F:      arch/sh/
15524 F:      drivers/sh/
15525
15526 SUSPEND TO RAM
15527 M:      "Rafael J. Wysocki" <[email protected]>
15528 M:      Len Brown <[email protected]>
15529 M:      Pavel Machek <[email protected]>
15530 L:      [email protected]
15531 B:      https://bugzilla.kernel.org
15532 S:      Supported
15533 F:      Documentation/power/
15534 F:      arch/x86/kernel/acpi/
15535 F:      drivers/base/power/
15536 F:      kernel/power/
15537 F:      include/linux/suspend.h
15538 F:      include/linux/freezer.h
15539 F:      include/linux/pm.h
15540
15541 SVGA HANDLING
15542 M:      Martin Mares <[email protected]>
15543 L:      [email protected]
15544 S:      Maintained
15545 F:      Documentation/admin-guide/svga.rst
15546 F:      arch/x86/boot/video*
15547
15548 SWIOTLB SUBSYSTEM
15549 M:      Konrad Rzeszutek Wilk <[email protected]>
15550 L:      [email protected]
15551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
15552 S:      Supported
15553 F:      kernel/dma/swiotlb.c
15554 F:      arch/*/kernel/pci-swiotlb.c
15555 F:      include/linux/swiotlb.h
15556
15557 SWITCHDEV
15558 M:      Jiri Pirko <[email protected]>
15559 M:      Ivan Vecera <[email protected]>
15560 L:      [email protected]
15561 S:      Supported
15562 F:      net/switchdev/
15563 F:      include/net/switchdev.h
15564
15565 SY8106A REGULATOR DRIVER
15566 M:      Icenowy Zheng <[email protected]>
15567 S:      Maintained
15568 F:      drivers/regulator/sy8106a-regulator.c
15569 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
15570
15571 SYNC FILE FRAMEWORK
15572 M:      Sumit Semwal <[email protected]>
15573 R:      Gustavo Padovan <[email protected]>
15574 S:      Maintained
15575 L:      [email protected]
15576 L:      [email protected]
15577 F:      drivers/dma-buf/sync_*
15578 F:      drivers/dma-buf/dma-fence*
15579 F:      drivers/dma-buf/sw_sync.c
15580 F:      include/linux/sync_file.h
15581 F:      include/uapi/linux/sync_file.h
15582 F:      Documentation/driver-api/sync_file.rst
15583 T:      git git://anongit.freedesktop.org/drm/drm-misc
15584
15585 SYNOPSYS ARC ARCHITECTURE
15586 M:      Vineet Gupta <[email protected]>
15587 L:      [email protected]
15588 S:      Supported
15589 F:      arch/arc/
15590 F:      Documentation/devicetree/bindings/arc/*
15591 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
15592 F:      drivers/clocksource/arc_timer.c
15593 F:      drivers/tty/serial/arc_uart.c
15594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
15595
15596 SYNOPSYS ARC HSDK SDP pll clock driver
15597 M:      Eugeniy Paltsev <[email protected]>
15598 S:      Supported
15599 F:      drivers/clk/clk-hsdk-pll.c
15600 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
15601
15602 SYNOPSYS ARC SDP clock driver
15603 M:      Eugeniy Paltsev <[email protected]>
15604 S:      Supported
15605 F:      drivers/clk/axs10x/*
15606 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
15607
15608 SYNOPSYS ARC SDP platform support
15609 M:      Alexey Brodkin <[email protected]>
15610 S:      Supported
15611 F:      arch/arc/plat-axs10x
15612 F:      arch/arc/boot/dts/ax*
15613 F:      Documentation/devicetree/bindings/arc/axs10*
15614
15615 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
15616 M:      Eugeniy Paltsev <[email protected]>
15617 S:      Supported
15618 F:      drivers/reset/reset-axs10x.c
15619 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
15620
15621 SYNOPSYS CREG GPIO DRIVER
15622 M:      Eugeniy Paltsev <[email protected]>
15623 S:      Maintained
15624 F:      drivers/gpio/gpio-creg-snps.c
15625 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
15626
15627 SYNOPSYS DESIGNWARE 8250 UART DRIVER
15628 R:      Andy Shevchenko <[email protected]>
15629 S:      Maintained
15630 F:      drivers/tty/serial/8250/8250_dw.c
15631
15632 SYNOPSYS DESIGNWARE APB GPIO DRIVER
15633 M:      Hoan Tran <[email protected]>
15634 L:      [email protected]
15635 S:      Maintained
15636 F:      drivers/gpio/gpio-dwapb.c
15637 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
15638
15639 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
15640 M:      Eugeniy Paltsev <[email protected]>
15641 S:      Maintained
15642 F:      drivers/dma/dw-axi-dmac/
15643 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
15644
15645 SYNOPSYS DESIGNWARE DMAC DRIVER
15646 M:      Viresh Kumar <[email protected]>
15647 R:      Andy Shevchenko <[email protected]>
15648 S:      Maintained
15649 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
15650 F:      drivers/dma/dw/
15651 F:      include/dt-bindings/dma/dw-dmac.h
15652 F:      include/linux/dma/dw.h
15653 F:      include/linux/platform_data/dma-dw.h
15654
15655 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
15656 M:      Jose Abreu <[email protected]>
15657 L:      [email protected]
15658 S:      Supported
15659 F:      drivers/net/ethernet/synopsys/
15660
15661 SYNOPSYS DESIGNWARE I2C DRIVER
15662 M:      Jarkko Nikula <[email protected]>
15663 R:      Andy Shevchenko <[email protected]>
15664 R:      Mika Westerberg <[email protected]>
15665 L:      [email protected]
15666 S:      Maintained
15667 F:      drivers/i2c/busses/i2c-designware-*
15668 F:      include/linux/platform_data/i2c-designware.h
15669
15670 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
15671 M:      Jaehoon Chung <[email protected]>
15672 L:      [email protected]
15673 S:      Maintained
15674 F:      drivers/mmc/host/dw_mmc*
15675
15676 SYNOPSYS HSDK RESET CONTROLLER DRIVER
15677 M:      Eugeniy Paltsev <[email protected]>
15678 S:      Supported
15679 F:      drivers/reset/reset-hsdk.c
15680 F:      include/dt-bindings/reset/snps,hsdk-reset.h
15681 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
15682
15683 SYSTEM CONFIGURATION (SYSCON)
15684 M:      Lee Jones <[email protected]>
15685 M:      Arnd Bergmann <[email protected]>
15686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
15687 S:      Supported
15688 F:      drivers/mfd/syscon.c
15689
15690 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
15691 M:      Sudeep Holla <[email protected]>
15692 L:      [email protected]
15693 S:      Maintained
15694 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
15695 F:      drivers/clk/clk-sc[mp]i.c
15696 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
15697 F:      drivers/firmware/arm_scpi.c
15698 F:      drivers/firmware/arm_scmi/
15699 F:      drivers/reset/reset-scmi.c
15700 F:      include/linux/sc[mp]i_protocol.h
15701
15702 SYSTEM RESET/SHUTDOWN DRIVERS
15703 M:      Sebastian Reichel <[email protected]>
15704 L:      [email protected]
15705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15706 S:      Maintained
15707 F:      Documentation/devicetree/bindings/power/reset/
15708 F:      drivers/power/reset/
15709
15710 SYSTEM TRACE MODULE CLASS
15711 M:      Alexander Shishkin <[email protected]>
15712 S:      Maintained
15713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
15714 F:      Documentation/trace/stm.rst
15715 F:      drivers/hwtracing/stm/
15716 F:      include/linux/stm.h
15717 F:      include/uapi/linux/stm.h
15718
15719 SYSV FILESYSTEM
15720 M:      Christoph Hellwig <[email protected]>
15721 S:      Maintained
15722 F:      Documentation/filesystems/sysv-fs.txt
15723 F:      fs/sysv/
15724 F:      include/linux/sysv_fs.h
15725
15726 TASKSTATS STATISTICS INTERFACE
15727 M:      Balbir Singh <[email protected]>
15728 S:      Maintained
15729 F:      Documentation/accounting/taskstats*
15730 F:      include/linux/taskstats*
15731 F:      kernel/taskstats.c
15732
15733 TC subsystem
15734 M:      Jamal Hadi Salim <[email protected]>
15735 M:      Cong Wang <[email protected]>
15736 M:      Jiri Pirko <[email protected]>
15737 L:      [email protected]
15738 S:      Maintained
15739 F:      include/net/pkt_cls.h
15740 F:      include/net/pkt_sched.h
15741 F:      include/net/tc_act/
15742 F:      include/uapi/linux/pkt_cls.h
15743 F:      include/uapi/linux/pkt_sched.h
15744 F:      include/uapi/linux/tc_act/
15745 F:      include/uapi/linux/tc_ematch/
15746 F:      net/sched/
15747
15748 TC90522 MEDIA DRIVER
15749 M:      Akihiro Tsukada <[email protected]>
15750 L:      [email protected]
15751 S:      Odd Fixes
15752 F:      drivers/media/dvb-frontends/tc90522*
15753
15754 TCP LOW PRIORITY MODULE
15755 M:      "Wong Hoi Sing, Edison" <[email protected]>
15756 M:      "Hung Hing Lun, Mike" <[email protected]>
15757 W:      http://tcp-lp-mod.sourceforge.net/
15758 S:      Maintained
15759 F:      net/ipv4/tcp_lp.c
15760
15761 TDA10071 MEDIA DRIVER
15762 M:      Antti Palosaari <[email protected]>
15763 L:      [email protected]
15764 W:      https://linuxtv.org
15765 W:      http://palosaari.fi/linux/
15766 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15767 T:      git git://linuxtv.org/anttip/media_tree.git
15768 S:      Maintained
15769 F:      drivers/media/dvb-frontends/tda10071*
15770
15771 TDA18212 MEDIA DRIVER
15772 M:      Antti Palosaari <[email protected]>
15773 L:      [email protected]
15774 W:      https://linuxtv.org
15775 W:      http://palosaari.fi/linux/
15776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15777 T:      git git://linuxtv.org/anttip/media_tree.git
15778 S:      Maintained
15779 F:      drivers/media/tuners/tda18212*
15780
15781 TDA18218 MEDIA DRIVER
15782 M:      Antti Palosaari <[email protected]>
15783 L:      [email protected]
15784 W:      https://linuxtv.org
15785 W:      http://palosaari.fi/linux/
15786 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15787 T:      git git://linuxtv.org/anttip/media_tree.git
15788 S:      Maintained
15789 F:      drivers/media/tuners/tda18218*
15790
15791 TDA18250 MEDIA DRIVER
15792 M:      Olli Salonen <[email protected]>
15793 L:      [email protected]
15794 W:      https://linuxtv.org
15795 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15796 T:      git git://linuxtv.org/media_tree.git
15797 S:      Maintained
15798 F:      drivers/media/tuners/tda18250*
15799
15800 TDA18271 MEDIA DRIVER
15801 M:      Michael Krufky <[email protected]>
15802 L:      [email protected]
15803 W:      https://linuxtv.org
15804 W:      http://github.com/mkrufky
15805 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15806 T:      git git://linuxtv.org/mkrufky/tuners.git
15807 S:      Maintained
15808 F:      drivers/media/tuners/tda18271*
15809
15810 TDA1997x MEDIA DRIVER
15811 M:      Tim Harvey <[email protected]>
15812 L:      [email protected]
15813 W:      https://linuxtv.org
15814 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15815 S:      Maintained
15816 F:      drivers/media/i2c/tda1997x.*
15817
15818 TDA827x MEDIA DRIVER
15819 M:      Michael Krufky <[email protected]>
15820 L:      [email protected]
15821 W:      https://linuxtv.org
15822 W:      http://github.com/mkrufky
15823 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15824 T:      git git://linuxtv.org/mkrufky/tuners.git
15825 S:      Maintained
15826 F:      drivers/media/tuners/tda8290.*
15827
15828 TDA8290 MEDIA DRIVER
15829 M:      Michael Krufky <[email protected]>
15830 L:      [email protected]
15831 W:      https://linuxtv.org
15832 W:      http://github.com/mkrufky
15833 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15834 T:      git git://linuxtv.org/mkrufky/tuners.git
15835 S:      Maintained
15836 F:      drivers/media/tuners/tda8290.*
15837
15838 TDA9840 MEDIA DRIVER
15839 M:      Hans Verkuil <[email protected]>
15840 L:      [email protected]
15841 T:      git git://linuxtv.org/media_tree.git
15842 W:      https://linuxtv.org
15843 S:      Maintained
15844 F:      drivers/media/i2c/tda9840*
15845
15846 TEA5761 TUNER DRIVER
15847 M:      Mauro Carvalho Chehab <[email protected]>
15848 L:      [email protected]
15849 W:      https://linuxtv.org
15850 T:      git git://linuxtv.org/media_tree.git
15851 S:      Odd fixes
15852 F:      drivers/media/tuners/tea5761.*
15853
15854 TEA5767 TUNER DRIVER
15855 M:      Mauro Carvalho Chehab <[email protected]>
15856 L:      [email protected]
15857 W:      https://linuxtv.org
15858 T:      git git://linuxtv.org/media_tree.git
15859 S:      Maintained
15860 F:      drivers/media/tuners/tea5767.*
15861
15862 TEA6415C MEDIA DRIVER
15863 M:      Hans Verkuil <[email protected]>
15864 L:      [email protected]
15865 T:      git git://linuxtv.org/media_tree.git
15866 W:      https://linuxtv.org
15867 S:      Maintained
15868 F:      drivers/media/i2c/tea6415c*
15869
15870 TEA6420 MEDIA DRIVER
15871 M:      Hans Verkuil <[email protected]>
15872 L:      [email protected]
15873 T:      git git://linuxtv.org/media_tree.git
15874 W:      https://linuxtv.org
15875 S:      Maintained
15876 F:      drivers/media/i2c/tea6420*
15877
15878 TEAM DRIVER
15879 M:      Jiri Pirko <[email protected]>
15880 L:      [email protected]
15881 S:      Supported
15882 F:      drivers/net/team/
15883 F:      include/linux/if_team.h
15884 F:      include/uapi/linux/if_team.h
15885
15886 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
15887 M:      "Savoir-faire Linux Inc." <[email protected]>
15888 S:      Maintained
15889 F:      arch/x86/platform/ts5500/
15890
15891 TECHNOTREND USB IR RECEIVER
15892 M:      Sean Young <[email protected]>
15893 L:      [email protected]
15894 S:      Maintained
15895 F:      drivers/media/rc/ttusbir.c
15896
15897 TECHWELL TW9910 VIDEO DECODER
15898 L:      [email protected]
15899 S:      Orphan
15900 F:      drivers/media/i2c/tw9910.c
15901 F:      include/media/i2c/tw9910.h
15902
15903 TEE SUBSYSTEM
15904 M:      Jens Wiklander <[email protected]>
15905 L:      [email protected]
15906 S:      Maintained
15907 F:      include/linux/tee_drv.h
15908 F:      include/uapi/linux/tee.h
15909 F:      drivers/tee/
15910 F:      Documentation/tee.txt
15911
15912 TEGRA ARCHITECTURE SUPPORT
15913 M:      Thierry Reding <[email protected]>
15914 M:      Jonathan Hunter <[email protected]>
15915 L:      [email protected]
15916 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
15917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
15918 S:      Supported
15919 N:      [^a-z]tegra
15920
15921 TEGRA CLOCK DRIVER
15922 M:      Peter De Schrijver <[email protected]>
15923 M:      Prashant Gaikwad <[email protected]>
15924 S:      Supported
15925 F:      drivers/clk/tegra/
15926
15927 TEGRA DMA DRIVERS
15928 M:      Laxman Dewangan <[email protected]>
15929 M:      Jon Hunter <[email protected]>
15930 S:      Supported
15931 F:      drivers/dma/tegra*
15932
15933 TEGRA I2C DRIVER
15934 M:      Laxman Dewangan <[email protected]>
15935 R:      Dmitry Osipenko <[email protected]>
15936 S:      Supported
15937 F:      drivers/i2c/busses/i2c-tegra.c
15938
15939 TEGRA IOMMU DRIVERS
15940 M:      Thierry Reding <[email protected]>
15941 L:      [email protected]
15942 S:      Supported
15943 F:      drivers/iommu/tegra*
15944
15945 TEGRA KBC DRIVER
15946 M:      Laxman Dewangan <[email protected]>
15947 S:      Supported
15948 F:      drivers/input/keyboard/tegra-kbc.c
15949
15950 TEGRA NAND DRIVER
15951 M:      Stefan Agner <[email protected]>
15952 M:      Lucas Stach <[email protected]>
15953 S:      Maintained
15954 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
15955 F:      drivers/mtd/nand/raw/tegra_nand.c
15956
15957 TEGRA PWM DRIVER
15958 M:      Thierry Reding <[email protected]>
15959 S:      Supported
15960 F:      drivers/pwm/pwm-tegra.c
15961
15962 TEGRA SERIAL DRIVER
15963 M:      Laxman Dewangan <[email protected]>
15964 S:      Supported
15965 F:      drivers/tty/serial/serial-tegra.c
15966
15967 TEGRA SPI DRIVER
15968 M:      Laxman Dewangan <[email protected]>
15969 S:      Supported
15970 F:      drivers/spi/spi-tegra*
15971
15972 TEGRA XUSB PADCTL DRIVER
15973 M:      JC Kuo <[email protected]>
15974 S:      Supported
15975 F:      drivers/phy/tegra/xusb*
15976
15977 TEHUTI ETHERNET DRIVER
15978 M:      Andy Gospodarek <[email protected]>
15979 L:      [email protected]
15980 S:      Supported
15981 F:      drivers/net/ethernet/tehuti/*
15982
15983 Telecom Clock Driver for MCPL0010
15984 M:      Mark Gross <[email protected]>
15985 S:      Supported
15986 F:      drivers/char/tlclk.c
15987
15988 TENSILICA XTENSA PORT (xtensa)
15989 M:      Chris Zankel <[email protected]>
15990 M:      Max Filippov <[email protected]>
15991 L:      [email protected]
15992 T:      git git://github.com/czankel/xtensa-linux.git
15993 S:      Maintained
15994 F:      arch/xtensa/
15995 F:      drivers/irqchip/irq-xtensa-*
15996
15997 Texas Instruments' System Control Interface (TISCI) Protocol Driver
15998 M:      Nishanth Menon <[email protected]>
15999 M:      Tero Kristo <[email protected]>
16000 M:      Santosh Shilimkar <[email protected]>
16001 L:      [email protected]
16002 S:      Maintained
16003 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16004 F:      drivers/firmware/ti_sci*
16005 F:      include/linux/soc/ti/ti_sci_protocol.h
16006 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16007 F:      drivers/soc/ti/ti_sci_pm_domains.c
16008 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16009 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16010 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16011 F:      drivers/clk/keystone/sci-clk.c
16012 F:      drivers/reset/reset-ti-sci.c
16013 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16014 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16015 F:      drivers/irqchip/irq-ti-sci-intr.c
16016 F:      drivers/irqchip/irq-ti-sci-inta.c
16017 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16018 F:      drivers/soc/ti/ti_sci_inta_msi.c
16019
16020 Texas Instruments ASoC drivers
16021 M:      Peter Ujfalusi <[email protected]>
16022 L:      [email protected] (moderated for non-subscribers)
16023 S:      Maintained
16024 F:      sound/soc/ti/
16025
16026 Texas Instruments' DAC7612 DAC Driver
16027 M:      Ricardo Ribalda <[email protected]>
16028 L:      [email protected]
16029 S:      Supported
16030 F:      drivers/iio/dac/ti-dac7612.c
16031 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16032
16033 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16034 M:      Hans Verkuil <[email protected]>
16035 L:      [email protected]
16036 T:      git git://linuxtv.org/media_tree.git
16037 W:      https://linuxtv.org
16038 S:      Maintained
16039 F:      drivers/media/radio/radio-raremono.c
16040
16041 THERMAL
16042 M:      Zhang Rui <[email protected]>
16043 M:      Eduardo Valentin <[email protected]>
16044 R:      Daniel Lezcano <[email protected]>
16045 L:      [email protected]
16046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
16047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
16048 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16049 S:      Supported
16050 F:      drivers/thermal/
16051 F:      include/linux/thermal.h
16052 F:      include/uapi/linux/thermal.h
16053 F:      include/linux/cpu_cooling.h
16054 F:      Documentation/devicetree/bindings/thermal/
16055
16056 THERMAL/CPU_COOLING
16057 M:      Amit Daniel Kachhap <[email protected]>
16058 M:      Viresh Kumar <[email protected]>
16059 M:      Javi Merino <[email protected]>
16060 L:      [email protected]
16061 S:      Supported
16062 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16063 F:      drivers/thermal/cpu_cooling.c
16064 F:      include/linux/cpu_cooling.h
16065
16066 THINKPAD ACPI EXTRAS DRIVER
16067 M:      Henrique de Moraes Holschuh <[email protected]>
16068 L:      [email protected]
16069 L:      [email protected]
16070 W:      http://ibm-acpi.sourceforge.net
16071 W:      http://thinkwiki.org/wiki/Ibm-acpi
16072 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16073 S:      Maintained
16074 F:      drivers/platform/x86/thinkpad_acpi.c
16075
16076 THUNDERBOLT DRIVER
16077 M:      Andreas Noever <[email protected]>
16078 M:      Michael Jamet <[email protected]>
16079 M:      Mika Westerberg <[email protected]>
16080 M:      Yehezkel Bernat <[email protected]>
16081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16082 S:      Maintained
16083 F:      Documentation/admin-guide/thunderbolt.rst
16084 F:      drivers/thunderbolt/
16085 F:      include/linux/thunderbolt.h
16086
16087 THUNDERBOLT NETWORK DRIVER
16088 M:      Michael Jamet <[email protected]>
16089 M:      Mika Westerberg <[email protected]>
16090 M:      Yehezkel Bernat <[email protected]>
16091 L:      [email protected]
16092 S:      Maintained
16093 F:      drivers/net/thunderbolt.c
16094
16095 THUNDERX GPIO DRIVER
16096 M:      David Daney <[email protected]>
16097 S:      Maintained
16098 F:      drivers/gpio/gpio-thunderx.c
16099
16100 TI AM437X VPFE DRIVER
16101 M:      "Lad, Prabhakar" <[email protected]>
16102 L:      [email protected]
16103 W:      https://linuxtv.org
16104 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16105 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16106 S:      Maintained
16107 F:      drivers/media/platform/am437x/
16108
16109 TI BANDGAP AND THERMAL DRIVER
16110 M:      Eduardo Valentin <[email protected]>
16111 M:      Keerthy <[email protected]>
16112 L:      [email protected]
16113 L:      [email protected]
16114 S:      Maintained
16115 F:      drivers/thermal/ti-soc-thermal/
16116
16117 TI BQ27XXX POWER SUPPLY DRIVER
16118 R:      Andrew F. Davis <[email protected]>
16119 F:      include/linux/power/bq27xxx_battery.h
16120 F:      drivers/power/supply/bq27xxx_battery.c
16121 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16122
16123 TI CDCE706 CLOCK DRIVER
16124 M:      Max Filippov <[email protected]>
16125 S:      Maintained
16126 F:      drivers/clk/clk-cdce706.c
16127
16128 TI CLOCK DRIVER
16129 M:      Tero Kristo <[email protected]>
16130 L:      [email protected]
16131 S:      Maintained
16132 F:      drivers/clk/ti/
16133 F:      include/linux/clk/ti.h
16134
16135 TI DAVINCI MACHINE SUPPORT
16136 M:      Sekhar Nori <[email protected]>
16137 R:      Bartosz Golaszewski <[email protected]>
16138 L:      [email protected] (moderated for non-subscribers)
16139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16140 S:      Supported
16141 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16142 F:      arch/arm/mach-davinci/
16143 F:      drivers/i2c/busses/i2c-davinci.c
16144 F:      arch/arm/boot/dts/da850*
16145
16146 TI DAVINCI SERIES CLOCK DRIVER
16147 M:      David Lechner <[email protected]>
16148 R:      Sekhar Nori <[email protected]>
16149 S:      Maintained
16150 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16151 F:      drivers/clk/davinci/
16152
16153 TI DAVINCI SERIES GPIO DRIVER
16154 M:      Keerthy <[email protected]>
16155 L:      [email protected]
16156 S:      Maintained
16157 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16158 F:      drivers/gpio/gpio-davinci.c
16159
16160 TI DAVINCI SERIES MEDIA DRIVER
16161 M:      "Lad, Prabhakar" <[email protected]>
16162 L:      [email protected]
16163 W:      https://linuxtv.org
16164 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16165 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16166 S:      Maintained
16167 F:      drivers/media/platform/davinci/
16168 F:      include/media/davinci/
16169
16170 TI ETHERNET SWITCH DRIVER (CPSW)
16171 R:      Grygorii Strashko <[email protected]>
16172 L:      [email protected]
16173 L:      [email protected]
16174 S:      Maintained
16175 F:      drivers/net/ethernet/ti/cpsw*
16176 F:      drivers/net/ethernet/ti/davinci*
16177
16178 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16179 M:      Alex Dubov <[email protected]>
16180 S:      Maintained
16181 W:      http://tifmxx.berlios.de/
16182 F:      drivers/memstick/host/tifm_ms.c
16183 F:      drivers/misc/tifm*
16184 F:      drivers/mmc/host/tifm_sd.c
16185 F:      include/linux/tifm.h
16186
16187 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16188 M:      Santosh Shilimkar <[email protected]>
16189 L:      [email protected]
16190 L:      [email protected] (moderated for non-subscribers)
16191 S:      Maintained
16192 F:      drivers/soc/ti/*
16193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16194
16195 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16196 M:      M R Swami Reddy <[email protected]>
16197 M:      Vishwas A Deshpande <[email protected]>
16198 L:      [email protected] (moderated for non-subscribers)
16199 S:      Maintained
16200 F:      sound/soc/codecs/lm49453*
16201 F:      sound/soc/codecs/isabelle*
16202
16203 TI LP855x BACKLIGHT DRIVER
16204 M:      Milo Kim <[email protected]>
16205 S:      Maintained
16206 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16207 F:      drivers/video/backlight/lp855x_bl.c
16208 F:      include/linux/platform_data/lp855x.h
16209
16210 TI LP8727 CHARGER DRIVER
16211 M:      Milo Kim <[email protected]>
16212 S:      Maintained
16213 F:      drivers/power/supply/lp8727_charger.c
16214 F:      include/linux/platform_data/lp8727.h
16215
16216 TI LP8788 MFD DRIVER
16217 M:      Milo Kim <[email protected]>
16218 S:      Maintained
16219 F:      drivers/iio/adc/lp8788_adc.c
16220 F:      drivers/leds/leds-lp8788.c
16221 F:      drivers/mfd/lp8788*.c
16222 F:      drivers/power/supply/lp8788-charger.c
16223 F:      drivers/regulator/lp8788-*.c
16224 F:      include/linux/mfd/lp8788*.h
16225
16226 TI NETCP ETHERNET DRIVER
16227 M:      Wingman Kwok <[email protected]>
16228 M:      Murali Karicheri <[email protected]>
16229 L:      [email protected]
16230 S:      Maintained
16231 F:      drivers/net/ethernet/ti/netcp*
16232
16233 TI PCM3060 ASoC CODEC DRIVER
16234 M:      Kirill Marinushkin <[email protected]>
16235 L:      [email protected] (moderated for non-subscribers)
16236 S:      Maintained
16237 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16238 F:      sound/soc/codecs/pcm3060*
16239
16240 TI TAS571X FAMILY ASoC CODEC DRIVER
16241 M:      Kevin Cernekee <[email protected]>
16242 L:      [email protected] (moderated for non-subscribers)
16243 S:      Odd Fixes
16244 F:      sound/soc/codecs/tas571x*
16245
16246 TI TRF7970A NFC DRIVER
16247 M:      Mark Greer <[email protected]>
16248 L:      [email protected]
16249 L:      [email protected] (moderated for non-subscribers)
16250 S:      Supported
16251 F:      drivers/nfc/trf7970a.c
16252 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16253
16254 TI TWL4030 SERIES SOC CODEC DRIVER
16255 M:      Peter Ujfalusi <[email protected]>
16256 L:      [email protected] (moderated for non-subscribers)
16257 S:      Maintained
16258 F:      sound/soc/codecs/twl4030*
16259
16260 TI VPE/CAL DRIVERS
16261 M:      Benoit Parrot <[email protected]>
16262 L:      [email protected]
16263 W:      http://linuxtv.org/
16264 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16265 S:      Maintained
16266 F:      drivers/media/platform/ti-vpe/
16267
16268 TI WILINK WIRELESS DRIVERS
16269 L:      [email protected]
16270 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16271 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16273 S:      Orphan
16274 F:      drivers/net/wireless/ti/
16275 F:      include/linux/wl12xx.h
16276
16277 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16278 M:      John Stultz <[email protected]>
16279 M:      Thomas Gleixner <[email protected]>
16280 R:      Stephen Boyd <[email protected]>
16281 L:      [email protected]
16282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16283 S:      Supported
16284 F:      include/linux/clocksource.h
16285 F:      include/linux/time.h
16286 F:      include/linux/timex.h
16287 F:      include/uapi/linux/time.h
16288 F:      include/uapi/linux/timex.h
16289 F:      kernel/time/clocksource.c
16290 F:      kernel/time/time*.c
16291 F:      kernel/time/alarmtimer.c
16292 F:      kernel/time/ntp.c
16293 F:      tools/testing/selftests/timers/
16294
16295 TIPC NETWORK LAYER
16296 M:      Jon Maloy <[email protected]>
16297 M:      Ying Xue <[email protected]>
16298 L:      [email protected] (core kernel code)
16299 L:      [email protected] (user apps, general discussion)
16300 W:      http://tipc.sourceforge.net/
16301 S:      Maintained
16302 F:      include/uapi/linux/tipc*.h
16303 F:      net/tipc/
16304
16305 TLAN NETWORK DRIVER
16306 M:      Samuel Chessman <[email protected]>
16307 L:      [email protected] (subscribers-only)
16308 W:      http://sourceforge.net/projects/tlan/
16309 S:      Maintained
16310 F:      Documentation/networking/device_drivers/ti/tlan.txt
16311 F:      drivers/net/ethernet/ti/tlan.*
16312
16313 TM6000 VIDEO4LINUX DRIVER
16314 M:      Mauro Carvalho Chehab <[email protected]>
16315 L:      [email protected]
16316 W:      https://linuxtv.org
16317 T:      git git://linuxtv.org/media_tree.git
16318 S:      Odd fixes
16319 F:      drivers/media/usb/tm6000/
16320 F:      Documentation/media/v4l-drivers/tm6000*
16321
16322 TMIO/SDHI MMC DRIVER
16323 M:      Wolfram Sang <[email protected]>
16324 L:      [email protected]
16325 S:      Supported
16326 F:      drivers/mmc/host/tmio_mmc*
16327 F:      drivers/mmc/host/renesas_sdhi*
16328 F:      include/linux/mfd/tmio.h
16329
16330 TMP401 HARDWARE MONITOR DRIVER
16331 M:      Guenter Roeck <[email protected]>
16332 L:      [email protected]
16333 S:      Maintained
16334 F:      Documentation/hwmon/tmp401.rst
16335 F:      drivers/hwmon/tmp401.c
16336
16337 TMPFS (SHMEM FILESYSTEM)
16338 M:      Hugh Dickins <[email protected]>
16339 L:      [email protected]
16340 S:      Maintained
16341 F:      include/linux/shmem_fs.h
16342 F:      mm/shmem.c
16343
16344 TOMOYO SECURITY MODULE
16345 M:      Kentaro Takeda <[email protected]>
16346 M:      Tetsuo Handa <[email protected]>
16347 L:      [email protected] (subscribers-only, for developers in English)
16348 L:      [email protected] (subscribers-only, for users in English)
16349 L:      [email protected] (subscribers-only, for developers in Japanese)
16350 L:      [email protected] (subscribers-only, for users in Japanese)
16351 W:      https://tomoyo.osdn.jp/
16352 S:      Maintained
16353 F:      security/tomoyo/
16354
16355 TOPSTAR LAPTOP EXTRAS DRIVER
16356 M:      Herton Ronaldo Krzesinski <[email protected]>
16357 L:      [email protected]
16358 S:      Maintained
16359 F:      drivers/platform/x86/topstar-laptop.c
16360
16361 TORTURE-TEST MODULES
16362 M:      Davidlohr Bueso <[email protected]>
16363 M:      "Paul E. McKenney" <[email protected]>
16364 M:      Josh Triplett <[email protected]>
16365 L:      [email protected]
16366 S:      Supported
16367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16368 F:      Documentation/RCU/torture.txt
16369 F:      kernel/torture.c
16370 F:      kernel/rcu/rcutorture.c
16371 F:      kernel/rcu/rcuperf.c
16372 F:      kernel/locking/locktorture.c
16373
16374 TOSHIBA ACPI EXTRAS DRIVER
16375 M:      Azael Avalos <[email protected]>
16376 L:      [email protected]
16377 S:      Maintained
16378 F:      drivers/platform/x86/toshiba_acpi.c
16379
16380 TOSHIBA BLUETOOTH DRIVER
16381 M:      Azael Avalos <[email protected]>
16382 L:      [email protected]
16383 S:      Maintained
16384 F:      drivers/platform/x86/toshiba_bluetooth.c
16385
16386 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
16387 M:      Azael Avalos <[email protected]>
16388 L:      [email protected]
16389 S:      Maintained
16390 F:      drivers/platform/x86/toshiba_haps.c
16391
16392 TOSHIBA SMM DRIVER
16393 M:      Jonathan Buzzard <[email protected]>
16394 W:      http://www.buzzard.org.uk/toshiba/
16395 S:      Maintained
16396 F:      drivers/char/toshiba.c
16397 F:      include/linux/toshiba.h
16398 F:      include/uapi/linux/toshiba.h
16399
16400 TOSHIBA TC358743 DRIVER
16401 M:      Mats Randgaard <[email protected]>
16402 L:      [email protected]
16403 S:      Maintained
16404 F:      drivers/media/i2c/tc358743*
16405 F:      include/media/i2c/tc358743.h
16406
16407 TOSHIBA WMI HOTKEYS DRIVER
16408 M:      Azael Avalos <[email protected]>
16409 L:      [email protected]
16410 S:      Maintained
16411 F:      drivers/platform/x86/toshiba-wmi.c
16412
16413 TPM DEVICE DRIVER
16414 M:      Peter Huewe <[email protected]>
16415 M:      Jarkko Sakkinen <[email protected]>
16416 R:      Jason Gunthorpe <[email protected]>
16417 L:      [email protected]
16418 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
16419 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
16420 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
16421 S:      Maintained
16422 F:      drivers/char/tpm/
16423
16424 TRACING
16425 M:      Steven Rostedt <[email protected]>
16426 M:      Ingo Molnar <[email protected]>
16427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16428 S:      Maintained
16429 F:      Documentation/trace/ftrace.rst
16430 F:      arch/*/*/*/ftrace.h
16431 F:      arch/*/kernel/ftrace.c
16432 F:      include/*/ftrace.h
16433 F:      include/linux/trace*.h
16434 F:      include/trace/
16435 F:      kernel/trace/
16436 F:      tools/testing/selftests/ftrace/
16437
16438 TRACING MMIO ACCESSES (MMIOTRACE)
16439 M:      Steven Rostedt <[email protected]>
16440 M:      Ingo Molnar <[email protected]>
16441 R:      Karol Herbst <[email protected]>
16442 R:      Pekka Paalanen <[email protected]>
16443 S:      Maintained
16444 L:      [email protected]
16445 L:      [email protected]
16446 F:      kernel/trace/trace_mmiotrace.c
16447 F:      include/linux/mmiotrace.h
16448 F:      arch/x86/mm/kmmio.c
16449 F:      arch/x86/mm/mmio-mod.c
16450 F:      arch/x86/mm/testmmiotrace.c
16451
16452 TRIVIAL PATCHES
16453 M:      Jiri Kosina <[email protected]>
16454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
16455 S:      Maintained
16456 K:      ^Subject:.*(?i)trivial
16457
16458 TEMPO SEMICONDUCTOR DRIVERS
16459 M:      Steven Eckhoff <[email protected]>
16460 S:      Maintained
16461 F:      sound/soc/codecs/tscs*.c
16462 F:      sound/soc/codecs/tscs*.h
16463 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16464
16465 TTY LAYER
16466 M:      Greg Kroah-Hartman <[email protected]>
16467 M:      Jiri Slaby <[email protected]>
16468 S:      Supported
16469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
16470 F:      Documentation/driver-api/serial/
16471 F:      drivers/tty/
16472 F:      drivers/tty/serial/serial_core.c
16473 F:      include/linux/serial_core.h
16474 F:      include/linux/serial.h
16475 F:      include/linux/tty.h
16476 F:      include/uapi/linux/serial_core.h
16477 F:      include/uapi/linux/serial.h
16478 F:      include/uapi/linux/tty.h
16479
16480 TUA9001 MEDIA DRIVER
16481 M:      Antti Palosaari <[email protected]>
16482 L:      [email protected]
16483 W:      https://linuxtv.org
16484 W:      http://palosaari.fi/linux/
16485 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16486 T:      git git://linuxtv.org/anttip/media_tree.git
16487 S:      Maintained
16488 F:      drivers/media/tuners/tua9001*
16489
16490 TULIP NETWORK DRIVERS
16491 L:      [email protected]
16492 L:      [email protected]
16493 S:      Orphan
16494 F:      drivers/net/ethernet/dec/tulip/
16495
16496 TUN/TAP driver
16497 M:      Maxim Krasnyansky <[email protected]>
16498 W:      http://vtun.sourceforge.net/tun
16499 S:      Maintained
16500 F:      Documentation/networking/tuntap.txt
16501 F:      arch/um/os-Linux/drivers/
16502
16503 TURBOCHANNEL SUBSYSTEM
16504 M:      "Maciej W. Rozycki" <[email protected]>
16505 M:      Ralf Baechle <[email protected]>
16506 L:      [email protected]
16507 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
16508 S:      Maintained
16509 F:      drivers/tc/
16510 F:      include/linux/tc.h
16511
16512 TURBOSTAT UTILITY
16513 M:      "Len Brown" <[email protected]>
16514 L:      [email protected]
16515 B:      https://bugzilla.kernel.org
16516 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
16518 S:      Supported
16519 F:      tools/power/x86/turbostat/
16520
16521 TW5864 VIDEO4LINUX DRIVER
16522 M:      Bluecherry Maintainers <[email protected]>
16523 M:      Anton Sviridenko <[email protected]>
16524 M:      Andrey Utkin <[email protected]>
16525 M:      Andrey Utkin <[email protected]>
16526 L:      [email protected]
16527 S:      Supported
16528 F:      drivers/media/pci/tw5864/
16529
16530 TW68 VIDEO4LINUX DRIVER
16531 M:      Hans Verkuil <[email protected]>
16532 L:      [email protected]
16533 T:      git git://linuxtv.org/media_tree.git
16534 W:      https://linuxtv.org
16535 S:      Odd Fixes
16536 F:      drivers/media/pci/tw68/
16537
16538 TW686X VIDEO4LINUX DRIVER
16539 M:      Ezequiel Garcia <[email protected]>
16540 L:      [email protected]
16541 T:      git git://linuxtv.org/media_tree.git
16542 W:      http://linuxtv.org
16543 S:      Maintained
16544 F:      drivers/media/pci/tw686x/
16545
16546 UBI FILE SYSTEM (UBIFS)
16547 M:      Richard Weinberger <[email protected]>
16548 M:      Artem Bityutskiy <[email protected]>
16549 M:      Adrian Hunter <[email protected]>
16550 L:      [email protected]
16551 T:      git git://git.infradead.org/ubifs-2.6.git
16552 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
16553 S:      Supported
16554 F:      Documentation/filesystems/ubifs.txt
16555 F:      fs/ubifs/
16556
16557 UCLINUX (M68KNOMMU AND COLDFIRE)
16558 M:      Greg Ungerer <[email protected]>
16559 W:      http://www.linux-m68k.org/
16560 W:      http://www.uclinux.org/
16561 L:      [email protected]
16562 L:      [email protected]  (subscribers-only)
16563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
16564 S:      Maintained
16565 F:      arch/m68k/coldfire/
16566 F:      arch/m68k/68*/
16567 F:      arch/m68k/*/*_no.*
16568 F:      arch/m68k/include/asm/*_no.*
16569
16570 UDF FILESYSTEM
16571 M:      Jan Kara <[email protected]>
16572 S:      Maintained
16573 F:      Documentation/filesystems/udf.txt
16574 F:      fs/udf/
16575
16576 UDRAW TABLET
16577 M:      Bastien Nocera <[email protected]>
16578 L:      [email protected]
16579 S:      Maintained
16580 F:      drivers/hid/hid-udraw-ps3.c
16581
16582 UFS FILESYSTEM
16583 M:      Evgeniy Dushistov <[email protected]>
16584 S:      Maintained
16585 F:      Documentation/admin-guide/ufs.rst
16586 F:      fs/ufs/
16587
16588 UHID USERSPACE HID IO DRIVER:
16589 M:      David Herrmann <[email protected]>
16590 L:      [email protected]
16591 S:      Maintained
16592 F:      drivers/hid/uhid.c
16593 F:      include/uapi/linux/uhid.h
16594
16595 ULPI BUS
16596 M:      Heikki Krogerus <[email protected]>
16597 L:      [email protected]
16598 S:      Maintained
16599 F:      drivers/usb/common/ulpi.c
16600 F:      include/linux/ulpi/
16601
16602 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
16603 L:      [email protected]
16604 S:      Obsolete
16605 F:      drivers/staging/uwb/
16606
16607 UNICODE SUBSYSTEM:
16608 M:      Gabriel Krisman Bertazi <[email protected]>
16609 L:      [email protected]
16610 S:      Supported
16611 F:      fs/unicode/
16612
16613 UNICORE32 ARCHITECTURE:
16614 M:      Guan Xuetao <[email protected]>
16615 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
16616 S:      Maintained
16617 T:      git git://github.com/gxt/linux.git
16618 F:      arch/unicore32/
16619
16620 UNIFDEF
16621 M:      Tony Finch <[email protected]>
16622 W:      http://dotat.at/prog/unifdef
16623 S:      Maintained
16624 F:      scripts/unifdef.c
16625
16626 UNIFORM CDROM DRIVER
16627 M:      Jens Axboe <[email protected]>
16628 W:      http://www.kernel.dk
16629 S:      Maintained
16630 F:      Documentation/cdrom/
16631 F:      drivers/cdrom/cdrom.c
16632 F:      include/linux/cdrom.h
16633 F:      include/uapi/linux/cdrom.h
16634
16635 UNISYS S-PAR DRIVERS
16636 M:      David Kershner <[email protected]>
16637 L:      [email protected] (Unisys internal)
16638 S:      Supported
16639 F:      include/linux/visorbus.h
16640 F:      drivers/visorbus/
16641 F:      drivers/staging/unisys/
16642
16643 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
16644 R:      Alim Akhtar <[email protected]>
16645 R:      Avri Altman <[email protected]>
16646 R:      Pedro Sousa <[email protected]>
16647 L:      [email protected]
16648 S:      Supported
16649 F:      Documentation/scsi/ufs.txt
16650 F:      drivers/scsi/ufs/
16651
16652 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
16653 M:      Pedro Sousa <[email protected]>
16654 L:      [email protected]
16655 S:      Supported
16656 F:      drivers/scsi/ufs/*dwc*
16657
16658 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
16659 M:      Stanley Chu <[email protected]>
16660 L:      [email protected]
16661 L:      [email protected] (moderated for non-subscribers)
16662 S:      Maintained
16663 F:      drivers/scsi/ufs/ufs-mediatek*
16664
16665 UNSORTED BLOCK IMAGES (UBI)
16666 M:      Artem Bityutskiy <[email protected]>
16667 M:      Richard Weinberger <[email protected]>
16668 W:      http://www.linux-mtd.infradead.org/
16669 L:      [email protected]
16670 T:      git git://git.infradead.org/ubifs-2.6.git
16671 S:      Supported
16672 F:      drivers/mtd/ubi/
16673 F:      include/linux/mtd/ubi.h
16674 F:      include/uapi/mtd/ubi-user.h
16675
16676 USB "USBNET" DRIVER FRAMEWORK
16677 M:      Oliver Neukum <[email protected]>
16678 L:      [email protected]
16679 W:      http://www.linux-usb.org/usbnet
16680 S:      Maintained
16681 F:      drivers/net/usb/usbnet.c
16682 F:      include/linux/usb/usbnet.h
16683
16684 USB ACM DRIVER
16685 M:      Oliver Neukum <[email protected]>
16686 L:      [email protected]
16687 S:      Maintained
16688 F:      Documentation/usb/acm.rst
16689 F:      drivers/usb/class/cdc-acm.*
16690
16691 USB AR5523 WIRELESS DRIVER
16692 M:      Pontus Fuchs <[email protected]>
16693 L:      [email protected]
16694 S:      Maintained
16695 F:      drivers/net/wireless/ath/ar5523/
16696
16697 USB ATTACHED SCSI
16698 M:      Oliver Neukum <[email protected]>
16699 L:      [email protected]
16700 L:      [email protected]
16701 S:      Maintained
16702 F:      drivers/usb/storage/uas.c
16703
16704 USB CDC ETHERNET DRIVER
16705 M:      Oliver Neukum <[email protected]>
16706 L:      [email protected]
16707 S:      Maintained
16708 F:      drivers/net/usb/cdc_*.c
16709 F:      include/uapi/linux/usb/cdc.h
16710
16711 USB CHAOSKEY DRIVER
16712 M:      Keith Packard <[email protected]>
16713 L:      [email protected]
16714 S:      Maintained
16715 F:      drivers/usb/misc/chaoskey.c
16716
16717 USB CYPRESS C67X00 DRIVER
16718 M:      Peter Korsgaard <[email protected]>
16719 L:      [email protected]
16720 S:      Maintained
16721 F:      drivers/usb/c67x00/
16722
16723 USB DAVICOM DM9601 DRIVER
16724 M:      Peter Korsgaard <[email protected]>
16725 L:      [email protected]
16726 W:      http://www.linux-usb.org/usbnet
16727 S:      Maintained
16728 F:      drivers/net/usb/dm9601.c
16729
16730 USB DIAMOND RIO500 DRIVER
16731 M:      Cesar Miquel <[email protected]>
16732 L:      [email protected]
16733 W:      http://rio500.sourceforge.net
16734 S:      Maintained
16735 F:      drivers/usb/misc/rio500*
16736
16737 USB EHCI DRIVER
16738 M:      Alan Stern <[email protected]>
16739 L:      [email protected]
16740 S:      Maintained
16741 F:      Documentation/usb/ehci.rst
16742 F:      drivers/usb/host/ehci*
16743
16744 USB GADGET/PERIPHERAL SUBSYSTEM
16745 M:      Felipe Balbi <[email protected]>
16746 L:      [email protected]
16747 W:      http://www.linux-usb.org/gadget
16748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16749 S:      Maintained
16750 F:      drivers/usb/gadget/
16751 F:      include/linux/usb/gadget*
16752
16753 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
16754 M:      Jiri Kosina <[email protected]>
16755 M:      Benjamin Tissoires <[email protected]>
16756 L:      [email protected]
16757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
16758 S:      Maintained
16759 F:      Documentation/hid/hiddev.rst
16760 F:      drivers/hid/usbhid/
16761
16762 USB INTEL XHCI ROLE MUX DRIVER
16763 M:      Hans de Goede <[email protected]>
16764 L:      [email protected]
16765 S:      Maintained
16766 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
16767
16768 USB IP DRIVER FOR HISILICON KIRIN
16769 M:      Yu Chen <[email protected]>
16770 M:      Binghui Wang <[email protected]>
16771 L:      [email protected]
16772 S:      Maintained
16773 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
16774 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
16775
16776 USB ISP116X DRIVER
16777 M:      Olav Kongas <[email protected]>
16778 L:      [email protected]
16779 S:      Maintained
16780 F:      drivers/usb/host/isp116x*
16781 F:      include/linux/usb/isp116x.h
16782
16783 USB LAN78XX ETHERNET DRIVER
16784 M:      Woojung Huh <[email protected]>
16785 M:      Microchip Linux Driver Support <[email protected]>
16786 L:      [email protected]
16787 S:      Maintained
16788 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
16789 F:      drivers/net/usb/lan78xx.*
16790 F:      include/dt-bindings/net/microchip-lan78xx.h
16791
16792 USB MASS STORAGE DRIVER
16793 M:      Alan Stern <[email protected]>
16794 L:      [email protected]
16795 L:      [email protected]
16796 S:      Maintained
16797 F:      drivers/usb/storage/
16798
16799 USB MIDI DRIVER
16800 M:      Clemens Ladisch <[email protected]>
16801 L:      [email protected] (moderated for non-subscribers)
16802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16803 S:      Maintained
16804 F:      sound/usb/midi.*
16805
16806 USB NETWORKING DRIVERS
16807 L:      [email protected]
16808 S:      Odd Fixes
16809 F:      drivers/net/usb/
16810
16811 USB OHCI DRIVER
16812 M:      Alan Stern <[email protected]>
16813 L:      [email protected]
16814 S:      Maintained
16815 F:      Documentation/usb/ohci.rst
16816 F:      drivers/usb/host/ohci*
16817
16818 USB OTG FSM (Finite State Machine)
16819 M:      Peter Chen <[email protected]>
16820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
16821 L:      [email protected]
16822 S:      Maintained
16823 F:      drivers/usb/common/usb-otg-fsm.c
16824
16825 USB OVER IP DRIVER
16826 M:      Valentina Manea <[email protected]>
16827 M:      Shuah Khan <[email protected]>
16828 M:      Shuah Khan <[email protected]>
16829 L:      [email protected]
16830 S:      Maintained
16831 F:      Documentation/usb/usbip_protocol.rst
16832 F:      drivers/usb/usbip/
16833 F:      tools/usb/usbip/
16834 F:      tools/testing/selftests/drivers/usb/usbip/
16835
16836 USB PEGASUS DRIVER
16837 M:      Petko Manolov <[email protected]>
16838 L:      [email protected]
16839 L:      [email protected]
16840 T:      git git://github.com/petkan/pegasus.git
16841 W:      https://github.com/petkan/pegasus
16842 S:      Maintained
16843 F:      drivers/net/usb/pegasus.*
16844
16845 USB PHY LAYER
16846 M:      Felipe Balbi <[email protected]>
16847 L:      [email protected]
16848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16849 S:      Maintained
16850 F:      drivers/usb/phy/
16851
16852 USB PRINTER DRIVER (usblp)
16853 M:      Pete Zaitcev <[email protected]>
16854 L:      [email protected]
16855 S:      Supported
16856 F:      drivers/usb/class/usblp.c
16857
16858 USB QMI WWAN NETWORK DRIVER
16859 M:      Bjørn Mork <[email protected]>
16860 L:      [email protected]
16861 S:      Maintained
16862 F:      Documentation/ABI/testing/sysfs-class-net-qmi
16863 F:      drivers/net/usb/qmi_wwan.c
16864
16865 USB RTL8150 DRIVER
16866 M:      Petko Manolov <[email protected]>
16867 L:      [email protected]
16868 L:      [email protected]
16869 T:      git git://github.com/petkan/rtl8150.git
16870 W:      https://github.com/petkan/rtl8150
16871 S:      Maintained
16872 F:      drivers/net/usb/rtl8150.c
16873
16874 USB SERIAL SUBSYSTEM
16875 M:      Johan Hovold <[email protected]>
16876 L:      [email protected]
16877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
16878 S:      Maintained
16879 F:      Documentation/usb/usb-serial.rst
16880 F:      drivers/usb/serial/
16881 F:      include/linux/usb/serial.h
16882
16883 USB SMSC75XX ETHERNET DRIVER
16884 M:      Steve Glendinning <[email protected]>
16885 L:      [email protected]
16886 S:      Maintained
16887 F:      drivers/net/usb/smsc75xx.*
16888
16889 USB SMSC95XX ETHERNET DRIVER
16890 M:      Steve Glendinning <[email protected]>
16891 M:      Microchip Linux Driver Support <[email protected]>
16892 L:      [email protected]
16893 S:      Maintained
16894 F:      drivers/net/usb/smsc95xx.*
16895
16896 USB SUBSYSTEM
16897 M:      Greg Kroah-Hartman <[email protected]>
16898 L:      [email protected]
16899 W:      http://www.linux-usb.org
16900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
16901 S:      Supported
16902 F:      Documentation/devicetree/bindings/usb/
16903 F:      Documentation/usb/
16904 F:      drivers/usb/
16905 F:      include/linux/usb.h
16906 F:      include/linux/usb/
16907
16908 USB TYPEC PI3USB30532 MUX DRIVER
16909 M:      Hans de Goede <[email protected]>
16910 L:      [email protected]
16911 S:      Maintained
16912 F:      drivers/usb/typec/mux/pi3usb30532.c
16913
16914 USB TYPEC CLASS
16915 M:      Heikki Krogerus <[email protected]>
16916 L:      [email protected]
16917 S:      Maintained
16918 F:      Documentation/ABI/testing/sysfs-class-typec
16919 F:      Documentation/driver-api/usb/typec.rst
16920 F:      drivers/usb/typec/
16921 F:      include/linux/usb/typec.h
16922
16923 USB TYPEC BUS FOR ALTERNATE MODES
16924 M:      Heikki Krogerus <[email protected]>
16925 L:      [email protected]
16926 S:      Maintained
16927 F:      Documentation/ABI/testing/sysfs-bus-typec
16928 F:      Documentation/driver-api/usb/typec_bus.rst
16929 F:      drivers/usb/typec/altmodes/
16930 F:      include/linux/usb/typec_altmode.h
16931
16932 USB TYPEC PORT CONTROLLER DRIVERS
16933 M:      Guenter Roeck <[email protected]>
16934 L:      [email protected]
16935 S:      Maintained
16936 F:      drivers/usb/typec/tcpm/
16937
16938 USB UHCI DRIVER
16939 M:      Alan Stern <[email protected]>
16940 L:      [email protected]
16941 S:      Maintained
16942 F:      drivers/usb/host/uhci*
16943
16944 USB VIDEO CLASS
16945 M:      Laurent Pinchart <[email protected]>
16946 L:      [email protected] (subscribers-only)
16947 L:      [email protected]
16948 T:      git git://linuxtv.org/media_tree.git
16949 W:      http://www.ideasonboard.org/uvc/
16950 S:      Maintained
16951 F:      drivers/media/usb/uvc/
16952 F:      include/uapi/linux/uvcvideo.h
16953
16954 USB VISION DRIVER
16955 M:      Hans Verkuil <[email protected]>
16956 L:      [email protected]
16957 T:      git git://linuxtv.org/media_tree.git
16958 W:      https://linuxtv.org
16959 S:      Odd Fixes
16960 F:      drivers/media/usb/usbvision/
16961
16962 USB WEBCAM GADGET
16963 M:      Laurent Pinchart <[email protected]>
16964 L:      [email protected]
16965 S:      Maintained
16966 F:      drivers/usb/gadget/function/*uvc*
16967 F:      drivers/usb/gadget/legacy/webcam.c
16968 F:      include/uapi/linux/usb/g_uvc.h
16969
16970 USB WIRELESS RNDIS DRIVER (rndis_wlan)
16971 M:      Jussi Kivilinna <[email protected]>
16972 L:      [email protected]
16973 S:      Maintained
16974 F:      drivers/net/wireless/rndis_wlan.c
16975
16976 USB XHCI DRIVER
16977 M:      Mathias Nyman <[email protected]>
16978 L:      [email protected]
16979 S:      Supported
16980 F:      drivers/usb/host/xhci*
16981 F:      drivers/usb/host/pci-quirks*
16982
16983 USB ZD1201 DRIVER
16984 L:      [email protected]
16985 W:      http://linux-lc100020.sourceforge.net
16986 S:      Orphan
16987 F:      drivers/net/wireless/zydas/zd1201.*
16988
16989 USB ZR364XX DRIVER
16990 M:      Antoine Jacquet <[email protected]>
16991 L:      [email protected]
16992 L:      [email protected]
16993 T:      git git://linuxtv.org/media_tree.git
16994 W:      http://royale.zerezo.com/zr364xx/
16995 S:      Maintained
16996 F:      Documentation/media/v4l-drivers/zr364xx*
16997 F:      drivers/media/usb/zr364xx/
16998
16999 USER-MODE LINUX (UML)
17000 M:      Jeff Dike <[email protected]>
17001 M:      Richard Weinberger <[email protected]>
17002 M:      Anton Ivanov <[email protected]>
17003 L:      [email protected]
17004 W:      http://user-mode-linux.sourceforge.net
17005 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17007 S:      Maintained
17008 F:      Documentation/virt/uml/
17009 F:      arch/um/
17010 F:      arch/x86/um/
17011 F:      fs/hostfs/
17012
17013 USERSPACE COPYIN/COPYOUT (UIOVEC)
17014 M:      Alexander Viro <[email protected]>
17015 S:      Maintained
17016 F:      lib/iov_iter.c
17017 F:      include/linux/uio.h
17018
17019 USERSPACE DMA BUFFER DRIVER
17020 M:      Gerd Hoffmann <[email protected]>
17021 S:      Maintained
17022 L:      [email protected]
17023 F:      drivers/dma-buf/udmabuf.c
17024 F:      include/uapi/linux/udmabuf.h
17025 T:      git git://anongit.freedesktop.org/drm/drm-misc
17026
17027 USERSPACE I/O (UIO)
17028 M:      Greg Kroah-Hartman <[email protected]>
17029 S:      Maintained
17030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17031 F:      Documentation/driver-api/uio-howto.rst
17032 F:      drivers/uio/
17033 F:      include/linux/uio_driver.h
17034
17035 UTIL-LINUX PACKAGE
17036 M:      Karel Zak <[email protected]>
17037 L:      [email protected]
17038 W:      http://en.wikipedia.org/wiki/Util-linux
17039 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17040 S:      Maintained
17041
17042 UUID HELPERS
17043 M:      Christoph Hellwig <[email protected]>
17044 R:      Andy Shevchenko <[email protected]>
17045 L:      [email protected]
17046 T:      git git://git.infradead.org/users/hch/uuid.git
17047 F:      lib/uuid.c
17048 F:      lib/test_uuid.c
17049 F:      include/linux/uuid.h
17050 F:      include/uapi/linux/uuid.h
17051 S:      Maintained
17052
17053 UVESAFB DRIVER
17054 M:      Michal Januszewski <[email protected]>
17055 L:      [email protected]
17056 W:      https://github.com/mjanusz/v86d
17057 S:      Maintained
17058 F:      Documentation/fb/uvesafb.rst
17059 F:      drivers/video/fbdev/uvesafb.*
17060
17061 VF610 NAND DRIVER
17062 M:      Stefan Agner <[email protected]>
17063 L:      [email protected]
17064 S:      Supported
17065 F:      drivers/mtd/nand/raw/vf610_nfc.c
17066
17067 VFAT/FAT/MSDOS FILESYSTEM
17068 M:      OGAWA Hirofumi <[email protected]>
17069 S:      Maintained
17070 F:      Documentation/filesystems/vfat.txt
17071 F:      fs/fat/
17072
17073 VFIO DRIVER
17074 M:      Alex Williamson <[email protected]>
17075 R:      Cornelia Huck <[email protected]>
17076 L:      [email protected]
17077 T:      git git://github.com/awilliam/linux-vfio.git
17078 S:      Maintained
17079 F:      Documentation/driver-api/vfio.rst
17080 F:      drivers/vfio/
17081 F:      include/linux/vfio.h
17082 F:      include/uapi/linux/vfio.h
17083
17084 VFIO MEDIATED DEVICE DRIVERS
17085 M:      Kirti Wankhede <[email protected]>
17086 L:      [email protected]
17087 S:      Maintained
17088 F:      Documentation/driver-api/vfio-mediated-device.rst
17089 F:      drivers/vfio/mdev/
17090 F:      include/linux/mdev.h
17091 F:      samples/vfio-mdev/
17092
17093 VFIO PLATFORM DRIVER
17094 M:      Eric Auger <[email protected]>
17095 L:      [email protected]
17096 S:      Maintained
17097 F:      drivers/vfio/platform/
17098
17099 VGA_SWITCHEROO
17100 R:      Lukas Wunner <[email protected]>
17101 S:      Maintained
17102 F:      Documentation/gpu/vga-switcheroo.rst
17103 F:      drivers/gpu/vga/vga_switcheroo.c
17104 F:      include/linux/vga_switcheroo.h
17105 T:      git git://anongit.freedesktop.org/drm/drm-misc
17106
17107 VIA RHINE NETWORK DRIVER
17108 S:      Orphan
17109 F:      drivers/net/ethernet/via/via-rhine.c
17110
17111 VIA SD/MMC CARD CONTROLLER DRIVER
17112 M:      Bruce Chang <[email protected]>
17113 M:      Harald Welte <[email protected]>
17114 S:      Maintained
17115 F:      drivers/mmc/host/via-sdmmc.c
17116
17117 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17118 M:      Florian Tobias Schandinat <[email protected]>
17119 L:      [email protected]
17120 S:      Maintained
17121 F:      include/linux/via-core.h
17122 F:      include/linux/via-gpio.h
17123 F:      include/linux/via_i2c.h
17124 F:      drivers/video/fbdev/via/
17125
17126 VIA VELOCITY NETWORK DRIVER
17127 M:      Francois Romieu <[email protected]>
17128 L:      [email protected]
17129 S:      Maintained
17130 F:      drivers/net/ethernet/via/via-velocity.*
17131
17132 VICODEC VIRTUAL CODEC DRIVER
17133 M:      Hans Verkuil <[email protected]>
17134 L:      [email protected]
17135 T:      git git://linuxtv.org/media_tree.git
17136 W:      https://linuxtv.org
17137 S:      Maintained
17138 F:      drivers/media/platform/vicodec/*
17139
17140 VIDEO MULTIPLEXER DRIVER
17141 M:      Philipp Zabel <[email protected]>
17142 L:      [email protected]
17143 S:      Maintained
17144 F:      drivers/media/platform/video-mux.c
17145
17146 VIDEO I2C POLLING DRIVER
17147 M:      Matt Ranostay <[email protected]>
17148 L:      [email protected]
17149 S:      Maintained
17150 F:      drivers/media/i2c/video-i2c.c
17151
17152 VIDEOBUF2 FRAMEWORK
17153 M:      Pawel Osciak <[email protected]>
17154 M:      Marek Szyprowski <[email protected]>
17155 M:      Kyungmin Park <[email protected]>
17156 R:      Tomasz Figa <[email protected]>
17157 L:      [email protected]
17158 S:      Maintained
17159 F:      drivers/media/common/videobuf2/*
17160 F:      include/media/videobuf2-*
17161
17162 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17163 M:      Helen Koike <[email protected]>
17164 L:      [email protected]
17165 T:      git git://linuxtv.org/media_tree.git
17166 W:      https://linuxtv.org
17167 S:      Maintained
17168 F:      drivers/media/platform/vimc/*
17169
17170 VIRT LIB
17171 M:      Alex Williamson <[email protected]>
17172 M:      Paolo Bonzini <[email protected]>
17173 L:      [email protected]
17174 S:      Supported
17175 F:      virt/lib/
17176
17177 VIRTIO AND VHOST VSOCK DRIVER
17178 M:      Stefan Hajnoczi <[email protected]>
17179 L:      [email protected]
17180 L:      [email protected]
17181 L:      [email protected]
17182 S:      Maintained
17183 F:      include/linux/virtio_vsock.h
17184 F:      include/uapi/linux/virtio_vsock.h
17185 F:      include/uapi/linux/vsockmon.h
17186 F:      include/uapi/linux/vm_sockets_diag.h
17187 F:      net/vmw_vsock/diag.c
17188 F:      net/vmw_vsock/af_vsock_tap.c
17189 F:      net/vmw_vsock/virtio_transport_common.c
17190 F:      net/vmw_vsock/virtio_transport.c
17191 F:      drivers/net/vsockmon.c
17192 F:      drivers/vhost/vsock.c
17193 F:      tools/testing/vsock/
17194
17195 VIRTIO CONSOLE DRIVER
17196 M:      Amit Shah <[email protected]>
17197 L:      [email protected]
17198 S:      Maintained
17199 F:      drivers/char/virtio_console.c
17200 F:      include/linux/virtio_console.h
17201 F:      include/uapi/linux/virtio_console.h
17202
17203 VIRTIO CORE AND NET DRIVERS
17204 M:      "Michael S. Tsirkin" <[email protected]>
17205 M:      Jason Wang <[email protected]>
17206 L:      [email protected]
17207 S:      Maintained
17208 F:      Documentation/devicetree/bindings/virtio/
17209 F:      drivers/virtio/
17210 F:      tools/virtio/
17211 F:      drivers/net/virtio_net.c
17212 F:      drivers/block/virtio_blk.c
17213 F:      include/linux/virtio*.h
17214 F:      include/uapi/linux/virtio_*.h
17215 F:      drivers/crypto/virtio/
17216 F:      mm/balloon_compaction.c
17217
17218 VIRTIO BLOCK AND SCSI DRIVERS
17219 M:      "Michael S. Tsirkin" <[email protected]>
17220 M:      Jason Wang <[email protected]>
17221 R:      Paolo Bonzini <[email protected]>
17222 R:      Stefan Hajnoczi <[email protected]>
17223 L:      [email protected]
17224 S:      Maintained
17225 F:      drivers/block/virtio_blk.c
17226 F:      drivers/scsi/virtio_scsi.c
17227 F:      include/uapi/linux/virtio_blk.h
17228 F:      include/uapi/linux/virtio_scsi.h
17229 F:      drivers/vhost/scsi.c
17230
17231 VIRTIO CRYPTO DRIVER
17232 M:      Gonglei <[email protected]>
17233 L:      [email protected]
17234 L:      [email protected]
17235 S:      Maintained
17236 F:      drivers/crypto/virtio/
17237 F:      include/uapi/linux/virtio_crypto.h
17238
17239 VIRTIO DRIVERS FOR S390
17240 M:      Cornelia Huck <[email protected]>
17241 M:      Halil Pasic <[email protected]>
17242 L:      [email protected]
17243 L:      [email protected]
17244 L:      [email protected]
17245 S:      Supported
17246 F:      drivers/s390/virtio/
17247 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17248
17249 VIRTIO GPU DRIVER
17250 M:      David Airlie <[email protected]>
17251 M:      Gerd Hoffmann <[email protected]>
17252 L:      [email protected]
17253 L:      [email protected]
17254 T:      git git://anongit.freedesktop.org/drm/drm-misc
17255 S:      Maintained
17256 F:      drivers/gpu/drm/virtio/
17257 F:      include/uapi/linux/virtio_gpu.h
17258
17259 VIRTIO HOST (VHOST)
17260 M:      "Michael S. Tsirkin" <[email protected]>
17261 M:      Jason Wang <[email protected]>
17262 L:      [email protected]
17263 L:      [email protected]
17264 L:      [email protected]
17265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17266 S:      Maintained
17267 F:      drivers/vhost/
17268 F:      include/uapi/linux/vhost.h
17269
17270 VIRTIO INPUT DRIVER
17271 M:      Gerd Hoffmann <[email protected]>
17272 S:      Maintained
17273 F:      drivers/virtio/virtio_input.c
17274 F:      include/uapi/linux/virtio_input.h
17275
17276 VIRTIO IOMMU DRIVER
17277 M:      Jean-Philippe Brucker <[email protected]>
17278 L:      [email protected]
17279 S:      Maintained
17280 F:      drivers/iommu/virtio-iommu.c
17281 F:      include/uapi/linux/virtio_iommu.h
17282
17283 VIRTUAL BOX GUEST DEVICE DRIVER
17284 M:      Hans de Goede <[email protected]>
17285 M:      Arnd Bergmann <[email protected]>
17286 M:      Greg Kroah-Hartman <[email protected]>
17287 S:      Maintained
17288 F:      include/linux/vbox_utils.h
17289 F:      include/uapi/linux/vbox*.h
17290 F:      drivers/virt/vboxguest/
17291
17292 VIRTUAL SERIO DEVICE DRIVER
17293 M:      Stephen Chandler Paul <[email protected]>
17294 S:      Maintained
17295 F:      drivers/input/serio/userio.c
17296 F:      include/uapi/linux/userio.h
17297
17298 VIVID VIRTUAL VIDEO DRIVER
17299 M:      Hans Verkuil <[email protected]>
17300 L:      [email protected]
17301 T:      git git://linuxtv.org/media_tree.git
17302 W:      https://linuxtv.org
17303 S:      Maintained
17304 F:      drivers/media/platform/vivid/*
17305
17306 VLYNQ BUS
17307 M:      Florian Fainelli <[email protected]>
17308 L:      [email protected] (subscribers-only)
17309 S:      Maintained
17310 F:      drivers/vlynq/vlynq.c
17311 F:      include/linux/vlynq.h
17312
17313 VME SUBSYSTEM
17314 M:      Martyn Welch <[email protected]>
17315 M:      Manohar Vanga <[email protected]>
17316 M:      Greg Kroah-Hartman <[email protected]>
17317 L:      [email protected]
17318 S:      Maintained
17319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17320 F:      Documentation/driver-api/vme.rst
17321 F:      drivers/staging/vme/
17322 F:      drivers/vme/
17323 F:      include/linux/vme*
17324
17325 VMWARE BALLOON DRIVER
17326 M:      Nadav Amit <[email protected]>
17327 M:      "VMware, Inc." <[email protected]>
17328 L:      [email protected]
17329 S:      Maintained
17330 F:      drivers/misc/vmw_balloon.c
17331
17332 VMWARE HYPERVISOR INTERFACE
17333 M:      Thomas Hellstrom <[email protected]>
17334 M:      "VMware, Inc." <[email protected]>
17335 L:      [email protected]
17336 S:      Supported
17337 F:      arch/x86/kernel/cpu/vmware.c
17338 F:      arch/x86/include/asm/vmware.h
17339
17340 VMWARE PVRDMA DRIVER
17341 M:      Adit Ranadive <[email protected]>
17342 M:      VMware PV-Drivers <[email protected]>
17343 L:      [email protected]
17344 S:      Maintained
17345 F:      drivers/infiniband/hw/vmw_pvrdma/
17346
17347 VMware PVSCSI driver
17348 M:      Jim Gill <[email protected]>
17349 M:      VMware PV-Drivers <[email protected]>
17350 L:      [email protected]
17351 S:      Maintained
17352 F:      drivers/scsi/vmw_pvscsi.c
17353 F:      drivers/scsi/vmw_pvscsi.h
17354
17355 VMWARE VMMOUSE SUBDRIVER
17356 M:      "VMware Graphics" <[email protected]>
17357 M:      "VMware, Inc." <[email protected]>
17358 L:      [email protected]
17359 S:      Maintained
17360 F:      drivers/input/mouse/vmmouse.c
17361 F:      drivers/input/mouse/vmmouse.h
17362
17363 VMWARE VMXNET3 ETHERNET DRIVER
17364 M:      Ronak Doshi <[email protected]>
17365 M:      "VMware, Inc." <[email protected]>
17366 L:      [email protected]
17367 S:      Maintained
17368 F:      drivers/net/vmxnet3/
17369
17370 VOCORE VOCORE2 BOARD
17371 M:      Harvey Hunt <[email protected]>
17372 L:      [email protected]
17373 S:      Maintained
17374 F:      arch/mips/boot/dts/ralink/vocore2.dts
17375
17376 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
17377 M:      Liam Girdwood <[email protected]>
17378 M:      Mark Brown <[email protected]>
17379 L:      [email protected]
17380 W:      http://www.slimlogic.co.uk/?p=48
17381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
17382 S:      Supported
17383 F:      Documentation/devicetree/bindings/regulator/
17384 F:      Documentation/power/regulator/
17385 F:      drivers/regulator/
17386 F:      include/dt-bindings/regulator/
17387 F:      include/linux/regulator/
17388 K:      regulator_get_optional
17389
17390 VRF
17391 M:      David Ahern <[email protected]>
17392 M:      Shrijeet Mukherjee <[email protected]>
17393 L:      [email protected]
17394 S:      Maintained
17395 F:      drivers/net/vrf.c
17396 F:      Documentation/networking/vrf.txt
17397
17398 VT1211 HARDWARE MONITOR DRIVER
17399 M:      Juerg Haefliger <[email protected]>
17400 L:      [email protected]
17401 S:      Maintained
17402 F:      Documentation/hwmon/vt1211.rst
17403 F:      drivers/hwmon/vt1211.c
17404
17405 VT8231 HARDWARE MONITOR DRIVER
17406 M:      Roger Lucas <[email protected]>
17407 L:      [email protected]
17408 S:      Maintained
17409 F:      drivers/hwmon/vt8231.c
17410
17411 VUB300 USB to SDIO/SD/MMC bridge chip
17412 M:      Tony Olech <[email protected]>
17413 L:      [email protected]
17414 L:      [email protected]
17415 S:      Supported
17416 F:      drivers/mmc/host/vub300.c
17417
17418 W1 DALLAS'S 1-WIRE BUS
17419 M:      Evgeniy Polyakov <[email protected]>
17420 S:      Maintained
17421 F:      Documentation/devicetree/bindings/w1/
17422 F:      Documentation/w1/
17423 F:      drivers/w1/
17424 F:      include/linux/w1.h
17425
17426 W83791D HARDWARE MONITORING DRIVER
17427 M:      Marc Hulsman <[email protected]>
17428 L:      [email protected]
17429 S:      Maintained
17430 F:      Documentation/hwmon/w83791d.rst
17431 F:      drivers/hwmon/w83791d.c
17432
17433 W83793 HARDWARE MONITORING DRIVER
17434 M:      Rudolf Marek <[email protected]>
17435 L:      [email protected]
17436 S:      Maintained
17437 F:      Documentation/hwmon/w83793.rst
17438 F:      drivers/hwmon/w83793.c
17439
17440 W83795 HARDWARE MONITORING DRIVER
17441 M:      Jean Delvare <[email protected]>
17442 L:      [email protected]
17443 S:      Maintained
17444 F:      drivers/hwmon/w83795.c
17445
17446 W83L51xD SD/MMC CARD INTERFACE DRIVER
17447 M:      Pierre Ossman <[email protected]>
17448 S:      Maintained
17449 F:      drivers/mmc/host/wbsd.*
17450
17451 WACOM PROTOCOL 4 SERIAL TABLETS
17452 M:      Julian Squires <[email protected]>
17453 M:      Hans de Goede <[email protected]>
17454 L:      [email protected]
17455 S:      Maintained
17456 F:      drivers/input/tablet/wacom_serial4.c
17457
17458 WATCHDOG DEVICE DRIVERS
17459 M:      Wim Van Sebroeck <[email protected]>
17460 M:      Guenter Roeck <[email protected]>
17461 L:      [email protected]
17462 W:      http://www.linux-watchdog.org/
17463 T:      git git://www.linux-watchdog.org/linux-watchdog.git
17464 S:      Maintained
17465 F:      Documentation/devicetree/bindings/watchdog/
17466 F:      Documentation/watchdog/
17467 F:      drivers/watchdog/
17468 F:      include/linux/watchdog.h
17469 F:      include/uapi/linux/watchdog.h
17470
17471 WHISKEYCOVE PMIC GPIO DRIVER
17472 M:      Kuppuswamy Sathyanarayanan <[email protected]>
17473 L:      [email protected]
17474 S:      Maintained
17475 F:      drivers/gpio/gpio-wcove.c
17476
17477 WHWAVE RTC DRIVER
17478 M:      Dianlong Li <[email protected]>
17479 L:      [email protected]
17480 S:      Maintained
17481 F:      drivers/rtc/rtc-sd3078.c
17482
17483 WIIMOTE HID DRIVER
17484 M:      David Herrmann <[email protected]>
17485 L:      [email protected]
17486 S:      Maintained
17487 F:      drivers/hid/hid-wiimote*
17488
17489 WILOCITY WIL6210 WIRELESS DRIVER
17490 M:      Maya Erez <[email protected]>
17491 L:      [email protected]
17492 L:      [email protected]
17493 S:      Supported
17494 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
17495 F:      drivers/net/wireless/ath/wil6210/
17496
17497 WIMAX STACK
17498 M:      Inaky Perez-Gonzalez <[email protected]>
17499 M:      [email protected]
17500 L:      [email protected] (subscribers-only)
17501 S:      Supported
17502 W:      http://linuxwimax.org
17503 F:      Documentation/admin-guide/wimax/wimax.rst
17504 F:      include/linux/wimax/debug.h
17505 F:      include/net/wimax.h
17506 F:      include/uapi/linux/wimax.h
17507 F:      net/wimax/
17508
17509 WINBOND CIR DRIVER
17510 M:      David Härdeman <[email protected]>
17511 S:      Maintained
17512 F:      drivers/media/rc/winbond-cir.c
17513
17514 RCMM REMOTE CONTROLS DECODER
17515 M:      Patrick Lerda <[email protected]>
17516 S:      Maintained
17517 F:      drivers/media/rc/ir-rcmm-decoder.c
17518
17519 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
17520 M:      William Breathitt Gray <[email protected]>
17521 L:      [email protected]
17522 S:      Maintained
17523 F:      drivers/watchdog/ebc-c384_wdt.c
17524
17525 WINSYSTEMS WS16C48 GPIO DRIVER
17526 M:      William Breathitt Gray <[email protected]>
17527 L:      [email protected]
17528 S:      Maintained
17529 F:      drivers/gpio/gpio-ws16c48.c
17530
17531 WISTRON LAPTOP BUTTON DRIVER
17532 M:      Miloslav Trmac <[email protected]>
17533 S:      Maintained
17534 F:      drivers/input/misc/wistron_btns.c
17535
17536 WL3501 WIRELESS PCMCIA CARD DRIVER
17537 L:      [email protected]
17538 S:      Odd fixes
17539 F:      drivers/net/wireless/wl3501*
17540
17541 WOLFSON MICROELECTRONICS DRIVERS
17542 L:      [email protected]
17543 T:      git https://github.com/CirrusLogic/linux-drivers.git
17544 W:      https://github.com/CirrusLogic/linux-drivers/wiki
17545 S:      Supported
17546 F:      Documentation/hwmon/wm83??.rst
17547 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
17548 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
17549 F:      Documentation/devicetree/bindings/mfd/arizona.txt
17550 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
17551 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
17552 F:      arch/arm/mach-s3c64xx/mach-crag6410*
17553 F:      drivers/clk/clk-wm83*.c
17554 F:      drivers/extcon/extcon-arizona.c
17555 F:      drivers/leds/leds-wm83*.c
17556 F:      drivers/gpio/gpio-*wm*.c
17557 F:      drivers/gpio/gpio-arizona.c
17558 F:      drivers/hwmon/wm83??-hwmon.c
17559 F:      drivers/input/misc/wm831x-on.c
17560 F:      drivers/input/touchscreen/wm831x-ts.c
17561 F:      drivers/input/touchscreen/wm97*.c
17562 F:      drivers/mfd/arizona*
17563 F:      drivers/mfd/wm*.c
17564 F:      drivers/mfd/cs47l24*
17565 F:      drivers/power/supply/wm83*.c
17566 F:      drivers/rtc/rtc-wm83*.c
17567 F:      drivers/regulator/wm8*.c
17568 F:      drivers/regulator/arizona*
17569 F:      drivers/video/backlight/wm83*_bl.c
17570 F:      drivers/watchdog/wm83*_wdt.c
17571 F:      include/linux/mfd/arizona/
17572 F:      include/linux/mfd/wm831x/
17573 F:      include/linux/mfd/wm8350/
17574 F:      include/linux/mfd/wm8400*
17575 F:      include/linux/regulator/arizona*
17576 F:      include/linux/wm97xx.h
17577 F:      include/sound/wm????.h
17578 F:      sound/soc/codecs/arizona.?
17579 F:      sound/soc/codecs/wm*
17580 F:      sound/soc/codecs/cs47l24*
17581
17582 WORKQUEUE
17583 M:      Tejun Heo <[email protected]>
17584 R:      Lai Jiangshan <[email protected]>
17585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
17586 S:      Maintained
17587 F:      include/linux/workqueue.h
17588 F:      kernel/workqueue.c
17589 F:      Documentation/core-api/workqueue.rst
17590
17591 X-POWERS AXP288 PMIC DRIVERS
17592 M:      Hans de Goede <[email protected]>
17593 S:      Maintained
17594 N:      axp288
17595 F:      drivers/acpi/pmic/intel_pmic_xpower.c
17596
17597 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
17598 M:      Chen-Yu Tsai <[email protected]>
17599 L:      [email protected]
17600 S:      Maintained
17601 N:      axp[128]
17602
17603 X.25 NETWORK LAYER
17604 M:      Andrew Hendry <[email protected]>
17605 L:      [email protected]
17606 S:      Odd Fixes
17607 F:      Documentation/networking/x25*
17608 F:      include/net/x25*
17609 F:      net/x25/
17610
17611 X86 ARCHITECTURE (32-BIT AND 64-BIT)
17612 M:      Thomas Gleixner <[email protected]>
17613 M:      Ingo Molnar <[email protected]>
17614 M:      Borislav Petkov <[email protected]>
17615 R:      "H. Peter Anvin" <[email protected]>
17616 M:      [email protected]
17617 L:      [email protected]
17618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17619 S:      Maintained
17620 F:      Documentation/devicetree/bindings/x86/
17621 F:      Documentation/x86/
17622 F:      arch/x86/
17623
17624 X86 ENTRY CODE
17625 M:      Andy Lutomirski <[email protected]>
17626 L:      [email protected]
17627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
17628 S:      Maintained
17629 F:      arch/x86/entry/
17630
17631 X86 MCE INFRASTRUCTURE
17632 M:      Tony Luck <[email protected]>
17633 M:      Borislav Petkov <[email protected]>
17634 L:      [email protected]
17635 S:      Maintained
17636 F:      arch/x86/kernel/cpu/mce/*
17637
17638 X86 MICROCODE UPDATE SUPPORT
17639 M:      Borislav Petkov <[email protected]>
17640 S:      Maintained
17641 F:      arch/x86/kernel/cpu/microcode/*
17642
17643 X86 MM
17644 M:      Dave Hansen <[email protected]>
17645 M:      Andy Lutomirski <[email protected]>
17646 M:      Peter Zijlstra <[email protected]>
17647 L:      [email protected]
17648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
17649 S:      Maintained
17650 F:      arch/x86/mm/
17651
17652 X86 PLATFORM DRIVERS
17653 M:      Darren Hart <[email protected]>
17654 M:      Andy Shevchenko <[email protected]>
17655 L:      [email protected]
17656 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
17657 S:      Odd Fixes
17658 F:      drivers/platform/x86/
17659 F:      drivers/platform/olpc/
17660
17661 X86 PLATFORM DRIVERS - ARCH
17662 R:      Darren Hart <[email protected]>
17663 R:      Andy Shevchenko <[email protected]>
17664 L:      [email protected]
17665 L:      [email protected]
17666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17667 S:      Maintained
17668 F:      arch/x86/platform
17669
17670 X86 VDSO
17671 M:      Andy Lutomirski <[email protected]>
17672 L:      [email protected]
17673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
17674 S:      Maintained
17675 F:      arch/x86/entry/vdso/
17676
17677 XARRAY
17678 M:      Matthew Wilcox <[email protected]>
17679 L:      [email protected]
17680 S:      Supported
17681 F:      Documentation/core-api/xarray.rst
17682 F:      lib/idr.c
17683 F:      lib/xarray.c
17684 F:      include/linux/idr.h
17685 F:      include/linux/xarray.h
17686 F:      tools/testing/radix-tree
17687
17688 XBOX DVD IR REMOTE
17689 M:      Benjamin Valentin <[email protected]>
17690 S:      Maintained
17691 F:      drivers/media/rc/xbox_remote.c
17692 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
17693
17694 XC2028/3028 TUNER DRIVER
17695 M:      Mauro Carvalho Chehab <[email protected]>
17696 L:      [email protected]
17697 W:      https://linuxtv.org
17698 T:      git git://linuxtv.org/media_tree.git
17699 S:      Maintained
17700 F:      drivers/media/tuners/tuner-xc2028.*
17701
17702 XDP (eXpress Data Path)
17703 M:      Alexei Starovoitov <[email protected]>
17704 M:      Daniel Borkmann <[email protected]>
17705 M:      David S. Miller <[email protected]>
17706 M:      Jakub Kicinski <[email protected]>
17707 M:      Jesper Dangaard Brouer <[email protected]>
17708 M:      John Fastabend <[email protected]>
17709 L:      [email protected]
17710 L:      [email protected]
17711 S:      Supported
17712 F:      net/core/xdp.c
17713 F:      include/net/xdp.h
17714 F:      kernel/bpf/devmap.c
17715 F:      kernel/bpf/cpumap.c
17716 F:      include/trace/events/xdp.h
17717 K:      xdp
17718 N:      xdp
17719
17720 XDP SOCKETS (AF_XDP)
17721 M:      Björn Töpel <[email protected]>
17722 M:      Magnus Karlsson <[email protected]>
17723 R:      Jonathan Lemon <[email protected]>
17724 L:      [email protected]
17725 L:      [email protected]
17726 S:      Maintained
17727 F:      kernel/bpf/xskmap.c
17728 F:      net/xdp/
17729
17730 XEN BLOCK SUBSYSTEM
17731 M:      Konrad Rzeszutek Wilk <[email protected]>
17732 M:      Roger Pau Monné <[email protected]>
17733 L:      [email protected] (moderated for non-subscribers)
17734 S:      Supported
17735 F:      drivers/block/xen-blkback/*
17736 F:      drivers/block/xen*
17737
17738 XEN HYPERVISOR ARM
17739 M:      Stefano Stabellini <[email protected]>
17740 L:      [email protected] (moderated for non-subscribers)
17741 S:      Maintained
17742 F:      arch/arm/xen/
17743 F:      arch/arm/include/asm/xen/
17744
17745 XEN HYPERVISOR ARM64
17746 M:      Stefano Stabellini <[email protected]>
17747 L:      [email protected] (moderated for non-subscribers)
17748 S:      Maintained
17749 F:      arch/arm64/xen/
17750 F:      arch/arm64/include/asm/xen/
17751
17752 XEN HYPERVISOR INTERFACE
17753 M:      Boris Ostrovsky <[email protected]>
17754 M:      Juergen Gross <[email protected]>
17755 R:      Stefano Stabellini <[email protected]>
17756 L:      [email protected] (moderated for non-subscribers)
17757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
17758 S:      Supported
17759 F:      arch/x86/xen/
17760 F:      arch/x86/platform/pvh/
17761 F:      drivers/*/xen-*front.c
17762 F:      drivers/xen/
17763 F:      arch/x86/include/asm/xen/
17764 F:      arch/x86/include/asm/pvclock-abi.h
17765 F:      include/xen/
17766 F:      include/uapi/xen/
17767 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
17768 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
17769
17770 XEN NETWORK BACKEND DRIVER
17771 M:      Wei Liu <[email protected]>
17772 M:      Paul Durrant <[email protected]>
17773 L:      [email protected] (moderated for non-subscribers)
17774 L:      [email protected]
17775 S:      Supported
17776 F:      drivers/net/xen-netback/*
17777
17778 XEN PCI SUBSYSTEM
17779 M:      Konrad Rzeszutek Wilk <[email protected]>
17780 L:      [email protected] (moderated for non-subscribers)
17781 S:      Supported
17782 F:      arch/x86/pci/*xen*
17783 F:      drivers/pci/*xen*
17784
17785 XEN PVSCSI DRIVERS
17786 M:      Juergen Gross <[email protected]>
17787 L:      [email protected] (moderated for non-subscribers)
17788 L:      [email protected]
17789 S:      Supported
17790 F:      drivers/scsi/xen-scsifront.c
17791 F:      drivers/xen/xen-scsiback.c
17792 F:      include/xen/interface/io/vscsiif.h
17793
17794 XEN SWIOTLB SUBSYSTEM
17795 M:      Konrad Rzeszutek Wilk <[email protected]>
17796 L:      [email protected] (moderated for non-subscribers)
17797 L:      [email protected]
17798 S:      Supported
17799 F:      arch/x86/xen/*swiotlb*
17800 F:      drivers/xen/*swiotlb*
17801
17802 XEN SOUND FRONTEND DRIVER
17803 M:      Oleksandr Andrushchenko <[email protected]>
17804 L:      [email protected] (moderated for non-subscribers)
17805 L:      [email protected] (moderated for non-subscribers)
17806 S:      Supported
17807 F:      sound/xen/*
17808
17809 XFS FILESYSTEM
17810 M:      Darrick J. Wong <[email protected]>
17811 M:      [email protected]
17812 L:      [email protected]
17813 W:      http://xfs.org/
17814 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
17815 S:      Supported
17816 F:      Documentation/admin-guide/xfs.rst
17817 F:      Documentation/ABI/testing/sysfs-fs-xfs
17818 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
17819 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
17820 F:      fs/xfs/
17821 F:      include/uapi/linux/dqblk_xfs.h
17822 F:      include/uapi/linux/fsmap.h
17823
17824 XILINX AXI ETHERNET DRIVER
17825 M:      Radhey Shyam Pandey <[email protected]>
17826 S:      Maintained
17827 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
17828
17829 XILINX UARTLITE SERIAL DRIVER
17830 M:      Peter Korsgaard <[email protected]>
17831 L:      [email protected]
17832 S:      Maintained
17833 F:      drivers/tty/serial/uartlite.c
17834
17835 XILINX VIDEO IP CORES
17836 M:      Hyun Kwon <[email protected]>
17837 M:      Laurent Pinchart <[email protected]>
17838 L:      [email protected]
17839 T:      git git://linuxtv.org/media_tree.git
17840 S:      Supported
17841 F:      Documentation/devicetree/bindings/media/xilinx/
17842 F:      drivers/media/platform/xilinx/
17843 F:      include/uapi/linux/xilinx-v4l2-controls.h
17844
17845 XILINX SD-FEC IP CORES
17846 M:      Derek Kiernan <[email protected]>
17847 M:      Dragan Cvetic <[email protected]>
17848 S:      Maintained
17849 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
17850 F:      Documentation/misc-devices/xilinx_sdfec.rst
17851 F:      drivers/misc/xilinx_sdfec.c
17852 F:      drivers/misc/Kconfig
17853 F:      drivers/misc/Makefile
17854 F:      include/uapi/misc/xilinx_sdfec.h
17855
17856 XILLYBUS DRIVER
17857 M:      Eli Billauer <[email protected]>
17858 L:      [email protected]
17859 S:      Supported
17860 F:      drivers/char/xillybus/
17861
17862 XLP9XX I2C DRIVER
17863 M:      George Cherian <[email protected]>
17864 M:      Jan Glauber <[email protected]>
17865 L:      [email protected]
17866 W:      http://www.cavium.com
17867 S:      Supported
17868 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
17869 F:      drivers/i2c/busses/i2c-xlp9xx.c
17870
17871 XRA1403 GPIO EXPANDER
17872 M:      Nandor Han <[email protected]>
17873 M:      Semi Malinen <[email protected]>
17874 L:      [email protected]
17875 S:      Maintained
17876 F:      drivers/gpio/gpio-xra1403.c
17877 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
17878
17879 XTENSA XTFPGA PLATFORM SUPPORT
17880 M:      Max Filippov <[email protected]>
17881 L:      [email protected]
17882 S:      Maintained
17883 F:      drivers/spi/spi-xtensa-xtfpga.c
17884 F:      sound/soc/xtensa/xtfpga-i2s.c
17885
17886 YAM DRIVER FOR AX.25
17887 M:      Jean-Paul Roubelat <[email protected]>
17888 L:      [email protected]
17889 S:      Maintained
17890 F:      drivers/net/hamradio/yam*
17891 F:      include/linux/yam.h
17892
17893 YAMA SECURITY MODULE
17894 M:      Kees Cook <[email protected]>
17895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
17896 S:      Supported
17897 F:      security/yama/
17898 F:      Documentation/admin-guide/LSM/Yama.rst
17899
17900 YEALINK PHONE DRIVER
17901 M:      Henk Vergonet <[email protected]>
17902 L:      [email protected]
17903 S:      Maintained
17904 F:      Documentation/input/devices/yealink.rst
17905 F:      drivers/input/misc/yealink.*
17906
17907 Z8530 DRIVER FOR AX.25
17908 M:      Joerg Reuter <[email protected]>
17909 W:      http://yaina.de/jreuter/
17910 W:      http://www.qsl.net/dl1bke/
17911 L:      [email protected]
17912 S:      Maintained
17913 F:      Documentation/networking/z8530drv.txt
17914 F:      drivers/net/hamradio/*scc.c
17915 F:      drivers/net/hamradio/z8530.h
17916
17917 ZBUD COMPRESSED PAGE ALLOCATOR
17918 M:      Seth Jennings <[email protected]>
17919 M:      Dan Streetman <[email protected]>
17920 L:      [email protected]
17921 S:      Maintained
17922 F:      mm/zbud.c
17923 F:      include/linux/zbud.h
17924
17925 ZD1211RW WIRELESS DRIVER
17926 M:      Daniel Drake <[email protected]>
17927 M:      Ulrich Kunitz <[email protected]>
17928 W:      http://zd1211.ath.cx/wiki/DriverRewrite
17929 L:      [email protected]
17930 L:      [email protected] (subscribers-only)
17931 S:      Maintained
17932 F:      drivers/net/wireless/zydas/zd1211rw/
17933
17934 ZD1301 MEDIA DRIVER
17935 M:      Antti Palosaari <[email protected]>
17936 L:      [email protected]
17937 W:      https://linuxtv.org/
17938 W:      http://palosaari.fi/linux/
17939 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17940 S:      Maintained
17941 F:      drivers/media/usb/dvb-usb-v2/zd1301*
17942
17943 ZD1301_DEMOD MEDIA DRIVER
17944 M:      Antti Palosaari <[email protected]>
17945 L:      [email protected]
17946 W:      https://linuxtv.org/
17947 W:      http://palosaari.fi/linux/
17948 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17949 S:      Maintained
17950 F:      drivers/media/dvb-frontends/zd1301_demod*
17951
17952 ZHAOXIN PROCESSOR SUPPORT
17953 M:      Tony W Wang-oc <[email protected]>
17954 L:      [email protected]
17955 S:      Maintained
17956 F:      arch/x86/kernel/cpu/zhaoxin.c
17957
17958 ZPOOL COMPRESSED PAGE STORAGE API
17959 M:      Dan Streetman <[email protected]>
17960 L:      [email protected]
17961 S:      Maintained
17962 F:      mm/zpool.c
17963 F:      include/linux/zpool.h
17964
17965 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
17966 M:      Minchan Kim <[email protected]>
17967 M:      Nitin Gupta <[email protected]>
17968 R:      Sergey Senozhatsky <[email protected]>
17969 L:      [email protected]
17970 S:      Maintained
17971 F:      drivers/block/zram/
17972 F:      Documentation/admin-guide/blockdev/zram.rst
17973
17974 ZS DECSTATION Z85C30 SERIAL DRIVER
17975 M:      "Maciej W. Rozycki" <[email protected]>
17976 S:      Maintained
17977 F:      drivers/tty/serial/zs.*
17978
17979 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
17980 M:      Minchan Kim <[email protected]>
17981 M:      Nitin Gupta <[email protected]>
17982 R:      Sergey Senozhatsky <[email protected]>
17983 L:      [email protected]
17984 S:      Maintained
17985 F:      mm/zsmalloc.c
17986 F:      include/linux/zsmalloc.h
17987 F:      Documentation/vm/zsmalloc.rst
17988
17989 ZSWAP COMPRESSED SWAP CACHING
17990 M:      Seth Jennings <[email protected]>
17991 M:      Dan Streetman <[email protected]>
17992 L:      [email protected]
17993 S:      Maintained
17994 F:      mm/zswap.c
17995
17996 THE REST
17997 M:      Linus Torvalds <[email protected]>
17998 L:      [email protected]
17999 Q:      http://patchwork.kernel.org/project/LKML/list/
18000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18001 S:      Buried alive in reporters
18002 F:      *
18003 F:      */
This page took 1.009695 seconds and 4 git commands to generate.